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

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:         #f5f1eb;
  --surface:    #fdfcfa;
  --surface2:   #ede9e1;
  --border:     #ddd7cd;
  --dark:       #1a1410;
  --mid:        #6b5f52;
  --muted:      #a89a8c;
  --gold:       #8B4513;
  --gold-light: #A0522D;
  --gold-pale:  #f5ebe0;
  --accent:     #4a3728;
  --danger:     #a83838;
  --success:    #2d7a4f;
  --text:       #241e17;
  --text-light: #8a7e72;
  --shadow:     0 2px 24px rgba(26,20,16,0.09);
  --shadow-lg:  0 12px 56px rgba(26,20,16,0.15);
  --radius:     12px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  font-weight: 400;
  line-height: 1.6;
  font-size: 15px;
}

/* ── GDPR ── */
#gdpr-overlay {
  position: fixed; inset: 0;
  background: rgba(28,23,16,0.65);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 9999;
  display: flex; align-items: flex-end; justify-content: center;
  padding: 2rem 1.5rem;
}
#gdpr-overlay.hidden { display: none; }

.gdpr-box {
  background: var(--surface);
  border-radius: 20px;
  padding: 2.25rem 2.5rem;
  max-width: 660px; width: 100%;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}

.gdpr-box h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem; font-weight: 600;
  color: var(--dark); margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}

.gdpr-box p {
  font-size: 0.87rem; color: var(--mid);
  line-height: 1.7; margin-bottom: 1.25rem;
}

.gdpr-box p a { color: var(--gold); text-decoration: underline; text-decoration-color: transparent; transition: text-decoration-color 0.2s; }
.gdpr-box p a:hover { text-decoration-color: var(--gold); }

.gdpr-actions { display: flex; gap: 0.75rem; flex-wrap: wrap; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 0.7rem 1.6rem;
  border-radius: 50px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.875rem; font-weight: 500;
  cursor: pointer; border: 1.5px solid transparent;
  transition: all 0.2s ease;
  text-decoration: none; white-space: nowrap;
  letter-spacing: 0.01em;
}

.btn-primary {
  background: var(--dark); color: #fff; border-color: var(--dark);
}
.btn-primary:hover { background: #2e2618; border-color: #2e2618; transform: translateY(-1px); box-shadow: 0 4px 16px rgba(28,23,16,0.2); }

.btn-outline {
  background: transparent; color: var(--mid); border-color: var(--border);
}
.btn-outline:hover { border-color: var(--mid); color: var(--dark); }

.btn-gold {
  background: var(--gold); color: #fff; border-color: var(--gold);
  font-weight: 600;
}
.btn-gold:hover { background: #8f6228; border-color: #8f6228; transform: translateY(-1px); box-shadow: 0 4px 16px rgba(176,122,56,0.35); }

.btn-accent {
  background: var(--accent); color: #fff; border-color: var(--accent);
  font-weight: 600;
}
.btn-accent:hover { background: #341f14; transform: translateY(-1px); box-shadow: 0 4px 16px rgba(74,55,40,0.3); }

.btn-ghost {
  background: transparent; color: var(--mid); border-color: var(--border);
}
.btn-ghost:hover { background: var(--surface2); color: var(--dark); }

.btn-danger {
  background: var(--danger); color: #fff; border-color: var(--danger);
}

/* ── NAV ── */
nav {
  background: rgba(247,244,239,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  position: sticky; top: 0; z-index: 100;
  padding: 0 2.5rem;
  height: 64px;
  display: flex; align-items: center; justify-content: space-between;
}

.nav-logo-btn {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem; font-weight: 600;
  color: var(--dark); background: none; border: none;
  letter-spacing: 0.12em; cursor: pointer;
  padding: 0; line-height: 1.2;
  text-transform: uppercase;
}
.nav-logo-btn:hover { color: var(--gold); }

.nav-right { display: flex; align-items: center; gap: 1rem; }

.basket-btn {
  position: relative;
  background: var(--surface); border: 1.5px solid var(--border);
  cursor: pointer; padding: 0.55rem 1.1rem 0.55rem 0.85rem;
  color: var(--dark); border-radius: 50px;
  transition: all 0.18s;
  display: flex; align-items: center; gap: 0.5rem;
  font-family: 'DM Sans', sans-serif; font-size: 0.875rem; font-weight: 500;
}
.basket-btn:hover { border-color: var(--gold); color: var(--gold); box-shadow: 0 2px 12px rgba(184,146,74,0.15); }
.basket-btn svg { width: 20px; height: 20px; }

.basket-count {
  background: var(--gold); color: #fff;
  min-width: 20px; height: 20px; padding: 0 4px;
  border-radius: 10px;
  font-size: 0.7rem; font-weight: 700;
  display: none; align-items: center; justify-content: center;
}
.basket-count.visible { display: flex; }

/* ── SIDE PANEL ── */
#side-panel {
  position: fixed; right: 0; top: 0; bottom: 0;
  width: 380px;
  background: var(--surface);
  box-shadow: -4px 0 40px rgba(28,23,16,0.12);
  z-index: 500;
  display: flex; flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.32s cubic-bezier(0.4,0,0.2,1);
}
#side-panel.open { transform: translateX(0); }

#panel-overlay {
  display: none; position: fixed; inset: 0;
  background: rgba(28,23,16,0.35); z-index: 499;
  backdrop-filter: blur(3px); -webkit-backdrop-filter: blur(3px);
}
#panel-overlay.open { display: block; }

.panel-header {
  padding: 1.4rem 1.75rem;
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
}

.panel-header h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem; font-weight: 600; letter-spacing: 0.02em;
}

.panel-close {
  background: none; border: none; cursor: pointer;
  padding: 0.35rem; color: var(--muted); border-radius: 8px;
  transition: all 0.15s;
}
.panel-close:hover { background: var(--surface2); color: var(--dark); }

.panel-body {
  padding: 1.75rem;
  flex: 1; overflow-y: auto;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 0.75rem; text-align: center;
}

/* ── HERO ── */
.store-hero {
  background: var(--dark);
  color: #fff;
  padding: 5rem 2.5rem 4.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.store-hero::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(176,122,56,0.5), transparent);
}

