@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@400;500;600;700;800;900&family=Barlow:wght@400;500;600&display=swap');

:root {
    --pantone-red: #e6002b;
    --pantone-orange: #f1a900;
    --pantone-yellow: #f8e602;
    --pantone-black: #2d2926;
    --background-yellow: #ffd747;
    --background-palewhite: #fffbed;
    --orange: #FF5C00;
    --dark: #2A292B;
    --cream: #F9F4ED;
    --cream-2: #EDE8E1;
    --cream-3: #D0CBC6;
    --text-muted: #7D7A79;
    --white: #fff;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html {
    scroll-behavior: smooth;
}
body {
    font-family: 'Barlow', sans-serif;
    background: var(--white);
    color: var(--dark);
    overflow-x: hidden;
}

/* ── ABAR By Siong ── */
.announcement-bar {
    background:  var(--background-palewhite);
    /*background:  #fffbed;*/
    border-radius: 8px;
    margin: 6px 6px 0;
    padding: 0 1.5rem;
    height: 44px;
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;  /* socials | swiper | right spacer */
    align-items: center;
    gap: 1rem;
}


.announcement-bar__socials {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
}

.announcement-social-icon {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--pantone-black);
    text-decoration: none;
    border-radius: 6px;
    transition: background 0.15s;
}
.announcement-social-icon:hover {
    background: rgba(0,0,0,0.08);
    color: var(--pantone-black);
}

.announcement-bar__text {
    font-family: 'Barlow', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--pantone-black);
    text-align: center;
    flex: 1;
    margin: 0;
}

/* balances the social icons so text stays truly centered */
.announcement-bar__right {
    flex-shrink: 0;
    width: calc(28px * 5 + 0.5rem * 4); /* matches socials width */
}

@media (max-width: 600px) {
    .announcement-bar__socials { gap: 0.25rem; }
    .announcement-bar__text { font-size: 0.75rem; }
    .announcement-bar__right { display: none; }

    /* Hide socials and right spacer on mobile — swiper takes full width */
    .announcement-bar {
        grid-template-columns: 1fr;  /* swiper takes full width */
        padding: 0 1rem;
    }

    .announcement-bar__socials {
        display: none;
    }

    .announcement-bar__right {
        display: none;
    }
}

.announcement-bar__text {
    overflow: hidden;
    min-width: 0;
}

.announcement-swiper {
    width: 100%;
}

.announcement-swiper .swiper-slide {
    text-align: center;
    font-family: 'Barlow', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--pantone-black);
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
}

@media (max-width: 600px) {
    .announcement-swiper .swiper-slide {
        font-size: 0.75rem;
        white-space: normal;
        text-align: center;
    }
}


/* ── HEADER ── */
header {
    /*background: var(--background-yellow);*/
    background: white;
    /*background: radial-gradient(ellipse at 15% 0, var(--pantone-red) 0%, var(--pantone-orange) 40%, var(--pantone-yellow) 100%);*/

    border-radius: 18px;
    margin: 6px;
    padding: 0 2rem;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 100;
}
#site-header-wrap {
    position: sticky;
    top: 0;
    z-index: 200;
    /*background: var(--white); !* covers content scrolling behind it *!*/
    padding: 2px;      /* tiny gap so the header shadow has room */
}
.logo img{
    width: 100%;
    max-width: 100px;
}

@media (max-width: 600px) {
    .logo img{
        display: none;
    }
}

nav.middle-nav{
    padding-top: 15px;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
    align-items: center;
}

nav a {
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--dark);
    padding: 6px 10px;
    border-radius: 6px;
    transition: background 0.15s;
}
nav a:hover { background: rgba(0,0,0,0.06);color:inherit; }

.nav-btn {
    display: flex;
    align-items: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    font-family: 'Barlow', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--dark);
    padding: 6px 10px;
    border-radius: 6px;
    transition: background 0.15s;
}
.nav-btn:hover { background: rgba(0,0,0,0.06); }
.nav-btn svg { transition: transform 0.2s; }
.nav-btn.open svg { transform: rotate(180deg); }

