/* Full-width wrapper with background */
.site-footer {
    background-color: #FDF8F0;
    max-width: 100% !important;
    margin: 0;
    padding: 0; /* Move padding to the inner container for better control */
    border-top: 1px solid #F5E2D3 !important;
}

/* Constrained content container */
.footer-content-wrapper {
    max-width: 1440px;
    margin: 0 auto; /* Centers the content */
    padding: 48px 0px 24px 0px; 
    box-sizing: border-box;
}

@media (max-width: 1366px) {
.footer-content-wrapper {
    padding: 48px 64px 24px 64px; 
  }
}

@media (max-width: 768px) {
.footer-content-wrapper {
    padding: 15px; 
  }
}

.page-content-wrapper {
    max-width: 1440px;
    margin: 0 auto; /* Centers the content */
    padding: 10px 0px 24px 0px; 
    box-sizing: border-box;
}

@media (max-width: 1366px) {
.page-content-wrapper {
    padding: 10px 64px 24px 64px; 
  }
}

@media (max-width: 768px) {
.page-content-wrapper {
    padding: 15px; 
  }
}




.site-footer .container {
    max-width: 100%;
    padding: 0;
    margin: 0;
}

.footer-logo {
    max-width: 180px;
    height: auto;
}

.footer-nav {
    list-style: none;
    padding: 0;
}

.footer-nav li {
    margin-bottom: 12px;
}

.footer-nav li a {
    text-decoration: none;
    color: #212529;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.footer-nav li a:hover {
    color: #c41230; /* Example brand red hover */
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #fff;
    border-radius: 50%;
    margin-left: 10px;
    color: #007bff; /* Facebook blue */
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    text-decoration: none;
}

.social-icon i.fa-youtube { color: #ff0000; }

.footer-divider {
    border-top: 1px solid #e0dbd1;
    opacity: 1;
}

.copyright-text {
    font-size: 13px;
    color: #666;
}

/* ════════════════════════════════════════════
   AGE VERIFICATION CSS APPLY FROM HERE
════════════════════════════════════════════ */

/* ── Overlay ──────────────────────────────── */
.age-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(0px);
    -webkit-backdrop-filter: blur(0px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999;
    padding: 20px;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.5s cubic-bezier(0.25, 1, 0.5, 1),
                visibility 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.age-overlay.age-hiding {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.age-overlay.age-gone {
    display: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
}

/* ── Popup Box ────────────────────────────── */
.age-popup-container {
    display: flex;
    width: 100%;
    max-width: 840px;
    height: 500px;
    background-color: #F4EBE1;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.7);
}

/* ── Left Image Panel ─────────────────────── */
.age-popup-left {
    flex: 1;
    height: 100%;
    background-color: #000;
}

.age-popup-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ── Right Content Panel ──────────────────── */
.age-popup-right {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px;
    text-align: center;
    color: #222;
}

.age-content-wrapper {
    width: 100%;
    max-width: 320px;
}

/* ── Logo ─────────────────────────────────── */
.age-logo-container {
    margin-bottom: 24px;
}

.age-brand-logo {
    max-height: 70px;
    object-fit: contain;
}

/* ── Heading & Instruction ────────────────── */
.age-popup-right h2 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #1a1a1a;
    letter-spacing: -0.5px;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.age-instruction {
    font-size: 14px;
    color: #555;
    margin-bottom: 30px;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

/* ── Button Group ─────────────────────────── */
.age-button-group {
    display: flex;
    gap: 14px;
    margin-bottom: 35px;
}

.age-btn {
    flex: 1;
    padding: 14px 0;
    border: none;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
    cursor: pointer;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    transition: transform 0.1s ease, filter 0.2s ease;
}

.age-btn:hover  { filter: brightness(0.88); }
.age-btn:active { transform: scale(0.97); }

.age-btn-red   { background-color: #C81A1A; }
.age-btn-green { background-color: #0F8A3C; }

/* ── Legal Text ───────────────────────────── */
.age-legal-text {
    font-size: 11px;
    line-height: 1.5;
    color: #777;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.age-legal-text a {
    color: #444;
    text-decoration: underline;
}

/* ── Error / Access Denied State ─────────── */
.age-error-container {
    margin-top: 10px;
    animation: ageErrorFadeIn 0.4s ease forwards;
}

.age-error-container.age-hidden {
    display: none;
}

.age-error-icon {
    width: 46px;
    height: 46px;
    background-color: #E53E3E;
    color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    font-weight: bold;
    margin: 0 auto 16px auto;
}

.age-error-container h3 {
    color: #C81A1A;
    font-size: 18px;
    margin-bottom: 6px;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.age-error-container p {
    font-size: 13px;
    color: #555;
    line-height: 1.4;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

@keyframes ageErrorFadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ════════════════════════════════════════════
   RESPONSIVE — Mobile ( max-width: 768px )
════════════════════════════════════════════ */
@media (max-width: 768px) {
    .age-popup-container {
        flex-direction: column;
        height: auto;
        max-width: 400px;
        border-radius: 20px;
    }

    /* Hide image on mobile */
    .age-popup-left {
        display: none;
    }

    .age-popup-right {
        flex: none;
        width: 100%;
        padding: 48px 24px;
    }
}