:root {
  --black: #0D0D0D;
  --white: #FFFFFF;
  --purple: #7C3AED;
  --purple-light: #A78BFA;
  --purple-dark: #5B21B6;
  --purple-wash: #F5F3FF;
  --gray-50: #F9FAFB;
  --gray-100: #F3F4F6;
  --gray-200: #E5E7EB;
  --gray-400: #9CA3AF;
  --gray-600: #4B5563;
  --gray-800: #1F2937;
  --gray-900: #111827;
  --sale-red: #DC2626;
  --sale-red-bg: #FEF2F2;
  --success: #059669;
  --font-sans: 'Inter', system-ui, sans-serif;
  --font-serif: 'Playfair Display', Georgia, serif;
  --container: 1280px;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.08);
  --shadow-purple: 0 4px 24px rgba(124,58,237,0.18);
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--gray-900);
  background: var(--gray-50);
  line-height: 1.5;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }

.container {
  width: min(var(--container), calc(100% - 2rem));
  margin: 0 auto;
}

.section { padding: 3.5rem 0; }
.section-alt { background: var(--white); }
.section-head,
.section-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.section-head-stack { align-items: start; }
.section-head-compact { margin-top: 2rem; }
.section-head h1,
.section-head h2,
.section-header h1,
.section-header h2,
.empty-panel h2,
.summary-card h2,
.checkout-form h2 {
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.05;
}
.section-head h2,
.section-header h2,
.empty-panel h2,
.summary-card h2,
.checkout-form h2 { font-size: clamp(1.5rem, 3vw, 2.4rem); }

.section-kicker,
.product-category,
.sale-label,
.footer-heading {
  display: inline-block;
  margin: 0 0 0.5rem;
  color: var(--gray-400);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.section-copy,
.muted,
.footer-copy,
.testimonial-card p,
.delivery-note,
.empty-panel p { color: var(--gray-600); }

.link-arrow { color: var(--purple); font-weight: 600; }

.topbar {
  background: var(--black);
  color: rgba(255,255,255,0.8);
  font-size: 0.78rem;
}

.topbar-inner {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.7rem 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(13,13,13,0.92);
  backdrop-filter: blur(12px);
  color: var(--white);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.header-shell {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  align-items: center;
  padding: 1rem 0;
}

.brand { display: flex; align-items: center; gap: 0.85rem; }
.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--purple), var(--purple-dark));
  font-weight: 700;
}
.brand-copy { display: grid; gap: 0.15rem; }
.brand-copy strong { font-size: 0.95rem; }
.brand-copy span { color: rgba(255,255,255,0.64); font-size: 0.78rem; }

.mobile-toggle {
  width: 44px;
  height: 44px;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: var(--radius-sm);
  display: grid;
  gap: 4px;
  padding: 12px;
}
.mobile-toggle span { background: var(--white); height: 2px; border-radius: 2px; }

.header-panel {
  grid-column: 1 / -1;
  display: none;
  background: var(--black);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 1rem;
  gap: 1rem;
}
.header-panel.open { display: grid; }

.primary-nav,
.header-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.primary-nav a {
  padding: 0.75rem 0;
  color: rgba(255,255,255,0.76);
  border-bottom: 2px solid transparent;
}
.primary-nav a.active,
.primary-nav a:hover { color: var(--white); border-color: var(--purple); }

.header-search input,
input,
textarea,
select {
  width: 100%;
  min-height: 44px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--gray-900);
  padding: 0.85rem 1rem;
}

.header-search input { background: rgba(255,255,255,0.08); color: var(--white); border-color: rgba(255,255,255,0.12); }
.header-search input::placeholder { color: rgba(255,255,255,0.52); }

.icon-button {
  min-width: 44px;
  min-height: 44px;
  padding: 0.75rem 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.16);
  color: var(--white);
  background: rgba(255,255,255,0.05);
}
.icon-wrap { position: relative; }
.badge-count {
  position: absolute;
  top: -4px;
  right: -2px;
  min-width: 20px;
  height: 20px;
  border-radius: 999px;
  background: var(--purple);
  color: var(--white);
  font-size: 0.72rem;
  display: grid;
  place-items: center;
  padding: 0 0.3rem;
}

