/** Shopify CDN: Minification failed

Line 68:10 Expected identifier but found whitespace
Line 68:11 Unexpected "14px"

**/
/* ============================================
   SPICE'S KING — THEME CSS
   ============================================ */

:root {
  --brown: #2c1a0e;
  --brown-mid: #5c3317;
  --green: #2d6a4f;
  --green-light: #40916c;
  --green-pale: #e8f5e9;
  --light-gray: #f5ede0;
  --cream: #fdf6ec;
  --text-gray: #8a7560;
  --gold: #c8960c;
  --gold-light: #f0d080;
  --warm-white: #fffaf3;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body {
  font-family: 'Jost', sans-serif;
  color: var(--brown);
  overflow-x: hidden;
  background-color: #fdf6ec;
  background-image: radial-gradient(circle, #c8960c 1px, transparent 1px);
  background-size: 24px 24px;
  background-position: 0 0;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background: rgba(253,246,236,0.75);
  z-index: -1;
  pointer-events: none;
}
a { text-decoration: none; color: inherit; }

/* ── ANNOUNCEMENT BAR ── */
.announce {
  background: linear-gradient(90deg, #2c1a0e, #5c3317, #2c1a0e); color: var(--gold-light);
  font-size: 12px; letter-spacing: 1.5px;
  text-transform: uppercase; padding: 9px 0;
  overflow: hidden; white-space: nowrap;
}
.announce-inner { display: inline-block; animation: marquee 24s linear infinite; }
.announce-inner span { margin: 0 40px; }
@keyframes marquee { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }

/* ── NAVBAR ── */
.site-nav {
  position: sticky; top: 0; z-index: 100;
  background-color: #fdf6ec;
  background-image:
    radial-gradient(circle, rgba(200,150,12,0.25) 1px, transparent 1px);
  background-size: 24px 24px;
  border-bottom: 1px solid #e8d5b0;
  padding: 8px 20px;
  display: flex; align-items: center; justify-content: space-between;
}
  padding: 14px 20px;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo { text-align: center; flex: 1; }
.logo-text-link { text-decoration: none; }
.logo-text { font-family: 'Playfair Display', serif; font-size: 22px; font-weight: 700; color: var(--brown); }
.logo-tagline { font-size: 9px; letter-spacing: 3px; color: var(--green); text-transform: uppercase; font-weight: 500; margin-top: 1px; }
.logo-img { max-height: 50px; width: auto; }
.nav-left, .nav-right { display: flex; align-items: center; gap: 14px; }
.nav-icon { background: none; border: none; cursor: pointer; color: var(--brown); font-size: 20px; padding: 4px; }
.cart-btn { position: relative; }
.cart-badge {
  position: absolute; top: -4px; right: -4px;
  background: var(--green); color: #fff;
  font-size: 9px; font-weight: 700;
  width: 17px; height: 17px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}

/* ── SEARCH BAR ── */
.search-bar {
  display: none; background: var(--light-gray);
  padding: 12px 20px; border-bottom: 1px solid #e8e0d6;
}
.search-bar.open { display: block; }
.search-form { display: flex; align-items: center; gap: 10px; }
.search-input {
  flex: 1; padding: 10px 14px; border: 1.5px solid #ddd;
  font-family: 'Jost', sans-serif; font-size: 14px;
  background: #fff; outline: none;
}
.search-input:focus { border-color: var(--green); }
.search-submit, .search-close {
  background: none; border: none; cursor: pointer;
  color: var(--brown); padding: 6px;
}

/* ── MENU DRAWER ── */
.menu-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.35);
  z-index: 200; opacity: 0; pointer-events: none; transition: opacity .3s;
}
.menu-overlay.open { opacity: 1; pointer-events: all; }
.menu-drawer {
  position: fixed; top: 0; left: 0; bottom: 0; width: 85%; max-width: 340px;
  background: #fff; z-index: 201;
  transform: translateX(-100%); transition: transform .35s cubic-bezier(.4,0,.2,1);
  display: flex; flex-direction: column;
}
.menu-drawer.open { transform: translateX(0); }
.menu-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 20px; border-bottom: 1px solid #e8e0d6;
}
.menu-header .logo-sm h2 { font-family: 'Playfair Display', serif; font-size: 18px; color: var(--brown); }
.menu-header .logo-sm p { font-size: 8px; letter-spacing: 2.5px; color: var(--green); text-transform: uppercase; }
.close-btn { background: none; border: none; font-size: 22px; cursor: pointer; color: var(--brown); }
.menu-links { flex: 1; padding: 8px 0; overflow-y: auto; }
.menu-links a {
  display: block; padding: 16px 24px;
  font-size: 13px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--brown); font-weight: 500;
  border-bottom: 1px solid #f0ebe3; transition: background .2s, color .2s;
}
.menu-links a.active { background: var(--green-pale); color: var(--green); }
.menu-links a:hover { background: var(--green-pale); color: var(--green); }
.menu-footer { padding: 20px 24px; border-top: 1px solid #e8e0d6; }
.menu-footer-tag { font-size: 11px; color: var(--green); letter-spacing: 1px; margin-bottom: 6px; }
.menu-contact { font-size: 12px; color: var(--text-gray); }

/* ── HERO ── */
.hero-section { }
.hero-img-wrap { position: relative; overflow: hidden; }
.hero-img { width: 100%; height: 220px; object-fit: cover; object-position: 30% 40%; display: block; }

@media (min-width: 768px) {
  .hero-img { height: 300px; object-position: center 40%; }
  .hero-img-placeholder { height: 300px; }
}

@media (min-width: 1024px) {
  .hero-img { height: 400px; object-fit: cover; object-position: center center; width: 100%; }
}
.hero-img-placeholder {
  width: 100%; height: 260px;
  background: linear-gradient(135deg, #f5ede0, #d4c4a8);
  display: flex; align-items: center; justify-content: center;
  font-size: 80px;
}

.badge-label {
  font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--green); font-weight: 600; margin-bottom: 5px;
  display: flex; align-items: center; gap: 5px;
}
.hero-badge { position: absolute; bottom: 0px; left: 18px; background: #fff; padding: 10px 12px; box-shadow: 0 4px 20px rgba(0,0,0,.12); max-width: 160px; }
.hero-badge h3 { font-family: 'Playfair Display', serif; font-size: 13px; color: var(--brown); margin-bottom: 3px; }
.hero-badge p { font-size: 11px; color: var(--text-gray); letter-spacing: 1px; }
.hero-content { padding: 32px 20px 0; }
.tag-line {
  font-size: 11px; letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--green); font-weight: 500;
  display: flex; align-items: center; gap: 7px; margin-bottom: 14px;
}
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: 40px; line-height: 1.1;
  color: var(--brown); font-weight: 900; margin-bottom: 14px;
}
.hero-title em { font-style: italic; color: var(--green); }
.hero-desc { font-size: 15px; line-height: 1.65; color: #666; margin-bottom: 28px; }
.hero-btns { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 36px; }

/* ── BUTTONS ── */
.btn-primary {
  background: linear-gradient(135deg, #c8960c, #e8b830); color: #2c1a0e;
  padding: 14px 24px; border: none; cursor: pointer;
  font-size: 11px; letter-spacing: 2px; text-transform: uppercase; font-weight: 600;
  font-family: 'Jost', sans-serif;
  display: inline-flex; align-items: center; gap: 8px;
  transition: background .2s;
}
.btn-primary:hover { background: var(--brown); }
.btn-secondary {
  background: transparent; color: var(--brown);
  padding: 13px 24px; border: 1.5px solid var(--brown); cursor: pointer;
  font-size: 11px; letter-spacing: 2px; text-transform: uppercase; font-weight: 600;
  font-family: 'Jost', sans-serif; display: inline-block;
  transition: background .2s, color .2s;
}
.btn-secondary:hover { background: var(--brown); color: #fff; }
.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1.5px solid var(--brown); padding: 13px 32px;
  font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
  font-weight: 600; color: var(--brown); cursor: pointer; background: none;
  font-family: 'Jost', sans-serif; transition: background .2s, color .2s;
}
.btn-outline:hover { background: var(--brown); color: #fff; }

/* ── STATS ── */
.stats-bar {
  display: flex; border-top: 1px solid #e8e0d6;
  padding: 28px 0; gap: 0; margin-bottom: 0;
}
.stat { flex: 1; text-align: center; position: relative; }
.stat + .stat::before {
  content: ''; position: absolute; left: 0; top: 10%; bottom: 10%;
  width: 1px; background: #e8e0d6;
}
.stat-num { font-family: 'Playfair Display', serif; font-size: 26px; font-weight: 700; color: var(--brown); }
.stat-label { font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--text-gray); margin-top: 3px; }

/* ── SECTION HEADERS ── */
.section-header { text-align: center; margin-bottom: 28px; }
.sec-tag { font-size: 11px; letter-spacing: 2.5px; text-transform: uppercase; color: var(--green); font-weight: 500; margin-bottom: 10px; }
.sec-title { font-family: 'Playfair Display', serif; font-size: 32px; font-weight: 800; color: var(--brown); line-height: 1.15; }
.sec-desc { font-size: 14px; color: #888; line-height: 1.65; margin-top: 10px; }

/* ── FEATURED PRODUCTS ── */
.featured-section { padding: 44px 20px; }
.products-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 28px; }

@media (min-width: 768px) {
  .products-grid { grid-template-columns: 1fr 1fr 1fr; }
}

@media (min-width: 1024px) {
  .products-grid { grid-template-columns: 1fr 1fr 1fr 1fr; }
}
.product-card { background: #fdf0d8;
  overflow: hidden;
  transition: transform .2s;
  display: flex;
  flex-direction: column;
}

.product-card .product-card-link {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-card .product-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.product-card:hover { transform: translateY(-3px); }
.product-img {
  width: 100%; aspect-ratio: 1;
  background: #e8e3da; position: relative; overflow: hidden;
}
.product-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.product-img-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-size: 50px;
  background: linear-gradient(145deg, #ede8e0, #d5cfc4);
}
.product-tags { position: absolute; top: 10px; left: 10px; display: flex; gap: 6px; flex-wrap: wrap; }
.tag-badge { font-size: 9px; letter-spacing: 1px; text-transform: uppercase; font-weight: 600; padding: 4px 8px; }
.tag-green { background: var(--green); color: #fff; }
.tag-gold { background: var(--gold); color: #fff; }
.product-info { padding: 12px 12px 8px; }
.product-name { font-family: 'Playfair Display', serif; font-size: 14px; font-weight: 700; color: var(--brown); margin-bottom: 2px; }
.product-sub { font-size: 11px; color: var(--text-gray); margin-bottom: 7px; }
.product-price { display: flex; align-items: center; gap: 6px; flex-wrap: wrap; margin-bottom: 10px; }
.price-now { font-size: 15px; font-weight: 700; color: var(--brown); }
.price-old { font-size: 12px; color: var(--text-gray); text-decoration: line-through; }
.price-unit { font-size: 10px; color: var(--text-gray); }
.btn-add-cart {
  width: 100%; background: linear-gradient(135deg, #2c1a0e, #5c3317); color: #f0d080;
  padding: 10px; border: none; cursor: pointer;
  font-size: 10px; letter-spacing: 2px; text-transform: uppercase;
  font-weight: 600; font-family: 'Jost', sans-serif;
  transition: background .2s;
}
.btn-add-cart:hover { background: var(--green); }
.btn-add-cart:disabled { background: #ccc; cursor: not-allowed; font-size: 9px; }
.view-all-wrap { text-align: center; }

/* ── COLLECTIONS ── */
.collections-section { background: #fdf0d8; padding: 44px 20px; }
.collections-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.coll-card { display: block; padding: 28px 20px 24px; transition: transform .2s; }
.coll-card:hover { transform: translateY(-2px); }
.coll-card.mint { background: #1a1008; border: 1px solid #c8960c; }
.coll-card.yellow { background: #1a1008; border: 1px solid #c8960c; }
.coll-card.peach { background: #1a1008; border: 1px solid #c8960c; }
.coll-card.lavender { background: #1a1008; border: 1px solid #c8960c; }
.coll-icon { font-size: 32px; margin-bottom: 14px; display: block; }
.coll-name { font-family: 'Playfair Display', serif; font-size: 18px; font-weight: 700; color: #f0d080; line-height: 1.2; margin-bottom: 4px; }
.coll-sub { font-size: 12px; color: rgba(200,150,12,0.7); }

/* ── WHOLESALE BANNER ── */
.wholesale-banner {
  background: linear-gradient(135deg, #1a3d2b 0%, #2d6a4f 60%, #3d8b65 100%);
  padding: 48px 24px; position: relative; overflow: hidden;
}
.wholesale-banner::before {
  content: ''; position: absolute; top: -40px; right: -40px;
  width: 200px; height: 200px; border-radius: 50%;
  background: rgba(255,255,255,.05);
}
.wholesale-tag {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,.15); color: #fff;
  font-size: 10px; letter-spacing: 2px; text-transform: uppercase;
  padding: 5px 12px; border-radius: 20px; margin-bottom: 16px; font-weight: 600;
}
.wholesale-title {
  font-family: 'Playfair Display', serif;
  font-size: 30px; font-weight: 800; color: #fff;
  line-height: 1.2; margin-bottom: 14px;
}
.wholesale-title span { color: #a8d5b5; font-style: italic; }
.wholesale-desc { font-size: 14px; color: rgba(255,255,255,.8); line-height: 1.7; margin-bottom: 22px; }
.wholesale-perks { display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.wholesale-perk { display: flex; align-items: center; gap: 10px; font-size: 13px; color: rgba(255,255,255,.9); }
.perk-dot { width: 6px; height: 6px; border-radius: 50%; background: #a8d5b5; flex-shrink: 0; }
.wholesale-btns { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 18px; }
.btn-white {
  background: #fff; color: var(--green);
  padding: 13px 22px; border: none; cursor: pointer;
  font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
  font-weight: 700; font-family: 'Jost', sans-serif;
  display: inline-flex; align-items: center; gap: 8px;
  transition: background .2s;
}
.btn-white:hover { background: #f0faf4; }
.btn-ghost-white {
  background: transparent; color: #fff;
  padding: 12px 22px; border: 1.5px solid rgba(255,255,255,.5); cursor: pointer;
  font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
  font-weight: 600; font-family: 'Jost', sans-serif;
  transition: border-color .2s, background .2s;
}
.btn-ghost-white:hover { border-color: #fff; background: rgba(255,255,255,.1); }
.wholesale-note { font-size: 11px; color: rgba(255,255,255,.55); letter-spacing: 0.5px; }

/* ── ABOUT STRIP ── */
.about-strip { background: var(--brown); color: #fff; padding: 48px 24px; }
.about-strip .sec-tag { color: #c4956a; }
.about-strip .sec-title { color: #fff; font-family: 'Playfair Display', serif; font-size: 28px; font-weight: 800; line-height: 1.2; margin-bottom: 14px; }
.about-strip p { font-size: 14px; color: rgba(255,255,255,.75); line-height: 1.7; margin-bottom: 24px; }
.about-strip .btn-primary { background: #c4956a; }
.about-strip .btn-primary:hover { background: var(--gold); }

/* ── WHY US ── */
.why-section { padding: 44px 20px; }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.why-card { background: #fdf0d8; padding: 22px 18px; text-align: center; border: 1px solid #e8d5b0; }
.why-icon { font-size: 28px; margin-bottom: 10px; }
.why-title { font-family: 'Playfair Display', serif; font-size: 14px; font-weight: 700; color: var(--brown); margin-bottom: 6px; }
.why-desc { font-size: 12px; color: #777; line-height: 1.6; }

/* ── CART DRAWER ── */
.cart-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,.3);
  z-index: 200; opacity: 0; pointer-events: none; transition: opacity .3s;
}
.cart-overlay.open { opacity: 1; pointer-events: all; }
.cart-drawer {
  position: fixed; top: 0; right: 0; bottom: 0; width: 88%; max-width: 360px;
  background: #fff; z-index: 201;
  transform: translateX(100%); transition: transform .35s cubic-bezier(.4,0,.2,1);
  display: flex; flex-direction: column;
}
.cart-drawer.open { transform: translateX(0); }
.cart-drawer-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 20px; border-bottom: 1px solid #e8e0d6;
}
.cart-drawer-header h3 { font-family: 'Playfair Display', serif; font-size: 18px; color: var(--brown); }
.cart-count { font-size: 14px; color: var(--text-gray); }
.cart-items { flex: 1; overflow-y: auto; padding: 16px 20px; }
.cart-empty { text-align: center; padding: 50px 20px; }
.cart-empty-icon { font-size: 44px; margin-bottom: 12px; }
.cart-empty p { font-size: 14px; color: var(--text-gray); margin-bottom: 18px; }
.btn-start-shopping {
  background: var(--green); color: #fff; border: none; cursor: pointer;
  padding: 12px 24px; font-size: 11px; letter-spacing: 2px;
  text-transform: uppercase; font-weight: 600; font-family: 'Jost', sans-serif;
}
.cart-item { display: flex; gap: 12px; padding: 14px 0; border-bottom: 1px solid #f0ebe3; }
.cart-item-img {
  width: 64px; height: 64px; background: var(--light-gray);
  display: flex; align-items: center; justify-content: center;
  font-size: 26px; flex-shrink: 0; overflow: hidden;
}
.cart-item-img img { width: 100%; height: 100%; object-fit: cover; }
.cart-item-info { flex: 1; }
.cart-item-name { font-family: 'Playfair Display', serif; font-size: 13px; color: var(--brown); font-weight: 600; margin-bottom: 2px; }
.cart-item-variant { font-size: 11px; color: var(--text-gray); margin-bottom: 8px; }
.cart-item-row { display: flex; align-items: center; justify-content: space-between; }
.qty-ctrl { display: flex; align-items: center; gap: 8px; }
.qty-btn {
  width: 26px; height: 26px; border: 1px solid #ddd;
  background: #fff; cursor: pointer; font-size: 16px;
  display: flex; align-items: center; justify-content: center;
  transition: background .15s;
}
.qty-btn:hover { background: var(--light-gray); }
.qty-num { font-size: 13px; font-weight: 600; min-width: 22px; text-align: center; }
.cart-item-price { font-size: 14px; font-weight: 700; color: var(--brown); }
.cart-footer {
padding: 16px 20px;
border-top: 1px solid #e8e0d6;
position: sticky;
bottom: 0;
background: #fff;
z-index: 10;
}

.cart-subtotal { display: flex; justify-content: space-between; margin-bottom: 6px; }
.cart-subtotal span { font-size: 14px; font-weight: 600; color: var(--brown); }
.cart-shipping-note { font-size: 11px; color: var(--text-gray); margin-bottom: 14px; }
.btn-checkout {
  display: block; width: 100%; background: var(--green); color: #fff;
  padding: 15px; border: none; cursor: pointer; text-align: center;
  font-size: 12px; letter-spacing: 2px; text-transform: uppercase;
  font-weight: 600; font-family: 'Jost', sans-serif; margin-bottom: 10px;
  transition: background .2s;
}
.btn-checkout:hover { background: var(--brown); }
.btn-whatsapp-order {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  width: 100%; background: #25d366; color: #fff;
  padding: 13px; border: none; cursor: pointer;
  font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase;
  font-weight: 600; font-family: 'Jost', sans-serif;
}

/* ── WHOLESALE DRAWER ── */
.ws-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,.4);
  z-index: 300; opacity: 0; pointer-events: none; transition: opacity .3s;
}
.ws-overlay.open { opacity: 1; pointer-events: all; }
.ws-drawer {
  position: fixed; bottom: 0; left: 0; right: 0;
  background: #fff; z-index: 301; border-radius: 20px 20px 0 0;
  padding: 20px 22px 36px;
  transform: translateY(100%); transition: transform .4s cubic-bezier(.4,0,.2,1);
  max-height: 92vh; overflow-y: auto;
}
.ws-drawer.open { transform: translateY(0); }
.ws-handle { width: 40px; height: 4px; background: #ddd; border-radius: 2px; margin: 0 auto 20px; }
.ws-drawer h3 { font-family: 'Playfair Display', serif; font-size: 22px; color: var(--brown); margin-bottom: 6px; }
.ws-sub { font-size: 13px; color: var(--text-gray); margin-bottom: 22px; }
.ws-form-group { margin-bottom: 15px; }
.ws-form-group label { display: block; font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--brown); font-weight: 600; margin-bottom: 7px; }
.ws-form-group input,
.ws-form-group select,
.ws-form-group textarea {
  width: 100%; padding: 12px 14px;
  border: 1.5px solid #e0d8d0; font-family: 'Jost', sans-serif;
  font-size: 14px; color: var(--brown); background: var(--cream);
  outline: none; transition: border-color .2s;
}
.ws-form-group input:focus,
.ws-form-group select:focus,
.ws-form-group textarea:focus { border-color: var(--green); }
.ws-form-group textarea { resize: vertical; min-height: 80px; }
.btn-ws-submit {
  width: 100%; background: var(--green); color: #fff;
  padding: 15px; border: none; cursor: pointer;
  font-size: 12px; letter-spacing: 2px; text-transform: uppercase;
  font-weight: 600; font-family: 'Jost', sans-serif; margin-top: 8px;
  transition: background .2s;
}
.btn-ws-submit:hover { background: var(--brown); }
.ws-divider {
  text-align: center; margin: 16px 0; position: relative;
  color: var(--text-gray); font-size: 12px;
}
.ws-divider::before {
  content: ''; position: absolute; top: 50%; left: 0; right: 0;
  height: 1px; background: #e8e0d6; z-index: 0;
}
.ws-divider span { background: #fff; padding: 0 12px; position: relative; z-index: 1; }
.ws-whatsapp-btn {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  width: 100%; background: #25d366; color: #fff;
  padding: 14px; border: none; cursor: pointer;
  font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase;
  font-weight: 600; font-family: 'Jost', sans-serif;
}

/* ── WHATSAPP FAB ── */
.whatsapp-fab {
  position: fixed; bottom: 24px; right: 20px; z-index: 99;
  width: 54px; height: 54px; border-radius: 50%;
  background: #25d366; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 18px rgba(37,211,102,.5); transition: transform .2s;
}
.whatsapp-fab:hover { transform: scale(1.1); }

/* ── FOOTER ── */
.site-footer { background: var(--brown); color: rgba(255,255,255,.8); padding: 44px 20px 24px; }
.footer-brand { margin-bottom: 32px; }
.footer-logo-text { font-family: 'Playfair Display', serif; font-size: 24px; color: #fff; }
.footer-tagline { font-size: 9px; letter-spacing: 3px; color: #c4956a; text-transform: uppercase; margin-bottom: 14px; }
.footer-desc { font-size: 13px; line-height: 1.7; margin-bottom: 16px; }
.footer-social { display: flex; gap: 14px; }
.social-link { color: rgba(255,255,255,.6); transition: color .2s; }
.social-link:hover { color: #fff; }
.footer-links-col { margin-bottom: 28px; }
.footer-links-col h4 { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: #c4956a; margin-bottom: 14px; }
.footer-links-col a { display: block; font-size: 13px; color: rgba(255,255,255,.7); margin-bottom: 9px; }
.footer-links-col a:hover { color: #fff; }
.footer-contact-item { font-size: 12px; color: rgba(255,255,255,.65); margin-bottom: 8px; }
.footer-whatsapp-link { display: inline-block; font-size: 13px; color: #a8d5b5; margin-top: 6px; }
.footer-divider { border: none; border-top: 1px solid rgba(255,255,255,.12); margin: 24px 0 16px; }
.footer-bottom { display: flex; flex-direction: column; gap: 6px; }
.footer-bottom p { font-size: 11px; color: rgba(255,255,255,.4); text-align: center; }
.footer-payments { font-size: 11px; color: rgba(255,255,255,.35); }

/* ── ANIMATIONS ── */
.fade-up { opacity: 0; transform: translateY(22px); transition: opacity .55s, transform .55s; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ── PRODUCT PAGE (basic) ── */
.product-page { padding: 20px; }

@media (max-width: 767px) {
  .cart-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    z-index: 999;
    padding: 16px 20px;
    border-top: 1px solid #e8e0d6;
  }
  .cart-items {
    padding-bottom: 160px;
  }
}


/* ── DESKTOP TYPOGRAPHY ENHANCEMENTS ── */
@media (min-width: 1024px) {

/* Hero title bigger */
.hero-title {
font-size: 64px;
}

/* Section titles bigger */
.sec-title {
font-size: 42px;
}

/* Section tag bigger */
.sec-tag {
font-size: 13px;
letter-spacing: 4px;
}

/* Hero description bigger */
.hero-desc {
font-size: 17px;
max-width: 600px;
}

/* Stats numbers bigger */
.stat-num {
font-size: 36px;
}

/* Stats label bigger */
.stat-label {
font-size: 12px;
}

/* Product name bigger */
.product-name {
font-size: 16px;
}

/* Product price bigger */
.price-now {
font-size: 18px;
}

/* Collection card name bigger */
.coll-name {
font-size: 22px;
}

/* Collection card sub bigger */
.coll-sub {
font-size: 14px;
}

/* Why us title bigger */
.why-title {
font-size: 16px;
}

/* Why us desc bigger */
.why-desc {
font-size: 13px;
}

/* Tag line bigger */
.tag-line {
font-size: 13px;
letter-spacing: 3px;
}

/* Body text bigger */
body {
font-size: 16px;
}

/* Hero content more padding on desktop */
.hero-content {
padding: 44px 60px 0;
max-width: 1200px;
margin: 0 auto;
}

/* Featured section more padding */
.featured-section {
padding: 60px 60px;
max-width: 1200px;
margin: 0 auto;
}

/* Collections section more padding */
.collections-section {
padding: 60px 60px;
max-width: 1200px;
margin: 0 auto;
}

/* Wholesale banner more padding */
.wholesale-banner {
padding: 60px 80px;
}

/* Why section more padding */
.why-section {
padding: 60px 60px;
max-width: 1200px;
margin: 0 auto;
}

/* About strip more padding */
.about-strip {
padding: 60px 80px;
}

/* About strip title bigger */
.about-strip .sec-title {
font-size: 36px;
}

/* Wholesale title bigger */
.wholesale-title {
font-size: 40px;
}

}
/* Bigger buttons on desktop */
  .btn-primary {
    padding: 18px 36px;
    font-size: 13px;
    letter-spacing: 3px;
  }

  .btn-secondary {
    padding: 17px 36px;
    font-size: 13px;
    letter-spacing: 3px;
  }

  /* ── FILTER BAR ── */
.filter-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 20px;
  border-top: 1px solid #e8d5b0;
  border-bottom: 1px solid #e8d5b0;
  margin-top: 16px;
  background: #fdf6ec;
  gap: 0;
}
.filter-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Jost', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #2c1a0e;
  padding: 10px;
  transition: color .2s;
}
.filter-btn:hover { color: #c8960c; }
.filter-divider {
  width: 1px;
  height: 24px;
  background: #e8d5b0;
}
.filter-panel {
  background: #fff;
  border: 1px solid #e8d5b0;
  border-top: none;
  padding: 20px;
  margin: 0 20px 10px;
}
.filter-panel-title {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  font-weight: 700;
  color: #2c1a0e;
  margin-bottom: 14px;
}
.filter-section-title {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #8a7560;
  font-weight: 600;
  margin-bottom: 10px;
}
.filter-options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.filter-option-btn {
  padding: 8px 14px;
  border: 1.5px solid #e0d8d0;
  background: #fff;
  font-family: 'Jost', sans-serif;
  font-size: 12px;
  color: #2c1a0e;
  cursor: pointer;
  transition: all .2s;
}
.filter-option-btn:hover,
.filter-option-btn.active {
  background: #2c1a0e;
  border-color: #2c1a0e;
  color: #f0d080;
}
.filter-clear-btn {
  margin-top: 16px;
  width: 100%;
  padding: 10px;
  background: none;
  border: 1.5px solid #e0d8d0;
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #8a7560;
  cursor: pointer;
  transition: all .2s;
}
.filter-clear-btn:hover {
  border-color: #2c1a0e;
  color: #2c1a0e;
}