/* ============================================================
   Rina se Hoekie — Public CSS (Professional Redesign v2)
   Full-viewport, minimal scroll, clean modern Afrikaans brand
   ============================================================ */

/* ── Variables ────────────────────────────────────────────── */
:root {
  --gold:        #c8972a;
  --gold-light:  #e8b84b;
  --gold-dark:   #a07820;
  --cream:       #fdf8f0;
  --cream-dark:  #f5ede0;
  --brown:       #3c2f22;
  --brown-mid:   #6b4f38;
  --text:        #2d2016;
  --text-muted:  #7a6a58;
  --white:       #ffffff;
  --border:      rgba(200,151,42,.16);
  --shadow-sm:   0 2px 8px rgba(60,47,34,.07);
  --shadow-md:   0 6px 24px rgba(60,47,34,.11);
  --shadow-lg:   0 16px 48px rgba(60,47,34,.15);
  --radius:      14px;
  --radius-lg:   20px;
  --radius-xl:   28px;
  --transition:  .2s cubic-bezier(.4,0,.2,1);
  --header-h:    70px;
  --sidebar-w:   270px;
  --font:        'Segoe UI', system-ui, -apple-system, sans-serif;
}

/* ── Reset ────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 15px; scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  background: var(--cream);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}
a { color: var(--gold-dark); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold); }
img { max-width: 100%; display: block; }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, select, textarea { font-family: inherit; }

/* ── Layout ───────────────────────────────────────────────── */
.container { max-width: 1300px; margin: 0 auto; padding: 0 28px; width: 100%; }
.main-wrap  { flex: 1; display: flex; flex-direction: column; padding-top: var(--header-h); }
main        { flex: 1; }

/* ── Typography ───────────────────────────────────────────── */
.h1 { font-size: clamp(2.2rem, 4vw, 3.6rem); font-weight: 900; line-height: 1.1; color: var(--brown); letter-spacing: -.025em; }
.h2 { font-size: clamp(1.5rem, 2.5vw, 2.1rem); font-weight: 800; color: var(--brown); letter-spacing: -.015em; }
.h3 { font-size: 1.1rem; font-weight: 700; color: var(--brown); }
.muted  { color: var(--text-muted); }
.small  { font-size: .8rem; }
.eyebrow {
  display: inline-block;
  font-size: .72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--gold);
  margin-bottom: 10px;
}

/* ── Fixed Header ─────────────────────────────────────────── */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--header-h);
  background: rgba(253,248,240,.95);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  z-index: 900;
  box-shadow: var(--shadow-sm);
}
.header-inner {
  display: flex; align-items: center;
  justify-content: space-between;
  height: 100%; gap: 20px;
}
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; flex-shrink: 0; }
.brand-logo {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-weight: 900; font-size: 1.1rem; color: #fff;
  box-shadow: 0 3px 10px rgba(200,151,42,.3);
  flex-shrink: 0;
}
.brand-name    { font-weight: 900; font-size: 1.05rem; color: var(--brown); line-height: 1.2; }
.brand-tagline { font-size: .68rem; color: var(--text-muted); font-weight: 600; }

