/* ===================== RESET & TOKENS ===================== */

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --bg: #f8f6f0;
    --bg-alt: #f1efe6;
    --ink: #16160f;
    --ink-soft: #5a5b52;
    --green: #225c4d;
    --green-light: #6f7d4f;
    --dark-bg: #14150f;
    --dark-bg-2: #1a1c14;
    --line: #e2ded0;
    --white: #ffffff;
    --font-serif: 'Libre Baskerville', Georgia, serif;
    --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    --header-h: 84px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    color: var(--ink);
    background: var(--bg);
    line-height: 1.5;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

button {
    font-family: 'Plus Jakarta Sans';
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-serif);
    font-weight: 500;
    line-height: 1.1;
}


/* ===================== SHARED ===================== */

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--green);
    margin-bottom: 18px;
}

.eyebrow .leaf-ico {
    width: 14px;
    height: 14px;
}

.eyebrow.center {
    justify-content: center;
    width: 100%;
}

.eyebrow.light {
    color: #a9b98a;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 28px;
    border-radius: 999px;
    font-size: 0.92rem;
    font-weight: 600;
    border: 1.5px solid transparent;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.2s ease;
    font-family: 'Plus Jakarta Sans';
}

.btn .arrow {
    width: 15px;
    height: 15px;
}

.btn-dark {
    background: var(--ink);
    color: var(--white);
}

.btn-dark:hover {
    background: #000;
}

.btn-outline {
    background: transparent;
    border-color: var(--ink);
    color: var(--ink);
}

.btn-outline:hover {
    background: var(--ink);
    color: var(--white);
}

.btn-green {
    background: var(--green);
    color: var(--white);
}

.btn-green:hover {
    background: #363f26;
}

.btn-outline-light {
    background: transparent;
    border-color: rgba(255, 255, 255, 0.35);
    color: var(--white);
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.12);
}

.btn-sm {
    padding: 11px 22px;
    font-size: 0.85rem;
}

.round-arrow {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid var(--line);
    background: var(--white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--ink);
    transition: background 0.2s ease;
}

.round-arrow:hover {
    background: var(--bg-alt);
}

.round-arrow svg {
    width: 16px;
    height: 16px;
}

.carousel-arrows {
    display: flex;
    gap: 10px;
}

.section-head {
    max-width: 1280px;
    margin: 0 auto 44px;
    padding: 0 48px;
}

.section-head.centered {
    text-align: center;
    position: relative;
}

.section-head.centered .carousel-arrows {
    position: absolute;
    top: 4px;
    right: 48px;
}

.section-head.left {
    text-align: left;
    position: relative;
}

.section-head.left .carousel-arrows {
    position: absolute;
    top: 4px;
    right: 48px;
}

.section-head.split {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: wrap;
    gap: 20px;
}

.products-head-right {
    display: flex;
    align-items: center;
    gap: 24px;
}

