/* ─────────────────────────────────────────────
   TOP BAR
──────────────────────────────────────────── */

.navbar-topbar { background-color: var(--ink); color: rgba(247,245,240,0.75); font-size: 12px; padding: 8px 0; }

.navbar-topbar a { color: rgba(247,245,240,0.75); text-decoration: none; transition: color 0.2s; }

.navbar-topbar a:hover { color: var(--white); }

.topbar-notice { color: var(--accent-lt); font-weight: 600; font-size: 12px; letter-spacing: 0.04em; }

/* ─────────────────────────────────────────────
   MAIN HEADER
──────────────────────────────────────────── */

.navbar-main { background: var(--white); border-bottom: 1px solid var(--line); padding: 16px 0; z-index: 1030; }

.navbar-brand-link { min-width: 0; padding: 2px 0; }

.navbar-logo-icon { display: flex; align-items: center; justify-content: center; width: 180px; line-height: 1; flex-shrink: 0; }

.navbar-logo-image { display: block; width: 100%; max-width: 180px; height: auto; object-fit: contain; }

.navbar-brand-lockup { display: flex; flex-direction: column; min-width: 0; }

.navbar-brand-name { font-family: var(--font-display); font-size: 26px; font-weight: 600; color: var(--ink); line-height: 1.1; text-decoration: none; letter-spacing: 0.01em; }

.navbar-brand-name:hover { color: var(--accent); }