.header-nav { display: flex; align-items: center; gap: 2px; flex: 1; justify-content: center; }
.header-nav .nav-link {
  padding: 8px 16px; border-radius: 9px;
  font-weight: 600; font-size: .88rem;
  color: var(--text-muted);
  transition: all var(--transition);
}
.header-nav .nav-link:hover,
.header-nav .nav-link.active { color: var(--gold-dark); background: rgba(200,151,42,.1); }

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

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 7px; padding: 10px 22px; border-radius: 10px;
  font-weight: 700; font-size: .88rem; cursor: pointer;
  transition: all var(--transition); border: none;
  text-decoration: none; white-space: nowrap; line-height: 1;
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
  color: #fff; box-shadow: 0 3px 12px rgba(200,151,42,.3);
}
.btn-gold:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(200,151,42,.4); color: #fff; }
.btn-outline { background: transparent; color: var(--gold-dark); border: 2px solid var(--gold); }
.btn-outline:hover { background: var(--gold); color: #fff; }
.btn-ghost { background: rgba(60,47,34,.06); color: var(--brown); }
.btn-ghost:hover { background: rgba(60,47,34,.12); }
.btn-danger { background: #dc2626; color: #fff; }
.btn-danger:hover { background: #b91c1c; color: #fff; }
.btn-sm  { padding: 7px 14px; font-size: .8rem; border-radius: 8px; }
.btn-lg  { padding: 14px 32px; font-size: 1rem; border-radius: 12px; }
.btn-full { width: 100%; }

/* ── Cards ────────────────────────────────────────────────── */
.card { background: var(--white); border-radius: var(--radius); border: 1px solid var(--border); overflow: hidden; }
.card-pad { padding: 24px; }
.card-glass { background: rgba(255,255,255,.72); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); }
.card-hover { transition: all var(--transition); }
.card-hover:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }

/* ── Grid ─────────────────────────────────────────────────── */
.grid   { display: grid; gap: 20px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-5 { grid-template-columns: repeat(5, 1fr); }

/* ── Hero — Full Viewport ─────────────────────────────────── */
.hero {
  min-height: calc(100vh - var(--header-h));
  display: flex; align-items: center;
  background: linear-gradient(150deg, var(--cream) 0%, var(--cream-dark) 60%, #ede0cc 100%);
  position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; top: -15%; right: -8%;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(200,151,42,.1) 0%, transparent 65%);
  pointer-events: none;
}
.hero::after {
  content: ''; position: absolute; bottom: -10%; left: -5%;
  width: 450px; height: 450px;
  background: radial-gradient(circle, rgba(200,151,42,.07) 0%, transparent 65%);
  pointer-events: none;
}
.hero-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center;
  padding: 64px 0; width: 100%; position: relative; z-index: 1;
}
.hero-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(200,151,42,.12); border: 1px solid rgba(200,151,42,.22);
  color: var(--gold-dark); font-size: .75rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: .1em;
  padding: 6px 14px; border-radius: 100px; margin-bottom: 22px;
}
.hero-title {
  font-size: clamp(2.4rem, 4.5vw, 4rem);
  font-weight: 900; color: var(--brown);
  line-height: 1.08; letter-spacing: -.03em; margin-bottom: 20px;
}
.hero-title em { font-style: normal; color: var(--gold); }
.hero-desc {
  font-size: 1.05rem; color: var(--text-muted);
  line-height: 1.75; margin-bottom: 34px; max-width: 460px;
}
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 44px; }
.hero-divider { border: none; border-top: 1px solid var(--border); margin-bottom: 28px; }
.hero-stats { display: flex; gap: 36px; }
.hero-stat-num { font-size: 1.7rem; font-weight: 900; color: var(--brown); line-height: 1; }
.hero-stat-lbl { font-size: .75rem; color: var(--text-muted); font-weight: 600; margin-top: 3px; }

.hero-visual {
  display: flex; align-items: center; justify-content: center; position: relative;
}
.hero-img-ring {
  width: 100%; max-width: 500px; aspect-ratio: 1;
  background: radial-gradient(circle, rgba(200,151,42,.13) 0%, rgba(200,151,42,.04) 60%, transparent 80%);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
}
.hero-img-ring img {
  width: 82%; height: 82%; object-fit: cover;
  border-radius: 38%; box-shadow: var(--shadow-lg);
}
.hero-float {
  position: absolute; background: var(--white);
  border: 1px solid var(--border); border-radius: var(--radius);
  padding: 10px 16px; box-shadow: var(--shadow-md);
  font-size: .8rem; font-weight: 700; color: var(--brown);
  white-space: nowrap; display: flex; align-items: center; gap: 8px;
}
.hero-float-1 { top: 8%; right: 0; }
.hero-float-2 { bottom: 12%; left: 0; }

/* ── Section ──────────────────────────────────────────────── */
.section    { padding: 72px 0; }
.section-sm { padding: 48px 0; }
.section-lg { padding: 96px 0; }
.section-alt { background: rgba(200,151,42,.04); }

.section-head {
  display: flex; align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 36px; gap: 16px; flex-wrap: wrap;
}