.header-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.icon-btn {
    width: 40px; height: 40px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 8px;
    transition: background 0.15s;
    cursor: pointer;
    text-decoration: none;
    color: var(--dark);
    background: none;
    border: none;
}
.icon-btn:hover { background: rgba(0,0,0,0.06);color:var(--pantone-black); }

.cart-badge {
    background: var(--orange);
    color: white;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    padding: 2px 7px;
}

.nav-sep { width: 1px; height: 28px; background: var(--cream-3); }

/* ── DROPDOWN NAV ── */
.shop-dropdown {
    /*background: var(--cream-2);*/
    background: radial-gradient(ellipse at 30% 60%, var(--pantone-red) 0%, var(--pantone-orange) 40%, var(--pantone-yellow) 100%);
    border-radius: 18px;
    margin: 4px 6px 4px;   /* sits flush below the header */
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    transition: max-height 0.5s ease, opacity 0.2s ease;
    pointer-events: none;
    z-index: 99;
}

.shop-dropdown.open {
    max-height: 300px;
    opacity: 1;
    pointer-events: auto;
}

.dropdown-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    padding: 1rem 2rem;
    gap: 0;
}

.dropdown-item {
    padding: 1rem;
    text-align: center;
    text-decoration: none;
    color: var(--dark);
    border-left: 1px solid var(--cream-3);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    transition: background 0.15s;
}
.dropdown-item:first-child { border-left: none; }
.dropdown-item:hover { background: rgba(0,0,0,0.03); }

.dropdown-item img {
    width: 90px; height: 90px;
    object-fit: contain;
    transition: transform 0.3s;
}
.dropdown-item:hover img { transform: translateY(-4px); }

.dropdown-item span {
    font-size: 0.9rem;
    font-weight: 500;
}

.coming-soon-badge {
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translateX(-50%);
    background: #FFF59E;
    font-size: 10px;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 8px;
    white-space: nowrap;
}
.coming-soon img { opacity: 0.3; }

/* ── HERO SECTION ── */
.hero {
    min-height: 580px;
    margin: 0 6px;
    gap: 6px;
    /* NO overflow:hidden here — each child has its own border-radius */
    display: flex;
    flex-direction: column;
    /*padding: 0 3px;*/
}


@media screen and (min-width: 960px) {
    .hero {
        display: grid;
        grid-template-columns: 1fr 1.75fr;
        min-height: 580px;    /* add this to lock the row height */

    }

    .hero__content {
        padding: 10rem;
    }
}

@media screen and (max-width: 960px) {
    .hero__content:before {
        display: none;
    }
}

.hero-media {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    min-height: 400px;
    min-width: 0;    /* add this */
}

@media screen and (min-width: 960px) {
    .hero-media {
        min-height: 580px;    /* taller on desktop */
    }
}
.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Fallback gradient shown when no video src is set */
.hero-media-fallback {
    position: absolute;
    inset: 0;

    /*depends on background, if white just comment it*/
    /*background: radial-gradient(ellipse at 30% 60%, var(--pantone-red) 0%, var(--pantone-orange) 40%, var(--pantone-yellow) 100%);*/
}

/*with bgcolor*/
/*.hero-media__overlay {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    z-index: 10;
    background: rgba(255, 255, 255, 0.85); !* frosted white pill *!
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border-radius: 12px;
    padding: 0.4rem 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
}*/

.hero-media__overlay {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    z-index: 10;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.4));
}

.hero-media__overlay img {
    height: 28px;
    width: auto;
    object-fit: contain;
    display: block;
}

/* hero content */
.hero-content {
    background: var(--background-palewhite);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 11rem 4rem;
    gap: 1rem;
    border-radius: 24px;
    position: relative;
    min-width: 0;    /* add this */
}
.hero-content::before {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    height: 20%;          /* controls how tall the noodle band is */
    background-image: url("../img/mama/noodlebg_horizontalnogap.png");
    background-size: cover;
    background-repeat: repeat-x;
    z-index: 0;
    pointer-events: none;
    opacity: 0.5;
}

.hero-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-size: clamp(5rem, 9vw, 7.5rem);
    line-height: 0.88;
    letter-spacing: -0.02em;
    color: var(--dark);
}

.hero-quote {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--dark);
    margin-top: 0.5rem;
}

