:root {
    --bg: #f8f4ed;
    --white: #ffffff;
    --text: #171717;
    --muted: #6a655d;
    --gold: #c89b3c;
    --gold-soft: #ecd9a8;
    --cream: #f2e7d5;
    --black: #0e0d0b;
    --border: rgba(23, 23, 23, 0.08);
    --shadow: 0 18px 50px rgba(15, 12, 7, 0.08);
    --radius-lg: 28px;
    --radius-md: 18px;
    --container: 1380px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    color: var(--text);
    background: linear-gradient(180deg, #fffdf9 0%, var(--bg) 100%);
}

.option-item.active {
    border-color: var(--gold);
    background: rgba(200,155,60,0.05);
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
p { color: var(--muted); line-height: 1.75; }

h1, h2, h3, h4 {
    font-family: 'Cormorant Garamond', serif;
    margin: 0 0 16px;
    color: var(--black);
}

h1 { font-size: clamp(3rem, 5vw, 5.5rem); line-height: 0.95; }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: 1.9rem; }

.container { width: min(calc(100% - 32px), var(--container)); margin: 0 auto; }
.section { padding: 88px 0; }
.section-sm { padding: 64px 0; }

.card, .glass-card {
    background: rgba(255,255,255,0.8);
    border: 1px solid rgba(255,255,255,0.6);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow);
    border-radius: var(--radius-lg);
}
.honey-thistle {
    background: linear-gradient(180deg, #d8b46a, #a97b2d);
}
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 52px;
    padding: 0 22px;
    border-radius: 999px;
    border: 1px solid transparent;
    background: var(--black);
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    transition: 0.25s ease;
}

.btn:hover { transform: translateY(-1px); }

.btn-outline {
    background: transparent;
    color: var(--black);
    border-color: var(--border);
}

.btn-gold {
    background: linear-gradient(135deg, #b8852d, #e2c16e);
    color: var(--black);
}

.product-details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    align-items: start;
}


.feature-card.step-1::before {
    background-image: url('/assets/images/image honey.jpg');
}

.feature-card.step-2::before {
    background-image: url('/assets/images/nuts image.webp');
}

.feature-card.step-3::before {
    background-image: url('/assets/images/honey and nuts image.png');
}

.product-details-image,
.product-details-info {
    padding: 24px;
}

.product-details-image img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    border-radius: 22px;
    background: #f1ede5;
}

.product-title {
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    line-height: 1;
}

.product-description {
    margin: 16px 0 24px;
}

.product-buy-box {
    margin-top: 18px;
}
.hero-highlight {
    font-size: 1.1rem;
    color: var(--black);
    font-weight: 600;
    margin-bottom: 14px;
}

.text-center {
    text-align: center;
}

.products-grid .product-card {
    transition: 0.25s ease;
}

.products-grid .product-card:hover {
    transform: translateY(-4px);
}

@media (max-width: 640px) {
    .hero-highlight {
        font-size: 1rem;
    }
}

.variant-table-wrap {
    margin-top: 28px;
}

.variant-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 12px;
}

.variant-table th,
.variant-table td {
    padding: 12px 10px;
    text-align: left;
    border-bottom: 1px solid rgba(23,23,23,0.08);
}

.variant-table th {
    color: var(--black);
    font-weight: 700;
}

.variant-table td {
    color: var(--muted);
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    border-radius: 999px;
    background: rgba(200, 155, 60, 0.08);
    color: #7b5a15;
    font-weight: 600;
    font-size: 0.92rem;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255,255,255,0.82);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(23,23,23,0.06);
}

.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    z-index: 9999;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 14px 35px rgba(0,0,0,0.2);
}

.whatsapp-float::after {
    content: "Chat with us";
    position: absolute;
    right: 70px;
    background: #111;
    color: #fff;
    padding: 8px 12px;
    border-radius: 10px;
    font-size: 0.8rem;
    opacity: 0;
    transform: translateX(10px);
    transition: 0.3s;
    white-space: nowrap;
}

.whatsapp-float:hover::after {
    opacity: 1;
    transform: translateX(0);
}

.footer-social {
    margin-top: 20px;
}

.social-links {
    display: flex;
    gap: 14px;
    margin-top: 12px;
    flex-wrap: wrap;
}

.social-links a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255,255,255,0.08);
    color: #fff;
    font-size: 0.9rem;
    transition: 0.25s ease;
}

