/* KhushabDhodha — Main Website CSS */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,600;0,700;0,800;1,600&family=Plus+Jakarta+Sans:wght@400;500;600;700&display=swap');

:root {
  --bg: #FFFDF5;
  --bg2: #FFF8E7;
  --bg3: #FEF3D0;
  --gold: #B8860B;
  --gold2: #D4A017;
  --gold3: #E8B420;
  --gold-light: rgba(184,134,11,.1);
  --brown: #5C3D11;
  --dark: #1A0E06;
  --txt: #2C1A0A;
  --muted: #7A5C3A;
  --muted2: #A07848;
  --border: rgba(184,134,11,.18);
  --border2: rgba(184,134,11,.35);
  --red: #C0392B;
  --green: #1E8449;
  --r: 12px;
  --tr: .2s ease;
  --ff: 'Plus Jakarta Sans', sans-serif;
  --fd: 'Playfair Display', Georgia, serif;
  --shadow: 0 4px 24px rgba(92,61,17,.1);
  --shadow2: 0 12px 40px rgba(92,61,17,.18);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--ff); background: var(--bg); color: var(--txt); line-height: 1.65; font-size: 14.5px; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; }
button, input, select, textarea { font-family: var(--ff); }

/* ── HEADER ────────────────────────────────────────────────── */
.header {
  background: rgba(255,253,245,.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  position: sticky; top: 0; z-index: 300;
  box-shadow: 0 2px 16px rgba(92,61,17,.06);
}
.header-inner {
  max-width: 1200px; margin: 0 auto;
  padding: 0 24px; height: 68px;
  display: flex; align-items: center; gap: 20px;
}
.logo {
  font-family: var(--fd); font-size: 24px; font-weight: 800;
  color: var(--brown); white-space: nowrap; flex-shrink: 0;
}
.logo span { color: var(--gold); }
.logo-sub { font-size: 10px; color: var(--muted2); letter-spacing: .8px; display: block; margin-top: -4px; text-transform: uppercase; }
.h-search-wrap { flex: 1; max-width: 460px; margin: 0 auto; }
.h-search {
  display: flex; align-items: center; gap: 0;
  background: var(--bg2); border: 1.5px solid var(--border);
  border-radius: 30px; overflow: hidden; transition: border-color var(--tr);
}
.h-search:focus-within { border-color: var(--gold2); }
.h-search input {
  flex: 1; border: none; background: none; padding: 10px 16px;
  font-size: 13.5px; color: var(--txt); outline: none;
}
.h-search input::placeholder { color: var(--muted2); }
.h-search-btn {
  padding: 10px 18px; background: var(--gold); border: none;
  color: #fff; cursor: pointer; font-size: 15px;
  transition: background var(--tr);
}
.h-search-btn:hover { background: var(--gold2); }
.h-actions { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.h-btn {
  display: flex; align-items: center; gap: 6px;
  padding: 8px 14px; border-radius: 24px;
  font-size: 13px; font-weight: 600; cursor: pointer;
  border: 1.5px solid var(--border2); background: transparent;
  color: var(--brown); transition: all var(--tr);
  white-space: nowrap;
}
.h-btn:hover { background: var(--gold-light); border-color: var(--gold2); }
.cart-btn { background: var(--gold); border-color: var(--gold); color: #fff; position: relative; }
.cart-btn:hover { background: var(--gold2); border-color: var(--gold2); }
.cart-count {
  position: absolute; top: -6px; right: -6px;
  background: var(--red); color: #fff;
  font-size: 10px; font-weight: 700; width: 18px; height: 18px;
  border-radius: 50%; display: none; align-items: center; justify-content: center;
  border: 2px solid var(--bg);
}
.mob-menu-btn { display: none; background: none; border: none; font-size: 22px; cursor: pointer; color: var(--brown); padding: 6px; }

/* NAV */
.nav-bar {
  background: var(--brown);
  border-bottom: 2px solid var(--gold);
}
.nav-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; gap: 4px;
  overflow-x: auto; scrollbar-width: none;
}
.nav-inner::-webkit-scrollbar { display: none; }
.nav-link {
  padding: 11px 16px; color: rgba(255,255,255,.75);
  font-size: 13px; font-weight: 600; white-space: nowrap;
  transition: all var(--tr); border-bottom: 2px solid transparent;
  margin-bottom: -2px;
}
.nav-link:hover, .nav-link.active {
  color: var(--gold3); border-bottom-color: var(--gold3);
}
.nav-link.cat-all { color: #fff; }

/* MOBILE NAV */
.mob-nav {
  display: none; position: fixed; inset: 0; background: rgba(26,14,6,.9);
  z-index: 400; flex-direction: column;
}
.mob-nav.open { display: flex; }
.mob-nav-inner {
  background: var(--bg); width: 280px; height: 100%; overflow-y: auto;
  padding: 20px; display: flex; flex-direction: column; gap: 4px;
}
.mob-nav-close { margin-bottom: 16px; font-size: 22px; cursor: pointer; color: var(--muted); align-self: flex-end; background: none; border: none; }
.mob-nav-link {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 14px; border-radius: 8px;
  font-size: 14px; font-weight: 600; color: var(--txt);
  transition: background var(--tr);
}
.mob-nav-link:hover { background: var(--gold-light); }

/* ── HERO ──────────────────────────────────────────────────── */
.hero {
  background: linear-gradient(135deg, var(--brown) 0%, #3D2008 50%, #1A0E06 100%);
  padding: 80px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23D4A017' fill-opacity='0.05'%3E%3Cpath d='M20 0L40 20L20 40L0 20z'/%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.hero-badge {
  display: inline-block; background: rgba(232,180,32,.15);
  border: 1px solid rgba(232,180,32,.3); color: var(--gold3);
  font-size: 12px; font-weight: 700; padding: 5px 16px; border-radius: 20px;
  letter-spacing: .5px; margin-bottom: 20px; text-transform: uppercase;
}
.hero h1 {
  font-family: var(--fd); font-size: clamp(36px,6vw,64px);
  color: #fff; font-weight: 800; line-height: 1.15;
  margin-bottom: 16px;
}
.hero h1 span { color: var(--gold3); font-style: italic; }
.hero p {
  font-size: 16px; color: rgba(255,255,255,.7);
  max-width: 520px; margin: 0 auto 32px;
}
.hero-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.hero-emoji { font-size: 50px; margin-bottom: 16px; display: block; }

/* ── PRODUCT CARDS ─────────────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 56px 0; }
.section-hdr { margin-bottom: 32px; }
.section-title { font-family: var(--fd); font-size: clamp(28px,4vw,40px); color: var(--brown); font-weight: 700; line-height: 1.2; }
.section-sub { color: var(--muted); font-size: 15px; margin-top: 6px; }
.section-hdr-row { display: flex; align-items: flex-end; justify-content: space-between; flex-wrap: wrap; gap: 12px; }

/* Layout 1: Standard Grid (default) */
.products-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 22px; }
/* Layout 2: Large Card */
.products-grid-lg { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
/* Layout 3: List View */
.products-list { display: flex; flex-direction: column; gap: 16px; }
/* Layout 4: Feature Grid */
.products-feature { display: grid; grid-template-columns: 1fr 1fr 1fr 1fr; grid-template-rows: auto auto; gap: 20px; }
.products-feature .pcard:first-child { grid-column: 1/3; grid-row: 1/3; }

.pcard {
  background: #fff; border: 1.5px solid var(--border);
  border-radius: var(--r); overflow: hidden;
  transition: all var(--tr); cursor: pointer;
  box-shadow: var(--shadow);
}
.pcard:hover { transform: translateY(-4px); box-shadow: var(--shadow2); border-color: var(--border2); }
.pcard-img {
  aspect-ratio: 1; display: flex; align-items: center; justify-content: center;
  font-size: 60px; position: relative; overflow: hidden;
}
.pcard-img-lg { aspect-ratio: 4/3; font-size: 80px; }
.pbadge {
  position: absolute; top: 10px; left: 10px;
  padding: 3px 10px; border-radius: 20px;
  font-size: 10.5px; font-weight: 700; letter-spacing: .3px;
}
.pbadge.hot { background: var(--red); color: #fff; }
.pbadge.new { background: var(--green); color: #fff; }
.pbadge.sale { background: var(--gold); color: #fff; }
.pcard-body { padding: 14px; }
.pcard-name { font-weight: 700; font-size: 14px; color: var(--txt); margin-bottom: 3px; }
.pcard-wt { font-size: 12px; color: var(--muted2); margin-bottom: 10px; }
.pcard-rating { display: flex; align-items: center; gap: 4px; margin-bottom: 10px; }
.stars { color: var(--gold); font-size: 12px; letter-spacing: 1px; }
.rating-count { font-size: 11px; color: var(--muted2); }
.pcard-bot { display: flex; align-items: center; justify-content: space-between; }
.pcard-price { font-family: var(--fd); font-size: 18px; font-weight: 700; color: var(--brown); }
.pcard-old { font-size: 12px; color: var(--muted2); text-decoration: line-through; margin-left: 4px; }
.atc {
  padding: 8px 14px; background: var(--gold); color: #fff;
  border: none; border-radius: 8px; font-size: 12.5px; font-weight: 700;
  cursor: pointer; transition: all var(--tr); white-space: nowrap;
}
.atc:hover { background: var(--brown); transform: scale(1.04); }
/* List view card */
.pcard-list { display: flex; align-items: center; gap: 16px; padding: 14px; }
.pcard-list .pcard-img { width: 80px; height: 80px; font-size: 36px; border-radius: 8px; flex-shrink: 0; aspect-ratio: unset; }
.pcard-list .pcard-body { padding: 0; flex: 1; }

/* ── BUTTONS ───────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 24px; border-radius: 30px;
  font-size: 14px; font-weight: 700; cursor: pointer; border: none;
  transition: all var(--tr); white-space: nowrap;
}
.btn-primary { background: var(--gold); color: #fff; box-shadow: 0 4px 14px rgba(184,134,11,.3); }
.btn-primary:hover { background: var(--brown); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(92,61,17,.3); }
.btn-outline { background: transparent; border: 2px solid var(--gold); color: var(--gold); }
.btn-outline:hover { background: var(--gold-light); }
.btn-white { background: #fff; color: var(--brown); }
.btn-white:hover { background: var(--bg2); }
.btn-sm { padding: 8px 18px; font-size: 13px; }
.btn-full { width: 100%; justify-content: center; }

/* ── CART DRAWER ───────────────────────────────────────────── */
.cart-overlay {
  position: fixed; inset: 0; background: rgba(26,14,6,.6);
  z-index: 400; display: none;
}
.cart-overlay.open { display: block; }
.cart-drawer {
  position: fixed; top: 0; right: -100%; height: 100%; width: 420px; max-width: 100%;
  background: var(--bg); z-index: 401;
  transition: right var(--tr);
  display: flex; flex-direction: column;
  box-shadow: -8px 0 40px rgba(26,14,6,.2);
}
.cart-drawer.open { right: 0; }
.cart-head {
  padding: 18px 20px; border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
  background: var(--bg2);
}
.cart-title { font-family: var(--fd); font-size: 20px; font-weight: 700; color: var(--brown); }
.cart-close { background: none; border: none; font-size: 22px; cursor: pointer; color: var(--muted); transition: color var(--tr); }
.cart-close:hover { color: var(--txt); }
.cart-items { flex: 1; overflow-y: auto; padding: 16px; }
.cart-item { display: flex; align-items: center; gap: 12px; padding: 12px; border-radius: var(--r); background: #fff; border: 1px solid var(--border); margin-bottom: 10px; }
.cart-item-em { font-size: 32px; width: 48px; height: 48px; border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.cart-item-info { flex: 1; }
.cart-item-name { font-weight: 700; font-size: 13.5px; color: var(--txt); }
.cart-item-var { font-size: 12px; color: var(--muted2); }
.cart-item-price { font-weight: 700; color: var(--gold); font-size: 14px; }
.qty-ctrl { display: flex; align-items: center; gap: 4px; margin-top: 6px; }
.qty-btn { width: 26px; height: 26px; border-radius: 50%; border: 1.5px solid var(--border2); background: none; cursor: pointer; font-size: 14px; font-weight: 700; color: var(--gold); display: flex; align-items: center; justify-content: center; transition: all var(--tr); }
.qty-btn:hover { background: var(--gold); color: #fff; border-color: var(--gold); }
.qty-num { font-size: 14px; font-weight: 700; min-width: 22px; text-align: center; color: var(--txt); }
.cart-rm { background: none; border: none; cursor: pointer; color: var(--muted2); font-size: 16px; transition: color var(--tr); padding: 4px; }
.cart-rm:hover { color: var(--red); }
.cart-footer {
  padding: 16px 20px; border-top: 1px solid var(--border);
  background: var(--bg2);
}
.cart-row { display: flex; justify-content: space-between; font-size: 13.5px; color: var(--muted); margin-bottom: 6px; }
.cart-total { display: flex; justify-content: space-between; font-size: 17px; font-weight: 800; color: var(--brown); margin: 10px 0 16px; padding-top: 10px; border-top: 1.5px solid var(--border2); }
.cart-empty { text-align: center; padding: 60px 20px; }
.cart-empty-icon { font-size: 56px; margin-bottom: 12px; }
.cart-empty p { color: var(--muted); font-size: 14px; }

/* ── TOAST ─────────────────────────────────────────────────── */
.toast {
  position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%) translateY(80px);
  background: var(--brown); color: #fff;
  padding: 12px 22px; border-radius: 30px;
  font-size: 14px; font-weight: 600; z-index: 9999;
  opacity: 0; transition: all .3s cubic-bezier(.4,0,.2,1);
  pointer-events: none; white-space: nowrap;
  box-shadow: 0 8px 32px rgba(92,61,17,.3);
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ── PRODUCT PAGE ──────────────────────────────────────────── */
.prod-hero { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.prod-img-box {
  aspect-ratio: 1; border-radius: 16px; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  font-size: 120px; background: var(--bg2);
  border: 2px solid var(--border);
}
.prod-title { font-family: var(--fd); font-size: 36px; color: var(--brown); font-weight: 700; }
.prod-wt { color: var(--muted2); font-size: 15px; margin: 4px 0 12px; }
.prod-price-row { display: flex; align-items: baseline; gap: 10px; margin-bottom: 20px; }
.prod-price { font-family: var(--fd); font-size: 32px; font-weight: 800; color: var(--gold); }
.prod-old { font-size: 18px; color: var(--muted2); text-decoration: line-through; }
.prod-save { background: var(--red); color: #fff; font-size: 12px; font-weight: 700; padding: 3px 10px; border-radius: 12px; }
.prod-desc { color: var(--muted); font-size: 15px; line-height: 1.8; margin-bottom: 24px; }
.variation-group { margin-bottom: 20px; }
.variation-label { font-size: 13px; font-weight: 700; color: var(--txt); margin-bottom: 10px; text-transform: uppercase; letter-spacing: .4px; }
.variation-opts { display: flex; gap: 8px; flex-wrap: wrap; }
.var-opt {
  padding: 8px 18px; border: 2px solid var(--border2);
  border-radius: 8px; font-size: 13px; font-weight: 600;
  cursor: pointer; transition: all var(--tr); color: var(--txt);
  background: #fff;
}
.var-opt:hover, .var-opt.active { border-color: var(--gold); background: var(--gold-light); color: var(--brown); }
.qty-row { display: flex; align-items: center; gap: 16px; margin-bottom: 20px; }
.qty-big { display: flex; align-items: center; gap: 0; border: 2px solid var(--border2); border-radius: 10px; overflow: hidden; }
.qty-big button { padding: 10px 16px; border: none; background: var(--bg2); cursor: pointer; font-size: 18px; font-weight: 700; color: var(--gold); transition: background var(--tr); }
.qty-big button:hover { background: var(--gold-light); }
.qty-big span { padding: 10px 18px; font-size: 16px; font-weight: 700; color: var(--txt); min-width: 50px; text-align: center; }

/* ── REVIEWS ──────────────────────────────────────────────── */
.review-avg { display: flex; align-items: center; gap: 20px; padding: 24px; background: var(--bg2); border-radius: 12px; border: 1px solid var(--border); margin-bottom: 24px; }
.review-big-num { font-family: var(--fd); font-size: 56px; font-weight: 700; color: var(--gold); line-height: 1; }
.review-stars { font-size: 22px; color: var(--gold); letter-spacing: 2px; margin-bottom: 4px; }
.review-count { font-size: 13px; color: var(--muted2); }
.review-bars { flex: 1; }
.review-bar-row { display: flex; align-items: center; gap: 8px; margin-bottom: 5px; }
.review-bar-lbl { font-size: 12px; color: var(--muted2); width: 40px; text-align: right; }
.review-bar-bg { flex: 1; height: 6px; background: var(--border); border-radius: 3px; overflow: hidden; }
.review-bar-fill { height: 100%; background: var(--gold); border-radius: 3px; }
.review-card { background: #fff; border: 1px solid var(--border); border-radius: 12px; padding: 18px; margin-bottom: 14px; }
.review-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 10px; }
.reviewer-name { font-weight: 700; color: var(--txt); }
.review-date { font-size: 12px; color: var(--muted2); }
.review-text { font-size: 14px; color: var(--muted); line-height: 1.7; }
.review-imgs { display: flex; gap: 8px; margin-top: 10px; flex-wrap: wrap; }
.review-img { width: 72px; height: 72px; object-fit: cover; border-radius: 6px; border: 1px solid var(--border); cursor: pointer; }
.review-form { background: var(--bg2); border: 1px solid var(--border); border-radius: 12px; padding: 24px; margin-top: 24px; }
.star-rating { display: flex; gap: 4px; margin: 10px 0 18px; }
.star-btn { font-size: 28px; cursor: pointer; color: var(--border2); transition: all .15s; background: none; border: none; }
.star-btn:hover, .star-btn.active { color: var(--gold); transform: scale(1.1); }

/* ── CHECKOUT ──────────────────────────────────────────────── */
.checkout-grid { display: grid; grid-template-columns: 1fr 400px; gap: 32px; align-items: start; }
.form-card { background: #fff; border: 1.5px solid var(--border); border-radius: var(--r); padding: 24px; margin-bottom: 20px; }
.form-card-title { font-family: var(--fd); font-size: 20px; color: var(--brown); margin-bottom: 20px; font-weight: 700; }
.field { margin-bottom: 16px; }
.field label { display: block; font-size: 12px; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: .4px; margin-bottom: 5px; }
.field input, .field select, .field textarea {
  width: 100%; padding: 11px 14px; border: 1.5px solid var(--border);
  border-radius: var(--r); font-size: 14px; color: var(--txt); outline: none;
  background: var(--bg2); transition: border-color var(--tr);
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--gold2); background: #fff; }
.field input::placeholder, .field textarea::placeholder { color: var(--muted2); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.payment-opts { display: flex; flex-direction: column; gap: 10px; }
.pay-opt {
  display: flex; align-items: center; gap: 14px; padding: 14px 16px;
  border: 2px solid var(--border); border-radius: var(--r); cursor: pointer;
  transition: all var(--tr); background: var(--bg2);
}
.pay-opt:hover, .pay-opt.active { border-color: var(--gold2); background: var(--gold-light); }
.pay-opt input[type=radio] { accent-color: var(--gold); width: 18px; height: 18px; }
.pay-opt-ic { font-size: 22px; }
.pay-opt-info { flex: 1; }
.pay-opt-name { font-weight: 700; font-size: 14px; color: var(--txt); }
.pay-opt-sub { font-size: 12px; color: var(--muted2); }
.order-summary { background: #fff; border: 1.5px solid var(--border); border-radius: var(--r); padding: 20px; position: sticky; top: 80px; }
.sum-title { font-family: var(--fd); font-size: 20px; color: var(--brown); margin-bottom: 16px; font-weight: 700; }
.sum-item { display: flex; align-items: center; gap: 10px; padding: 8px 0; border-bottom: 1px solid var(--border); }
.sum-item-em { font-size: 20px; width: 32px; text-align: center; }
.sum-item-name { flex: 1; font-size: 13.5px; font-weight: 600; }
.sum-item-sub { font-size: 12px; color: var(--muted2); }
.sum-item-price { font-weight: 700; color: var(--gold); }
.sum-rows { padding-top: 12px; }
.sum-row { display: flex; justify-content: space-between; font-size: 13.5px; color: var(--muted); margin-bottom: 7px; }
.sum-total { display: flex; justify-content: space-between; font-size: 18px; font-weight: 800; color: var(--brown); padding-top: 10px; margin-top: 6px; border-top: 2px solid var(--border2); }
.coupon-row { display: flex; gap: 8px; margin-bottom: 14px; }
.coupon-row input { flex: 1; }
.coupon-msg { font-size: 12.5px; padding: 6px 0; }
.coupon-msg.ok { color: var(--green); }
.coupon-msg.err { color: var(--red); }

/* ── ACCOUNT PAGE ──────────────────────────────────────────── */
.acc-grid { display: grid; grid-template-columns: 280px 1fr; gap: 28px; align-items: start; }
.acc-sidebar { background: #fff; border: 1.5px solid var(--border); border-radius: var(--r); padding: 24px; position: sticky; top: 80px; }
.acc-avatar { width: 72px; height: 72px; border-radius: 50%; background: var(--gold-light); border: 2px solid var(--border2); display: flex; align-items: center; justify-content: center; font-size: 32px; margin-bottom: 14px; }
.acc-name { font-family: var(--fd); font-size: 20px; color: var(--brown); font-weight: 700; }
.acc-phone { font-size: 13px; color: var(--muted2); margin-bottom: 20px; }
.acc-nav { display: flex; flex-direction: column; gap: 4px; }
.acc-nav-link { display: flex; align-items: center; gap: 10px; padding: 10px 12px; border-radius: 8px; font-size: 13.5px; font-weight: 600; color: var(--muted); cursor: pointer; transition: all var(--tr); }
.acc-nav-link:hover, .acc-nav-link.active { background: var(--gold-light); color: var(--brown); }
.order-card { background: #fff; border: 1.5px solid var(--border); border-radius: var(--r); margin-bottom: 14px; overflow: hidden; }
.order-card-head { padding: 14px 18px; background: var(--bg2); display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid var(--border); }
.order-card-body { padding: 14px 18px; }

/* ── FOOTER ────────────────────────────────────────────────── */
.footer { background: var(--brown); color: rgba(255,255,255,.8); padding: 56px 24px 28px; }
.footer-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-brand .logo { color: #fff; }
.footer-brand .logo span { color: var(--gold3); }
.footer-desc { color: rgba(255,255,255,.6); font-size: 13.5px; line-height: 1.8; margin-top: 12px; }
.footer-col-title { font-weight: 700; font-size: 13px; text-transform: uppercase; letter-spacing: .6px; color: var(--gold3); margin-bottom: 14px; }
.footer-link { display: block; color: rgba(255,255,255,.65); font-size: 13.5px; padding: 3px 0; transition: color var(--tr); }
.footer-link:hover { color: var(--gold3); }
.footer-bottom { max-width: 1200px; margin: 0 auto; border-top: 1px solid rgba(255,255,255,.1); padding-top: 20px; display: flex; justify-content: space-between; align-items: center; font-size: 12.5px; color: rgba(255,255,255,.45); flex-wrap: wrap; gap: 8px; }

/* ── MISC ──────────────────────────────────────────────────── */
.breadcrumb { display: flex; align-items: center; gap: 6px; font-size: 13px; color: var(--muted2); padding: 14px 0; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { color: var(--border2); }
.chip { display: inline-block; padding: 4px 12px; border-radius: 20px; font-size: 12px; font-weight: 600; background: var(--gold-light); color: var(--gold); border: 1px solid var(--border2); }
.empty-state { text-align: center; padding: 80px 20px; }
.empty-icon { font-size: 64px; margin-bottom: 16px; display: block; }
.empty-title { font-family: var(--fd); font-size: 24px; color: var(--brown); margin-bottom: 8px; }
.empty-sub { color: var(--muted2); font-size: 15px; }

/* ── RESPONSIVE ────────────────────────────────────────────── */
@media (max-width: 1100px) { .products-grid { grid-template-columns: repeat(3,1fr); } }
@media (max-width: 900px) {
  .products-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .checkout-grid { grid-template-columns: 1fr; }
  .prod-hero { grid-template-columns: 1fr; }
  .acc-grid { grid-template-columns: 1fr; }
  .products-feature { grid-template-columns: 1fr 1fr; }
  .products-feature .pcard:first-child { grid-column: 1/-1; grid-row: auto; }
}
@media (max-width: 640px) {
  .header-inner { height: 58px; }
  .h-search-wrap { display: none; }
  .mob-menu-btn { display: block; }
  .products-grid { grid-template-columns: repeat(2,1fr); gap: 12px; }
  .products-grid-lg { grid-template-columns: 1fr 1fr; }
  .hero { padding: 52px 20px; }
  .section { padding: 36px 0; }
  .footer-grid { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .cart-drawer { width: 100%; }
  .products-feature { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 380px) {
  .products-grid { grid-template-columns: 1fr; }
}
