/* ============================================================
   AROMAATIKA.EE — Home aromas & wellness
   Palette: linen · warm beige · wood brown · caramel
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;1,400;1,500&family=DM+Sans:wght@300;400;500&display=swap');

:root {
    --c-primary:      #6b4c36;
    --c-primary-dk:   #4a3326;
    --c-primary-lt:   #f5ede5;
    --c-accent:       #a07850;
    --c-accent-lt:    #e8d5c0;
    --c-text:         #2c2018;
    --c-muted:        #8c7b6e;
    --c-border:       #e2d5ca;
    --c-bg:           #ffffff;
    --c-bg-alt:       #faf6f1;
    --c-bg-deep:      #f0e8df;
    --c-success:      #4a6741;
    --c-danger:       #8b3a2a;

    --font-h: 'Cormorant Garamond', Georgia, serif;
    --font:   'DM Sans', -apple-system, sans-serif;

    --r-sm: 2px;
    --r-md: 4px;
    --r-lg: 8px;
    --r-xl: 16px;
    --r-full: 9999px;

    --sh-sm: 0 1px 4px rgba(80,50,20,.06);
    --sh-md: 0 4px 20px rgba(80,50,20,.10);
    --sh-lg: 0 12px 40px rgba(80,50,20,.14);

    --header-h: 72px;
    --container: 1180px;
    --sidebar-w: 260px;
}

/* ================================================================ RESET */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font); color: var(--c-text); background: var(--c-bg); line-height: 1.7; font-weight: 300; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
[hidden] { display: none !important; }

/* ================================================================ LAYOUT */
.container, .header-inner, .footer-inner { max-width: var(--container); margin: 0 auto; padding: 0 2rem; }
.section { padding: 5rem 0; }
.section--alt { background: var(--c-bg-alt); }
@media (max-width: 768px) {
    .container, .header-inner, .footer-inner { padding: 0 1.25rem; }
    .section { padding: 3rem 0; }
}