.view-all {
    font-weight: 600;
    font-size: 0.92rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.view-all .arrow {
    width: 14px;
    height: 14px;
}

section h2 {
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    margin-bottom: 16px;
}


/* ===================== HEADER ===================== */

.site-header {
    background: rgba(248, 246, 240, 0.62);
    background: transparent;
    /* backdrop-filter: blur(12px) saturate(1.1); */
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    border-bottom: 1px solid transparent;
    transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.site-header.scrolled {
    background: var(--bg);
    border-bottom-color: var(--line);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

.header-inner {
    width: 100%;
    max-width: 100%;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 18px 48px;
    gap: 32px;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 42px;
    width: auto;
    display: block;
}

.main-nav ul {
    display: flex;
    gap: 30px;
}

.main-nav li {
    position: relative;
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-row {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-drawer-head,
.dropdown-toggle,
.section-icon,
.item-icon,
.item-chev,
.nav-drawer-promo {
    display: none;
}

.main-nav a {
    font-size: 0.92rem;
    font-weight: 500;
    white-space: nowrap;
}

.main-nav .chev {
    width: 13px;
    height: 13px;
    opacity: 0.6;
}

.dropdown-panel {
    position: absolute;
    top: calc(100% + 18px);
    left: -16px;
    min-width: 240px;
    background: var(--white);
    border-radius: 14px;
    box-shadow: 0 20px 44px rgba(0, 0, 0, 0.12);
    padding: 10px;
    display: flex;
    flex-direction: column;
    gap: 2px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s;
    z-index: 50;
}

.has-dropdown:hover .dropdown-panel {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-panel a {
    padding: 9px 12px;
    border-radius: 8px;
    font-size: 0.86rem;
    font-weight: 500;
    white-space: nowrap;
}

.dropdown-panel a:hover {
    background: var(--bg-alt);
}

.dropdown-panel a.dropdown-highlight {
    color: var(--green);
    font-weight: 700;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 14px;
}

.icon-btn {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: transparent;
    border: none;
    cursor: pointer;
    color: var(--ink);
    position: relative;
}

.icon-btn:hover {
    background: var(--bg-alt);
}

.icon-btn svg {
    width: 19px;
    height: 19px;
}

.cart-badge {
    position: absolute;
    top: 2px;
    right: 2px;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: var(--ink);
    color: var(--white);
    font-size: 0.6rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-badge-green {
    background: #5a8a3e;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--ink);
}

.nav-close {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--ink);
    padding: 0;
}


/* ===================== HERO ===================== */

.hero {
    position: relative;
    min-height: 600px;
    min-height: max(600px, 100svh);
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg, rgba(248, 246, 240, 0.88) 0%, rgba(248, 246, 240, 0) 142px), linear-gradient(90deg, var(--bg) 0%, var(--bg) 8%, rgba(248, 246, 240, 0.82) 20%, rgba(248, 246, 240, 0.35) 35%, rgba(248, 246, 240, 0) 64%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    padding: calc(60px + var(--header-h, 84px)) 48px 60px;
}

.hero-text {
    max-width: 560px;
}

.hero-title {
    font-size: clamp(2.6rem, 5vw, 4.2rem);
    font-weight: 500;
}

.hero-sub {
    font-family: var(--font-serif);
    color: var(--green);
    font-size: 1.3rem;
    margin: 18px 0 14px;
}

.hero-desc {
    color: var(--ink-soft);
    font-size: 0.98rem;
    max-width: 420px;
    margin-bottom: 32px;
}

.hero-btns {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.stat-bar-wrap {
    display: flex;
    justify-content: center;
    padding: 0 48px;
    margin-top: -34px;
    position: relative;
    z-index: 5;
}

.stat-bar {
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    display: flex;
    max-width: 900px;
    width: 100%;
    padding: 24px 10px;
}

.stat-item {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 0 20px;
    font-size: 0.85rem;
    font-weight: 600;
    border-right: 1px solid var(--line);
    text-align: left;
}

.stat-item:last-child {
    border-right: none;
}

.stat-item svg {
    width: 26px;
    height: 26px;
    flex-shrink: 0;
    color: var(--green);
    stroke-width: 1.4;
}


/* ===================== PHILOSOPHY ===================== */

.philosophy {
    max-width: 1280px;
    margin: 130px auto 0;
    padding: 0 48px;
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 70px;
    align-items: center;
}

.philosophy-images {
    display: grid;
    grid-template-columns: 1.5fr 1.5fr;
    grid-template-rows: 1fr 1fr;
    gap: 6px;
    height: 480px;
    border-radius: 20px;
    overflow: hidden;
}

.philosophy-images .img-lg {
    grid-row: 1 / span 2;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.philosophy-images .img-sm {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.philosophy-content h2 {
    margin-bottom: 18px;
}

.section-desc {
    color: var(--ink-soft);
    max-width: 480px;
    margin-bottom: 36px;
}

.process-flow {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    width: 76px;
}

.process-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 1.5px solid #225c4d;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green);
    background: #ffffff;
}

.process-icon svg {
    width: 22px;
    height: 22px;
}

.process-step span {
    font-size: 0.78rem;
    font-weight: 600;
    text-align: center;
}

.process-arrow {
    width: 24px;
    height: 16px;
    color: #16160f;
    margin-top: 20px;
    flex-shrink: 0;
}


/* ===================== SUPPORT ROW ===================== */

.support-section {
    padding: 130px 0 0;
}

.support-row {
    display: flex;
    gap: 10px;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 48px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
}

.support-row::-webkit-scrollbar {
    display: none;
}

.support-card {
    display: block;
    position: relative;
    flex: 0 0 238px;
    height: 310px;
    border-radius: 16px;
    overflow: hidden;
}

.support-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.support-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 55%, rgb(0 0 0 / 60%) 100%);
}

.support-icon {
    position: absolute;
    top: 12px;
    left: 12px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    color: var(--ink);
}

.support-icon svg {
    width: 15px;
    height: 15px;
}

.support-label {
    position: absolute;
    bottom: 12px;
    left: 12px;
    right: 12px;
    color: #ffffff;
    font-weight: 700;
    font-size: 0.82rem;
    line-height: 1.25;
    z-index: 2;
}


/* ===================== ECOSYSTEM ===================== */

.ecosystem-section {
    padding: 130px 0 0;
}

.ecosystem-grid {
    max-width: 1280px;
    margin: 0 auto 44px;
    padding: 0 48px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 36px 20px;
}

.eco-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    width: 110px;
    text-align: center;
}

.eco-circle {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    border: 1.5px solid #225c4d;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: #225c4d;
}

.eco-circle svg {
    width: 26px;
    height: 26px;
}

.eco-item span {
    font-size: 0.78rem;
    font-weight: 600;
}

.eco-cta {
    text-align: center;
}


/* ===================== PRODUCTS ===================== */

.products-section {
    padding: 130px 0 0;
}

.products-row {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 48px;
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
}

.products-row::-webkit-scrollbar {
    display: none;
}

.product-card {
    flex: 0 0 227px;
    background: #ffffff;
    border-radius: 18px;
    padding: 18px;
    display: flex;
    flex-direction: column;
}

.product-img {
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 16px;
    aspect-ratio: 1/1.05;
}

.product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-card h3 {
    font-size: 1rem;
    font-weight: 600;
    font-family: var(--font-sans);
    margin-bottom: 4px;
}

.product-tag {
    font-size: 0.72rem;
    color: var(--ink-soft);
    text-transform: none;
    letter-spacing: 0.01em;
    margin-bottom: 14px;
    line-height: 1.4;
}

.product-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-top: auto;
}

.price {
    font-weight: 700;
    font-size: 0.8rem;
}

.add-btn {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--ink);
    color: var(--white);
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    transition: background 0.2s ease, transform 0.2s ease;
}

.add-btn:hover {
    background: #000;
}

.add-btn.added {
    background: var(--green);
    transform: scale(1.12);
}

.cart-badge.pulse {
    animation: cart-badge-pulse 0.5s ease;
}

.cart-add-btn.pulse {
    animation: cart-badge-pulse 0.35s ease;
}

@keyframes cart-badge-pulse {
    0% { transform: scale(1); }
    35% { transform: scale(1.45); }
    100% { transform: scale(1); }
}

/* ===================== TOAST ===================== */

.toast-wrap {
    position: fixed;
    bottom: 24px;
    right: 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 999;
}

.toast {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--ink);
    color: var(--white);
    padding: 14px 20px;
    border-radius: 12px;
    font-size: 0.86rem;
    font-weight: 600;
    font-family: 'Plus Jakarta Sans', Arial, Helvetica, sans-serif;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
    animation: toastIn 0.25s ease;
}

.toast svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    fill: none;
    stroke: var(--green);
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

@keyframes toastIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.toast.fade-out {
    animation: toastOut 0.3s ease forwards;
}

@keyframes toastOut {
    to { opacity: 0; transform: translateY(10px); }
}


/* ===================== INGREDIENTS (dark) ===================== */

.ingredients-section {
    margin-top: 130px;
    background: var(--dark-bg);
    color: var(--white);
    padding: 90px 0;
}

.ingredients-section .section-head {
    max-width: 1280px;
    margin: 0 auto 44px;
    padding: 0 48px;
}

.ingredients-section h2 {
    color: var(--white);
}

.ingredients-row {
    max-width: 1280px;
    margin: 0 auto 50px;
    padding: 0 48px;
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 20px;
}

.ingredient-card img {
    border-radius: 14px;
    aspect-ratio: 1/1;
    object-fit: cover;
    margin-bottom: 14px;
}

.ingredient-card h4 {
    font-family: var(--font-sans);
    font-size: 0.92rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.ingredient-card p {
    font-size: 0.76rem;
    color: #a3a396;
}


/* ===================== MFG SPLIT ===================== */

.mfg-split {
    display: flex;
    flex-wrap: wrap;
}

.mfg-left {
    flex: 1 1 320px;
    background: var(--dark-bg-2);
    color: var(--white);
    padding: 70px 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.mfg-left h2 {
    color: var(--white);
    font-size: 2rem;
    margin-bottom: 10px;
}

.mfg-subhead {
    font-family: var(--font-serif);
    color: #a9b98a;
    font-size: 1.05rem;
    margin-bottom: 18px;
}

.mfg-left p {
    color: #b7b8ab;
    margin-bottom: 30px;
    max-width: 340px;
}

.mfg-right {
    flex: 2 1 600px;
    background: var(--white);
    padding: 70px 48px;
}

.mfg-steps {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 24px;
    padding-bottom: 44px;
    border-bottom: 1px solid var(--line);
    margin-bottom: 44px;
}

.mfg-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    width: 90px;
    text-align: center;
}

.mfg-step svg {
    width: 26px;
    height: 26px;
    color: var(--green);
}

.mfg-step span {
    font-size: 0.76rem;
    font-weight: 600;
}

.mfg-stats {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 24px;
    padding-bottom: 44px;
    border-bottom: 1px solid var(--line);
    margin-bottom: 32px;
}

.mfg-stat {
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex: 1 1 160px;
    max-width: 220px;
}

.mfg-stat strong {
    font-family: var(--font-serif);
    font-size: 1.9rem;
    color: var(--green);
    font-weight: 600;
}

.mfg-stat span {
    font-size: 0.78rem;
    color: var(--ink-soft);
    line-height: 1.4;
}

.trusted-label {
    text-align: center;
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    color: var(--ink-soft);
    font-weight: 600;
    margin-bottom: 22px;
}

.trusted-logos {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
}

.trusted-logos span {
    display: inline-flex;
    align-items: center;
    font-weight: 600;
    font-size: 0.78rem;
    padding: 8px 16px;
    border: 1px solid #c1c0bc;
    border-radius: 999px;
    color: #191a18;
    background: #f8f6f0;
}


/* ===================== FOOTER ===================== */

.site-footer {
    background: var(--dark-bg);
    color: #b5b6a9;
    font-size: 0.86rem;
}

.site-footer h3,
.site-footer h4 {
    color: var(--white);
}

.site-footer a:hover {
    color: var(--white);
}


/* Newsletter band */

.footer-newsletter {
    max-width: 1280px;
    margin: 0 auto;
    padding: 56px 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-newsletter-text h3 {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    font-weight: 500;
    margin-bottom: 8px;
}

.footer-newsletter-text p {
    max-width: 380px;
}

.newsletter-form {
    display: flex;
    gap: 10px;
    flex: 0 0 auto;
    flex-wrap: wrap;
}

.newsletter-form input {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    padding: 14px 20px;
    color: var(--white);
    font-family: var(--font-sans);
    font-size: 0.9rem;
    min-width: 260px;
}

.newsletter-form input::placeholder {
    color: #8b8c80;
}

.newsletter-form input:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.4);
}

.newsletter-note {
    font-size: 0.78rem;
    color: #8b8c80;
    margin-top: 10px;
}


/* Main columns */

.footer-main {
    max-width: 1280px;
    margin: 0 auto;
    padding: 56px 48px;
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1.2fr 1fr;
    gap: 32px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-col h4 {
    color: var(--white);
    font-family: var(--font-sans);
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 700;
    margin-bottom: 18px;
}

.footer-col a {
    display: block;
    margin-bottom: 12px;
    font-size: 0.86rem;
}

.footer-highlight {
    color: #a9b98a;
    font-weight: 700;
}

.footer-logo {
    display: inline-block;
    margin-bottom: 16px;
}

.footer-logo-img {
    height: 50px;
    width: auto;
    display: block;
    filter: brightness(0) invert(1);
}

.footer-desc {
    max-width: 300px;
    margin-bottom: 22px;
    line-height: 1.6;
}

.footer-social {
    display: flex;
    gap: 10px;
    margin-bottom: 12px;
}

.footer-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.footer-social svg {
    width: 16px;
    height: 16px;
}

.footer-social a:hover {
    background: rgba(255, 255, 255, 0.1);
}

.footer-handle {
    font-size: 0.8rem;
    color: #8b8c80;
}

.footer-contact p {
    margin-bottom: 14px;
    line-height: 1.5;
}


/* Trust badges */

.footer-badges {
    max-width: 1280px;
    margin: 0 auto;
    padding: 28px 48px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-badges span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.78rem;
    font-weight: 600;
    color: #c9cabd;
    padding: 9px 16px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 999px;
}

.footer-badges svg {
    width: 15px;
    height: 15px;
    color: #a9b98a;
}


/* Compliance */

.footer-compliance {
    max-width: 1280px;
    margin: 0 auto;
    padding: 28px 48px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-compliance p {
    margin-bottom: 6px;
    font-size: 0.78rem;
    line-height: 1.6;
}

.footer-tagline {
    font-family: var(--font-serif);
    color: var(--white);
    font-size: 1.05rem;
    margin-bottom: 14px;
}

.footer-disclaimer {
    color: #74756a;
    font-size: 0.72rem !important;
    margin-top: 10px;
}


/* Bottom bar */

.footer-bottom {
    max-width: 1280px;
    margin: 0 auto;
    padding: 22px 48px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 0.78rem;
}

.footer-links {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}


/* ===================== INNER PAGES (account / commerce) ===================== */

body.inner-page .site-header {
    background: var(--bg);
    border-bottom-color: var(--line);
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.05);
}

.page-banner {
    background: var(--bg-alt);
    padding: calc(var(--header-h, 84px) + 44px) 48px 40px;
}

.page-banner-inner {
    max-width: 1280px;
    margin: 0 auto;
}

.breadcrumb {
    font-size: 0.8rem;
    color: var(--ink-soft);
    margin-bottom: 12px;
}

.breadcrumb a {
    color: var(--ink-soft);
}

.breadcrumb a:hover {
    color: var(--ink);
}

.breadcrumb .sep {
    margin: 0 8px;
    opacity: 0.5;
}

.page-banner h1 {
    font-size: clamp(1.8rem, 3vw, 2.4rem);
}

.page-section {
    max-width: 1280px;
    margin: 0 auto;
    padding: 80px 48px;
}


/* Forms (shared: login, checkout) */

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    font-size: 0.82rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.form-row {
    display: flex;
    gap: 16px;
}

.form-row .form-group {
    flex: 1;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="password"],
.form-group input[type="tel"],
.form-group input[type="number"],
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 13px 16px;
    border: 1px solid var(--line);
    border-radius: 10px;
    font-family: var(--font-sans);
    font-size: 0.92rem;
    color: var(--ink);
    background: var(--white);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
    line-height: 1.6;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--green);
}

.form-note {
    font-size: 0.8rem;
    color: var(--ink-soft);
}

.form-note a {
    color: var(--green);
    font-weight: 600;
}

.form-check {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.86rem;
    margin-bottom: 18px;
}


/* Auth page */

.auth-wrap {
    max-width: 1100px;
    margin: 0 auto;
    padding: calc(var(--header-h, 84px) + 70px) 48px 120px;
    display: flex;
    gap: 60px;
    align-items: flex-start;
    flex-wrap: wrap;
}

.auth-card {
    flex: 1 1 400px;
    max-width: 440px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 40px;
}

.auth-tabs {
    display: flex;
    gap: 4px;
    margin-bottom: 30px;
    background: var(--bg-alt);
    border-radius: 999px;
    padding: 4px;
}

.auth-tab {
    flex: 1;
    text-align: center;
    padding: 11px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.86rem;
    cursor: pointer;
    border: none;
    background: none;
    color: var(--ink-soft);
    font-family: 'Plus Jakarta Sans';
}

.auth-tab.active {
    background: var(--ink);
    color: var(--white);
}

.auth-panel {
    display: none;
}

.auth-panel.active {
    display: block;
}

.auth-panel .btn {
    width: 100%;
    justify-content: center;
    margin: 6px 0 16px;
}

.auth-side {
    flex: 1 1 340px;
    background: var(--dark-bg);
    color: var(--white);
    border-radius: 20px;
    padding: 44px;
}

.auth-side h3 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    margin-bottom: 16px;
}

.auth-side p {
    color: #b7b8ab;
    margin-bottom: 24px;
}