.hero-section { position: relative; height: 80vh; min-height: 520px; max-height: 900px; overflow: hidden; }
.slideshow { width: 100%; height: 100%; position: relative; }
.slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.7s ease;
  display: flex;
  align-items: flex-end;
}
.slide.active { opacity: 1; }
.slide-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.78) 0%, rgba(0,0,0,0.24) 60%, transparent 100%); }
.slide-content { position: relative; z-index: 1; padding-bottom: 4rem; color: var(--white); }
.slide-kicker { margin: 0 0 0.75rem; opacity: 0.84; letter-spacing: 0.14em; text-transform: uppercase; font-size: 0.78rem; font-weight: 600; }
.slide-title { margin: 0 0 1rem; font-family: var(--font-serif); font-size: clamp(2.7rem, 6vw, 5.2rem); line-height: 0.98; max-width: 720px; }
.slide-subtitle { max-width: 560px; font-size: 1rem; opacity: 0.88; margin: 0 0 2rem; }
.slide-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.slide-dots {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
  z-index: 2;
}
.slide-dot {
  width: 8px;
  height: 8px;
  border: none;
  border-radius: 50%;
  background: rgba(255,255,255,0.45);
  padding: 0;
}
.slide-dot.active { background: var(--white); transform: scale(1.3); }

.wa-strip { background: var(--purple); color: var(--white); padding: 0.85rem 0; }
.wa-strip-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }

.category-grid,
.product-grid,
.combo-grid,
.trust-grid,
.testimonial-grid,
.footer-grid {
  display: grid;
  gap: 1rem;
}

.product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.product-scroll {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 0.5rem;
  scrollbar-width: none;
}
.product-scroll::-webkit-scrollbar { display: none; }
.product-scroll .product-card { min-width: 220px; scroll-snap-align: start; flex-shrink: 0; }

.category-card,
.product-card,
.combo-card,
.testimonial-card,
.summary-card,
.cart-item,
.form-section,
.empty-panel {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.category-card { overflow: hidden; }
.category-img { aspect-ratio: 4 / 3; background: var(--gray-100); }
.category-img img { width: 100%; height: 100%; object-fit: cover; }
.category-img--placeholder { background: linear-gradient(135deg, var(--purple-wash), var(--gray-100)); }
.category-info { padding: 1rem; display: flex; justify-content: space-between; gap: 1rem; }
.category-name { font-weight: 600; }
.category-count { color: var(--gray-600); font-size: 0.88rem; }

.product-card { overflow: hidden; transition: box-shadow 0.2s, transform 0.2s; }
.product-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.product-media {
  display: block;
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--gray-100);
}
.product-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.product-card:hover .product-media img { transform: scale(1.04); }
.product-placeholder { width: 100%; height: 100%; background: linear-gradient(135deg, var(--purple-wash), var(--gray-100)); }
.badge {
  position: absolute;
  left: 0.7rem;
  padding: 0.25rem 0.55rem;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 700;
}
.badge-sale { top: 0.7rem; background: var(--sale-red); color: var(--white); }
.badge-featured { top: 0.7rem; background: var(--black); color: var(--white); }
.badge-trending { top: 2.5rem; background: var(--purple); color: var(--white); }
.badge-limited { top: 4.3rem; background: var(--sale-red-bg); color: var(--sale-red); }
.badge-stock { bottom: 0.7rem; background: rgba(0,0,0,0.74); color: var(--white); }
.sale-timer {
  position: absolute;
  right: 0.7rem;
  bottom: 0.7rem;
  padding: 0.3rem 0.55rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.92);
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--sale-red);
}

