:root {
    --bg: #f7e9d7;
    --brown: #4a321d;
    --dark: #2b1b10;
    --green: #2f6b3f;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Inter, sans-serif;
    color: var(--brown);
    height: auto;
    overflow-y: auto;
}

.container {
    max-width: 1200px;
    margin: auto;
    padding: 0 24px;
}

.pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    padding: 8px 16px;
    border-radius: 999px;

    border: 1px solid rgba(74, 50, 29, 0.35);
    background: rgba(255, 255, 255, 0.6);

    font-size: 14px;
    font-weight: 500;
    color: #4a321d;

    width: fit-content;
}

.pill-icon {
    width: 22px;
    height: 22px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;
    border: 1px solid rgba(74, 50, 29, 0.35);

    font-size: 12px;
    line-height: 1;
}

.nav {
    position: sticky;
    top: 0;
    background: #F4E6D6;
    z-index: 1000;
}

.nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

/* ===== DESKTOP DEFAULT: hide mobile-only UI ===== */
.hamburger {
    display: none;
}

.mobile-menu {
    display: none;
}

nav a {
    margin: 0 16px;
    text-decoration: none;
    color: var(--brown);
}

.logo {
    height: 36px;
}

.btn {
    padding: 14px 26px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 600;
}

.btn.dark {
    background: var(--brown);
    color: #fff;

    transition:
        background 0.25s ease,
        color 0.25s ease,
        transform 0.2s ease;

    box-shadow: 0 6px 16px rgba(47, 107, 63, 0.25);
}

.btn.dark::after {
    content: ">";
    display: inline-block;
    margin-left: 8px;
    transition: transform 0.3s cubic-bezier(.22, .61, .36, 1);
}

.btn.dark:hover {
    background: var(--green);
    color: #ffffff;
    transform: translateY(-1px);
}

.btn.dark:hover::after {
    transform: translateX(6px);
}


.btn.green {
    background: var(--green);
    color: #fff;
    padding: 16px 26px;
    font-weight: 300;
    border-radius: 999px;
    position: relative;
    overflow: hidden;
    transition:
        background 0.25s ease,
        color 0.25s ease,
        box-shadow 0.25s ease;
}

.btn.green::after {
    content: ">";
    margin-left: 8px;
    display: inline-block;
    transition: transform 0.25s cubic-bezier(.22, .61, .36, 1);
}

.btn.green:hover {
    background: #4a321d;
    color: #ffffff;
    box-shadow: inset 0 0 0 1.5px #ffffff;
}

.btn.green:hover::after {
    transform: translateX(6px);
}

/* hero */

.hero {
    text-align: center;
    padding: 65px 0;
    overflow: hidden;
    background: #F2E1CE;
    height: auto;
}


.hero h1 {
    font-size: 65px;
    font-weight: 800;
    letter-spacing: 0em;
    line-height: 1;
    margin-bottom: 10px;
    z-index: 2;
}

.hero-sub {
    max-width: 800px;
    margin: 24px auto 45px;
    font-size: 18px;
    font-weight: 300;
    color: #7e6048;
    z-index: 2;
}

.hero-content>a.btn {
    transform: translateY(32px);
}

.hero-content.loaded>a.btn {
    transform: translateY(0);
}

.hero-content>a.btn {
    transition:
        opacity 0.6s ease,
        transform 0.7s cubic-bezier(.22, .61, .36, 1);
}

.hero-content {
    will-change: transform;
    transform-origin: center top;
    transition: transform 0.05s linear;
}

.hero-content>* {
    opacity: 0;
    transform: translateY(20px) scale(0.98);
}

