*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: Arial, Helvetica, sans-serif; font-size: 10px; overflow-x: hidden; }
ul { list-style: none; }
a { text-decoration: none; cursor: pointer; }
img { display: block; }

/* ─── TOP BAR (yellow) ─── */
.top-bar {
    background: #FFD400;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 100%;
}
.top-bar-inner {
    width: 100%;
    max-width: 1200px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 30px;
    margin-bottom: 10px;
}
/* Social icons – left */
.top-social { display: flex; align-items: center; gap: 8px; }
.top-social a img { width: 30px; height: 30px; object-fit: cover; border-radius: 4px; }

/* Right cluster: arrow + button + language */
.top-right { display: flex; align-items: center; gap: 14px; }
.top-right .arrow-img {
    position: relative;
    top: -13px;
    width: 47px;
    height: 47px;
    object-fit: cover;
}
.franchising-btn {
    background: #111;
    color: #fff;
    font-size: 15px;
    padding: 16px 17px;
    border: none;
    cursor: pointer;
    white-space: nowrap;
    font-family: Arial, Helvetica, sans-serif;
    border-radius: 8px;
}
.language-wrap { display: flex; align-items: center; gap: 12px; font-size: 18px; color: #111; }
.language-wrap select {
    background: transparent;
    border: none;
    font-size: 18px;
    font-weight: 600;
    color: #8B6914;
    cursor: pointer;
    appearance: none;
    padding-right: 16px;
}
.language-wrap select:hover,
.language-wrap select:focus {
    background: transparent;
    border: none;
    appearance: none;
    outline: none;
}
.language-wrap .lang-caret { font-size: 16px; color: #8B6914; margin-left: -12px; pointer-events: none; }

.owl-item {
    height: 80vh;
}

/* ─── NAV BAR (black) ─── */
.nav-bar {
    background: #111;
    height: 95px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 100%;
}
.nav-inner {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    padding: 0 15px;
    gap: 0;
}

/* Checker pattern + NYF logo block */
.nav-brand {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}
.nav-checker {
    width: 50px;
    height: 90px;
    object-fit: cover;
    flex-shrink: 0;
}
.nav-logo {
    width: auto;
    height: 80px;
    object-fit: cover;
    margin-left: 10px;
    border-radius: 7px;
}
.maple-leaf {
    width: 45px;
    height: 45px;
    object-fit: cover;
    margin-left: 8px;
}

/* Nav links */
.nav-links {
    display: flex;
    align-items: center;
    gap: 0;
    flex: 1;
    justify-content: center;
    margin-top: 10px;
}
.nav-links li a {
    color: #fff;
    font-size: 17px;
    font-weight: 500;
    padding: 0 16px;
    height: 70px;
    display: flex;
    align-items: center;
    white-space: nowrap;
    transition: color 0.2s;
    font-family: Arial, Helvetica, sans-serif;
}
.nav-links li a:hover { color: #FFD400; }

/* ─── HAMBURGER BUTTON ─── */
.nav-hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    background: white;
    border: none;
    cursor: pointer;
    padding: 15px;
    margin-left: auto;
    z-index: 100000;
}

.nav-hamburger span {
    display: block;
    width: 26px;
    height: 3px;
    background: black;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* ─── HAMBURGER → X animation ─── */
.nav-hamburger.open span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}
.nav-hamburger.open span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}
.nav-hamburger.open span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* ─── MOBILE NAV ─── */
@media (max-width: 768px) {

    /* ── TOP BAR ── */
    .top-bar {
        height: auto;
        padding: 0;
    }

    .top-bar-inner {
        flex-direction: column;
        padding: 0;
        gap: 0;
        margin-bottom: 0;
    }

    /* Row 1: hamburger + franchising button — full yellow row */
    .top-social {
        display: none;
    }

    .top-right {
        flex-direction: row;
        align-items: center;
        width: 100%;
        gap: 0;
        padding: 8px 10px;
        background: #FFD400;
    }

    /* Hide the curved arrow on mobile */
    .top-right .arrow-img {
        position: absolute;
        top: 0;
        left: 65px;
        width: 45px;
        height: 45px;
    }

    /* Franchising button: takes remaining space, sharp corners */
    .franchising-btn {
        flex: 1;
        font-weight: 900;
        letter-spacing: 1.5px;
        padding: 12px 14px;
        border-radius: 4px;
        text-align: center;
        background: #111;
        color: #fff;
        text-transform: uppercase;
        margin-top: 0;
        font-size: 12px;
        margin-left: 85px;
    }

    /* Row 2: language — centered on its own yellow row */
    .language-wrap {
        width: 100%;
        justify-content: center;
        padding: 6px 10px 10px;
        font-size: 14px;
        background: #FFD400;
        /*border-top: 1px solid rgba(0,0,0,0.08);*/
    }

    .language-wrap select {
        font-size: 14px;
        font-weight: 700;
    }

    /* ── NAV BAR (Row 3) ── */
    .nav-bar {
        height: 80px;
        padding: 0;
    }

    .nav-inner {
        flex-wrap: nowrap;
        justify-content: center;
        align-items: center;
        padding: 10px 16px;
        gap: 12px;
        position: relative;
    }

    /* Hamburger: leftmost — hide it on the top bar row, show it here */
    .nav-hamburger {
        display: flex;
        order: -1; /* leftmost */
        margin-right: auto;
        position: absolute;
        left: 0;
    }

    /* Brand: checker + logo + leaf — all centered */
    .nav-brand {
        width: 100%;
        display: flex;
        justify-content: space-between;
    }

    .nav-checker {
        display: block;
        width: 38px;
        height: 60px;
    }

    .nav-logo {
        width: 140px;
        height: auto;
        margin-left: 0;
    }

    .maple-leaf {
        display: block;
        width: 40px;
        height: 40px;
        margin-left: 8px;
    }

    /* Nav dropdown */
    .nav-links {
        background: #FFD400;
        display: none;
        flex-direction: column;
        width: 100%;
        height: 100vh;
        position: absolute;
        top: -175%;
        left: 0;
        z-index: 999;
        padding: 8px 0 14px;
        box-shadow: 0 6px 20px rgba(0,0,0,0.4);
    }

    .nav-links.open {
        display: flex;
    }

    .nav-links li {
        width: 100%;
        text-align: center;
        /*border-top: 1px solid #222;*/
    }

    .nav-links li a {
        width: 100%;
        justify-content: center;
        padding: 14px 0;
        height: auto;
        color: black;
        font-size: 23px;
        font-weight: bold;
    }

    .nav-links li a:hover {
        color: black;
    }

    .nav-badge-block {
        height: auto;
        padding: 12px 14px;
    }
}

@media (max-width: 480px) {
    .language-wrap {
        font-size: 13px;
    }

    .language-wrap select {
        font-size: 13px;
    }

    .nav-logo {
        width: 130px;
        height: auto;
    }

    .nav-checker {
        width: 32px;
        height: 52px;
    }

    .maple-leaf {
        width: 35px;
        height: 35px;
    }
}

/* Fry Society loyalty badge */
.fry-society-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 6px;
    flex-shrink: 0;
}
.fry-society-badge .badge-label {
    color: #fff;
    font-size: 8px;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 4px;
}
.fry-society-badge .badge-label img { width: 20px; height: auto; }
.fry-society-badge .badge-main {
    color: #fff;
    font-size: 19px;
    font-weight: 700;
    font-style: italic;
    letter-spacing: 1px;
    line-height: 1;
    font-family: Georgia, serif;
}