.hero-text-swiper {
    width: 100%;
    overflow: hidden;
}

.hero-text-swiper .swiper-wrapper {
    height: 100%;
}

.hero-text-swiper .swiper-slide {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 0.5rem;
    height: 100%;
    width: 100% !important;  /* prevent slide from going full viewport width */
}

.btn-primary {
    background: var(--orange);
    color: white;
    font-family: 'Barlow', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 14px 28px 12px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.2s;
    margin-top: 0.5rem;
}
.btn-primary:hover {
    background: var(--dark);
    transform: translateY(-2px);
}

/* ── THE 3 PACKET MAYBE REMOVE SEE ZX*/
.hero__comp {
    --comp-size: 240px;
    --offset: calc(var(--comp-size) * 0.2);
    width: var(--comp-size);
    height: var(--comp-size);
    position: relative;
    margin: calc(var(--comp-size) / -1.33) auto 2.5rem;
}

@media screen and (min-width: 960px) {
    .hero__comp {
        /*--comp-size: min(30vw, 520px);*/
        /*position: absolute;*/
        /*top: 50%;*/
        /*left: 0;*/
        /*transform: translate(-50%, -50%);*/
        /*margin: 0;*/

        --comp-size: min(30vw, 300px);
        position: absolute;
        top: 50%;
        left: 0;
        transform: translate(-50%, -50%);
        margin: 0;
    }
}

.hero__comp-item {
    position: absolute;
    top: 0;
    left: 50%;
    width: var(--comp-size);
    height: var(--comp-size);
    transform: translateX(-50%);
}

.hero__comp-item:nth-child(1) {
    z-index: 3;
}

.hero__comp-item:nth-child(2) {
    z-index: 1;
    transform: translateX(calc(-62% - var(--offset))) scale(0.8) rotate(-4deg);
}

.hero__comp-item:nth-child(3) {
    z-index: 2;
    transform: translateX(calc(-42% + var(--offset))) scale(0.8) rotate(4deg);
}

.hero__comp-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}


/* ═══════════════════════════════════════════
  Newsletter, Social, Footer
  ════════════════════════════════════════════ */

/* ── NEWSLETTER BANNER ── */
.newsletter-banner {
    /*background: var(--cream-2);*/
    margin: 6px;
    border-radius: 24px;
    padding: 5rem 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 320px;
}
.newsletter-banner {
    margin: 6px;
    border-radius: 24px;
    padding: 5rem 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 320px;
    position: relative;        /* add this */
    overflow: hidden;          /* add this — clips the bg to rounded corners */
}

.newsletter-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("../img/mama/noodlebg_leftvertical.png");
    background-size: auto;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.1;              /* adjust 0.1 - 0.9 to taste */
    z-index: 0;
    pointer-events: none;
}

/* make sure content sits above the bg */
.newsletter-inner {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 480px;
    width: 100%;               /* ensure it doesn't overflow on mobile */
}

/*.newsletter-inner {*/
/*    text-align: center;*/
/*    max-width: 480px;*/
/*}*/

.newsletter-heading {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    color: var(--pantone-black);
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.newsletter-form {
    display: flex;
    gap: 0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.12);
}

.newsletter-input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: none;
    outline: none;
    font-family: 'Barlow', sans-serif;
    font-size: 0.9rem;
    background: #fff;
    color: var(--pantone-black);
}

.newsletter-btn {
    background: var(--pantone-black);
    color: #fff;
    border: none;
    padding: 0.75rem 1.5rem;
    font-family: 'Barlow', sans-serif;
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    cursor: pointer;
    transition: background 0.2s;
    white-space: nowrap;
}
.newsletter-btn:hover { background: #4a3f35; }

.newsletter-subtext {
    font-size: 0.9rem;
    color: var(--pantone-black);
    opacity: 0.7;
    margin-bottom: 1.5rem;
    margin-top: -0.5rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    width: 100%;
    max-width: 520px;
}

.contact-form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

@media (max-width: 500px) {
    .contact-form__row {
        grid-template-columns: 1fr;
    }
}

.contact-input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: none;
    outline: none;
    font-family: 'Barlow', sans-serif;
    font-size: 0.9rem;
    background: #fff;
    color: var(--pantone-black);
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: box-shadow 0.2s;
}

