/* ─────────────────────────────────────────
   HEADER / NAV
───────────────────────────────────────── */
.site-header { position: sticky; top: 0; z-index: 100; }

.main-nav {
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 48px;
    height: 120px;
    border-bottom: 3px solid var(--crimson);
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    transition: box-shadow 0.2s;
}
.site-header.scrolled .main-nav { box-shadow: 0 4px 20px rgba(0,0,0,0.12); }

.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.nav-logo img { height: 48px; max-height: 48px; width: auto; max-width: 180px; display: block; object-fit: contain; }
.nav-logo-top { font-family: var(--sans); font-weight: 700; font-size: 18px; letter-spacing: 0.12em; color: var(--navy); display: block; line-height: 1; }
.nav-logo-bottom { font-family: var(--sans); font-weight: 700; font-size: 11px; letter-spacing: 0.22em; color: var(--crimson); display: block; margin-top: 2px; }

.nav-links { display: flex; gap: 32px; list-style: none; }
.nav-links a { font-size: 13px; font-weight: 500; color: var(--navy); transition: color 0.2s; }
.nav-links a:hover { color: var(--crimson); }

.nav-right { display: flex; align-items: center; gap: 12px; }

.btn-cart {
    width: 40px; height: 40px;
    display: flex; align-items: center; justify-content: center;
    background: transparent; border: none;
    cursor: pointer; transition: all 0.2s;
    position: relative;
}
.btn-cart:hover { opacity: 0.7; }
.cart-count {
    position: absolute; top: 2px; right: 2px;
    background: var(--crimson); color: #fff;
    font-size: 9px; font-weight: 700;
    width: 16px; height: 16px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    line-height: 1;
}

.btn-login {
    font-family: var(--sans); font-size: 13px; font-weight: 500;
    color: var(--navy); background: transparent;
    border: 1px solid rgba(0,48,96,0.3);
    padding: 8px 18px; cursor: pointer; transition: all 0.2s;
    border-radius: var(--radius); text-decoration: none;
    display: inline-block;
}
.btn-login:hover { background: var(--navy-pale); color: var(--navy); }

.btn-enter-nav {
    font-family: var(--sans); font-size: 13px; font-weight: 600;
    color: #fff; background: var(--crimson); border: none;
    padding: 9px 22px; cursor: pointer; transition: background 0.2s;
    border-radius: var(--radius); text-decoration: none;
    display: inline-block;
}
.btn-enter-nav:hover { background: var(--crimson-lite); color: #fff; }

/* Mobile nav toggle */
.nav-mobile-toggle {
    display: none; flex-direction: column; gap: 5px;
    background: none; border: none; cursor: pointer; padding: 4px;
}
.nav-mobile-toggle span {
    display: block; width: 22px; height: 2px;
    background: var(--navy); transition: all 0.25s; border-radius: 1px;
}
.nav-mobile-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-mobile-toggle.active span:nth-child(2) { opacity: 0; }
.nav-mobile-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ─────────────────────────────────────────
   HERO SLIDER
───────────────────────────────────────── */
.hero-slider { position: relative; height: 82vh; min-height: 560px; overflow: hidden; }

.hero-slide {
    position: absolute; inset: 0; width: 100%; height: 100%;
    display: flex; align-items: center;
    background-size: cover; background-position: center center;
    opacity: 0; transition: opacity 0.9s ease; pointer-events: none;
    background-color: var(--navy-deep);
}
.hero-slide.active { opacity: 1; pointer-events: auto; }

.hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(90deg, rgba(0,18,40,0.96) 0%, rgba(0,18,40,0.90) 35%, rgba(0,18,40,0.65) 58%, rgba(0,18,40,0.15) 100%);
}

.hero-content { position: relative; z-index: 2; padding: 80px 56px 80px 48px; max-width: 580px; }

.hero-kicker {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(192,0,48,0.18); border: 1px solid rgba(192,0,48,0.45);
    color: #FF6680; font-size: 11px; font-weight: 600;
    letter-spacing: 0.14em; text-transform: uppercase;
    padding: 5px 12px; margin-bottom: 28px; width: fit-content;
}
.live-dot {
    width: 6px; height: 6px; border-radius: 50%;
    background: #FF4466; animation: blink 1.8s ease-in-out infinite;
    flex-shrink: 0;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.2} }

