/* =====================================================
   ABOUT HERO
===================================================== */

.about-hero {
    min-height: 570px;
    padding-top: 150px;

    display: flex;
    align-items: center;

    position: relative;
    overflow: hidden;

    background:
        radial-gradient(
            circle at 80% 25%,
            #ffe0d0,
            transparent 35%
        ),
        linear-gradient(
            135deg,
            #fffaf5,
            #fff0e5
        );
}

.about-hero-shape {
    position: absolute;
    border-radius: 50%;
    border: 1px dashed rgba(198,40,40,.18);
}

.shape-a {
    width: 400px;
    height: 400px;
    right: -150px;
    top: 70px;
    animation: aboutRotate 25s linear infinite;
}

.shape-b {
    width: 250px;
    height: 250px;
    right: 100px;
    top: 145px;
    animation: aboutRotateReverse 18s linear infinite;
}

@keyframes aboutRotate {
    to {
        transform: rotate(360deg);
    }
}

@keyframes aboutRotateReverse {
    to {
        transform: rotate(-360deg);
    }
}

.about-hero-content {
    max-width: 800px;
    position: relative;
    z-index: 2;
}

.about-hero-content h1 {
    font-family: "Playfair Display", serif;
    font-size: clamp(50px, 7vw, 82px);
    line-height: 1;
    margin: 18px 0 25px;
}

.about-hero-content h1 span {
    color: var(--primary);
    display: block;
}

.about-hero-content p {
    max-width: 650px;
    color: #666;
    font-size: 17px;
    line-height: 1.8;
}

.about-breadcrumb {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 30px;
    font-size: 12px;
}

.about-breadcrumb a {
    color: var(--primary);
    font-weight: 800;
}

.about-breadcrumb i {
    color: #aaa;
}

.about-breadcrumb span {
    color: #888;
}


/* =====================================================
   STORY
===================================================== */

.about-story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 90px;
    align-items: center;
}

.story-visual {
    position: relative;
}

.story-main-image {
    height: 540px;
    border-radius: 30px;

    background:
        radial-gradient(
            circle at center,
            #fff,
            #ffdccc
        );

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    color: var(--primary);

    box-shadow:
        0 25px 60px rgba(0,0,0,.08);

    position: relative;
    overflow: hidden;
}

.story-main-image::before,
.story-main-image::after {
    content: "";
    position: absolute;

    width: 330px;
    height: 330px;

    border-radius: 50%;

    border: 1px dashed rgba(198,40,40,.18);

    animation: storyOrbit 20s linear infinite;
}

.story-main-image::after {
    width: 430px;
    height: 430px;
    animation-duration: 30s;
    animation-direction: reverse;
}

@keyframes storyOrbit {
    to {
        transform: rotate(360deg);
    }
}

.story-icon {
    width: 125px;
    height: 125px;

    border-radius: 50%;

    display: grid;
    place-items: center;

    background: white;

    font-size: 55px;

    box-shadow:
        0 20px 40px rgba(0,0,0,.1);

    position: relative;
    z-index: 2;

    animation: storyFloat 4s ease-in-out infinite;
}

@keyframes storyFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }

}

.story-main-image > span {
    margin-top: 25px;
    letter-spacing: 3px;
    font-size: 11px;
    font-weight: 900;
    position: relative;
    z-index: 2;
}

.story-floating-card {
    position: absolute;

    right: -25px;
    bottom: 35px;

    background: var(--dark);
    color: white;

    padding: 18px 22px;

    border-radius: 18px;

    display: flex;
    align-items: center;
    gap: 13px;

    box-shadow:
        0 20px 45px rgba(0,0,0,.2);

    animation:
        storyCardFloat 4s ease-in-out infinite;
}

@keyframes storyCardFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }

}

.story-card-icon {
    width: 45px;
    height: 45px;

    display: grid;
    place-items: center;

    background: rgba(217,155,36,.15);

    color: var(--gold);

    border-radius: 12px;
}

.story-floating-card strong,
.story-floating-card span {
    display: block;
}

.story-floating-card strong {
    font-size: 13px;
}

.story-floating-card span {
    font-size: 11px;
    color: #aaa;
}

.story-content h2 {
    font-family: "Playfair Display", serif;
    font-size: clamp(40px, 5vw, 58px);
    line-height: 1.1;
    margin: 15px 0 25px;
}

.story-content h2 span {
    color: var(--primary);
    display: block;
}

.story-content p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 15px;
}

.story-highlights {
    margin-top: 30px;

    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.story-highlights div {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 13px;
    font-weight: 700;
}

.story-highlights i {
    width: 23px;
    height: 23px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: #fff0e5;
    color: var(--primary);
    font-size: 10px;
}


/* =====================================================
   MISSION
===================================================== */

.mission-section {
    padding: 110px 0;

    background: var(--cream);
}

.mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.mission-card {
    padding: 45px;

    background: white;

    border-radius: 28px;

    position: relative;

    overflow: hidden;

    box-shadow:
        0 15px 40px rgba(0,0,0,.05);

    transition: .4s;
}

.mission-card:hover {
    transform: translateY(-8px);
}

.mission-card-primary {
    background: var(--primary);
    color: white;
}

.mission-number {
    position: absolute;

    top: 20px;
    right: 25px;

    font-family: "Playfair Display", serif;

    font-size: 55px;

    opacity: .1;
}

.mission-icon {
    width: 65px;
    height: 65px;

    border-radius: 17px;

    display: grid;
    place-items: center;

    background: #fff0e2;

    color: var(--primary);

    font-size: 25px;

    margin-bottom: 25px;
}

.mission-card-primary .mission-icon {
    background: rgba(255,255,255,.15);
    color: white;
}

.mission-card h3 {
    font-family: "Playfair Display", serif;
    font-size: 30px;
    margin-bottom: 15px;
}

.mission-card p {
    color: #777;
    line-height: 1.8;
}

.mission-card-primary p {
    color: #ffeaea;
}

.mission-line {
    width: 55px;
    height: 3px;
    background: var(--primary);
    margin-top: 25px;
}

.mission-card-primary .mission-line {
    background: white;
}


/* =====================================================
   VALUES
===================================================== */

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.value-card {
    padding: 35px 25px;

    border: 1px solid #eee;

    border-radius: 23px;

    transition: .4s;
}

.value-card:hover {
    transform: translateY(-10px);

    box-shadow:
        0 20px 45px rgba(0,0,0,.08);

    border-color: transparent;
}

.value-icon {
    width: 58px;
    height: 58px;

    border-radius: 15px;

    background: #fff0e3;

    color: var(--primary);

    display: grid;
    place-items: center;

    font-size: 21px;

    margin-bottom: 20px;
}

.value-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.value-card p {
    color: #777;
    line-height: 1.7;
    font-size: 13px;
}


/* =====================================================
   QUALITY JOURNEY
===================================================== */

.quality-journey {
    padding: 110px 0;

    background: var(--dark);
    color: white;

    overflow: hidden;
}

.journey-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;

    position: relative;
}