.hero-content.loaded>* {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.hero-content>* {
    transition:
        opacity 0.6s ease,
        transform 0.6s cubic-bezier(.22, .61, .36, 1);
}

.hero-content>*:nth-child(1) {
    transition-delay: 0.05s;
}

.hero-content>*:nth-child(2) {
    transition-delay: 0.15s;
}

.hero-content>*:nth-child(3) {
    transition-delay: 0.25s;
}

.image-divider {
    position: relative;
    height: 100vh;
    /* longer runway */
    background: #F2E1CE;
    overflow: hidden;
    z-index: 1;
}

.image-divider img {
    position: absolute;
    top: -90px;
    left: 50%;
    transform: translate3d(-50%, 0, 0);
    /* IMPORTANT */
    width: 34vw;
    /* scales with screen */
    max-width: 560px;
    height: auto;
    will-change: transform;
    transform-origin: center center;
}




.statement {
    text-align: center;
    padding: 160px 0;
    position: relative;
    z-index: 5;
    background: linear-gradient(to bottom,
            #F4E6D6,
            #FAF3E8);
}

.statement h2 {
    font-size: 48px;
    font-weight: 700;
}

/* PRODUCT */
.product {
    font-family: "Open Sans", sans-serif;
    padding: 60px 0;
    background: #FAF3E8;
}

.product-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center
}

.tag {
    letter-spacing: 0.12em;
    font-size: 24px;
    font-weight: 500;
    color: #705442;
}

.product h2 {
    font-size: 45px;
    /* down from ~56 */
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: 16px;
}


.product p {
    font-size: 17px;
    line-height: 1.2;
    max-width: 520px;
    margin-bottom: 48px;
}


.product-image {
    border-radius: 24px;
    overflow: hidden;
    /* important */
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    /* keeps image proportions */
}


.product .tag {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.04em;
    /* reduced */
    margin-bottom: 10px;
    /* closer to title */
    display: inline-block;
    opacity: 0.8;
}

.product .btn {
    font-weight: 500;
    letter-spacing: 0.01em;
}

.product .btn.dark {
    transition:
        background 0.25s ease,
        color 0.25s ease,
        transform 0.2s ease;
}

.product .btn.dark::after {
    content: ">";
    display: inline-block;
    margin-left: 8px;
    transition: transform 0.35s cubic-bezier(.22, .61, .36, 1);
}

.product .btn.dark:hover {
    background: var(--green);
    color: #ffffff;
    transform: translateY(-1px);
}

.product .btn.dark:hover::after {
    transform: translateX(6px);
}


/* WHY US */
.why {
    padding: 160px 0;
    background: #FAF3E8;
}

.why-header {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 0px;
    margin: 5px 0;
}

.why-header h2 {
    font-size: 43px;
    font-weight: 500;
    /* not heavy */
    line-height: 1.15;
    white-space: nowrap;
    /* forces ONE line */
}

.why-header p {
    font-size: 17px;
    /* slightly smaller */
    line-height: 1.1;
    max-width: 520px;
    /* forces ~3 lines */
    margin: auto auto;
    /* keeps it centered */
}

.cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    transition: transform 0.25s ease;
}

.card:hover {
    transform: translateY(-1px);
}

.card {
    background: #fff;
    padding: 24px;
    border-radius: 24px;
}

.card h3 {
    color: var(--green);
}

.card-img {
    width: 100%;
    aspect-ratio: 1 / 1;
    /* perfect square */
    border-radius: 30px;
    overflow: hidden;
    margin-bottom: 16px;
    background: #eee;
}

.card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* fills square, crops nicely */
    display: block;
}


/* REVIEWS */
.review-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-top: 48px;
}