.social-links a:hover {
    background: linear-gradient(135deg, #b8852d, #e2c16e);
    color: #000;
    transform: translateY(-2px);
}

/* Mobile tweak */
@media (max-width: 768px) {
    .whatsapp-float {
        width: 52px;
        height: 52px;
        bottom: 18px;
        right: 18px;
    }

    .whatsapp-float::after {
        display: none;
    }
}

.nav-wrap {
    min-height: 88px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.form-grid {
    display: grid;
    gap: 16px;
}

.form-grid label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #1f1a17;
}

.form-grid input,
.form-grid textarea,
.form-grid select {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #e6dcc9;
    border-radius: 14px;
    background: #fffdf9;
    color: #1f1a17;
    outline: none;
    transition: 0.2s ease;
}

.form-grid input:focus,
.form-grid textarea:focus,
.form-grid select:focus {
    border-color: #c9a34a;
    box-shadow: 0 0 0 3px rgba(201, 163, 74, 0.12);
}

table th,
table td {
    vertical-align: middle;
}

.brand { display: flex; align-items: center; gap: 14px; }

.brand img {
    width: 64px;
    height: 64px;
    object-fit: cover;
    border-radius: 18px;
    box-shadow: var(--shadow);
}

.brand-title { display: block; font-weight: 700; font-size: 1.2rem; }
.brand-subtitle { display: block; color: var(--muted); font-size: 0.88rem; }

.site-nav { display: flex; align-items: center; gap: 22px; }
.site-nav a { color: var(--muted); font-weight: 500; }
.site-nav a.active, .site-nav a:hover { color: var(--black); }

.cart-link span {
    display: inline-grid;
    place-items: center;
    margin-left: 6px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--gold);
    color: var(--black);
    font-size: 0.78rem;
    font-weight: 700;
}

.nav-toggle {
    display: none;
    border: 0;
    background: transparent;
    font-size: 1.6rem;
    cursor: pointer;
}

.hero {
    padding: 84px 0 42px;
}

.builder-step-panel {
    display: none;
}

.builder-step-panel.active {
    display: block;
    animation: fadeStep 0.25s ease;
}

.builder-steps .step {
    cursor: pointer;
    transition: 0.25s ease;
}