.contact-input:focus {
    box-shadow: 0 2px 12px rgba(0,0,0,0.15);
}

.contact-textarea {
    resize: vertical;
    min-height: 100px;
}

.contact-input::placeholder {
    color: var(--text-muted);
}

/* ── IMAGE STRIP ── */
/* ── IMAGE STRIP SLIDER ── */
/* ── IMAGE STRIP SWIPER ── */
.image-strip-wrap {
    margin: 6px;
    overflow: hidden;  /* clips the swiper to page bounds */
}

.image-strip-swiper {
    overflow: visible; /* allows peek of next slide */
    padding: 0 6px;
}

.image-strip-swiper .swiper-wrapper {
    align-items: stretch;
}

.image-strip-swiper .swiper-slide {
    height: auto;
}

.strip-item {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    aspect-ratio: 1 / 1;
    width: 100%;
    outline: none;
}

.strip-item--text {
    background: #f5f0d8;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 1.5rem;
}

.strip-tagline {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--pantone-black);
    line-height: 1.4;
    text-align: center;
}

.strip-underline {
    text-decoration: underline;
    text-underline-offset: 3px;
}

.strip-item--img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}
.strip-item--img:hover img { transform: scale(1.04); }

.strip-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem;
    background: linear-gradient(to top, rgba(0,0,0,0.55) 0%, transparent 100%);
    color: #fff;
    font-family: 'Barlow', sans-serif;
    font-size: 0.8rem;
    font-weight: 500;
    line-height: 1.4;
}
/* ── STRIP OVERLAY ── */
a.strip-item {
    display: block;
    cursor: pointer;
    color: #fff;
}
.strip-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 24px; /* match strip-item */
}

.strip-item:hover .strip-overlay {
    opacity: 1;
}

.strip-overlay-socials {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.strip-social-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: background 0.2s, transform 0.2s;
}

.strip-social-icon:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
    color: #fff;
}

.strip-social-icon--rednote {
    font-size: 0.6rem;
    font-weight: 700;
    font-family: 'Barlow', sans-serif;
    color: #ff4757;
    background: rgba(255, 71, 87, 0.15);
    border-color: rgba(255, 71, 87, 0.4);
}
.strip-social-icon--rednote:hover {
    background: rgba(255, 71, 87, 0.3);
    color: #ff4757;
}

/* Staggered entrance animation for icons */
.strip-overlay-socials .strip-social-icon:nth-child(1) { transition-delay: 0.05s; }
.strip-overlay-socials .strip-social-icon:nth-child(2) { transition-delay: 0.1s;  }
.strip-overlay-socials .strip-social-icon:nth-child(3) { transition-delay: 0.15s; }
.strip-overlay-socials .strip-social-icon:nth-child(4) { transition-delay: 0.2s;  }
.strip-overlay-socials .strip-social-icon:nth-child(5) { transition-delay: 0.25s; }
/* ── FOOTER ── */
.site-footer {
    background: var(--background-yellow);
    color: var(--pantone-black);
    /*background: #2d2421;*/
    /*color: #c8b89a;*/
    margin: 6px;
    border-radius: 24px;
    overflow: visible ;
}

.footer-inner {
    display: grid;
    /*with menu*/
    /*grid-template-columns: 1fr 1fr 1fr 1fr 2fr;*/
    grid-template-columns: 1fr 1fr 1fr 2fr;
    gap: 3rem;
    padding: 3rem 3rem 2rem;
    align-items: start;
}

@media (max-width: 900px) {
    .footer-inner {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
        padding: 2rem;
    }
    .footer-col--brand {
        grid-column: 1 / -1;
    }
    .footer-col--subscribe {
        grid-column: 1 / -1;
    }
}

@media (max-width: 480px) {
    .footer-inner {
        grid-template-columns: 1fr;
    }
    .footer-col--brand { grid-column: auto; }
    .footer-col--subscribe { grid-column: auto; }
}