/* black rectangle behind badge */
.nav-badge-block {
    background: #000;
    padding: 6px 14px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 70px;
    flex-shrink: 0;
    margin-right: 2px;
}

/* Loyalty program image */
.loyalty-img {
    height: 41px;
    object-fit: contain;
    margin-left: 10px;
}

/* ─── MAIN / SLIDER SECTION ─── */
.main-section {
    background: url("../img/slide-bg.jpeg") center/cover no-repeat;
    position: relative;
    width: 100%;
    overflow: hidden;
    min-height: 75vh;
    display: flex;
    align-items: stretch;
    justify-content: center;
}

/* Dark textured side panels */
.side-panel {
    flex: 1;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
.side-panel-bg {
    position: absolute;
    inset: 0;
    background: #1c1c1c;
}
.side-panel-text {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    opacity: 0.18;
    user-select: none;
}
.side-panel-text span {
    color: #fff;
    font-size: 28px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 3px;
    white-space: nowrap;
    font-family: Arial Black, Arial, sans-serif;
}
.side-panel-text span.small { font-size: 16px; }

/* Center slideshow */
.slideshow-wrap {
    width: 100%;
    max-width: 1200px;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
}
.slide {
    position: relative;
    width: 100%;
    height: 100%;
}
.slide img.slide-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}
.slide-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding-bottom: 60px;
    gap: 14px;
}
.slide-title {
    color: #fff;
    font-size: 65px;
    font-weight: 900;
    text-align: center;
    line-height: 1em;
    text-shadow: 0 2px 8px rgba(0,0,0,0.35);
    font-family: Arial Black, Arial, sans-serif;
    text-transform: uppercase;
}
.slide-btn {
    background: #FFD400;
    color: #111;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 2px;
    padding: 14px 40px;
    border: none;
    cursor: pointer;
    border-radius: 30px;
    text-transform: uppercase;
    font-family: Arial, Helvetica, sans-serif;
    transition: background 0.2s;
}
.slide-btn:hover { background: #e6be00; }
.slide-small-text {
    color: #000;
    font-size: 11px;
    text-align: center;
    max-width: 600px;
}

/* Prev / Next arrows */
.slide-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 10;
    padding: 10px;
    color: #fff;
}
.slide-arrow svg { width: 21px; height: 41px; filter: drop-shadow(0 1px 3px rgba(0,0,0,0.5)); }
.slide-arrow.prev { left: 18%; }
.slide-arrow.next { right: 18%; transform: translateY(-50%) rotate(180deg); }

