.section-spacing {
    padding-top: 0px;
    padding-bottom: clamp(32px, 4vw, 48px);
}
.holistic-section-bg {
    background: radial-gradient(circle at 20% 20%, #f5fbf5 0%, #ffffff 55%, #f7fbf7 100%);
    padding-top: clamp(48px, 6vw, 72px);
    padding-bottom: clamp(32px, 4vw, 48px);
    margin-bottom: clamp(24px, 4vw, 48px);
}
.holistic-section-bg .section-wrap {
    padding-top: 0;
    padding-bottom: 0;
}
.holistic-section-bg .brand-copy {
    text-align: center;
    margin: 0 auto;
}
.holistic-section-bg .brand-copy h2 {
    font-size: clamp(26px, 3.4vw, 34px);
    margin: 10px 0 12px;
    color: var(--herb-900);
}
.holistic-section-bg .eyebrow {
    color: var(--herb-700);
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 10px;
}
.holistic-section-bg .section-subtitle {
    color: #4b5c49;
    margin-bottom: 18px;
}
body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    background-color: #fff;
    color: #333;
}

:root {
    --herb-900: #1f3325;
    --herb-800: #26432d;
    --herb-700: #2f4f34;
    --herb-500: #3a5a40;
    --herb-300: #8cab8c;
    --herb-100: #f5f9f3;
    --sand: #f9fbf7;
    --muted: #556556;
    --border-soft: #e3ece0;
    --shadow-soft: 0 18px 38px rgba(0, 0, 0, 0.08);
    --shell-max: 1180px;
    --shell-padding: clamp(14px, 3vw, 28px);
    --section-gap: clamp(40px, 6vw, 80px);
}

main.home-shell {
    padding: 0;
    display: flex;
    flex-direction: column;
    background: #fff;
}

.section-wrap {
    width: 100%;
    max-width: var(--shell-max);
    margin: 0 auto;
    padding: 0 var(--shell-padding);
    box-sizing: border-box;
}

.section-header.narrow {
    max-width: 760px;
    margin: 0 auto 24px;
    text-align: center;
}

.instagram-reel {
    background: radial-gradient(circle at 20% 20%, #f8fbf8 0%, #ffffff 60%, #f6faf6 100%);
}

.instagram-reel-box {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 0 0;
}

.instagram-reel-frame {
    width: min(380px, 100%);
    aspect-ratio: 9 / 16;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid #eef2ee;
    overflow: hidden;
}

.instagram-reel-frame iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

.section-subtitle {
    color: #4b5c49;
    line-height: 1.6;
    margin-top: 12px;
}

.home-hero {
    padding: 0 0 clamp(8px, 2vw, 14px);
}

.hero-wrap {
    display: flex;
    flex-direction: column;
    gap: 0;
    align-items: stretch;
    background: linear-gradient(135deg, #f6fbf5 0%, #f0f6ef 60%, #ffffff 100%);
    border: none;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
}

.home-hero__copy h1 {
    font-size: clamp(30px, 4vw, 42px);
    margin: 10px 0 14px;
    color: var(--herb-900);
}

.ingredients-section {
    padding: clamp(48px, 6vw, 72px) 0;
    background: radial-gradient(circle at 20% 20%, #f5fbf5 0%, #ffffff 55%, #f7fbf7 100%);
}

.ingredient-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 18px;
}

.ingredient-card {
    border: 1px solid #e3ece0;
    border-radius: 16px;
    padding: 14px 14px 4px;
    background: #fff;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.04);
    transition: box-shadow 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
    overflow: hidden;
}

.ingredient-card:hover { transform: translateY(-3px); box-shadow: 0 16px 32px rgba(0, 0, 0, 0.08); }

.ingredient-card[open] {
    border-color: #c9dcc5;
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.08);
    transform: translateY(-4px);
}

.ingredient-card summary {
    display: grid;
    gap: 8px;
    align-items: center;
    justify-items: center;
    cursor: pointer;
    list-style: none;
    position: relative;
    padding-bottom: 8px;
}

.ingredient-card summary::-webkit-details-marker { display: none; }

.ingredient-thumb {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid #e6efe3;
    background: linear-gradient(135deg, #f9fbf7 0%, #f1f6ef 100%);
    display: grid;
    place-items: center;
}

.ingredient-thumb img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.ingredient-name {
    text-align: center;
    font-weight: 700;
    color: var(--herb-900);
}

.ingredient-toggle {
    text-align: center;
    font-weight: 600;
    color: #2f4f34;
    font-size: 13px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.ingredient-toggle::after {
    content: '\25BC';
    font-size: 10px;
    transform: translateY(1px);
    transition: transform 0.2s ease;
}

.ingredient-card[open] .ingredient-toggle::after { transform: rotate(-180deg) translateY(-1px); }

.ingredient-card p {
    margin: 12px 0 12px;
    color: #4b5c49;
    line-height: 1.55;
    border-top: 1px solid #eef3ed;
    padding-top: 10px;
    max-height: 0;
    opacity: 0;
    transform: translateY(-6px);
    overflow: hidden;
    transition: max-height 0.35s ease, opacity 0.35s ease, transform 0.35s ease;
}

.ingredient-card[open] p {
    max-height: 140px;
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    .ingredient-card,
    .ingredient-card p,
    .ingredient-card summary {
        transition: none;
    }
}

@media (max-width: 900px) {
    .ingredient-grid { grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); }
}

@media (max-width: 640px) {
    .section-wrap {
        max-width: 100vw;
        width: 100vw;
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }
    .ingredient-grid { grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 14px; }
    .ingredient-thumb { width: 82px; height: 82px; }
}

.hero-lede {
    color: #4b5c49;
    line-height: 1.65;
    margin-bottom: 16px;
}

.hero-pills {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 18px;
}

.hero-pills .pill {
    background: #e6efe3;
    color: #1f2a1d;
    border-radius: 999px;
    font-weight: 700;
    padding: 6px 12px;
}

.hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 18px;
}

.hero-metrics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 12px;
}