.auth-perks {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.auth-perk {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.auth-perk svg {
    width: 20px;
    height: 20px;
    color: #a9b98a;
    flex-shrink: 0;
    margin-top: 2px;
}

.auth-perk strong {
    display: block;
    font-size: 0.9rem;
    margin-bottom: 2px;
}

.auth-perk span {
    font-size: 0.82rem;
    color: #9d9e91;
}


/* Account layout (dashboard / orders / wishlist) */

.account-layout {
    max-width: 1280px;
    margin: 0 auto;
    padding: calc(var(--header-h, 84px) + 50px) 48px 110px;
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 40px;
    align-items: start;
}

.account-sidebar {
    background: #ffffff;
    border-radius: 18px;
    padding: 22px;
}

.account-sidebar-profile {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 6px 8px 20px;
    margin-bottom: 14px;
    border-bottom: 1px solid var(--line);
}

.account-avatar {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    border-radius: 50%;
    background: var(--green);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-serif);
    font-weight: 600;
    font-size: 1.1rem;
}

.account-sidebar-profile strong {
    display: block;
    font-size: 0.9rem;
}

.account-sidebar-profile span {
    font-size: 0.76rem;
    color: var(--ink-soft);
}

.account-sidebar a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.88rem;
    color: var(--ink-soft);
    margin-bottom: 4px;
}

.account-sidebar a svg {
    width: 17px;
    height: 17px;
}

.account-sidebar a:hover {
    background: var(--white);
    color: var(--ink);
}

.account-sidebar a.active,
.account-sidebar a.active:hover {
    background: #f3f5ef;
    color: var(--green);
    border-left: 3px solid var(--green);
    padding-left: 11px;
}

.account-sidebar-thanks {
    margin-top: 18px;
    background: #f3f5ef;
    border-radius: 14px;
    padding: 20px 18px;
    text-align: center;
}

.account-sidebar-thanks-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    color: var(--green);
    line-height: 52px;
}

.account-sidebar-thanks-icon svg {
    width: 20px;
    height: 20px;
}

.account-sidebar-thanks strong {
    display: block;
    font-family: var(--font-serif);
    font-size: 0.95rem;
    font-weight: 500;
    margin-bottom: 14px;
}

.account-sidebar-heart {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid var(--line);
    background: var(--white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--green);
    cursor: pointer;
}

.account-sidebar-heart svg {
    width: 14px;
    height: 14px;
}

.account-content h2 {
    font-size: 1.6rem;
    margin-bottom: 6px;
}

.account-content>.section-desc {
    margin-bottom: 32px;
}

.dash-stats {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.dash-stat {
    flex: 1;
    min-width: 150px;
    background: #ffffff;
    border-radius: 16px;
    padding: 22px;
}

.dash-stat-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.dash-stat-icon svg {
    width: 19px;
    height: 19px;
}

.dash-stat-icon-orders {
    background: #dcece0;
    color: #225c4d;
}

.dash-stat-icon-wishlist {
    background: #fbe2e6;
    color: #c23b57;
}

.dash-stat-icon-points {
    background: #fdf0d6;
    color: #b9860b;
}

.dash-stat-icon-subs {
    background: #e6e8f9;
    color: #4c4fb0;
}

.dash-stat strong {
    font-family: var(--font-serif);
    font-size: 2rem;
    color: var(--ink);
    display: block;
    margin-bottom: 4px;
    font-weight: 600;
}

.dash-stat-label {
    display: block;
    font-size: 0.82rem;
    color: var(--ink-soft);
    margin-bottom: 14px;
}

.dash-stat-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--green);
}

.dash-stat-link svg {
    width: 12px;
    height: 12px;
}

.account-block {
    margin-bottom: 44px;
}

.account-block-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 18px;
}

.account-block-head h3 {
    font-size: 1.1rem;
    font-family: var(--font-sans);
    font-weight: 700;
}

.account-block-head a {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--green);
}

.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.info-card {
    position: relative;
    background: #ffffff;
    border-radius: 16px;
    padding: 22px;
}

.info-card h4 {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--ink-soft);
    margin-bottom: 10px;
}

.info-card p {
    font-size: 0.92rem;
    line-height: 1.6;
}

.info-card a {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--green);
    display: inline-block;
    margin-top: 10px;
}

.info-card-form {
    margin-top: 4px;
}

.info-card-form .form-group {
    margin-bottom: 14px;
}

.info-card-form .form-row {
    display: flex;
    gap: 12px;
}

.info-card-form label {
    display: block;
    font-size: 0.76rem;
    font-weight: 600;
    color: var(--ink-soft);
    margin-bottom: 6px;
}

.info-card-form input {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    font-size: 0.86rem;
    font-family: var(--font-sans);
    background: var(--white);
}

.info-card-form input:focus {
    outline: none;
    border-color: var(--green);
    box-shadow: 0 0 0 3px rgba(34, 92, 77, 0.12);
}

.info-card-form-error {
    display: none;
    color: #b3261e;
    font-size: 0.8rem;
    margin-bottom: 10px;
}

.info-card-form-status {
    display: none;
    align-items: center;
    gap: 8px;
    color: var(--green);
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.info-card-form-status .spinner {
    width: 13px;
    height: 13px;
    border: 2px solid rgba(34, 92, 77, 0.25);
    border-top-color: var(--green);
    border-radius: 50%;
    flex: none;
    animation: spin 0.7s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.info-card-form-actions {
    display: flex;
    align-items: center;
    gap: 14px;
}

.info-card-form-actions .btn {
    width: auto;
}

.info-card-cancel-btn {
    background: none;
    border: none;
    padding: 0;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--ink-soft);
    cursor: pointer;
    text-decoration: underline;
    font-family: 'Plus Jakarta Sans';
}

.info-card-cancel-btn:hover {
    color: var(--ink);
}

.otp-link-btn {
    background: none;
    border: none;
    padding: 0;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--ink-soft);
    cursor: pointer;
    text-decoration: underline;
    font-family: var(--font-sans);
}

.otp-link-btn:hover {
    color: var(--ink);
}

.otp-link-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.otp-step-note {
    font-size: 0.86rem;
    color: var(--ink-soft);
    line-height: 1.6;
    margin-bottom: 16px;
}

.otp-step-note strong {
    color: var(--ink);
}

#otp-code,
#fp-code {
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 0.4em;
    text-align: center;
}


/* Addresses page */

.address-toolbar {
    margin-bottom: 24px;
}

.address-toolbar .btn {
    width: auto;
}

.address-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 20px;
}

.address-card {
    position: relative;
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 22px;
}

.address-default-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #dcece0;
    color: var(--green);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    padding: 4px 10px;
    border-radius: 999px;
}

.address-card h4 {
    font-family: var(--font-sans);
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.address-card p {
    font-size: 0.88rem;
    color: var(--ink-soft);
    line-height: 1.6;
    margin-bottom: 16px;
}

.address-card-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 16px;
}

.address-card-actions button {
    background: none;
    border: none;
    padding: 0;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--green);
    cursor: pointer;
    text-decoration: underline;
    font-family: 'Plus Jakarta Sans';
}

.address-card-actions .address-delete-btn {
    color: #b3261e;
}

.address-form-overlay {
    position: fixed;
    inset: 0;
    background: rgba(22, 22, 15, 0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    z-index: 1000;
}

.address-form-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 32px;
    width: 100%;
    max-width: 460px;
    max-height: 90vh;
    overflow-y: auto;
}

.address-form-card h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.address-form-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 6px;
}

.address-form-actions .btn {
    width: auto;
}


/* Order table */

.order-table {
    width: 100%;
    border-collapse: collapse;
}

.order-table th {
    text-align: left;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--ink-soft);
    padding-bottom: 14px;
    border-bottom: 1px solid var(--line);
    font-weight: 700;
}

.order-table td {
    padding: 18px 14px 18px 0;
    border-bottom: 1px solid var(--line);
    font-size: 0.88rem;
    vertical-align: middle;
}

.order-table tr:last-child td {
    border-bottom: none;
}

.order-products {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--ink-soft);
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 700;
    white-space: nowrap;
}

.status-delivered {
    background: #e3f0da;
    color: #3d5c2a;
}

.status-shipped {
    background: #dfe9f9;
    color: #2a4a7a;
}

.status-processing {
    background: #fbeed9;
    color: #8a5a1a;
}

.status-new {
    background: #dde7fb;
    color: #2a4a9e;
}

.status-cancelled {
    background: #fbe2e2;
    color: #9e2a2a;
}

.order-table a.view-order {
    font-weight: 600;
    color: var(--green);
    font-size: 0.85rem;
}


/* Order History (redesigned) */

.oh-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 24px;
    margin-bottom: 0;
}

.oh-hero-art {
    position: relative;
    width: 140px;
    height: 100px;
    flex: none;
    display: none;
}

@media (min-width: 900px) {
    .oh-hero-art {
        display: block;
    }
}

.oh-hero-art::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, #eef1e6 0%, rgba(238, 241, 230, 0) 72%);
}

.oh-box-circle {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--white);
    box-shadow: 0 10px 24px rgba(20, 30, 15, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green);
}

.oh-box-circle svg {
    width: 30px;
    height: 30px;
}

.oh-leaf {
    position: absolute;
    color: var(--green-light);
    opacity: 0.55;
    top: 6px;
}

.oh-leaf svg {
    width: 38px;
    height: 38px;
}

.oh-leaf-left {
    left: -4px;
    transform: rotate(-25deg);
}

.oh-leaf-right {
    right: -4px;
    transform: rotate(25deg) scaleX(-1);
}

.oh-toolbar {
    display: flex;
    gap: 14px;
    margin-bottom: 22px;
    flex-wrap: wrap;
}

.oh-select {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 11px 16px;
    color: var(--ink-soft);
}

.oh-select svg {
    width: 16px;
    height: 16px;
    flex: none;
}

.oh-select select {
    border: none;
    background: transparent;
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--ink);
    appearance: none;
    cursor: pointer;
}

.oh-select select:focus {
    outline: none;
}

.oh-search {
    flex: 1;
    min-width: 220px;
    max-width: 360px;
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 11px 16px;
}

.oh-search svg {
    width: 16px;
    height: 16px;
    color: var(--ink-soft);
    flex: none;
}

.oh-search input {
    border: none;
    background: transparent;
    font-family: var(--font-sans);
    font-size: 0.85rem;
    width: 100%;
    color: var(--ink);
}

.oh-search input:focus {
    outline: none;
}

.oh-table-card {
    background: var(--white);
    border-radius: 18px;
    border: 1px solid var(--line);
    overflow: hidden;
}

.oh-table-scroll {
    overflow-x: auto;
}

.oh-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 760px;
}