.footer-logo {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-size: 1.5rem;
    color: var(--pantone-black);
    letter-spacing: 0.02em;
}
.footer-logo sup {
    font-size: 0.6em;
    vertical-align: super;
}
.footer-logo img{
    width: 100%;
    max-width: 100px;
}

.footer-col-title {
    font-family: 'Barlow', sans-serif;
    font-weight: bold;
    font-size: 0.8rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--pantone-black);
    margin-bottom: 1rem;
}

.footer-links {
    font-family: 'Barlow Condensed', sans-serif;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.footer-links a {
    color: var(--pantone-black);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.15s;
}
.footer-links a:hover { color: var(--pantone-black); }

/* Social icons */
.footer-socials {
    display: flex;
    gap: 0.6rem;
    align-items: center;
    flex-wrap: wrap;
}

.footer-social-icon {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    background: rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--pantone-black);
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
}
.footer-social-icon:hover {
    background: rgba(0,0,0,0.48);
    color: var(--pantone-black);
}
/* Social icons */
.footer-certified {
    display: flex;
    gap: 0.6rem;
    align-items: center;
    flex-wrap: wrap;
}

.footer-certified-icon img {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    background: rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--pantone-black);
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
}
.footer-certified-icon:hover {
    background: rgba(0,0,0,0.48);
    color: var(--pantone-black);
}

/* Subscribe form */
.footer-subscribe-note {
    font-size: 0.78rem;
    color: var(--pantone-black);
    line-height: 1.5;
    margin-bottom: 1rem;
}

.footer-form {
    display: flex;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.12);
}

.footer-input {
    flex: 1;
    background: rgba(255,255,255,0.05);
    border: none;
    outline: none;
    padding: 0.65rem 1rem;
    font-family: 'Barlow', sans-serif;
    font-size: 0.85rem;
    color: var(--pantone-black);
    min-width: 0;
}
.footer-input::placeholder { color: #6a5a48; }

.footer-submit-btn {
    background: var(--pantone-yellow);
    border: none;
    padding: 0 1rem;
    cursor: pointer;
    color: var(--pantone-black);
    display: flex;
    align-items: center;
    transition: background 0.2s;
    flex-shrink: 0;
}
.footer-submit-btn:hover { background: #e8c800; }

/* Footer bottom bar */
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.07);
    padding: 1.25rem 3rem;
}

.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.footer-copy {
    font-size: 0.78rem;
    color: #5a4a3a;
}

.footer-legal-links {
    display: flex;
    gap: 1.5rem;
}

.footer-legal-links a {
    font-size: 0.78rem;
    color: #5a4a3a;
    text-decoration: none;
    transition: color 0.15s;
}

.unstyled-button {
    padding: 0;
    overflow: visible;
    color: rgba(61,41,24,1);
    font-size: inherit;
    line-height: inherit;
    background: none;
    border: none;
    border-radius: 0;
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
}

.back-to-top-button {
    --gsc-back-to-top-button-size: 4rem;
    --gsc-back-to-top-button-icon-size: 2.4rem;
    --gsc-back-to-top-button-space-from-size: 2.4rem;
    position: fixed;
    bottom: var(--gsc-back-to-top-button-space-from-size);
    left: var(--gsc-back-to-top-button-space-from-size);
    z-index: 4;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: var(--gsc-back-to-top-button-size);
    height: var(--gsc-back-to-top-button-size);
    outline-offset: 4px;
    -webkit-transition: opacity .2s ease-in-out;
    transition: opacity .2s ease-in-out;

    opacity: 0;
    transition: opacity 0.3s ease;
    /*pointer-events: none; !* JS will toggle this *!*/

}

.back-to-top-button:before {
    position: absolute;
    top: 50%;
    left: 50%;
    display: block;
    width: 100%;
    height: 100%;
    background: rgba(252,251,241,1);
    border-radius: 50%;
    -webkit-box-shadow: 0 .9rem 3.2rem rgba(0,0,0,.15);
    box-shadow: 0 .9rem 3.2rem rgba(0,0,0,.15);
    /*-webkit-transform: translate(-50%, -50%);*/
    transform: translate(-50%, -50%);
    -webkit-transition-timing-function: ease-in-out;
    transition-timing-function: ease-in-out;
    -webkit-transition-duration: .2s;
    transition-duration: .2s;
    -webkit-transition-property: width, height, -webkit-transform;
    transition-property: width, height, transform, -webkit-transform;
    content: "";
}