.reviews {
    background: linear-gradient(to bottom,
            #FAF3E8,
            #FFEBCC);
}

.review {
    opacity: 0;
    transform: translateY(20px);
    padding: 24px;
    border-radius: 24px;
    background-color: #ffffff;

    background-image: radial-gradient(120% 120% at 100% 100%,
            rgba(255, 211, 135, 0.6) 0%,
            rgba(255, 211, 135, 0.4) 20%,
            rgba(255, 255, 255, 0.95) 50%,
            #ffffff 100%);
    transition:
        opacity 0.6s ease,
        transform 0.6s cubic-bezier(.22, .61, .36, 1);
}

@media (min-width: 768px) {

    .review:nth-child(1),
    .review:nth-child(2) {
        transition-delay: 0.05s;
    }

    .review:nth-child(3),
    .review:nth-child(4) {
        transition-delay: 0.18s;
    }
}

@media (max-width: 767px) {
    .review:nth-child(1) {
        transition-delay: 0.05s;
    }

    .review:nth-child(2) {
        transition-delay: 0.15s;
    }

    .review:nth-child(3) {
        transition-delay: 0.25s;
    }

    .review:nth-child(4) {
        transition-delay: 0.35s;
    }
}

.reviews.reveal .review {
    opacity: 1;
    transform: translateY(0);
}

.review p {
    font-size: 16px;
    line-height: 1.6;
}

.stars {
    font-size: 22px;
    color: var(--green);
    margin-bottom: 16px;
}

.review-user {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 20px;
}

.avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    overflow: hidden;
    background: #ddd;
    flex-shrink: 0;
}

.avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.review-user span {
    color: var(--green);
    font-weight: 600;
    font-size: 15px;
}

/* FAQ */
.faq {
    padding: 160px 0 60px;
    /* bottom reduced */
    z-index: 1;
    background: linear-gradient(to bottom,
            #FFEBCC,
            #F4E6D6);
}

.faq-pill {
    font-size: 22px;
    /* bigger */
    font-weight: 500;
    letter-spacing: 0.02em;
    color: rgba(79, 52, 29, 0.6);
    /* lighter shade */
    margin-bottom: 36px;
    /* more gap before title */
    display: inline-block;
}


.faq-title {
    font-size: 42px;
    font-weight: 500;
    line-height: 1.25;
    letter-spacing: -0.01em;
}


.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 100px;
}


.faq-right {
    border-top: 1px solid rgba(0, 0, 0, 0.15);
}

.faq-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.15);
}

.faq-q {
    width: 100%;
    background: none;
    border: none;
    padding: 30px 0;
    font-size: 22px;
    font-weight: 500;
    text-align: left;
    cursor: pointer;
    position: relative;
    z-index: 1;
    color: #2b1b10;
}

.faq-q::after {
    content: "+";
    position: absolute;
    right: 0;
    font-size: 24px;
    transition: transform 0.3s ease;
}

.faq-item.open .faq-q::after {
    transform: rotate(45deg);
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.faq-a p {
    font-size: 17px;
    padding-bottom: 30px;
    max-width: 520px;
    line-height: 1.65;
}

/* FINAL CTA */
.final-cta {
    padding: 60px 0 160px;
    /* top reduced */
    background: #F4E6D6;
}

.final-cta-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 120px;
    align-items: top;
}

.final-cta-left h2 {
    font-size: 64px;
    font-weight: 800;
    line-height: 1.05;
    margin-bottom: 48px;
    letter-spacing: -0.02em;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 18px;

    background: #2f6b3f;
    /* green */
    color: #ffffff;

    padding: 14px 16px 14px 28px;
    border-radius: 999px;

    font-size: 16px;
    font-weight: 500;
    text-decoration: none;

    transition:
        background 0.25s ease,
        box-shadow 0.25s ease,
        transform 0.25s ease;
}


.cta-icon {
    width: 44px;
    height: 44px;

    background: #ffffff;
    color: #2f6b3f;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 18px;
    font-weight: 600;

    flex-shrink: 0;

    transition:
        background 0.25s ease,
        color 0.25s ease,
        transform 0.25s cubic-bezier(.22, .61, .36, 1);
}

.cta-btn:hover {
    background: #4a321d;
    /* brown */
    box-shadow: inset 0 0 0 1.5px rgba(255, 255, 255, 0.85);
    transform: translateY(-1px);
}

.cta-btn:hover .cta-icon {
    background: #ffffff;
    color: #4a321d;
    transform: translateX(6px);
}


.final-cta-right h4 {
    font-size: 22px;
    margin-bottom: 12px;
    margin-top: 55px;
}