/* Dots */
.slide-dots {
    position: absolute;
    bottom: 18px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}
.dot {
    width: 10px; height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    border: none;
}
.dot.active { background: #FFD400; }

.owl-nav {
    display: none !important;
}

/* ─── FOOTER ─── */
footer {
    background: #111;
    width: 100%;
    position: relative;
    padding-top: 0;
}

/* Half-circle logo cutout at top of footer */
.footer-logo-arch {
    position: relative;
    display: flex;
    justify-content: center;
    margin-bottom: 0;
    height: 110px;
    overflow: visible;
}
.footer-arch-shape {
    background: url("../img/halfCircle.png") center / cover no-repeat;
    width: 300px;
    height: 85px;
    display: flex;
    justify-content: center;
    overflow: hidden;
}
.footer-arch-logo {
    width: 75px;
    height: 68px;
    object-fit: cover;
    margin-bottom: 12px;
}

.footer-body {
    display: flex;
    justify-content: center;
    padding: 30px 40px 40px;
    gap: 60px;
}
.footer-col h4 {
    color: #FFD400;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 14px;
    font-family: Arial, Helvetica, sans-serif;
}
.footer-col p, .footer-col a {
    color: #fff;
    font-size: 14px;
    line-height: 2;
    display: block;
    text-decoration: underline;
    font-family: Arial, Helvetica, sans-serif;
}
.footer-col a:hover { color: #FFD400; }

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 80px 40px;
}
.footer-social { display: flex; gap: 10px; margin-left: auto; margin-right: 120px; }
.footer-social a img {
    width: 35px; height: 35px;
    object-fit: cover;
    border-radius: 6px;
}
.footer-gptw {
    width: 75px;
    object-fit: contain;
}

@media (max-width: 992px) {

    .top-bar-inner {
        padding: 0 15px;
    }

    .nav-inner {
        flex-wrap: wrap;
        justify-content: center;
    }

    .nav-links {
        /*flex-wrap: wrap;*/
        justify-content: center;
    }

    /*.nav-links li a {
        font-size: 14px;
        padding: 10px;
        height: auto;
    }*/

    .slide-title {
        font-size: 40px;
    }

    .footer-body {
        flex-wrap: wrap;
        gap: 30px;
        text-align: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        padding: 20px;
    }

    .footer-social {
        margin: 0;
    }
}

@media (max-width: 768px) {

    /* Top bar */
    .top-bar-inner {
        flex-direction: column;
        gap: 10px;
    }

    .top-right {
        flex-direction: column;
        gap: 8px;
    }

    /*.franchising-btn {
        margin-top: 15px;
        font-size: 11px;
        padding: 7px 14px;
    }*/

    /* Nav */
    /*.nav-bar {
        height: auto;
        padding: 10px 0;
    }*/

    /*.nav-inner {
        flex-direction: column;
        gap: 10px;
    }*/

    .nav-links {
        /*flex-direction: column;*/
        width: 100%;
    }

    .nav-links li {
        width: 100%;
        text-align: center;
    }

    .nav-links li a {
        width: 100%;
        justify-content: center;
        /*border-top: 1px solid #222;*/
    }

    /* Slide */
    .slide-title {
        font-size: 28px;
        padding: 0 10px;
    }

    .slide-btn {
        padding: 10px 20px;
        font-size: 11px;
    }

    .slide-overlay {
        padding-bottom: 30px;
    }

    /* Footer */
    .footer-body {
        flex-direction: column;
        align-items: center;
    }

    .footer-col {
        width: 100%;
        text-align: center;
    }

    .top-social {
        display: none;
    }

    /*.top-right .arrow-img {
        display: none;
    }*/

    /*.maple-leaf, .nav-checker {
        display: none;
    }*/

    .main-section {
        min-height: 40vh;
    }

    .slide-arrow.next {
        right: 2%;
    }

    .slide-arrow.prev {
        left: 2%;
    }

    .slide-arrow svg {
        width: 10px;
    }

    .nav-badge-block-li {
        display: none;
    }
}

@media (max-width: 480px) {
    .slide-title {
        font-size: 22px;
    }

    .slide-btn {
        font-size: 10px;
        padding: 8px 16px;
    }

    /*.nav-logo {
        width: 55px;
        height: 55px;
    }*/

    .top-social {
        display: none;
    }

    /*.top-right .arrow-img {
        display: none;
    }*/

    .top-social a img {
        width: 24px;
        height: 24px;
    }

    /*.franchising-btn {
        margin-top: 12px;
        font-size: 12px;
        padding: 7px 14px;
    }*/

    .language-wrap {
        font-size: 14px;
    }

    .language-wrap select {
        font-size: 14px;
        padding-right: 10px;
    }

    /*.maple-leaf, .nav-checker {
        display: none;
    }*/

    .main-section {
        min-height: 40vh;
    }

    .slide-arrow.next {
        right: 2%;
    }

    .slide-arrow.prev {
        left: 2%;
    }

    .slide-arrow svg {
        width: 10px;
    }
}

/* ─── FRY SOCIETY SECTION ─── */
.fry-society-section {
    background: #ffffff;
    position: relative;
    overflow: hidden;
    width: 100%;
    min-height: 260px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px 0;
}

.frs-food-bg {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    pointer-events: none;
    z-index: 0;
    display: flex;
    justify-content: center;
}

.frs-food-img {
    width: 100%;
    max-width: 1200px;
    object-fit: cover;
    object-position: top center;
    display: block;
    mix-blend-mode: multiply;
}

.frs-inner {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1200px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding-bottom: 200px;
}

/* ── LEFT ── */
.frs-left {
    flex: 1;
    text-align: center;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}

.frs-headline {
    font-family: 'Lato', Arial, Helvetica, sans-serif;
    font-size: 28px;
    font-weight: 400;
    line-height: 1.3;
    color: #111;
    margin-bottom: 14px;
}

.frs-headline strong {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 900;
    font-style: italic;
    font-size: 32px;
    display: block;
}

.frs-body {
    font-family: 'Lato', Arial, Helvetica, sans-serif;
    font-size: 14px;
    color: #333;
    line-height: 1.7;
    max-width: 280px;
    margin: 0 auto;
}

/* ── CENTER ── */
.frs-center {
    position: relative;
    top: 100px;
    flex: 0 0 auto;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.frs-phone-wrap {
    width: 240px;
    height: 420px;
}

.frs-phone-img {
    width: 100%;
    display: block;
    filter: drop-shadow(0 10px 30px rgba(0,0,0,0.18));
}

/* ── RIGHT ── */
.frs-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding: 0 20px;
}

.frs-badge-row {
    display: flex;
    align-items: center;
    gap: 8px;
}

.frs-badge-text {
    font-family: 'Lato', Arial, Helvetica, sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #111;
    text-transform: uppercase;
}

.frs-nyf-logo {
    height: 38px;
    width: auto;
    object-fit: contain;
}

.frs-title {
    font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
    font-size: 52px;
    font-weight: 900;
    font-style: italic;
    letter-spacing: 2px;
    color: #111;
    line-height: 1;
    text-align: center;
}

.frs-title sup {
    font-size: 24px;
    vertical-align: super;
    font-style: normal;
}

/* ── JOIN NOW BUTTON ── */
.frs-join-btn {
    display: inline-block;
    background: #FFD400;
    color: #111;
    font-family: 'Lato', Arial, Helvetica, sans-serif;
    font-size: 15px;
    font-weight: 900;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-decoration: none;
    padding: 18px 60px;
    border-radius: 4px;
    transition: background 0.2s, transform 0.15s;
    white-space: nowrap;
}

.frs-join-btn:hover {
    background: #e6be00;
    transform: translateY(-1px);
}

/* Desktop: show desktop btn, hide mobile btn */
.frs-join-mobile  { display: none; }
.frs-join-desktop { display: inline-block; }

/* ─── MOBILE ─── */
@media (max-width: 768px) {
    .fry-society-section {
        padding: 40px 20px 0;
    }

    .frs-inner {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 24px;
        padding-bottom: 40px;
    }

    /* Order: badge+title → phone → text → JOIN NOW (inside frs-left) */
    .frs-right  { order: 1; }
    .frs-center { order: 2; top: 0; }
    .frs-left   { order: 3; width: 100%; gap: 16px; }

    /* Show mobile btn (below text), hide desktop btn */
    .frs-join-mobile  { display: block; }
    .frs-join-desktop { display: none; }

    .frs-title {
        font-size: 38px;
    }

    .frs-headline {
        font-size: 20px;
    }

    .frs-headline strong {
        font-size: 24px;
    }

    .frs-phone-wrap {
        width: 140px;
        height: auto;
    }

    .frs-join-mobile {
        width: 100%;
        text-align: center;
        padding: 16px 0;
        max-width: 320px;
        margin: 0 auto;
        border-radius: 4px;
    }

    .frs-food-bg {
        top: 37%;
        bottom: auto;
    }
}

@media (max-width: 480px) {
    .frs-title {
        font-size: 30px;
        letter-spacing: 1px;
    }

    .frs-badge-text {
        font-size: 11px;
    }

    .frs-nyf-logo {
        height: 28px;
    }
}

/* ══════════════════════════════════════════════════
   SHARED MARBLE BACKGROUND
   (used by email-signup, cards, and any future sections)
══════════════════════════════════════════════════ */
.email-signup-section,
.cards-section {
    /*background-color: #e8e4e0;*/
    background: url("../img/bg-repet.jpg") center/cover repeat;
    /*background-size: cover, cover, 300px 300px;*/
    width: 100%;
}

/* ══════════════════════════════════════════════════
   EMAIL SIGNUP SECTION
══════════════════════════════════════════════════ */
.email-signup-section {
    padding-top: 60px;
    display: flex;
    justify-content: center;
}

.email-signup-inner {
    background: #111;
    width: 100%;
    max-width: 1200px;
    padding: 40px 50px 44px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.email-signup-title {
    font-family: 'Lato', Arial, sans-serif;
    font-size: 40px;
    font-weight: 900;
    color: #fff;
    text-align: center;
    line-height: 1.3;
}

.email-signup-sub {
    font-family: 'Lato', Arial, sans-serif;
    font-size: 23px;
    color: #ccc;
    text-align: center;
    line-height: 1.6;
    /*max-width: 480px;*/
}

.email-signup-form {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 10px;
    flex-wrap: wrap;
    justify-content: space-around;
    width: 100%;
}

.input-email {
    display: flex;
    gap: 25px;
    align-items: center;
}

.email-signup-input {
    flex: 1;
    min-width: 300px;
    max-width: 340px;
    height: 50px;
    background: transparent;
    border: 2px solid #FFD400;
    color: #FFD400;
    font-family: 'Lato', Arial, sans-serif;
    font-size: 13px;
    padding: 0 16px;
    outline: none;
    border-radius: 2px;
}

.email-signup-input::placeholder {
    color: #FFD400;
    opacity: 0.75;
}

.email-signup-input:focus {
    border-color: #fff;
    color: #fff;
}

/* Custom checkbox */
.email-signup-check {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    flex-shrink: 0;
}

.email-signup-check input[type="checkbox"] {
    display: none;
}

.email-custom-checkbox {
    width: 25px;
    height: 25px;
    border: 1px solid #FFD400;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border-radius: 2px;
    transition: background 0.2s;
}

.email-signup-check input[type="checkbox"]:checked + .email-custom-checkbox {
    background: #FFD400;
}

.email-signup-check input[type="checkbox"]:checked + .email-custom-checkbox::after {
    content: '';
    width: 5px;
    height: 9px;
    border: 2px solid #111;
    border-top: none;
    border-left: none;
    transform: rotate(45deg) translateY(-1px);
    display: block;
}

.email-check-label {
    font-family: 'Lato', Arial, sans-serif;
    font-size: 20px;
    color: #FFD400;
    white-space: nowrap;
}

.email-signup-btn {
    background: #FFD400;
    color: #111;
    font-family: 'Lato', Arial, sans-serif;
    font-size: 22px;
    font-weight: 900;
    letter-spacing: 2px;
    padding: 0 32px;
    height: 46px;
    border: none;
    cursor: pointer;
    border-radius: 2px;
    transition: background 0.2s, transform 0.15s;
    white-space: nowrap;
    flex-shrink: 0;
}

.email-signup-btn:hover {
    background: #e6be00;
    transform: translateY(-1px);
}

/* ══════════════════════════════════════════════════
   TWO CARDS SECTION
══════════════════════════════════════════════════ */
.cards-section {
    padding: 60px 20px 70px;
    display: flex;
    justify-content: center;
}

.cards-inner {
    width: 100%;
    max-width: 1200px;
    display: flex;
    gap: 70px;
    justify-content: center;
}

/* Each card */
.promo-card {
    flex: 1;
    background: #a9a9a929;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    opacity: 0.96;
}

/* Image overflows above card */
.promo-card-img-wrap {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    height: 220px;
    position: relative;
    z-index: 1;
    margin-bottom: -20px;
}

.promo-card-img {
    max-height: 220px;
    width: auto;
    max-width: 90%;
    object-fit: contain;
    object-position: bottom center;
    filter: drop-shadow(0 8px 20px rgba(0,0,0,0.18));
    transition: transform 0.3s ease;
}

.promo-card:hover .promo-card-img {
    transform: translateY(-6px) scale(1.03);
}

/* Text body: white/light bg card */
.promo-card-body {
    /*background: rgba(255,255,255,0.82);*/
    width: 90%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 36px 24px 30px;
    gap: 10px;
    position: relative;
    z-index: 0;
    /*backdrop-filter: blur(4px);*/
}

.promo-card-title {
    font-family: 'Lato', Arial, sans-serif;
    font-size: 22px;
    font-weight: 900;
    color: #111;
    text-align: center;
    line-height: 1.25;
}

.promo-card-divider {
    width: 36px;
    height: 3px;
    background: #111;
    border-radius: 2px;
    margin: 2px 0 4px;
}

.promo-card-text {
    font-family: 'Lato', Arial, sans-serif;
    font-size: 14px;
    color: #333;
    text-align: center;
    line-height: 1.6;
    max-width: 240px;
}

.promo-card-btn {
    display: inline-block;
    background: #FFD400;
    color: #111;
    font-family: 'Lato', Arial, sans-serif;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 14px 36px;
    border-radius: 2px;
    text-decoration: none;
    margin-top: 6px;
    transition: background 0.2s, transform 0.15s;
    white-space: nowrap;
}

.promo-card-btn:hover {
    background: #e6be00;
    transform: translateY(-1px);
    color: #111;
}

/* ══════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════ */
@media (max-width: 768px) {
    .email-signup-inner {
        padding: 32px 24px 36px;
        max-width: 100%;
    }

    .email-signup-title {
        font-size: 20px;
    }

    .email-signup-form {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }

    .email-signup-input {
        /*min-width: 200px;
        max-width: 250px;*/
        width: 100%;
        height: 40px;
    }

    .email-custom-checkbox {
        width: 18px;
        height: 18px;
    }

    .input-email {
        display: block;
    }

    .email-signup-check {
        margin-top: 10px;
    }

    .email-signup-btn {
        width: 100%;
        justify-content: center;
    }

    .cards-inner {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }

    .promo-card {
        width: 100%;
        /*max-width: 360px;*/
    }

    .promo-card-body {
        width: 100%;
    }

    .email-signup-sub {
        font-size: 14px;
    }

    .cards-section {
        padding: 0;
    }
}

@media (max-width: 480px) {
    .email-signup-title {
        font-size: 17px;
    }

    .email-check-label {
        font-size: 12px;
    }

    .promo-card-title {
        font-size: 18px;
    }
}

/* ══════════════════════════════════════════════════
   DELIVERY SECTION — Yellow bg
══════════════════════════════════════════════════ */
.delivery-section {
    background: #d9ba00;
    width: 100%;
    overflow: hidden;
    padding: 0;
}

.delivery-inner {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 320px;
    padding: 50px 60px;
    gap: 40px;
}

/* ── Left: text + logos ── */
.delivery-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 520px;
}

.delivery-title {
    font-family: 'Lato', Arial Black, Arial, sans-serif;
    font-size: 48px;
    font-weight: 900;
    color: #111;
    line-height: 1.05;
    text-transform: uppercase;
    letter-spacing: -0.5px;
}

.delivery-body {
    font-family: 'Lato', Arial, sans-serif;
    font-size: 15px;
    color: #111;
    line-height: 1.6;
    max-width: 380px;
}

.delivery-logos {
    display: flex;
    align-items: center;
    gap: 28px;
    margin-top: 8px;
    flex-wrap: wrap;
}

.delivery-logo-link {
    display: flex;
    align-items: center;
    opacity: 0.9;
    transition: opacity 0.2s, transform 0.2s;
}

.delivery-logo-link:hover {
    opacity: 1;
    transform: translateY(-2px);
}

.dlv-logo-svg {
    height: 40px;
    width: auto;
}

/* Text-based delivery logos (cleaner approach) */
.delivery-logos {
    display: flex;
    align-items: center;
    gap: 32px;
    margin-top: 8px;
    flex-wrap: wrap;
}

.dlv-logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1px;
}