.product-card-actions {
  position: absolute;
  top: 0.7rem;
  right: 0.7rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  opacity: 1;
}
.card-action-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--gray-200);
  background: rgba(255,255,255,0.95);
  display: grid;
  place-items: center;
  color: var(--gray-600);
}
.card-action-btn:hover,
.card-action-btn.wishlisted { background: var(--purple); color: var(--white); border-color: var(--purple); }
.wa-btn:hover { background: #25D366; border-color: #25D366; }

.product-body { padding: 1rem; }
.product-name { font-family: var(--font-serif); font-size: 1.1rem; margin: 0 0 0.5rem; }
.product-name a:hover { color: var(--purple); }
.variant-swatches,
.combo-thumbs,
.chip-row,
.detail-cta-row,
.cart-item-actions { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.variant-swatches { min-height: 18px; margin-bottom: 0.6rem; }
.swatch {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 1px solid rgba(0,0,0,0.12);
}
.combo-thumbs img {
  width: 32px;
  height: 32px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid var(--white);
}
.product-price-row,
.detail-price-row,
.combo-price-row,
.summary-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}
.product-price-row,
.combo-price-row,
.detail-price-row { justify-content: flex-start; margin-bottom: 0.85rem; flex-wrap: wrap; }
.price-now,
.detail-price { font-size: 1.05rem; font-weight: 700; color: var(--gray-900); }
.price-sale { color: var(--sale-red); }
.price-old,
.detail-price-old { color: var(--gray-400); text-decoration: line-through; }
.combo-saving-copy { margin: 0 0 0.85rem; color: var(--success); font-weight: 600; }

.btn {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.75rem 1.2rem;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  font-weight: 600;
}
.btn-purple { background: var(--purple); color: var(--white); box-shadow: var(--shadow-purple); }
.btn-purple:hover { background: var(--purple-dark); }
.btn-white { background: var(--white); color: var(--purple); }
.btn-outline-white { border-color: rgba(255,255,255,0.7); color: var(--white); }
.btn-secondary,
.chip {
  background: var(--white);
  color: var(--purple);
  border: 1px solid var(--purple-light);
}
.chip.active { background: var(--purple); color: var(--white); border-color: var(--purple); }
.btn-block { width: 100%; }
.btn-sm { min-height: 38px; padding: 0.55rem 0.9rem; font-size: 0.82rem; }

.combo-card { overflow: hidden; }
.combo-image-wrap { display: block; aspect-ratio: 4 / 5; position: relative; }
.combo-image-wrap img { width: 100%; height: 100%; object-fit: cover; }
.combo-badge {
  position: absolute;
  top: 0.8rem;
  left: 0.8rem;
  background: var(--purple);
  color: var(--white);
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
}
.combo-body { padding: 1rem; }
.combo-body h3 { margin: 0 0 0.75rem; font-family: var(--font-serif); font-size: 1.3rem; }
.combo-includes { margin: 0 0 0.9rem; color: var(--gray-600); }

.trust-strip { padding: 2rem 0 3rem; }
.trust-item {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 1rem;
  display: flex;
  gap: 1rem;
  align-items: start;
}
.trust-item p { margin: 0.25rem 0 0; color: var(--gray-600); }
.trust-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: var(--purple-wash);
  color: var(--purple);
  flex-shrink: 0;
}
.trust-icon svg { width: 22px; height: 22px; }