.back-to-top-button__icon {
    position: relative;
    z-index: 1;
    width: 1.4rem;
    height: 1.4rem;
}




/*
═══════════════════════════════════════════
    ── PRODUCTS SECTION ──
════════════════════════════════════════════
*/
.products-section {
    margin: 6px;
    padding: 3rem 6px 2rem;
}

.products-heading {
    text-align: center;
    margin-bottom: 2rem;
}

.products-heading__title-wrap {
    display: inline-flex;   /* shrinks to content so it stays centered */
    align-items: center;
    gap: 0.75rem;
}

.products-heading__mascot {
    height: 80px;
    width: auto;
    object-fit: contain;
}

@media (max-width: 480px) {
    .products-heading__mascot {
        height: 56px;
    }
}

.products-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-size: clamp(2.5rem, 6vw, 4rem);
    line-height: 0.9;
    letter-spacing: -0.02em;
    color: var(--pantone-black);
}

.products-subtitle {
    font-size: 1rem;
    color: var(--text-muted);
    margin-top: 0.5rem;
}

/* ── FILTERS ── */
.products-filters {
    display: flex;
    flex-direction: row;      /* side by side */
    align-items: center;
    justify-content: center;  /* center both rows horizontally */
    gap: 1.5rem;              /* space between the two filter rows */
    margin: 0 auto 2rem;
    flex-wrap: wrap;          /* wraps to column on small screens */
}

.filter-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    justify-content: center;
}

.filter-row__label {
    font-family: 'Barlow', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-muted);
    min-width: 62px;
    text-align: right;
}

.filter-row__btns {
    display: flex;
    gap: 0.4rem;
    flex-wrap: wrap;
}

.filter-btn {
    font-family: 'Barlow', sans-serif;
    font-weight: 600;
    /*font-size: 0.82rem;*/
    letter-spacing: 0.03em;
    /*padding: 0.45rem 1.1rem;*/
    border-radius: 100px;
    border: 2px solid var(--pantone-black);
    background: transparent;
    color: var(--pantone-black);
    cursor: pointer;
    transition: all 0.18s ease;
    white-space: nowrap;

}

.filter-btn:hover {
    background: var(--pantone-black);
    color: var(--background-palewhite);
}

.filter-btn.active {
    background: var(--pantone-black);
    color: var(--background-palewhite);
}

/* Type row slightly smaller */
.filter-cat, .filter-sub {
    font-size: 0.75rem;
    padding: 0.35rem 0.9rem;
    border-color: rgba(45,41,38,0.45);
    color: rgba(45,41,38,0.65);
}
.filter-sub.active,
.filter-sub:hover {
    background: var(--pantone-black);
    color: var(--background-palewhite);
    border-color: var(--pantone-black);
}

/* ── SWIPER WRAPPER SH ── */
.products-slider-wrap {
    position: relative;
    overflow: hidden;
}

.products-swiper {
    overflow: visible;
    padding: 4px 2px 8px; /* room for card shadow */
}

/* ── PRODUCT CARD ── */
.product-card {
    display: block;
    text-decoration: none;
    color: var(--pantone-black);
    /*background: var(--pantone-yellow);*/
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 36px rgba(0,0,0,0.13);
    color: var(--pantone-black);
}

.product-card__img-wrap {
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
}

.product-card__img-wrap--noodle {
    background: radial-gradient(ellipse at 20% 10%,
    var(--pantone-red) 0%,
    var(--pantone-orange) 55%,
    var(--pantone-yellow) 100%);
}

.product-card__img-wrap--vermicelli {
    /*background: radial-gradient(ellipse at 20% 10%,*/
    /*var(--pantone-orange) 0%,*/
    /*var(--pantone-yellow) 70%);*/
}

.product-card__img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.35s ease;
}

.product-card:hover .product-card__img-wrap img {
    transform: scale(1.07) rotate(-2deg);
}

.product-card__info {
    padding: 0.9rem 1.1rem 1.1rem;
}