.dlv-logo-name {
    font-family: Arial Black, 'Lato', sans-serif;
    font-weight: 900;
    font-size: 17px;
    color: #111;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1;
}

.dlv-logo-name.small {
    font-size: 13px;
    letter-spacing: 2px;
}

.dlv-logo-sub {
    font-family: Arial Black, 'Lato', sans-serif;
    font-weight: 900;
    font-size: 22px;
    color: #111;
    text-transform: lowercase;
    letter-spacing: -0.5px;
    line-height: 1;
}

.dlv-logo-icon {
    font-size: 28px;
    line-height: 1;
    margin-bottom: 2px;
}

/* ── Right: doormat image ── */
.delivery-right {
    flex: 0 0 auto;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    position: relative;
    min-width: 280px;
}

.delivery-doormat-img {
    width: 380px;
    max-width: 100%;
    object-fit: contain;
    display: block;
    filter: drop-shadow(0 10px 30px rgba(0,0,0,0.25));
}

/* Fallback doormat block (shown when image missing) */
.delivery-doormat-fallback {
    background: #8B7355;
    padding: 32px 36px;
    border-radius: 4px;
    text-align: center;
    box-shadow: 0 8px 24px rgba(0,0,0,0.3);
    display: flex;
    flex-direction: column;
    gap: 6px;
    width: 320px;
}

