﻿/* Additional styles for Cookie Policy page */
.cookie-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem 0;
}

    .cookie-content .page-header {
        text-align: center;
        margin-bottom: 3rem;
    }

        .cookie-content .page-header h1 {
            font-size: 2.8rem;
            font-weight: 700;
            background: linear-gradient(145deg, #e6b18c, #c47d58);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            display: inline-block;
            margin-bottom: 0.5rem;
        }

        .cookie-content .page-header p {
            color: #9a877a;
            font-size: 1.1rem;
        }

        .cookie-content .page-header .last-updated {
            color: #6b5544;
            font-size: 0.85rem;
            margin-top: 0.3rem;
        }

.cookie-section {
    background: #1a1714;
    border-radius: 28px;
    padding: 2rem 2.5rem;
    margin-bottom: 2rem;
    border: 1px solid #2f2822;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.6);
    transition: all 0.3s ease;
}

    .cookie-section:hover {
        border-color: #c47d58;
        box-shadow: 0 8px 28px rgba(196, 125, 88, 0.08);
    }

    .cookie-section h2 {
        color: #e6b18c;
        font-size: 1.5rem;
        font-weight: 600;
        margin-bottom: 1rem;
        display: flex;
        align-items: center;
        gap: 12px;
    }

        .cookie-section h2 i {
            color: #c47d58;
            font-size: 1.3rem;
        }

    .cookie-section p {
        color: #c7b2a0;
        font-size: 0.95rem;
        line-height: 1.8;
        margin-bottom: 0.8rem;
    }

    .cookie-section ul {
        list-style: none;
        padding: 0;
        margin: 0.5rem 0 1rem 0;
    }

        .cookie-section ul li {
            color: #c7b2a0;
            font-size: 0.95rem;
            line-height: 1.8;
            padding: 0.3rem 0 0.3rem 1.8rem;
            position: relative;
        }

            .cookie-section ul li::before {
                content: "▸";
                color: #c47d58;
                position: absolute;
                left: 0;
                font-weight: 700;
            }

            .cookie-section ul li strong {
                color: #e6b18c;
            }

    .cookie-section .highlight-box {
        background: #1e2a22;
        border-left: 3px solid #4ade80;
        padding: 1rem 1.5rem;
        border-radius: 8px;
        margin: 1rem 0;
    }

        .cookie-section .highlight-box p {
            color: #9bc4af;
            margin-bottom: 0;
            font-size: 0.9rem;
        }

        .cookie-section .highlight-box i {
            color: #4ade80;
            margin-right: 8px;
        }

.back-to-menu {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #c47d58;
    color: #0e0d0c;
    padding: 0.8rem 2rem;
    border-radius: 60px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

    .back-to-menu:hover {
        background: #e6b18c;
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(196, 125, 88, 0.3);
        color: #0e0d0c;
    }

/* Cookie Info Grid */
.cookie-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 1.5rem 0;
}

.cookie-info-card {
    background: #221d19;
    border-radius: 16px;
    padding: 1.5rem;
    border: 1px solid #2f2822;
    transition: all 0.3s ease;
}

    .cookie-info-card:hover {
        border-color: #c47d58;
        transform: translateY(-2px);
    }

    .cookie-info-card i {
        font-size: 2rem;
        color: #c47d58;
        margin-bottom: 0.8rem;
        display: block;
    }

    .cookie-info-card h4 {
        color: #e6b18c;
        font-size: 1rem;
        font-weight: 600;
        margin-bottom: 0.8rem;
    }

    .cookie-info-card ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

        .cookie-info-card ul li {
            color: #c7b2a0;
            font-size: 0.85rem;
            line-height: 1.6;
            padding: 0.2rem 0 0.2rem 1.2rem;
            position: relative;
        }

            .cookie-info-card ul li::before {
                content: "•";
                color: #9a877a;
                position: absolute;
                left: 0;
            }

/* Cookie Types */
.cookie-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin: 1.5rem 0;
}

.cookie-type {
    background: #221d19;
    border-radius: 16px;
    padding: 1.5rem;
    border: 1px solid #2f2822;
    transition: all 0.3s ease;
}

    .cookie-type:hover {
        border-color: #c47d58;
    }

.cookie-type-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.8rem;
}

    .cookie-type-header i {
        font-size: 1.5rem;
        color: #c47d58;
    }

.cookie-badge {
    padding: 0.2rem 0.8rem;
    border-radius: 40px;
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
}

    .cookie-badge.essential {
        background: #1e2a22;
        color: #4ade80;
        border: 1px solid #4ade80;
    }

    .cookie-badge.functional {
        background: #2a241e;
        color: #fbbf24;
        border: 1px solid #fbbf24;
    }

    .cookie-badge.analytics {
        background: #1e242a;
        color: #60a5fa;
        border: 1px solid #60a5fa;
    }

    .cookie-badge.marketing {
        background: #2a1e2a;
        color: #f472b6;
        border: 1px solid #f472b6;
    }