.hero-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.75rem; font-weight: 400;
  letter-spacing: 0.35em; text-transform: uppercase;
  color: var(--gold-light); margin-bottom: 2rem;
  opacity: 0.8;
}

.store-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3.2rem, 7vw, 5.5rem);
  font-weight: 300; letter-spacing: -0.03em;
  line-height: 1; margin-bottom: 1.5rem;
}

.store-hero h1 em { font-style: italic; color: var(--gold-light); font-weight: 300; }

.store-hero p {
  font-size: 0.93rem; color: rgba(255,255,255,0.45);
  max-width: 380px; margin: 0 auto;
  font-weight: 300; letter-spacing: 0.03em; line-height: 1.7;
}

/* ── MAIN CONTENT ── */
main { max-width: 1360px; margin: 0 auto; padding: 3rem 2.5rem; }

/* ── FILTER BAR ── */
.filter-bar {
  display: flex; align-items: center; gap: 1rem;
  margin-bottom: 2.5rem; flex-wrap: wrap;
}

.filter-bar-left {
  display: flex; align-items: center; gap: 0.5rem; flex: 1;
}

.search-wrap {
  position: relative; flex: 1; max-width: 360px;
}

.search-wrap svg {
  position: absolute; left: 1rem; top: 50%; transform: translateY(-50%);
  width: 16px; height: 16px; color: var(--muted); pointer-events: none;
}

.search-wrap input {
  width: 100%;
  background: var(--surface); border: 1.5px solid var(--border);
  color: var(--text); padding: 0.65rem 1rem 0.65rem 2.75rem;
  border-radius: 50px;
  font-family: 'DM Sans', sans-serif; font-size: 0.875rem;
  outline: none; transition: border-color 0.18s, box-shadow 0.18s;
}
.search-wrap input:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(184,146,74,0.12); }
.search-wrap input::placeholder { color: var(--muted); }

.filter-count {
  font-size: 0.8rem; color: var(--text-light);
  white-space: nowrap;
}

/* ── PRODUCT GRID ── */
.products-header { margin-bottom: 2rem; }

.products-header h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem; font-weight: 600; color: var(--dark);
  letter-spacing: -0.01em;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.product-card {
  background: var(--surface);
  border-radius: 4px; overflow: hidden;
  border: 1px solid var(--border);
  transition: transform 0.28s cubic-bezier(0.2,0,0,1), box-shadow 0.28s, border-color 0.28s;
  cursor: pointer;
  display: flex; flex-direction: column;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(26,20,16,0.12);
  border-color: var(--gold);
}