@media (max-width: 700px) {
    .hero-metrics {
        display: none;
    }
    .cta-button {
        background: #111 !important;
        color: #fff !important;
        border: none !important;
    }
}

.hero-metrics div {
    background: #fff;
    border: 1px solid var(--border-soft);
    border-radius: 12px;
    padding: 12px 14px;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.04);
}

.hero-metrics strong {
    display: block;
    color: var(--herb-700);
    font-size: 18px;
}

.hero-metrics span {
    color: #5f6b5a;
    font-size: 14px;
}

.home-hero__visual {
    display: flex;
    justify-content: center;
    width: 100%;
}

.home-hero__visual { display: none; }

.hero-figure {
    position: relative;
    width: 100%;
    max-width: clamp(520px, 64vw, 760px);
    aspect-ratio: 16 / 9;
    min-height: clamp(360px, 52vw, 520px);
    background: radial-gradient(circle at 30% 30%, #e5f2e3 0%, #f7fbf5 50%, #ffffff 100%);
    border-radius: 18px;
    padding: 8px;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--border-soft);
    overflow: hidden;
}
.hero-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 12px;
    opacity: 0;
    animation: heroCrossfade 6s infinite;
    transition: opacity 2s ease;
}

.hero-main { animation-delay: 0s; opacity: 1; }
.hero-alt { animation-delay: 3s; }

.hero-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    border: 1px solid var(--border-soft);
    border-radius: 999px;
    padding: 8px 12px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

.hero-badge strong {
    display: block;
    color: var(--herb-900);
    font-size: 14px;
}

.hero-badge span {
    color: #5f6b5a;
    font-size: 12px;
}

@keyframes heroCrossfade {
    0%, 40% { opacity: 1; }
    50%, 100% { opacity: 0; }
}


.brand-intro {
    padding: clamp(24px, 4vw, 36px) 0;
    background: linear-gradient(180deg, #f7fbf7 0%, #fdfdfb 100%);
    border: none;
    border-radius: 0;
    margin: clamp(14px, 3vw, 26px) 0;
    box-shadow: none;
}

.brand-heading h2 {
    margin: 0 0 clamp(10px, 2vw, 14px);
    text-align: left;
    color: var(--herb-900);
}


.brand-wrap {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: clamp(18px, 3vw, 32px);
    align-items: center;
    background: transparent;
    border: none;
    border-radius: 0;
    padding: clamp(10px, 2.6vw, 18px) 0;
    box-shadow: none;
    margin: 0 !important;
    max-width: 100vw;
    width: 100vw;
    box-sizing: border-box;
}

.brand-visuals {
    position: relative;
    min-height: 0;
    display: flex;
    justify-content: center;
    width: 100%;
}

.brand-visuals.solo .intro-circle {
    max-width: 560px;
    margin: 0 auto;
}

.intro-circle {
    position: relative;
    inset: auto;
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: none;
    border: none;
    background: #f7fbf7;
}

.intro-circle img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: transparent;
}

.intro-offset {
    width: 52%;
    height: 52%;
    top: -12%;
    right: -8%;
    left: auto;
}

.intro-small {
    width: 38%;
    height: 38%;
    bottom: -10%;
    left: 10%;
}

.brand-copy h2 {
    font-size: clamp(26px, 3.4vw, 34px);
    margin: 10px 0 12px;
    color: var(--herb-900);
}