.hero-title {
    font-family: var(--serif); font-size: clamp(28px, 3.8vw, 52px);
    font-weight: 700; line-height: 1.15; color: #fff;
    margin-bottom: 20px; letter-spacing: 0.02em;
}
.hero-title em { color: var(--crimson); font-style: italic; }

.hero-sub {
    font-size: 17px; color: rgba(255,255,255,0.65);
    max-width: 440px; margin-bottom: 40px; line-height: 1.7;
}

.hero-cta-row { display: flex; gap: 14px; align-items: center; margin-bottom: 56px; flex-wrap: wrap; }

.btn-hero-ghost {
    font-size: 14px; font-weight: 500;
    color: rgba(255,255,255,0.65); background: transparent;
    border: 1px solid rgba(255,255,255,0.25); padding: 15px 30px;
    cursor: pointer; transition: all 0.2s;
    font-family: var(--sans); border-radius: var(--radius);
    text-decoration: none; display: inline-block;
}
.btn-hero-ghost:hover { border-color: rgba(255,255,255,0.55); color: #fff; }

.hero-stats { display: flex; gap: 44px; padding-top: 40px; border-top: 1px solid rgba(255,255,255,0.12); flex-wrap: wrap; }
.stat-val { font-family: var(--serif); font-size: 24px; font-weight: 700; color: #fff; line-height: 1; margin-bottom: 4px; letter-spacing: 0.02em; }
.stat-val .c, .stat-val em { color: var(--crimson); font-style: normal; }
.stat-lbl { font-size: 11px; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.4); }

/* ─────────────────────────────────────────
   TRUST BAR
───────────────────────────────────────── */
.trust-bar { background: var(--navy); padding: 18px 48px; border-bottom: 1px solid rgba(255,255,255,0.06); }
.trust-bar-inner { display: flex; align-items: center; justify-content: center; gap: 48px; flex-wrap: wrap; width: 100%; }
.trust-item { display: flex; align-items: center; gap: 10px; font-size: 12px; font-weight: 500; color: rgba(255,255,255,0.62); white-space: nowrap; }
.trust-icon { width: 28px; height: 28px; border-radius: 50%; background: rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }

/* ─────────────────────────────────────────
   CLUBS MARQUEE
───────────────────────────────────────── */
.clubs-bar { background: var(--navy-deep); padding: 18px 0; overflow: hidden; border-top: 1px solid rgba(255,255,255,0.05); border-bottom: 1px solid rgba(255,255,255,0.05); }
.clubs-inner { display: flex; gap: 48px; animation: scroll-clubs 26s linear infinite; width: max-content; }
@keyframes scroll-clubs { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }
.club-pill { font-size: 11px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.4); white-space: nowrap; display: flex; align-items: center; gap: 8px; }
.club-pill::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: var(--crimson); opacity: 0.7; flex-shrink: 0; }

/* ─────────────────────────────────────────
   SECTIONS
───────────────────────────────────────── */
.section { padding: 72px 48px; }
.section-bg { background: var(--off-white); }

/* ─────────────────────────────────────────
   RAFFLE CARDS
───────────────────────────────────────── */
.raffles-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 60px; padding: 0 60px; }
#draws .raffles-grid { display: grid; grid-template-columns: repeat(3, 1fr);  }

.raffle-card { background: #fff; border: 1px solid var(--grey-100); overflow: hidden; transition: transform 0.25s, box-shadow 0.25s; }
.raffle-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,48,96,0.1); }