.journey-item {
    position: relative;
    z-index: 2;

    text-align: center;

    padding: 25px 15px;
}

.journey-number {
    color: var(--gold);

    font-size: 11px;
    font-weight: 900;

    letter-spacing: 2px;

    margin-bottom: 15px;
}

.journey-icon {
    width: 75px;
    height: 75px;

    border-radius: 50%;

    display: grid;
    place-items: center;

    margin: auto;

    background: rgba(217,155,36,.13);

    border: 1px solid rgba(217,155,36,.3);

    color: var(--gold);

    font-size: 25px;

    transition: .4s;
}

.journey-item:hover .journey-icon {
    transform:
        scale(1.1)
        rotate(8deg);
}

.journey-item h3 {
    margin: 20px 0 10px;
    font-size: 17px;
}

.journey-item p {
    color: #999;
    line-height: 1.7;
    font-size: 12px;
}

.journey-line {
    position: absolute;

    top: 82px;
    left: 12%;
    right: 12%;

    height: 1px;

    background:
        repeating-linear-gradient(
            90deg,
            rgba(217,155,36,.35) 0 8px,
            transparent 8px 16px
        );

    z-index: 1;
}


/* =====================================================
   ABOUT STATS
===================================================== */

.about-stats {
    padding: 75px 0;

    background: var(--cream);
}

.about-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.about-stat {
    text-align: center;

    padding: 15px;

    border-right: 1px solid #ddd;
}

.about-stat:last-child {
    border-right: 0;
}

.stat-icon {
    color: var(--primary);
    margin-bottom: 10px;
}

.about-stat strong {
    display: block;

    font-family: "Playfair Display", serif;

    color: var(--dark);

    font-size: 43px;
}

.about-stat span {
    color: #777;
    font-size: 12px;
}


/* =====================================================
   FINAL CTA
===================================================== */

.about-final-cta {
    padding: 120px 0;

    text-align: center;

    background:
        radial-gradient(
            circle at center,
            #ffe8da,
            transparent 60%
        );
}

.about-final-content {
    max-width: 800px;
    margin: auto;
}

.about-final-content h2 {
    font-family: "Playfair Display", serif;

    font-size: clamp(43px, 6vw, 65px);

    line-height: 1.1;

    margin: 15px 0 20px;
}

.about-final-content h2 span {
    color: var(--primary);
    display: block;
}

.about-final-content p {
    color: #777;

    max-width: 600px;

    margin: 0 auto 30px;

    line-height: 1.8;
}


/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 1000px) {

    .about-story-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .mission-grid {
        grid-template-columns: 1fr;
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .journey-timeline {
        grid-template-columns: repeat(2, 1fr);
        gap: 35px;
    }

    .journey-line {
        display: none;
    }

}


@media (max-width: 600px) {

    .about-hero {
        min-height: 500px;
    }

    .about-hero-content h1 {
        font-size: 48px;
    }

    .story-main-image {
        height: 400px;
    }

    .story-floating-card {
        right: 10px;
        bottom: 20px;
    }

    .story-highlights {
        grid-template-columns: 1fr;
    }

    .mission-card {
        padding: 30px;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .journey-timeline {
        grid-template-columns: 1fr;
    }

    .about-stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 25px;
    }

    .about-stat {
        border-right: 0;
    }

    .about-stat strong {
        font-size: 35px;
    }

}

:root {
    --primary: #c62828;
    --primary-dark: #8e1b1b;
    --gold: #d99b24;
    --dark: #151515;
    --dark-2: #222;
    --cream: #fff8ef;
    --white: #ffffff;
    --text: #555;
    --border: #eeeeee;
    --radius: 22px;
    --container: 1180px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "DM Sans", sans-serif;
    color: var(--dark);
    background: var(--white);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    font-family: inherit;
}

.container {
    width: min(92%, var(--container));
    margin: auto;
}

.section {
    padding: 110px 0;
}


/* HEADER */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 18px 0;
    transition: .3s ease;
}

.site-header.scrolled {
    background: rgba(255,255,255,.96);
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
    padding: 12px 0;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.brand-logo {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: var(--primary);
    color: white;
    display: grid;
    place-items: center;
    font-size: 21px;
    box-shadow: 0 8px 25px rgba(198,40,40,.25);
}

.brand strong {
    display: block;
    font-family: "Playfair Display", serif;
    font-size: 24px;
}

.brand span {
    display: block;
    font-size: 10px;
    letter-spacing: 2px;
    color: #777;
    text-transform: uppercase;
}

.main-nav {
    display: flex;
    gap: 28px;
}

.main-nav a {
    font-size: 14px;
    font-weight: 600;
    position: relative;
}

.main-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -7px;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: .3s;
}

.main-nav a:hover::after,
.main-nav a.active::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-cta {
    background: var(--dark);
    color: white;
    padding: 13px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
}

.menu-toggle {
    display: none;
    width: 45px;
    height: 45px;
    border: 0;
    border-radius: 12px;
    background: var(--dark);
    color: white;
    font-size: 18px;
}


/* HERO */