.final-cta-right p {
    font-size: 18px;
    line-height: 1.3;
    max-width: 420px;
}

/* FOOTER */
.footer {
    background: #1C1008;
    color: #fff;
    padding: 100px 0 60px;
}

.footer-inner {
    display: flex;
    flex-direction: column;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.footer-logo {
    height: 36px;
    display: block;
}

.footer-links {
    display: flex;
    gap: 80px;
}

.footer-social {
    display: flex;
    align-items: center;
    gap: 8px;

    color: #ffffff;
    text-decoration: none;
    opacity: 0.7;

    transition: opacity 0.2s ease, transform 0.2s ease;
}

.footer-social:hover {
    opacity: 1;
    transform: translateY(-1px);
}


.footer-col h5 {
    font-size: 14px;
    opacity: 0.7;
    margin-bottom: 12px;
}

.footer-col a {
    display: block;
    font-size: 14px;
    color: #fff;
    text-decoration: none;
    margin-bottom: 8px;
}

.footer-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.15);
    margin: 48px 0 32px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    opacity: 0.7;
}

h1,
h2,
h3 {
    font-family: -apple-system, BlinkMacSystemFont,
        "SF Pro Display",
        "SF Pro Text",
        "Inter",
        "Segoe UI",
        sans-serif;
}

body::after {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 1;

    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='120' height='120' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
}

/*legal page*/
.legal-page {
    padding: 160px 0;
    background: #FAF3E8;
}

.legal-content {
    max-width: 760px;
}

.legal-content h1 {
    font-size: 48px;
    margin-bottom: 8px;
}

.legal-updated {
    color: rgba(74, 50, 29, 0.6);
    margin-bottom: 48px;
}

.legal-content h2 {
    margin-top: 40px;
    font-size: 22px;
}

.legal-content p {
    line-height: 1.7;
    margin-top: 12px;
}

.product-page {
    background: #F2E1CE;
    padding: 80px 0;
    /* gives breathing room top & bottom */
}

/* ORDER FORM CARD */
.order-card {
    background: rgba(255, 255, 255, 0.6);
    border-radius: 24px;
    padding: 36px;
    box-shadow:
        0 20px 40px rgba(74, 50, 29, 0.08);
    backdrop-filter: blur(6px);
}

/* FORM LAYOUT */
.order-card form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* LABELS */
.order-card label {
    font-size: 14px;
    font-weight: 500;
    color: #705442;
    margin-bottom: 6px;
}

/* INPUTS */
.order-card input,
.order-card select,
.order-card textarea {
    width: 100%;
    padding: 14px 16px;
    border-radius: 14px;
    border: 1px solid rgba(74, 50, 29, 0.25);
    background: rgba(255, 255, 255, 0.8);
    font-family: inherit;
    font-size: 15px;
    color: #2b1b10;
    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease,
        background 0.2s ease;
}

.order-card textarea {
    resize: vertical;
    min-height: 90px;
}

/* FOCUS STATE */
.order-card input:focus,
.order-card select:focus,
.order-card textarea:focus {
    outline: none;
    border-color: #2f6b3f;
    box-shadow: 0 0 0 3px rgba(47, 107, 63, 0.15);
    background: #ffffff;
}

/* ROWS (First + Last Name, City + Pincode) */
.order-card .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

/* BUTTON */
.order-card button {
    margin-top: 16px;
    margin-bottom: 48px;
}

/* MOBILE */
@media (max-width: 640px) {
    .order-card {
        padding: 24px;
    }

    .order-card .form-row {
        grid-template-columns: 1fr;
    }
}

/* VARIANT SELECT */
.variant-section {
    margin-bottom: 28px;
}

.variant-title {
    font-size: 15px;
    font-weight: 500;
    color: #705442;
    margin-bottom: 12px;
}

.variant-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.variant-card {
    border: 1.5px solid rgba(74, 50, 29, 0.25);
    border-radius: 18px;
    padding: 18px;
    background: rgba(255, 255, 255, 0.7);
    text-align: left;
    cursor: pointer;
    transition:
        border-color 0.25s ease,
        background 0.25s ease,
        transform 0.2s ease;
}