.brand-copy p { margin: 0; }

.checklist {
    list-style: none;
    padding: 0;
    margin: 18px 0 0;
    display: grid;
    gap: 12px;
}

.checklist li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #3f4f3c;
    font-weight: 600;
}

.checklist i {
    color: var(--herb-500);
    background: #e7f1e4;
    border-radius: 999px;
    padding: 8px;
    font-size: 14px;
}

.feature-grid {
    padding: 6px 0 10px;
}

.feature-grid__cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 18px;
}

.feature-card {
    background: #fff;
    border: 1px solid var(--border-soft);
    border-radius: 16px;
    padding: 16px;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.06);
    display: grid;
    gap: 10px;
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.feature-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.08);
}

.feature-media {
    border-radius: 12px;
    overflow: hidden;
    background: #f4f7f2;
    border: 1px solid var(--border-soft);
}

.feature-media img {
    width: 100%;
    display: block;
    height: 140px;
    object-fit: cover;
}

.feature-card h3 {
    margin: 4px 0 6px;
    color: var(--herb-900);
    font-size: 18px;
}

.feature-card p {
    color: #4b5c49;
    line-height: 1.5;
    margin: 0 0 4px;
}

.soft-link {
    color: var(--herb-700);
    font-weight: 700;
    text-decoration: none;
}

.soft-link:hover { color: var(--herb-500); }

.trust-section {
    padding: 6px 0 12px;
}

.trust-wrap {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    align-items: center;
}

.trust-copy h2 {
    font-size: clamp(26px, 3.4vw, 34px);
    margin: 10px 0 12px;
    color: var(--herb-900);
}

.trust-list {
    display: grid;
    gap: 14px;
}

.trust-item {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 12px;
    align-items: start;
    padding: 12px;
    border: 1px solid var(--border-soft);
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.05);
}

.trust-icon {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    background: #e7f1e4;
    color: var(--herb-700);
    font-size: 16px;
}

.trust-item strong {
    display: block;
    color: var(--herb-900);
    margin-bottom: 4px;
}

.trust-item p {
    margin: 0;
    color: #4b5c49;
}

.trust-visual {
    display: flex;
    justify-content: center;
}

.trust-card {
    background: radial-gradient(circle at 30% 20%, #eef5eb 0%, #ffffff 65%);
    border: 1px solid var(--border-soft);
    border-radius: 18px;
    padding: 12px;
    box-shadow: var(--shadow-soft);
    max-width: 520px;
    width: 100%;
}

.trust-card img {
    width: 100%;
    display: block;
    border-radius: 14px;
}

.premium-section {
    position: relative;
    /*padding: clamp(40px, 6vw, 72px) 0;*/
    background: radial-gradient(circle at 18% 20%, #f2faf1 0%, #ffffff 55%, #f7fbf7 100%);
    overflow: hidden;
}

.premium-section::before,
.premium-section::after {
    content: "";
    position: absolute;
    border-radius: 999px;
    filter: blur(0);
    opacity: 0.6;
    z-index: 0;
}

.premium-section::before {
    width: clamp(180px, 32vw, 360px);
    height: clamp(180px, 32vw, 360px);
    background: radial-gradient(circle, rgba(47, 79, 52, 0.12) 0%, rgba(47, 79, 52, 0) 70%);
    top: -8%;
    left: -6%;
}

.premium-section::after {
    width: clamp(200px, 34vw, 420px);
    height: clamp(200px, 34vw, 420px);
    background: radial-gradient(circle, rgba(212, 175, 55, 0.12) 0%, rgba(212, 175, 55, 0) 70%);
    bottom: -12%;
    right: -6%;
}

.premium-wrap {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: clamp(22px, 4vw, 48px);
    align-items: center;
}

.premium-copy h2 {
    font-size: clamp(28px, 3.6vw, 38px);
    margin: 10px 0 14px;
    color: var(--herb-900);
}

.premium-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    margin: 18px 0 22px;
}

.premium-card {
    border-radius: 16px;
    padding: 16px 16px 18px;
    background: linear-gradient(140deg, rgba(255, 255, 255, 0.92) 0%, rgba(245, 250, 245, 0.92) 100%);
    border: 1px solid rgba(227, 236, 224, 0.9);
    box-shadow: 0 14px 26px rgba(15, 32, 20, 0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.premium-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 36px rgba(15, 32, 20, 0.12);
}

.premium-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    background: #e7f1e4;
    color: var(--herb-700);
    margin-bottom: 12px;
    font-size: 18px;
}

.premium-card h3 {
    margin: 0 0 6px;
    font-size: 18px;
    color: var(--herb-900);
}

.premium-card p {
    margin: 0;
    color: #4b5c49;
    line-height: 1.55;
}

.premium-metrics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 12px;
}