.product-img-wrap {
  aspect-ratio: 4/3; background: var(--surface2); overflow: hidden;
  position: relative;
}
.product-img-wrap img {
  width: 100%; height: 100%; object-fit: contain;
  background: var(--surface2);
  transition: transform 0.5s cubic-bezier(0.2,0,0,1);
  padding: 0.5rem;
}
.product-card:hover .product-img-wrap img { transform: scale(1.05); }

.no-img-ph {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  color: var(--muted); font-size: 3.5rem;
  background: linear-gradient(135deg, var(--surface2) 0%, var(--gold-pale) 100%);
}

.product-info { padding: 1.25rem 1.4rem 1.4rem; display: flex; flex-direction: column; flex: 1; }

.product-category {
  font-size: 0.68rem; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 0.4rem;
}

.product-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem; font-weight: 600;
  color: var(--dark); line-height: 1.25;
  margin-bottom: 0.35rem;
  letter-spacing: -0.01em;
}

/* Fixed height desc area — always 2 lines worth of space, filled or empty */
.product-desc-wrap {
  min-height: 2.6rem;
  margin-bottom: 0.75rem;
}

.product-desc {
  font-size: 0.8rem; color: var(--text-light);
  display: -webkit-box; -webkit-line-clamp: 2;
  -webkit-box-orient: vertical; overflow: hidden;
  line-height: 1.55;
  margin: 0;
}

/* Spacer pushes footer to bottom */
.product-spacer { flex: 1; }

.product-footer {
  display: flex; align-items: center; justify-content: space-between; gap: 0.5rem;
  padding-top: 0.9rem; border-top: 1px solid var(--border);
}

.product-price {
  font-size: 1.15rem; font-weight: 600; color: var(--dark);
  font-family: 'Cormorant Garamond', serif; letter-spacing: -0.01em;
}

.product-btns {
  display: flex; align-items: center; gap: 0.4rem;
}

.view-btn {
  background: transparent; color: var(--dark);
  border: 1.5px solid var(--border); border-radius: 50px;
  padding: 0.5rem 0.9rem;
  font-family: 'DM Sans', sans-serif; font-size: 0.78rem; font-weight: 500;
  cursor: pointer; transition: all 0.18s;
  display: flex; align-items: center; gap: 0.3rem;
  letter-spacing: 0.01em; white-space: nowrap;
}
.view-btn:hover { border-color: var(--gold); color: var(--gold); }

.add-btn {
  background: var(--dark); color: #fff;
  border: none; border-radius: 50px;
  padding: 0.5rem 1.1rem;
  font-family: 'DM Sans', sans-serif; font-size: 0.8rem; font-weight: 500;
  cursor: pointer; transition: all 0.18s;
  display: flex; align-items: center; gap: 0.35rem;
  letter-spacing: 0.01em; white-space: nowrap;
}
.add-btn:hover { background: var(--gold); transform: translateY(-1px); box-shadow: 0 4px 12px rgba(184,146,74,0.3); }
.add-btn:active { transform: scale(0.97); }
.add-btn.added { background: var(--success); }
.add-btn:disabled { opacity: 0.7; cursor: default; }

/* ── PAGE HEADER ── */
.page-header { margin-bottom: 2.5rem; }
.page-header h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4rem; font-weight: 600;
  color: var(--dark); letter-spacing: -0.02em;
}
.page-header p { color: var(--text-light); margin-top: 0.4rem; font-size: 0.95rem; }

/* ── BREADCRUMB ── */
.breadcrumb {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.8rem; color: var(--muted);
  margin-bottom: 2rem;
}
.breadcrumb a { color: var(--mid); text-decoration: none; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb-sep { color: var(--border); }

/* ── BASKET PAGE ── */
.basket-layout {
  display: grid; grid-template-columns: 1fr 360px;
  gap: 2rem; align-items: start;
}
@media (max-width: 860px) { .basket-layout { grid-template-columns: 1fr; } }

.basket-items { display: flex; flex-direction: column; gap: 1rem; }

.basket-item {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 14px; padding: 1.25rem;
  display: flex; align-items: center; gap: 1.25rem;
  transition: border-color 0.18s;
}
.basket-item:hover { border-color: rgba(184,146,74,0.25); }

.basket-item-img {
  width: 84px; height: 84px; border-radius: 10px;
  object-fit: cover; background: var(--surface2);
  flex-shrink: 0; border: 1px solid var(--border);
}

.basket-item-info { flex: 1; min-width: 0; }

.basket-item-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem; font-weight: 600; color: var(--dark);
  margin-bottom: 0.15rem;
}
.basket-item-price { font-size: 0.85rem; color: var(--mid); }

