/* ========================================
   COOKIES PAGE 2100 - ULTRA PREMIUM DESIGN
   Modern, futuristic styling for cookies page
   ======================================== */

/* ===== HERO SECTION 2100 ===== */
.cookies-hero-2100 {
    min-height: 50vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 140px 0 80px;
    background: linear-gradient(135deg, #020617 0%, #0f172a 50%, #1e1b4b 100%);
}

.hero-bg-2100 {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    animation: orb-float 20s ease-in-out infinite;
}

.hero-gradient-orb.orb-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.35) 0%, transparent 70%);
    top: -100px;
    right: -50px;
}

.hero-gradient-orb.orb-2 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.25) 0%, transparent 70%);
    bottom: -80px;
    left: -50px;
    animation-delay: 5s;
}

@keyframes orb-float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(30px, -40px) scale(1.05); }
    50% { transform: translate(-20px, 30px) scale(0.95); }
    75% { transform: translate(40px, 20px) scale(1.02); }
}

.hero-grid-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black 30%, transparent 70%);
}

.hero-container-2100 {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

/* Breadcrumb */
.breadcrumb-2100 {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 30px;
    justify-content: center;
}

.breadcrumb-2100 a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.breadcrumb-2100 a:hover {
    color: #f59e0b;
}

.breadcrumb-2100 .separator {
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.7rem;
}

.breadcrumb-2100 .current {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

/* Hero Content */
.hero-content-2100 {
    text-align: center;
}

.hero-badge-2100 {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(245, 158, 11, 0.3);
    border-radius: 50px;
    color: #fbbf24;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 24px;
}

.hero-title-2100 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    color: #f8fafc;
    margin-bottom: 16px;
}

.hero-title-2100 span {
    background: linear-gradient(135deg, #f59e0b, #fbbf24);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-meta-2100 {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.hero-meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
}

.hero-meta-item i {
    color: #f59e0b;
}

/* ===== CONTENT SECTION 2100 ===== */
.cookies-content-2100 {
    padding: 80px 0 100px;
    background: var(--bg-primary);
}

.content-container-2100 {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
}

.content-layout-2100 {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 60px;
    align-items: start;
}

/* Sidebar Navigation */
.content-nav-2100 {
    position: sticky;
    top: 120px;
}

.nav-title-2100 {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.nav-links-2100 {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.nav-links-2100 a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: transparent;
    border: 1px solid transparent;
    border-radius: 12px;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.nav-links-2100 a:hover,
.nav-links-2100 a.active {
    background: rgba(245, 158, 11, 0.1);
    border-color: rgba(245, 158, 11, 0.3);
    color: #f59e0b;
}

.nav-links-2100 a i {
    font-size: 0.8rem;
    width: 20px;
}

/* Main Content */
.content-main-2100 {
    min-width: 0;
}

/* Content Sections */
.content-section-2100 {
    margin-bottom: 50px;
    scroll-margin-top: 120px;
}

.content-section-2100:last-child {
    margin-bottom: 0;
}

.section-title-2100 {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border-color);
}

.section-title-2100 i {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.1), rgba(251, 191, 36, 0.1));
    border: 1px solid rgba(245, 158, 11, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f59e0b;
    font-size: 1rem;
}

.content-text-2100 {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 1rem;
}

.content-text-2100 p {
    margin-bottom: 16px;
}

.content-text-2100 p:last-child {
    margin-bottom: 0;
}

.content-text-2100 a {
    color: #f59e0b;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.content-text-2100 a:hover {
    color: #fbbf24;
    text-decoration: underline;
}

/* Cookie Type Cards */
.cookie-types-grid-2100 {
    display: grid;
    gap: 20px;
    margin-top: 24px;
}

.cookie-type-card-2100 {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 28px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.cookie-type-card-2100::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--card-color, #f59e0b);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.cookie-type-card-2100:hover {
    border-color: var(--card-color, rgba(245, 158, 11, 0.3));
    transform: translateX(8px);
}

.cookie-type-card-2100:hover::before {
    opacity: 1;
}

.cookie-type-card-2100:nth-child(1) { --card-color: #22c55e; }
.cookie-type-card-2100:nth-child(2) { --card-color: #3b82f6; }
.cookie-type-card-2100:nth-child(3) { --card-color: #a855f7; }
.cookie-type-card-2100:nth-child(4) { --card-color: #ec4899; }

.cookie-type-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

.cookie-type-header h4 {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
}

.cookie-type-header h4 i {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.1), rgba(251, 191, 36, 0.1));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--card-color, #f59e0b);
    font-size: 0.9rem;
}

.cookie-status {
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.cookie-status.required {
    background: rgba(34, 197, 94, 0.1);
    color: #22c55e;
}

.cookie-status.optional {
    background: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
}

.cookie-type-card-2100 p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Cookie Table */
.cookie-table-2100 {
    width: 100%;
    border-collapse: collapse;
    margin-top: 24px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
}

.cookie-table-2100 th,
.cookie-table-2100 td {
    padding: 16px 20px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.cookie-table-2100 th {
    background: rgba(245, 158, 11, 0.05);
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cookie-table-2100 td {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.cookie-table-2100 tr:last-child td {
    border-bottom: none;
}

.cookie-table-2100 tr:hover td {
    background: rgba(245, 158, 11, 0.03);
}

.cookie-name {
    font-family: monospace;
    background: rgba(245, 158, 11, 0.1);
    padding: 4px 10px;
    border-radius: 6px;
    color: #f59e0b;
    font-size: 0.85rem;
}

/* Info Box */
.info-box-2100 {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.1), rgba(251, 191, 36, 0.05));
    border: 1px solid rgba(245, 158, 11, 0.2);
    border-radius: 16px;
    padding: 24px;
    margin-top: 24px;
    display: flex;
    gap: 16px;
}

.info-box-2100 i {
    width: 40px;
    height: 40px;
    background: rgba(245, 158, 11, 0.15);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f59e0b;
    flex-shrink: 0;
}

.info-box-2100 p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Browser Icons */
.browser-list-2100 {
    display: flex;
    gap: 16px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.browser-item-2100 {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    color: var(--text-primary);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.browser-item-2100:hover {
    border-color: rgba(245, 158, 11, 0.3);
    background: rgba(245, 158, 11, 0.05);
    transform: translateY(-3px);
}

.browser-item-2100 i {
    font-size: 1.2rem;
    color: #f59e0b;
}

/* ===== CTA SECTION 2100 ===== */
.cookies-cta-2100 {
    padding: 80px 0;
    background: linear-gradient(135deg, #020617 0%, #0f172a 50%, #1e1b4b 100%);
    position: relative;
    overflow: hidden;
}

.cookies-cta-2100::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.1) 0%, transparent 60%);
    pointer-events: none;
}

.cta-container-2100 {
    max-width: 700px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-title-2100 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    color: #f8fafc;
    margin-bottom: 16px;
}

.cta-title-2100 span {
    background: linear-gradient(135deg, #f59e0b, #fbbf24);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-desc-2100 {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 30px;
}

.cta-buttons-2100 {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.cta-btn-2100 {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    border: none;
    border-radius: 14px;
    color: white;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cta-btn-2100:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(245, 158, 11, 0.3);
}

.cta-btn-2100.secondary {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.cta-btn-2100.secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: none;
}

/* ===== LIGHT THEME ===== */
[data-theme="light"] .cookies-hero-2100,
[data-theme="light"] .cookies-cta-2100 {
    background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 50%, #fde68a 100%) !important;
}

[data-theme="light"] .hero-gradient-orb.orb-1 {
    background: radial-gradient(circle, rgba(245, 158, 11, 0.2) 0%, transparent 70%);
}

[data-theme="light"] .hero-gradient-orb.orb-2 {
    background: radial-gradient(circle, rgba(168, 85, 247, 0.15) 0%, transparent 70%);
}

[data-theme="light"] .hero-title-2100,
[data-theme="light"] .cta-title-2100 {
    color: #1e293b !important;
}

[data-theme="light"] .hero-meta-item,
[data-theme="light"] .cta-desc-2100 {
    color: #64748b !important;
}

[data-theme="light"] .breadcrumb-2100 a {
    color: #64748b;
}

[data-theme="light"] .breadcrumb-2100 .current {
    color: #1e293b;
}

[data-theme="light"] .cookie-type-card-2100,
[data-theme="light"] .browser-item-2100 {
    background: #ffffff;
    border-color: #e2e8f0;
}

[data-theme="light"] .cookie-table-2100 {
    background: #ffffff;
    border-color: #e2e8f0;
}

[data-theme="light"] .cookie-table-2100 th,
[data-theme="light"] .cookie-table-2100 td {
    border-color: #e2e8f0;
}

[data-theme="light"] .cta-btn-2100.secondary {
    border-color: #92400e;
    color: #92400e;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .content-layout-2100 {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .content-nav-2100 {
        position: static;
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
    }
    
    .nav-title-2100 {
        width: 100%;
    }
    
    .nav-links-2100 {
        flex-direction: row;
        flex-wrap: wrap;
    }
    
    .nav-links-2100 a {
        padding: 10px 16px;
    }
}

@media (max-width: 768px) {
    .cookies-hero-2100 {
        padding: 120px 0 60px;
    }
    
    .hero-meta-2100 {
        flex-direction: column;
        gap: 12px;
    }
    
    .cookie-table-2100 {
        display: block;
        overflow-x: auto;
    }
    
    .browser-list-2100 {
        flex-direction: column;
    }
    
    .cta-buttons-2100 {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-btn-2100 {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-container-2100,
    .content-container-2100,
    .cta-container-2100 {
        padding: 0 1rem;
    }
    
    .cookie-type-card-2100 {
        padding: 20px;
    }
    
    .cookie-type-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
}