.variant-card h4 {
    margin: 0 0 6px;
    font-size: 16px;
    color: #2b1b10;
}

.variant-card p {
    margin: 0;
    font-size: 14px;
    color: #7e6048;
}

.variant-card:hover {
    transform: translateY(-1px);
}

.variant-card.active {
    border-color: #2f6b3f;
    background: #ffffff;
    box-shadow: 0 8px 20px rgba(47, 107, 63, 0.15);
}

/* THANK YOU PAGE */
.thank-you-page {
    background: #F2E1CE;
    padding: 120px 0 160px;
}

.thank-you-card {
    max-width: 620px;
    margin: 0 auto;
    text-align: center;

    background: rgba(255, 255, 255, 0.65);
    border-radius: 28px;
    padding: 56px 40px;

    box-shadow:
        0 24px 48px rgba(74, 50, 29, 0.12);

    backdrop-filter: blur(6px);
}

.thank-pill {
    display: inline-block;
    padding: 8px 18px;
    border-radius: 999px;

    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.04em;

    color: #2f6b3f;
    background: rgba(47, 107, 63, 0.12);

    margin-bottom: 24px;
}

.thank-you-card h1 {
    font-size: 42px;
    line-height: 1.15;
    margin-bottom: 16px;
    color: #2b1b10;
}

.thank-you-card p {
    font-size: 17px;
    line-height: 1.6;
    color: #7e6048;
    margin-bottom: 36px;
}

.thank-you-card .btn {
    padding: 16px 30px;
}

/* =========================================================
   MOBILE LAYOUT — FINAL & CLEAN (NO CONFLICTS)
========================================================= */