.doormat-line1 {
    font-family: Arial Black, 'Lato', sans-serif;
    font-size: 28px;
    font-weight: 900;
    color: #111;
    letter-spacing: 1px;
}

.doormat-line2 {
    font-family: Arial Black, 'Lato', sans-serif;
    font-size: 20px;
    font-weight: 900;
    color: #111;
    letter-spacing: 1px;
}

.doormat-line2 span {
    font-family: Georgia, 'Playfair Display', serif;
    font-style: italic;
    font-size: 26px;
}

/* ══════════════════════════════════════════════════
   LOADED DOG CREW SECTION — Dark charcoal bg
══════════════════════════════════════════════════ */
.loaded-dog-section {
    background: #2a2a2a;
    background-image:
        radial-gradient(ellipse at 30% 50%, rgba(60,60,60,0.8) 0%, transparent 60%),
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='400'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='400' height='400' filter='url(%23n)' opacity='0.15'/%3E%3C/svg%3E");
    background-size: cover, 200px 200px;
    width: 100%;
    overflow: hidden;
    padding: 0;
}

.loaded-dog-inner {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 420px;
    padding: 40px 60px;
    gap: 0;
}

/* ── Left: food images ── */
.loaded-dog-img-wrap {
    flex: 0 0 55%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    position: relative;
}