.premium-metrics div {
    padding: 12px 14px;
    border-radius: 14px;
    border: 1px solid rgba(227, 236, 224, 0.9);
    background: #fff;
    box-shadow: 0 10px 22px rgba(15, 32, 20, 0.06);
}

.premium-metrics strong {
    display: block;
    color: var(--herb-700);
    font-size: 18px;
}

.premium-metrics span {
    color: #5f6b5a;
    font-size: 14px;
}

.premium-visual {
    display: flex;
    justify-content: center;
}

.premium-frame {
    position: relative;
    max-width: 560px;
    width: 100%;
    border-radius: 22px;
    padding: 14px;
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.95) 0%, rgba(240, 247, 240, 0.95) 100%);
    border: 1px solid rgba(227, 236, 224, 0.9);
    box-shadow: 0 18px 38px rgba(15, 32, 20, 0.12);
}

.premium-frame img {
    width: 100%;
    display: block;
    border-radius: 18px;
    object-fit: cover;
}

.premium-badge {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(227, 236, 224, 0.9);
    box-shadow: 0 12px 26px rgba(15, 32, 20, 0.12);
    color: var(--herb-900);
    font-size: 12px;
}

.premium-badge span.material-symbols-rounded {
    font-size: 18px;
    color: var(--herb-700);
}

.premium-badge strong {
    display: block;
    font-size: 13px;
}

.premium-badge--top {
    top: 18px;
    left: 18px;
}

.premium-badge--bottom {
    bottom: 18px;
    right: 18px;
}

@media (max-width: 640px) {
    .section-wrap, .brand-wrap {
        max-width: 100vw !important;
        width: 100vw !important;
        margin: 0 !important;
        padding-left: 0.5rem;
        padding-right: 0.5rem;
        box-sizing: border-box;
    }
    .ingredient-grid { grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 14px; }
    .ingredient-thumb { width: 82px; height: 82px; }
}
    .hero-actions { justify-content: center; }
    .brand-intro { margin: 22px 12px; }
    .brand-wrap { gap: 22px; }
    .brand-copy { text-align: left; }
    .feature-grid__cards { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
    .trust-wrap { gap: 24px; }
    .trust-card { max-width: 520px; margin: 0 auto; 
    }


.home-reviews .reviews-shell {
    background: #f9fbf7;
    border: 1px solid var(--border-soft);
    border-radius: 18px;
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.05);
}

@media (max-width: 900px) {
    .hero-wrap { padding: 28px; }
    .hero-badge { position: static; margin-top: 12px; }
    .brand-visuals { min-height: 0; }
    .intro-circle { height: auto; aspect-ratio: 16 / 9; }
    .intro-offset, .intro-small { display: none; }
    .feature-media img { height: 160px; }
    .trust-wrap { gap: 22px; }
    .premium-wrap { gap: 28px; }
}

@media (max-width: 600px) {
    .hero-wrap { padding: 22px; gap: 18px; }
    .home-hero__copy h1 { font-size: 26px; }
    .hero-actions { flex-direction: row; flex-wrap: wrap; width: 100%; gap: 10px; }
    .hero-actions .cta-button {
        flex: 1 1 calc(50% - 10px);
        min-width: 0;
        text-align: center;
        background: #e8f1e7;
        color: #1f3325;
        border-radius: 10px;
        border: 1px solid #d6e6d2;
        box-shadow: none;
    }
    .hero-metrics { grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); }
    .brand-intro { margin: 0px; padding: 22px 0; }
    .feature-grid__cards { grid-template-columns: 1fr; }
    .trust-card { max-width: 100%; }
    .section-wrap { padding: 0 14px; }
    .premium-badge { position: static; margin: 12px auto 0; justify-content: center; }
    .premium-frame { padding: 10px; }
}

@media (max-width: 760px) {
    main.home-shell { gap: 0px; }
    .hero-wrap { text-align: center; }
    .home-hero__visual { order: -1; }
    .hero-actions { justify-content: center; }
    .hero-metrics { grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); }
    .brand-wrap { grid-template-columns: 1fr; text-align: center; }
    .checklist { justify-items: center; }
}

@media (max-width: 540px) {
    .hero-wrap { padding: 18px; margin-top: 30px;}
    .home-hero__copy h1 { font-size: 24px; }
    .hero-figure { aspect-ratio: 4 / 5; min-height: 230px; }
    .hero-pills { justify-content: center; }
    .hero-actions .cta-button { min-width: unset; }
    .trust-wrap { grid-template-columns: 1fr; }
    .reviews-grid { grid-template-columns: 1fr; }
    .premium-grid { grid-template-columns: 1fr; }
}

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.2;
}