.testimonial-card { padding: 1.4rem; }
.testimonial-card h3 { margin: 0 0 0.35rem; font-family: var(--font-serif); font-size: 1.3rem; }

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  color: var(--gray-600);
  margin-bottom: 1.25rem;
}
.detail-grid,
.cart-grid,
.checkout-grid {
  display: grid;
  gap: 1.5rem;
}
.page-hero { padding: 3rem 0 1rem; }
.page-hero-inner,
.checkout-layout { display: grid; gap: 1.5rem; }
.page-stat {
  align-self: start;
  justify-self: start;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  background: var(--purple-wash);
  color: var(--purple-dark);
  font-weight: 700;
}
.detail-media,
.detail-copy,
.cart-main,
.checkout-form { min-width: 0; }
.detail-media img {
  width: 100%;
  border-radius: var(--radius-xl);
  aspect-ratio: 4 / 5;
  object-fit: cover;
}
.thumb-row { display: flex; gap: 0.6rem; overflow-x: auto; margin-top: 0.85rem; }
.thumb-button {
  width: 74px;
  height: 92px;
  padding: 0;
  border-radius: var(--radius-md);
  border: 1px solid var(--gray-200);
  overflow: hidden;
  background: var(--white);
}
.thumb-button.active { border-color: var(--purple); box-shadow: 0 0 0 2px rgba(124,58,237,0.14); }
.thumb-button img { width: 100%; height: 100%; object-fit: cover; }
.detail-title { margin: 0 0 0.75rem; font-family: var(--font-serif); font-size: clamp(2rem, 4vw, 3.4rem); line-height: 1.02; }
.urgency-banner {
  margin: 0 0 0.8rem;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-md);
  background: var(--sale-red-bg);
  color: var(--sale-red);
  font-weight: 700;
}
.stock-state {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  background: #ECFDF5;
  color: var(--success);
  font-weight: 600;
  margin-bottom: 1rem;
}
.stock-state.low { background: #FFF7ED; color: #C2410C; }
.stock-state.out { background: #FEE2E2; color: var(--sale-red); }

.detail-form,
.page-shell { display: grid; gap: 1rem; }
.detail-actions { display: grid; gap: 0.85rem; }
.qty-control {
  display: inline-grid;
  grid-template-columns: 44px 72px 44px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.qty-button { border: none; background: var(--gray-100); min-height: 44px; }
.qty-control input { border: none; text-align: center; padding: 0; }
.variant-group { display: grid; gap: 0.75rem; }
.variant-group-title { font-weight: 700; }
.variant-options { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.variant-pill input { position: absolute; opacity: 0; pointer-events: none; }
.variant-option {
  position: relative;
}
.variant-pill span,
.variant-option span,
.variant-option {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 0.85rem;
  border-radius: 999px;
  border: 1px solid var(--gray-200);
  background: var(--white);
}
.variant-pill input:checked + span,
.variant-option input:checked + span { border-color: var(--purple); background: var(--purple-wash); color: var(--purple-dark); }
.variant-option input { position: absolute; opacity: 0; pointer-events: none; }
.detail-inline-badge { position: static; }

.delivery-note {
  padding: 1rem;
  border-radius: var(--radius-md);
  background: var(--purple-wash);
  border: 1px solid rgba(124,58,237,0.16);
}

.cart-item {
  display: grid;
  grid-template-columns: 104px 1fr;
  gap: 1rem;
  padding: 1rem;
}
.cart-thumb img,
.cart-thumb .product-placeholder {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--radius-md);
}
.cart-item-title { margin: 0; font-family: var(--font-serif); font-size: 1.4rem; }
.cart-item-body { display: grid; gap: 1rem; }
.cart-item-total { font-size: 1.05rem; }

.summary-card,
.form-section,
.empty-panel {
  padding: 1.25rem;
}
.summary-line { padding: 0.65rem 0; border-bottom: 1px solid var(--gray-100); }
.summary-line.total { font-size: 1.05rem; font-weight: 700; }
.form-grid { display: grid; gap: 1rem; }
.form-grid label,
.checkout-form label { display: grid; gap: 0.45rem; }
.field-span { grid-column: 1 / -1; }
.payment-options { display: grid; gap: 0.85rem; }
.payment-option {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.75rem;
  align-items: start;
  padding: 1rem;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
}
.payment-instructions {
  display: none;
  margin-top: 0.5rem;
  color: var(--gray-600);
}
.checkout-usd-note { margin: 1rem 0 0; color: var(--gray-600); }

.empty-panel { text-align: center; }
.empty-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 2rem;
  color: var(--purple);
  background: var(--purple-wash);
}

.flash-stack { display: grid; gap: 0.75rem; padding-top: 1rem; }
.flash {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 1rem;
  border-radius: var(--radius-md);
  background: var(--white);
  border: 1px solid var(--gray-200);
}
.flash.success { border-color: rgba(5,150,105,0.25); }
.flash.error { border-color: rgba(220,38,38,0.25); }
.flash-close { border: none; background: transparent; font-size: 1.25rem; color: var(--gray-600); }
.helptext { color: var(--gray-600); font-size: 0.85rem; }
.errorlist {
  margin: 0.35rem 0 0;
  padding: 0;
  list-style: none;
  color: var(--sale-red);
  font-size: 0.88rem;
}

.site-footer {
  background: var(--black);
  color: var(--white);
  padding: 3rem 0 2rem;
  margin-top: 3rem;
}
.footer-title { margin: 0 0 0.75rem; font-family: var(--font-serif); font-size: 2rem; }
.footer-links { list-style: none; padding: 0; margin: 0; display: grid; gap: 0.55rem; color: rgba(255,255,255,0.7); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.62);
  font-size: 0.9rem;
}

.loading-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  gap: 1rem;
  background: rgba(249,250,251,0.96);
  color: var(--purple);
  transition: opacity 0.25s ease, visibility 0.25s ease;
}
.loading-overlay.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.spinner {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 3px solid rgba(124,58,237,0.16);
  border-top-color: var(--purple);
  animation: spin 0.9s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.quick-view-modal[hidden] { display: none; }
.quick-view-modal {
  position: fixed;
  inset: 0;
  z-index: 180;
  display: grid;
  place-items: center;
}
.quick-view-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(17,24,39,0.64);
}
.quick-view-dialog {
  position: relative;
  width: min(900px, calc(100% - 1.5rem));
  max-height: calc(100vh - 2rem);
  overflow: auto;
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-purple);
}
.quick-view-close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--gray-200);
  background: var(--white);
  z-index: 1;
}
.quick-view-shell {
  display: grid;
  gap: 1rem;
  padding: 1rem;
}
.quick-view-media img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; border-radius: var(--radius-lg); }