.qty-control { display: flex; align-items: center; gap: 0.5rem; margin-top: 0.6rem; }
.qty-btn {
  background: var(--surface2); border: 1px solid var(--border);
  width: 30px; height: 30px; border-radius: 8px;
  cursor: pointer; font-size: 1rem; color: var(--dark);
  display: flex; align-items: center; justify-content: center;
  transition: all 0.12s; font-weight: 500;
}
.qty-btn:hover { background: var(--gold-pale); border-color: var(--gold); color: var(--gold); }
.qty-num { font-size: 0.9rem; font-weight: 600; min-width: 28px; text-align: center; }

.remove-item {
  background: none; border: none; cursor: pointer;
  color: var(--muted); padding: 0.35rem;
  border-radius: 8px; transition: all 0.15s;
}
.remove-item:hover { color: var(--danger); background: #fdecea; }

.basket-summary {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 16px; padding: 1.75rem;
  position: sticky; top: 88px;
}
.basket-summary h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem; font-weight: 600;
  margin-bottom: 1.5rem; padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}
.summary-row {
  display: flex; justify-content: space-between;
  font-size: 0.88rem; margin-bottom: 0.75rem; color: var(--mid);
}
.summary-row.total {
  font-size: 1.05rem; font-weight: 600; color: var(--dark);
  padding-top: 0.75rem; border-top: 1px solid var(--border);
  margin-top: 0.25rem;
}
.secure-note {
  display: flex; align-items: center; gap: 0.4rem;
  font-size: 0.75rem; color: var(--text-light);
  margin-top: 1.25rem; padding: 0.6rem 0.9rem;
  background: var(--surface2); border-radius: 8px;
}

/* ── REVIEW PAGE ── */
.review-layout { max-width: 640px; margin: 0 auto; }

.review-items {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 16px; overflow: hidden; margin-bottom: 1.5rem;
}
.review-item {
  display: flex; align-items: center; gap: 1rem;
  padding: 1.1rem 1.4rem; border-bottom: 1px solid var(--border);
}
.review-item:last-child { border-bottom: none; }
.review-item img {
  width: 60px; height: 60px; border-radius: 10px;
  object-fit: cover; background: var(--surface2);
  border: 1px solid var(--border); flex-shrink: 0;
}
.review-item-info { flex: 1; }
.review-item-name { font-weight: 600; font-size: 0.95rem; }
.review-item-meta { font-size: 0.78rem; color: var(--mid); margin-top: 0.15rem; }
.review-item-price { font-weight: 600; font-family: 'Cormorant Garamond', serif; font-size: 1rem; }

.review-totals {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 16px; padding: 1.25rem 1.5rem; margin-bottom: 1.5rem;
}

/* ── CHECKOUT PAGE ── */
.checkout-layout { display: grid; grid-template-columns: 1fr 380px; gap: 2rem; align-items: start; }
@media (max-width: 900px) { .checkout-layout { grid-template-columns: 1fr; } }

.checkout-form-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 16px; padding: 2rem;
}
.checkout-form-card h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem; font-weight: 600;
  margin-bottom: 1.5rem; padding-bottom: 0.85rem;
  border-bottom: 1px solid var(--border);
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
.form-row.full { grid-template-columns: 1fr; }

.form-group { display: flex; flex-direction: column; gap: 0.35rem; }
.form-group label {
  font-size: 0.72rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.08em; color: var(--mid);
}
.form-group input, .form-group select {
  padding: 0.72rem 0.95rem;
  border: 1.5px solid var(--border); border-radius: 10px;
  font-family: 'DM Sans', sans-serif; font-size: 0.9rem;
  color: var(--text); background: var(--bg);
  outline: none; transition: border-color 0.15s, box-shadow 0.15s;
}
.form-group input:focus, .form-group select:focus {
  border-color: var(--gold); box-shadow: 0 0 0 3px rgba(184,146,74,0.12);
}

.stripe-element-wrap {
  padding: 0.75rem 0.95rem;
  border: 1.5px solid var(--border); border-radius: 10px;
  background: var(--bg); transition: border-color 0.15s, box-shadow 0.15s;
}
.stripe-element-wrap.focused { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(184,146,74,0.12); }