/* Hero slider */
.hero-slider {
    position: relative;
    margin: 14px auto 28px;
    width: min(1200px, calc(100% - 32px));
    max-width: 1200px;
    border-radius: 18px;
    overflow: hidden;
    background: #f6f8f3;
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.08);
}

.slider-container {
    position: relative;
    display: grid;
    min-height: 360px;
}

/* -------- Premium layout overrides (desktop + mobile safe) -------- */

.hero-wrap {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    border-radius: clamp(14px, 2vw, 22px);
    padding: clamp(28px, 4vw, 48px);
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.06);
}

.home-hero__copy {
    max-width: 780px;
}

#brand-intro .brand-wrap {
    width: 100%;
    max-width: var(--shell-max);
    margin: 0 auto !important;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
    gap: clamp(24px, 4vw, 44px);
    padding: clamp(8px, 2vw, 20px) var(--shell-padding);
}

#brand-intro .brand-copy {
    text-align: left;
}

#brand-intro .checklist {
    max-width: 520px;
}

#brand-intro .checklist li {
    align-items: flex-start;
}

.instagram-reel-layout {
    display: grid;
    grid-template-columns: minmax(200px, 1fr) minmax(320px, 380px) minmax(200px, 1fr);
    align-items: center;
    gap: clamp(16px, 2.5vw, 28px);
}

.instagram-side {
    display: grid;
    gap: 14px;
}

.instagram-side-card {
    background: #fff;
    border: 1px solid #e5eee2;
    border-radius: 16px;
    padding: 16px;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.05);
}

.instagram-side-card h3 {
    margin: 0 0 8px;
    color: var(--herb-900);
    font-size: 20px;
}

.instagram-side-card p {
    margin: 0;
    color: #4b5c49;
    line-height: 1.6;
    font-size: 14px;
}

.instagram-reel-box {
    padding: 6px 0 0;
}

@media (max-width: 900px) {
    .instagram-reel-layout {
        grid-template-columns: 1fr;
    }

    .instagram-side {
        display: none;
    }

    #brand-intro .brand-wrap {
        grid-template-columns: 1fr;
    }

    #brand-intro .brand-copy {
        text-align: center;
        max-width: 760px;
        margin: 0 auto;
    }

    #brand-intro .checklist {
        max-width: 100%;
        justify-items: center;
    }
}

@media (max-width: 640px) {
    .hero-wrap {
        /*width: calc(100% - 16px);*/
        padding: 18px;
        border-radius: 14px;
        box-shadow: none;
    }

    .home-hero__copy h1 {
        font-size: clamp(24px, 7vw, 30px);
    }

    .hero-pills,
    .hero-metrics {
        display: none !important;
    }

    .instagram-reel-frame {
        width: min(350px, 100%);
    }
}