.sticky-mobile-bar { display: none; }

@media (max-width: 767px) {
  .hero-section { height: 70vh; min-height: 430px; }
  .slide-content { padding-bottom: 3rem; }
  .wa-strip-inner { flex-direction: column; text-align: center; }
  .sticky-mobile-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    position: sticky;
    bottom: 0;
    z-index: 50;
    background: var(--white);
    border-top: 1px solid var(--gray-200);
    padding: 0.85rem 1rem;
    box-shadow: 0 -4px 16px rgba(0,0,0,0.08);
  }
  .sticky-mobile-bar.hidden { display: none; }
  .sticky-bar-info { display: flex; flex-direction: column; }
  .product-name-short { font-size: 0.8rem; color: var(--gray-600); }
}

@media (min-width: 768px) {
  .category-grid { grid-template-columns: repeat(3, 1fr); }
  .product-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .combo-grid,
  .testimonial-grid,
  .trust-grid,
  .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .product-scroll { display: grid; grid-template-columns: repeat(4, 1fr); overflow: visible; }
  .product-scroll .product-card { min-width: 0; }
  .detail-grid,
  .cart-grid,
  .checkout-grid { grid-template-columns: 1.05fr 0.95fr; }
  .page-hero-inner,
  .checkout-layout { grid-template-columns: 1fr 0.75fr; }
  .quick-view-shell { grid-template-columns: 1fr 1fr; padding: 1.25rem; }
  .form-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (min-width: 1024px) {
  .header-shell { grid-template-columns: auto 1fr; }
  .mobile-toggle { display: none; }
  .header-panel {
    display: grid;
    grid-column: auto;
    grid-template-columns: 1fr minmax(220px, 320px) auto;
    align-items: center;
    background: transparent;
    border: none;
    padding: 0;
  }
  .category-grid { grid-template-columns: repeat(4, 1fr); }
  .product-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1.5rem; }
  .combo-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .trust-grid,
  .footer-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .checkout-grid { grid-template-columns: 1.2fr 0.8fr; }
}