.section-divider {
  font-size: 0.72rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-light);
  margin: 1.5rem 0 1rem;
  display: flex; align-items: center; gap: 0.75rem;
}
.section-divider::after { content: ''; flex: 1; height: 1px; background: var(--border); }

.payment-security {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.76rem; color: var(--text-light); margin-top: 0.75rem;
}

#payment-error { color: var(--danger); font-size: 0.85rem; margin-top: 0.75rem; display: none; }

/* ── SUCCESS PAGE ── */
.success-page {
  max-width: 520px; margin: 5rem auto;
  text-align: center; padding: 2rem;
}
.success-icon {
  width: 80px; height: 80px;
  background: linear-gradient(135deg, var(--gold-pale), #fff);
  border: 1px solid rgba(184,146,74,0.3);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.75rem; font-size: 2rem;
  box-shadow: 0 4px 24px rgba(184,146,74,0.15);
}
.success-page h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem; color: var(--dark); margin-bottom: 0.75rem;
  font-weight: 600; letter-spacing: -0.01em;
}
.success-page p { color: var(--mid); margin-bottom: 0.5rem; line-height: 1.7; }

/* ── EMPTY STATE ── */
.empty-state {
  text-align: center; padding: 4.5rem 2rem; color: var(--text-light);
}
.empty-state svg { width: 56px; height: 56px; opacity: 0.25; margin-bottom: 1.25rem; }
.empty-state h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem; color: var(--mid); margin-bottom: 0.5rem;
}

/* ── LOADING ── */
.skeleton {
  background: linear-gradient(90deg, var(--border) 0%, var(--surface2) 50%, var(--border) 100%);
  background-size: 200% 100%;
  animation: shimmer 1.6s infinite;
  border-radius: 10px;
}
@keyframes shimmer { 0% { background-position: 200% 0; } 100% { background-position: -200% 0; } }

.spinner {
  width: 36px; height: 36px;
  border: 2.5px solid var(--border); border-top-color: var(--gold);
  border-radius: 50%; animation: spin 0.75s linear infinite;
  margin: 3rem auto;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ── TOAST ── */
.toast {
  position: fixed; bottom: 2rem; left: 50%; transform: translateX(-50%);
  background: var(--dark); color: #fff;
  padding: 0.7rem 1.4rem; border-radius: 50px;
  font-size: 0.85rem; font-weight: 500;
  z-index: 9999; opacity: 0; pointer-events: none;
  transition: opacity 0.2s, transform 0.2s;
  box-shadow: var(--shadow-lg); white-space: nowrap;
  transform: translateX(-50%) translateY(8px);
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ── STEPS INDICATOR ── */
.steps {
  display: flex; align-items: center;
  margin-bottom: 2.5rem; max-width: 500px;
}
.step-item {
  display: flex; flex-direction: column; align-items: center; gap: 0.35rem;
}
.step-connector { flex: 1; height: 1.5px; background: var(--border); margin: 0 0.25rem; margin-bottom: 1.4rem; }
.step-connector.done { background: var(--gold); }
.step-num {
  width: 30px; height: 30px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem; font-weight: 700;
  background: var(--border); color: var(--text-light);
  border: 1.5px solid transparent;
  transition: all 0.2s;
}
.step-num.done { background: var(--gold); color: #fff; border-color: var(--gold); }
.step-num.active { background: var(--dark); color: #fff; border-color: var(--dark); }
.step-label { font-size: 0.7rem; color: var(--muted); white-space: nowrap; }
.step-label.active { color: var(--dark); font-weight: 600; }
.step-label.done { color: var(--gold); }

/* ── DIVIDER ── */
.divider {
  border: none; border-top: 1px solid var(--border); margin: 1.5rem 0;
}

/* ── RESPONSIVE ── */
@media (max-width: 640px) {
  nav { padding: 0 1.25rem; }
  .store-hero { padding: 3.5rem 1.25rem 3rem; }
  main { padding: 2rem 1.25rem; }
  #side-panel { width: 100%; }
  .form-row { grid-template-columns: 1fr; }
  .steps { max-width: 100%; }
}

/* ── IMAGE PROTECTION ── */
img {
  -webkit-user-drag: none;
  user-drag: none;
  -webkit-user-select: none;
  user-select: none;
  pointer-events: none;
}
/* Re-enable pointer events on buttons */
.add-btn, .view-btn { pointer-events: auto; }