@media (max-width: 768px) {

    /* ---------- GLOBAL ---------- */
    body {
        font-size: 15px;
    }

    .container {
        padding-left: 18px;
        padding-right: 18px;
    }

    h1,
    h2 {
        word-break: keep-all;
        overflow-wrap: normal;
    }

    /* ---------- NAVBAR ---------- */
    .nav {
        background: #F4E6D6 !important;
    }

    .nav-inner {
        padding: 14px 24px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        background: #F4E6D6 !important;
    }

    .nav-inner nav,
    .nav-inner .btn.dark {
        display: none;
    }

    .logo {
        height: 30px;
    }

    /* Hamburger */
    .hamburger {
        display: flex;
        flex-direction: column;
        gap: 5px;
        background: none;
        border: none;
        padding: 6px;
        cursor: pointer;
    }

    .hamburger span {
        width: 22px;
        height: 2px;
        background: var(--brown);
        border-radius: 2px;
    }

    /* ---------- MOBILE MENU (SMALL DROPDOWN) ---------- */
    .mobile-menu {
        position: absolute;
        top: 72px;
        right: 24px;
        width: 220px;
        padding: 18px;
        background: #F4E6D6;
        border-radius: 18px;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        display: none;
        z-index: 999;
    }

    .mobile-menu.open {
        display: flex;
        flex-direction: column;
        gap: 14px;
    }

    .mobile-menu a {
        text-decoration: none;
        font-size: 16px;
        font-weight: 500;
        color: var(--brown);
    }

    .mobile-menu .btn {
        padding: 10px 16px;
        font-size: 14px;
    }

    /* ---------- HERO ---------- */
    .hero {
        padding: 40px 0 36px;
        overflow: visible;
    }

    .hero h1 {
        font-size: 38px;
        line-height: 1.1;
    }

    .hero h1 br {
        display: none;
    }

    .hero-sub {
        font-size: 16px;
        margin: 24px 26px 24px;
    }

    .hero-content {
        transform: none !important;
    }

    .hero-content>a.btn {
        margin-top: 10px;
        transform: none !important;
        margin-bottom: 8px;
    }


    /* ---------- IMAGE DIVIDER ---------- */
    .image-divider {
        height: 60vh;
        margin-top: -10px;
    }

    .image-divider img {
        width: 72vw;
        top: -30px;
    }

    /* ---------- STATEMENT ---------- */
    .statement {
        padding: 80px 0;
    }

    .statement h2 {
        font-size: 26px;
        line-height: 1.35;
    }

    /* ---------- HOME PRODUCT SECTION ---------- */
    .product {
        padding: 72px 0;
    }

    .product-grid {
        grid-template-columns: 1fr;
        gap: 28px;
        text-align: center;
    }

    .product-image {
        order: -1;
        background: none;
        padding: 0;
    }

    .product-image img {
        max-width: 260px;
        margin: 0 auto;
        border-radius: 20px;
    }

    .product h2 {
        font-size: 32px;
        margin-top: 8px;
    }

    .product p {
        font-size: 16px;
        margin: 16px auto 28px;
    }

    /* ---------- WHY US ---------- */
    .why {
        padding: 80px 0;
    }

    .why-header {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 12px;
    }

    .why-header h2 {
        font-size: 30px;
        line-height: 1.2;
        white-space: normal;
    }

    .why-header p {
        font-size: 16px;
        line-height: 1.45;
        margin: 0 auto;
    }

    .cards {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 36px;
    }

    /* ---------- REVIEWS ---------- */
    .review-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* ---------- FAQ ---------- */
    .faq {
        padding: 80px 0 50px;
    }

    .faq-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .faq-q {
        font-size: 18px;
    }

    /* ---------- FINAL CTA ---------- */
    .final-cta {
        padding: 90px 0 120px;
    }

    .final-cta-grid {
        grid-template-columns: 1fr;
        gap: 48px;
        text-align: center;
    }

    /* =========================================================
   PRODUCT PAGE — FORCE IMAGE ABOVE (OVERRIDE product.css)
========================================================= */

    @media (max-width: 768px) {

        /* KILL GRID FROM product.css */
        .product-page-grid {
            display: flex !important;
            flex-direction: column !important;
            gap: 28px !important;
        }

        /* IMAGE FIRST */
        .product-page .product-image {
            order: -1 !important;
            display: flex;
            justify-content: center;
        }

        .product-page .product-image img {
            max-width: 260px;
            width: 100%;
            border-radius: 20px;
        }

        /* CONTENT */
        .product-info {
            text-align: center;
        }

        .product-info h1 {
            font-size: 32px;
            line-height: 1.15;
        }

        .product-desc {
            font-size: 16px;
            max-width: 320px;
            margin: 0 auto 22px;
        }

        .price {
            justify-content: center;
        }

        .size-selector {
            justify-content: center;
            flex-wrap: wrap;
        }

        .product-buy {
            margin: 14px auto 18px;
        }

        .trust {
            justify-content: center;
            flex-wrap: wrap;
            gap: 10px;
            font-size: 13px;
        }
    }


    /* ---------- CONTACT PAGE (FIXED STACKING) ---------- */
    /* =========================================================
   CONTACT PAGE — MOBILE FIX
========================================================= */

    /* Stack layout */
    .contact-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 40px;
    }

    /* LEFT INFO */
    .contact-left {
        width: 100%;
        text-align: left;
    }

    .contact-left h1 {
        font-size: 36px;
        line-height: 1.15;
    }

    .contact-desc {
        font-size: 16px;
        margin-bottom: 28px;
    }

    /* CONTACT INFO PILLS */
    .contact-item {
        max-width: 100%;
    }

    /* FORM CARD */
    .contact-card {
        width: 100%;
        padding: 28px;
        box-sizing: border-box;
    }

    /* FORM ELEMENTS */
    .contact-form input {
        font-size: 15px;
    }

    .btn.full {
        width: 100%;
    }



    /* ---------- FOOTER ---------- */
    .footer {
        padding: 70px 0 50px;
    }

    .footer-top {
        flex-direction: column;
        gap: 32px;
    }

    .footer-bottom {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 12px;
    }

}

@media (max-width: 420px) {
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}