/* ================================================================ HEADER */
.site-header { position: sticky; top: 0; z-index: 100; height: var(--header-h); background: rgba(255,255,255,.96); backdrop-filter: blur(8px); border-bottom: 1px solid var(--c-border); }
.header-inner { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.site-logo { font-family: var(--font-h); font-size: 1.5rem; font-weight: 500; letter-spacing: .03em; color: var(--c-primary); }
.site-logo img { height: 40px; width: auto; }
.nav-main { display: flex; align-items: center; gap: 2rem; }
.nav-main a { font-size: .82rem; font-weight: 400; letter-spacing: .08em; text-transform: uppercase; color: var(--c-text); opacity: .7; transition: opacity .2s; }
.nav-main a:hover { opacity: 1; }
.header-actions { display: flex; align-items: center; gap: 1.25rem; }
.header-actions button, .header-actions a { color: var(--c-muted); font-size: .85rem; transition: color .2s; }
.header-actions button:hover, .header-actions a:hover { color: var(--c-primary); }
.cart-count { display: inline-flex; align-items: center; justify-content: center; width: 18px; height: 18px; background: var(--c-primary); color: #fff; border-radius: 50%; font-size: .65rem; font-weight: 500; margin-left: .3rem; }
@media (max-width: 768px) { .nav-main { display: none; } .hamburger { display: flex; } }

/* ================================================================ HERO */
.hero--aroma {
    position: relative; min-height: 90vh;
    display: flex; align-items: center; justify-content: center;
    background: linear-gradient(160deg, #fdf8f3 0%, #f5ede5 50%, #ede0d4 100%);
    overflow: hidden; text-align: center;
}
.hero--aroma::before {
    content: ''; position: absolute; inset: 0; pointer-events: none;
    background:
        radial-gradient(ellipse 65% 55% at 80% 35%, rgba(160,120,80,.14) 0%, transparent 60%),
        radial-gradient(ellipse 50% 45% at 15% 75%, rgba(107,76,54,.09) 0%, transparent 55%);
}
.hero__overlay { display: none; }

/* ---- Split hero layout ---- */
.hero-aroma-inner {
    position: relative; z-index: 2;
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 4rem; align-items: center;
    padding-top: 5rem; padding-bottom: 5rem;
    min-height: 90vh;
}
.hero-aroma__text { display: flex; flex-direction: column; gap: 0; }
.hero-aroma__eyebrow {
    display: block; font-size: .72rem; letter-spacing: .22em;
    text-transform: uppercase; color: var(--c-accent);
    margin-bottom: 1.25rem; font-weight: 400;
}
.hero-aroma__title {
    font-family: var(--font-h);
    font-size: clamp(2.8rem, 5.5vw, 5rem);
    font-weight: 500; line-height: 1.08; color: var(--c-text);
    margin-bottom: 1.5rem; letter-spacing: -.01em;
}
.hero-aroma__sub {
    font-size: 1rem; color: var(--c-muted); font-weight: 300;
    line-height: 1.85; margin-bottom: 2rem; max-width: 400px;
}
.hero-aroma__actions { display: flex; align-items: center; gap: 1.5rem; margin-bottom: 2.5rem; flex-wrap: wrap; }
.btn-hero-link {
    font-size: .82rem; color: var(--c-primary); font-weight: 400;
    letter-spacing: .04em; border-bottom: 1px solid currentColor;
    padding-bottom: 1px; transition: opacity .2s;
}
.btn-hero-link:hover { opacity: .7; }
.hero-aroma__trust {
    display: flex; gap: 1.25rem; flex-wrap: wrap;
    font-size: .75rem; color: var(--c-muted); letter-spacing: .03em;
}
.hero-aroma__trust span { display: flex; align-items: center; gap: .3rem; }

/* Right visual — collage */
.hero-aroma__visual { position: relative; }
.hero-aroma__collage {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 260px 180px;
    gap: .75rem;
}
.collage-tile { border-radius: var(--r-xl); overflow: hidden; background: var(--c-bg-deep); }
.collage-tile img { width: 100%; height: 100%; object-fit: cover; }
.collage-tile--lg { grid-row: 1 / 3; }
.collage-tile--sm-top { grid-column: 2; grid-row: 1; }
.collage-tile--sm-bot { grid-column: 2; grid-row: 2; }
.hero-aroma__main-img { border-radius: var(--r-xl); overflow: hidden; height: 520px; }
.hero-aroma__main-img img { width: 100%; height: 100%; object-fit: cover; }

.hero-aroma__float-badge {
    position: absolute; bottom: -1rem; left: -1.5rem;
    background: #fff; border-radius: var(--r-xl);
    padding: 1rem 1.4rem;
    box-shadow: var(--sh-lg);
    display: flex; flex-direction: column; align-items: center;
    animation: float 4s ease-in-out infinite;
}
.float-badge__num { font-family: var(--font-h); font-size: 1.6rem; font-weight: 600; color: var(--c-primary); line-height: 1; }
.float-badge__label { font-size: .68rem; color: var(--c-muted); letter-spacing: .08em; text-transform: uppercase; margin-top: .2rem; }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }

/* hero responsive */
@media (max-width: 900px) {
    .hero-aroma-inner { grid-template-columns: 1fr; min-height: auto; padding-top: 3rem; padding-bottom: 3rem; }
    .hero-aroma__text { text-align: center; align-items: center; }
    .hero-aroma__sub { max-width: 100%; }
    .hero-aroma__visual { display: none; }
}

.btn-hero {
    display: inline-block; padding: .85rem 2.5rem;
    border: 1px solid var(--c-primary); color: var(--c-primary); background: transparent;
    font-size: .78rem; letter-spacing: .18em; text-transform: uppercase; font-weight: 400;
    transition: background .25s, color .25s; border-radius: var(--r-sm);
}
.btn-hero:hover { background: var(--c-primary); color: #fff; }

/* ================================================================ PRODUCT SLIDER */
.products-slider { position: relative; overflow: hidden; }
.products-slider__track {
    display: flex; gap: 1.25rem;
    transition: transform .45s cubic-bezier(.25,.46,.45,.94);
}
.products-slider__item { flex: 0 0 calc(25% - 1rem); min-width: 0; }
.slider-btn {
    position: absolute; top: 40%; transform: translateY(-50%);
    width: 44px; height: 44px; border-radius: 50%;
    background: #fff; border: 1px solid var(--c-border);
    font-size: 1.4rem; line-height: 1; color: var(--c-text);
    display: flex; align-items: center; justify-content: center;
    box-shadow: var(--sh-sm); transition: box-shadow .2s, transform .2s;
    z-index: 10; cursor: pointer;
}
.slider-btn:hover { box-shadow: var(--sh-md); transform: translateY(-50%) scale(1.08); }
.slider-btn--prev { left: -22px; }
.slider-btn--next { right: -22px; }
@media (max-width: 768px) {
    .products-slider__item { flex: 0 0 calc(50% - .65rem); }
    .slider-btn { display: none; }
    .products-slider { overflow-x: auto; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; }
    .products-slider__track { overflow: visible; flex-wrap: nowrap; }
    .products-slider__item { scroll-snap-align: start; }
}

/* ================================================================ PROMISE STRIP */
.aroma-promise { border-top: 1px solid var(--c-border); border-bottom: 1px solid var(--c-border); background: var(--c-bg-alt); padding: 1.5rem 0; }
.aroma-promise__grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.aroma-promise__item { display: flex; align-items: center; gap: .75rem; justify-content: center; font-size: .8rem; color: var(--c-muted); letter-spacing: .04em; padding: .5rem 1rem; border-right: 1px solid var(--c-border); }
.aroma-promise__item:last-child { border-right: none; }
.aroma-promise__item span:first-child { font-size: 1.1rem; }
@media (max-width: 640px) { .aroma-promise__grid { grid-template-columns: repeat(2, 1fr); } .aroma-promise__item:nth-child(2) { border-right: none; } }

/* ================================================================ SECTION HEADERS */
.section-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 2rem; gap: 1rem; }
.section-title { font-family: var(--font-h); font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-weight: 500; color: var(--c-text); line-height: 1.2; letter-spacing: -.01em; }
.section-title--center { text-align: center; }
.section-lead { font-size: .88rem; color: var(--c-muted); margin-top: .4rem; font-weight: 300; }
.section-more { font-size: .75rem; letter-spacing: .1em; text-transform: uppercase; color: var(--c-primary); opacity: .8; white-space: nowrap; transition: opacity .2s; }
.section-more:hover { opacity: 1; }
.section-more--arrow::after { content: ' →'; }
.section-eyebrow { display: block; font-size: .7rem; letter-spacing: .18em; text-transform: uppercase; color: var(--c-accent); margin-bottom: .4rem; font-weight: 400; }
.aroma-products__header { margin-bottom: 2.5rem; }
.aroma-cats__header { text-align: center; margin-bottom: 2.5rem; }

/* ================================================================ CATEGORY MOSAIC */
.aroma-cats { padding: 5rem 0; }
.aroma-cats__grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.5fr; grid-template-rows: 340px; gap: 1rem; }
.aroma-cats__grid--full { gap: 0; border-radius: 0; margin-top: 2rem; }
.aroma-cats__grid--full .aroma-cat-card { border-radius: 0; }
.aroma-cat-card { position: relative; overflow: hidden; border-radius: var(--r-lg); display: block; background: var(--c-bg-deep); }
.aroma-cat-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.aroma-cat-card:hover img { transform: scale(1.04); }
.aroma-cat-card__info { position: absolute; bottom: 0; left: 0; right: 0; padding: 1.5rem; background: linear-gradient(to top, rgba(44,32,24,.65) 0%, transparent 100%); color: #fff; }
.aroma-cat-card__info h3 { font-family: var(--font-h); font-size: 1.3rem; font-weight: 500; color: #fff; }
.aroma-cat-card__info p { font-size: .8rem; opacity: .8; margin-top: .3rem; }
@media (max-width: 900px) { .aroma-cats__grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; } .aroma-cat-card { height: 220px; } }
@media (max-width: 560px) { .aroma-cats__grid { grid-template-columns: 1fr; } .aroma-cat-card { height: 200px; } }

/* ================================================================ PRODUCTS GRID */
.products-grid { display: grid; gap: 1.5rem; }
.products-grid--4 { grid-template-columns: repeat(4, 1fr); }
.products-grid--3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 1024px) { .products-grid--4 { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 768px) { .products-grid--4, .products-grid--3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .products-grid--4, .products-grid--3 { grid-template-columns: 1fr; } }

/* ================================================================ PRODUCT CARD */
.product-card { position: relative; background: var(--c-bg); border: 1px solid var(--c-border); border-radius: var(--r-md); overflow: hidden; display: flex; flex-direction: column; transition: box-shadow .3s, transform .3s; }
.product-card:hover { box-shadow: var(--sh-md); transform: translateY(-3px); }
.product-card--out-of-stock { opacity: .72; }

.product-card__image-wrap { position: relative; display: block; overflow: hidden; aspect-ratio: 1 / 1; background: var(--c-bg-alt); }
.product-card__image-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.product-card:hover .product-card__image-wrap img { transform: scale(1.06); }
.product-card__no-image { width: 100%; height: 100%; background: var(--c-bg-deep); display: flex; align-items: center; justify-content: center; font-size: 3rem; color: var(--c-border); }

.product-card__badge { position: absolute; top: .75rem; left: .75rem; padding: .2rem .55rem; font-size: .65rem; font-weight: 400; letter-spacing: .08em; text-transform: uppercase; color: #fff; border-radius: var(--r-sm); }
.product-card__badge--sale { background: var(--c-danger); }
.product-card__badge--new  { background: var(--c-success); }

.product-card__body { padding: 1rem 1.1rem .2rem; flex: 1; }
.product-card__brand { font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; color: var(--c-muted); margin-bottom: .25rem; font-weight: 400; }
.product-card__name { font-family: var(--font-h); font-size: 1.05rem; font-weight: 500; line-height: 1.3; }
.product-card__name a { color: var(--c-text); transition: color .2s; }
.product-card__name a:hover { color: var(--c-primary); }
.product-card__pricing { display: flex; align-items: baseline; gap: .4rem; margin-top: .5rem; flex-wrap: wrap; }
.product-card__price { font-size: 1rem; font-weight: 500; color: var(--c-primary); }
.product-card__price--sale { color: var(--c-danger); }
.product-card__compare { font-size: .82rem; color: var(--c-muted); text-decoration: line-through; }
.product-card__stock--out { display: block; font-size: .75rem; color: var(--c-muted); margin-top: .35rem; }

.product-card__add-btn {
    display: block; width: calc(100% - 2.2rem); margin: .75rem 1.1rem 1rem;
    padding: .6rem 1rem; border: 1px solid var(--c-primary);
    color: var(--c-primary); background: transparent;
    font-size: .75rem; font-weight: 400; letter-spacing: .12em;
    text-transform: uppercase; border-radius: var(--r-sm);
    transition: background .25s, color .25s;
}
.product-card__add-btn:hover { background: var(--c-primary); color: #fff; }

/* ================================================================ PRODUCT DETAIL */
.product-detail { padding: 1.5rem 0 4rem; max-width: var(--container); margin: 0 auto; padding-left: 2rem; padding-right: 2rem; }
@media (max-width: 900px) { .product-detail { padding-left: 1.25rem; padding-right: 1.25rem; } }
.product-detail__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; margin-bottom: 3rem; }
@media (max-width: 900px) { .product-detail__inner { grid-template-columns: 1fr; gap: 2rem; } }

.product-detail__main-image { position: relative; border-radius: var(--r-lg); overflow: hidden; aspect-ratio: 1; background: var(--c-bg-alt); }
.product-detail__img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.product-detail__main-image:hover .product-detail__img { transform: scale(1.04); }
.product-detail__no-image { width: 100%; height: 100%; background: var(--c-bg-deep); display: flex; align-items: center; justify-content: center; font-size: 5rem; color: var(--c-border); }
.product-detail__badge { position: absolute; top: 1rem; left: 1rem; padding: .25rem .65rem; font-size: .7rem; font-weight: 400; color: #fff; text-transform: uppercase; letter-spacing: .08em; border-radius: var(--r-sm); }
.product-detail__badge--sale { background: var(--c-danger); }
.product-detail__badge--new  { background: var(--c-success); }
.product-detail__thumbs { display: flex; gap: .5rem; margin-top: .75rem; flex-wrap: wrap; }
.product-detail__thumb { width: 76px; height: 76px; border-radius: var(--r-md); overflow: hidden; border: 1px solid var(--c-border); padding: 0; cursor: pointer; transition: border-color .2s; }
.product-detail__thumb:hover, .product-detail__thumb.is-active { border-color: var(--c-primary); }
.product-detail__thumb img { width: 100%; height: 100%; object-fit: cover; }

.product-detail__brand { font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: var(--c-muted); margin-bottom: .4rem; font-weight: 400; }
.product-detail__title { font-family: var(--font-h); font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-weight: 500; line-height: 1.15; margin-bottom: .5rem; }
.product-detail__sku { font-size: .75rem; color: var(--c-muted); margin-bottom: .4rem; }

.stars { display: inline-flex; gap: 2px; margin-right: .3rem; }
.star { font-size: 1rem; line-height: 1; }
.star--full { color: #b45309; }
.star--empty { color: var(--c-border); }
.product-detail__rating { display: flex; align-items: center; margin-bottom: .75rem; }
.product-detail__review-count { font-size: .8rem; color: var(--c-muted); }

.product-detail__short-desc { font-size: .9rem; color: var(--c-muted); line-height: 1.8; margin-bottom: .75rem; }

.product-detail__price-block { margin-bottom: 1rem; }
.product-detail__price { display: flex; align-items: baseline; gap: .75rem; flex-wrap: wrap; }
.product-detail__price-current { font-family: var(--font-h); font-size: 2.1rem; font-weight: 500; color: var(--c-primary); }
.product-detail__price-old { font-size: 1rem; color: var(--c-muted); text-decoration: line-through; }

.product-detail__variants { margin-bottom: 1rem; }
.product-detail__choose { font-size: .72rem; font-weight: 400; letter-spacing: .1em; text-transform: uppercase; color: var(--c-muted); margin-bottom: .6rem; }
.product-detail__variant-btns { display: flex; gap: .5rem; flex-wrap: wrap; }
.variant-btn { padding: .5rem 1rem; border-radius: var(--r-sm); border: 1px solid var(--c-border); font-size: .85rem; font-weight: 400; color: var(--c-text); background: var(--c-bg); transition: border-color .2s, background .2s, color .2s; }
.variant-btn:hover { border-color: var(--c-primary); color: var(--c-primary); }
.variant-btn.is-active { background: var(--c-primary); border-color: var(--c-primary); color: #fff; }
.variant-btn--oos { opacity: .4; cursor: not-allowed; text-decoration: line-through; }
.variant-btn--oos:hover { border-color: var(--c-border); color: var(--c-muted); }

.product-detail__stock { margin-bottom: 1rem; }
.in-stock-badge { font-size: .82rem; font-weight: 500; color: var(--c-success); }
.oos-badge { font-size: .82rem; font-weight: 500; color: var(--c-danger); }

.product-detail__actions { display: flex; gap: .75rem; align-items: center; margin-bottom: 1.25rem; }
.product-detail__qty-wrap { display: flex; align-items: center; border: 1px solid var(--c-border); border-radius: var(--r-sm); overflow: hidden; }
.qty-btn--minus, .qty-btn--plus { width: 40px; height: 50px; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; color: var(--c-muted); transition: color .2s, background .2s; }
.qty-btn--minus:hover, .qty-btn--plus:hover { color: var(--c-primary); background: var(--c-primary-lt); }
.qty-input { width: 52px; height: 50px; text-align: center; border: none; border-left: 1px solid var(--c-border); border-right: 1px solid var(--c-border); font-family: inherit; font-size: .95rem; outline: none; appearance: none; -moz-appearance: textfield; }
.qty-input::-webkit-outer-spin-button, .qty-input::-webkit-inner-spin-button { -webkit-appearance: none; }
.btn-detail-cart { flex: 1; padding: 0 1.75rem; height: 50px; display: inline-flex; align-items: center; justify-content: center; gap: .5rem; background: var(--c-primary); color: #fff; border-radius: var(--r-sm); border: none; font-size: .82rem; font-weight: 400; letter-spacing: .12em; text-transform: uppercase; transition: background .25s, transform .2s; }
.btn-detail-cart:hover { background: var(--c-primary-dk); transform: translateY(-1px); }
.btn-detail-cart:disabled { background: var(--c-muted); cursor: not-allowed; transform: none; }
.btn-icon { font-size: 1rem; }

.product-detail__attrs { margin-bottom: 1rem; }
.attrs-table { width: 100%; border-collapse: collapse; font-size: .875rem; }
.attrs-table th, .attrs-table td { padding: .5rem .75rem; text-align: left; border-bottom: 1px solid var(--c-border); }
.attrs-table th { font-weight: 500; color: var(--c-muted); width: 40%; font-family: var(--font-h); }
.attrs-table--full th { background: var(--c-bg-alt); }

.product-detail__tabs { margin-top: 2.5rem; border-top: 1px solid var(--c-border); padding-top: 2rem; }
.tabs-nav { display: flex; gap: 0; border-bottom: 1px solid var(--c-border); margin-bottom: 1.5rem; }
.tab-btn { padding: .65rem 1.5rem; font-size: .78rem; font-weight: 400; letter-spacing: .08em; text-transform: uppercase; color: var(--c-muted); border: none; background: none; border-bottom: 2px solid transparent; margin-bottom: -1px; transition: color .2s, border-color .2s; }
.tab-btn:hover { color: var(--c-primary); }
.tab-btn.is-active { color: var(--c-primary); border-bottom-color: var(--c-primary); }
.tab-panel { display: none; }
.tab-panel.is-active { display: block; }
.product-desc.prose { font-size: .9rem; line-height: 1.85; color: var(--c-muted); }
.product-desc.prose p { margin-bottom: 1rem; }
.product-desc.prose h2, .product-desc.prose h3 { font-family: var(--font-h); font-weight: 500; margin: 1.5rem 0 .5rem; color: var(--c-text); }

.reviews-empty { color: var(--c-muted); font-size: .9rem; padding: 1rem 0; }
.reviews-list { display: flex; flex-direction: column; gap: 1.25rem; }
.review-item { padding: 1.5rem; background: var(--c-bg-alt); border-radius: var(--r-lg); }
.review-header { display: flex; align-items: center; gap: .75rem; margin-bottom: .5rem; flex-wrap: wrap; }
.review-author { font-family: var(--font-h); font-weight: 500; font-size: 1rem; }
.review-date { font-size: .78rem; color: var(--c-muted); }
.review-stars { display: flex; gap: 2px; }
.review-body { font-size: .88rem; color: var(--c-muted); line-height: 1.7; }

.product-detail__related { margin-top: 3.5rem; border-top: 1px solid var(--c-border); padding-top: 2.5rem; }

/* ================================================================ LIFESTYLE BLOCK */
.aroma-lifestyle { padding: 5rem 0; background: var(--c-bg-alt); }
.aroma-lifestyle__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.aroma-lifestyle__inner--text-only { grid-template-columns: 1fr; }
.aroma-lifestyle__inner--text-only .aroma-lifestyle__text { max-width: 620px; }
.aroma-lifestyle__img img { border-radius: var(--r-xl); width: 100%; height: 460px; object-fit: cover; }
.aroma-lifestyle__text h2 { font-family: var(--font-h); font-size: clamp(1.8rem, 3vw, 2.5rem); font-weight: 500; margin-bottom: 1.25rem; line-height: 1.2; }
.aroma-lifestyle__text p { color: var(--c-muted); line-height: 1.85; margin-bottom: 1.5rem; }
@media (max-width: 768px) { .aroma-lifestyle__inner { grid-template-columns: 1fr; gap: 2rem; } .aroma-lifestyle__img img { height: 280px; } }

/* ================================================================ TESTIMONIALS */
.aroma-testimonials { padding: 5rem 0; }
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 2.5rem; }
.testimonial { padding: 2rem; background: var(--c-bg-alt); border: 1px solid var(--c-border); border-radius: var(--r-lg); }
.testimonial p { font-family: var(--font-h); font-size: 1.1rem; font-style: italic; color: var(--c-text); line-height: 1.7; }
.testimonial cite { display: block; margin-top: 1rem; font-size: .78rem; font-style: normal; color: var(--c-muted); letter-spacing: .05em; }
@media (max-width: 768px) { .testimonial-grid { grid-template-columns: 1fr; } }

/* ================================================================ BLOG */
.blog-grid { display: grid; gap: 1.5rem; }
.blog-grid--3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 900px) { .blog-grid--3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .blog-grid--3 { grid-template-columns: 1fr; } }
.blog-card--aroma { background: var(--c-bg); border: 1px solid var(--c-border); border-radius: var(--r-md); overflow: hidden; transition: box-shadow .3s, transform .3s; }
.blog-card--aroma:hover { box-shadow: var(--sh-md); transform: translateY(-3px); }
.blog-card__img-link img { width: 100%; height: 220px; object-fit: cover; transition: transform .5s; display: block; }
.blog-card--aroma:hover .blog-card__img-link img { transform: scale(1.04); }
.blog-card__body { padding: 1.5rem; }
.blog-card__date { font-size: .7rem; color: var(--c-muted); letter-spacing: .08em; text-transform: uppercase; font-weight: 400; }
.blog-card__title { font-family: var(--font-h); font-size: 1.2rem; font-weight: 500; margin: .5rem 0 .6rem; line-height: 1.3; }
.blog-card__title a { color: var(--c-text); transition: color .2s; }
.blog-card__title a:hover { color: var(--c-primary); }
.blog-card__excerpt { font-size: .875rem; color: var(--c-muted); line-height: 1.65; }
.blog-card__more { display: inline-block; margin-top: 1rem; font-size: .75rem; letter-spacing: .1em; text-transform: uppercase; color: var(--c-primary); border-bottom: 1px solid currentColor; padding-bottom: 1px; }
.blog-page { padding: 2rem 0 5rem; }
.blog-page__header { margin-bottom: 2.5rem; }
.blog-post { padding: 2rem 0 5rem; }
.blog-post__header { max-width: 700px; margin: 0 auto 2.5rem; text-align: center; }
.blog-post__title { font-family: var(--font-h); font-size: clamp(2rem, 4vw, 3rem); font-weight: 500; line-height: 1.2; }
.blog-post__meta { font-size: .8rem; color: var(--c-muted); margin-top: .75rem; }
.blog-post__img { width: 100%; max-height: 480px; object-fit: cover; border-radius: var(--r-lg); margin-bottom: 2.5rem; }
.blog-post__body { max-width: 700px; margin: 0 auto; font-size: .92rem; line-height: 1.85; color: var(--c-muted); }
.blog-post__body p { margin-bottom: 1.25rem; }
.blog-post__body h2, .blog-post__body h3 { font-family: var(--font-h); font-weight: 500; margin: 2rem 0 .75rem; color: var(--c-text); }

/* ================================================================ BUTTONS */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: .4rem; padding: .8rem 1.75rem; border-radius: var(--r-sm); font-size: .8rem; font-weight: 400; letter-spacing: .1em; text-transform: uppercase; transition: all .25s; cursor: pointer; border: 1px solid transparent; }
.btn-primary { background: var(--c-primary); color: #fff; border-color: var(--c-primary); }
.btn-primary:hover { background: var(--c-primary-dk); border-color: var(--c-primary-dk); }
.btn-outline { background: transparent; color: var(--c-primary); border-color: var(--c-primary); }
.btn-outline:hover { background: var(--c-primary); color: #fff; }
.btn-text { background: none; border: none; padding: 0; color: var(--c-primary); font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; border-bottom: 1px solid currentColor; }
.aroma-products__cta { text-align: center; margin-top: 2.5rem; }

/* ================================================================ CART */
.cart-page { padding: 3rem 0 5rem; }
.cart-layout { display: grid; grid-template-columns: 1fr 360px; gap: 3rem; }
.cart-table { width: 100%; border-collapse: collapse; }
.cart-table th { text-align: left; padding: .75rem 0; font-size: .7rem; font-weight: 400; letter-spacing: .1em; text-transform: uppercase; color: var(--c-muted); border-bottom: 1px solid var(--c-border); }
.cart-table td { padding: 1.25rem 0; border-bottom: 1px solid var(--c-border); vertical-align: middle; }
.cart-item__img { width: 72px; height: 72px; object-fit: cover; border-radius: var(--r-md); }
.cart-item__name { font-family: var(--font-h); font-size: 1rem; font-weight: 500; }
.cart-item__variant { font-size: .78rem; color: var(--c-muted); margin-top: .2rem; }
.cart-remove { color: var(--c-muted); font-size: .78rem; margin-top: .5rem; transition: color .2s; }
.cart-remove:hover { color: var(--c-danger); }
.cart-summary { padding: 2rem; background: var(--c-bg-alt); border: 1px solid var(--c-border); border-radius: var(--r-lg); position: sticky; top: calc(var(--header-h) + 1.5rem); }
.cart-summary__title { font-family: var(--font-h); font-size: 1.3rem; font-weight: 500; margin-bottom: 1.5rem; }
.cart-summary__row { display: flex; justify-content: space-between; font-size: .88rem; margin-bottom: .6rem; color: var(--c-muted); }
.cart-summary__row--total { font-weight: 500; font-size: 1rem; color: var(--c-text); margin-top: .75rem; padding-top: .75rem; border-top: 1px solid var(--c-border); }
.cart-checkout-btn { width: 100%; margin-top: 1.5rem; }
.cart-empty { text-align: center; padding: 5rem 0; }
.cart-empty p { font-family: var(--font-h); font-size: 1.5rem; color: var(--c-muted); margin-bottom: 1.5rem; }
@media (max-width: 768px) { .cart-layout { grid-template-columns: 1fr; } }

/* ================================================================ CHECKOUT */
.checkout-page { padding: 3rem 0 5rem; }
.checkout-layout { display: grid; grid-template-columns: 1fr 380px; gap: 3rem; }
.checkout-title { font-family: var(--font-h); font-size: 1.8rem; font-weight: 500; margin-bottom: 2rem; }
.checkout-section { margin-bottom: 2rem; }
.checkout-section h3 { font-size: .72rem; font-weight: 400; letter-spacing: .12em; text-transform: uppercase; color: var(--c-muted); margin-bottom: 1rem; padding-bottom: .5rem; border-bottom: 1px solid var(--c-border); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
.form-row--1 { grid-template-columns: 1fr; }
.form-group { display: flex; flex-direction: column; gap: .35rem; }
.form-group label { font-size: .72rem; font-weight: 400; letter-spacing: .07em; text-transform: uppercase; color: var(--c-muted); }
.form-group input, .form-group select, .form-group textarea { padding: .65rem .9rem; border: 1px solid var(--c-border); border-radius: var(--r-sm); font-family: inherit; font-size: .9rem; background: var(--c-bg); transition: border-color .2s; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--c-accent); }
.checkout-summary { padding: 2rem; background: var(--c-bg-alt); border: 1px solid var(--c-border); border-radius: var(--r-lg); position: sticky; top: calc(var(--header-h) + 1.5rem); }
.checkout-summary__items { margin-bottom: 1.5rem; }
.checkout-summary__item { display: flex; align-items: center; gap: .75rem; padding: .6rem 0; border-bottom: 1px solid var(--c-border); }
.checkout-summary__item img { width: 52px; height: 52px; object-fit: cover; border-radius: var(--r-sm); }
.checkout-summary__item-name { font-size: .85rem; flex: 1; }
.checkout-summary__item-price { font-size: .88rem; font-weight: 500; }
.checkout-submit { width: 100%; margin-top: 1.5rem; }
@media (max-width: 768px) { .checkout-layout { grid-template-columns: 1fr; } .form-row { grid-template-columns: 1fr; } }

/* ================================================================ SHOP */
.shop-layout { display: grid; grid-template-columns: var(--sidebar-w) 1fr; gap: 2.5rem; padding: 2rem 0 5rem; }
.shop-sidebar { position: sticky; top: calc(var(--header-h) + 1rem); align-self: start; }
.shop-sidebar h3 { font-size: .7rem; font-weight: 400; letter-spacing: .12em; text-transform: uppercase; color: var(--c-muted); margin-bottom: .75rem; }
.filter-group { margin-bottom: 1.5rem; }
.filter-group__items { display: flex; flex-direction: column; gap: .4rem; }
.filter-item { display: flex; align-items: center; gap: .5rem; font-size: .875rem; }
.shop-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.5rem; }
.shop-count { font-size: .82rem; color: var(--c-muted); }
.shop-empty { text-align: center; padding: 4rem; color: var(--c-muted); }
.shop-empty p { margin-bottom: 1.5rem; }
@media (max-width: 900px) { .shop-layout { grid-template-columns: 1fr; } }
.category-page { padding-top: 2rem; padding-bottom: 5rem; }
.category-page__header { margin-bottom: 2rem; }

select { appearance: none; padding: .6rem .9rem; border: 1px solid var(--c-border); border-radius: var(--r-sm); font-family: inherit; font-size: .9rem; background: var(--c-bg); background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238c7b6e' fill='none' stroke-width='1.5'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right .75rem center; padding-right: 2.2rem; cursor: pointer; }
select:focus { outline: none; border-color: var(--c-accent); }

/* ================================================================ SEARCH */
.search-overlay { position: fixed; inset: 0; z-index: 200; background: rgba(255,255,255,.97); backdrop-filter: blur(12px); display: flex; align-items: flex-start; justify-content: center; padding-top: 12vh; }
.search-overlay[hidden] { display: none !important; }
.search-box { width: 100%; max-width: 600px; padding: 0 1.5rem; }
.search-input { width: 100%; padding: 1rem 0; border: none; border-bottom: 1px solid var(--c-border); font-family: var(--font-h); font-size: 2rem; font-weight: 400; background: transparent; outline: none; color: var(--c-text); }
.search-input::placeholder { color: var(--c-muted); }
.search-close { position: absolute; top: 1.5rem; right: 1.5rem; font-size: 1.5rem; color: var(--c-muted); }

/* ================================================================ BRAND PAGE */
.brand-page { padding: 2rem 0 5rem; }
.brand-page__header { margin-bottom: 2.5rem; text-align: center; }
.brand-page__logo { max-height: 80px; width: auto; margin: 0 auto 1rem; }
.brand-page__title { font-family: var(--font-h); font-size: 2.2rem; font-weight: 500; }
.brand-page__desc { font-size: .9rem; color: var(--c-muted); max-width: 580px; margin: 1rem auto 0; line-height: 1.8; }

/* ================================================================ PAGINATOR */
.paginator { display: flex; gap: .5rem; justify-content: center; margin-top: 2.5rem; flex-wrap: wrap; }
.paginator a, .paginator span { display: inline-flex; align-items: center; justify-content: center; width: 38px; height: 38px; border: 1px solid var(--c-border); border-radius: var(--r-sm); font-size: .85rem; color: var(--c-text); transition: all .2s; }
.paginator a:hover { border-color: var(--c-primary); color: var(--c-primary); }
.paginator .active { background: var(--c-primary); color: #fff; border-color: var(--c-primary); }

/* ================================================================ BREADCRUMBS */
.breadcrumbs { padding: .75rem 0; margin-bottom: 0; }
.breadcrumbs__list { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; list-style: none; padding: 0; margin: 0; font-size: .76rem; font-weight: 500; color: var(--c-muted); gap: 0; }
.breadcrumbs__item { display: flex; align-items: center; }
.breadcrumbs__item:not(:last-child)::after { content: '/'; margin: 0 .45rem; opacity: .35; font-weight: 400; }
.breadcrumbs__link { color: var(--c-muted); text-decoration: none; transition: color .15s; }
.breadcrumbs__link:hover { color: var(--c-primary); }
.breadcrumbs__current { color: var(--c-text); }

/* ================================================================ FOOTER */
.site-footer { background: var(--c-bg-alt); border-top: 1px solid var(--c-border); padding: 3.5rem 0 2rem; font-size: .82rem; color: var(--c-muted); }
.footer-grid { display: grid; grid-template-columns: 2fr repeat(3, 1fr); gap: 2.5rem; margin-bottom: 2.5rem; }
.footer-brand .site-logo { margin-bottom: .75rem; }
.footer-brand p { line-height: 1.7; font-size: .82rem; }
.footer-col h4 { font-size: .7rem; letter-spacing: .12em; text-transform: uppercase; color: var(--c-text); margin-bottom: .9rem; font-weight: 500; }
.footer-col ul { display: flex; flex-direction: column; gap: .4rem; }
.footer-col ul a { transition: color .2s; }
.footer-col ul a:hover { color: var(--c-primary); }
.footer-bottom { padding-top: 1.5rem; border-top: 1px solid var(--c-border); display: flex; justify-content: space-between; align-items: center; font-size: .75rem; flex-wrap: wrap; gap: .5rem; }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } .footer-bottom { flex-direction: column; text-align: center; } }

/* ================================================================ FLASH */
.flash { padding: 1rem 1.5rem; border-radius: var(--r-md); margin-bottom: 1rem; font-size: .88rem; }
.flash--success { background: #f0fdf4; color: #166534; border: 1px solid #bbf7d0; }
.flash--error   { background: #fff7ed; color: #9a3412; border: 1px solid #fed7aa; }
.flash--info    { background: var(--c-primary-lt); color: var(--c-primary-dk); border: 1px solid var(--c-accent-lt); }

/* ================================================================ MOBILE NAV / MINI CART */
.hamburger { display: none; flex-direction: column; gap: 5px; padding: .25rem; }
.hamburger span { display: block; width: 22px; height: 1.5px; background: var(--c-text); }
.mobile-nav { position: fixed; inset: 0; z-index: 150; background: var(--c-bg); padding: calc(var(--header-h) + 1.5rem) 2rem 2rem; display: flex; flex-direction: column; gap: 1.25rem; transform: translateX(100%); transition: transform .3s ease; }
.mobile-nav.open { transform: translateX(0); }
.mobile-nav a { font-family: var(--font-h); font-size: 1.25rem; color: var(--c-text); }

/* ================================================================ NAV CORRECTIONS */
.site-nav { display: flex; align-items: center; gap: 2rem; }
.site-nav__list { display: flex; align-items: center; list-style: none; }
.site-nav__list > li { position: relative; }
.site-nav__link { display: block; padding: .5rem .6rem; font-size: .78rem; font-weight: 400; letter-spacing: .08em; text-transform: uppercase; color: var(--c-text); opacity: .7; transition: opacity .2s; }
.site-nav__link:hover { opacity: 1; }

.has-dropdown { position: relative; }
.dropdown {
    position: absolute; top: calc(100% + .5rem); left: 0;
    min-width: 200px; background: #fff;
    border: 1px solid var(--c-border); border-radius: var(--r-lg);
    box-shadow: var(--sh-md); padding: .4rem 0;
    opacity: 0; visibility: hidden; transform: translateY(-6px);
    transition: opacity .2s, transform .2s, visibility .2s;
    z-index: 50; list-style: none;
}
.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown li a { display: block; padding: .55rem 1.1rem; font-size: .82rem; color: var(--c-muted); transition: color .2s, background .2s; }
.dropdown li a:hover { color: var(--c-primary); background: var(--c-bg-alt); }
@media (max-width: 768px) { .site-nav { display: none; } }

.header-actions__btn { display: flex; align-items: center; justify-content: center; width: 38px; height: 38px; border-radius: var(--r-md); color: var(--c-muted); position: relative; transition: color .2s; }
.header-actions__btn:hover { color: var(--c-primary); }
.cart-toggle__count { display: inline-flex; align-items: center; justify-content: center; min-width: 17px; height: 17px; padding: 0 3px; background: var(--c-primary); color: #fff; border-radius: 50%; font-size: .6rem; font-weight: 500; position: absolute; top: 2px; right: 2px; pointer-events: none; }
.lang-switcher { display: flex; align-items: center; gap: .35rem; }
.lang-switcher__link { font-size: .7rem; font-weight: 400; letter-spacing: .08em; text-transform: uppercase; color: var(--c-muted); padding: .2rem .3rem; transition: color .2s; }
.lang-switcher__link:hover { color: var(--c-primary); }

.mobile-menu-toggle { display: none; flex-direction: column; justify-content: center; gap: 5px; width: 38px; height: 38px; padding: .4rem; }
.mobile-menu-toggle span { display: block; width: 20px; height: 1.5px; background: var(--c-text); border-radius: 2px; transition: transform .3s, opacity .3s; }
.mobile-menu-toggle.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.mobile-menu-toggle.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.mobile-menu-toggle.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
@media (max-width: 768px) { .mobile-menu-toggle { display: flex; } }

.mobile-menu {
    position: fixed; top: 0; right: 0; bottom: 0; z-index: 150;
    width: min(85vw, 340px); background: var(--c-bg);
    padding: calc(var(--header-h) + 1.5rem) 1.5rem 2rem;
    overflow-y: auto; transform: translateX(100%);
    transition: transform .35s cubic-bezier(.25,.46,.45,.94);
    border-left: 1px solid var(--c-border);
    box-shadow: -8px 0 32px rgba(80,50,20,.1);
}
.mobile-menu.is-open { transform: translateX(0); }
.mobile-menu nav > ul { list-style: none; display: flex; flex-direction: column; }
.mobile-menu nav > ul > li > a { display: block; padding: .85rem 0; font-family: var(--font-h); font-size: 1.1rem; font-weight: 500; color: var(--c-text); border-bottom: 1px solid var(--c-border); transition: color .2s; }
.mobile-menu nav > ul > li > a:hover { color: var(--c-primary); }
.mobile-menu nav > ul > li > ul { list-style: none; padding-left: 1rem; margin-bottom: .25rem; }
.mobile-menu nav > ul > li > ul a { display: block; padding: .4rem 0; font-size: .88rem; color: var(--c-muted); transition: color .2s; }
.mobile-menu nav > ul > li > ul a:hover { color: var(--c-primary); }
.mobile-overlay { position: fixed; inset: 0; z-index: 140; background: rgba(44,32,24,.3); opacity: 0; visibility: hidden; transition: opacity .3s, visibility .3s; }
.mobile-overlay.is-open { opacity: 1; visibility: visible; }

.search-overlay { position: fixed; inset: 0; z-index: 200; background: rgba(255,255,255,.97); backdrop-filter: blur(10px); display: flex; align-items: flex-start; justify-content: center; padding-top: 12vh; }
.search-overlay[hidden] { display: none !important; }
.search-form { width: 100%; max-width: 580px; padding: 0 1.5rem; display: flex; align-items: center; gap: .75rem; border-bottom: 1px solid var(--c-border); }
.search-form input[type=search] { flex: 1; padding: 1rem 0; border: none; font-family: var(--font-h); font-size: 2.2rem; font-weight: 400; background: transparent; outline: none; color: var(--c-text); letter-spacing: -.01em; font-style: italic; }
.search-form input[type=search]::placeholder { color: var(--c-border); font-style: italic; }
.search-form button[type=submit] { flex-shrink: 0; color: var(--c-muted); transition: color .2s; }
.search-form button[type=submit]:hover { color: var(--c-primary); }
.search-overlay__close { position: absolute; top: 1.5rem; right: 1.5rem; font-size: 1.4rem; color: var(--c-muted); transition: color .2s; }
.search-overlay__close:hover { color: var(--c-primary); }

/* ================================================================ FOOTER CORRECTIONS */
.footer-cols { display: grid; grid-template-columns: 2fr repeat(3, 1fr); gap: 2.5rem; margin-bottom: 2.5rem; }
.footer-col h3 { font-size: .68rem; font-weight: 400; letter-spacing: .14em; text-transform: uppercase; color: var(--c-text); margin-bottom: .9rem; opacity: .8; }
.footer-col ul { display: flex; flex-direction: column; gap: .4rem; }
.footer-col ul li a { font-size: .82rem; color: var(--c-muted); transition: color .2s; }
.footer-col ul li a:hover { color: var(--c-primary); }
.footer-col--brand .footer-brand { display: block; font-family: var(--font-h); font-size: 1.4rem; font-weight: 500; color: var(--c-text); letter-spacing: .03em; margin-bottom: .6rem; }
.footer-tagline { font-size: .82rem; color: var(--c-muted); line-height: 1.7; margin-top: .25rem; font-weight: 300; }
.footer-reg { font-size: .7rem; color: var(--c-muted); margin-top: .25rem; opacity: .6; }
.footer-social { display: flex; gap: .75rem; margin-top: 1rem; }
.footer-social a { color: var(--c-muted); transition: color .2s; }
.footer-social a:hover { color: var(--c-primary); }
@media (max-width: 900px) { .footer-cols { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-cols { grid-template-columns: 1fr; } }
.mini-cart { position: fixed; top: 0; right: 0; z-index: 200; width: 380px; height: 100vh; background: var(--c-bg); border-left: 1px solid var(--c-border); padding: 2rem; transform: translateX(100%); transition: transform .35s ease; overflow-y: auto; }
.mini-cart.open { transform: translateX(0); }
.mini-cart__header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1.5rem; }
.mini-cart__title { font-family: var(--font-h); font-size: 1.3rem; font-weight: 500; }
.mini-cart__close { font-size: 1.3rem; color: var(--c-muted); }
.mini-cart__empty { text-align: center; padding: 3rem 0; color: var(--c-muted); }
.mini-cart__items { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 1.5rem; }
.mini-cart__item { display: flex; gap: 1rem; padding-bottom: 1rem; border-bottom: 1px solid var(--c-border); }
.mini-cart__item img { width: 64px; height: 64px; object-fit: cover; border-radius: var(--r-sm); flex-shrink: 0; }
.mini-cart__item-info { flex: 1; font-size: .85rem; }
.mini-cart__item-name { font-weight: 500; }
.mini-cart__item-price { color: var(--c-primary); margin-top: .2rem; }
.mini-cart__footer { border-top: 1px solid var(--c-border); padding-top: 1.25rem; }
.mini-cart__total { display: flex; justify-content: space-between; font-weight: 500; margin-bottom: 1rem; }
.overlay { position: fixed; inset: 0; background: rgba(0,0,0,.3); z-index: 149; display: none; }
.overlay.open { display: block; }

/* ================================================================ MISC */
.page-content { padding: 3rem 0 5rem; max-width: 760px; }
.page-content h1 { font-family: var(--font-h); font-size: 2.5rem; font-weight: 500; margin-bottom: 1.5rem; }
.page-content p { margin-bottom: 1.25rem; color: var(--c-muted); line-height: 1.85; }
.contact-form { max-width: 560px; display: flex; flex-direction: column; gap: 1rem; margin-top: 2rem; }
.order-success { text-align: center; padding: 5rem 0; }
.order-success__icon { font-size: 3rem; margin-bottom: 1rem; }
.order-success h1 { font-family: var(--font-h); font-size: 2.2rem; font-weight: 500; margin-bottom: 1rem; }
.order-success p { color: var(--c-muted); max-width: 480px; margin: 0 auto; }

/* ================================================================ REVEAL ANIMATIONS */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .55s ease, transform .55s ease; }
.reveal.revealed { opacity: 1; transform: translateY(0); }

/* stagger children */
.products-grid .product-card:nth-child(2) { transition-delay: .08s; }
.products-grid .product-card:nth-child(3) { transition-delay: .16s; }
.products-grid .product-card:nth-child(4) { transition-delay: .24s; }
.blog-grid .blog-card--aroma:nth-child(2) { transition-delay: .1s; }
.blog-grid .blog-card--aroma:nth-child(3) { transition-delay: .2s; }

/* cat placeholder (no image) */
.aroma-cat-card__placeholder {
    width: 100%; height: 100%;
    background: linear-gradient(135deg, var(--c-bg-deep) 0%, var(--c-accent-lt) 100%);
}

/* ================================================================ CART SIDEBAR */
.cart-sidebar { position: fixed; inset: 0; z-index: 200; }
.cart-sidebar__overlay { position: absolute; inset: 0; background: rgba(44,32,24,.35); cursor: pointer; }
.cart-sidebar__panel { position: absolute; top: 0; right: 0; bottom: 0; width: min(90vw, 400px); background: var(--c-bg); display: flex; flex-direction: column; overflow: hidden; box-shadow: -8px 0 32px rgba(80,50,20,.12); }
.cart-sidebar__header { display: flex; justify-content: space-between; align-items: center; padding: 1.25rem 1.5rem; border-bottom: 1px solid var(--c-border); }
.cart-sidebar__header h2 { font-family: var(--font-h); font-size: 1.3rem; font-weight: 500; }
.cart-sidebar__close { font-size: 1.2rem; color: var(--c-muted); transition: color .2s; padding: .25rem; }
.cart-sidebar__close:hover { color: var(--c-primary); }
.cart-sidebar__items { flex: 1; overflow-y: auto; padding: 1rem 1.5rem; display: flex; flex-direction: column; gap: 1rem; }
.cart-item { display: flex; gap: .9rem; align-items: flex-start; padding-bottom: 1rem; border-bottom: 1px solid var(--c-border); }
.cart-item:last-child { border-bottom: none; }
.cart-item__image { width: 64px; height: 64px; object-fit: cover; border-radius: var(--r-md); flex-shrink: 0; background: var(--c-bg-alt); }
.cart-item > div:nth-child(2) { flex: 1; min-width: 0; }
.cart-item__name { font-size: .88rem; font-weight: 400; line-height: 1.4; margin-bottom: .15rem; }
.cart-item__variant { font-size: .75rem; color: var(--c-muted); margin-bottom: .4rem; }
.cart-item__qty { display: flex; align-items: center; gap: .5rem; }
.cart-qty-minus, .cart-qty-plus { width: 26px; height: 26px; border-radius: 50%; border: 1px solid var(--c-border); font-size: 1rem; display: flex; align-items: center; justify-content: center; color: var(--c-muted); transition: border-color .2s, color .2s; }
.cart-qty-minus:hover, .cart-qty-plus:hover { border-color: var(--c-primary); color: var(--c-primary); }
.cart-item__qty span { font-size: .88rem; font-weight: 500; min-width: 20px; text-align: center; }
.cart-item > div:last-child { display: flex; flex-direction: column; align-items: flex-end; gap: .5rem; flex-shrink: 0; }
.cart-item__price { font-size: .9rem; font-weight: 500; color: var(--c-primary); white-space: nowrap; }
.cart-item__remove { font-size: .78rem; color: var(--c-muted); transition: color .2s; }
.cart-item__remove:hover { color: var(--c-danger); }
.cart-sidebar__footer { border-top: 1px solid var(--c-border); padding: 1.25rem 1.5rem; background: var(--c-bg-alt); }
.cart-subtotal { display: flex; justify-content: space-between; align-items: center; margin-bottom: .6rem; font-size: .88rem; }
.cart-subtotal strong { font-size: 1rem; font-weight: 500; color: var(--c-text); }
.cart-shipping-note { font-size: .72rem; color: var(--c-muted); margin-bottom: 1rem; line-height: 1.5; }
.btn--primary { display: block; width: 100%; padding: .85rem 1.5rem; text-align: center; background: var(--c-primary); color: #fff; border-radius: var(--r-sm); font-size: .78rem; font-weight: 400; letter-spacing: .14em; text-transform: uppercase; transition: background .25s; }
.btn--primary:hover { background: var(--c-primary-dk); }
.btn--full { display: block; width: 100%; }
.btn--outline { display: block; width: 100%; padding: .75rem 1.5rem; text-align: center; border: 1px solid var(--c-border); color: var(--c-muted); border-radius: var(--r-sm); font-size: .78rem; font-weight: 400; letter-spacing: .12em; text-transform: uppercase; margin-top: .5rem; transition: border-color .2s, color .2s; }
.btn--outline:hover { border-color: var(--c-primary); color: var(--c-primary); }
.cart-empty { text-align: center; padding: 3rem 1.5rem; display: flex; flex-direction: column; align-items: center; gap: 1rem; }
.cart-empty svg { color: var(--c-accent-lt); }
.cart-empty p { color: var(--c-muted); font-size: .9rem; }
.btn--ghost { display: inline-flex; align-items: center; padding: .6rem 1.5rem; border: 1px solid var(--c-border); color: var(--c-muted); border-radius: var(--r-sm); font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; transition: border-color .2s, color .2s; }
.btn--ghost:hover { border-color: var(--c-primary); color: var(--c-primary); }
.btn--sm { font-size: .72rem; padding: .4rem .9rem; }

/* ================================================================ CART PAGE */
.cart-page__title { font-family: var(--font-h); font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 500; margin-bottom: 2rem; }
.cart-page__layout { display: grid; grid-template-columns: 1fr 340px; gap: 2.5rem; align-items: start; }
@media (max-width: 900px) { .cart-page__layout { grid-template-columns: 1fr; } }
.cart-page__summary { background: var(--c-bg-alt); border: 1px solid var(--c-border); border-radius: var(--r-lg); padding: 1.75rem; position: sticky; top: calc(var(--header-h) + 1rem); }
.cart-page__summary h2 { font-family: var(--font-h); font-size: 1.2rem; font-weight: 500; margin-bottom: 1.25rem; }
.summary-row { display: flex; justify-content: space-between; font-size: .875rem; color: var(--c-muted); padding: .4rem 0; }
.summary-row--total { font-weight: 500; font-size: .95rem; color: var(--c-text); padding-top: .75rem; margin-top: .5rem; border-top: 1px solid var(--c-border); }
.cart-table__product { display: flex; align-items: center; gap: .75rem; }
.cart-table__product img { width: 60px; height: 60px; object-fit: cover; border-radius: var(--r-md); flex-shrink: 0; }
.cart-table__name { font-weight: 400; font-size: .9rem; }
.qty-wrap { display: inline-flex; align-items: center; border: 1px solid var(--c-border); border-radius: var(--r-sm); overflow: hidden; }
.qty-wrap .qty-btn { width: 32px; height: 34px; font-size: 1rem; display: flex; align-items: center; justify-content: center; color: var(--c-muted); transition: color .2s, background .2s; }
.qty-wrap .qty-btn:hover { color: var(--c-primary); background: var(--c-primary-lt); }
.qty-wrap .qty-input { width: 42px; height: 34px; text-align: center; border: none; border-left: 1px solid var(--c-border); border-right: 1px solid var(--c-border); font-family: inherit; font-size: .9rem; font-weight: 500; outline: none; -moz-appearance: textfield; }
.qty-wrap .qty-input::-webkit-outer-spin-button, .qty-wrap .qty-input::-webkit-inner-spin-button { -webkit-appearance: none; }
.cart-loading { padding: 2rem; text-align: center; color: var(--c-muted); font-size: .9rem; }
.cart-empty-note { font-size: .88rem; color: var(--c-muted); text-align: center; padding: 1rem 0; }

/* ================================================================ CHECKOUT */
.checkout-page__title { font-family: var(--font-h); font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 500; margin-bottom: 2rem; }
.checkout-section__title { font-size: .68rem; font-weight: 400; letter-spacing: .16em; text-transform: uppercase; color: var(--c-muted); margin-bottom: 1.25rem; padding-bottom: .6rem; border-bottom: 1px solid var(--c-border); }
.req { color: var(--c-danger); }
.form-label { font-size: .68rem; font-weight: 400; letter-spacing: .1em; text-transform: uppercase; color: var(--c-muted); margin-bottom: .35rem; display: block; }
.form-input { width: 100%; padding: .75rem 1rem; border: 1px solid var(--c-border); border-radius: var(--r-md); font-family: inherit; font-size: .9rem; font-weight: 300; background: var(--c-bg); transition: border-color .2s; outline: none; }
.form-input:focus { border-color: var(--c-primary); }
.form-textarea { resize: vertical; min-height: 80px; }
.form-error { display: block; font-size: .75rem; color: var(--c-danger); margin-top: .25rem; min-height: 1em; }
.has-error .form-input { border-color: var(--c-danger); }
.delivery-methods { display: flex; flex-direction: column; gap: .5rem; margin-bottom: 1rem; }
.delivery-method { display: flex; align-items: center; gap: 1rem; padding: .9rem 1.1rem; border: 1px solid var(--c-border); border-radius: var(--r-md); cursor: pointer; transition: border-color .2s, background .2s; }
.delivery-method.is-active { border-color: var(--c-primary); background: var(--c-primary-lt); }
.delivery-method input[type=radio] { width: 16px; height: 16px; accent-color: var(--c-primary); flex-shrink: 0; }
.delivery-method__logo img { height: 26px; width: auto; }
.delivery-method__info { flex: 1; }
.delivery-method__info strong { display: block; font-size: .85rem; font-weight: 500; }
.delivery-method__info span { font-size: .75rem; color: var(--c-muted); }
.delivery-method__price { font-size: .88rem; font-weight: 500; color: var(--c-primary); white-space: nowrap; }
.parcel-selector { margin-top: .75rem; }
.parcel-search-wrap { position: relative; margin-bottom: .5rem; }
.parcel-search-clear { position: absolute; right: .75rem; top: 50%; transform: translateY(-50%); color: var(--c-muted); font-size: 1rem; }
.parcel-list { max-height: 210px; overflow-y: auto; border: 1px solid var(--c-border); border-radius: var(--r-md); }
.parcel-item { padding: .6rem 1rem; cursor: pointer; transition: background .15s; border-bottom: 1px solid var(--c-border); }
.parcel-item:last-child { border-bottom: none; }
.parcel-item:hover, .parcel-item.is-selected { background: var(--c-primary-lt); }
.parcel-item.is-selected { color: var(--c-primary); }
.parcel-item__name { display: block; font-size: .85rem; }
.parcel-item__addr { display: block; font-size: .75rem; color: var(--c-muted); }
.parcel-loading, .parcel-empty, .parcel-error { padding: 1rem; text-align: center; font-size: .82rem; color: var(--c-muted); }
.payment-methods { display: flex; flex-direction: column; gap: .5rem; }
.payment-method { display: flex; align-items: center; gap: 1rem; padding: .9rem 1.1rem; border: 1px solid var(--c-border); border-radius: var(--r-md); cursor: pointer; transition: border-color .2s, background .2s; }
.payment-method.is-active { border-color: var(--c-primary); background: var(--c-primary-lt); }
.payment-method input[type=radio] { width: 16px; height: 16px; accent-color: var(--c-primary); flex-shrink: 0; }
.payment-method__icon { font-size: 1.4rem; flex-shrink: 0; }
.payment-method__info strong { display: block; font-size: .85rem; font-weight: 500; }
.payment-method__info span { font-size: .75rem; color: var(--c-muted); }
.coupon-row { display: flex; gap: .6rem; }
.coupon-row .form-input { flex: 1; }
.coupon-feedback { font-size: .78rem; margin-top: .4rem; min-height: 1.2em; }
.coupon-feedback.error { color: var(--c-danger); }
.coupon-feedback.success { color: var(--c-success); }
.checkout-terms { margin: 1rem 0; }
.checkbox-label { display: flex; align-items: flex-start; gap: .6rem; font-size: .875rem; font-weight: 300; cursor: pointer; line-height: 1.6; }
.checkbox-label input[type=checkbox] { width: 16px; height: 16px; flex-shrink: 0; accent-color: var(--c-primary); margin-top: 3px; }
.checkbox-label a { color: var(--c-primary); text-decoration: underline; }
.btn-checkout { width: 100%; padding: .9rem; font-size: .8rem; font-weight: 400; letter-spacing: .18em; text-transform: uppercase; margin-top: .5rem; }
.checkout-error { background: #fef9f7; color: var(--c-danger); border: 1px solid var(--c-accent-lt); padding: .9rem 1.1rem; border-radius: var(--r-md); margin-top: .75rem; font-size: .85rem; }
.summary-item { display: flex; align-items: center; gap: .75rem; padding: .6rem 0; border-bottom: 1px solid var(--c-border); }
.summary-item img { width: 50px; height: 50px; object-fit: cover; border-radius: var(--r-sm); flex-shrink: 0; background: var(--c-bg-alt); }
.summary-item__info { flex: 1; min-width: 0; }
.summary-item__name { font-size: .85rem; font-weight: 400; display: block; }
.summary-item__variant { font-size: .72rem; color: var(--c-muted); display: block; }
.summary-item__qty { font-size: .72rem; color: var(--c-muted); }
.summary-item__price { font-size: .88rem; font-weight: 500; color: var(--c-primary); white-space: nowrap; flex-shrink: 0; }
.checkout-summary__totals { padding-top: .5rem; }
.summary-vat { font-size: .7rem; color: var(--c-muted); text-align: right; margin-top: .4rem; }
.summary-row--discount { color: var(--c-success); }

/* ================================================================ SHOP LISTING */
.shop-filters { border-right: 1px solid var(--c-border); padding-right: 1.5rem; }
.shop-filters__title { font-size: .68rem; font-weight: 400; letter-spacing: .16em; text-transform: uppercase; color: var(--c-muted); margin-bottom: 1.25rem; }
.filter-group { margin-bottom: 1.75rem; }
.filter-group__title { font-size: .68rem; font-weight: 400; letter-spacing: .14em; text-transform: uppercase; color: var(--c-muted); margin-bottom: .75rem; }
.filter-option { display: flex; align-items: center; gap: .5rem; padding: .3rem 0; font-size: .875rem; font-weight: 300; cursor: pointer; transition: color .2s; }
.filter-option:hover { color: var(--c-primary); }
.filter-option input[type=checkbox] { width: 15px; height: 15px; accent-color: var(--c-primary); flex-shrink: 0; }
.price-range { display: flex; align-items: center; gap: .5rem; }
.price-range input { width: 78px; padding: .5rem .6rem; border: 1px solid var(--c-border); border-radius: var(--r-md); font-family: inherit; font-size: .85rem; font-weight: 300; outline: none; transition: border-color .2s; }
.price-range input:focus { border-color: var(--c-primary); }
.price-range span { color: var(--c-muted); }
.shop-main { min-width: 0; }
.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
@media (max-width: 1024px) { .product-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .product-grid { grid-template-columns: 1fr; } }
.content-banner { border-radius: var(--r-md); overflow: hidden; }
.form-row--2 { grid-template-columns: 1fr 1fr !important; }
@media (max-width: 640px) { .form-row--2 { grid-template-columns: 1fr !important; } }

/* ================================================================ LOGO TEXT */
.site-logo__text { font-family: var(--font-h); font-size: 1.5rem; font-weight: 500; letter-spacing: .03em; color: var(--c-primary); }

/* ================================================================ HERO BUTTON HOVER */
.btn-hero { position: relative; overflow: hidden; }
.btn-hero::after { content: ''; position: absolute; inset: 0; background: var(--c-primary); opacity: 0; transition: opacity .25s; z-index: -1; }
.btn-hero:hover { color: #fff; background: var(--c-primary); border-color: var(--c-primary); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(107,76,54,.25); }
.btn-hero-link:hover { opacity: .6; text-decoration: none; }

/* ================================================================ ERROR PAGES */
.error-page { display: flex; align-items: center; justify-content: center; min-height: 60vh; padding: 4rem 2rem; }
.error-page__inner { text-align: center; max-width: 520px; }
.error-page__code { font-family: var(--font-h); font-size: clamp(5rem, 15vw, 9rem); font-weight: 400; color: var(--c-accent-lt); line-height: 1; margin-bottom: .5rem; font-style: italic; }
.error-page__title { font-family: var(--font-h); font-size: clamp(1.4rem, 3vw, 2rem); font-weight: 500; margin-bottom: .75rem; }
.error-page__text { color: var(--c-muted); line-height: 1.75; font-weight: 300; margin-bottom: 2rem; }
.error-page__actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-bottom: 2rem; }
.error-page__search { display: flex; justify-content: center; }
.error-page__search form { display: flex; gap: .5rem; width: 100%; max-width: 380px; }
.error-page__search-input { flex: 1; padding: .7rem 1rem; border: 1px solid var(--c-border); border-radius: var(--r-sm); font-family: inherit; font-size: .9rem; font-weight: 300; outline: none; transition: border-color .2s; }
.error-page__search-input:focus { border-color: var(--c-primary); }

/* ================================================================ GRID OVERFLOW FIX */
/* Prevent grid cells from overflowing their track */
.product-grid > *,
.products-grid > *,
.products-grid--4 > *,
.products-grid--3 > * { min-width: 0; }

/* ================================================================ PRODUCT CARD IMAGE — aspect-ratio fallback */
/* Modern browsers: aspect-ratio handles it */
.product-card__image-wrap {
    position: relative; display: block; overflow: hidden;
    aspect-ratio: 1 / 1; background: var(--c-bg-alt);
}
.product-card__image-wrap img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform .5s ease; display: block;
}
/* Fallback for Safari < 15 / older Android */
@supports not (aspect-ratio: 1) {
    .product-card__image-wrap { padding-bottom: 100%; height: 0; }
    .product-card__image-wrap img,
    .product-card__no-image { position: absolute; inset: 0; width: 100%; height: 100%; }
}
/* Minimum height so no-image cards don't collapse */
.product-card__no-image {
    min-height: 160px;
    width: 100%; height: 100%;
    display: flex; align-items: center; justify-content: center;
    font-size: 3rem; color: var(--c-border);
    background: var(--c-bg-deep);
}

nav.breadcrumbs.container { margin-bottom: 0; }

.category-page.container { padding-top: 0; }
.blog-page.container { padding-top: 1.5rem; padding-bottom: 4rem; }
.blog-post-page.container { padding-top: 1.5rem; padding-bottom: 4rem; }

/* ================================================================ PROSE */
.prose { max-width: 740px; margin: 2rem auto 0; font-size: 1rem; line-height: 1.8; color: var(--c-text); }
.prose h2 { font-size: 1.4rem; font-weight: 700; margin: 2rem 0 .75rem; line-height: 1.3; }
.prose h3 { font-size: 1.15rem; font-weight: 700; margin: 1.5rem 0 .5rem; }
.prose p { margin-bottom: 1.2em; }
.prose ul, .prose ol { padding-left: 1.5rem; margin-bottom: 1.2em; }
.prose li { margin-bottom: .4em; }
.prose a { color: var(--c-primary); text-decoration: underline; }
.prose a:hover { opacity: .8; }
.prose strong { font-weight: 700; }
.prose em { font-style: italic; }
.prose blockquote { border-left: 3px solid var(--c-primary); padding: .75rem 1.25rem; margin: 1.5rem 0; background: var(--c-bg-alt); border-radius: 0 var(--r-md) var(--r-md) 0; font-style: italic; color: var(--c-muted); }
.prose img { max-width: 100%; height: auto; border-radius: var(--r-md); margin: 1.5rem 0; }
.prose hr { border: none; border-top: 1px solid var(--c-border); margin: 2rem 0; }
.prose pre { background: var(--c-bg-deep); padding: 1rem 1.25rem; border-radius: var(--r-md); overflow-x: auto; font-size: .875rem; margin-bottom: 1.2em; }
.prose code { background: var(--c-bg-alt); padding: .1em .35em; border-radius: 3px; font-size: .9em; }

/* ================================================================ CATEGORY PAGE */
.category-page { padding-bottom: 4rem; }
.category-page.container { padding-top: 0; }
.category-page__header { padding: 1.25rem 0 1.5rem; }
.category-page__title { font-family: var(--font-h); font-size: clamp(1.5rem, 3vw, 2.2rem); font-weight: 500; }
.category-page__desc { font-size: .9rem; color: var(--c-muted); margin-top: .5rem; line-height: 1.7; }
.subcategory-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: 1rem; margin-bottom: 2rem; }
.subcategory-card { display: flex; flex-direction: column; align-items: center; gap: .5rem; padding: 1rem; border: 1px solid var(--c-border); border-radius: var(--r-md); text-align: center; font-size: .85rem; transition: border-color .2s, background .2s; }
.subcategory-card:hover { border-color: var(--c-primary); background: var(--c-primary-lt); }
.subcategory-card img { width: 64px; height: 64px; object-fit: cover; border-radius: var(--r-sm); }
.subcategory-card__name { font-weight: 400; color: var(--c-text); }
.subcategory-card__count { font-size: .72rem; color: var(--c-muted); }

/* ================================================================ SHOP LAYOUT — container fix */
.shop-layout {
    display: grid;
    grid-template-columns: var(--sidebar-w) 1fr;
    gap: 2.5rem;
    padding-top: 1.5rem;
    padding-bottom: 4rem;
    align-items: start;
}
/* When inside .container (category-page), no extra padding needed */
.category-page .shop-layout,
.container .shop-layout { padding-bottom: 0; }

/* ================================================================ SHOP FILTER TOGGLE (mobile) */
.shop-filter-bar { display: none; }
.shop-filter-toggle {
    display: flex; align-items: center; gap: .5rem;
    padding: .55rem 1.1rem; border: 1px solid var(--c-border);
    border-radius: var(--r-full); font-size: .78rem;
    font-weight: 400; letter-spacing: .06em; color: var(--c-muted);
    background: var(--c-bg); transition: border-color .2s, color .2s;
}
.shop-filter-toggle:hover,
.shop-filter-toggle.is-active { border-color: var(--c-primary); color: var(--c-primary); }

@media (max-width: 900px) {
    .shop-filter-bar { display: flex; padding: .75rem 0 0; }
    .shop-layout { grid-template-columns: 1fr; gap: 1.5rem; padding-top: 1rem; }
    .shop-filters {
        display: none;
        border-right: none;
        padding-right: 0;
        padding: 1rem;
        background: var(--c-bg-alt);
        border: 1px solid var(--c-border);
        border-radius: var(--r-lg);
        margin-bottom: .5rem;
    }
    .shop-filters.is-open { display: block; }
    .shop-sidebar { position: static; }
}

/* ================================================================ HEADER MOBILE */
@media (max-width: 480px) {
    .header-inner { gap: .75rem; }
    .lang-switcher { display: none; }
    .site-logo img { height: 32px; }
    .site-logo__text { font-size: 1.2rem; }
}

/* ================================================================ PRODUCTS GRID MOBILE */
@media (max-width: 540px) {
    .products-grid--4, .products-grid--3 { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
    .product-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
}
@media (max-width: 360px) {
    .products-grid--4, .products-grid--3, .product-grid { grid-template-columns: 1fr; }
}

/* ================================================================ MOBILE PRODUCT CARD COMPACT */
@media (max-width: 540px) {
    .product-card__body { padding: .75rem .85rem .1rem; }
    .product-card__name { font-size: .95rem; }
    .product-card__add-btn { margin: .5rem .85rem .75rem; width: calc(100% - 1.7rem); padding: .55rem; font-size: .72rem; }
}

/* ================================================================ FOOTER MOBILE */
@media (max-width: 480px) {
    .footer-cols { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; text-align: center; }
}

/* ================================================================ CART & CHECKOUT MOBILE */
@media (max-width: 640px) {
    .cart-page__layout { grid-template-columns: 1fr; }
    .checkout-layout { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .checkout-page { padding: 1.5rem 0 3rem; }
}

/* ================================================================ SECTION HEADER MOBILE */
@media (max-width: 540px) {
    .section-header { flex-direction: column; align-items: flex-start; gap: .5rem; }
    .section-title { font-size: 1.5rem; }
}

/* ================================================================ PRODUCT DETAIL MOBILE */
@media (max-width: 600px) {
    .product-detail__actions { flex-wrap: wrap; }
    .product-detail__qty-wrap { order: 1; }
    .btn-detail-cart { order: 2; min-width: 100%; }
    .tabs-nav { overflow-x: auto; -webkit-overflow-scrolling: touch; flex-wrap: nowrap; }
    .tab-btn { white-space: nowrap; flex-shrink: 0; padding: .65rem 1rem; }
}

/* ---- Review form ---- */
.review-form-wrap { margin-top: 2.5rem; padding-top: 2rem; border-top: 1px solid var(--c-border, #e5e7eb); }
.review-form__title { font-size: 1.05rem; font-weight: 700; margin-bottom: 1.25rem; }
.review-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 540px) { .review-form__row { grid-template-columns: 1fr; } }
.review-form__group { display: flex; flex-direction: column; gap: .3rem; margin-bottom: .85rem; }
.review-form__label { font-size: .82rem; font-weight: 600; color: var(--c-text-2, #374151); }
.review-form__label span { color: #ef4444; }
.review-form__input {
    padding: .55rem .85rem; border: 1px solid var(--c-border, #d1d5db);
    border-radius: 7px; outline: none; transition: border .15s;
    font-size: .9rem; font-family: inherit;
}
.review-form__input:focus { border-color: var(--c-primary, #0891b2); }
.review-form__textarea { resize: vertical; min-height: 100px; }
.review-form__submit { margin-top: .5rem; }
.review-form__note { font-size: .75rem; color: var(--c-muted, #9ca3af); margin-top: .5rem; }
.review-form__feedback { margin-top: .5rem; font-size: .85rem; font-weight: 500; min-height: 1.2em; }
.star-rating-input { display: flex; gap: .35rem; flex-direction: row-reverse; justify-content: flex-end; }
.star-label { font-size: 1.6rem; cursor: pointer; color: #d1d5db; transition: color .1s; user-select: none; }

/* ---- Cat icon card extras ---- */
.cat-icon-card { position: relative; }
.cat-icon-card__count { display: block; font-size: .72rem; color: var(--c-muted, #6b7280); margin-top: .15rem; }
.cat-icon-card__badge {
    position: absolute; top: .5rem; right: .5rem;
    padding: .15rem .55rem; border-radius: var(--r-full, 20px);
    background: #f59e0b; color: #fff;
    font-size: .62rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase;
}
.cat-icon-card--soon { opacity: .85; }
.cat-icon-card--soon .cat-icon-card__placeholder { filter: grayscale(.3); }

/* ---- Empty category state ---- */
.category-empty-state {
    text-align: center; padding: 4rem 1.5rem; background: var(--c-bg-alt, #f9fafb);
    border-radius: 14px; margin: 2rem 0;
}
.category-empty-state__icon { font-size: 3rem; margin-bottom: 1rem; }
.category-empty-state__title { font-size: 1.4rem; font-weight: 700; margin-bottom: .5rem; }
.category-empty-state__text { color: var(--c-muted, #6b7280); margin-bottom: 1.5rem; max-width: 480px; margin-left: auto; margin-right: auto; }

/* ---- SEO intro block ---- */
.seo-intro { padding: 1.5rem 0 0; }
.seo-intro__title { font-size: 1.5rem; font-weight: 800; margin-bottom: .75rem; color: var(--c-text, #111); }
.seo-intro__text { font-size: .95rem; line-height: 1.65; color: var(--c-text-2, #4b5563); max-width: 920px; }
.seo-intro__text a { color: var(--c-primary, #0891b2); text-decoration: underline; text-underline-offset: 3px; }
.seo-intro__text a:hover { text-decoration: none; }
@media (max-width: 540px) { .seo-intro__title { font-size: 1.25rem; } .seo-intro__text { font-size: .9rem; } }

/* ---- Checkout saved-data note ---- */
.checkout-saved-note {
    margin-top: .75rem; padding: .65rem .85rem; background: #ecfdf5;
    border-left: 3px solid #10b981; border-radius: 6px;
    font-size: .82rem; color: #065f46;
}
.checkout-saved-note a { color: #047857; text-decoration: underline; margin-left: .5rem; }

/* ---- Category page intro + illustration ---- */
.category-page__intro { display: flex; gap: 1.5rem; align-items: flex-start; margin-bottom: 1.25rem; }
.category-page__illustration { flex-shrink: 0; width: 180px; height: 180px; border-radius: 12px; overflow: hidden; background: var(--c-bg-alt, #f9fafb); display: flex; align-items: center; justify-content: center; }
.category-page__illustration img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 700px) {
  .category-page__intro { flex-direction: column; gap: 1rem; }
  .category-page__illustration { width: 100%; height: 160px; }
}

/* ---- Brand chips ---- */
.category-brands { display: flex; flex-wrap: wrap; gap: .5rem; align-items: center; margin-bottom: 1.5rem; padding: .75rem 1rem; background: var(--c-bg-alt, #f8fafc); border-radius: 10px; }
.category-brands__label { font-size: .8rem; font-weight: 700; color: var(--c-text-2, #4b5563); margin-right: .25rem; }
.category-brand-chip { display: inline-flex; align-items: center; padding: .35rem .9rem; background: #fff; border: 1px solid var(--c-border, #e5e7eb); border-radius: 999px; font-size: .82rem; font-weight: 600; color: var(--c-text, #111); transition: all .15s; }
.category-brand-chip:hover { background: var(--c-primary, #0891b2); color: #fff; border-color: var(--c-primary, #0891b2); }

/* ---- Load more ---- */
.load-more-wrap { text-align: center; margin: 2.5rem 0 1rem; }
.btn-load-more { padding: .85rem 2rem; font-size: .95rem; }
.btn-load-more:disabled { opacity: .6; cursor: wait; }

/* ---- FAQ section ---- */
.category-faq { padding: 2.5rem 0 3rem; background: var(--c-bg-alt, #fafafa); margin-top: 2.5rem; }
.category-faq__title { font-size: 1.6rem; font-weight: 800; margin-bottom: 1.5rem; color: var(--c-text, #111); }
.category-faq__list { max-width: 800px; }
.faq-item { background: #fff; border: 1px solid var(--c-border, #e5e7eb); border-radius: 10px; margin-bottom: .65rem; overflow: hidden; }
.faq-item__q { padding: 1rem 1.25rem; font-weight: 600; font-size: .95rem; cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; transition: background .15s; }
.faq-item__q::-webkit-details-marker { display: none; }
.faq-item__q::after { content: '+'; font-size: 1.4rem; font-weight: 400; color: var(--c-muted, #9ca3af); transition: transform .2s; }
.faq-item[open] .faq-item__q::after { transform: rotate(45deg); }
.faq-item__q:hover { background: #fafafa; }
.faq-item__a { padding: 0 1.25rem 1.1rem; color: var(--c-text-2, #4b5563); line-height: 1.65; font-size: .9rem; }

@media (max-width: 540px) {
  .category-faq__title { font-size: 1.3rem; }
  .faq-item__q { font-size: .9rem; }
}

/* ---- Parcel list collapse after selection ---- */
.parcel-list.is-collapsed { max-height: 0; overflow: hidden; padding: 0; border: none; }
.parcel-selector.has-selection .parcel-search-wrap { position: relative; }
.parcel-selector.has-selection .parcel-search-wrap::after {
    content: '✓'; position: absolute; right: 2.5rem; top: 50%; transform: translateY(-50%);
    color: #16a34a; font-weight: 700; font-size: 1.1rem; pointer-events: none;
}
.parcel-list { transition: max-height .3s ease; }