.oh-table thead tr {
    background: linear-gradient(120deg, #1f3d31, #0d1911);
}

.oh-table th {
    text-align: left;
    color: var(--white);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 700;
    padding: 16px 18px;
    white-space: nowrap;
}

.oh-table td {
    padding: 16px 18px;
    border-bottom: 1px solid var(--line);
    font-size: 0.86rem;
    vertical-align: middle;
}

.oh-table tbody tr:last-child td {
    border-bottom: none;
}

.oh-table tbody tr:hover {
    background: #faf9f4;
}

.oh-order-id {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    white-space: nowrap;
}

.oh-copy-btn {
    width: 22px;
    height: 22px;
    border-radius: 6px;
    border: none;
    background: transparent;
    color: var(--ink-soft);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex: none;
}

.oh-copy-btn:hover {
    background: var(--bg-alt);
    color: var(--ink);
}

.oh-copy-btn.copied {
    color: var(--green);
}

.oh-copy-btn svg {
    width: 13px;
    height: 13px;
}

.oh-date {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--ink-soft);
    white-space: nowrap;
}

.oh-date svg {
    width: 16px;
    height: 16px;
    flex: none;
}

.oh-date strong {
    display: block;
    color: var(--ink);
    font-weight: 600;
    font-size: 0.86rem;
}

.oh-date span {
    font-size: 0.74rem;
}

.oh-items strong {
    display: block;
    font-weight: 600;
    font-size: 0.86rem;
}

.oh-items span {
    font-size: 0.74rem;
    color: var(--ink-soft);
}

.status-badge svg {
    width: 13px;
    height: 13px;
}

.oh-total {
    font-weight: 700;
    white-space: nowrap;
}

.oh-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.oh-view-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: 8px 14px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--ink);
    white-space: nowrap;
}

.oh-view-btn svg {
    width: 14px;
    height: 14px;
}

.oh-view-btn:hover {
    border-color: var(--green);
    color: var(--green);
}

.oh-chevron-btn {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    border: 1px solid var(--line);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--ink-soft);
    flex: none;
}

.oh-chevron-btn svg {
    width: 14px;
    height: 14px;
}

.oh-chevron-btn:hover {
    border-color: var(--green);
    color: var(--green);
}

.oh-no-results {
    padding: 40px 18px;
    text-align: center;
    color: var(--ink-soft);
    font-size: 0.88rem;
}

.oh-empty-cell {
    padding: 40px 18px !important;
    text-align: center;
    color: var(--ink-soft);
    font-size: 0.88rem;
}

.oh-empty-cell a {
    color: var(--green);
    font-weight: 600;
}

.oh-pagination {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 18px;
    flex-wrap: wrap;
    gap: 12px;
    border-top: 1px solid var(--line);
}

.oh-pagination-info {
    font-size: 0.8rem;
    color: var(--ink-soft);
}

.oh-pagination-controls {
    display: flex;
    align-items: center;
    gap: 6px;
}

.oh-page-btn {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    border: 1px solid var(--line);
    background: var(--white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--ink-soft);
    cursor: pointer;
    font-size: 0.8rem;
    font-weight: 600;
}

.oh-page-btn svg {
    width: 14px;
    height: 14px;
}

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

.oh-page-btn.active {
    background: var(--green);
    border-color: var(--green);
    color: var(--white);
}

.oh-page-btn:not(:disabled):not(.active):hover {
    border-color: var(--green);
    color: var(--green);
}

@media (max-width: 720px) {
    .oh-search {
        margin-left: 0;
        max-width: none;
    }
}

.oh-table-light .oh-table thead tr {
    background: #f7f6f1;
}

.oh-table-light .oh-table th {
    color: var(--ink-soft);
}

.oh-view-pill {
    display: inline-flex;
    align-items: center;
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 7px 18px;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--ink);
    white-space: nowrap;
}

.oh-view-pill:hover {
    border-color: var(--green);
    color: var(--green);
}

.info-card-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #f3f5ef;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green);
    margin-bottom: 14px;
}

.info-card-icon svg {
    width: 16px;
    height: 16px;
}


/* Wishlist grid reuses .product-card; add remove button */

.wishlist-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
}

.wishlist-grid .product-card {
    position: relative;
    flex: none;
}

.wishlist-remove {
    position: absolute;
    top: 30px;
    right: 30px;
    z-index: 2;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--white);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.wishlist-grid .product-foot {
    gap: 8px;
}

.wishlist-grid .btn-outline {
    width: 100%;
    justify-content: center;
}


/* Cart page */

.cart-layout {
    max-width: 1280px;
    margin: 0 auto;
    padding: 70px 48px 70px;
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 48px;
    align-items: start;
}

.cart-panel {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 20px;
    overflow: hidden;
}

.cart-panel-header {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 28px 28px 20px;
}

.cart-panel-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #dcece0;
    color: var(--green);
    display: flex;
    align-items: center;
    justify-content: center;
    flex: none;
}

.cart-panel-icon svg {
    width: 20px;
    height: 20px;
}

.cart-panel-header h2 {
    font-family: var(--font-sans);
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 3px;
}

.cart-panel-header p {
    font-size: 0.84rem;
    color: var(--ink-soft);
}

.cart-items {
    padding: 0 28px;
}

.cart-trust-row {
    display: flex;
    border-top: 1px solid var(--line);
}

.cart-trust-item {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 20px 24px;
}

.cart-trust-item svg {
    width: 22px;
    height: 22px;
    color: var(--green);
    flex: none;
}

.cart-trust-item strong {
    display: block;
    font-size: 0.84rem;
    font-weight: 700;
}

.cart-trust-item span {
    font-size: 0.76rem;
    color: var(--ink-soft);
}

.cart-item {
    display: flex;
    gap: 20px;
    padding: 22px 0;
    /* border-bottom: 1px solid var(--line); */
    align-items: center;
}

.cart-item:first-child {
    padding-top: 0;
}

.cart-item img {
    width: 96px;
    height: 96px;
    border-radius: 14px;
    object-fit: cover;
    flex-shrink: 0;
}

.cart-item-info {
    flex: 1;
}

.cart-item-info h4 {
    font-size: 1rem;
    margin-bottom: 4px;
}

.cart-item-info p {
    font-size: 0.8rem;
    color: var(--ink-soft);
    margin-bottom: 10px;
}

.cart-item-price {
    font-weight: 700;
    min-width: 70px;
    text-align: right;
}

.cart-item-remove {
    background: none;
    border: none;
    color: var(--ink-soft);
    font-size: 0.8rem;
    cursor: pointer;
    text-decoration: underline;
}

.qty-stepper {
    display: flex;
    align-items: center;
    border: 1px solid #225c4d;
    border-radius: 999px;
    width: fit-content;
    background: #dcece0;
}

.qty-stepper button {
    width: 30px;
    height: 30px;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    color: var(--ink);
}

.qty-stepper span {
    width: 28px;
    text-align: center;
    font-weight: 600;
    font-size: 0.88rem;
    color: #225c4d;
}

.summary-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 28px;
    position: sticky;
    top: calc(var(--header-h, 84px) + 24px);
}

.summary-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.summary-card-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #dcece0;
    color: var(--green);
    display: flex;
    align-items: center;
    justify-content: center;
    flex: none;
}

.summary-card-icon svg {
    width: 17px;
    height: 17px;
}

.summary-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 14px;
    font-size: 0.9rem;
    color: var(--ink-soft);
}

.summary-row.total {
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--ink);
    border-top: 1px solid var(--line);
    padding-top: 16px;
    margin-top: 6px;
}

.summary-row.total span:last-child {
    color: var(--green);
}

.summary-card .btn {
    width: 100%;
    justify-content: center;
    margin-top: 8px;
}

.summary-card .btn svg:not(.arrow) {
    flex: none;
}

.cart-secure-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 12px;
    font-size: 0.76rem;
    color: var(--ink-soft);
}

.cart-secure-note svg {
    width: 13px;
    height: 13px;
    color: var(--green);
}

.cart-empty-note {
    text-align: center;
    padding: 60px 20px;
    color: var(--ink-soft);
}


/* Checkout page */

.checkout-page-wrap {
    max-width: 1280px;
    margin: 0 auto;
    padding: 36px 48px 0;
}

.checkout-layout {
    padding-bottom: 110px;
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 48px;
    align-items: start;
}

.checkout-stepper {
    display: flex;
    align-items: center;
    margin-bottom: 44px;
}

.stepper-step {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.stepper-circle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1.5px solid var(--line);
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--ink-soft);
}

.stepper-circle svg {
    width: 14px;
    height: 14px;
}

.stepper-step span {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--ink-soft);
    white-space: nowrap;
}

.stepper-step.done .stepper-circle {
    background: var(--green);
    border-color: var(--green);
    color: var(--white);
}

.stepper-step.done span {
    color: var(--ink);
}

.stepper-step.active .stepper-circle {
    border-color: var(--green);
    color: var(--green);
}

.stepper-step.active span {
    color: var(--ink);
}

.stepper-line {
    flex: 1;
    height: 1px;
    background: var(--line);
    margin: 0 16px;
    min-width: 24px;
}

.stepper-line.done {
    background: var(--green);
}

.checkout-form {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 40px;
}

.checkout-section {
    margin-bottom: 36px;
    padding-bottom: 36px;
    border-bottom: 1px solid var(--line);
}

.checkout-section:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.checkout-section h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-sans);
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 22px;
    color: var(--ink);
}

.checkout-section h3 svg {
    width: 18px;
    height: 18px;
    color: var(--green);
    flex-shrink: 0;
}

input[type="radio"],
input[type="checkbox"] {
    accent-color: var(--green);
}

.shipping-option,
.payment-option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1.5px solid var(--line);
    border-radius: 12px;
    padding: 16px 18px;
    margin-bottom: 10px;
    cursor: pointer;
    transition: border-color 0.15s ease, background 0.15s ease;
}

.shipping-option:hover,
.payment-option:hover {
    border-color: #c9c4b2;
}

.shipping-option:has(input:checked),
.payment-option:has(input:checked) {
    border-color: var(--green);
    background: var(--bg-alt);
}

.shipping-option input,
.payment-option input {
    margin-right: 14px;
}

.shipping-option-info {
    flex: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.shipping-option-info em {
    font-style: normal;
    font-weight: 500;
    font-size: 0.82em;
    color: var(--ink-soft);
    margin-left: 8px;
}

.option-price,
.shipping-option-info span:last-child {
    font-weight: 700;
}

.input-icon-wrap {
    position: relative;
}

.input-icon-wrap svg {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    color: var(--ink-soft);
    pointer-events: none;
}

.input-icon-wrap input[type="text"] {
    padding-left: 46px;
}

.order-summary-items {
    margin-bottom: 20px;
}

.order-summary-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.order-summary-item img {
    width: 52px;
    height: 52px;
    border-radius: 10px;
    object-fit: cover;
    flex-shrink: 0;
}

.order-summary-item-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.order-summary-item-info span {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--ink);
}