@keyframes fadeStep {
    from {
        opacity: 0;
        transform: translateY(8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.builder-steps {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.step {
    flex: 1;
    text-align: center;
    padding: 10px;
    border-radius: 999px;
    background: #eee;
    font-weight: 600;
}

.step.active {
    background: var(--gold);
    color: var(--black);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 36px;
    align-items: center;
}

.hero-copy, .hero-visual { padding: 36px; }
.hero-copy p { font-size: 1.05rem; max-width: 650px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 28px; }

.hero-visual {
    background: radial-gradient(circle at top, rgba(255,255,255,0.86), rgba(242,231,213,0.9));
    position: relative;
    min-height: 560px;
    overflow: hidden;
}

.hero-visual::before {
    content: '';
    position: absolute;
    inset: 18px;
    border-radius: calc(var(--radius-lg) - 10px);
    border: 1px solid rgba(23,23,23,0.05);
}

.honey-showcase {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
}

.honey-jar {
    width: 260px;
    height: 360px;
    border-radius: 50px 50px 34px 34px;
    background: linear-gradient(180deg, rgba(255,255,255,0.45), rgba(255,255,255,0.1));
    border: 2px solid rgba(255,255,255,0.65);
    position: relative;
    overflow: hidden;
    box-shadow: inset 0 0 38px rgba(255,255,255,0.26);
}

.honey-jar::before {
    content: '';
    width: 140px;
    height: 36px;
    background: linear-gradient(135deg, #212121, #3c372d);
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, 0);
    border-radius: 0 0 18px 18px;
    z-index: 3;
}

.jar-fill {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, #f4d05f, #cf9c2d);
}

.jar-glow {
    position: absolute;
    inset: 0;
    background: linear-gradient(100deg, rgba(255,255,255,0.3), transparent 40%, rgba(255,255,255,0.12));
}

.stats-grid, .products-grid, .feature-grid, .contact-grid, .cart-grid, .builder-grid {
    display: grid;
    gap: 24px;
}

.stats-grid { grid-template-columns: repeat(3, 1fr); margin-top: 30px; }
.stat-card, .product-card, .feature-card, .info-card, .cart-card, .builder-card { padding: 28px; }

.feature-card {
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.08;
    filter: blur(2px);
}
.product-card img {
    width: 100%;
    height: 290px;
    object-fit: cover;
    border-radius: 22px;
    background: #f1ede5;
}

.products-grid { grid-template-columns: repeat(3, 1fr); }

.product-meta {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: center;
    margin-top: 18px;
}

.price { font-weight: 700; color: var(--black); }
.muted { color: var(--muted); }

.section-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 28px;
}

.feature-grid { grid-template-columns: repeat(3, 1fr); }

.icon-dot {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: rgba(200,155,60,0.14);
    display: grid;
    place-items: center;
    font-weight: 700;
    margin-bottom: 18px;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    align-items: stretch;
}

.about-box { padding: 36px; }

.about-box.dark {
    background: var(--black);
    color: rgba(255,255,255,0.9);
}

.about-box.dark h2,
.about-box.dark p,
.about-box.dark li {
    color: rgba(255,255,255,0.86);
}

.about-box ul {
    padding-left: 18px;
    color: var(--muted);
    line-height: 1.8;
}

.contact-grid { grid-template-columns: 0.9fr 1.1fr; }
.form-grid { display: grid; gap: 18px; }

label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}

input, textarea, select {
    width: 100%;
    padding: 16px 18px;
    border-radius: 18px;
    border: 1px solid var(--border);
    background: rgba(255,255,255,0.94);
    font: inherit;
}

textarea {
    min-height: 140px;
    resize: vertical;
}

.notice {
    padding: 14px 18px;
    border-radius: 16px;
    margin-bottom: 18px;
    font-weight: 500;
}

.notice.success { background: #edf7ef; color: #1e6a34; }
.notice.error { background: #fff0ee; color: #a03d30; }

.cart-grid {
    grid-template-columns: 1.3fr 0.7fr;
    align-items: start;
}

.cart-item {
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: 16px;
    align-items: center;
    padding: 18px 0;
    border-bottom: 1px solid rgba(23,23,23,0.08);
}

.empty-state {
    text-align: center;
    padding: 56px 22px;
}

.site-footer {
    margin-top: 72px;
    padding-top: 48px;
    background: #12110e;
    color: rgba(255,255,255,0.85);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.8fr 0.8fr;
    gap: 28px;
    padding-bottom: 28px;
}

.site-footer h3,
.site-footer h4,
.site-footer p,
.site-footer li,
.site-footer a {
    color: inherit;
}

.site-footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 10px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 18px 0 28px;
}

.builder-grid {
    grid-template-columns: 1fr 0.95fr;
    align-items: start;
}

.builder-stack { display: grid; gap: 24px; }
.option-list { display: grid; gap: 14px; }

.option-item {
    display: flex;
    gap: 14px;
    align-items: start;
    justify-content: space-between;
    padding: 16px 18px;
    border: 1px solid rgba(23,23,23,0.08);
    border-radius: 18px;
    background: rgba(255,255,255,0.72);
}

.range-wrap { margin-top: 12px; }
.range-value { font-weight: 700; color: var(--black); }

.builder-jar-wrap {
    position: sticky;
    top: 108px;
}

.builder-jar {
    min-height: 460px;
    border-radius: 36px;
    padding: 22px 22px 28px;
    background: linear-gradient(180deg, rgba(255,255,255,0.95), rgba(248,244,237,0.8));
}

.jar-preview {
    width: min(230px, 100%);
    margin: 18px auto 0;
    position: relative;
    padding-top: 34px;
}

.jar-lid {
    position: relative;
    top: -1;
    left: 45%;
    transform: translateX(-50%);
    height: 22px;
    width: 120px;
    border-radius: 12px;
    background: linear-gradient(135deg, #1c1c1c, #3a342c);
    box-shadow: 0 6px 14px rgba(0,0,0,0.16);
    z-index: 12;
}

.jar-shell {
    height: 200px;  
    width: 210px; 
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(180deg, rgba(255,255,255,0.5), rgba(255,255,255,0.1)),
        rgba(255,255,255,0.2);

    border: 2px solid rgba(255,255,255,0.6);
    border-radius: 40px 40px 22px 22px;
    box-shadow:
        inset 0 0 40px rgba(255,255,255,0.3),
        inset 0 0 10px rgba(0,0,0,0.05),
        0 12px 30px rgba(0,0,0,0.1);
}

.price-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 18px;
    border-radius: 14px;
    background: rgba(200,155,60,0.1);
    margin-top: 20px;
}

.price-box strong {
    font-size: 1.4rem;
}

.jar-layers {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column-reverse;
}

.jar-layer {
    width: 100%;
    transition: height 0.5s ease;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

.jar-layer::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        100deg,
        rgba(255,255,255,0.25),
        transparent 40%
    );
}

.honey-orange-blossom {
    background: linear-gradient(180deg, #f6d97a, #d6a43a);
}

.honey-oak {
    background: linear-gradient(180deg, #9a6428, #5f3816);
}

.honey-eucalyptus {
    background: linear-gradient(180deg, #e2bf63, #b9852d);
}

.honey-generic {
    background: linear-gradient(180deg, #f1cf69, #cf9c2d);
}

.nut-layer {
    background-size: 52px 52px;
    background-repeat: repeat;
    opacity: 0.92;
}

.jar-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(100deg, rgba(255,255,255,0.4), transparent 40%, rgba(255,255,255,0.1)),
        linear-gradient(180deg, rgba(255,255,255,0.10), transparent 35%);
    z-index: 4;
    pointer-events: none;
}

.summary-list {
    display: grid;
    gap: 12px;
    margin-top: 22px;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    color: var(--muted);
}

.text-center { text-align: center; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }

.honey-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.btn:active {
    transform: scale(0.97);
}
.honey-card {
    cursor: pointer;
}

.honey-card-inner {
    padding: 16px;
    border-radius: 16px;
    border: 1px solid var(--border);
    background: white;
    text-align: center;
    transition: 0.2s;
}

.honey-card input:checked + .honey-card-inner,
.honey-card-inner:hover {
    border-color: var(--gold);
    transform: translateY(-2px);
}

.honey-color {
    height: 40px;
    border-radius: 10px;
    margin-bottom: 10px;
}

@media (max-width: 980px) {
    .container {
        width: min(calc(100% - 24px), var(--container));
    }

    .hero {
        padding: 48px 0 28px;
    }

    .hero-grid,
    .products-grid,
    .feature-grid,
    .about-grid,
    .contact-grid,
    .cart-grid,
    .builder-grid,
    .stats-grid,
    .footer-grid,
    .grid-2,
    .product-details-grid {
        grid-template-columns: 1fr;
    }

    .section-heading {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .hero-copy,
    .hero-visual,
    .stat-card,
    .product-card,
    .feature-card,
    .info-card,
    .cart-card,
    .builder-card,
    .about-box,
    .product-details-image,
    .product-details-info {
        padding: 22px;
    }

    .hero-visual {
        min-height: 340px;
    }

    .honey-showcase {
        position: relative;
        inset: auto;
        min-height: 280px;
    }

    .honey-jar {
        width: 200px;
        height: 280px;
    }

    .site-header {
        position: sticky;
        top: 0;
    }

    .nav-wrap {
        min-height: 76px;
        position: relative;
        gap: 12px;
    }

    .brand {
        gap: 10px;
        flex: 1;
        min-width: 0;
    }

    .brand img {
        width: 50px;
        height: 50px;
        border-radius: 14px;
    }

    .brand-title {
        font-size: 1rem;
        line-height: 1.1;
    }

    .brand-subtitle {
        font-size: 0.78rem;
        line-height: 1.2;
    }

    .nav-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 46px;
        height: 46px;
        font-size: 1.4rem;
        border-radius: 12px;
        border: 1px solid rgba(23,23,23,0.08);
        background: rgba(255,255,255,0.96);
        color: var(--black);
        flex-shrink: 0;
        position: relative;
        z-index: 1001;
    }

    .site-nav {
        position: absolute;
        top: calc(100% + 8px);
        left: 0;
        right: 0;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 10px;
        background: rgba(255,255,255,0.98);
        border: 1px solid rgba(23,23,23,0.08);
        border-radius: 20px;
        box-shadow: 0 18px 40px rgba(15, 12, 7, 0.12);
        backdrop-filter: blur(12px);
        z-index: 1000;
    }

    .site-nav.show {
        display: flex;
    }

    .site-nav a {
        padding: 14px 12px;
        border-radius: 14px;
    }

    .site-nav a:hover,
    .site-nav a.active {
        background: rgba(200, 155, 60, 0.08);
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }

    .hero-actions .btn,
    .product-meta .btn,
    .cart-card .btn,
    .product-buy-box .btn {
        width: 100%;
    }

    .stats-grid {
        gap: 16px;
        margin-top: 22px;
    }

    .product-card img {
        height: 260px;
    }

    .product-meta {
        flex-direction: column;
        align-items: stretch;
    }

    .cart-item {
        grid-template-columns: 1fr;
        gap: 10px;
        align-items: start;
    }

    .builder-jar-wrap {
        position: static;
    }

    .builder-jar {
        min-height: auto;
    }

    .jar-preview {
        width: min(210px, 100%);
    }

    .jar-shell {
        width: 210px;
        height: 220px;
        margin: 0 auto;
    }

    .product-details-image img {
        height: 360px;
    }

    .variant-table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }
}

.builder-picker-row {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 12px;
    margin-bottom: 16px;
}

.selected-items-grid {
    display: grid;
    gap: 14px;
    margin-top: 10px;
}

.selected-item-card {
    padding: 16px 18px;
    border: 1px solid rgba(23,23,23,0.08);
    border-radius: 18px;
    background: rgba(255,255,255,0.82);
    box-shadow: 0 10px 24px rgba(15, 12, 7, 0.04);
}

.selected-item-head {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    align-items: start;
    margin-bottom: 12px;
}

.remove-selected-item {
    width: 34px;
    height: 34px;
    border: 0;
    border-radius: 50%;
    background: rgba(0,0,0,0.06);
    cursor: pointer;
    font-size: 1.2rem;
    line-height: 1;
}

.builder-subsection + .builder-subsection {
    margin-top: 24px;
}

.booster-layer {
    background: linear-gradient(180deg, #fff2b8, #d8b24a);
    opacity: 0.9;
}

@media (max-width: 768px) {
    .builder-picker-row {
        grid-template-columns: 1fr;
    }
}

/* ---------- Mobile ---------- */
@media (max-width: 640px) {
    .container {
        width: min(calc(100% - 16px), var(--container));
    }

    .section {
        padding: 52px 0;
    }

    .section-sm {
        padding: 36px 0;
    }

    h1 {
        font-size: 2.35rem;
        line-height: 1.02;
    }

    h2 {
        font-size: 1.95rem;
        line-height: 1.05;
    }

    h3 {
        font-size: 1.45rem;
        line-height: 1.1;
    }

    p {
        line-height: 1.65;
    }

    .badge {
        font-size: 0.8rem;
        padding: 8px 12px;
    }

    .hero-copy,
    .hero-visual,
    .stat-card,
    .product-card,
    .feature-card,
    .info-card,
    .cart-card,
    .builder-card,
    .about-box,
    .product-details-image,
    .product-details-info {
        padding: 18px;
    }

    .hero-copy p {
        font-size: 0.98rem;
    }

    .hero-visual {
        min-height: 250px;
    }

    .honey-jar {
        width: 150px;
        height: 220px;
        border-radius: 34px 34px 20px 20px;
    }

    .honey-jar::before {
        width: 92px;
        height: 24px;
        border-radius: 0 0 12px 12px;
    }

    .brand {
        align-items: center;
    }

    .brand img {
        width: 44px;
        height: 44px;
    }

    .brand-title {
        font-size: 0.95rem;
    }

    .brand-subtitle {
        font-size: 0.72rem;
    }

    .nav-wrap {
        min-height: 68px;
    }

    .nav-toggle {
        width: 42px;
        height: 42px;
        font-size: 1.25rem;
    }

    .site-nav {
        top: calc(100% + 6px);
        padding: 8px;
    }

    .site-nav a {
        font-size: 0.96rem;
        padding: 12px 10px;
    }

    .btn,
    .btn-outline,
    .btn-gold {
        min-height: 48px;
        padding: 0 18px;
        width: 100%;
    }

    .stats-grid,
    .products-grid,
    .feature-grid,
    .footer-grid {
        gap: 16px;
    }

    .product-card img {
        height: 220px;
    }

    .product-title {
        font-size: 2rem;
    }

    .product-details-image img {
        height: 260px;
    }

    .variant-table th,
    .variant-table td {
        padding: 10px 8px;
        font-size: 0.92rem;
    }

    .option-item {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }

    .jar-preview {
        width: min(180px, 100%);
        padding-top: 28px;
    }

    .jar-lid {
        width: 92px;
        height: 18px;
        left: 50%;
    }

    .jar-shell {
        width: 180px;
        height: 190px;
        border-radius: 28px 28px 18px 18px;
    }

    .summary-list {
        gap: 8px;
    }

    .summary-item {
        font-size: 0.95rem;
    }

    .site-footer {
        margin-top: 48px;
        padding-top: 36px;
    }

    .footer-bottom {
        padding: 16px 0 22px;
    }
}

/* ---------- Very small phones ---------- */
@media (max-width: 400px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.7rem;
    }

    .brand-title {
        font-size: 0.88rem;
    }

    .brand-subtitle {
        font-size: 0.68rem;
    }

    .hero-copy,
    .hero-visual,
    .stat-card,
    .product-card,
    .feature-card,
    .info-card,
    .cart-card,
    .builder-card,
    .about-box,
    .product-details-image,
    .product-details-info {
        padding: 16px;
    }

    .honey-jar {
        width: 135px;
        height: 200px;
    }

    .jar-preview {
        width: 165px;
    }

    .jar-shell {
        width: 165px;
        height: 180px;
    }
}