.loaded-dog-img {
    width: 100%;
    max-width: 620px;
    object-fit: contain;
    display: block;
    filter: drop-shadow(0 12px 30px rgba(0,0,0,0.5));
}

/* ── Right: text ── */
.loaded-dog-text {
    flex: 0 0 40%;
    display: flex;
    flex-direction: column;
    gap: 18px;
    padding-left: 20px;
}

.loaded-dog-title {
    font-family: 'Lato', Arial Black, Arial, sans-serif;
    font-size: 52px;
    font-weight: 900;
    color: #fff;
    line-height: 1.0;
    text-transform: uppercase;
    letter-spacing: -0.5px;
}

.loaded-dog-body {
    font-family: 'Lato', Arial, sans-serif;
    font-size: 15px;
    color: #ddd;
    line-height: 1.65;
    max-width: 340px;
}

.loaded-dog-btn {
    display: inline-block;
    background: #FFD400;
    color: #111;
    font-family: 'Lato', Arial, sans-serif;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    padding: 16px 36px;
    border-radius: 30px;
    width: fit-content;
    transition: background 0.2s, transform 0.15s;
    margin-top: 4px;
}

.loaded-dog-btn:hover {
    background: #e6be00;
    color: #111;
    transform: translateY(-2px);
}

/* ══════════════════════════════════════════════════
   RESPONSIVE — 992px (mid screens / tablets)
══════════════════════════════════════════════════ */
@media (max-width: 992px) {

    .delivery-inner {
        padding: 40px 30px;
        gap: 24px;
    }

    .delivery-title {
        font-size: 36px;
    }

    .delivery-doormat-img {
        width: 280px;
    }

    .delivery-doormat-fallback {
        width: 240px;
        padding: 24px 20px;
    }

    .doormat-line1 { font-size: 20px; }
    .doormat-line2 { font-size: 15px; }
    .doormat-line2 span { font-size: 20px; }

    .loaded-dog-inner {
        padding: 40px 30px;
    }

    .loaded-dog-title {
        font-size: 38px;
    }

    .loaded-dog-img-wrap {
        flex: 0 0 50%;
    }

    .loaded-dog-text {
        flex: 0 0 46%;
    }
}