.order-summary-item-info em {
    font-style: normal;
    font-size: 0.76rem;
    color: var(--ink-soft);
}

.order-summary-item-price {
    font-size: 0.85rem;
    font-weight: 700;
    flex-shrink: 0;
}


/* Order confirmation */

.confirmation-wrap {
    max-width: 640px;
    margin: 0 auto;
    padding: calc(var(--header-h, 84px) + 70px) 48px 80px;
    text-align: center;
}

.confirm-icon {
    width: 76px;
    height: 76px;
    border-radius: 50%;
    background: var(--green);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 26px;
}

.confirm-icon svg {
    width: 34px;
    height: 34px;
}

.confirmation-wrap h1 {
    font-size: 2rem;
    margin-bottom: 12px;
}

.confirmation-wrap>p {
    color: #000000;
    margin-bottom: 8px;
}

.confirm-details {
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 28px;
    margin: 36px 0;
    text-align: left;
}

.confirm-details-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 18px;
}

.confirm-details-head-title {
    display: flex;
    align-items: center;
    gap: 12px;
}

.confirm-details-head-title h5 {
    font-family: var(--font-serif);
    font-weight: 500;
    font-size: 1.05rem;
}

.confirm-invoice-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 8px 16px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--ink);
    font-family: 'Plus Jakarta Sans';
}

.confirm-invoice-btn svg {
    width: 14px;
    height: 14px;
}

.confirm-invoice-btn:hover {
    border-color: var(--green);
    color: var(--green);
}

.confirm-details-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid var(--line);
    font-size: 0.88rem;
}

.confirm-details-row:last-child {
    border-bottom: none;
}

.confirm-details-row .row-label {
    display: flex;
    align-items: center;
    gap: 10px;
}

.confirm-details-row .row-label-icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #dcece0;
    color: #225c4d;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: none;
}

.confirm-details-row .row-label-icon svg {
    width: 14px;
    height: 14px;
}

.confirm-details-row.total-row strong:last-child {
    color: var(--green);
    font-size: 1.05rem;
}

.confirm-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.confirm-help-icon {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: var(--bg-alt);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--green);
    margin-right: 4px;
}

.confirm-help-icon svg {
    width: 13px;
    height: 13px;
}


/* ===================== SCROLL-REVEAL ANIMATION ===================== */


/* Gated behind .js so content stays visible if JavaScript never runs */

.js .fade-in-up {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.js .fade-in-up.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-up.delay-1 {
    transition-delay: 0.08s;
}

.fade-in-up.delay-2 {
    transition-delay: 0.16s;
}

.fade-in-up.delay-3 {
    transition-delay: 0.24s;
}

.fade-in-up.delay-4 {
    transition-delay: 0.32s;
}

@media (prefers-reduced-motion: reduce) {
    .js .fade-in-up {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

.page-banner-sub {
    font-family: var(--font-serif);
    color: var(--green);
    font-size: 1.1rem;
    margin-top: 10px;
}


/* ===================== CUSTOMER CARE: FAQ ===================== */

.faq-search-wrap {
    max-width: 560px;
    margin: 0 auto 44px;
    position: relative;
}

.faq-search-wrap svg {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    color: var(--ink-soft);
}

.faq-search-wrap input {
    width: 100%;
    padding: 16px 20px 16px 50px;
    border-radius: 999px;
    border: 1.5px solid var(--line);
    font-family: var(--font-sans);
    font-size: 0.95rem;
    background: var(--white);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.faq-search-wrap input:focus {
    outline: none;
    border-color: var(--green);
    box-shadow: 0 0 0 4px rgba(69, 79, 49, 0.08);
}

.faq-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 50px;
}

.faq-tab {
    padding: 11px 22px;
    border-radius: 999px;
    border: 1.5px solid var(--line);
    background: var(--white);
    font-size: 0.86rem;
    font-weight: 600;
    color: var(--ink-soft);
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: var(--font-sans);
}

.faq-tab:hover {
    border-color: var(--green);
    color: var(--ink);
}

.faq-tab.active {
    background: var(--green);
    border-color: var(--green);
    color: var(--white);
}

.shop-benefit-banner {
    max-width: 700px;
    margin: 0 auto 44px;
    padding: 14px 22px;
    border-radius: 999px;
    background: var(--bg-alt);
    border: 1.5px solid var(--line);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
    font-size: 0.9rem;
    color: var(--ink-soft);
    text-align: center;
}
.shop-benefit-banner strong { color: var(--green); }
.shop-benefit-clear {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--ink-soft);
    text-decoration: underline;
    white-space: nowrap;
}
.shop-benefit-clear:hover { color: var(--green); }

.faq-list {
    max-width: 820px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.faq-category-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 700;
    color: var(--green);
    margin: 34px 0 6px;
}

.faq-list>.faq-category-label:first-child {
    margin-top: 0;
}

.faq-item {
    border: 1px solid var(--line);
    border-radius: 16px;
    background: var(--white);
    overflow: hidden;
    transition: border-color 0.2s ease;
}

.faq-item.open {
    border-color: var(--green);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 20px 24px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 600;
    color: var(--ink);
}

.faq-question .faq-icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1.5px solid var(--line);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}

.faq-question .faq-icon svg {
    width: 14px;
    height: 14px;
    color: var(--ink);
    transition: transform 0.3s ease;
}

.faq-item.open .faq-question .faq-icon {
    background: var(--green);
    border-color: var(--green);
}

.faq-item.open .faq-question .faq-icon svg {
    color: var(--white);
    transform: rotate(45deg);
}

.faq-answer-wrap {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-item.open .faq-answer-wrap {
    grid-template-rows: 1fr;
}

.faq-answer-inner {
    overflow: hidden;
}

.faq-answer {
    padding: 0 24px 22px;
    color: var(--ink-soft);
    font-size: 0.92rem;
    line-height: 1.7;
    max-width: 640px;
}

.faq-empty-note {
    text-align: center;
    padding: 40px;
    color: var(--ink-soft);
    display: none;
}

.faq-cta {
    max-width: 820px;
    margin: 60px auto 0;
    text-align: center;
    background: var(--dark-bg);
    color: var(--white);
    border-radius: 20px;
    padding: 48px;
}

.faq-cta h3 {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    margin-bottom: 10px;
}

.faq-cta p {
    color: #b7b8ab;
    margin-bottom: 26px;
}


/* ===================== CUSTOMER CARE: SHIPPING & RETURNS ===================== */

.info-tiles {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 70px;
}

.info-tile {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-tile:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
}

.info-tile-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: var(--bg-alt);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.info-tile-icon svg {
    width: 24px;
    height: 24px;
    color: var(--green);
}

.ingredient-tile {
    padding-top: 0;
    overflow: hidden;
}

.ingredient-photo {
    display: block;
    width: calc(100% + 60px);
    max-width: none;
    margin: -30px -30px 20px;
    aspect-ratio: 4/3;
    object-fit: cover;
}

.info-tile h4 {
    font-size: 1.05rem;
    margin-bottom: 8px;
}

.info-tile p {
    font-size: 0.88rem;
    color: var(--ink-soft);
    line-height: 1.6;
}

.info-tile .info-tile-price {
    font-weight: 700;
    color: var(--ink);
    margin-top: 12px;
    display: block;
}

.policy-block {
    /* max-width: 960px; */
    margin: 0 auto 60px;
}

.policy-block > h2,
.policy-block > p {
    max-width: 780px;
}

.policy-block h2 {
    font-size: 1.6rem;
    margin-bottom: 18px;
}

.policy-block p {
    color: var(--ink-soft);
    margin-bottom: 16px;
    line-height: 1.75;
}

.policy-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin: 40px 0;
}

.policy-step {
    text-align: center;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 32px 20px 26px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.policy-step:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.07);
    border-color: transparent;
}

.policy-step-num {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: var(--green);
    color: var(--white);
    font-family: var(--font-serif);
    font-weight: 600;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 10px 22px rgba(69, 79, 49, 0.28);
}

.policy-step h5 {
    font-size: 0.98rem;
    margin-bottom: 8px;
}

.policy-step p {
    font-size: 0.84rem;
    line-height: 1.6;
    margin-bottom: 0;
}

.policy-note {
    background: var(--bg-alt);
    border-radius: 14px;
    padding: 20px 24px;
    font-size: 0.86rem;
    color: var(--ink-soft);
}


/* ===================== CUSTOMER CARE: TRACK ORDER ===================== */

.track-form-card {
    max-width: 640px;
    margin: 0 auto;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 44px;
}

.track-form-card h3 {
    font-size: 1.3rem;
    margin-bottom: 8px;
}

.track-form-card>p {
    color: var(--ink-soft);
    margin-bottom: 26px;
}

.track-form-card .btn {
    width: 100%;
    justify-content: center;
    margin-top: 6px;
}

.track-result {
    max-width: 780px;
    margin: 70px auto 0;
}

.track-result-head {
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 20px;
    background: #ffffff;
    border-radius: 18px;
    padding: 28px;
    margin-bottom: 28px;
}

.track-head-left,
.track-head-right {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 14px;
}

.track-icon-circle {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #dcece0;
    color: #225c4d;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: none;
}

.track-icon-circle svg {
    width: 20px;
    height: 20px;
}

.track-head-leaves {
    position: absolute;
    right: -10px;
    top: -18px;
    width: 130px;
    height: 130px;
    color: #c9d4bb;
    opacity: 0.55;
    z-index: 0;
    pointer-events: none;
}

.track-head-leaves svg {
    width: 100%;
    height: 100%;
}

.track-result-title {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 6px;
}

.track-result-head h4 {
    font-size: 1.15rem;
    margin-bottom: 0;
}

.track-result-head p {
    font-size: 0.85rem;
    color: var(--ink-soft);
}

.track-result-head p strong {
    color: var(--green);
    font-weight: 700;
}

.track-result-head .eta {
    text-align: right;
}

.track-result-head .eta strong {
    display: block;
    font-family: var(--font-serif);
    font-size: 1.3rem;
    color: var(--green);
}

.track-result-head .eta span {
    font-size: 0.76rem;
    color: var(--ink-soft);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.tracker-card {
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 28px 20px;
    margin-bottom: 28px;
}

.tracker {
    display: flex;
    justify-content: space-between;
    position: relative;
}

.tracker::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 5%;
    right: 5%;
    height: 2px;
    background: var(--line);
    z-index: 0;
}