.navbar-brand-tagline { font-size: 11px; color: #999; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; }

/* ─────────────────────────────────────────────
   SEARCH
──────────────────────────────────────────── */

.search-input { width: 100%; padding: 10px 44px 10px 16px; border: 1.5px solid var(--line); border-radius: var(--radius); font-size: 14px; background: var(--off-white); outline: none; transition: border-color 0.2s, background 0.2s; }

.search-input:focus { border-color: var(--accent); background: var(--white); }

.search-btn { position: absolute; right: 12px; top: 50%; transform: translateY(-50%); background: none; border: none; cursor: pointer; color: #999; transition: color 0.2s; }

.search-btn:hover { color: var(--accent); }

.icon-sm { font-size: 15px; }

/* ─────────────────────────────────────────────
   ICON BUTTONS
──────────────────────────────────────────── */

.nav-icon-btn { background: none; border: none; cursor: pointer; color: var(--ink); padding: 6px; border-radius: var(--radius); transition: color 0.2s, background 0.2s; display: flex; align-items: center; gap: 6px; text-decoration: none; font-size: 13px; font-weight: 500; }

.nav-icon-btn:hover { color: var(--accent); }

.nav-account-trigger { min-height: 40px; }

.account-caret { font-size: 11px; transition: transform 0.2s ease; }

.nav-account-trigger[aria-expanded="true"] .account-caret { transform: rotate(180deg); }

.icon-md { font-size: 22px; }

.icon-lg { font-size: 26px; }

/* ─────────────────────────────────────────────
   CART BADGE
──────────────────────────────────────────── */

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

/* ─────────────────────────────────────────────
   NAV BAR
──────────────────────────────────────────── */

.navbar-nav-bar { background: var(--white); border-bottom: 1px solid var(--line); }

.navbar-nav-list { gap: 3rem; width: 100%; }

.navbar-nav-bar .nav-link { font-size: 15px; font-weight: 600; color: #6f685f; padding: 16px 0; text-decoration: none; border-bottom: 2px solid transparent; transition: color 0.2s, border-color 0.2s; letter-spacing: 0.01em; }

.navbar-nav-bar .nav-link:hover, .navbar-nav-bar .nav-link.active { color: var(--gold); border-bottom-color: var(--accent); }

.nav-link-primary { color: var(--ink-soft); font-weight: 700; }

/* ─────────────────────────────────────────────
   ACCOUNT DROPDOWN
──────────────────────────────────────────── */

.account-dropdown { position: absolute; top: calc(100% + 8px); right: 0; width: 200px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: 0 8px 32px rgba(15,14,12,0.12); padding: 6px 0; z-index: 1000; display: none; }

.account-dropdown.show { display: block; }

.account-dropdown__head { padding: 12px 16px 10px; border-bottom: 1px solid var(--line); margin-bottom: 4px; }

.account-dropdown__name { font-size: 14px; font-weight: 700; color: var(--ink); }

.account-dropdown__meta { margin-top: 2px; font-size: 12px; color: #8a847b; word-break: break-word; }

.account-dropdown a { display: flex; align-items: center; gap: 10px; padding: 10px 16px; font-size: 13px; color: var(--ink); text-decoration: none; }

.account-dropdown a:hover { background: var(--off-white); color: var(--accent); }

.dropdown-divider { border-top: 1px solid var(--line); margin: 4px 0; }

.dropdown-logout { color: #c0392b; }

/* ─────────────────────────────────────────────
   OFFCANVAS
──────────────────────────────────────────── */

.offcanvas-nav { width: 300px; max-width: 85vw; }

.offcanvas-header-custom { background: var(--ink); padding: 20px; }

.offcanvas-logo-icon { display: flex; align-items: center; justify-content: center; width: 54px; flex-shrink: 0; }

.offcanvas-logo-image { display: block; width: 100%; max-width: 54px; height: auto; object-fit: contain; }

.offcanvas-logo-text { color: var(--white); font-size: 20px; }

.offcanvas-search { background: var(--off-white); border-bottom: 1px solid var(--line); }

.offcanvas-link { display: flex; align-items: center; gap: 8px; padding: 12px 20px; font-size: 15px; color: var(--ink); text-decoration: none; }

.offcanvas-link:hover { background: var(--off-white); color: var(--accent); }

.offcanvas-link-strong { font-weight: 700; }

.offcanvas-icon-accent { color: var(--accent); }

/* ─────────────────────────────────────────────
   MOBILE ACCOUNT
──────────────────────────────────────────── */

.mobile-account-link { display: flex; align-items: center; gap: 8px; padding: 12px 20px; font-size: 14px; text-decoration: none; color: var(--ink); }

.mobile-account-link:hover { background: var(--off-white); }

.mobile-account-summary__name { font-size: 14px; font-weight: 700; color: var(--ink); }

.mobile-account-summary__meta { margin-top: 2px; font-size: 12px; color: #8a847b; word-break: break-word; }

.mobile-account-logout { color: #c0392b; }


/* ─────────────────────────────
   1. DESIGN TOKENS
───────────────────────────── */
:root { --ink:#0f0e0c; --ink-soft:#3f2e23; --off-white:#f6f2e8; --white:#ffffff; --accent:#929a68; --accent-dk:#7b8457; --accent-lt:#d8ddc4; --gold:#6b4f3a; --sage:#7a5c46; --sage-lt:#e7ddd4; --line:rgba(15,14,12,0.10); --line-inv:rgba(247,245,240,0.12); --font-display:'Cormorant Garamond', Georgia, serif; --font-body:'Outfit', system-ui, sans-serif; --radius:2px; }

/* ─────────────────────────────
   2. BASE
───────────────────────────── */
html { scroll-behavior:smooth; }
body { font-family:var(--font-body); background-color:var(--off-white); color:var(--ink); -webkit-font-smoothing:antialiased; }
a { color:inherit; text-decoration:none; }
a:hover { color:var(--accent); }

/* ─────────────────────────────
   3. TYPOGRAPHY
───────────────────────────── */
.df { font-family:var(--font-display); }
.section-tag { display:inline-flex; align-items:center; gap:8px; font-size:11px; font-weight:600; letter-spacing:0.12em; text-transform:uppercase; color:var(--accent); margin-bottom:16px; }
.section-tag::before { content:''; display:block; width:20px; height:1px; background:var(--accent); flex-shrink:0; }
.heading-fluid { font-size:clamp(40px,5vw,68px); line-height:1.0; letter-spacing:-0.02em; }
.heading-fluid-lg { font-size:clamp(56px,7vw,96px); line-height:1.0; letter-spacing:-0.02em; }
.heading-fluid-sm { font-size:clamp(32px,4vw,52px); line-height:1.1; letter-spacing:-0.02em; }

/* ─────────────────────────────
   4. SCROLL REVEAL
───────────────────────────── */
.rv { opacity:0; transform:translateY(24px); transition:opacity 0.65s ease, transform 0.65s ease; }
.rv.on { opacity:1; transform:translateY(0); }

/* ─────────────────────────────
   5. BUTTONS
───────────────────────────── */
.btn-spice { display:inline-flex; align-items:center; gap:10px; background:var(--accent); color:var(--white)!important; font-size:13px; font-weight:600; letter-spacing:0.06em; text-transform:uppercase; padding:14px 32px; border-radius:var(--radius); border:none; cursor:pointer; transition:background 0.2s, transform 0.2s; white-space:nowrap; }
.btn-spice:hover { background:var(--accent-dk); transform:translateY(-1px); }
.btn-spice:hover .btn-icon { transform:translateX(4px); }
.btn-icon { transition:transform 0.2s; }

.btn-outline-spice { display:inline-flex; align-items:center; gap:8px; background:transparent; color:var(--gold)!important; font-size:13px; font-weight:600; letter-spacing:0.06em; text-transform:uppercase; padding:13px 32px; border-radius:var(--radius); border:1px solid var(--gold); cursor:pointer; transition:background 0.2s, color 0.2s, border-color 0.2s; }
.btn-outline-spice:hover { background:var(--gold); border-color:var(--gold); color:var(--white)!important; }

.btn-outline-inv { display:inline-flex; align-items:center; gap:8px; background:transparent; color:rgba(247,245,240,0.75)!important; font-size:13px; font-weight:600; letter-spacing:0.06em; text-transform:uppercase; padding:13px 32px; border-radius:var(--radius); border:1px solid rgba(247,245,240,0.3); cursor:pointer; transition:background 0.2s, color 0.2s, border-color 0.2s; }
.btn-outline-inv:hover { background:rgba(247,245,240,0.1); color:var(--white)!important; border-color:rgba(247,245,240,0.6); }

.btn-white-spice { display:inline-flex; align-items:center; gap:10px; background:var(--white); color:var(--ink)!important; font-size:13px; font-weight:700; letter-spacing:0.06em; text-transform:uppercase; padding:14px 32px; border-radius:var(--radius); border:none; cursor:pointer; transition:background 0.2s, transform 0.2s; }
.btn-white-spice:hover { background:var(--off-white); transform:translateY(-1px); }

/* ─────────────────────────────
   6. MARQUEE
───────────────────────────── */
@keyframes marquee { from { transform:translateX(0); } to { transform:translateX(-50%); } }
.marquee-wrap { overflow:hidden; cursor:default; }
.marquee-track { display:flex; white-space:nowrap; animation:marquee 40s linear infinite; }
.marquee-wrap:hover .marquee-track { animation-play-state:paused; }

/* ─────────────────────────────
   7. SCROLL INDICATOR
───────────────────────────── */
@keyframes scroll-pulse { 0% { transform:translateY(-100%); } 50% { transform:translateY(0); } 100% { transform:translateY(100%); } }
.scroll-indicator-line { animation:scroll-pulse 1.8s ease-in-out infinite; }

/* ─────────────────────────────
   8. PRODUCT CARD
───────────────────────────── */
.product-card { background:var(--white); border-radius:0; overflow:hidden; transition:box-shadow 0.3s ease, transform 0.2s ease; height:100%; }
.product-card:hover { box-shadow:0 8px 40px rgba(15,14,12,0.12); }
.product-card .product-img-wrap { overflow:hidden; position:relative; height:280px; }
.product-card .product-img { width:100%; height:100%; object-fit:cover; transition:transform 0.5s ease; display:block; }
.product-card:hover .product-img { transform:scale(1.06); }
.quick-add { position:absolute; inset:0; background:rgba(15,14,12,0.65); display:flex; align-items:flex-end; opacity:0; transition:opacity 0.3s ease; }
.product-card:hover .quick-add { opacity:1; }

/* ─────────────────────────────
   9. CATEGORY CARD
───────────────────────────── */
.cat-card { position:relative; overflow:hidden; border-radius:var(--radius); display:block; }
.cat-card .cat-img { position:absolute; inset:0; width:100%; height:100%; object-fit:cover; transition:transform 0.6s ease; }
.cat-card .cat-placeholder { position:absolute; inset:0; transition:transform 0.6s ease; }
.cat-card:hover .cat-img, .cat-card:hover .cat-placeholder { transform:scale(1.07); }

.cat-overlay { position:absolute; inset:0; background:linear-gradient(to top, rgba(15,14,12,0.85) 0%, rgba(15,14,12,0.2) 50%, transparent 100%); transition:background 0.35s ease; }
.cat-card:hover .cat-overlay { background:linear-gradient(to top, rgba(15,14,12,0.92) 0%, rgba(15,14,12,0.45) 55%, rgba(15,14,12,0.1) 100%); }

.cat-content { position:absolute; bottom:0; left:0; right:0; }
.cat-cta { opacity:0; transform:translateY(8px); transition:opacity 0.3s ease, transform 0.3s ease; }
.cat-card:hover .cat-cta { opacity:1; transform:translateY(0); }

/* ─────────────────────────────
   10. PILLARS
───────────────────────────── */
.pillar-card { border:1px solid var(--line); border-radius:var(--radius); transition:border-color 0.2s, transform 0.2s; }
.pillar-card:hover { border-color:var(--accent); transform:translateX(4px); }

/* ─────────────────────────────
   11. GRID
───────────────────────────── */
.grid-ruled { gap:1px; background-color:var(--line); border:1px solid var(--line); }
.grid-ruled > * { background-color:var(--white); }

/* ─────────────────────────────
   12. INPUTS
───────────────────────────── */
.input-dark { display:block; width:100%; padding:16px 22px; background:rgba(247,245,240,0.07); border:1px solid rgba(247,245,240,0.15); border-radius:var(--radius); color:var(--white); font-family:var(--font-body); font-size:15px; outline:none; transition:border-color 0.2s; }
.input-dark::placeholder { color:rgba(247,245,240,0.35); }
.input-dark:focus { border-color:var(--accent); }

/* ─────────────────────────────
   13. UTILITIES
───────────────────────────── */
.text-accent { color:var(--accent)!important; }
.text-gold { color:var(--gold)!important; }
.text-sage { color:var(--sage)!important; }
.text-muted-inv { color:rgba(247,245,240,0.5)!important; }
.bg-ink { background-color:var(--ink)!important; }
.bg-accent { background-color:var(--accent)!important; }
.bg-off-white { background-color:var(--off-white)!important; }
.border-line { border-color:var(--line)!important; }
.radius-sharp { border-radius:var(--radius)!important; }

.link-rule { color:var(--gold); text-decoration:none; border-bottom:1px solid var(--gold); padding-bottom:2px; transition:color 0.2s, border-color 0.2s; }
.link-rule:hover { color:var(--accent); border-color:var(--accent); }

.discount-badge { font-size:11px; font-weight:700; color:var(--white); background:var(--gold); padding:2px 8px; border-radius:var(--radius); }

/* Scrollbar */
::-webkit-scrollbar { width:5px; }

/* Account */
.account-shell { padding: 72px 0 100px; }
.account-shell__hero { display:flex; align-items:flex-end; justify-content:space-between; gap:24px; padding:0 0 32px; margin-bottom:32px; border-bottom:1px solid var(--line); }
.account-shell__intro { max-width:720px; font-size:16px; line-height:1.8; color:#6f685f; }
.account-panel { background:var(--white); border:1px solid var(--line); padding:28px; border-radius:var(--radius); box-shadow:0 12px 34px rgba(15,14,12,0.04); }
.account-panel__eyebrow { font-size:11px; font-weight:700; letter-spacing:0.14em; text-transform:uppercase; color:var(--accent); margin-bottom:14px; }
.account-identity__name { font-size:26px; font-weight:600; color:var(--ink); margin-bottom:6px; }
.account-identity__meta { font-size:14px; color:#7c756c; margin-bottom:4px; }
.account-loyalty-card { margin-top:24px; padding:22px; background:linear-gradient(135deg, rgba(146,154,104,0.12), rgba(107,79,58,0.08)); border:1px solid rgba(146,154,104,0.22); }
.account-loyalty-card__label { font-size:11px; letter-spacing:0.14em; text-transform:uppercase; color:#6f685f; margin-bottom:8px; }
.account-loyalty-card__tier { font-family:var(--font-display); font-size:34px; line-height:1; color:var(--ink); margin-bottom:10px; }
.account-loyalty-card__points { font-size:15px; font-weight:600; color:var(--ink); }
.account-loyalty-card__meta { margin-top:8px; font-size:13px; color:#7c756c; }
.account-quick-links { display:flex; flex-direction:column; gap:10px; margin-top:24px; }
.account-quick-links a { display:flex; align-items:center; gap:10px; padding:12px 14px; border:1px solid var(--line); color:var(--ink); text-decoration:none; transition:background 0.2s, border-color 0.2s, color 0.2s; }
.account-quick-links a:hover { background:var(--off-white); border-color:var(--accent); color:var(--accent); }
.account-empty-state { border:1px dashed rgba(15,14,12,0.16); padding:24px; color:#7c756c; background:#fbf9f4; }
.account-order-list { display:flex; flex-direction:column; gap:12px; }
.account-order-list__item { display:flex; justify-content:space-between; align-items:center; gap:16px; padding:18px 20px; border:1px solid var(--line); color:var(--ink); text-decoration:none; transition:border-color 0.2s, transform 0.2s, box-shadow 0.2s; }
.account-order-list__item:hover { border-color:var(--accent); transform:translateY(-1px); box-shadow:0 10px 24px rgba(15,14,12,0.05); color:var(--ink); }
.account-order-list__number { font-weight:700; margin-bottom:3px; }
.account-order-list__meta { font-size:13px; color:#80786f; }
.account-order-list__total { font-weight:700; }
.account-orders-table th { font-size:12px; text-transform:uppercase; letter-spacing:0.12em; color:#8a847b; border-bottom-color:var(--line); }
.account-orders-table td { padding-top:18px; padding-bottom:18px; border-bottom-color:var(--line); }
.account-order-items { display:flex; flex-direction:column; gap:14px; }
.account-order-item { display:flex; align-items:center; gap:14px; padding:14px 0; border-bottom:1px solid var(--line); }
.account-order-item:last-child { border-bottom:none; padding-bottom:0; }
.account-order-item__thumb { width:68px; height:68px; flex-shrink:0; background:var(--off-white); display:flex; align-items:center; justify-content:center; overflow:hidden; border:1px solid var(--line); }
.account-order-item__thumb img { width:100%; height:100%; object-fit:cover; display:block; }
.account-summary-row { display:flex; align-items:center; justify-content:space-between; gap:16px; padding:8px 0; font-size:14px; color:#6f685f; }
.account-summary-row strong { color:var(--ink); }
.account-address { font-size:14px; line-height:1.8; color:#6f685f; }
.checkout-success-status-note { margin: 22px auto 0; max-width: 560px; padding: 14px 18px; border: 1px solid rgba(15,14,12,0.08); background: #fbf8f1; color: #6f685f; font-size: 14px; line-height: 1.7; }
.checkout-success-mock-form { margin-top: 18px; display: flex; justify-content: center; }

@media (max-width: 991.98px) {
  .account-shell { padding: 56px 0 80px; }
  .account-shell__hero { flex-direction:column; align-items:flex-start; }
}
::-webkit-scrollbar-track { background:var(--off-white); }
::-webkit-scrollbar-thumb { background:var(--accent); border-radius:2px; }

/* HERO */
.hero-section { position:relative; overflow:hidden; min-height:100vh; background:var(--ink); }
.hero-container { position:relative; z-index:1; padding:120px 0 100px; }
.hero-row { min-height:calc(100vh - 220px); }

.hero-grid-overlay { position:absolute; inset:0; opacity:0.04; pointer-events:none; background-image:linear-gradient(#f7f5f0 1px, transparent 1px), linear-gradient(90deg,#f7f5f0 1px, transparent 1px); background-size:80px 80px; }

.hero-ghost { position:absolute; top:50%; right:0; transform:translateY(-50%); font-size:clamp(200px,28vw,380px); color:rgba(255,255,255,0.025); }

.hero-subtext { font-size:18px; font-weight:300; line-height:1.8; color:rgba(247,245,240,0.65); max-width:420px; }

.hero-trust { display:flex; flex-wrap:wrap; gap:16px; padding-top:16px; border-top:1px solid var(--line-inv); }
.hero-trust-muted { font-size:13px; color:rgba(247,245,240,0.5); }

/* IMAGE */
.hero-image-wrap { position:relative; max-width:480px; }
.hero-frame { position:absolute; inset:-16px -24px; border:1px solid rgba(200,87,42,0.3); }
.hero-image-card { position:relative; overflow:hidden; }
.hero-image { width:100%; height:560px; object-fit:cover; display:block; }
.hero-image-gradient { position:absolute; inset:0; background:linear-gradient(to top, rgba(15,14,12,0.75) 0%, transparent 55%); }

.hero-featured { position:absolute; bottom:0; width:100%; padding:16px; }
.hero-featured-card { display:flex; justify-content:space-between; align-items:center; padding:12px; background:rgba(247,245,240,0.08); border:1px solid rgba(247,245,240,0.15); backdrop-filter:blur(12px); }

.hero-featured-label { font-size:11px; letter-spacing:0.1em; text-transform:uppercase; color:var(--accent); }
.hero-featured-title { font-size:16px; color:var(--white); margin:0; }
.hero-featured-sub { font-size:12px; color:rgba(247,245,240,0.5); }

.hero-stat { position:absolute; top:-12px; right:-20px; background:var(--accent); padding:14px 18px; text-align:center; color:var(--white); }
.hero-stat-num { font-size:32px; }
.hero-stat-label { font-size:11px; letter-spacing:0.08em; text-transform:uppercase; }

/* SCROLL */
.hero-scroll { position:absolute; bottom:0; left:50%; transform:translateX(-50%); display:flex; flex-direction:column; align-items:center; gap:8px; padding-bottom:16px; }
.hero-scroll-line { width:1px; height:40px; background:rgba(247,245,240,0.2); overflow:hidden; }
.hero-scroll-text { font-size:10px; letter-spacing:0.2em; text-transform:uppercase; color:rgba(247,245,240,0.3); }

/* MARQUEE */
.marquee-bar { background:var(--accent); padding:13px 0; }
.marquee-item { display:inline-block; padding:0 40px; font-size:12px; font-weight:700; letter-spacing:0.12em; text-transform:uppercase; color:var(--white); }
.marquee-divider { color:rgba(255,255,255,0.35); font-size:10px; }

/* FEATURES STRIP */
.features-strip { padding:80px 0; background:var(--white); }

.feature-card { padding:40px 28px; height:100%; transition:transform 0.2s ease; }
.feature-card:hover { transform:translateY(-4px); }

.feature-icon { font-size:26px; color:var(--accent); margin-bottom:18px; }

.feature-title { font-size:14px; font-weight:700; letter-spacing:0.08em; text-transform:uppercase; margin-bottom:10px; }

.feature-text { font-size:14px; color:var(--ink-soft); line-height:1.6; }


/* PRODUCTS */
.products-section { padding:100px 0; }

/* CARD */
.product-title { font-size:15px; font-weight:500; margin-bottom:6px; }

.product-rating { font-size:12px; color:var(--gold); margin-bottom:8px; }

/* PRICE */
.product-price { display:flex; align-items:center; gap:10px; }

.price-current { font-size:15px; font-weight:700; }

.price-old { font-size:13px; color:rgba(0,0,0,0.4); text-decoration:line-through; }

/* BADGE SYSTEM */
.product-badge { position:absolute; top:10px; left:10px; font-size:11px; font-weight:700; padding:4px 8px; border-radius:var(--radius); color:#fff; }

/* VARIANTS (replaces inline PHP colors) */
.badge-sale { background:var(--accent); }
.badge-new { background:var(--sage); }
.badge-out { background:#555; }


/* CATEGORIES GRID */
.categories-section { padding: 100px 0; }

.cat-card { display: block; position: relative; overflow: hidden; border-radius: var(--radius); height: 280px; transition: transform 0.3s ease; }
.cat-card.featured { height: 580px; }

.cat-img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.7s ease; }
.cat-card:hover .cat-img { transform: scale(1.05); }

.cat-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.4), transparent); transition: background 0.3s ease; }

.cat-content { position: absolute; bottom: 0; left: 0; right: 0; padding: 1rem; color: #fff; }

.cat-count { display: inline-block; background: var(--accent); padding: 4px 10px; font-size: 11px; font-weight: 700; text-transform: uppercase; border-radius: var(--radius); margin-bottom: 0.5rem; }

.cat-title { font-size: 22px; font-weight: 600; margin-bottom: 0.5rem; }

.cat-cta { font-size: 12px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; display: flex; align-items: center; gap: 4px; }


.site-footer { background-color: var(--ink); color: rgba(247,245,240,0.6); padding: 80px 0 0; margin-top: 0; }

.footer-heading { color: var(--white); font-size: 13px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 20px; }

/* ─────────────────────────────────────────────
   LINKS
──────────────────────────────────────────── */

.footer-links { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }

.footer-links a { font-size: 14px; color: rgba(247,245,240,0.6); text-decoration: none; transition: color 0.2s; display: inline-flex; align-items: center; gap: 6px; }

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

/* ─────────────────────────────────────────────
   CONTACT
──────────────────────────────────────────── */

.footer-contact { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }

.footer-contact li { font-size: 14px; color: rgba(247,245,240,0.6); display: flex; align-items: center; gap: 10px; }

.footer-contact li i { color: var(--accent); font-size: 15px; flex-shrink: 0; }

.footer-contact a { color: rgba(247,245,240,0.6); text-decoration: none; transition: color 0.2s; }

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

/* ─────────────────────────────────────────────
   SOCIAL
──────────────────────────────────────────── */

.footer-social { display: flex; gap: 10px; margin-top: 24px; }

.footer-social a { width: 36px; height: 36px; border-radius: var(--radius); border: 1px solid rgba(247,245,240,0.15); display: flex; align-items: center; justify-content: center; color: rgba(247,245,240,0.6); font-size: 16px; text-decoration: none; transition: background 0.2s, color 0.2s, border-color 0.2s; }

.footer-social a:hover { background: var(--accent); border-color: var(--accent); color: var(--white); }

/* ─────────────────────────────────────────────
   BRAND
──────────────────────────────────────────── */

.footer-logo-icon { font-size: 32px; line-height: 1; }

.footer-logo-text { font-size: 24px; font-weight: 600; }

.footer-tagline { font-size: 14px; line-height: 1.8; max-width: 260px; }

.footer-accent-bar { height: 3px; background: var(--accent); width: 48px; border-radius: 2px; margin-bottom: 20px; }

/* ─────────────────────────────────────────────
   NEWSLETTER
──────────────────────────────────────────── */

.footer-newsletter { background: rgba(247,245,240,0.05); border: 1px solid rgba(247,245,240,0.1); }

.footer-newsletter-text { font-size: 13px; color: rgba(247,245,240,0.7); margin-bottom: 10px; font-weight: 600; }

.footer-newsletter .btn-spice { font-size: 12px; padding: 10px 20px; }

/* ─────────────────────────────────────────────
   BOTTOM BAR
──────────────────────────────────────────── */

.footer-bottom { border-top: 1px solid rgba(247,245,240,0.08); margin-top: 60px; padding: 24px 0; }

.footer-bottom p { font-size: 13px; color: rgba(247,245,240,0.4); margin: 0; }

/* ─────────────────────────────────────────────
   PAYMENTS
──────────────────────────────────────────── */

.footer-payment-label { font-size: 12px; color: rgba(247,245,240,0.3); text-transform: uppercase; letter-spacing: 0.08em; }

.footer-payment-item { background: rgba(247,245,240,0.08); border: 1px solid rgba(247,245,240,0.1); font-size: 12px; font-weight: 700; color: rgba(247,245,240,0.7); }

.icon-mpesa { color: #4CAF50; }

.icon-visa { color: #1A1F71; }

.icon-mastercard { color: #EB001B; }

/* HOME PAGE */
.home-page .home-section { padding: 50px 0; }
.home-page .home-heading-dark { color: var(--ink); }
.home-page .section-divider { border-bottom: 1px solid var(--line); }
.home-page .hero-accent-text { color: var(--accent); }

.home-page .rv-delay-0 { transition-delay: 0ms; }
.home-page .rv-delay-80 { transition-delay: 80ms; }
.home-page .rv-delay-100 { transition-delay: 100ms; }
.home-page .rv-delay-160 { transition-delay: 160ms; }
.home-page .rv-delay-200 { transition-delay: 200ms; }
.home-page .rv-delay-240 { transition-delay: 240ms; }
.home-page .rv-delay-300 { transition-delay: 300ms; }

.home-page .hero-section { position: relative; overflow: hidden; min-height: 100vh; background: var(--ink); }
.home-page .hero-container { position: relative; z-index: 1; padding-top: 120px; padding-bottom: 100px; }
.home-page .hero-row { min-height: calc(100vh - 220px); }
.home-page .hero-grid-overlay { position: absolute; inset: 0; opacity: 0.04; pointer-events: none; background-image: linear-gradient(#f7f5f0 1px, transparent 1px), linear-gradient(90deg, #f7f5f0 1px, transparent 1px); background-size: 80px 80px; }
.home-page .hero-ghost { position: absolute; top: 50%; right: 0; transform: translateY(-50%); font-size: clamp(200px, 28vw, 380px); color: rgba(255,255,255,0.025); }
.home-page .hero-subtext { font-size: 18px; font-weight: 300; line-height: 1.8; color: rgba(247,245,240,0.65); max-width: 420px; }
.home-page .hero-trust { display: flex; flex-wrap: wrap; gap: 1.5rem; padding-top: 1rem; border-top: 1px solid var(--line-inv); }
.home-page .hero-trust-icon { font-size: 14px; }
.home-page .hero-trust-strong { font-size: 13px; }
.home-page .hero-trust-muted { font-size: 13px; color: rgba(247,245,240,0.5); }
.home-page .hero-image-wrap { max-width: 480px; }
.home-page .hero-frame { inset: -16px -24px; border: 1px solid rgba(200,87,42,0.3); pointer-events: none; z-index: 0; }
.home-page .hero-image-card { z-index: 1; }
.home-page .hero-image { height: 560px; }
.home-page .hero-image-gradient { background: linear-gradient(to top, rgba(15,14,12,0.75) 0%, transparent 55%); pointer-events: none; }
.home-page .hero-featured { z-index: 2; }
.home-page .hero-featured-card { background: rgba(247,245,240,0.08); border: 1px solid rgba(247,245,240,0.15); backdrop-filter: blur(12px); }
.home-page .hero-featured-label { font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); }
.home-page .hero-featured-title { font-size: 16px; }
.home-page .hero-featured-sub { font-size: 12px; color: rgba(247,245,240,0.5); }
.home-page .hero-featured-btn { font-size: 11px; padding-left: 16px; padding-right: 16px; }
.home-page .hero-stat { top: -12px; right: -20px; padding: 14px 18px; z-index: 3; background: var(--accent); box-shadow: 0 8px 32px rgba(200,87,42,0.4); }
.home-page .hero-stat-num { font-size: 32px; }
.home-page .hero-stat-label { margin-top: 4px; font-size: 11px; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; opacity: 0.85; }
.home-page .hero-scroll { position: absolute; bottom: 0; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 0.5rem; padding-bottom: 1.5rem; }
.home-page .hero-scroll-line { width: 1px; height: 40px; overflow: hidden; background: rgba(247,245,240,0.2); }
.home-page .hero-scroll-indicator { width: 1px; height: 40px; background: var(--accent); }
.home-page .hero-scroll-text { font-size: 10px; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(247,245,240,0.3); }

.home-page .marquee-bar { background: var(--accent); padding: 13px 0; }

.home-page .home-features-section { border-bottom: 1px solid var(--line); }
.home-page .feature-strip-card { padding: 40px 32px; }
.home-page .feature-strip-card-bordered { border-right: 1px solid var(--line); }
.home-page .feature-strip-num { font-size: 13px; font-weight: 500; letter-spacing: 0.04em; }
.home-page .feature-strip-title { font-size: 15px; font-weight: 600; color: var(--ink); }
.home-page .feature-strip-sub { font-size: 13px; color: #888; }

.home-page .home-products-section { padding: 50px 0; }
.home-page .products-grid { border: 1px solid var(--line); background: var(--line); }
.home-page .products-grid > .col { padding: 0; }
.home-page .products-grid > .col { border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.home-page .products-grid > .col:nth-child(4n) { border-right: 0; }
.home-page .products-grid > .col:nth-last-child(-n+4) { border-bottom: 0; }
.home-page .home-link-eyebrow { font-size: 13px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; }
.home-page .product-img-bg-warm { background-color: #f0ebe3; }
.home-page .product-img-bg-cool { background-color: #e8ede5; }
.home-page .product-img-placeholder { font-size: 64px; user-select: none; color: var(--sage); }
.home-page .product-placeholder-icon { font-size: 64px; line-height: 1; }
.home-page .low-stock-badge { background: var(--gold); color: var(--white); font-size: 10px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; }
.cart-control { width: 100%; }
.cart-add-btn,
.cart-stepper { width: 100%; border-radius: 14px; }
.cart-add-btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px; padding: 14px 18px; border: 0; background: var(--white); color: var(--ink); font-size: 12px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; transition: background 0.2s, color 0.2s, transform 0.2s; }
.cart-add-btn:hover { background: var(--off-white); color: var(--ink); transform: translateY(-1px); }
.cart-stepper { display: flex; align-items: center; justify-content: space-between; background: rgba(255,255,255,0.96); border: 1px solid rgba(15,14,12,0.08); padding: 6px; }
.cart-stepper__btn { width: 40px; height: 40px; border: 0; border-radius: 10px; background: var(--ink); color: var(--white); display: inline-flex; align-items: center; justify-content: center; transition: background 0.2s, opacity 0.2s; }
.cart-stepper__btn:hover { background: var(--accent); }
.cart-stepper__btn:disabled { opacity: 0.4; cursor: not-allowed; }
.cart-stepper__qty { min-width: 42px; text-align: center; font-size: 15px; font-weight: 700; color: var(--ink); }
.cart-control__status { padding: 14px 16px; border-radius: 14px; background: rgba(107,79,58,0.12); color: var(--ink); font-size: 12px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; text-align: center; }
.cart-remove-btn,
.cart-clear-btn { display: inline-flex; align-items: center; justify-content: center; width: 100%; min-height: 46px; padding: 12px 16px; border: 1px solid rgba(15,14,12,0.12); border-radius: 14px; background: transparent; color: var(--ink); font-size: 12px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; transition: background 0.2s, color 0.2s, border-color 0.2s; }
.cart-remove-btn:hover,
.cart-clear-btn:hover { background: rgba(107,79,58,0.08); border-color: rgba(107,79,58,0.28); color: var(--ink); }
.home-page .quick-add-link { background: var(--white); color: var(--ink); font-size: 12px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; text-decoration: none; transition: background 0.2s, color 0.2s; }
.home-page .quick-add-link:hover { background: var(--off-white); color: var(--ink); }
.home-page .product-info { border-top: 1px solid var(--line); }
.home-page .product-category { font-size: 10px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; }
.home-page .product-name { font-size: 17px; font-weight: 500; line-height: 1.2; }
.home-page .product-name-link { color: var(--ink); text-decoration: none; transition: color 0.2s; }
.home-page .product-name-link:hover { color: var(--accent); }
.home-page .wishlist-btn { color: #ccc; cursor: pointer; transition: color 0.2s; }
.home-page .wishlist-btn.is-active { color: #e53e3e; }
.home-page .wishlist-icon { font-size: 18px; }
.home-page .product-star { font-size: 11px; }
.home-page .product-star-empty { color: #ddd; }
.home-page .product-review-count { font-size: 12px; color: #999; }
.home-page .product-price-current { font-size: 20px; font-weight: 700; color: var(--ink); }
.home-page .product-price-old { font-size: 13px; color: #aaa; text-decoration: line-through; }
.home-page .product-variant-label { font-size: 11px; color: #aaa; }

.home-page .categories-intro { max-width: 250px; font-size: 15px; line-height: 1.7; color: #999; }
.home-page .cat-card-tall { height: 580px; }
.home-page .cat-card-short { height: 280px; }
.home-page .cat-placeholder-featured { position: absolute; inset: 0; background: linear-gradient(135deg, #3d5c3d, #6b874a); }
.home-page .cat-placeholder-regular { position: absolute; inset: 0; background: linear-gradient(135deg, #4a6741, #7b8f53); }
.home-page .cat-content-featured { padding-right: 3rem; }
.home-page .cat-count { background: var(--gold); font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; padding: 5px 12px; }
.home-page .cat-count-featured { padding: 6px 14px; }
.home-page .cat-title-featured { font-size: 40px; line-height: 1.1; letter-spacing: -0.01em; }
.home-page .cat-title-regular { font-size: 24px; line-height: 1.1; }
.home-page .cat-title-short { font-size: 22px; line-height: 1.1; }
.home-page .cat-cta-text { font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; }

.home-page .story-row { min-height: 680px; background: var(--white); border-radius: 24px; overflow: hidden; box-shadow: 0 20px 48px rgba(31, 27, 21, 0.08); }
.home-page .story-media { min-height: 400px; padding: 0; background: transparent; }
.home-page .story-image { width: 100%; height: 100%; min-height: 100%; object-fit: cover; object-position: center; transition: transform 0.7s ease; }
.home-page .story-media:hover .story-image { transform: scale(1.04); }
.home-page .story-label { background: var(--gold); color: var(--white); font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; }
.home-page .story-panel { padding: 80px 72px; }
.home-page .story-copy { font-size: 16px; line-height: 1.85; color: #666; }
.home-page .pillar-icon { flex-shrink: 0; font-size: 20px; }
.home-page .pillar-title { font-size: 14px; color: var(--ink); }
.home-page .pillar-desc { font-size: 13px; line-height: 1.6; color: #888; }

.home-page .stats-banner { padding: 100px 0; background: var(--accent); }
.home-page .stats-ghost { right: -30px; bottom: -60px; font-size: 280px; color: rgba(0,0,0,0.07); }
.home-page .stats-container { z-index: 1; }
.home-page .stats-item-bordered { border-right: 1px solid rgba(255,255,255,0.2); }
.home-page .stats-num { font-size: clamp(48px, 6vw, 80px); }
.home-page .stats-label { font-size: 12px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; opacity: 0.7; }

.home-page .quiz-card { padding: 72px 80px; background: var(--ink); }
.home-page .quiz-ghost { font-size: 140px; color: rgba(255,255,255,0.03); }
.home-page .quiz-row { z-index: 1; }
.home-page .quiz-copy { font-size: 16px; line-height: 1.7; color: rgba(247,245,240,0.5); }
.home-page .quiz-note { font-size: 12px; font-weight: 500; color: rgba(247,245,240,0.35); }

.home-page .testimonials-section { border-top: 1px solid var(--line); }
.home-page .testimonials-grid { border: 1px solid var(--line); background: var(--line); }
.home-page .testimonials-grid > .col { border-right: 1px solid var(--line); background: var(--white); }
.home-page .testimonials-grid > .col:nth-child(3n) { border-right: 0; }
.home-page .testimonial-card { transition: background 0.2s; }
.home-page .testimonial-card:hover { background: var(--off-white); }
.home-page .testimonial-star { font-size: 14px; }
.home-page .testimonial-quote-mark { font-size: 48px; line-height: 0.5; color: var(--gold) !important; }
.home-page .testimonial-quote { font-size: 16px; line-height: 1.85; color: #555; }
.home-page .testimonial-author { border-top: 1px solid var(--line); }
.home-page .testimonial-avatar { width: 44px; height: 44px; background: var(--ink); color: var(--white); font-size: 13px; }
.home-page .testimonial-name { font-size: 14px; color: var(--ink); }
.home-page .testimonial-role { font-size: 12px; color: #999; }

.home-page .newsletter-section { padding: 100px 0; background: var(--ink); }
.home-page .newsletter-accent-bar { width: 4px; background: var(--accent); }
.home-page .newsletter-copy { font-size: 16px; line-height: 1.8; color: rgba(247,245,240,0.5); }
.home-page .newsletter-stat-num { font-size: 28px; }
.home-page .newsletter-stat-label { margin-top: 2px; font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(247,245,240,0.4); }
.home-page .newsletter-divider { width: 1px; height: 40px; background: var(--line-inv); }
.home-page .newsletter-message { min-height: 18px; font-size: 13px; color: rgba(247,245,240,0.5); }
.home-page .newsletter-message-error { color: #e87a5a; }
.home-page .newsletter-message-success { color: #7abf7a; }
.home-page .input-dark-error { border-color: #e87a5a; }

.shop-page-section { padding: 20px 0 110px; background: linear-gradient(180deg, #f7f3ea 0%, #f3efe6 100%); }
.shop-page-hero { display: flex; align-items: end; justify-content: space-between; gap: 24px; margin-bottom: 26px; padding-bottom: 28px; border-bottom: 1px solid var(--line); }
.shop-page-title { font-size: clamp(44px, 6vw, 72px); color: var(--ink); line-height: 0.95; }
.shop-page-subtitle { max-width: 540px; font-size: 16px; line-height: 1.8; color: #777; }
.shop-page-meta { min-width: 140px; padding: 20px 22px; border-radius: 22px; background: var(--white); border: 1px solid var(--line); text-align: center; box-shadow: 0 18px 40px rgba(31, 27, 21, 0.05); }
.shop-page-meta__value { font-family: var(--font-display); font-size: 42px; line-height: 1; color: var(--accent); }
.shop-page-meta__label { margin-top: 8px; font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: #7f7f7f; }
.shop-toolbar { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 24px; }
.shop-search-form { position: relative; flex: 1 1 auto; }
.shop-search-icon { position: absolute; left: 18px; top: 50%; transform: translateY(-50%); color: #908b84; }
.shop-search-input { width: 100%; min-height: 58px; padding: 0 18px 0 48px; border: 1px solid var(--line); border-radius: 18px; background: rgba(255,255,255,0.82); color: var(--ink); }
.shop-sort-form { display: flex; align-items: center; gap: 12px; }
.shop-sort-label { font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: #7f7f7f; }
.shop-sort-select { min-width: 220px; min-height: 52px; padding: 0 16px; border: 1px solid var(--line); border-radius: 16px; background: var(--white); color: var(--ink); }
.shop-sidebar { display: flex; flex-direction: column; gap: 18px; position: sticky; top: 136px; }
.shop-filter-card { padding: 22px; border: 1px solid var(--line); border-radius: 24px; background: rgba(255,255,255,0.9); box-shadow: 0 18px 40px rgba(31, 27, 21, 0.04); }
.shop-filter-title { margin-bottom: 16px; font-size: 18px; color: var(--ink); }
.shop-filter-link { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 10px 0; border-top: 1px solid rgba(15,14,12,0.06); color: #655f57; text-decoration: none; transition: color 0.2s; }
.shop-filter-link:first-of-type { border-top: 0; padding-top: 0; }
.shop-filter-link:last-of-type { padding-bottom: 0; }
.shop-filter-link:hover,
.shop-filter-link.is-active { color: var(--accent); }
.shop-check { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--ink); }
.shop-check input { accent-color: var(--accent); }
.shop-active-filters { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 18px; }
.shop-chip { display: inline-flex; align-items: center; padding: 8px 12px; border-radius: 999px; background: rgba(146,154,104,0.12); color: var(--ink); font-size: 12px; font-weight: 700; letter-spacing: 0.04em; }
.shop-empty-state { padding: 64px 28px; border: 1px solid var(--line); border-radius: 24px; background: var(--white); text-align: center; }
.shop-empty-state__icon { width: 82px; height: 82px; margin: 0 auto 18px; border-radius: 50%; background: rgba(146,154,104,0.12); color: var(--accent); display: flex; align-items: center; justify-content: center; font-size: 30px; }
.shop-products-grid { border: 1px solid var(--line); background: var(--line); }
.shop-products-grid > .col { padding: 0; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.shop-products-grid > .col:nth-child(3n) { border-right: 0; }
.shop-products-grid > .col:nth-last-child(-n+3) { border-bottom: 0; }
.shop-product-card { background: var(--white); }
.shop-product-desc { min-height: 42px; margin-bottom: 14px; font-size: 14px; line-height: 1.6; color: #7f7f7f; }
.shop-pagination-wrap { display: flex; justify-content: center; margin-top: 28px; }
.shop-pagination { display: inline-flex; align-items: center; gap: 10px; padding: 10px; border-radius: 18px; background: var(--white); border: 1px solid var(--line); }
.shop-pagination__link { width: 42px; height: 42px; border-radius: 12px; display: inline-flex; align-items: center; justify-content: center; text-decoration: none; color: var(--ink); font-weight: 700; transition: background 0.2s, color 0.2s; }
.shop-pagination__link:hover,
.shop-pagination__link.is-current { background: var(--accent); color: var(--white); }

.product-page-section { padding: 20px 0 52px; background: linear-gradient(180deg, #f7f3ea 0%, #f2ede3 100%); }
.product-breadcrumb { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 24px; font-size: 13px; color: #7f7f7f; }
.product-breadcrumb a { color: #7f7f7f; text-decoration: none; }
.product-gallery-card { padding: 18px; border: 1px solid var(--line); border-radius: 28px; background: rgba(255,255,255,0.94); box-shadow: 0 22px 48px rgba(31, 27, 21, 0.05); }
.product-gallery-main { border-radius: 22px; overflow: hidden; background: #ede7da; }
.product-gallery-main__image { width: 100%; height: 560px; object-fit: cover; display: block; }
.product-gallery-main__image--placeholder { display: flex; align-items: center; justify-content: center; color: var(--accent); font-size: 84px; }
.product-gallery-secondary { margin-top: 14px; border-radius: 18px; overflow: hidden; border: 1px solid rgba(15,14,12,0.08); }
.product-gallery-secondary__image { width: 100%; height: 180px; object-fit: cover; display: block; }
.product-gallery-summary { margin-top: 14px; padding: 18px 20px; border-radius: 18px; background: rgba(146,154,104,0.08); border: 1px solid rgba(146,154,104,0.16); }
.product-gallery-summary__copy { font-size: 15px; line-height: 1.8; color: #5e5a55; }
.product-detail-panel { padding: 8px 0; }
.product-detail-title { font-size: clamp(42px, 5vw, 70px); line-height: 0.95; color: var(--ink); }
.product-detail-category { display: inline-flex; align-items: center; padding: 8px 12px; border-radius: 999px; background: rgba(146,154,104,0.12); color: var(--accent); font-size: 12px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; }
.product-detail-reviews { font-size: 14px; color: #7f7f7f; }
.product-detail-price-block { display: flex; align-items: baseline; flex-wrap: wrap; gap: 12px; margin-bottom: 18px; }
.product-detail-price { font-size: clamp(28px, 3vw, 38px); font-weight: 600; line-height: 1; color: var(--ink); }
.product-detail-price-old { font-size: 15px; color: #9b948b; text-decoration: line-through; }
.product-detail-meta { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; margin-bottom: 24px; }
.product-detail-meta__item { padding: 16px 18px; border-radius: 18px; background: rgba(255,255,255,0.85); border: 1px solid rgba(15,14,12,0.07); }
.product-detail-meta__label { display: block; margin-bottom: 6px; font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: #8d877f; }
.product-detail-meta__value { font-size: 15px; font-weight: 600; color: var(--ink); }
.product-variant-section { margin-bottom: 24px; }
.product-section-title { margin-bottom: 14px; font-size: 16px; font-weight: 700; color: var(--ink); }
.product-variant-options { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 12px; }
.product-variant-option { position: relative; display: flex; flex-direction: column; gap: 8px; padding: 16px; border: 1px solid rgba(15,14,12,0.08); border-radius: 18px; background: rgba(255,255,255,0.92); cursor: pointer; transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s; }
.product-variant-option:hover,
.product-variant-option.is-active { border-color: rgba(146,154,104,0.44); box-shadow: 0 16px 36px rgba(31, 27, 21, 0.06); transform: translateY(-1px); }
.product-variant-input { position: absolute; opacity: 0; pointer-events: none; }
.product-variant-option__label { font-size: 14px; font-weight: 700; color: var(--ink); }
.product-variant-option__price { font-size: 13px; color: #7f7f7f; }
.product-cart-stack { margin-bottom: 20px; }
.product-cart-stack__item { display: none; max-width: 360px; }
.product-cart-stack__item.is-active { display: block; }
.product-tags { display: flex; flex-wrap: wrap; gap: 10px; }
.product-tag { display: inline-flex; align-items: center; padding: 8px 12px; border-radius: 999px; background: rgba(255,255,255,0.8); border: 1px solid rgba(15,14,12,0.08); color: #615b54; font-size: 12px; font-weight: 700; letter-spacing: 0.04em; }
.product-story-section { padding: 0 0 28px; background: linear-gradient(180deg, #f2ede3 0%, #f7f3ea 100%); }
.product-story-card { padding: 28px 32px; border: 1px solid var(--line); border-radius: 24px; background: rgba(255,255,255,0.92); box-shadow: 0 18px 40px rgba(31, 27, 21, 0.04); }
.product-story-copy { max-width: 900px; font-size: 16px; line-height: 1.95; color: #5e5a55; }
.product-related-section { padding: 28px 0 104px; background: var(--off-white); }
.product-related-grid { border: 1px solid var(--line); background: var(--line); }
.product-related-grid > .col { padding: 0; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.product-related-grid > .col:nth-child(4n) { border-right: 0; }
.product-related-grid > .col:nth-last-child(-n+4) { border-bottom: 0; }

.checkout-page-section { padding: 20px 0 86px; background: radial-gradient(circle at top left, rgba(146,154,104,0.14), transparent 34%), linear-gradient(180deg, #f6f1e7 0%, #eee6d8 100%); }
.checkout-header { display: flex; align-items: end; justify-content: space-between; gap: 24px; margin-bottom: 20px; }
.checkout-title { font-size: clamp(40px, 5vw, 62px); line-height: 0.96; color: var(--ink); }
.checkout-subtitle { max-width: 600px; font-size: 15px; line-height: 1.72; color: #6f6962; }
.checkout-header__meta { min-width: 132px; padding: 16px 18px; border-radius: 22px; background: rgba(255,255,255,0.76); border: 1px solid rgba(15,14,12,0.08); text-align: center; box-shadow: 0 14px 32px rgba(31, 27, 21, 0.05); }
.checkout-header__value { font-family: var(--font-display); font-size: 36px; line-height: 1; color: var(--accent); }
.checkout-header__label { margin-top: 6px; font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: #7f7f7f; }
.checkout-steps { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 18px; }
.checkout-step { display: inline-flex; align-items: center; gap: 10px; padding: 10px 14px; border-radius: 999px; background: rgba(255,255,255,0.58); border: 1px solid rgba(15,14,12,0.08); color: #746e66; font-size: 12px; font-weight: 700; }
.checkout-step span { width: 24px; height: 24px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; background: rgba(15,14,12,0.08); color: var(--ink); font-size: 12px; }
.checkout-step.is-active { background: rgba(146,154,104,0.12); color: var(--ink); border-color: rgba(146,154,104,0.24); }
.checkout-step.is-active span { background: var(--accent); color: var(--white); }
.checkout-shell { border: 1px solid rgba(15,14,12,0.08); border-radius: 30px; overflow: hidden; background: rgba(255,255,255,0.84); backdrop-filter: blur(14px); box-shadow: 0 26px 64px rgba(31, 27, 21, 0.08); }
.checkout-shell__main { padding: 34px 34px 38px; }
.checkout-shell__side { padding: 34px 30px 38px; background: linear-gradient(180deg, rgba(146,154,104,0.08) 0%, rgba(246,242,232,0.96) 100%); border-left: 1px solid rgba(15,14,12,0.08); }
.checkout-auth-card,
.checkout-login-card,
.checkout-choice-card,
.checkout-form-card,
.checkout-summary-card,
.checkout-success-card { border-radius: 24px; }
.checkout-auth-card,
.checkout-login-card,
.checkout-choice-card { padding: 20px 22px; border: 1px solid rgba(15,14,12,0.08); background: rgba(255,255,255,0.7); }
.checkout-form-card,
.checkout-summary-card { padding: 0; border: 0; background: transparent; box-shadow: none; }
.checkout-success-card { padding: 24px; border: 1px solid var(--line); background: rgba(255,255,255,0.92); box-shadow: 0 18px 40px rgba(31, 27, 21, 0.05); }
.checkout-auth-card { display: flex; align-items: center; justify-content: space-between; gap: 16px; background: linear-gradient(180deg, rgba(146,154,104,0.13) 0%, rgba(255,255,255,0.82) 100%); }
.checkout-auth-card__eyebrow { font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: #8b857d; }
.checkout-auth-card__title { font-size: 20px; font-weight: 700; color: var(--ink); }
.checkout-auth-card__sub { font-size: 14px; color: #7f7f7f; }
.checkout-choice-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.checkout-choice-card.is-selected { background: linear-gradient(180deg, rgba(146,154,104,0.16) 0%, rgba(255,255,255,0.86) 100%); border-color: rgba(146,154,104,0.22); }
.checkout-choice-card__eyebrow { margin-bottom: 10px; font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: #8b857d; }
.checkout-login-card__heading { margin-bottom: 16px; }
.checkout-login-card__heading p { color: #7f7f7f; }
.checkout-form-card { display: flex; flex-direction: column; gap: 0; }
.checkout-section { display: flex; flex-direction: column; gap: 16px; padding: 24px 0; border-top: 1px solid rgba(15,14,12,0.08); }
.checkout-section:first-of-type { padding-top: 8px; border-top: 0; }
.checkout-section-head { display: grid; grid-template-columns: minmax(0, 1fr) 260px; align-items: start; gap: 18px; }
.checkout-section-title { margin: 4px 0 0; font-size: 24px; color: var(--ink); }
.checkout-section-copy { max-width: 260px; margin: 0; font-size: 13px; line-height: 1.7; color: #7f7f7f; }
.checkout-form-card .form-label { margin-bottom: 8px; font-size: 12px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: #6e685f; }
.checkout-form-card .form-control { min-height: 54px; border-radius: 16px; border-color: rgba(15,14,12,0.1); background: rgba(255,255,255,0.76); box-shadow: none; }
.checkout-form-card textarea.form-control { min-height: 116px; resize: vertical; }
.checkout-form-card .form-control:focus { border-color: rgba(146,154,104,0.5); box-shadow: 0 0 0 0.2rem rgba(146,154,104,0.16); background: var(--white); }
.checkout-payment-card { padding: 20px; border-radius: 22px; background: linear-gradient(180deg, rgba(146,154,104,0.1) 0%, rgba(255,255,255,0.7) 100%); border: 1px solid rgba(146,154,104,0.2); }
.checkout-payment-card__top { display: flex; align-items: start; justify-content: space-between; gap: 16px; margin-bottom: 12px; }
.checkout-payment-card__title { font-size: 18px; font-weight: 700; color: var(--ink); }
.checkout-payment-card__sub { font-size: 14px; line-height: 1.7; color: #6f6962; }
.checkout-payment-chip { display: inline-flex; align-items: center; padding: 8px 12px; border-radius: 999px; background: var(--accent); color: var(--white); font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; }
.checkout-payment-steps { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 14px; }
.checkout-payment-steps__item { display: inline-flex; align-items: center; gap: 8px; padding: 8px 12px; border-radius: 999px; background: rgba(255,255,255,0.76); color: var(--ink); font-size: 12px; font-weight: 700; }
.checkout-payment-steps__item span { width: 22px; height: 22px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; background: var(--white); color: var(--accent); font-size: 11px; }
.checkout-submit { min-height: 56px; }
.checkout-summary-card { position: sticky; top: 122px; }
.checkout-summary-head { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 20px; padding-bottom: 16px; border-bottom: 1px solid rgba(15,14,12,0.08); }
.checkout-summary-edit { font-size: 12px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--accent); text-decoration: none; }
.checkout-summary-list { display: flex; flex-direction: column; gap: 12px; margin-bottom: 20px; }
.checkout-summary-item { display: grid; grid-template-columns: 56px minmax(0, 1fr) auto; gap: 12px; align-items: center; padding: 12px 0; border-bottom: 1px solid rgba(15,14,12,0.06); }
.checkout-summary-item:last-child { border-bottom: 0; padding-bottom: 0; }
.checkout-summary-item__image { width: 56px; height: 56px; object-fit: cover; border-radius: 16px; background: #ece6d8; display: block; }
.checkout-summary-item__image--placeholder { display: flex; align-items: center; justify-content: center; color: var(--accent); font-size: 24px; }
.checkout-summary-item__title { font-size: 14px; font-weight: 700; color: var(--ink); }
.checkout-summary-item__meta { font-size: 12px; color: #7f7f7f; }
.checkout-summary-item__total { font-size: 14px; font-weight: 700; color: var(--ink); white-space: nowrap; }
.checkout-summary-row { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 12px 0; border-top: 1px solid rgba(15,14,12,0.08); color: var(--ink); }
.checkout-summary-trust { display: grid; gap: 10px; margin-top: 18px; padding-top: 18px; border-top: 1px solid rgba(15,14,12,0.08); }
.checkout-summary-trust__item { display: flex; align-items: center; gap: 10px; font-size: 13px; color: #6f6962; }
.checkout-summary-trust__item i { color: var(--accent); }
.checkout-summary-note { margin-top: 14px; font-size: 12px; line-height: 1.7; color: #7f7f7f; }
.checkout-success-card { max-width: 760px; margin: 0 auto; text-align: center; }
.checkout-success-card__icon { width: 92px; height: 92px; margin: 0 auto 18px; border-radius: 50%; background: rgba(146,154,104,0.14); color: var(--accent); display: flex; align-items: center; justify-content: center; font-size: 42px; }
.checkout-success-meta { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; margin: 28px 0; text-align: left; }
.checkout-success-meta__item { padding: 18px; border-radius: 18px; background: #faf7f1; border: 1px solid rgba(15,14,12,0.07); }
.checkout-success-meta__label { display: block; margin-bottom: 6px; font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: #8d877f; }
.checkout-success-actions { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }

.info-page .form-label { margin-bottom: 8px; font-size: 12px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: #6e685f; }
.info-page .form-control { min-height: 54px; border-radius: 16px; border-color: rgba(15,14,12,0.1); background: rgba(255,255,255,0.86); box-shadow: none; }
.info-page textarea.form-control { min-height: 140px; resize: vertical; }
.info-page .form-control:focus { border-color: rgba(146,154,104,0.5); box-shadow: 0 0 0 0.2rem rgba(146,154,104,0.14); }
.info-page-hero { padding: 72px 0 24px; background: linear-gradient(180deg, #f6f1e7 0%, #efe7db 100%); }
.info-page-hero__shell { padding: 40px 44px; border: 1px solid rgba(15,14,12,0.08); border-radius: 28px; background: rgba(255,255,255,0.78); box-shadow: 0 24px 60px rgba(31, 27, 21, 0.06); }
.info-page-hero__title { max-width: 760px; margin: 10px 0 14px; font-size: clamp(42px, 5vw, 68px); line-height: 0.94; color: var(--ink); }
.info-page-hero__intro { max-width: 700px; font-size: 16px; line-height: 1.8; color: #6e685f; }
.info-page-section { padding: 28px 0 96px; background: linear-gradient(180deg, #efe7db 0%, #f6f2e8 100%); }
.info-page-highlights { border: 1px solid var(--line); background: rgba(255,255,255,0.78); border-radius: 26px; overflow: hidden; box-shadow: 0 18px 44px rgba(31, 27, 21, 0.04); }
.info-page-highlight-card,
.info-page-stat-card { height: 100%; padding: 28px 30px; border-right: 1px solid var(--line); }
.info-page-highlights > .col:last-child .info-page-highlight-card,
.info-page-highlights > .col:last-child .info-page-stat-card { border-right: 0; }
.info-page-card-title { margin-bottom: 10px; font-size: 22px; color: var(--ink); }
.info-page-card-copy { font-size: 15px; line-height: 1.8; color: #6e685f; }
.info-page-stat-card__value { font-size: clamp(42px, 4vw, 58px); line-height: 1; color: var(--accent); }
.info-page-stat-card__label { margin-top: 8px; font-size: 12px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: #8a847b; }
.info-page-content-card,
.info-page-story-card,
.info-page-pillars,
.info-page-quiz-card { padding: 32px 34px; border: 1px solid rgba(15,14,12,0.08); border-radius: 28px; background: rgba(255,255,255,0.82); box-shadow: 0 18px 44px rgba(31, 27, 21, 0.05); }
.info-page-copy-block + .info-page-copy-block { margin-top: 28px; padding-top: 28px; border-top: 1px solid rgba(15,14,12,0.08); }
.info-page-copy-block__title { margin-bottom: 12px; font-size: 28px; color: var(--ink); }
.info-page-copy-block__body { font-size: 15px; line-height: 1.9; color: #615b54; }
.info-page-story-card__copy { font-size: 15px; line-height: 1.9; color: #615b54; }
.info-page-story-card__copy:last-of-type { margin-bottom: 24px; }
.info-page-pillars { display: flex; flex-direction: column; gap: 18px; }
.info-page-pillar { display: grid; grid-template-columns: 48px minmax(0, 1fr); gap: 16px; align-items: start; padding-bottom: 18px; border-bottom: 1px solid rgba(15,14,12,0.08); }
.info-page-pillar:last-child { padding-bottom: 0; border-bottom: 0; }
.info-page-pillar__icon { width: 48px; height: 48px; border-radius: 16px; background: rgba(146,154,104,0.12); color: var(--accent); display: flex; align-items: center; justify-content: center; font-size: 20px; }
.info-page-cta { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 30px 34px; border-radius: 28px; background: var(--ink); color: var(--white); }
.info-page-cta__title { margin: 8px 0 10px; font-size: 34px; color: var(--white); }
.info-page-cta__copy { max-width: 560px; font-size: 15px; line-height: 1.8; color: rgba(247,245,240,0.68); }
.info-page-contact-list { display: flex; flex-direction: column; gap: 18px; margin-top: 14px; }
.info-page-contact-item { display: grid; grid-template-columns: 40px minmax(0, 1fr); gap: 14px; align-items: start; }
.info-page-contact-item i { width: 40px; height: 40px; border-radius: 14px; background: rgba(146,154,104,0.12); color: var(--accent); display: flex; align-items: center; justify-content: center; font-size: 18px; }
.info-page-contact-item__label { margin-bottom: 4px; font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: #8a847b; }
.info-page-contact-item a,
.info-page-contact-item span { color: var(--ink); text-decoration: none; }
.info-page-form-note { font-size: 13px; color: #8a847b; }
.info-page-quiz-steps { display: grid; gap: 12px; margin-top: 22px; }
.info-page-quiz-step { display: flex; align-items: center; gap: 12px; padding: 12px 14px; border-radius: 18px; background: rgba(255,255,255,0.7); color: var(--ink); font-size: 14px; font-weight: 600; }
.info-page-quiz-step span { width: 28px; height: 28px; border-radius: 50%; background: rgba(146,154,104,0.12); color: var(--accent); display: inline-flex; align-items: center; justify-content: center; font-size: 12px; }
.info-page-quiz-panel { padding: 24px; border-radius: 24px; background: linear-gradient(180deg, rgba(146,154,104,0.12) 0%, rgba(255,255,255,0.92) 100%); border: 1px solid rgba(146,154,104,0.18); }
.info-page-quiz-panel__eyebrow { margin-bottom: 8px; font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: #8a847b; }


.social-links {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    align-items: center;
}

.social-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #333;
    font-size: 20px;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: var(--accent);
    color: #fff;
    transform: translateY(-3px);
}


.blog-page { background: linear-gradient(180deg, #f4eee4 0%, #f8f4eb 100%); }
.blog-hero,
.blog-post-hero { padding: 72px 0 24px; }
.blog-hero__shell,
.blog-post-hero__shell { padding: 40px 44px; border: 1px solid rgba(15,14,12,0.08); border-radius: 28px; background: rgba(255,255,255,0.8); box-shadow: 0 24px 60px rgba(31, 27, 21, 0.06); }
.blog-hero__title,
.blog-post-hero__title { max-width: 900px; margin: 12px 0 14px; font-size: clamp(42px, 5vw, 66px); line-height: 0.95; color: var(--ink); }
.blog-hero__intro,
.blog-post-hero__excerpt { max-width: 720px; font-size: 16px; line-height: 1.8; color: #6e685f; }
.blog-section { padding: 28px 0 96px; }
.blog-featured { border: 1px solid rgba(15,14,12,0.08); border-radius: 28px; overflow: hidden; background: rgba(255,255,255,0.84); box-shadow: 0 18px 44px rgba(31, 27, 21, 0.05); }
.blog-featured__media-link,
.blog-card__media-link { display: block; text-decoration: none; }
.blog-featured__image { width: 100%; height: 100%; min-height: 420px; object-fit: cover; display: block; }
.blog-featured__image--placeholder,
.blog-card__image--placeholder { background: linear-gradient(135deg, rgba(146,154,104,0.16), rgba(255,255,255,0.92)); color: var(--accent); display: flex; align-items: center; justify-content: center; }
.blog-featured__image--placeholder i,
.blog-card__image--placeholder i { font-size: 54px; }
.blog-featured__body { height: 100%; padding: 38px 40px; display: flex; flex-direction: column; justify-content: center; }
.blog-meta { display: flex; flex-wrap: wrap; gap: 10px 16px; font-size: 12px; font-weight: 600; color: #8a847b; }
.blog-meta__chip { display: inline-flex; align-items: center; padding: 7px 12px; border-radius: 999px; background: rgba(146,154,104,0.12); color: var(--accent); font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; }
.blog-featured__title { margin: 18px 0 16px; font-size: clamp(34px, 4vw, 52px); line-height: 1.02; color: var(--ink); }
.blog-featured__excerpt { margin-bottom: 24px; font-size: 16px; line-height: 1.85; color: #615b54; }
.blog-section__title { font-size: 40px; color: var(--ink); }
.blog-section__copy { max-width: 380px; font-size: 15px; line-height: 1.8; color: #7f7a72; }
.blog-card { border: 1px solid rgba(15,14,12,0.08); border-radius: 24px; overflow: hidden; background: rgba(255,255,255,0.84); box-shadow: 0 16px 40px rgba(31, 27, 21, 0.04); transition: transform 0.2s ease, box-shadow 0.2s ease; }
.blog-card:hover { transform: translateY(-3px); box-shadow: 0 22px 48px rgba(31, 27, 21, 0.07); }
.blog-card__image { width: 100%; height: 240px; object-fit: cover; display: block; }
.blog-card__body { padding: 22px 24px 24px; }
.blog-card__title { margin: 14px 0 12px; font-size: 24px; line-height: 1.18; }
.blog-card__title a { color: var(--ink); text-decoration: none; }
.blog-card__title a:hover,
.blog-card__link:hover { color: var(--accent); }
.blog-card__excerpt { margin-bottom: 18px; font-size: 14px; line-height: 1.8; color: #6e685f; }
.blog-card__link,
.blog-back-link { display: inline-flex; align-items: center; gap: 8px; color: var(--accent); text-decoration: none; font-size: 13px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; }
.blog-post-card { border: 1px solid rgba(15,14,12,0.08); border-radius: 28px; overflow: hidden; background: rgba(255,255,255,0.88); box-shadow: 0 20px 48px rgba(31, 27, 21, 0.05); }
.blog-post-card__image { width: 100%; max-height: 520px; object-fit: cover; display: block; }
.blog-post-card__content { padding: 34px 36px; }
.blog-post-card__content p { margin-bottom: 20px; font-size: 16px; line-height: 1.95; color: #574f47; }
.blog-sidebar { padding: 28px 30px; border: 1px solid rgba(15,14,12,0.08); border-radius: 24px; background: rgba(255,255,255,0.82); box-shadow: 0 18px 44px rgba(31, 27, 21, 0.04); position: sticky; top: 132px; }
.blog-sidebar__title { margin: 10px 0 18px; font-size: 28px; color: var(--ink); }
.blog-sidebar__list { display: grid; gap: 12px; }
.blog-sidebar__item { display: block; padding: 16px 18px; border-radius: 18px; background: #faf7f1; border: 1px solid rgba(15,14,12,0.06); text-decoration: none; transition: border-color 0.2s ease, transform 0.2s ease; }
.blog-sidebar__item:hover { border-color: rgba(146,154,104,0.26); transform: translateY(-1px); }
.blog-sidebar__item-title { color: var(--ink); font-size: 15px; font-weight: 700; line-height: 1.55; }
.blog-sidebar__item-meta { margin-top: 6px; font-size: 12px; color: #8a847b; }

.auth-page { min-height: 100vh; background: radial-gradient(circle at 12% 14%, rgba(166, 109, 57, 0.18), transparent 22%), radial-gradient(circle at 84% 18%, rgba(146,154,104,0.18), transparent 24%), linear-gradient(135deg, #efe2d3 0%, #f6eee5 44%, #e4d6c6 100%); }
.auth-shell { min-height: 100vh; padding: 40px 0; display: flex; align-items: center; }
.auth-stage { position: relative; max-width: 760px; margin: 0 auto; border: 1px solid rgba(63,43,29,0.10); border-radius: 36px; overflow: hidden; background: rgba(251,247,241,0.78); box-shadow: 0 30px 80px rgba(49, 34, 22, 0.12); backdrop-filter: blur(14px); isolation: isolate; }
.auth-stage__grain { position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px); background-size: 18px 18px; opacity: 0.55; pointer-events: none; }
.auth-stage__orb { position: absolute; border-radius: 999px; filter: blur(8px); pointer-events: none; opacity: 0.7; }
.auth-stage__orb--one { width: 220px; height: 220px; top: -80px; right: 22%; background: rgba(173, 121, 70, 0.16); }
.auth-stage__orb--two { width: 180px; height: 180px; bottom: -60px; left: 42%; background: rgba(146,154,104,0.14); }
.auth-brand { display: inline-flex; align-items: center; gap: 14px; color: var(--white); }
.auth-brand:hover { color: var(--white); }
.auth-brand__mark { width: 52px; height: 52px; border-radius: 18px; background: linear-gradient(135deg, #b46d3b, #d8b27a); color: var(--white); display: inline-flex; align-items: center; justify-content: center; font-size: 14px; font-weight: 700; letter-spacing: 0.08em; box-shadow: 0 14px 28px rgba(0,0,0,0.18); }
.auth-brand__title { font-family: var(--font-display); font-size: 31px; line-height: 1; color: var(--white); }
.auth-brand__sub { margin-top: 4px; font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(247,245,240,0.44); }
.auth-panel { position: relative; background: linear-gradient(180deg, #2f1d17 0%, #412720 18%, rgba(255,255,255,0.78) 18%, rgba(255,255,255,0.82) 100%); }
.auth-panel__inner { position: relative; display: flex; flex-direction: column; justify-content: center; min-height: 760px; padding: 38px 42px 42px; }
.auth-panel__masthead { display: flex; align-items: center; justify-content: space-between; gap: 24px; margin-bottom: 56px; }
.auth-panel__top { margin-bottom: 28px; }
.auth-panel__title { margin: 10px 0 10px; font-size: 38px; color: #2d2119; }
.auth-home-link { display: inline-flex; align-items: center; gap: 8px; color: rgba(247,245,240,0.82); text-decoration: none; font-size: 13px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; }
.auth-home-link:hover { color: #ffffff; }
.auth-panel__frame { position: relative; padding: 36px 32px 32px; border-radius: 30px; background: rgba(255,252,248,0.88); border: 1px solid rgba(82,55,37,0.08); box-shadow: inset 0 1px 0 rgba(255,255,255,0.85); }
.auth-panel__frame::before { content: ""; position: absolute; top: 18px; left: 32px; width: 56px; height: 4px; background: linear-gradient(90deg, #9a6a43, rgba(154,106,67,0.14)); border-radius: 999px; }
.auth-form { display: flex; flex-direction: column; gap: 18px; }
.auth-field { display: flex; flex-direction: column; }
.auth-field .form-label { margin-bottom: 8px; font-size: 13px; font-weight: 600; color: #4d3d31; }
.auth-control { min-height: 60px; border-radius: 20px; border: 1px solid rgba(89,64,46,0.12); background: rgba(255,255,255,0.94); padding: 0 18px; box-shadow: none; color: var(--ink); }
.auth-control::placeholder { color: #ab9c92; }
.auth-control:focus { border-color: rgba(154,106,67,0.46); box-shadow: 0 0 0 0.2rem rgba(154,106,67,0.12); }
.auth-field-error { margin: 7px 0 0; font-size: 12px; color: #b24532; }
.auth-form__meta { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding-top: 4px; }
.auth-inline-link { color: #9a6a43; text-decoration: none; }
.auth-inline-link:hover { color: var(--ink); }
.auth-submit { min-height: 58px; margin-top: 6px; }
.auth-loading { display: inline-flex; align-items: center; gap: 10px; padding: 4px 0; font-size: 14px; color: #6f6962; }
.auth-message { padding: 14px 16px; border-radius: 16px; font-size: 14px; border: 1px solid transparent; }
.auth-message--success { background: #eff8ef; border-color: #c9e6c9; color: #2f6a2f; }
.auth-message--error { background: #fff1ef; border-color: #f0cbc5; color: #a33b2c; }
.auth-consent { margin-top: 2px; padding: 14px 16px; border-radius: 18px; background: #fbf4ec; border: 1px solid rgba(89,64,46,0.08); }
.auth-consent .form-check-input,
.auth-form .form-check-input { margin-top: 0.2rem; }
.auth-consent .form-check-label,
.auth-form .form-check-label { color: #6f6962; font-size: 14px; }
.auth-panel__footer { margin-top: 26px; padding-top: 20px; border-top: 1px solid rgba(15,14,12,0.08); }
.auth-footer-copy { font-size: 14px; color: #6f6962; }

.cart-page-section { padding: 20px 0 110px; background: var(--off-white); }
.cart-page-header { display: flex; justify-content: space-between; align-items: end; gap: 24px; margin-bottom: 36px; padding-bottom: 24px; border-bottom: 1px solid var(--line); }
.cart-page-title { font-size: clamp(40px, 5vw, 64px); color: var(--ink); }
.cart-page-subtitle { max-width: 380px; font-size: 15px; line-height: 1.7; color: #777; }
.cart-empty-state { padding: 72px 32px; background: var(--white); border: 1px solid var(--line); border-radius: 24px; text-align: center; }
.cart-empty-state__icon { width: 88px; height: 88px; margin: 0 auto 20px; border-radius: 50%; background: rgba(146,154,104,0.14); color: var(--accent); display: flex; align-items: center; justify-content: center; font-size: 34px; }
.cart-list-head { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 18px; }
.cart-list-head__meta { font-size: 13px; color: #7f7f7f; }
.cart-list-head__clear { margin: 0; }
.cart-list-head .cart-clear-btn { width: auto; min-height: 38px; padding: 8px 14px; border-radius: 12px; font-size: 11px; letter-spacing: 0.06em; }
.cart-list { display: flex; flex-direction: column; gap: 18px; }
.cart-line-item { display: grid; grid-template-columns: 88px minmax(0, 1.3fr) auto minmax(220px, 240px) auto; gap: 18px; align-items: center; padding: 18px 20px; background: var(--white); border: 1px solid var(--line); border-radius: 24px; }
.cart-line-item__media { width: 100%; }
.cart-line-item__image { width: 88px; height: 88px; object-fit: cover; border-radius: 18px; background: #efe8db; }
.cart-line-item__image--placeholder { display: flex; align-items: center; justify-content: center; color: var(--accent); font-size: 42px; }
.cart-line-item__info { min-width: 0; }
.cart-line-item__title { font-size: 20px; color: var(--ink); }
.cart-line-item__meta { font-size: 13px; color: #7f7f7f; }
.cart-line-item__pricing { text-align: right; white-space: nowrap; }
.cart-line-item__price { font-size: 18px; font-weight: 700; color: var(--ink); }
.cart-line-item__price-old { font-size: 13px; color: #9a9a9a; text-decoration: line-through; }
.cart-line-item__actions { width: 100%; max-width: 240px; }
.cart-line-item__total { font-size: 18px; font-weight: 700; color: var(--ink); white-space: nowrap; text-align: right; }
.cart-summary-card { position: sticky; top: 140px; padding: 28px; background: var(--white); border: 1px solid var(--line); border-radius: 24px; box-shadow: 0 18px 40px rgba(31, 27, 21, 0.05); }
.cart-summary-row { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 12px 0; border-bottom: 1px solid var(--line); color: var(--ink); }
.cart-summary-note { margin-top: 18px; font-size: 13px; line-height: 1.7; color: #7f7f7f; }

@media (max-width: 991.98px) {
    .home-page .home-section { padding: 80px 0; }
    .home-page .feature-strip-card { padding: 28px 20px; }
    .home-page .feature-strip-card:nth-child(2n+1) { border-right: 1px solid var(--line); }
    .home-page .feature-strip-card:nth-child(n+3) { border-top: 1px solid var(--line); }
    .home-page .feature-strip-card-bordered { border-right: 0; }
    .home-page .story-row { border-radius: 18px; }
    .home-page .story-media { min-height: 360px; }
    .home-page .story-image { min-height: 360px; }
    .home-page .story-panel { padding: 56px 28px; }
    .home-page .quiz-card { padding: 56px 32px; }
    .home-page .quiz-ghost { font-size: 96px; right: -8px; }
    .home-page .stats-item-bordered:nth-child(2n) { border-right: 0; }
    .home-page .stats-item-bordered:nth-child(n+3) { border-top: 1px solid rgba(255,255,255,0.2); }
    .home-page .products-grid > .col:nth-child(4n) { border-right: 1px solid var(--line); }
    .home-page .products-grid > .col:nth-child(2n) { border-right: 0; }
    .home-page .products-grid > .col:nth-last-child(-n+4) { border-bottom: 1px solid var(--line); }
    .home-page .products-grid > .col:nth-last-child(-n+2) { border-bottom: 0; }
    .home-page .testimonials-grid > .col:nth-child(3n) { border-right: 1px solid var(--line); }
    .home-page .testimonials-grid > .col:nth-child(2n) { border-right: 0; }
    .home-page .testimonials-grid > .col:nth-child(n+3) { border-top: 1px solid var(--line); }
    .cart-page-section { padding: 64px 0 80px; }
    .cart-page-header { align-items: start; flex-direction: column; }
    .checkout-page-section { padding: 56px 0 72px; }
    .checkout-header,
    .checkout-auth-card,
    .checkout-choice-grid,
    .checkout-section-head,
    .checkout-payment-card__top { align-items: start; flex-direction: column; }
    .checkout-shell { border-radius: 24px; }
    .checkout-shell__main,
    .checkout-shell__side { padding: 26px 24px 28px; }
    .checkout-shell__side { border-left: 0; border-top: 1px solid rgba(15,14,12,0.08); }
    .checkout-choice-grid { grid-template-columns: 1fr; }
    .checkout-section { padding: 22px 0; }
    .checkout-section-head { display: flex; }
    .checkout-section-copy { max-width: none; }
    .checkout-summary-card { position: static; }
    .checkout-success-meta { grid-template-columns: 1fr; }
    .info-page-hero__shell,
    .info-page-content-card,
    .info-page-story-card,
    .info-page-pillars,
    .info-page-quiz-card { padding: 28px 24px; }
    .info-page-highlight-card,
    .info-page-stat-card { border-right: 0; border-bottom: 1px solid var(--line); }
    .info-page-highlights > .col:last-child .info-page-highlight-card,
    .info-page-highlights > .col:last-child .info-page-stat-card { border-bottom: 0; }
    .info-page-cta { align-items: start; flex-direction: column; }
    .product-page-section { padding: 72px 0 40px; }
    .product-gallery-main__image { height: 420px; }
    .product-detail-meta { grid-template-columns: 1fr; }
    .product-cart-stack__item { max-width: none; }
    .product-related-grid > .col:nth-child(4n) { border-right: 1px solid var(--line); }
    .product-related-grid > .col:nth-child(2n) { border-right: 0; }
    .product-related-grid > .col:nth-last-child(-n+4) { border-bottom: 1px solid var(--line); }
    .product-related-grid > .col:nth-last-child(-n+2) { border-bottom: 0; }
    .shop-page-section { padding: 72px 0 88px; }
    .shop-page-hero,
    .shop-toolbar { align-items: start; flex-direction: column; }
    .shop-sidebar { position: static; }
    .shop-sort-form { width: 100%; justify-content: space-between; }
    .shop-sort-select { min-width: 0; width: 100%; }
    .shop-products-grid > .col:nth-child(3n) { border-right: 1px solid var(--line); }
    .shop-products-grid > .col:nth-child(2n) { border-right: 0; }
    .shop-products-grid > .col:nth-last-child(-n+3) { border-bottom: 1px solid var(--line); }
    .shop-products-grid > .col:nth-last-child(-n+2) { border-bottom: 0; }
    .cart-list-head { align-items: start; flex-direction: column; }
    .cart-list-head .cart-clear-btn { width: 100%; }
    .cart-line-item { grid-template-columns: 72px minmax(0, 1fr); }
    .cart-line-item__image { width: 72px; height: 72px; }
    .cart-line-item__pricing,
    .cart-line-item__actions,
    .cart-line-item__total { grid-column: 1 / -1; }
    .cart-line-item__pricing,
    .cart-line-item__total { text-align: left; }
    .cart-line-item__actions { max-width: none; }
    .cart-summary-card { position: static; }
    .auth-shell { padding: 24px 0; }
    .auth-panel__inner { min-height: auto; padding: 32px 24px; }
    .auth-panel__masthead { margin-bottom: 32px; }
    .auth-panel__top { margin-bottom: 22px; }
    .blog-hero__shell,
    .blog-post-hero__shell,
    .blog-featured__body,
    .blog-post-card__content,
    .blog-sidebar { padding: 28px 24px; }
    .blog-sidebar { position: static; }
}

@media (max-width: 767.98px) {
    .navbar-logo-icon { width: 64px; }
    .navbar-logo-image { max-width: 64px; }
    .auth-shell { padding: 16px 0; }
    .auth-stage { border-radius: 24px; }
    .auth-panel__inner { padding: 24px 18px; }
    .auth-panel__masthead { align-items: start; flex-direction: column; gap: 18px; margin-bottom: 24px; }
    .auth-panel__title { font-size: 30px; }
    .auth-panel__frame { padding: 22px 18px; border-radius: 24px; }
    .auth-form__meta { align-items: start; flex-direction: column; }
    .blog-hero,
    .blog-post-hero { padding: 56px 0 18px; }
    .blog-hero__shell,
    .blog-post-hero__shell { padding: 26px 20px; }
    .blog-hero__title,
    .blog-post-hero__title { font-size: clamp(34px, 11vw, 48px); }
    .blog-section { padding: 20px 0 72px; }
    .blog-featured__image { min-height: 280px; }
    .blog-card__image { height: 220px; }
    .info-page-hero { padding: 56px 0 18px; }
    .info-page-hero__shell { padding: 26px 20px; }
    .info-page-hero__title { font-size: clamp(34px, 11vw, 48px); }
    .info-page-section { padding: 20px 0 72px; }
    .info-page-copy-block__title { font-size: 24px; }
    .checkout-header { margin-bottom: 16px; }
    .checkout-header__meta { width: 100%; max-width: 180px; }
    .checkout-steps { margin-bottom: 14px; }
    .checkout-shell__main,
    .checkout-shell__side { padding: 22px 18px 24px; }
    .checkout-auth-card,
    .checkout-login-card,
    .checkout-choice-card { padding: 18px; }
    .checkout-section-title { font-size: 22px; }
    .checkout-summary-item { grid-template-columns: 48px minmax(0, 1fr) auto; gap: 10px; }
    .checkout-summary-item__image { width: 48px; height: 48px; border-radius: 14px; }
    .product-gallery-main__image { height: 320px; }
    .product-detail-title { font-size: clamp(34px, 11vw, 48px); }
    .product-related-grid > .col { border-right: 0; }
    .product-related-grid > .col:nth-last-child(-n+2) { border-bottom: 1px solid var(--line); }
    .product-related-grid > .col:last-child { border-bottom: 0; }
    .shop-products-grid > .col { border-right: 0; }
    .shop-products-grid > .col:nth-last-child(-n+2) { border-bottom: 1px solid var(--line); }
    .shop-products-grid > .col:last-child { border-bottom: 0; }
    .home-page .hero-container { padding-top: 96px; padding-bottom: 88px; }
    .home-page .hero-ghost { right: -24px; font-size: clamp(140px, 42vw, 220px); }
    .home-page .hero-trust { gap: 0.85rem 1rem; }
    .home-page .categories-intro { max-width: none; text-align: left !important; margin-top: 1rem; }
    .home-page .cat-card-tall { height: 420px; }
    .home-page .cat-card-short { height: 240px; }
    .home-page .cat-title-featured { font-size: 32px; }
    .home-page .cat-title-regular { font-size: 20px; }
    .home-page .cat-title-short { font-size: 18px; }
    .home-page .quiz-card { padding: 44px 24px; }
    .home-page .quiz-ghost { display: none; }
    .home-page .newsletter-stats { gap: 1rem !important; }
    .home-page .products-grid > .col { border-right: 0; }
    .home-page .products-grid > .col:nth-last-child(-n+2) { border-bottom: 1px solid var(--line); }
    .home-page .products-grid > .col:last-child { border-bottom: 0; }
    .home-page .testimonials-grid > .col { border-right: 0; }
    .home-page .testimonials-grid > .col + .col { border-top: 1px solid var(--line); }
}

/* ADMIN */
.admin-shell { min-height: 100vh; background: linear-gradient(180deg, #f8f5ed 0%, #f2eee4 100%); display: grid; grid-template-columns: 280px minmax(0, 1fr); }
.admin-shell__sidebar { background: var(--ink); color: rgba(247,245,240,0.7); padding: 32px 24px; }
.admin-shell__main { min-width: 0; padding: 24px; }
.admin-brand { display: flex; align-items: center; gap: 14px; color: var(--white); }
.admin-brand:hover { color: var(--white); }
.admin-brand__mark, .admin-auth-mark { width: 48px; height: 48px; border-radius: 14px; display: inline-flex; align-items: center; justify-content: center; background: linear-gradient(135deg, var(--accent), var(--gold)); color: var(--white); font-weight: 700; letter-spacing: 0.08em; }
.admin-brand__title { font-family: var(--font-display); font-size: 28px; line-height: 1; }
.admin-brand__sub, .admin-topbar__eyebrow { font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(247,245,240,0.5); }
.admin-nav__link { display: flex; align-items: center; gap: 12px; padding: 12px 14px; border-radius: 14px; color: rgba(247,245,240,0.74); text-decoration: none; transition: background 0.2s, color 0.2s, transform 0.2s; }
.admin-nav__link:hover, .admin-nav__link.is-active { background: rgba(255,255,255,0.08); color: var(--white); transform: translateX(2px); }
.admin-topbar { background: rgba(255,255,255,0.72); backdrop-filter: blur(10px); border: 1px solid rgba(15,14,12,0.08); border-radius: 22px; padding: 20px 24px; margin-bottom: 24px; }
.admin-topbar__title { font-family: var(--font-display); font-size: 40px; color: var(--ink); line-height: 1; }
.admin-content { min-width: 0; }
.admin-panel, .admin-stat-card, .admin-auth-card { background: rgba(255,255,255,0.9); border: 1px solid rgba(15,14,12,0.08); border-radius: 24px; }
.admin-panel { padding: 24px; box-shadow: 0 16px 40px rgba(15,14,12,0.06); }
.admin-stat-card { padding: 22px; box-shadow: 0 14px 34px rgba(15,14,12,0.05); }
.admin-stat-card__label { margin-bottom: 10px; font-size: 12px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: #7f7a72; }
.admin-stat-card__value { margin: 0; font-family: var(--font-display); font-size: 48px; line-height: 1; color: var(--ink); }
.admin-mini-card { padding: 14px 16px; border: 1px solid rgba(15,14,12,0.08); border-radius: 16px; background: #fbf8f1; }
.admin-auth-body { min-height: 100vh; background: radial-gradient(circle at top, rgba(146,154,104,0.22), transparent 32%), linear-gradient(180deg, #f6f2e8 0%, #ece6d9 100%); }
.admin-auth-card__body { border-radius: 24px; }
.admin-auth-note { padding: 14px 16px; border-radius: 16px; background: #f5efe4; color: var(--ink-soft); font-size: 14px; line-height: 1.7; }

@media (max-width: 991.98px) {
    .admin-shell { grid-template-columns: 1fr; }
    .admin-shell__sidebar { padding: 20px; }
    .admin-shell__main { padding: 20px; }
}
.admin-image-preview { padding: 14px 16px; border: 1px solid rgba(15,14,12,0.08); border-radius: 16px; background: #fbf8f1; }
.admin-image-preview__thumb { width: 96px; height: 96px; object-fit: cover; border-radius: 14px; border: 1px solid rgba(15,14,12,0.08); }
.admin-image-settings-card { padding: 24px; border: 1px solid rgba(15,14,12,0.08); border-radius: 20px; background: #fff; box-shadow: 0 16px 40px rgba(31, 27, 21, 0.06); }