/* ── Feature Cards ────────────────────────────────────────── */
.feature-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 32px;
  transition: all var(--transition); position: relative; overflow: hidden;
}
.feature-card::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--gold-light), var(--gold-dark));
  transform: scaleX(0); transform-origin: left; transition: transform var(--transition);
}
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.feature-card:hover::after { transform: scaleX(1); }
.feature-icon {
  width: 54px; height: 54px;
  background: linear-gradient(135deg, rgba(200,151,42,.15), rgba(200,151,42,.04));
  border-radius: 14px; display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; margin-bottom: 20px;
}

/* ── Product Card ─────────────────────────────────────────── */
.product-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden;
  transition: all var(--transition); display: flex; flex-direction: column;
}
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.product-card-img {
  aspect-ratio: 1; overflow: hidden; background: var(--cream-dark); position: relative;
}
.product-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.product-card:hover .product-card-img img { transform: scale(1.06); }
.product-card-body { padding: 16px 16px 8px; flex: 1; }
.product-card-cat {
  font-size: .7rem; font-weight: 800; text-transform: uppercase;
  letter-spacing: .09em; color: var(--gold); margin-bottom: 6px;
}
.product-card-name {
  font-weight: 700; font-size: .95rem; color: var(--brown);
  line-height: 1.35; margin-bottom: 8px;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.product-card-price { font-size: 1.15rem; font-weight: 900; color: var(--gold-dark); }
.product-card-actions { padding: 12px 16px 16px; }

/* ── Cart badge ───────────────────────────────────────────── */
.cart-badge {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 20px; height: 20px; background: var(--gold);
  color: #fff; font-size: .68rem; font-weight: 800;
  border-radius: 100px; padding: 0 5px; line-height: 1;
}

/* ── Page header ──────────────────────────────────────────── */
.page-header {
  background: linear-gradient(135deg, var(--brown) 0%, var(--brown-mid) 100%);
  color: var(--white); padding: 52px 0; position: relative; overflow: hidden;
}
.page-header::before {
  content: ''; position: absolute; top: -50%; right: -10%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(200,151,42,.18) 0%, transparent 65%);
  pointer-events: none;
}
.page-header-inner { position: relative; z-index: 1; }
.page-header h1 { color: var(--white); margin-bottom: 8px; }
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: .82rem; opacity: .7; }
.breadcrumb a { color: rgba(255,255,255,.8); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb-sep { opacity: .5; }

/* ── Shop Layout ──────────────────────────────────────────── */
.shop-wrap { padding: 40px 0; }
.shop-layout { display: grid; grid-template-columns: 230px 1fr; gap: 32px; align-items: start; }
.shop-sidebar { position: sticky; top: calc(var(--header-h) + 20px); }
.shop-sidebar-box { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; }
.shop-sidebar-ttl {
  padding: 14px 20px; font-weight: 800; font-size: .78rem;
  text-transform: uppercase; letter-spacing: .1em; color: var(--text-muted);
  border-bottom: 1px solid var(--border); background: var(--cream);
}
.shop-cat-btn {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 20px; font-weight: 600; font-size: .9rem;
  color: var(--text-muted); border-bottom: 1px solid rgba(200,151,42,.07);
  transition: all var(--transition); cursor: pointer; width: 100%;
  background: none; text-align: left; border-left: 3px solid transparent;
}
.shop-cat-btn:hover, .shop-cat-btn.active {
  color: var(--gold-dark); background: rgba(200,151,42,.07);
  border-left-color: var(--gold);
}
.shop-cat-count {
  background: rgba(200,151,42,.12); color: var(--gold-dark);
  font-size: .7rem; font-weight: 800; padding: 2px 8px; border-radius: 100px;
}
.shop-toolbar {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 24px; gap: 12px; flex-wrap: wrap;
}
.shop-count { font-size: .88rem; color: var(--text-muted); font-weight: 600; }
.shop-search {
  display: flex; align-items: center;
  background: var(--white); border: 1px solid var(--border);
  border-radius: 10px; overflow: hidden; flex: 1; max-width: 300px;
}
.shop-search input {
  flex: 1; border: none; outline: none; padding: 9px 14px;
  font-size: .88rem; background: transparent; color: var(--text);
}
.shop-search-btn {
  padding: 9px 14px; color: var(--text-muted);
  background: var(--cream); border-left: 1px solid var(--border);
  transition: color var(--transition);
}
.shop-search-btn:hover { color: var(--gold-dark); }

/* ── Cart Layout ──────────────────────────────────────────── */
.cart-wrap { padding: 40px 0; }
.cart-layout { display: grid; grid-template-columns: 1fr 360px; gap: 32px; align-items: start; }
.cart-item {
  display: grid; grid-template-columns: 80px 1fr auto;
  gap: 16px; align-items: center; padding: 18px;
  border-bottom: 1px solid var(--border);
}
.cart-item:last-child { border-bottom: none; }
.cart-item-img { width: 80px; height: 80px; border-radius: 10px; overflow: hidden; background: var(--cream-dark); flex-shrink: 0; }
.cart-item-img img { width: 100%; height: 100%; object-fit: cover; }
.cart-item-name { font-weight: 700; color: var(--brown); margin-bottom: 4px; }
.cart-item-price { font-size: .88rem; color: var(--text-muted); }
.qty-control { display: flex; align-items: center; border: 1px solid var(--border); border-radius: 9px; overflow: hidden; }
.qty-btn { width: 34px; height: 34px; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; font-weight: 700; color: var(--text-muted); cursor: pointer; background: var(--cream); transition: all var(--transition); }
.qty-btn:hover { background: var(--gold); color: #fff; }
.qty-val { width: 40px; text-align: center; font-weight: 700; font-size: .9rem; border: none; border-left: 1px solid var(--border); border-right: 1px solid var(--border); padding: 0; height: 34px; line-height: 34px; background: var(--white); color: var(--text); outline: none; }

/* ── Order Summary ────────────────────────────────────────── */
.order-summary { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; position: sticky; top: calc(var(--header-h) + 20px); }
.order-summary-hdr { padding: 18px 22px; border-bottom: 1px solid var(--border); background: var(--cream); font-weight: 800; font-size: .92rem; color: var(--brown); }
.order-summary-body { padding: 20px 22px; }
.summary-row { display: flex; justify-content: space-between; align-items: center; padding: 9px 0; font-size: .9rem; border-bottom: 1px solid rgba(200,151,42,.07); }
.summary-row:last-child { border-bottom: none; }
.summary-row.total { font-weight: 900; font-size: 1.05rem; color: var(--brown); padding-top: 14px; }

/* ── Checkout Layout ──────────────────────────────────────── */
.checkout-wrap { padding: 40px 0; }
.checkout-layout { display: grid; grid-template-columns: 1fr 380px; gap: 32px; align-items: start; }
.form-section { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; margin-bottom: 20px; }
.form-section-hdr { padding: 16px 22px; border-bottom: 1px solid var(--border); background: var(--cream); font-weight: 800; font-size: .82rem; text-transform: uppercase; letter-spacing: .08em; color: var(--text-muted); }
.form-section-body { padding: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 16px; }
.form-group:last-child { margin-bottom: 0; }
.form-label { display: block; font-weight: 700; font-size: .8rem; color: var(--text-muted); margin-bottom: 6px; text-transform: uppercase; letter-spacing: .05em; }
.form-input, .form-select, .form-textarea {
  width: 100%; padding: 11px 14px; border: 1.5px solid var(--border);
  border-radius: 9px; font-size: .9rem; font-family: inherit;
  color: var(--text); background: var(--white); outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(200,151,42,.1); }
.form-textarea { resize: vertical; min-height: 90px; }

/* ── Product Detail ───────────────────────────────────────── */
.product-wrap { padding: 48px 0; }
.product-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.product-gallery { position: sticky; top: calc(var(--header-h) + 20px); }
.product-main-img { aspect-ratio: 1; border-radius: var(--radius-lg); overflow: hidden; background: var(--cream-dark); border: 1px solid var(--border); margin-bottom: 12px; }
.product-main-img img { width: 100%; height: 100%; object-fit: cover; }
.product-price { font-size: 2.2rem; font-weight: 900; color: var(--gold-dark); margin: 16px 0; }
.product-desc { color: var(--text-muted); line-height: 1.8; margin-bottom: 28px; }

/* ── Alerts ───────────────────────────────────────────────── */
.alert { padding: 12px 16px; border-radius: 10px; font-size: .88rem; font-weight: 600; margin-bottom: 16px; display: flex; align-items: flex-start; gap: 10px; }
.alert-success { background: #f0fdf4; border: 1px solid #86efac; color: #166534; }
.alert-error   { background: #fef2f2; border: 1px solid #fca5a5; color: #991b1b; }
.alert-info    { background: rgba(200,151,42,.08); border: 1px solid rgba(200,151,42,.22); color: var(--gold-dark); }
.alert-warn    { background: #fffbeb; border: 1px solid #fcd34d; color: #92400e; }

/* ── Badges ───────────────────────────────────────────────── */
.badge { display: inline-flex; align-items: center; padding: 3px 10px; border-radius: 100px; font-size: .7rem; font-weight: 800; text-transform: uppercase; letter-spacing: .05em; }
.badge-gold  { background: rgba(200,151,42,.14); color: var(--gold-dark); }
.badge-green { background: #dcfce7; color: #166534; }
.badge-red   { background: #fee2e2; color: #991b1b; }
.badge-blue  { background: #dbeafe; color: #1e40af; }
.badge-gray  { background: #f3f4f6; color: #6b7280; }

/* ── Footer ───────────────────────────────────────────────── */
.footer { background: var(--brown); color: rgba(253,248,240,.8); padding: 60px 0 0; margin-top: auto; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer-brand-name { font-size: 1.2rem; font-weight: 900; color: var(--white); margin-bottom: 10px; }
.footer-tagline { font-size: .85rem; opacity: .65; line-height: 1.6; margin-bottom: 20px; }
.footer-heading { font-size: .72rem; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; color: var(--gold-light); margin-bottom: 14px; }
.footer a { display: block; color: rgba(253,248,240,.6); font-size: .88rem; margin-bottom: 10px; transition: color var(--transition); }
.footer a:hover { color: var(--gold-light); }
.footer-bottom { padding: 20px 0; display: flex; align-items: center; justify-content: space-between; font-size: .78rem; opacity: .45; gap: 16px; flex-wrap: wrap; }

/* ── Mobile nav ───────────────────────────────────────────── */
.mobile-nav { display: none; position: fixed; bottom: 0; left: 0; right: 0; background: rgba(253,248,240,.97); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border-top: 1px solid var(--border); z-index: 900; padding: 6px 0 env(safe-area-inset-bottom, 6px); }
.mobile-nav-inner { display: grid; grid-template-columns: repeat(4, 1fr); }
.mobile-nav-item { display: flex; flex-direction: column; align-items: center; gap: 3px; padding: 8px 4px; font-size: .68rem; font-weight: 700; color: var(--text-muted); text-decoration: none; transition: color var(--transition); }
.mobile-nav-item .icon { font-size: 1.3rem; line-height: 1; }
.mobile-nav-item.active, .mobile-nav-item:hover { color: var(--gold-dark); }

/* ── Topbar (mobile) ──────────────────────────────────────── */
.topbar { display: none; position: fixed; top: 0; left: 0; right: 0; height: var(--header-h); background: rgba(253,248,240,.97); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border-bottom: 1px solid var(--border); z-index: 900; align-items: center; justify-content: space-between; padding: 0 16px; }
.topbar-brand { font-weight: 900; font-size: .95rem; color: var(--brown); }
.burger { font-size: 1.4rem; color: var(--brown); padding: 6px; }
.topbar-cart { color: var(--brown); font-size: 1.2rem; }

/* ── Sidebar (mobile) ─────────────────────────────────────── */
.sidebar { position: fixed; top: 0; left: -100%; width: var(--sidebar-w); height: 100vh; background: var(--white); z-index: 1000; transition: left .3s cubic-bezier(.4,0,.2,1); overflow-y: auto; box-shadow: var(--shadow-lg); display: flex; flex-direction: column; }
.sidebar.open { left: 0; }
.sidebar-brand { padding: 24px 20px; border-bottom: 1px solid var(--border); display: flex; align-items: center; gap: 12px; background: var(--cream); }
.sidebar-nav { padding: 12px 0; flex: 1; }
.sidebar-nav .nav-link { display: flex; align-items: center; gap: 12px; padding: 13px 20px; font-weight: 600; font-size: .92rem; color: var(--text-muted); transition: all var(--transition); border-left: 3px solid transparent; }
.sidebar-nav .nav-link:hover, .sidebar-nav .nav-link.active { color: var(--gold-dark); background: rgba(200,151,42,.07); border-left-color: var(--gold); }
.nav-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,.4); z-index: 999; backdrop-filter: blur(2px); }
.nav-overlay.show { display: block; }

/* ── Toast ────────────────────────────────────────────────── */
#toastContainer { position: fixed; bottom: 80px; right: 20px; z-index: 9999; display: flex; flex-direction: column; gap: 10px; pointer-events: none; }
.toast { background: var(--brown); color: var(--white); padding: 12px 20px; border-radius: 10px; font-size: .88rem; font-weight: 600; box-shadow: var(--shadow-lg); animation: toastIn .3s ease forwards; pointer-events: auto; display: flex; align-items: center; gap: 10px; max-width: 320px; }
.toast.success { background: #166534; }
.toast.error   { background: #991b1b; }
@keyframes toastIn { from { transform: translateX(100%); opacity: 0; } to { transform: translateX(0); opacity: 1; } }

/* ── Spinner ──────────────────────────────────────────────── */
.spinner { width: 24px; height: 24px; border: 3px solid rgba(200,151,42,.2); border-top-color: var(--gold); border-radius: 50%; animation: spin .7s linear infinite; display: inline-block; }
.spinner-lg { width: 48px; height: 48px; border-width: 4px; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ── Empty state ──────────────────────────────────────────── */
.empty-state { text-align: center; padding: 80px 24px; }
.empty-state-icon { font-size: 4rem; margin-bottom: 20px; opacity: .35; }
.empty-state h3 { color: var(--brown); margin-bottom: 10px; }
.empty-state p  { color: var(--text-muted); margin-bottom: 24px; }

/* ── Divider ──────────────────────────────────────────────── */
hr.divider { border: none; border-top: 1px solid var(--border); margin: 24px 0; }

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 1100px) {
  .grid-4 { grid-template-columns: repeat(3, 1fr); }
  .grid-5 { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 36px; text-align: center; }
  .hero-visual { display: none; }
  .hero-ctas { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero { min-height: auto; padding: 40px 0; }
  .shop-layout { grid-template-columns: 1fr; }
  .shop-sidebar { position: static; display: none; }
  .shop-sidebar.show { display: block; }
  .product-layout { grid-template-columns: 1fr; }
  .product-gallery { position: static; }
  .cart-layout { grid-template-columns: 1fr; }
  .checkout-layout { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  :root { --header-h: 60px; }
  .header { display: none; }
  .topbar { display: flex; }
  .mobile-nav { display: block; }
  .main-wrap { padding-bottom: 70px; }
  .grid-2, .grid-3, .grid-4, .grid-5 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .section { padding: 48px 0; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .grid-2, .grid-3, .grid-4, .grid-5 { grid-template-columns: 1fr; }
  .hero-stats { gap: 20px; }
}

/* ── Nav Dropdown ─────────────────────────────────────────── */
.nav-dropdown { position: relative; }
.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 220px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(42,31,22,.14);
  z-index: 500;
  padding: 6px;
  overflow: hidden;
}
.nav-dropdown:hover .nav-dropdown-menu { display: block; }
.nav-dropdown-item {
  display: flex;
  align-items: center;
  padding: 9px 14px;
  border-radius: 8px;
  font-size: .85rem;
  font-weight: 600;
  color: var(--brown);
  transition: background .15s;
  text-decoration: none;
}
.nav-dropdown-item:hover { background: var(--cream); color: var(--gold-dark); }