.product-card__tag {
    display: inline-block;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 2px 8px;
    border-radius: 100px;
    margin-bottom: 0.4rem;
}

.pct--noodle {
    background: rgba(230,0,43,0.12);
    color: var(--pantone-red);
}

.pct--vermicelli {
    background: rgba(241,169,0,0.2);
    color: #8a6200;
}

.product-card__name {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: 1.15rem;
    line-height: 1.1;
    color: var(--pantone-black);
    margin-bottom: 0.25rem;
}

.product-card__desc {
    font-size: 0.78rem;
    color: rgba(45,41,38,0.6);
    line-height: 1.4;
}

/* ── NAV ARROWS ── */
/* ── Products Section Arrow  ── */
.products-prev,
.products-next {
    position: absolute;
    top: 38%; /* align to image area */
    transform: translateY(-50%);
    z-index: 10;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--pantone-black);
    /*color: var(--pantone-yellow);*/
    color: var(--background-palewhite);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, transform 0.2s;
    box-shadow: 0 4px 14px rgba(0,0,0,0.18);
}

.products-prev { left: 2px; }
.products-next { right: 2px; }

.products-prev:hover,
.products-next:hover {
    background: var(--pantone-red);
    transform: translateY(-50%) scale(1.08);
}

.products-prev.swiper-button-disabled,
.products-next.swiper-button-disabled {
    opacity: 0.25;
    pointer-events: none;
}

/* ── EMPTY STATE ── */
.products-empty {
    display: none;
    text-align: center;
    padding: 3rem 1rem;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-muted);
}

/* Product Sync Info */
/* ── PRODUCT DETAIL SWIPER ── */
.product-detail-wrap {
    margin: 0 6px 1.5rem;
    overflow: hidden;
    border-radius: 20px;
}

.product-detail-swiper {
    overflow: hidden;
}

.product-detail-panel {
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 2rem;
    padding: 1.75rem;
    /*background: var(--background-palewhite);*/
    border-radius: 20px;
    align-items: center;
    min-height: 220px;
}

@media (max-width: 600px) {
    .product-detail-panel {
        grid-template-columns: 1fr;
        gap: 1rem;
        text-align: center;
    }
    .product-detail__img {
        display: flex;
        justify-content: center;
    }
}

.product-detail__img img {
    width: 160px;
    height: 160px;
    object-fit: contain;
}

.product-detail__header {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    margin-bottom: 1rem;
}

.product-detail__name {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: 1.6rem;
    color: var(--pantone-black);
    line-height: 1;
}

.product-detail__desc {
    font-size: 0.82rem;
    color: var(--text-muted);
}

.product-detail__table {
    border-collapse: collapse;
    width: 100%;
}

.product-detail__table tr {
    border-bottom: 1px solid rgba(45,41,38,0.06);
}

.product-detail__table tr:last-child {
    border-bottom: none;
}

.product-detail__table td {
    padding: 0.4rem 0;
    font-size: 0.82rem;
    color: var(--pantone-black);
    vertical-align: top;
}

.pdl {
    font-weight: 600;
    white-space: nowrap;
    width: 160px;
    opacity: 0.65;
}

.pds {
    padding: 0 0.5rem !important;
    opacity: 0.35;
    width: 12px;
}

.pdv {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.9rem;
    letter-spacing: 0.02em;
}

.product-detail__no-data {
    font-size: 0.82rem;
    color: var(--text-muted);
    font-style: italic;
}

/* Active card highlight */
.products-swiper .swiper-slide.is-active .product-card {
    /*box-shadow: 0 0 0 2px var(--pantone-red);*/
}

/*CUSTOM SLIDER*/
/* Marquee container styles */
.marquee-bar{
    background:  var(--background-palewhite);
    /*background: #fffbed;*/
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem 0;
    margin: 6px;
}

.marquee-wrapper {
    overflow: hidden;
    position: relative;
    width: 100%;
    /*background: var(--background-palewhite);*/

}

.marquee-content {
    display: flex;
    animation: scroll 25s linear infinite;
    width: fit-content;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);

    }
}

.marquee-wrapper:hover .marquee-content {
    animation-play-state: paused;
}