.tracker-fill {
    position: absolute;
    top: 20px;
    left: 5%;
    height: 2px;
    background: var(--green);
    z-index: 1;
    transition: width 0.6s ease;
}

.tracker-node {
    position: relative;
    z-index: 2;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.tracker-dot {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--white);
    border: 2px solid var(--line);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    transition: all 0.3s ease;
}

.tracker-dot svg {
    width: 17px;
    height: 17px;
    color: var(--ink-soft);
}

.tracker-node.done .tracker-dot {
    background: var(--green);
    border-color: var(--green);
}

.tracker-node.done .tracker-dot svg {
    color: var(--white);
}

.tracker-node.current .tracker-dot {
    border-color: var(--green);
    box-shadow: 0 0 0 5px rgba(69, 79, 49, 0.12);
}

.tracker-node.current .tracker-dot svg {
    color: var(--green);
}

.tracker-node span {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--ink-soft);
    max-width: 90px;
}

.tracker-node.done span,
.tracker-node.current span {
    color: var(--ink);
}

.tracker-node small {
    display: block;
    font-size: 0.7rem;
    color: var(--ink-soft);
    margin-top: 3px;
}


/* ===================== CUSTOMER CARE: CONTACT ===================== */

.contact-layout {
    max-width: 1280px;
    margin: 0 auto;
    padding: 70px 48px 120px;
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 50px;
    align-items: start;
}

.contact-form-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 44px;
}

