/* =========================================================
   CONSENT BANNER CONTAINER
========================================================= */

#privacy-consent-banner {
    position: fixed;
    inset: 0;
    z-index: 2147483647;
    font-family: Arial, Helvetica, sans-serif;
}

#consent-banner-modal {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    z-index: 999999;
}

/* =========================================================
   OVERLAY
========================================================= */

.privacy-consent-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(4px);
}

/* =========================================================
   CONSENT BOX (Dark Theme Matching Image)
========================================================= */

.privacy-consent-box {
    position: absolute;
    left: 50%;
    bottom: 25px;
    transform: translateX(-50%);
    width: min(900px, calc(100% - 30px));
    max-height: calc(100vh - 50px);
    overflow-y: auto;
    background: #111111; /* Dark background matching the site */
    border: 1px solid #2a2a2a; /* Subtle border for separation */
    border-radius: 12px;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.60);
    color: #f1f1f1;
}

/* =========================================================
   CONTENT
========================================================= */

.privacy-consent-content {
    padding: 34px;
}

.privacy-consent-content h2 {
    margin: 0 45px 18px 0;
    font-size: 28px;
    line-height: 1.25;
    font-weight: 700;
    color: #ffffff;
}

.privacy-consent-content p {
    margin: 0 0 15px;
    font-size: 16px;
    line-height: 1.65;
    color: #a3a3a3; /* Muted text for readability */
}

.privacy-consent-policy {
    margin-top: 18px;
}

.privacy-consent-policy a {
    color: #eab332; /* Golden yellow accent */
    font-weight: 700;
    text-decoration: none;
    border-bottom: 1px solid #eab332;
    transition: color 0.2s ease;
}

.privacy-consent-policy a:hover {
    color: #fbd369;
}

/* =========================================================
   CLOSE ICON
========================================================= */

.privacy-consent-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 44px;
    height: 44px;
    border: 0;
    background: transparent;
    font-size: 32px;
    line-height: 1;
    color: #888888;
    cursor: pointer;
    transition: color 0.2s ease;
}

.privacy-consent-close:hover {
    color: #ffffff;
}

/* =========================================================
   BUTTONS
========================================================= */

.privacy-consent-actions {
    display: flex;
    gap: 12px;
    margin-top: 26px;
}

.privacy-btn {
    min-height: 50px;
    padding: 12px 20px;
    border-radius: 25px; /* Pill shape matching "Order Online" button */
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: transform .15s ease, opacity .15s ease, background .15s ease, border .15s ease;
}

.privacy-btn:hover {
    transform: translateY(-1px);
}

.privacy-btn-primary {
    flex: 1;
    border: 1px solid #eab332;
    background: #eab332; /* Golden yellow matching Order Online */
    color: #111111;
}

.privacy-btn-primary:hover {
    background: #d4a02c;
    border-color: #d4a02c;
}

.privacy-btn-secondary {
    flex: 1;
    border: 1px solid #444444;
    background: transparent;
    color: #ffffff;
}

.privacy-btn-secondary:hover {
    background: #222222;
    border-color: #666666;
}

/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {
    .privacy-consent-box {
        bottom: 10px;
        width: calc(100% - 20px);
        max-height: calc(100vh - 20px);
        border-radius: 12px;
    }

    .privacy-consent-content {
        padding: 27px 20px 20px;
    }

    .privacy-consent-content h2 {
        font-size: 23px;
    }

    .privacy-consent-content p {
        font-size: 15px;
    }

    .privacy-consent-actions {
        flex-direction: column;
    }

    .privacy-btn {
        width: 100%;
    }
}