.cookie-type h4 {
    color: #e6b18c;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.cookie-type p {
    color: #c7b2a0;
    font-size: 0.85rem;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.cookie-type ul {
    list-style: none;
    padding: 0;
    margin: 0.5rem 0;
}

    .cookie-type ul li {
        color: #c7b2a0;
        font-size: 0.8rem;
        line-height: 1.6;
        padding: 0.1rem 0 0.1rem 1.2rem;
        position: relative;
    }

        .cookie-type ul li::before {
            content: "•";
            color: #9a877a;
            position: absolute;
            left: 0;
        }

.cookie-note {
    margin-top: 0.8rem;
    padding: 0.3rem 0.8rem;
    background: #1a1714;
    border-radius: 20px;
    font-size: 0.7rem;
    color: #9a877a;
    display: inline-block;
    border: 1px solid #2f2822;
}

/* Third Party Grid */
.third-party-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
    margin: 1.5rem 0;
}

.third-party-card {
    background: #221d19;
    border-radius: 12px;
    padding: 1.2rem;
    border: 1px solid #2f2822;
    text-align: center;
    transition: all 0.3s ease;
}

    .third-party-card:hover {
        border-color: #c47d58;
        transform: translateY(-2px);
    }

    .third-party-card i {
        font-size: 2rem;
        color: #c47d58;
        display: block;
        margin-bottom: 0.3rem;
    }

    .third-party-card h4 {
        color: #e6b18c;
        font-size: 0.95rem;
        font-weight: 600;
        margin-bottom: 0.3rem;
    }

    .third-party-card p {
        color: #c7b2a0;
        font-size: 0.8rem;
        margin-bottom: 0.5rem;
    }

.third-party-link {
    color: #9a877a;
    font-size: 0.7rem;
    cursor: pointer;
    text-decoration: underline;
}

    .third-party-link:hover {
        color: #c47d58;
    }

/* Reasons Grid */
.reasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin: 1.5rem 0;
}

.reason-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: #221d19;
    border-radius: 12px;
    padding: 1rem;
    border: 1px solid #2f2822;
    transition: all 0.3s ease;
}

    .reason-item:hover {
        border-color: #c47d58;
    }

    .reason-item i {
        font-size: 1.5rem;
        color: #c47d58;
        min-width: 36px;
        margin-top: 0.2rem;
    }

    .reason-item h4 {
        color: #e6b18c;
        font-size: 0.95rem;
        font-weight: 600;
        margin-bottom: 0.2rem;
    }

    .reason-item p {
        color: #c7b2a0;
        font-size: 0.85rem;
        line-height: 1.5;
        margin: 0;
    }

/* Manage Options */
.manage-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin: 1.5rem 0;
}

.manage-option {
    background: #221d19;
    border-radius: 16px;
    padding: 1.5rem;
    border: 1px solid #2f2822;
    transition: all 0.3s ease;
}

    .manage-option:hover {
        border-color: #c47d58;
    }

    .manage-option i {
        font-size: 2rem;
        color: #c47d58;
        display: block;
        margin-bottom: 0.5rem;
    }

    .manage-option h4 {
        color: #e6b18c;
        font-size: 1rem;
        font-weight: 600;
        margin-bottom: 0.5rem;
    }

    .manage-option p {
        color: #c7b2a0;
        font-size: 0.85rem;
        line-height: 1.6;
    }

.browser-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.8rem;
}

.browser-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 0.3rem 0.8rem;
    background: #1a1714;
    border-radius: 20px;
    color: #c7b2a0;
    text-decoration: none;
    font-size: 0.8rem;
    border: 1px solid #2f2822;
    transition: all 0.3s ease;
}

    .browser-link:hover {
        border-color: #c47d58;
        color: #e6b18c;
    }

    .browser-link i {
        font-size: 1rem;
        margin: 0;
    }

/* Cookie Settings Button */
.cookie-settings-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #c47d58;
    color: #0e0d0c;
    padding: 0.6rem 1.5rem;
    border-radius: 40px;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

    .cookie-settings-btn:hover {
        background: #e6b18c;
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(196, 125, 88, 0.3);
    }

/* Expiry Grid */
.expiry-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0.8rem;
    margin: 1.5rem 0;
}

.expiry-item {
    display: flex;
    flex-direction: column;
    background: #221d19;
    border-radius: 12px;
    padding: 1rem 1.2rem;
    border: 1px solid #2f2822;
    transition: all 0.3s ease;
}

    .expiry-item:hover {
        border-color: #c47d58;
    }

.expiry-label {
    color: #c7b2a0;
    font-size: 0.85rem;
    font-weight: 600;
}

.expiry-time {
    color: #e6b18c;
    font-size: 0.9rem;
    margin-top: 0.2rem;
}

@media (max-width: 680px) {
    .cookie-content .page-header h1 {
        font-size: 2rem;
    }

    .cookie-section {
        padding: 1.5rem;
    }

        .cookie-section h2 {
            font-size: 1.2rem;
        }

        .cookie-section p,
        .cookie-section ul li {
            font-size: 0.9rem;
        }

    .back-to-menu {
        width: 100%;
        justify-content: center;
    }

    .cookie-info-grid,
    .cookie-types,
    .third-party-grid,
    .reasons-grid,
    .manage-options,
    .expiry-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .cookie-section ul li {
        padding-left: 1.2rem;
    }

    .cookie-type-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .browser-links {
        flex-direction: column;
    }

    .browser-link {
        justify-content: center;
    }
}