.rc-club-bar { background: var(--navy); padding: 10px 16px; display: flex; align-items: center; justify-content: space-between; }
.rc-club { font-size: 11px; font-weight: 600; color: rgba(255,255,255,0.85); letter-spacing: 0.05em; text-transform: uppercase; }
.rc-status { font-size: 9px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; padding: 3px 8px; }
.rc-status.live    { background: var(--crimson); color: #fff; }
.rc-status.closing { background: #D45800; color: #fff; }
.rc-status.new     { background: #1A7A3C; color: #fff; }

.rc-img-link { display: block; line-height: 0; }
.rc-img { width: 100%; aspect-ratio: 1/1; object-fit: contain; display: block; background-color: var(--grey-50);}

.rc-body { padding: 18px 18px 20px; }
.rc-prize-type { font-size: 10px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--crimson); margin-bottom: 5px; }
.rc-name { font-family: var(--serif); font-size: 14px; font-weight: 700; color: var(--navy-deep); margin-bottom: 4px; line-height: 1.3; letter-spacing: 0.02em; }
.rc-name a { color: inherit; text-decoration: none; }
.rc-name a:hover { color: var(--crimson); }
.rc-value { font-family: var(--serif); font-size: 22px; font-weight: 700; color: var(--navy); margin-bottom: 14px; line-height: 1; letter-spacing: 0.02em; }
.rc-progress-row { display: flex; justify-content: space-between; font-size: 10px; color: var(--grey-500); margin-bottom: 5px; font-weight: 500; }
.rc-track { height: 5px; background: var(--grey-100); border-radius: 2px; margin-bottom: 16px; overflow: hidden; }
.rc-fill { height: 100%; background: var(--crimson); border-radius: 2px; }
.rc-footer { display: flex; align-items: center; justify-content: space-between; padding-top: 14px; border-top: 1px solid var(--grey-100); }
.rc-price-wrap { font-size: 11px; color: var(--grey-500); }
.rc-price-label { display: block; }
.rc-price { font-family: var(--serif); font-size: 20px; font-weight: 700; color: var(--navy); display: block; }
/* ─────────────────────────────────────────
   MOBILE FIXES
───────────────────────────────────────── */

/* Live draws — single column on mobile */
@media (max-width: 700px) {
    .raffles-grid {
        grid-template-columns: 1fr;
        padding: 0;
    }

    /* Ending soon — single column */
    .ending-grid {
        grid-template-columns: 1fr;
    }

    /* Card text should not overflow */
    .rc-name, .rc-value, .ending-name, .ending-value {
        word-break: break-word;
        overflow-wrap: break-word;
    }

    /* Sections */
    .section { padding: 40px 16px; }
    .ending-section { padding: 40px 16px; }

    /* Section row stacks */
    .section-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        margin-bottom: 28px;
    }

    /* Trust bar wraps */
    .trust-bar { gap: 16px; padding: 16px; }

    /* How it works — single column */
    .how-grid { grid-template-columns: 1fr; }
    .how-step::after { display: none; }

    /* CTA banner */
    .cta-banner { padding: 40px 16px; }
    .cta-banner-inner { flex-direction: column; }
}
/* ─────────────────────────────────────────
   ENDING SOON
───────────────────────────────────────── */
.ending-section { padding: 72px 48px; background: var(--navy-deep); }
.ending-section .section-eyebrow { color: var(--orange); }
.ending-section .section-title { color: #fff; }
.ending-section .section-title em { color: var(--orange); }
.ending-section .view-all { color: rgba(255,255,255,0.6); border-color: rgba(255,255,255,0.3); }
.ending-section .view-all:hover { color: var(--orange); border-color: var(--orange); }

.ending-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.ending-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1); overflow: hidden; cursor: pointer; transition: transform 0.25s, border-color 0.25s; }
.ending-card:hover { transform: translateY(-3px); border-color: rgba(255,140,66,0.5); }
.ending-card-img { width: 100%; aspect-ratio: 1/1; object-fit: contain; display: block; }
.ending-card-body { padding: 16px; }
.ending-club-tag { font-size: 9px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.45); margin-bottom: 6px; }
.ending-name { font-family: var(--serif); font-size: 13px; font-weight: 700; color: #fff; margin-bottom: 4px; line-height: 1.3; letter-spacing: 0.02em; }
.ending-value { font-family: var(--serif); font-size: 19px; font-weight: 700; color: var(--orange); margin-bottom: 12px; line-height: 1; letter-spacing: 0.02em; }
.ending-progress-row { display: flex; justify-content: space-between; font-size: 9px; color: rgba(255,255,255,0.4); margin-bottom: 5px; font-weight: 500; }
.ending-track { height: 4px; background: rgba(255,255,255,0.1); border-radius: 2px; margin-bottom: 14px; overflow: hidden; }
.ending-fill { height: 100%; background: var(--orange); border-radius: 2px; }
.ending-footer { display: flex; align-items: center; justify-content: space-between; padding-top: 12px; border-top: 1px solid rgba(255,255,255,0.08); }
.ending-price-wrap { font-size: 10px; color: rgba(255,255,255,0.4); }
.ending-price { font-family: var(--serif); font-size: 17px; font-weight: 700; color: #fff; display: block; letter-spacing: 0.02em; }
.btn-ending { font-family: var(--sans); font-size: 11px; font-weight: 600; background: transparent; border: 1px solid rgba(255,140,66,0.6); color: var(--orange); padding: 8px 14px; cursor: pointer; transition: all 0.2s; border-radius: var(--radius); text-decoration: none; display: inline-block; }
.btn-ending:hover { background: var(--orange); color: #fff; }

/* ─────────────────────────────────────────
   HOW IT WORKS
───────────────────────────────────────── */
.how-grid { display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid var(--grey-100); }
.how-step { padding: 36px 28px; border-right: 1px solid var(--grey-100); background: #fff; position: relative; }
.how-step:last-child { border-right: none; }
.how-num { font-family: var(--serif); font-size: 56px; font-weight: 700; color: var(--grey-100); line-height: 1; margin-bottom: 16px; }
.how-icon-wrap { width: 44px; height: 44px; background: var(--navy-pale); display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.how-title { font-family: var(--serif); font-size: 13px; font-weight: 700; color: var(--navy-deep); margin-bottom: 8px; letter-spacing: 0.03em; }
.how-desc { font-size: 13px; color: var(--grey-500); line-height: 1.65; }
.how-step::after { content: '\2192'; position: absolute; right: -13px; top: 48px; font-size: 18px; color: var(--grey-300); z-index: 1; background: #fff; padding: 0 2px; }
.how-step:last-child::after { display: none; }

/* ─────────────────────────────────────────
   WINNERS CAROUSEL
───────────────────────────────────────── */
.carousel-wrap { position: relative; display: flex; align-items: center; gap: 16px; }
.carousel-viewport { overflow: hidden; width: 100%; }
.carousel-track { display: flex; gap: 24px; transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
.carousel-btn { flex-shrink: 0; width: 44px; height: 44px; border-radius: 50%; background: #fff; border: 1.5px solid var(--grey-100); color: var(--navy); display: flex; align-items: center; justify-content: center; cursor: pointer; transition: all 0.2s; }
.carousel-btn:hover { background: var(--navy); color: #fff; border-color: var(--navy); }
.carousel-dots { display: flex; justify-content: center; gap: 8px; margin-top: 28px; }
.carousel-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--grey-100); border: none; cursor: pointer; transition: all 0.2s; padding: 0; }
.carousel-dot.active { background: var(--crimson); width: 24px; border-radius: 4px; }

.winner-card { flex-shrink: 0; background: #fff; border: 1px solid var(--grey-100); padding: 28px; position: relative; box-sizing: border-box; }
.winner-tick { position: absolute; top: 24px; right: 24px; width: 32px; height: 32px; background: var(--crimson); display: flex; align-items: center; justify-content: center; }
.winner-club-tag { display: inline-flex; align-items: center; font-size: 10px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--navy); background: var(--navy-pale); padding: 4px 10px; margin-bottom: 16px; }
.winner-prize-name { font-family: var(--serif); font-size: 15px; font-weight: 700; color: var(--navy-deep); margin-bottom: 4px; letter-spacing: 0.02em; }
.winner-amount { font-family: var(--serif); font-size: 26px; font-weight: 700; color: var(--crimson); margin-bottom: 4px; line-height: 1; letter-spacing: 0.02em; }
.winner-name-loc { font-size: 13px; color: var(--grey-500); margin-bottom: 18px; }
.winner-quote { font-family: var(--serif); font-size: 15px; font-style: italic; color: var(--grey-500); line-height: 1.6; padding-left: 14px; border-left: 3px solid var(--crimson); }



/* ─────────────────────────────────────────
   WINNERS PAGE
───────────────────────────────────────── */
.winners-page-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.winners-page-card {
    background: #fff;
    border: 1px solid var(--grey-100);
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
}
.winners-page-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 32px rgba(0,48,96,0.09);
}

/* Photo area */
.winners-page-photo-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    background: var(--navy-deep);
    overflow: hidden;
}
.winners-page-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.winners-page-initials {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--serif);
    font-size: 48px;
    font-weight: 700;
    color: rgba(255,255,255,0.2);
    letter-spacing: 0.05em;
}
.winners-page-tick {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 28px;
    height: 28px;
    background: var(--crimson);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Body */
.winners-page-body {
    padding: 20px;
}
.winners-page-club {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--navy);
    background: var(--navy-pale);
    display: inline-block;
    padding: 3px 10px;
    margin-bottom: 10px;
}
.winners-page-name {
    font-family: var(--serif);
    font-size: 15px;
    font-weight: 700;
    color: var(--navy-deep);
    letter-spacing: 0.02em;
    margin-bottom: 2px;
}
.winners-page-loc {
    font-size: 12px;
    color: var(--grey-300);
    margin-bottom: 10px;
}
.winners-page-prize {
    font-size: 12px;
    font-weight: 600;
    color: var(--grey-500);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 2px;
}
.winners-page-amount {
    font-family: var(--serif);
    font-size: 26px;
    font-weight: 700;
    color: var(--crimson);
    line-height: 1;
    margin-bottom: 12px;
    letter-spacing: 0.02em;
}
.winners-page-quote {
    font-family: var(--serif);
    font-size: 13px;
    font-style: italic;
    color: var(--grey-500);
    line-height: 1.6;
    padding-left: 12px;
    border-left: 3px solid var(--crimson);
}

/* Winner photo on carousel cards */
.winner-card--has-photo .winner-photo {
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    margin-bottom: 16px;
}
.winner-card--has-photo .winner-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media (max-width: 900px) {
    .winners-page-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
    .winners-page-grid { grid-template-columns: 1fr; }
}

/* ─────────────────────────────────────────
   CTA BANNER
───────────────────────────────────────── */
.cta-banner { background: var(--crimson); padding: 64px 48px; position: relative; overflow: hidden; }
.cta-banner::before { content: ''; position: absolute; inset: 0; background-image: repeating-linear-gradient(-45deg, transparent, transparent 30px, rgba(255,255,255,0.04) 30px, rgba(255,255,255,0.04) 31px); pointer-events: none; }
.cta-banner-inner { position: relative; z-index: 1; display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; width: 100%; }
.cta-title { font-family: var(--serif); font-size: clamp(18px, 2.4vw, 28px); font-weight: 700; color: #fff; margin-bottom: 8px; line-height: 1.2; letter-spacing: 0.03em; }
.cta-sub { font-size: 15px; color: rgba(255,255,255,0.75);     max-width: 1000px;}
.btn-cta-white { font-family: var(--sans); font-size: 14px; font-weight: 700; color: var(--crimson); background: #fff; border: none; padding: 16px 36px; cursor: pointer; transition: all 0.2s; border-radius: var(--radius); white-space: nowrap; text-decoration: none; display: inline-block; }
.btn-cta-white:hover { background: #f0f0f0; color: var(--crimson); transform: translateY(-1px); }

/* ─────────────────────────────────────────
   FOOTER
───────────────────────────────────────── */
.site-footer { background: var(--navy-deep); padding: 60px 48px 32px; border-top: 3px solid var(--crimson); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand .nav-logo-top { font-size: 20px; }
.footer-logo-link { text-decoration: none; display: block; margin-bottom: 16px; }
.footer-logo-link img { height: 44px; max-height: 44px; width: auto; max-width: 160px; display: block; object-fit: contain; }
.footer-tagline { font-size: 13px; color: rgba(255,255,255,0.45); line-height: 1.7; max-width: 240px; }
.footer-col-head { font-size: 10px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.35); margin-bottom: 18px; }
.footer-links li { margin-bottom: 9px; }
.footer-links a { font-size: 13px; color: rgba(255,255,255,0.58); transition: color 0.2s; }
.footer-links a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; }
.footer-legal { font-size: 11px; color: rgba(255,255,255,0.32); }
.footer-18plus { width: 32px; height: 32px; border: 2px solid rgba(255,255,255,0.25); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 10px; font-weight: 700; color: rgba(255,255,255,0.4); flex-shrink: 0; }
/* ─────────────────────────────────────────
   FOOTER WIDGET MENU STYLING
───────────────────────────────────────── */

/* Remove default widget wrapper padding/margin */
.site-footer .footer-widget { margin: 0; padding: 0; }

/* Widget title — already using footer-col-head class so this is a fallback */
.site-footer .footer-widget h4 {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.35);
    margin-bottom: 18px;
    font-family: var(--sans);
}

/* The menu container and list */
.site-footer .footer-widget .menu-footer-container,
.site-footer .footer-widget div[class*="menu-"][class*="-container"] {
    margin: 0; padding: 0;
}

.site-footer .footer-widget ul.menu {
    list-style: none;
    margin: 0;
    padding: 0;
}

.site-footer .footer-widget ul.menu li {
    margin-bottom: 9px;
    padding: 0;
}

.site-footer .footer-widget ul.menu li a {
    font-size: 13px;
    font-family: var(--sans);
    color: rgba(255,255,255,0.58);
    text-decoration: none;
    transition: color 0.2s;
}

.site-footer .footer-widget ul.menu li a:hover,
.site-footer .footer-widget ul.menu li.current-menu-item > a {
    color: #fff;
}

/* Hide sub-menus */
.site-footer .footer-widget ul.menu ul {
    display: none;
}
/* ─────────────────────────────────────────
   ARCHIVE PAGE
───────────────────────────────────────── */
.archive-header { background: var(--navy-deep); padding: 48px; border-bottom: 3px solid var(--crimson); }
.archive-title { font-family: var(--serif); font-size: clamp(28px, 4vw, 48px); font-weight: 700; color: #fff; letter-spacing: 0.03em; }
.archive-title em { color: var(--crimson); font-style: italic; }
.pallas-woo-wrap { padding: 48px 48px; }
.archive-toolbar { display: flex; align-items: center; justify-content: space-between; margin-bottom: 32px; padding-bottom: 16px; border-bottom: 1px solid var(--grey-100); }
.archive-result-count { font-size: 13px; color: var(--grey-500); }
.archive-pagination { margin-top: 48px; display: flex; justify-content: center; gap: 8px; }
.archive-pagination .page-numbers { display: inline-flex; align-items: center; justify-content: center; width: 36px; height: 36px; border: 1px solid var(--grey-100); font-size: 13px; color: var(--navy); transition: all 0.2s; text-decoration: none; }
.archive-pagination .page-numbers.current, .archive-pagination .page-numbers:hover { background: var(--navy); color: #fff; border-color: var(--navy); }
.no-products { text-align: center; padding: 80px 0; }
.no-products p { font-size: 16px; color: var(--grey-500); margin-bottom: 24px; }

/* ─────────────────────────────────────────
   SINGLE PRODUCT
───────────────────────────────────────── */
.single-product-wrap { padding: 48px 48px 80px; }
.product-breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 12px; color: var(--grey-500); margin-bottom: 36px; flex-wrap: wrap; }
.product-breadcrumb a { color: var(--grey-500); text-decoration: none; }
.product-breadcrumb a:hover { color: var(--crimson); }
.product-breadcrumb span { color: var(--grey-300); }

.product-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; padding: 0 60px;}
.product-main-image { overflow: hidden; border-radius: var(--radius); }
.product-img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.product-club-badge { background: var(--navy); color: #fff; padding: 12px 16px; display: flex; align-items: center; gap: 8px; margin-top: 2px; }
.product-club-label { font-size: 10px; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 0.1em; }
.product-club-name { font-size: 13px; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; }

.product-status-row { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.product-prize-type { font-size: 11px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--grey-500); }
.product-title { font-family: var(--serif); font-size: clamp(22px, 3vw, 36px); font-weight: 700; color: var(--navy-deep); margin-bottom: 12px; line-height: 1.2; letter-spacing: 0.02em; }
.product-prize-value { font-family: var(--serif); font-size: 42px; font-weight: 700; color: var(--navy); margin-bottom: 8px; line-height: 1; letter-spacing: 0.02em; }
.product-ticket-price { display: flex; align-items: baseline; gap: 8px; margin-bottom: 24px; }
.ticket-price-label { font-size: 12px; color: var(--grey-500); }
.ticket-price-val { font-family: var(--serif); font-size: 22px; font-weight: 700; color: var(--navy); }
.product-progress-wrap { margin-bottom: 20px; }
.product-draw-date { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--grey-500); margin-bottom: 28px; }
.product-draw-date strong { color: var(--navy-deep); }

.product-add-to-cart { margin-bottom: 28px; }

.product-description { border-top: 1px solid var(--grey-100); padding-top: 24px; margin-bottom: 24px; margin-top: 24px;}
.product-desc-title { font-family: var(--serif); font-size: 16px; font-weight: 700; color: var(--navy-deep); margin-bottom: 12px; letter-spacing: 0.02em; }
.product-description p { font-size: 14px; color: var(--grey-500); line-height: 1.7; margin-bottom: 12px; }

.product-trust-mini { display: flex; gap: 20px; flex-wrap: wrap; padding-top: 20px; border-top: 1px solid var(--grey-100); margin-top:20px; }
.trust-mini-item { display: flex; align-items: center; gap: 6px; font-size: 12px; color: var(--grey-500); }
.woocommerce-product-details__short-description {
    padding: 0 50px 20px 0;
}

.product_meta {
    display: none;
}

/* ─────────────────────────────────────────
   WOOCOMMERCE PRODUCT GALLERY
───────────────────────────────────────── */

/* Main gallery wrapper */
.woocommerce-product-gallery {
    position: relative;
    width: 100%;
}

/* Hide the default zoom icon */
/*.woocommerce-product-gallery__trigger {*/
/*    display: none !important;*/
/*}*/

/* Main product image */
.woocommerce-product-gallery__wrapper {
    margin: 0;
    padding: 0;
}

.woocommerce-product-gallery__image {
    display: block;
    width: 100%;
}

.woocommerce-product-gallery__image img,
.woocommerce-product-gallery__image a img {
    width: 100%;
    height: auto;
    /*aspect-ratio: 4/3;*/
    /*object-fit: cover;*/
    display: block;
    border-radius: var(--radius);
}

/* Thumbnail strip — horizontal row below main image */
.flex-control-nav {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 12px;
    padding: 0;
    list-style: none;
}

.flex-control-nav li {
    width: calc(25% - 6px) !important;
    margin: 0 !important;
    flex-shrink: 0;
}

.flex-control-nav li img {
    width: 100% !important;
    height: auto !important;
    aspect-ratio: 4/3;
    object-fit: cover;
    display: block;
    cursor: pointer;
    border-radius: var(--radius);
    border: 2px solid transparent;
    transition: border-color 0.2s, opacity 0.2s;
    opacity: 0.65;
}

.flex-control-nav li img:hover,
.flex-control-nav li img.flex-active {
    border-color: var(--crimson);
    opacity: 1;
}

/* Flexslider overrides */
.flexslider { border: none !important; margin: 0 !important; box-shadow: none !important; background: none !important; }
.flex-viewport { border-radius: var(--radius); overflow: hidden; }

/* Remove stray bullets and nav arrows */
.woocommerce-product-gallery .flex-control-paging { display: none; }
.woocommerce-product-gallery .flex-direction-nav { display: none; }

a.woocommerce-product-gallery__trigger {
    position: absolute;
    z-index: 3;
    top: 8px;
    right: 8px;
}

.product-gallery img.emoji {
    width: 26px !important;
    height: 27px !important;
}
a.woocommerce-product-gallery__trigger {
    position: absolute;
    z-index: 3;
    top: 8px;
    right: 8px;
    width: 36px;
    height: 36px;
    background: var(--crimson);
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}
a.woocommerce-product-gallery__trigger:hover {
    background: var(--crimson-lite);
}
 
/* Hide the default emoji icon */
a.woocommerce-product-gallery__trigger img {
    display: none !important;
}
 
/* Replace with a white magnifying glass SVG */
a.woocommerce-product-gallery__trigger::after {
    content: '';
    display: block;
    width: 18px;
    height: 18px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 18 18' fill='none'%3E%3Ccircle cx='7.5' cy='7.5' r='5.5' stroke='white' stroke-width='1.8'/%3E%3Cpath d='M12 12L16 16' stroke='white' stroke-width='1.8' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain;
}
 
/* ─────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────── */
@media (max-width: 1100px) {
    .ending-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 900px) {
    .main-nav { padding: 0 20px; height: 130px; }
    .nav-links, .nav-right .btn-login, .nav-right .btn-enter-nav { display: none; }
    .nav-mobile-toggle { display: flex; }
    .nav-menu-wrap { display: none; position: absolute; top: 125px; left: 0; right: 0; background: #fff; border-top: 1px solid var(--grey-100); box-shadow: 0 8px 24px rgba(0,0,0,0.1); padding: 16px 20px; z-index: 99; }
    .nav-menu-wrap.open { display: block; }
    .nav-menu-wrap .nav-links { flex-direction: column; gap: 0; }
    .nav-menu-wrap .nav-links li { border-bottom: 1px solid var(--grey-50); }
    .nav-menu-wrap .nav-links a { display: block; padding: 12px 0; font-size: 15px; }
    .container { width: 100%; }
    .hero-content { padding: 48px 20px; }
    .hero-title { font-size: clamp(24px, 7vw, 36px); }
    .raffles-grid { grid-template-columns: 1fr; }
    #draws .raffles-grid { grid-template-columns: 1fr; }
    .how-grid { grid-template-columns: 1fr 1fr; }
    .how-step::after { display: none; }
    .section { padding: 48px 20px; }
    .ending-section { padding: 48px 20px; }
    .cta-banner { padding: 40px 20px; }
    .cta-banner-inner { flex-direction: column; text-align: center; }
    .product-layout { grid-template-columns: 1fr; padding:0;}
    .trust-bar { padding: 16px 20px; }
    .footer-grid { grid-template-columns: 1fr; gap: 28px; }
}

@media (max-width: 600px) {
    .ending-grid { grid-template-columns: 1fr; }
    .hero-stats { gap: 24px; }
    .how-grid { grid-template-columns: 1fr; }
}

/* ─────────────────────────────────────────
   SINGLE PRODUCT — ACF BLOCKS
───────────────────────────────────────── */
.product-acf-block {
    border-top: 1px solid var(--grey-100);
    padding-top: 20px;
    margin-top: 20px;
    margin-bottom: 4px;
}
.product-acf-title {
    font-family: var(--serif);
    font-size: 13px;
    font-weight: 700;
    color: var(--navy-deep);
    margin-bottom: 10px;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}
.product-acf-block p {
    font-size: 14px;
    color: var(--grey-500);
    line-height: 1.7;
    margin-bottom: 8px;
}
.product-acf-block ul {
    list-style: disc;
    padding-left: 20px;
    font-size: 14px;
    color: var(--grey-500);
    line-height: 1.7;
}
.product-livestream {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 18px;
    background: rgba(192,0,48,0.05);
    border: 1px solid rgba(192,0,48,0.2);
    border-top: none;
    margin-top: 0;
}
.product-livestream a {
    font-size: 13px;
    font-weight: 600;
    color: var(--crimson);
    text-decoration: none;
}
.product-livestream a:hover { text-decoration: underline; }

/* ─────────────────────────────────────────
   RELATED DRAWS SECTION
───────────────────────────────────────── */
.related-draws-section {
    padding: 64px 48px;
    background: var(--off-white);
    border-top: 1px solid var(--grey-100);
    margin-top: 80px;
}

@media (max-width: 900px) {
    .related-draws-section { padding: 48px 20px; }
    .related-draws-section .raffles-grid { grid-template-columns: 1fr; }
}