.contact-form-card h2 {
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.contact-form-card>p {
    color: var(--ink-soft);
    margin-bottom: 0px;
}

.contact-form-card .btn {
    margin-top: 8px;
}

.contact-side {
    background: var(--dark-bg);
    color: var(--white);
    border-radius: 20px;
    padding: 40px;
}

.contact-side h3 {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    margin-bottom: 26px;
}

.contact-detail {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

.contact-detail-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-detail-icon svg {
    width: 18px;
    height: 18px;
    color: #a9b98a;
}

.contact-detail strong {
    display: block;
    font-size: 0.88rem;
    margin-bottom: 3px;
}

.contact-detail span,
.contact-detail a {
    font-size: 0.85rem;
    color: #b7b8ab;
}

.contact-detail a:hover {
    color: var(--white);
}

.contact-side .footer-social {
    margin-top: 30px;
    padding-top: 26px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.contact-map {
    border-radius: 14px;
    overflow: hidden;
    margin-top: 24px;
}

.contact-map img {
    width: 100%;
    display: block;
}

/* ===================== LEGAL PAGES ===================== */
.legal-layout {
    max-width: 1280px;
    margin: 0 auto;
    padding: 80px 48px 120px;
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 56px;
    align-items: start;
}

.legal-toc {
    position: sticky;
    top: calc(var(--header-h, 84px) + 24px);
    background: var(--bg-alt);
    border-radius: 18px;
    padding: 22px;
}

.legal-toc-label {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 700;
    color: var(--ink-soft);
    margin-bottom: 14px;
    padding: 0 14px;
}

.legal-toc a {
    display: block;
    padding: 10px 14px;
    border-radius: 10px;
    font-size: 0.86rem;
    font-weight: 500;
    color: var(--ink-soft);
    border-left: 2px solid transparent;
    transition: all 0.2s ease;
}

.legal-toc a:hover {
    color: var(--ink);
    background: rgba(255, 255, 255, 0.6);
}

.legal-toc a.active {
    color: var(--ink);
    font-weight: 700;
    background: var(--white);
    border-left-color: var(--green);
}

.legal-content { max-width: 720px; }

.legal-updated {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--ink-soft);
    background: var(--bg-alt);
    padding: 8px 16px;
    border-radius: 999px;
    margin-bottom: 28px;
}

.legal-content h1 { margin-bottom: 6px; }
.legal-content > p.legal-intro {
    color: var(--ink-soft);
    font-size: 1.02rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.legal-section {
    padding-top: 44px;
    margin-top: 44px;
    border-top: 1px solid var(--line);
    scroll-margin-top: calc(var(--header-h, 84px) + 24px);
}

.legal-section:first-of-type {
    padding-top: 0;
    margin-top: 40px;
    border-top: none;
}

.legal-section h2 {
    font-size: 1.4rem;
    margin-bottom: 16px;
}

.legal-section h3 {
    font-family: var(--font-sans);
    font-size: 0.95rem;
    font-weight: 700;
    margin: 22px 0 10px;
}

.legal-section p {
    color: var(--ink-soft);
    line-height: 1.8;
    margin-bottom: 16px;
}

.legal-section ul {
    margin: 0 0 16px;
    padding-left: 4px;
}

.legal-section ul li {
    position: relative;
    padding-left: 22px;
    color: var(--ink-soft);
    line-height: 1.8;
    margin-bottom: 10px;
}

.legal-section ul li::before {
    content: '';
    position: absolute;
    left: 4px;
    top: 11px;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--green);
}

.legal-section a { color: var(--green); font-weight: 600; }
.legal-section a:hover { text-decoration: underline; }

.legal-contact-box {
    background: var(--bg-alt);
    border-radius: 16px;
    padding: 26px;
    margin-top: 12px;
}
.legal-contact-box p { margin-bottom: 6px; }
.legal-contact-box p:last-child { margin-bottom: 0; }

/* Cookie preference toggles */
.cookie-pref-list { display: flex; flex-direction: column; gap: 14px; margin: 20px 0 28px; }
.cookie-pref-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 20px 22px;
}
.cookie-pref-row h4 { font-size: 0.95rem; margin-bottom: 4px; }
.cookie-pref-row p { font-size: 0.84rem; margin-bottom: 0; }

.toggle-switch { position: relative; flex-shrink: 0; width: 46px; height: 26px; }
.toggle-switch input { position: absolute; opacity: 0; width: 100%; height: 100%; margin: 0; cursor: pointer; z-index: 1; }
.toggle-switch .track {
    position: absolute; inset: 0; background: var(--line); border-radius: 999px;
    transition: background 0.2s ease;
}
.toggle-switch .thumb {
    position: absolute; top: 3px; left: 3px; width: 20px; height: 20px; border-radius: 50%;
    background: var(--white); box-shadow: 0 1px 3px rgba(0,0,0,0.2);
    transition: transform 0.2s ease;
}
.toggle-switch input:checked ~ .track { background: var(--green); }
.toggle-switch input:checked ~ .thumb { transform: translateX(20px); }
.toggle-switch input:disabled ~ .track { background: var(--green-light); opacity: 0.6; }
.toggle-switch input:disabled { cursor: not-allowed; }

.cookie-save-note { font-size: 0.82rem; color: var(--green); font-weight: 600; margin-top: 14px; opacity: 0; transition: opacity 0.3s ease; }
.cookie-save-note.show { opacity: 1; }

/* ===================== SITEMAP ===================== */
.sitemap-grid {
    max-width: 1280px;
    margin: 0 auto;
    padding: 80px 48px 120px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}
.sitemap-col-head { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.sitemap-col-icon {
    width: 40px; height: 40px; border-radius: 12px; background: var(--bg-alt);
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.sitemap-col-icon svg { width: 19px; height: 19px; color: var(--green); }
.sitemap-col-head h3 { font-size: 1rem; font-family: var(--font-sans); font-weight: 700; }
.sitemap-links { display: flex; flex-direction: column; gap: 4px; }
.sitemap-links a {
    padding: 7px 0;
    font-size: 0.88rem;
    color: var(--ink-soft);
    transition: color 0.15s ease, padding-left 0.15s ease;
}
.sitemap-links a:hover { color: var(--green); padding-left: 4px; }
.sitemap-section { grid-column: 1 / -1; margin-top: 10px; padding-top: 40px; border-top: 1px solid var(--line); }
.sitemap-section:first-child { margin-top: 0; padding-top: 0; border-top: none; }
.sitemap-section-cols { display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; margin-top: 24px; }

/* ===================== B2B SERVICE PAGES ===================== */
.service-grid {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 48px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
a.info-tile-link { display: block; }
a.info-tile-link .info-tile { height: 100%; display: flex; flex-direction: column; }
.info-tile-arrow {
    margin-top: auto;
    padding-top: 14px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--green);
}
.info-tile-arrow svg { width: 13px; height: 13px; transition: transform 0.2s ease; }
a.info-tile-link:hover .info-tile-arrow svg { transform: translate(3px, -3px); }

.service-intro {
    max-width: 780px;
    margin: 0 auto 60px;
    text-align: center;
}
.service-intro p { color: var(--ink-soft); font-size: 1.05rem; line-height: 1.8; }

.related-services {
    max-width: 780px;
    margin: 40px auto 0;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}
.related-services-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 700;
    color: var(--ink-soft);
    width: 100%;
    margin-bottom: 6px;
}
.related-service-chip {
    padding: 11px 20px;
    border: 1.5px solid var(--line);
    border-radius: 999px;
    font-size: 0.86rem;
    font-weight: 600;
    color: var(--ink-soft);
    transition: all 0.2s ease;
}
.related-service-chip:hover { border-color: var(--green); color: var(--ink); background: var(--bg-alt); }

/* ===================== ABOUT: OUR STORY / PHILOSOPHY ===================== */
.about-split {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 48px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.about-split-img { border-radius: 20px; overflow: hidden; }
.about-split-img img { width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.about-split-content h2 { margin-bottom: 18px; }
.about-split-content p { color: var(--ink-soft); line-height: 1.8; margin-bottom: 16px; }
.about-split-content ul,
.philosophy-content ul { margin: 20px 0; }
.about-split-content ul li,
.philosophy-content ul li {
    position: relative;
    padding-left: 26px;
    color: var(--ink-soft);
    line-height: 1.7;
    margin-bottom: 10px;
}
.about-split-content ul li::before,
.philosophy-content ul li::before {
    content: '';
    position: absolute; left: 2px; top: 9px;
    width: 6px; height: 6px; border-radius: 50%;
    background: var(--green);
}

.pillar-grid {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 48px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.pillar-item {
    text-align: center;
    padding: 28px 16px;
    background: #ffffff;
    border-radius: 16px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.pillar-item:hover { transform: translateY(-5px); box-shadow: 0 16px 32px rgba(0,0,0,0.06); }
.pillar-item svg { width: 26px; height: 26px; color: var(--green); margin-bottom: 14px; }
.pillar-item span { display: block; font-size: 0.9rem; font-weight: 600; }

/* ===================== QUALITY & COMPLIANCE ===================== */
.compliance-facts {
    max-width: 900px;
    margin: 0 auto 60px;
    background: var(--dark-bg);
    color: var(--white);
    border-radius: 20px;
    padding: 44px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}
.compliance-facts h3 { font-family: var(--font-serif); font-size: 1.3rem; margin-bottom: 18px; }
.compliance-fact { display: flex; gap: 14px; margin-bottom: 18px; }
.compliance-fact svg { width: 20px; height: 20px; color: #a9b98a; flex-shrink: 0; margin-top: 2px; }
.compliance-fact strong { display: block; font-size: 0.88rem; margin-bottom: 3px; }
.compliance-fact span { font-size: 0.82rem; color: #b7b8ab; }

/* ===================== WELLNESS HUB ===================== */
.article-grid {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 48px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.article-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 18px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.article-card:hover { transform: translateY(-6px); box-shadow: 0 20px 40px rgba(0,0,0,0.07); }
.article-card img { width: 100%; aspect-ratio: 16/10; object-fit: cover; }
.article-card-body { padding: 24px; }
.article-tag {
    display: inline-block;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 700;
    color: var(--green);
    background: var(--bg-alt);
    padding: 5px 12px;
    border-radius: 999px;
    margin-bottom: 14px;
}
.article-card h3 { font-size: 1.05rem; margin-bottom: 10px; line-height: 1.35; }
.article-card p { font-size: 0.86rem; color: var(--ink-soft); line-height: 1.6; margin-bottom: 16px; }
.article-meta { display: flex; align-items: center; gap: 10px; font-size: 0.76rem; color: var(--ink-soft); }
.article-meta .dot { opacity: 0.5; }

/* Article detail page */
.article-banner-meta {
    display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
    font-size: 0.82rem; color: var(--ink-soft); margin-top: 14px;
}
.article-featured-img {
    max-width: 900px; margin: -40px auto 0; border-radius: 20px; overflow: hidden;
    position: relative; z-index: 2; box-shadow: 0 30px 60px rgba(0,0,0,0.1);
}
.article-featured-img img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }
.article-content { max-width: 720px; margin: 0 auto; padding: 60px 48px 20px; }
.article-content > p.legal-intro { margin-bottom: 8px; }
.article-content h2 { font-size: 1.35rem; margin: 36px 0 14px; }
.article-content p {
    color: var(--ink-soft); line-height: 1.85; margin-bottom: 18px; font-size: 1.02rem;
}
.article-content ul { margin: 0 0 18px; padding-left: 4px; }
.article-content ul li {
    position: relative; padding-left: 22px; color: var(--ink-soft);
    line-height: 1.8; margin-bottom: 10px; font-size: 1.02rem;
}
.article-content ul li::before {
    content: ''; position: absolute; left: 4px; top: 12px;
    width: 5px; height: 5px; border-radius: 50%; background: var(--green);
}
.article-content blockquote {
    border-left: 3px solid var(--green);
    margin: 28px 0; padding: 4px 0 4px 24px;
    font-family: var(--font-serif); font-style: italic;
    font-size: 1.15rem; color: var(--ink);
}

/* ===================== RESPONSIVE ===================== */

@media (max-width: 1100px) {
    .ingredients-row {
        grid-template-columns: repeat(4, 1fr);
    }
    .footer-main {
        grid-template-columns: 1.4fr 1fr 1fr;
    }
    .footer-contact {
        grid-column: span 3;
    }
    .sitemap-grid, .sitemap-section-cols {
        grid-template-columns: repeat(2, 1fr);
    }
    .service-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 900px) {
     :root {
        --header-h: 86px;
    }
    .main-nav {
        display: block;
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        width: min(320px, 85vw);
        overflow-y: auto;
        background: var(--bg);
        padding: 0 20px 40px;
        z-index: 150;
        border-left: 1px solid var(--line);
        box-shadow: -12px 0 32px rgba(0, 0, 0, 0.1);
        transform: translateX(100%);
        visibility: hidden;
        transition: transform 0.3s ease, visibility 0.3s;
    }
    .nav-drawer-head {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 20px 0;
        margin-bottom: 8px;
        border-bottom: 1px solid var(--line);
    }
    .nav-drawer-logo {
        height: 30px;
        width: auto;
    }
    .nav-close {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 36px;
        height: 36px;
        border-radius: 50%;
        flex-shrink: 0;
    }
    .nav-close svg {
        width: 20px;
        height: 20px;
        fill: none;
        stroke: currentColor;
        stroke-width: 2;
        stroke-linecap: round;
    }
    .nav-close:hover {
        background: var(--bg-alt);
    }
    .main-nav.open {
        transform: translateX(0);
        visibility: visible;
    }
    .main-nav.open ul {
        flex-direction: column;
        gap: 0;
    }
    .main-nav.open li {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
    }
    .main-nav.open .chev {
        display: none;
    }
    .main-nav.open > ul > li {
        border-bottom: 1px solid var(--line);
    }
    .main-nav.open > ul > li:last-child {
        border-bottom: none;
    }
    .main-nav.open > ul > li > a {
        display: block;
        padding: 16px 2px;
        font-size: 0.98rem;
        font-weight: 600;
        white-space: normal;
    }
    .main-nav.open > ul > li > .nav-row {
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 13px 0;
    }
    .main-nav.open > ul > li > .nav-row > a {
        display: block;
        flex: 1;
        min-width: 0;
        padding: 0;
        font-size: 0.96rem;
        font-weight: 700;
        white-space: normal;
    }
    .main-nav.open .section-icon {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 34px;
        height: 34px;
        border-radius: 50%;
        background: #e3ecdd;
        color: var(--green);
        flex-shrink: 0;
    }
    .main-nav.open .section-icon svg {
        width: 17px;
        height: 17px;
        fill: none;
        stroke: currentColor;
        stroke-width: 1.8;
        stroke-linecap: round;
        stroke-linejoin: round;
    }
    .main-nav.open .dropdown-toggle {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 30px;
        height: 30px;
        border-radius: 50%;
        flex-shrink: 0;
        color: var(--ink-soft);
    }
    .main-nav.open .dropdown-toggle:hover {
        background: var(--bg-alt);
        color: var(--ink);
    }
    .main-nav.open .dropdown-toggle::before,
    .main-nav.open .dropdown-toggle::after {
        content: "";
        position: absolute;
        top: 50%;
        left: 50%;
        background: currentColor;
        transition: transform 0.2s ease;
    }
    .main-nav.open .dropdown-toggle::before {
        width: 11px;
        height: 1.5px;
        transform: translate(-50%, -50%);
    }
    .main-nav.open .dropdown-toggle::after {
        width: 1.5px;
        height: 11px;
        transform: translate(-50%, -50%);
    }
    .main-nav.open .has-dropdown:not(.collapsed) .dropdown-toggle::after {
        transform: translate(-50%, -50%) scaleY(0);
    }
    .main-nav.open .dropdown-panel {
        position: static;
        background: var(--white);
        box-shadow: none;
        border-radius: 16px;
        opacity: 1;
        visibility: visible;
        transform: none;
        min-width: 0;
        display: flex;
        flex-direction: column;
        gap: 1px;
        padding: 6px;
        margin-bottom: 14px;
    }
    .main-nav.open .dropdown-panel a {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 9px;
        font-size: 0.85rem;
        font-weight: 500;
        color: var(--ink);
        border-radius: 10px;
        white-space: normal;
    }
    .main-nav.open .dropdown-panel a:hover {
        background: var(--bg-alt);
    }
    .main-nav.open .item-icon {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 30px;
        height: 30px;
        border-radius: 50%;
        flex-shrink: 0;
    }
    .main-nav.open .item-icon svg {
        width: 15px;
        height: 15px;
        fill: none;
        stroke: currentColor;
        stroke-width: 1.8;
        stroke-linecap: round;
        stroke-linejoin: round;
    }
    .main-nav.open .item-label {
        flex: 1;
    }
    .main-nav.open .item-chev {
        display: block;
        width: 14px;
        height: 14px;
        fill: none;
        stroke: var(--ink-soft);
        stroke-width: 2;
        stroke-linecap: round;
        stroke-linejoin: round;
        flex-shrink: 0;
    }
    .main-nav.open .dropdown-panel a:nth-child(6n+1) .item-icon { background: #dbe9ff; color: #3b5bdb; }
    .main-nav.open .dropdown-panel a:nth-child(6n+2) .item-icon { background: #ffe8d6; color: #c2681d; }
    .main-nav.open .dropdown-panel a:nth-child(6n+3) .item-icon { background: #eaddff; color: #6b3fa0; }
    .main-nav.open .dropdown-panel a:nth-child(6n+4) .item-icon { background: #d7f2e3; color: #1c7c4d; }
    .main-nav.open .dropdown-panel a:nth-child(6n+5) .item-icon { background: #ffe0ea; color: #b3355e; }
    .main-nav.open .dropdown-panel a:nth-child(6n) .item-icon { background: #fff3c4; color: #a6790a; }
    .main-nav.open .dropdown-panel a.dropdown-highlight .item-label {
        color: var(--green);
        font-weight: 700;
    }
    .main-nav.open .has-dropdown.collapsed .dropdown-panel {
        display: none;
    }
    .main-nav.open .nav-drawer-promo {
        display: flex;
        align-items: center;
        gap: 14px;
        background: #eef3e7;
        border-radius: 16px;
        padding: 16px;
        margin-top: 4px;
    }
    .main-nav.open .nav-drawer-promo-text {
        display: flex;
        flex-direction: column;
        gap: 4px;
        flex: 1;
    }
    .main-nav.open .nav-drawer-promo-text strong {
        font-size: 0.9rem;
        color: var(--ink);
    }
    .main-nav.open .nav-drawer-promo-text span {
        font-size: 0.76rem;
        color: var(--ink-soft);
    }
    .main-nav.open .nav-drawer-promo-art {
        position: relative;
        width: 52px;
        height: 52px;
        flex-shrink: 0;
    }
    .main-nav.open .nav-drawer-promo-art svg {
        position: absolute;
        width: 28px;
        height: 28px;
        fill: var(--green);
    }
    .main-nav.open .nav-drawer-promo-art svg:nth-child(1) {
        top: 0;
        left: 12px;
        opacity: 0.9;
        transform: rotate(-10deg);
    }
    .main-nav.open .nav-drawer-promo-art svg:nth-child(2) {
        top: 16px;
        left: -6px;
        opacity: 0.55;
        transform: rotate(20deg) scale(0.85);
    }
    .main-nav.open .nav-drawer-promo-art svg:nth-child(3) {
        top: 22px;
        left: 20px;
        opacity: 0.7;
        transform: rotate(-25deg) scale(0.7);
    }
    .nav-toggle {
        display: flex;
        flex-shrink: 0;
        order: 3;
    }
    .logo {
        flex-shrink: 0;
        order: 1;
    }
    .header-actions {
        order: 2;
        margin-left: auto;
    }
    .header-actions .btn-dark.btn-sm {
        display: none;
    }
    .hero {
        min-height: 560px;
        min-height: max(480px, 100svh);
    }
    .hero-content {
        padding: calc(32px + var(--header-h, 86px)) 24px 32px;
    }
    .hero-overlay {
        background: linear-gradient(180deg, rgba(248, 246, 240, 0.88) 0%, rgba(248, 246, 240, 0) 160px), linear-gradient(90deg, var(--bg) 0%, var(--bg) 55%, rgba(248, 246, 240, 0.55) 75%, rgba(248, 246, 240, 0) 100%);
    }
    .stat-bar {
        flex-wrap: wrap;
    }
    .stat-item {
        flex: 1 1 45%;
        border-right: none;
        padding: 10px;
    }
    .philosophy {
        grid-template-columns: 1fr;
        margin-top: 90px;
    }
    .philosophy-images {
        height: 360px;
    }
    .support-section,
    .ecosystem-section,
    .products-section {
        padding-top: 90px;
    }
    .ingredients-section {
        margin-top: 90px;
    }
    .footer-newsletter {
        flex-direction: column;
        align-items: flex-start;
    }
    .newsletter-form {
        width: 100%;
    }
    .newsletter-form input {
        flex: 1 1 auto;
        min-width: 0;
    }
    .footer-main {
        grid-template-columns: 1fr 1fr;
    }
    .footer-brand,
    .footer-contact {
        grid-column: span 2;
    }
    .account-layout {
        grid-template-columns: 1fr;
    }
    .account-sidebar {
        display: flex;
        overflow-x: auto;
        gap: 4px;
        padding: 12px;
    }
    .account-sidebar-profile {
        display: none;
    }
    .account-sidebar a {
        white-space: nowrap;
        margin-bottom: 0;
    }
    .account-sidebar a.active {
        border-left: none;
        padding-left: 14px;
    }
    .account-sidebar-thanks {
        display: none;
    }
    .cart-layout,
    .checkout-layout {
        grid-template-columns: 1fr;
    }
    .summary-card {
        position: static;
    }
    .info-grid {
        grid-template-columns: 1fr;
    }
    .auth-wrap {
        padding-top: calc(var(--header-h, 86px) + 30px);
    }
    .info-tiles {
        grid-template-columns: 1fr;
    }
    .service-grid {
        grid-template-columns: 1fr;
    }
    .policy-steps {
        grid-template-columns: repeat(2, 1fr);
    }
    .about-split {
        grid-template-columns: 1fr;
    }
    .pillar-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .compliance-facts {
        grid-template-columns: 1fr;
    }
    .article-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .contact-layout {
        grid-template-columns: 1fr;
        padding-top: calc(var(--header-h, 86px) + 30px);
    }
    .tracker-node span {
        display: none;
    }
    .legal-layout {
        grid-template-columns: 1fr;
        padding-top: calc(var(--header-h, 86px) + 30px);
    }
    .legal-toc {
        position: static;
        display: flex;
        overflow-x: auto;
        gap: 4px;
        white-space: nowrap;
    }
    .legal-toc-label {
        display: none;
    }
    .sitemap-grid, .sitemap-section-cols {
        grid-template-columns: 1fr 1fr;
        padding-top: calc(var(--header-h, 86px) + 30px);
    }
}

@media (max-width: 560px) {
    .footer-newsletter,
    .footer-main,
    .footer-badges,
    .footer-compliance,
    .footer-bottom {
        padding-left: 24px;
        padding-right: 24px;
    }
    .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 28px;
    }
}

@media (max-width: 640px) {
    .header-inner {
        padding: 14px 16px;
        gap: 12px;
    }
    .logo-img {
        height: 30px;
    }
    .header-actions {
        gap: 8px;
    }
    .section-head,
    .hero,
    .philosophy,
    .support-row,
    .ecosystem-grid,
    .products-row,
    .ingredients-row {
        padding-left: 20px;
        padding-right: 20px;
    }
    .ingredients-row {
        grid-template-columns: repeat(2, 1fr);
    }
    .mfg-left,
    .mfg-right {
        padding: 48px 24px;
    }
    .page-banner,
    .page-section,
    .account-layout,
    .cart-layout,
    .checkout-page-wrap,
    .auth-wrap,
    .confirmation-wrap,
    .contact-layout {
        padding-left: 24px;
        padding-right: 24px;
    }
    .form-row {
        flex-direction: column;
        gap: 0;
    }
    .cart-item {
        flex-wrap: wrap;
    }
    .cart-item-price {
        text-align: left;
    }
    .cart-trust-row {
        flex-direction: column;
    }
    .cart-trust-item:not(:last-child) {
        border-bottom: 1px solid var(--line);
    }
    .checkout-form {
        padding: 26px;
    }
    .checkout-stepper {
        flex-wrap: wrap;
        row-gap: 12px;
    }
    .stepper-step span {
        display: none;
    }
    .stepper-line {
        min-width: 16px;
    }
    .faq-question {
        padding: 18px;
        font-size: 0.92rem;
    }
    .track-form-card,
    .contact-form-card,
    .contact-side {
        padding: 26px;
    }
    .track-result-head {
        flex-direction: column;
    }
    .track-result-head .eta {
        text-align: left;
    }
    .policy-steps {
        grid-template-columns: 1fr;
    }
    .pillar-grid {
        grid-template-columns: 1fr;
    }
    .article-grid {
        grid-template-columns: 1fr;
    }
    .article-content {
        padding: 40px 24px 20px;
    }
    .article-featured-img {
        margin-top: 0;
        border-radius: 0;
    }
}


/* ===================== SHOP CATALOG ===================== */

.shop-catalog {
    padding-bottom: 100px;
}

.shop-category {
    max-width: 1280px;
    margin: 0 auto;
    padding: 70px 48px 0;
    scroll-margin-top: calc(var(--header-h, 84px) + 20px);
}

.shop-category-head {
    display: flex;
    align-items: baseline;
    gap: 16px;
    margin-bottom: 36px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--line);
}

.shop-category-head .shop-cat-index {
    font-family: var(--font-serif);
    font-size: 2rem;
    color: var(--line);
}

.shop-subcat {
    margin-bottom: 44px;
}

.shop-subcat:last-child {
    margin-bottom: 0;
}

.shop-subcat h3 {
    font-size: 1.1rem;
    margin-bottom: 18px;
}

.shop-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 18px;
}

.shop-product-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 14px;
    display: flex;
    flex-direction: column;
    position: relative;
}

.shop-product-link {
    display: flex;
    flex-direction: column;
    flex: 1;
    color: inherit;
    text-decoration: none;
}

.shop-product-card .wishlist-toggle-btn {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.12);
    z-index: 2;
}

.shop-product-card .wishlist-toggle-btn svg {
    width: 16px;
    height: 16px;
}

.shop-product-swatch {
    aspect-ratio: 1/1;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    font-family: var(--font-serif);
    font-size: 1.8rem;
    color: rgba(255, 255, 255, 0.9);
}

.shop-product-card h4 {
    font-family: var(--font-sans);
    font-size: 0.88rem;
    font-weight: 700;
    margin-bottom: 3px;
    line-height: 1.3;
}

.shop-product-card span {
    font-size: 0.74rem;
    color: var(--ink-soft);
}

.shop-product-card .shop-product-price {
    display: block;
    margin-top: 4px;
    font-weight: 700;
    color: var(--ink);
}

.shop-product-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 10px;
}

.shop-product-foot .shop-product-price {
    margin-top: 0;
}

.shop-product-foot .add-btn {
    width: 28px;
    height: 28px;
    font-size: 1rem;
}

@media (max-width: 640px) {
    .shop-category {
        padding-left: 20px;
        padding-right: 20px;
    }
    .shop-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}


/* ===================== PRODUCT DETAIL ===================== */

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

.product-detail-media {
    position: sticky;
    top: calc(var(--header-h, 84px) + 30px);
}

.product-detail-img {
    width: 100%;
    aspect-ratio: 1/1.05;
    border-radius: 20px;
    overflow: hidden;
    background: var(--bg-alt);
}

.product-detail-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-detail-swatch {
    width: 100%;
    aspect-ratio: 1/1.05;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-serif);
    font-size: 6rem;
    color: rgba(255, 255, 255, 0.92);
}

.product-detail-info .eyebrow {
    margin-bottom: 14px;
}

.product-detail-info h1 {
    font-size: clamp(2rem, 3.4vw, 2.8rem);
    margin-bottom: 10px;
}

.product-detail-tag {
    color: var(--ink-soft);
    margin-bottom: 22px;
}

.product-detail-price {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    margin-bottom: 6px;
}

.product-detail-note {
    color: var(--ink-soft);
    font-size: 0.88rem;
    margin-bottom: 28px;
    max-width: 440px;
}

.product-detail-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.wishlist-toggle-btn {
    width: 46px;
    height: 46px;
    flex-shrink: 0;
    border-radius: 50%;
    border: 1px solid var(--line);
    background: var(--white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
}

.wishlist-toggle-btn svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: var(--ink);
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: fill 0.2s ease, stroke 0.2s ease;
}

.wishlist-toggle-btn:hover {
    border-color: #c23b57;
}

.wishlist-toggle-btn.active {
    background: #fbe2e6;
    border-color: #c23b57;
}

.wishlist-toggle-btn.active svg {
    fill: #c23b57;
    stroke: #c23b57;
}

.wishlist-toggle-btn.pulse {
    animation: cart-badge-pulse 0.4s ease;
}

.product-detail-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 32px;
}

.product-detail-badges span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--ink-soft);
    padding: 8px 14px;
    border: 1px solid var(--line);
    border-radius: 999px;
}

.product-detail-badges svg {
    width: 15px;
    height: 15px;
    color: var(--green);
}

.product-detail-desc {
    color: var(--ink-soft);
    line-height: 1.7;
    padding-top: 28px;
    border-top: 1px solid var(--line);
    max-width: 520px;
}

.product-related {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 48px 100px;
}

.product-related h2 {
    margin-bottom: 30px;
}

@media (max-width: 900px) {
    .product-detail {
        grid-template-columns: 1fr;
        padding: 48px 24px;
        gap: 36px;
    }
    .product-detail-media {
        position: static;
    }
    .product-related {
        padding: 0 24px 70px;
    }
}