.hero-section {
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 80% 30%, #ffe7d1 0, transparent 30%),
        linear-gradient(135deg, #fffaf5, #fff2e7);
    display: flex;
    align-items: center;
    padding-top: 100px;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 50px;
}

.eyebrow,
.section-label {
    color: var(--primary);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.eyebrow {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 22px;
}

.eyebrow span {
    width: 35px;
    height: 2px;
    background: var(--primary);
}

.hero-content h1 {
    max-width: 650px;
    font-family: "Playfair Display", serif;
    font-size: clamp(55px, 7vw, 90px);
    line-height: .98;
    margin-bottom: 28px;
}

.hero-content h1 span,
.section-heading h2 span,
.about-content h2 span,
.dealer-cta h2 span,
.final-cta h2 span {
    color: var(--primary);
}

.hero-content > p {
    max-width: 570px;
    color: var(--text);
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 13px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 23px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 800;
    transition: .3s ease;
}

.btn-primary {
    background: var(--primary);
    color: white;
    box-shadow: 0 15px 30px rgba(198,40,40,.25);
}

.btn-primary:hover {
    transform: translateY(-4px);
    background: var(--primary-dark);
}

.btn-outline {
    border: 1px solid #ccc;
    background: white;
}

.btn-outline:hover {
    transform: translateY(-4px);
    border-color: var(--primary);
    color: var(--primary);
}

.btn-dark {
    background: var(--dark);
    color: white;
}

.btn-light {
    background: white;
    color: var(--dark);
}

.hero-trust {
    display: flex;
    gap: 35px;
    margin-top: 45px;
}

.trust-item strong {
    display: block;
    font-size: 22px;
}

.trust-item span {
    color: #777;
    font-size: 12px;
}


/* HERO VISUAL */

.hero-visual {
    min-height: 620px;
    position: relative;
    display: grid;
    place-items: center;
}

.hero-glow {
    width: 390px;
    height: 390px;
    border-radius: 50%;
    background: rgba(198,40,40,.1);
    filter: blur(5px);
    position: absolute;
}

.hero-product {
    position: relative;
    z-index: 5;
    transform: rotate(6deg);
}

.packet {
    width: 250px;
    height: 390px;
    border-radius: 18px 18px 30px 30px;
    background: linear-gradient(150deg, #d32f2f, #8e1b1b);
    color: white;
    box-shadow: 35px 40px 70px rgba(70,20,20,.25);
    overflow: hidden;
    position: relative;
}

.packet::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(110deg, rgba(255,255,255,.25), transparent 35%);
}

.packet-top {
    text-align: center;
    padding: 18px;
    font-size: 11px;
    letter-spacing: 3px;
    font-weight: 800;
}

.packet-content {
    height: 285px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.packet-icon {
    width: 80px;
    height: 80px;
    display: grid;
    place-items: center;
    border: 2px solid rgba(255,255,255,.7);
    border-radius: 50%;
    font-size: 35px;
    margin-bottom: 20px;
}

.packet-content small {
    letter-spacing: 4px;
    font-size: 9px;
}

.packet-content h3 {
    font-family: "Playfair Display", serif;
    font-size: 40px;
}

.packet-content p {
    font-size: 13px;
}

.packet-bottom {
    position: absolute;
    bottom: 0;
    width: 100%;
    text-align: center;
    padding: 15px;
    font-size: 8px;
    letter-spacing: 1px;
    background: rgba(0,0,0,.15);
}

.floating-card {
    position: absolute;
    z-index: 10;
    background: white;
    padding: 15px 18px;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0,0,0,.1);
    display: flex;
    align-items: center;
    gap: 12px;
}

.floating-card i {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    background: #fff1dc;
    color: var(--gold);
}

.floating-card strong,
.floating-card span {
    display: block;
}

.floating-card strong {
    font-size: 13px;
}

.floating-card span {
    color: #888;
    font-size: 11px;
}

.card-top {
    top: 80px;
    right: 20px;
}

.card-bottom {
    bottom: 80px;
    left: 20px;
}

.product-orbit {
    position: absolute;
    border: 1px dashed rgba(198,40,40,.25);
    border-radius: 50%;
}

.orbit-one {
    width: 500px;
    height: 500px;
}

.orbit-two {
    width: 600px;
    height: 600px;
}


/* BRAND STRIP */

.brand-strip {
    background: var(--dark);
    color: white;
    padding: 20px 0;
}

.brand-strip-inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.brand-strip-inner div {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 12px;
}

.brand-strip i {
    color: var(--gold);
}


/* SECTIONS */

.two-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 90px;
    align-items: center;
}

.image-frame {
    height: 500px;
    border-radius: 30px;
    overflow: hidden;
    background: linear-gradient(135deg, #ffe1cf, #fff4ea);
}

.about-placeholder {
    height: 100%;
    display: grid;
    place-items: center;
    align-content: center;
    gap: 15px;
    color: var(--primary);
}

.about-placeholder i {
    font-size: 90px;
}

.about-placeholder span {
    font-weight: 800;
    letter-spacing: 4px;
}

.about-image {
    position: relative;
}

.experience-card {
    position: absolute;
    bottom: -25px;
    right: -25px;
    padding: 25px;
    background: var(--dark);
    color: white;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 20px 40px rgba(0,0,0,.2);
}

.experience-card strong {
    color: var(--gold);
    font-size: 38px;
}

.experience-card span {
    font-size: 12px;
}

.about-content h2,
.section-heading h2,
.dealer-cta h2,
.final-cta h2 {
    font-family: "Playfair Display", serif;
    font-size: clamp(40px, 5vw, 60px);
    line-height: 1.1;
    margin: 15px 0 25px;
}

.about-content p {
    color: var(--text);
    line-height: 1.8;
    margin-bottom: 15px;
}

.text-link,
.product-link {
    color: var(--primary);
    font-weight: 800;
    display: inline-flex;
    gap: 10px;
    margin-top: 15px;
}


/* PRODUCTS */

.products-section {
    background: var(--cream);
}

.section-heading {
    max-width: 650px;
    margin-bottom: 55px;
}

.section-heading.centered {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.section-heading p {
    color: var(--text);
    line-height: 1.7;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.product-card {
    background: white;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,.05);
    transition: .4s ease;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0,0,0,.12);
}

.product-image {
    height: 300px;
    background: linear-gradient(135deg, #fff0df, #ffe0d0);
    display: grid;
    place-items: center;
    position: relative;
}

.mini-packet {
    width: 135px;
    height: 210px;
    border-radius: 12px;
    background: linear-gradient(150deg, #d32f2f, #8e1b1b);
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 15px 20px 35px rgba(0,0,0,.15);
    transform: rotate(5deg);
}

.mini-packet span {
    font-family: "Playfair Display", serif;
    font-size: 25px;
}

.mini-packet strong {
    font-size: 11px;
    letter-spacing: 2px;
}

.product-badge {
    position: absolute;
    top: 18px;
    right: 18px;
    background: var(--primary);
    color: white;
    padding: 7px 12px;
    border-radius: 30px;
    font-size: 10px;
    font-weight: 800;
}

.product-info {
    padding: 25px;
}

.product-category {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary);
    font-weight: 800;
}

.product-info h3 {
    font-family: "Playfair Display", serif;
    font-size: 27px;
    margin: 7px 0;
}

.product-info p {
    color: #777;
    line-height: 1.6;
    font-size: 14px;
}

.center-button {
    text-align: center;
    margin-top: 45px;
}


/* QUALITY */

.quality-section {
    background: var(--dark);
    color: white;
    padding: 110px 0;
}

.section-heading.light p {
    color: #aaa;
}

.quality-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.quality-card {
    padding: 35px 25px;
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 22px;
    transition: .3s;
}

.quality-card:hover {
    transform: translateY(-8px);
    background: rgba(255,255,255,.04);
}

.quality-icon {
    width: 55px;
    height: 55px;
    border-radius: 15px;
    background: rgba(217,155,36,.15);
    color: var(--gold);
    display: grid;
    place-items: center;
    font-size: 21px;
    margin-bottom: 20px;
}

.quality-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.quality-card p {
    color: #999;
    line-height: 1.7;
    font-size: 13px;
}


/* STATS */

.stats-section {
    padding: 70px 0;
    background: var(--cream);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    text-align: center;
}

.stat-item strong {
    display: block;
    font-family: "Playfair Display", serif;
    font-size: 50px;
    color: var(--primary);
}

.stat-item span {
    color: #777;
    font-size: 13px;
}


/* DEALER */

.dealer-cta {
    padding: 80px 0;
    background: var(--primary);
    color: white;
}

.dealer-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.dealer-cta .section-label {
    color: #ffd9b4;
}

.dealer-cta h2 {
    margin-bottom: 15px;
}

.dealer-cta p {
    max-width: 600px;
    color: #ffe9e9;
    line-height: 1.7;
}


/* TESTIMONIAL */

.testimonial-card {
    max-width: 800px;
    margin: auto;
    text-align: center;
    padding: 55px 40px;
    background: var(--cream);
    border-radius: 30px;
}

.quote-icon {
    color: var(--primary);
    font-size: 30px;
}

.testimonial-card > p {
    font-family: "Playfair Display", serif;
    font-size: 27px;
    line-height: 1.5;
    margin: 20px 0 30px;
}

.customer {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
}

.customer-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--primary);
    color: white;
    display: grid;
    place-items: center;
    font-weight: 800;
}

.customer strong,
.customer span {
    display: block;
}

.customer strong {
    font-size: 13px;
}

.customer span {
    font-size: 11px;
    color: #888;
}


/* FINAL CTA */

.final-cta {
    padding: 120px 0;
    text-align: center;
    background:
        radial-gradient(circle at center, #fff0e4, transparent 60%),
        white;
}

.final-cta-content {
    max-width: 800px;
    margin: auto;
}

.final-cta p {
    color: #777;
    margin-bottom: 30px;
}


/* FOOTER */

.site-footer {
    background: #101010;
    color: white;
    padding: 80px 0 25px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.3fr;
    gap: 50px;
    padding-bottom: 60px;
}

.footer-brand > p {
    color: #999;
    line-height: 1.7;
    max-width: 320px;
    margin: 20px 0;
}

.footer-logo .brand span {
    color: #777;
}

.social-links {
    display: flex;
    gap: 10px;
}

.social-links a {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: #222;
    display: grid;
    place-items: center;
    transition: .3s;
}

.social-links a:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.site-footer h4 {
    margin-bottom: 20px;
}

.footer-links,
.contact-list {
    list-style: none;
}

.footer-links li,
.contact-list li {
    margin-bottom: 13px;
}

.footer-links a,
.contact-list li {
    color: #999;
    font-size: 13px;
}

.footer-links a:hover {
    color: white;
}

.contact-list li {
    display: flex;
    gap: 10px;
}

.contact-list i {
    color: var(--gold);
}

.footer-bottom {
    padding-top: 25px;
    border-top: 1px solid #282828;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    color: #777;
    font-size: 11px;
}

.footer-bottom div {
    display: flex;
    gap: 20px;
}


/* WHATSAPP */

.floating-whatsapp {
    position: fixed;
    right: 25px;
    bottom: 25px;
    z-index: 999;
    background: #25d366;
    color: white;
    border-radius: 50px;
    padding: 13px 18px;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 15px 35px rgba(0,0,0,.2);
    font-weight: 700;
    font-size: 12px;
}

.floating-whatsapp i {
    font-size: 20px;
}


/* LOADER */

.page-loader {
    position: fixed;
    inset: 0;
    background: var(--dark);
    color: white;
    z-index: 9999;
    display: grid;
    place-items: center;
    align-content: center;
    gap: 15px;
    transition: .5s;
}

.page-loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-circle {
    width: 45px;
    height: 45px;
    border: 3px solid #444;
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}





/* Binori Namkeen brand logo */
.brand-logo { width: 58px; height: 58px; display:flex; align-items:center; justify-content:center; overflow:hidden; background:transparent; }
.brand-logo img { width:100%; height:100%; object-fit:contain; display:block; }
.footer-logo .brand-logo { width:64px; height:64px; }
.hero-product .packet-content h3 { font-family: 'Playfair Display', serif; }

/* =========================================================
   BINORI FINAL RESPONSIVE / HEADER & HERO POLISH
   ========================================================= */
.site-header { padding: 12px 0; }
.site-header .nav-container { min-height: 64px; }
.brand { min-width: 210px; }
.brand-logo {
    width: 176px !important;
    height: 62px !important;
    flex: 0 0 176px;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    overflow: visible !important;
}
.brand-logo img {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
    object-position: left center !important;
}
.brand > div:last-child { display: none; }

.hero-section { padding-top: 100px; }
.hero-container { min-height: calc(100vh - 100px); }
.hero-content { position: relative; z-index: 20; }
.hero-visual { position: relative; z-index: 2; overflow: visible; }
.hero-product { z-index: 5; }

/* Keep decorative elements behind the product and never over the heading. */
.hero-bg-shape, .hero-orbit, .product-orbit { pointer-events: none; }
.hero-glow { z-index: 0; }
.product-orbit { z-index: 1; }

@media (max-width: 1000px) {
    .site-header { padding: 8px 0; }
    .site-header .nav-container { min-height: 58px; }
    .brand { min-width: 0; }
    .brand-logo { width: 165px !important; height: 58px !important; flex-basis: 165px; }
    .main-nav { top: 74px; }
    .hero-section { padding-top: 92px; }
    .hero-container { min-height: auto; }
    .hero-content h1 { font-size: clamp(48px, 8vw, 72px); }
    .hero-visual { min-height: 540px; margin-top: 10px; }
}

@media (max-width: 600px) {
    .container { width: min(92%, 560px); }
    .site-header { padding: 6px 0; }
    .site-header .nav-container { min-height: 52px; gap: 8px; }
    .brand-logo { width: 145px !important; height: 52px !important; flex-basis: 145px; }
    .nav-actions { margin-left: auto; }
    .menu-toggle { width: 42px; height: 42px; }
    .main-nav { top: 64px; left: 3%; width: 94%; padding: 20px; gap: 17px; }

    .hero-section {
        min-height: auto;
        padding: 92px 0 55px;
        display: block;
    }
    .hero-container {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }
    .hero-content { width: 100%; }
    .eyebrow { font-size: 10px; letter-spacing: 1.35px; margin-bottom: 16px; }
    .eyebrow span { width: 24px; }
    .hero-content h1 {
        max-width: 100%;
        font-size: clamp(40px, 12vw, 56px);
        line-height: .99;
        margin-bottom: 20px;
    }
    .hero-content > p {
        max-width: 100%;
        font-size: 14px;
        line-height: 1.7;
        margin-bottom: 22px;
    }
    .hero-buttons { gap: 10px; }
    .btn { width: 100%; max-width: 300px; padding: 13px 18px; }
    .hero-trust { gap: 14px; margin-top: 28px; flex-wrap: wrap; }
    .trust-item { min-width: 82px; }
    .trust-item strong { font-size: 19px; }
    .trust-item span { font-size: 10px; }

    .hero-visual {
        width: 100%;
        min-height: 390px;
        height: 390px;
        margin-top: 5px;
        overflow: hidden;
    }
    .hero-glow { width: 245px; height: 245px; }
    .orbit-one { width: 285px; height: 285px; }
    .orbit-two { width: 345px; height: 345px; }
    .packet { width: 175px; height: 275px; border-radius: 14px 14px 24px 24px; }
    .packet-top { padding: 13px; font-size: 9px; }
    .packet-content { height: 205px; }
    .packet-icon { width: 54px; height: 54px; font-size: 22px; margin-bottom: 12px; }
    .packet-content small { font-size: 7px; letter-spacing: 3px; }
    .packet-content h3 { font-size: 29px; }
    .packet-content p { font-size: 11px; }
    .packet-bottom { padding: 10px; font-size: 6px; }
    .floating-card { padding: 10px 12px; border-radius: 13px; gap: 8px; }
    .floating-card i { width: 32px; height: 32px; border-radius: 9px; font-size: 12px; }
    .floating-card strong { font-size: 11px; }
    .floating-card span { font-size: 9px; }
    .card-top { top: 28px; right: 2px; }
    .card-bottom { left: 2px; bottom: 24px; }
    .hero-scroll { display: none; }

    .brand-strip { padding: 16px 0; }
    .brand-strip-inner { gap: 12px; }
    .brand-strip-inner div { font-size: 11px; }
}

@media (max-width: 380px) {
    .brand-logo { width: 130px !important; height: 48px !important; flex-basis: 130px; }
    .hero-content h1 { font-size: 37px; }
    .hero-visual { min-height: 360px; height: 360px; }
    .packet { width: 155px; height: 245px; }
    .packet-content { height: 180px; }
    .orbit-one { width: 255px; height: 255px; }
    .orbit-two { width: 310px; height: 310px; }
}


/* =========================================================
   BINORI PREMIUM HOMEPAGE OVERRIDES
   Screenshot-inspired responsive hero/header
========================================================= */

:root{
    --bn-red:#cf1717;
    --bn-red-dark:#a90f0f;
    --bn-cream:#fff8ee;
    --bn-cream-2:#ffefd9;
    --bn-black:#171717;
}

/* Header: clean white bar and correctly constrained logo */
.site-header{
    position:fixed;
    top:0;
    left:0;
    background:#fff;
    padding:14px 0;
    box-shadow:0 1px 0 rgba(0,0,0,.07);
}
.site-header.scrolled{
    background:rgba(255,255,255,.98);
    padding:10px 0;
}
.brand{gap:14px;}
.brand-logo{
    width:145px;
    height:68px;
    background:transparent;
    border-radius:0;
    box-shadow:none;
    overflow:hidden;
    display:flex;
    align-items:center;
    justify-content:center;
    flex-shrink:0;
}
.brand-logo img{
    width:100%;
    height:100%;
    object-fit:contain;
    object-position:center;
}
.brand strong{font-size:28px;line-height:1;}
.brand span{font-size:11px;letter-spacing:1.6px;color:#c81919;margin-top:6px;}
.main-nav{gap:34px;}
.main-nav a{font-size:14px;}
.main-nav a.active{color:var(--bn-red);}
.nav-cta{background:var(--bn-red);padding:14px 23px;}
.nav-cta:hover{background:var(--bn-red-dark);}

/* New hero */
.bn-hero{
    min-height:690px;
    margin-top:96px;
    position:relative;
    overflow:hidden;
    background:
      radial-gradient(circle at 75% 48%,rgba(255,255,255,.95) 0,rgba(255,255,255,.35) 25%,transparent 46%),
      linear-gradient(120deg,#fffaf4 0%,#fff4e8 48%,#ffe6bd 100%);
}
.bn-hero-grid{
    min-height:690px;
    display:grid;
    grid-template-columns:49% 51%;
    align-items:center;
    position:relative;
    z-index:2;
}
.bn-hero-copy{padding:55px 0 45px;}
.bn-eyebrow{
    display:flex;align-items:center;gap:12px;
    color:var(--bn-red);font-weight:800;font-size:15px;letter-spacing:1.3px;
    margin-bottom:26px;
}
.bn-eyebrow span{width:36px;height:2px;background:var(--bn-red);display:block;}
.bn-hero-copy h1{
    font-family:"Playfair Display",serif;
    font-size:clamp(56px,6.3vw,82px);
    line-height:1.01;letter-spacing:-2.4px;
    max-width:690px;margin:0;color:#171717;
}
.bn-hero-copy h1 strong{display:block;color:var(--bn-red);font-weight:800;}
.bn-hero-copy p{
    max-width:620px;color:#333;font-size:18px;line-height:1.65;margin-top:26px;
}
.bn-hero-actions{display:flex;gap:18px;flex-wrap:wrap;margin-top:34px;}
.bn-btn{
    min-height:54px;padding:0 34px;border-radius:32px;display:inline-flex;align-items:center;justify-content:center;gap:10px;
    font-size:15px;font-weight:800;transition:.3s ease;
}
.bn-btn-primary{background:var(--bn-red);color:#fff;box-shadow:0 15px 28px rgba(207,23,23,.2);}
.bn-btn-primary:hover{background:var(--bn-red-dark);transform:translateY(-3px);}
.bn-btn-outline{border:1.8px solid var(--bn-red);color:var(--bn-red);background:rgba(255,255,255,.3);}
.bn-btn-outline:hover{background:var(--bn-red);color:#fff;transform:translateY(-3px);}
.bn-trust-row{display:flex;gap:32px;flex-wrap:wrap;margin-top:39px;}
.bn-trust-row div{display:flex;align-items:center;gap:10px;font-size:14px;font-weight:600;}
.bn-trust-row i{font-size:20px;color:var(--bn-red);}

/* Product stage */
.bn-product-stage{height:650px;position:relative;display:flex;align-items:center;justify-content:center;}
.bn-product-glow{position:absolute;width:420px;height:420px;border-radius:50%;background:rgba(255,255,255,.82);filter:blur(18px);}
.bn-ring{position:absolute;border:1px solid rgba(207,23,23,.18);border-radius:50%;}
.bn-ring-a{width:520px;height:520px;}
.bn-ring-b{width:650px;height:650px;}
.bn-dots{position:absolute;right:7%;top:70px;width:80px;height:70px;background-image:radial-gradient(#e8b565 2px,transparent 2px);background-size:18px 18px;opacity:.65;}
.bn-product-pack{
    width:365px;height:570px;position:relative;z-index:5;border-radius:17px 17px 28px 28px;
    background:linear-gradient(160deg,#e31a1a 0%,#c70f0f 55%,#920d0d 100%);
    box-shadow:28px 35px 60px rgba(65,20,0,.27);transform:rotate(4deg);
    overflow:hidden;animation:bnFloat 5s ease-in-out infinite;
}
.bn-product-pack:before{content:"";position:absolute;inset:0;background:linear-gradient(105deg,rgba(255,255,255,.28),transparent 28%,transparent 75%,rgba(0,0,0,.08));pointer-events:none;}
@keyframes bnFloat{0%,100%{transform:translateY(0) rotate(4deg)}50%{transform:translateY(-13px) rotate(2deg)}}
.bn-pack-top{text-align:center;padding-top:24px;letter-spacing:5px;font-weight:800;font-size:13px;color:#ffd66b;position:relative;z-index:2;}
.bn-pack-brand{position:relative;z-index:2;width:285px;height:145px;margin:5px auto 0;display:flex;align-items:center;justify-content:center;}
.bn-pack-brand img{width:100%;height:100%;object-fit:contain;filter:drop-shadow(0 7px 5px rgba(0,0,0,.22));}
.bn-pack-auth{text-align:center;color:#fff;letter-spacing:5px;font-size:10px;font-weight:700;margin-top:4px;position:relative;z-index:2;}
.bn-pack-name{text-align:center;color:#fff;font-family:"Playfair Display",serif;font-weight:800;font-size:34px;margin-top:8px;position:relative;z-index:2;}
.bn-snack-bowl{width:225px;height:100px;border-radius:50%;margin:22px auto 0;background:radial-gradient(ellipse at 50% 42%,#efad35 0 18%,#dc8b16 19% 35%,#b75b0a 36% 57%,#8a290d 58% 100%);box-shadow:0 12px 15px rgba(0,0,0,.25);display:flex;align-items:center;justify-content:center;gap:15px;color:#f7cf6b;font-size:18px;position:relative;z-index:2;}
.bn-snack-bowl:before{content:"MIXTURE";position:absolute;top:39px;left:0;right:0;text-align:center;color:#fff3cf;font-weight:800;font-size:14px;letter-spacing:2px;}
.bn-pack-tag{text-align:center;color:#ffd66b;font-size:9px;font-weight:800;letter-spacing:2px;margin-top:22px;position:relative;z-index:2;}
.bn-quality-seal{position:absolute;right:18px;bottom:23px;width:82px;height:82px;border-radius:50%;border:3px solid #e4b33e;background:#161616;color:#f0c34f;display:flex;flex-direction:column;align-items:center;justify-content:center;text-align:center;z-index:3;box-shadow:0 5px 12px rgba(0,0,0,.28);}
.bn-quality-seal i{font-size:17px;margin-bottom:3px;}.bn-quality-seal small{font-size:7px;line-height:1.2;font-weight:800;}
.bn-float-card{position:absolute;z-index:20;background:rgba(255,255,255,.97);border-radius:18px;padding:18px;box-shadow:0 18px 45px rgba(40,10,0,.13);}
.bn-float-icon{width:40px;height:40px;border-radius:12px;background:#fff1d7;color:#e0a000;display:flex;align-items:center;justify-content:center;margin-bottom:10px;}
.bn-float-icon.heart{color:var(--bn-red);}
.bn-float-card strong,.bn-float-card span{display:block;}.bn-float-card strong{font-size:14px;}.bn-float-card span{font-size:12px;color:#666;margin-top:3px;line-height:1.35;}
.bn-quality-float{top:115px;right:5%;width:122px;}
.bn-loved-float{bottom:48px;left:0;width:145px;}
.bn-leaf{position:absolute;color:#7ca34a;font-size:40px;opacity:.3;z-index:1;}.bn-leaf-1{right:1%;top:70px}.bn-leaf-2{right:3%;bottom:90px;font-size:28px;}

/* Existing homepage sections stay, but use clean spacing after new hero */
.brand-strip{margin-top:0;}

/* Mobile */
@media (max-width:1000px){
    .site-header{padding:10px 0;}
    .brand-logo{width:105px;height:58px;}
    .brand strong{font-size:22px;}
    .brand span{font-size:8px;}
    .bn-hero{margin-top:76px;}
    .bn-hero-grid{grid-template-columns:1fr;text-align:center;min-height:auto;}
    .bn-hero-copy{padding:58px 0 15px;}
    .bn-eyebrow,.bn-hero-actions,.bn-trust-row{justify-content:center;}
    .bn-hero-copy h1{font-size:clamp(48px,8vw,68px);margin-left:auto;margin-right:auto;}
    .bn-hero-copy p{margin-left:auto;margin-right:auto;font-size:16px;}
    .bn-product-stage{height:570px;}
    .bn-product-pack{width:310px;height:485px;}
    .bn-pack-brand{width:245px;height:120px;}
    .bn-pack-name{font-size:29px;}.bn-snack-bowl{width:190px;height:80px;}
    .bn-ring-a{width:450px;height:450px;}.bn-ring-b{width:530px;height:530px;}
    .main-nav{top:76px;}
}

@media(max-width:600px){
    .container{width:92%;}
    .site-header{height:76px;}
    .brand{gap:7px;}.brand-logo{width:76px;height:52px;}.brand strong{font-size:18px;}.brand span{font-size:7px;letter-spacing:1px;}
    .bn-hero{margin-top:76px;}
    .bn-hero-copy{padding-top:42px;}
    .bn-eyebrow{font-size:11px;gap:8px;margin-bottom:19px;}.bn-eyebrow span{width:25px;}
    .bn-hero-copy h1{font-size:clamp(40px,11.5vw,55px);letter-spacing:-1.4px;}
    .bn-hero-copy p{font-size:15px;line-height:1.55;margin-top:20px;}
    .bn-hero-actions{gap:10px;margin-top:25px;}
    .bn-btn{min-height:50px;padding:0 20px;font-size:13px;}
    .bn-trust-row{display:grid;grid-template-columns:1fr 1fr;gap:14px 16px;margin-top:26px;text-align:left;}
    .bn-trust-row div{font-size:12px;gap:7px;}.bn-trust-row i{font-size:17px;}
    .bn-product-stage{height:475px;margin-top:5px;}
    .bn-product-pack{width:245px;height:385px;border-radius:13px 13px 22px 22px;}
    .bn-pack-top{font-size:9px;padding-top:16px;letter-spacing:3px;}.bn-pack-brand{width:195px;height:94px;}
    .bn-pack-auth{font-size:7px;letter-spacing:3px;}.bn-pack-name{font-size:23px;margin-top:5px;}.bn-snack-bowl{width:155px;height:62px;margin-top:14px;font-size:12px;gap:8px;}.bn-snack-bowl:before{font-size:10px;top:24px;}.bn-pack-tag{font-size:6px;letter-spacing:1px;margin-top:14px;}
    .bn-quality-seal{width:62px;height:62px;right:10px;bottom:12px;border-width:2px;}.bn-quality-seal i{font-size:12px;}.bn-quality-seal small{font-size:5px;}
    .bn-quality-float{top:34px;right:-2px;width:95px;padding:12px;border-radius:14px;}.bn-loved-float{left:-2px;bottom:15px;width:120px;padding:12px;border-radius:14px;}.bn-float-icon{width:32px;height:32px;font-size:13px;margin-bottom:7px;}.bn-float-card strong{font-size:11px;}.bn-float-card span{font-size:9px;}
    .bn-ring-a{width:330px;height:330px;}.bn-ring-b{width:410px;height:410px;}.bn-product-glow{width:280px;height:280px;}
    .bn-dots{right:2%;top:25px;transform:scale(.7);}
}

@media(max-width:380px){
    .brand-logo{width:65px;}.brand strong{font-size:16px;}.brand span{display:none;}
    .bn-hero-copy h1{font-size:39px;}
    .bn-product-stage{height:430px;}.bn-product-pack{width:220px;height:350px;}.bn-pack-brand{width:175px;height:82px;}.bn-pack-name{font-size:21px;}.bn-snack-bowl{width:140px;height:56px;}
}



/* =========================================================
   BINORI NAMKEEN - FINAL HOMEPAGE OVERRIDE
   Loaded after the existing stylesheet so the new design wins.
========================================================= */

.bn-hero {
    margin-top: 96px !important;
    min-height: calc(100vh - 96px) !important;
    position: relative !important;
    overflow: hidden !important;
    background:
        radial-gradient(circle at 78% 45%, rgba(255,255,255,.88), transparent 34%),
        linear-gradient(115deg,#fffaf2 0%,#fff4e3 56%,#ffe8c2 100%) !important;
    font-family: "DM Sans", sans-serif !important;
    color: #171717 !important;
}

.bn-hero *,
.bn-hero *::before,
.bn-hero *::after,
.brand-strip *,
.about-preview *,
.products-section *,
.quality-section *,
.stats-section *,
.dealer-cta *,
.testimonials-section *,
.final-cta * {
    box-sizing: border-box;
}

.bn-hero .container {
    width: min(1400px, 92%) !important;
    max-width: none !important;
    margin: 0 auto !important;
}

.bn-hero-grid {
    min-height: calc(100vh - 96px) !important;
    display: grid !important;
    grid-template-columns: 48% 52% !important;
    align-items: center !important;
    position: relative !important;
    z-index: 3 !important;
}

.bn-hero-copy {
    padding: 55px 0 !important;
    position: relative !important;
    z-index: 8 !important;
}

.bn-eyebrow {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    color: #c81919 !important;
    font-size: 15px !important;
    font-weight: 800 !important;
    letter-spacing: 1px !important;
    margin-bottom: 25px !important;
}

.bn-eyebrow span {
    display: block !important;
    width: 36px !important;
    height: 2px !important;
    background: #c81919 !important;
}

.bn-hero-copy h1 {
    margin: 0 !important;
    max-width: 700px !important;
    font-family: "Playfair Display", Georgia, serif !important;
    font-size: clamp(52px, 5.2vw, 78px) !important;
    line-height: 1.03 !important;
    letter-spacing: -2.4px !important;
    font-weight: 800 !important;
    color: #171717 !important;
}

.bn-hero-copy h1 strong {
    display: block !important;
    color: #c81919 !important;
    font-weight: 800 !important;
}

.bn-hero-copy > p {
    max-width: 640px !important;
    margin: 27px 0 0 !important;
    font-size: 18px !important;
    line-height: 1.62 !important;
    color: #353535 !important;
}

.bn-hero-actions {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 16px !important;
    margin-top: 34px !important;
}

.bn-btn {
    min-height: 54px !important;
    padding: 0 32px !important;
    border-radius: 999px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 10px !important;
    font-size: 15px !important;
    font-weight: 800 !important;
}

.bn-btn-primary {
    background: #d71919 !important;
    color: #fff !important;
    box-shadow: 0 10px 25px rgba(215,25,25,.18) !important;
}

.bn-btn-outline {
    border: 2px solid #d71919 !important;
    color: #c81919 !important;
    background: rgba(255,255,255,.5) !important;
}

.bn-trust-row {
    display: flex !important;
    flex-wrap: wrap !important;
    align-items: center !important;
    gap: 30px !important;
    margin-top: 38px !important;
}

.bn-trust-row > div {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    color: #222 !important;
    font-size: 14px !important;
    font-weight: 700 !important;
}

.bn-trust-row i {
    color: #d71919 !important;
    font-size: 21px !important;
}

/* HERO PRODUCT STAGE */
.bn-product-stage {
    position: relative !important;
    min-height: 650px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    isolation: isolate !important;
}

.bn-ring {
    position: absolute !important;
    border: 1px solid rgba(210,40,20,.14) !important;
    border-radius: 50% !important;
    pointer-events: none !important;
}

.bn-ring-a {
    width: 600px !important;
    height: 600px !important;
}

.bn-ring-b {
    width: 490px !important;
    height: 490px !important;
}

.bn-product-glow {
    position: absolute !important;
    width: 390px !important;
    height: 390px !important;
    border-radius: 50% !important;
    background: rgba(255,255,255,.9) !important;
    filter: blur(20px) !important;
    z-index: -1 !important;
}

/* This is the product pack used by the current index.php */
.bn-product-pack {
    width: 365px !important;
    height: 545px !important;
    position: relative !important;
    z-index: 5 !important;
    overflow: hidden !important;
    border-radius: 12px 12px 24px 24px !important;
    background: linear-gradient(160deg,#ee1717 0%,#c70808 55%,#8e0505 100%) !important;
    border: 2px solid rgba(255,220,120,.35) !important;
    box-shadow: 28px 35px 55px rgba(70,20,0,.25) !important;
    transform: rotate(3deg) !important;
    color: #fff !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    padding: 25px 20px !important;
    animation: bnPackFloat 5s ease-in-out infinite !important;
}

.bn-product-pack::before {
    content: "" !important;
    position: absolute !important;
    inset: 0 !important;
    background: linear-gradient(105deg,rgba(255,255,255,.18),transparent 30%,rgba(0,0,0,.10)) !important;
    pointer-events: none !important;
}

.bn-product-pack::after {
    content: "" !important;
    position: absolute !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    height: 65px !important;
    background: rgba(75,0,0,.28) !important;
}

@keyframes bnPackFloat {
    0%,100% { transform: translateY(0) rotate(3deg); }
    50% { transform: translateY(-13px) rotate(1deg); }
}

.bn-pack-top {
    position: relative !important;
    z-index: 2 !important;
    font-size: 12px !important;
    letter-spacing: 4px !important;
    font-weight: 800 !important;
}

.bn-pack-brand {
    position: relative !important;
    z-index: 2 !important;
    width: 285px !important;
    height: 125px !important;
    margin-top: 14px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 4px solid #e5bd51 !important;
    border-radius: 50% / 38% !important;
    background: #c90909 !important;
    overflow: hidden !important;
}

.bn-pack-brand img {
    width: 245px !important;
    height: 105px !important;
    object-fit: contain !important;
    display: block !important;
}

.bn-pack-auth {
    position: relative !important;
    z-index: 2 !important;
    margin-top: 28px !important;
    font-size: 10px !important;
    letter-spacing: 4px !important;
    font-weight: 700 !important;
}

.bn-pack-name {
    position: relative !important;
    z-index: 2 !important;
    margin-top: 7px !important;
    font-family: "Playfair Display", Georgia, serif !important;
    font-size: 28px !important;
    font-weight: 800 !important;
}

.bn-snack-bowl {
    position: relative !important;
    z-index: 2 !important;
    width: 245px !important;
    height: 145px !important;
    margin-top: 18px !important;
    border-radius: 50% !important;
    background:
        radial-gradient(circle at 28% 38%,#f6b13d 0 7px,transparent 8px),
        radial-gradient(circle at 55% 30%,#8d4c20 0 8px,transparent 9px),
        radial-gradient(circle at 72% 47%,#4d8b32 0 7px,transparent 8px),
        radial-gradient(circle at 40% 62%,#efc148 0 8px,transparent 9px),
        radial-gradient(circle at 66% 70%,#b36a24 0 7px,transparent 8px),
        linear-gradient(135deg,#f5a523,#d8790c) !important;
    border: 12px solid rgba(255,232,187,.95) !important;
    box-shadow: inset 0 15px 25px rgba(100,35,0,.2), 0 15px 20px rgba(50,10,0,.2) !important;
}

.bn-snack-bowl span {
    display: none !important;
}

.bn-pack-tag {
    position: relative !important;
    z-index: 2 !important;
    margin-top: 12px !important;
    color: #ffe04b !important;
    font-size: 9px !important;
    letter-spacing: 1px !important;
    font-weight: 800 !important;
}

.bn-quality-seal {
    position: absolute !important;
    z-index: 4 !important;
    right: 12px !important;
    bottom: 58px !important;
    width: 75px !important;
    height: 75px !important;
    border-radius: 50% !important;
    border: 3px solid #d5a82f !important;
    background: #161616 !important;
    color: #ffd75b !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
}

.bn-quality-seal i {
    font-size: 19px !important;
    margin-bottom: 2px !important;
}

.bn-quality-seal small {
    font-size: 7px !important;
    line-height: 1.15 !important;
    letter-spacing: .6px !important;
}

.bn-float-card {
    position: absolute !important;
    z-index: 10 !important;
    background: rgba(255,255,255,.97) !important;
    border-radius: 18px !important;
    box-shadow: 0 18px 45px rgba(70,25,0,.13) !important;
    padding: 18px !important;
}

.bn-quality-float {
    top: 105px !important;
    right: 2% !important;
    width: 120px !important;
    text-align: center !important;
}

.bn-loved-float {
    bottom: 50px !important;
    left: 1% !important;
    width: 145px !important;
}

.bn-float-icon {
    width: 40px !important;
    height: 40px !important;
    border-radius: 12px !important;
    background: #fff1d8 !important;
    color: #dfa000 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin-bottom: 10px !important;
    font-size: 18px !important;
}

.bn-float-icon.heart {
    color: #d71919 !important;
}

.bn-float-card strong {
    display: block !important;
    color: #171717 !important;
    font-size: 14px !important;
    line-height: 1.25 !important;
}

.bn-float-card span {
    display: block !important;
    margin-top: 3px !important;
    color: #666 !important;
    font-size: 12px !important;
    line-height: 1.4 !important;
}

/* HEADER FIX: keep the real logo compact */
.site-header .brand-logo {
    width: 135px !important;
    height: 62px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    overflow: hidden !important;
    background: transparent !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    flex: 0 0 135px !important;
}

.site-header .brand-logo img {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
}

/* Keep existing sections readable */
.brand-strip .container {
    width: min(1400px,92%) !important;
    max-width: none !important;
}

/* Mobile */
@media (max-width: 820px) {
    .bn-hero {
        margin-top: 70px !important;
        min-height: auto !important;
    }

    .bn-hero-grid {
        min-height: auto !important;
        display: flex !important;
        flex-direction: column !important;
    }

    .bn-hero-copy {
        padding: 45px 0 10px !important;
        width: 100% !important;
    }

    .bn-hero-copy h1 {
        font-size: clamp(42px,11vw,62px) !important;
        letter-spacing: -1.5px !important;
    }

    .bn-hero-copy > p {
        font-size: 16px !important;
    }

    .bn-product-stage {
        width: 100% !important;
        min-height: 500px !important;
    }

    .bn-product-pack {
        width: 300px !important;
        height: 450px !important;
    }

    .bn-pack-brand {
        width: 230px !important;
        height: 98px !important;
    }

    .bn-pack-brand img {
        width: 195px !important;
        height: 82px !important;
    }

    .bn-pack-name {
        font-size: 24px !important;
    }

    .bn-snack-bowl {
        width: 205px !important;
        height: 115px !important;
    }

    .bn-quality-float {
        top: 30px !important;
        right: 0 !important;
    }

    .bn-loved-float {
        bottom: 25px !important;
        left: 0 !important;
    }

    .site-header .brand-logo {
        width: 90px !important;
        height: 50px !important;
        flex-basis: 90px !important;
    }
}

@media (max-width: 600px) {
    .bn-hero {
        margin-top: 62px !important;
    }

    .bn-hero-copy h1 {
        font-size: 43px !important;
    }

    .bn-hero-copy > p {
        font-size: 15px !important;
    }

    .bn-trust-row {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 15px 10px !important;
    }

    .bn-product-stage {
        min-height: 445px !important;
    }

    .bn-product-pack {
        width: 270px !important;
        height: 405px !important;
        padding: 18px 12px !important;
    }

    .bn-pack-brand {
        width: 205px !important;
        height: 88px !important;
        margin-top: 10px !important;
    }

    .bn-pack-brand img {
        width: 175px !important;
        height: 75px !important;
    }

    .bn-pack-auth {
        margin-top: 18px !important;
    }

    .bn-pack-name {
        font-size: 21px !important;
    }

    .bn-snack-bowl {
        width: 180px !important;
        height: 95px !important;
        margin-top: 12px !important;
    }

    .bn-quality-seal {
        width: 60px !important;
        height: 60px !important;
        right: 8px !important;
        bottom: 45px !important;
    }

    .bn-quality-seal i {
        font-size: 15px !important;
    }

    .bn-quality-seal small {
        font-size: 6px !important;
    }

    .bn-quality-float {
        width: 100px !important;
        padding: 13px !important;
        top: 22px !important;
    }

    .bn-loved-float {
        width: 125px !important;
        padding: 13px !important;
        bottom: 10px !important;
    }

    .bn-float-icon {
        width: 33px !important;
        height: 33px !important;
        margin-bottom: 7px !important;
        font-size: 15px !important;
    }

    .bn-float-card strong {
        font-size: 11px !important;
    }

    .bn-float-card span {
        font-size: 10px !important;
    }
}

@media (max-width: 380px) {
    .bn-hero-copy h1 {
        font-size: 39px !important;
    }

    .bn-product-pack {
        width: 245px !important;
        height: 370px !important;
    }

    .bn-pack-brand {
        width: 185px !important;
        height: 78px !important;
    }

    .bn-pack-brand img {
        width: 158px !important;
        height: 66px !important;
    }

    .bn-snack-bowl {
        width: 160px !important;
        height: 85px !important;
    }
}