/* Logo card styles */
.logo-card {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 200px;
    height: 100px;
    margin: 0 20px;
    /*background: rgba(255, 255, 255, 0.03);*/
    /*border: 1px solid rgba(255, 255, 255, 0.05);*/
    border-radius: 12px;
    padding: 20px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.logo-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /*background: linear-gradient(135deg, transparent, rgba(255, 255, 255, 0.05), transparent);*/
    opacity: 0;
    transition: opacity 0.3s ease;
}

.logo-card:hover::before {
    opacity: 1;
}

.logo-card:hover {
    transform: translateY(-5px) scale(1.05);
    background: rgba(255, 255, 255, 0.08);
    /*box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);*/
}

/* Logo image styles */
.logo-image {
    max-height: 120px;
    width: auto;
    object-fit: contain;
    /*filter: brightness(0) invert(1);*/
    transition: all 0.3s ease;
}

/* Specific glow effects for each brand */
/* .glow-99 {
     box-shadow: 0 0 20px rgba(200, 16, 46, 0.3);
 }
 .glow-99:hover {
     box-shadow: 0 0 30px rgba(200, 16, 46, 0.5);
 }
 */


/* ── HALAL MODAL ── */
.halal-modal {
    border-radius: 20px;
    overflow: hidden;
    border: none;
}

.halal-modal__header {
    background: var(--background-palewhite);
    border-bottom: none;
    padding: 1.25rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.halal-modal__title-wrap {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.halal-modal__logo {
    height: 48px;
    width: auto;
    object-fit: contain;
}

.halal-modal__header .modal-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: 1.3rem;
    color: var(--pantone-black);
    margin: 0;
}

.halal-modal__subtitle {
    font-size: 0.78rem;
    color: var(--text-muted);
    margin: 0;
}

.halal-modal__body {
    padding: 1.5rem;
}

.halal-modal__info {
    background: var(--background-palewhite);
    border-radius: 12px;
    padding: 1rem 1.25rem;
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.halal-modal__row {
    display: grid;
    grid-template-columns: 130px 12px 1fr;
    gap: 0.25rem;
    font-size: 0.85rem;
}

.halal-modal__label {
    font-weight: 600;
    color: var(--pantone-black);
    opacity: 0.7;
}

.halal-modal__sep {
    color: var(--text-muted);
}

.halal-modal__value {
    color: var(--pantone-black);
}

.halal-modal__products-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--pantone-black);
    margin-bottom: 0.75rem;
}

.halal-modal__table-wrap {
    overflow-x: auto;
    border-radius: 12px;
    border: 1px solid var(--cream-3);
}

.halal-modal__table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.82rem;
}

.halal-modal__table thead tr {
    background: var(--pantone-black);
    color: var(--background-palewhite);
}

.halal-modal__table th {
    padding: 0.65rem 0.9rem;
    text-align: left;
    font-family: 'Barlow', sans-serif;
    font-weight: 600;
    font-size: 0.75rem;
    letter-spacing: 0.04em;
    white-space: nowrap;
}

.halal-modal__table td {
    padding: 0.55rem 0.9rem;
    color: var(--pantone-black);
    border-bottom: 1px solid var(--cream-3);
    vertical-align: top;
}

.halal-modal__table tbody tr:last-child td {
    border-bottom: none;
}

.halal-modal__table tbody tr:nth-child(even) {
    background: var(--background-palewhite);
}

.halal-modal__verify {
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-top: 1rem;
    text-align: center;
}

.halal-modal__verify a {
    color: var(--pantone-red);
    text-decoration: none;
}

.halal-modal__footer {
    border-top: 1px solid var(--cream-3);
    padding: 1rem 1.5rem;
    justify-content: center;
}




.lang-cycle-btn {
    background: rgba(0,0,0,0.06);
    border: none;
    cursor: pointer;
    font-family: 'Barlow', sans-serif;
    font-weight: 700;
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    color: var(--pantone-black);
    padding: 6px 10px;
    border-radius: 8px;
    transition: background 0.15s;
    white-space: nowrap;
    min-width: 36px;
}

.lang-cycle-btn:hover {
    background: rgba(0,0,0,0.12);
}