/* ══════════════════════════════════════════════════
   RESPONSIVE — 768px (mobile)
══════════════════════════════════════════════════ */
@media (max-width: 768px) {

    /* ── Delivery: stack vertically, image on top ── */
    .delivery-inner {
        flex-direction: column;
        align-items: stretch;
        padding: 0;
        gap: 0;
        min-height: unset;
    }

    /* Image top, text below — matches mobile screenshot */
    .delivery-right {
        order: 1;
        width: 100%;
        justify-content: center;
        padding: 30px 20px 10px;
        min-width: unset;
    }

    .delivery-doormat-img {
        width: 85%;
        max-width: 320px;
    }

    .delivery-doormat-fallback {
        width: 85%;
        max-width: 300px;
    }

    .delivery-left {
        order: 2;
        width: 100%;
        max-width: 100%;
        padding: 24px 24px 40px;
        gap: 14px;
    }

    .delivery-title {
        font-size: 38px;
        line-height: 1.05;
    }

    .delivery-body {
        font-size: 14px;
        max-width: 100%;
    }

    .delivery-logos {
        gap: 24px;
        margin-top: 4px;
    }

    .dlv-logo-name { font-size: 15px; }
    .dlv-logo-sub  { font-size: 19px; }

    /* ── Loaded Dog: image top full-width, text below ── */
    .loaded-dog-inner {
        flex-direction: column;
        padding: 0;
        min-height: unset;
        gap: 0;
    }

    .loaded-dog-img-wrap {
        flex: none;
        width: 100%;
        justify-content: center;
        padding: 30px 0 0;
    }

    .loaded-dog-img {
        max-width: 100%;
        width: 100%;
    }

    .loaded-dog-text {
        flex: none;
        width: 100%;
        padding: 28px 24px 40px;
        gap: 14px;
    }

    .loaded-dog-title {
        font-size: 38px;
        color: #fff;
    }

    .loaded-dog-body {
        font-size: 14px;
        color: #ccc;
        max-width: 100%;
    }

    .loaded-dog-btn {
        width: 100%;
        text-align: center;
        padding: 16px;
        border-radius: 30px;
    }
}

@media (max-width: 480px) {

    .delivery-title {
        font-size: 30px;
    }

    .loaded-dog-title {
        font-size: 30px;
    }

    .delivery-logos {
        gap: 18px;
    }

    .dlv-logo-name { font-size: 13px; }
    .dlv-logo-sub  { font-size: 17px; }
}