.slide {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 26px;
    align-items: center;
    padding: 42px 48px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.45s ease, visibility 0.45s ease;
    background: linear-gradient(120deg, #f0f5ec 0%, #f9fbf7 48%, #f3f8ef 100%);
}

.slide.active {
    opacity: 1;
    visibility: visible;
}

/* -------- Hero product image alignment (final override) -------- */
.hero-wrap {
    display: grid !important;
    grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
    align-items: center;
    gap: clamp(18px, 3vw, 34px);
}

.home-hero__visual {
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.hero-product-wrap {
    width: min(560px, 100%);
    min-height: clamp(320px, 34vw, 520px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-product-image {
    width: 100%;
    max-width: 520px;
    height: auto;
    object-fit: contain;
    display: block;
}

.hero-actions {
    justify-content: flex-start !important;
}

@media (max-width: 980px) {
    .hero-wrap {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .home-hero__copy {
        order: 2;
        text-align: left;
    }

    .home-hero__visual {
        order: 1;
    }

    .hero-product-wrap {
        min-height: 0;
    }

    .hero-product-image {
        width: min(360px, 92%);
        margin: 0 auto;
    }
}

@media (max-width: 640px) {
    .home-hero {
        padding: 0;
    }

    .hero-wrap {
        grid-template-columns: 1fr;
        padding: 0;
        gap: 0;
        width: 100%;
        margin: 0;
        border-radius: 0;
        background: transparent;
        box-shadow: none;
    }

    .home-hero__copy {
        display: none;
    }

    .home-hero__copy h1 {
        font-size: clamp(24px, 7vw, 31px);
        line-height: 1.12;
        margin: 8px 0 14px;
    }

    .hero-lede {
        text-align: center;
    }

    .home-hero__visual {
        display: flex !important;
        width: 100%;
        order: 1;
    }

    .hero-product-wrap {
        width: 100%;
        min-height: 0;
    }

    .hero-product-image {
        width: 100%;
        max-width: none;
        height: auto;
        margin: 0;
        display: block;
    }

    .hero-pills {
        display: flex !important;
        justify-content: center;
        gap: 8px;
        margin-bottom: 16px;
    }

    .hero-pills .pill {
        font-size: 13px;
        padding: 7px 12px;
    }

    .hero-metrics {
        display: none !important;
    }

    .hero-actions {
        justify-content: center !important;
        width: 100%;
        margin-bottom: 0;
    }

    .hero-actions .cta-button {
        width: 100%;
        max-width: none;
    }
}

.slide-visual {
    display: flex;
    justify-content: center;
}

.slide-visual img {
    width: 100%;
    max-width: 320px;
    border-radius: 16px;
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.12);
}

@media (max-width: 1200px) {
    .hero-slider { width: calc(100% - 28px); margin: 12px 14px 24px; }
    .slider-container { min-height: 320px; }
    .slide { padding: 34px 32px; }
}

@media (max-width: 1100px) {
}

@media (max-width: 1040px) {
    .hero-slider { width: 100%; margin: 10px 10px 22px; border-radius: 14px; }
    .slider-container { min-height: 300px; }
    .slide { gap: 18px; padding: 24px 20px; }
}

@media (max-width: 1024px) {
    .hero-slider { width: calc(100% - 20px); }
    .slide { gap: 20px; padding: 28px 22px; }
}

.slide-copy .eyebrow {
    color: #4d6b35;
    font-weight: 700;
    letter-spacing: 0.08em;
    margin-bottom: 10px;
}

.slide-copy h1 {
    font-size: clamp(32px, 4vw, 40px);
    margin: 0 0 12px;
    color: #1a2417;
}

.slide-copy p {
    margin: 0 0 16px;
    color: #3a4a32;
    line-height: 1.55;
}

.slide-meta {
    display: flex;
    gap: 16px;
    align-items: center;
    margin-bottom: 16px;
    color: #2f3f27;
}

.slide-meta .pill {
    background: #e4eedb;
    color: #1f2a1d;
    padding: 6px 12px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 13px;
}

.slide-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.slide-actions .ghost {
    background: #fff;
    color: #1f2a1d;
    border: 1px solid #d9e5cf;
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    background: rgba(31, 42, 29, 0.9);
    color: #fff;
    display: grid;
    place-items: center;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.18);
    cursor: pointer;
    transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.slider-arrow:hover {
    transform: translateY(-50%) scale(1.05);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
    background: rgba(31, 42, 29, 1);
}

.slider-arrow.prev { left: 16px; }
.slider-arrow.next { right: 16px; }

.slider-dots {
    position: absolute;
    left: 50%;
    bottom: 16px;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 999px;
    background: rgba(47, 63, 39, 0.28);
    border: 1px solid rgba(47, 63, 39, 0.36);
    transition: transform 0.15s ease, background 0.15s ease, width 0.15s ease;
}

.slider-dot.active {
    width: 22px;
    background: #2f3f27;
    border-color: #2f3f27;
    transform: translateY(-1px);
}

@media (max-width: 900px) {
    .main-nav { padding: 12px 14px; }
    .menu-toggle { display: inline-flex; }
    .horizontal-nav { display: none; }
    .hero-slider { margin: 10px 12px 24px; border-radius: 14px; }
    .slide { padding: 28px 24px; grid-template-columns: 1fr; }
    .slide-visual img { max-width: 260px; }
}

.hero-area {
    text-align: center;
    padding: 40px 0;
    border-bottom: 1px solid #eee;
}

.tagline {
    font-size: 18px;
    color: #555;
    margin: 0;
}

.featured-collections {
    display: flex;
    justify-content: space-around;
    gap: 20px;
    text-align: center;
}

.collection-card {
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 20px;
    width: 30%;
}

.collection-card img {
    max-width: 100%;
    border-radius: 8px;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: linear-gradient(135deg, #2f3f27, #283618);
    color: #fff;
    padding: 12px 22px;
    text-decoration: none;
    border-radius: 12px;
    border: 1px solid #23311f;
    font-weight: 700;
    letter-spacing: 0.01em;
    font-size: 15px;
    min-width: 140px;
    box-shadow: 0 10px 25px rgba(40, 54, 24, 0.18);
    transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.2s ease;
}

.cta-button.full { width: 100%; text-align: center; justify-content: center; }

.cta-button:hover {
    transform: translateY(-1px);
    box-shadow: 0 14px 28px rgba(40, 54, 24, 0.22);
    background: linear-gradient(135deg, #34492c, #2f3f27);
}

.cta-button:active {
    transform: translateY(0);
    box-shadow: 0 8px 18px rgba(40, 54, 24, 0.16);
}

.best-seller {
    padding: 40px 0;
    display: flex;
    justify-content: center;
}

.product-card {
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 0 12px 12px;
    text-align: center;
    width: 260px;
}

.product-image-container {
    position: relative;
    margin: 0 -12px 10px;
}

.product-image-container img {
    max-width: 100%;
    border-radius: 8px;
}

.badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: #e44d26;
    color: #fff;
    padding: 5px 10px;
    font-size: 12px;
    border-radius: 5px;
}

.price {
    font-size: 18px;
    font-weight: bold;
    color: #333;
}


/* Product showcase */
.product-showcase,
.product-detail-preview,
.related-products {
    padding: 50px 20px;
    border-top: 1px solid #eee;
}

.section-header {
    text-align: center;
    max-width: 780px;
    margin: 0 auto 24px;
}

.eyebrow {
    text-transform: uppercase;
    padding-top: 0px;
    letter-spacing: 0.08em;
    color: #6b705c;
    font-weight: 700;
    font-size: 12px;
    margin-bottom: 0px;
}

.section-header h2 {
    margin: 0 0 8px;
    font-size: 28px;
}

.section-subtitle {
    color: #666;
    font-size: 15px;
}

.product-showcase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
}

.product-showcase-grid.compact {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.product-tile {
    border: 1px solid #eee;
    border-radius: 16px;
    padding: 18px;
    background: #fff;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.product-tile h3 {
    font-size: 20px;
    margin: 0;
}

.tile-copy {
    color: #555;
    margin: 0;
    font-size: 15px;
    line-height: 1.5;
}

.tile-price {
    display: flex;
    align-items: baseline;
    gap: 10px;
    font-weight: 700;
    font-size: 18px;
}

.price-old {
    text-decoration: line-through;
    color: #999;
    font-weight: 500;
}

.tile-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.tile-icons {
    display: flex;
    gap: 10px;
    color: #6b705c;
}

.product-thumb {
    border: 1px dashed #d1d1d1;
    border-radius: 12px;
    min-height: 160px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, #f7f7f7, #f0f0f0);
    color: #555;
    text-align: center;
    padding: 12px;
}

.product-thumb.has-image {
    border: 1px solid #e5e5e5;
    background: #f7f7f7;
    padding: 0;
    overflow: hidden;
}

.product-thumb.has-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.thumb-text {
    font-weight: 600;
}

.tile-rating {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #333;
    font-weight: 600;
}

.stars {
    letter-spacing: 2px;
    color: #f2c94c;
}

.rating-count {
    color: #777;
    font-weight: 500;
}

.pill {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.pill-gold { background: #f6e05e; color: #2d2926; }
.pill-blue { background: #1da1f2; color: #fff; }
.pill-red { background: #d62828; color: #fff; }

/* Product detail preview */
.product-detail-preview .breadcrumbs {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #666;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.product-detail-preview .breadcrumbs a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
}

.product-detail-preview .breadcrumbs a:hover {
    text-decoration: underline;
}

.crumb-divider {
    color: #bbb;
}

.detail-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.detail-image {
    background: linear-gradient(135deg, #f8f8f8, #efefef);
    border: 1px solid #eee;
    border-radius: 18px;
    min-height: 420px;
    display: grid;
    place-items: center;
    color: #666;
    font-weight: 600;
}

.detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
}

.detail-info h2 {
    margin: 8px 0 6px;
    font-size: 32px;
    font-weight: 600;
}

.detail-tagline {
    color: #555;
    margin: 0 0 16px;
}

.detail-rating {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.detail-price-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
}

.detail-price {
    font-size: 28px;
    font-weight: 700;
}

.detail-old-price {
    color: #999;
    text-decoration: line-through;
}

.detail-highlights h4 {
    margin: 0 0 10px;
}

.detail-highlights ul {
    padding-left: 18px;
    color: #555;
    line-height: 1.6;
}

.detail-highlights li {
    margin-bottom: 6px;
}

.detail-quantity {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 16px 0;
    flex-wrap: wrap;
}

.quantity-controls {
    display: inline-flex;
    align-items: center;
    background: #f7f7f7;
    border: 1px solid #dcdcdc;
    border-radius: 14px;
    overflow: hidden;
    height: 44px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

.qty-btn {
    width: 44px;
    height: 100%;
    background: #fff;
    font-weight: 700;
    border: none;
    color: #283618;
    transition: background 0.15s ease, color 0.15s ease, box-shadow 0.15s ease;
    font-size: 18px;
    cursor: pointer;
}

#detail-quantity-input {
    width: 72px;
    height: 100%;
    border: none;
    text-align: center;
    font-weight: 600;
    background: transparent;
    border-left: 1px solid #e5e5e5;
    border-right: 1px solid #e5e5e5;
    appearance: textfield;
}

#detail-quantity-input::-webkit-outer-spin-button,
#detail-quantity-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.stock {
    color: #2f9e44;
    font-weight: 600;
}

.qty-btn:hover {
    background: #283618;
    color: #fff;
    box-shadow: inset 0 0 0 1px #283618;
}

.detail-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.cta-button.ghost {
    background: #fff;
    color: #283618;
    border: 1px solid #23311f;
    box-shadow: none;
}

.cta-button.ghost:hover {
    background: #f7f7f3;
    box-shadow: 0 10px 22px rgba(40, 54, 24, 0.14);
}

.cta-button.ghost:active {
    box-shadow: 0 6px 12px rgba(40, 54, 24, 0.1);
}

@media (max-width: 900px) {
    .detail-layout {
        grid-template-columns: 1fr;
    }

    .product-showcase,
    .product-detail-preview,
    .related-products {
        padding: 40px 0;
    }
}

/* Reviews section */
.reviews-section {
    padding: 0px;
    border-top: 1px solid #eee;
}

.reviews-shell {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.reviews-summary {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 24px;
    align-items: center;
    margin: 0 auto 28px;
    max-width: 960px;
}

.summary-score {
    display: flex;
    flex-direction: column;
    gap: 6px;
    align-items: center;
    text-align: center;
}

.summary-text {
    margin: 0;
    color: #555;
    font-size: 14px;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.review-card {
    border: 1px solid #d9d9d9;
    border-radius: 12px;
    padding: 16px;
    background: #fff;
    box-shadow: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.review-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    flex-wrap: wrap;
}

.review-header h4 {
    margin: 0;
    font-size: 20px;
    font-weight: 700;
}

.verified-badge {
    color: #1d4ed8;
    font-size: 13px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 700;
}

.badge-icon {
    display: inline-flex;
    width: 18px;
    height: 18px;
}

.review-stars {
    color: #f2c94c;
    letter-spacing: 2px;
    font-weight: 700;
    font-size: 18px;
}

.review-text {
    margin: 0;
    color: #222;
    line-height: 1.5;
    font-size: 15px;
}

.reviews-pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin: 20px;
}

.page-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid #e5e7eb;
    background: #fff;
    color: #333;
    font-weight: 600;
    transition: all 0.2s ease;
}

.page-btn:hover {
    background: #f5f5f5;
}

.page-btn.active {
    background: #283618;
    color: #fff;
    border-color: #283618;
}

.page-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.summary-right .bar-row {
    display: grid;
    grid-template-columns: 90px 1fr 90px;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.bar-track {
    width: 100%;
    height: 12px;
    background: #e9ecef;
    border-radius: 999px;
    overflow: hidden;
}

.bar-fill {
    height: 100%;
    background: #f2c94c;
    border-radius: 999px;
}

.bar-stars {
    font-size: 13px;
    color: #f2c94c;
    letter-spacing: 1px;
}

.bar-meta {
    color: #666;
    font-size: 13px;
    text-align: right;
}

.fade-out {
    opacity: 0;
    transition: opacity 0.15s ease;
}

.fade-in {
    opacity: 1;
    transition: opacity 0.2s ease;
}

@media (max-width: 900px) {
    .reviews-summary {
        grid-template-columns: 1fr;
        justify-items: center;
    }

    .reviews-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 600px) {
    .reviews-shell {
        padding: 0;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
        padding: 0 0;
    }

    .review-card {
        border-radius: 10px;
        margin: 0;
    }

    .reviews-pagination {
        padding: 0;
        margin-top: 14px;
    }
}

/* Mobile refinements */
@media (max-width: 768px) {
    .hero-figure {
        min-height: 260px;
        aspect-ratio: 4 / 5;
        max-width: none;
    }

    .product-showcase,
    .product-detail-preview,
    .related-products {
        padding: 32px 16px;
    }

    .detail-layout {
        gap: 24px;
    }

    .detail-image {
        min-height: 300px;
    }

    .detail-info h2 {
        font-size: 26px;
    }

    .detail-price {
        font-size: 24px;
    }

    .section-header h2 {
        font-size: 24px;
    }

    .reviews-shell {
        padding: 0 16px;
    }

    .reviews-section {
        padding: 48px 0 0px;
    }

    .review-card {
        padding: 14px;
    }

    .product-thumb {
        min-height: 140px;
    }
}

