/* =============================================
   RANDUM WEARS — Global Stylesheet
   ============================================= */

/* ── Tokens ── */
:root {
  --black:       #0a0a0a;
  --white:       #ffffff;
  --gray-100:    #f5f5f5;
  --gray-200:    #e8e8e8;
  --gray-400:    #aaaaaa;
  --gray-600:    #666666;
  --gray-800:    #2d2d2d;
  --accent:      #c8a96e;
  --accent-dark: #a8863e;
  --danger:      #cc1a1a;
  --success:     #1a7a3a;

  --font-body:    'Inter', sans-serif;
  --font-display: 'Playfair Display', serif;

  --shadow:     0 2px 12px rgba(0,0,0,0.08);
  --shadow-lg:  0 8px 32px rgba(0,0,0,0.16);
  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);

  --header-h: 60px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  padding-left:  0;
  padding-right: 0;
  margin-left:   0;
  margin-right:  0;
  overflow-x:    hidden;
}
body {
  font-family:   var(--font-body);
  color:         var(--black);
  background:    var(--white);
  line-height:   1.5;
  -webkit-font-smoothing: antialiased;
  padding-left:  0;
  padding-right: 0;
  margin-left:   0;
  margin-right:  0;
  overflow-x:    hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* ── Layout ── */
.container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 24px;
}
.section    { padding: 80px 0; }
.section-sm { padding: 48px 0; }

/* ── Typography ── */
h1, h2, h3, h4 { line-height: 1.1; font-weight: 800; letter-spacing: -0.02em; }
h1 { font-size: clamp(2rem,   5vw, 3.6rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); }
h3 { font-size: clamp(1rem,   2vw, 1.3rem); }
.display-font { font-family: var(--font-display); }

.section-eyebrow {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 10px;
}
.section-title { font-weight: 800; letter-spacing: -0.03em; margin-bottom: 8px; }
.section-desc  { color: var(--gray-600); font-size: 0.9rem; max-width: 480px; line-height: 1.6; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 30px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary { background: var(--black); color: var(--white); border: 2px solid var(--black); }
.btn-primary:hover { background: var(--gray-800); border-color: var(--gray-800); }

.btn-outline { background: transparent; color: var(--black); border: 2px solid var(--black); }
.btn-outline:hover { background: var(--black); color: var(--white); }

.btn-white { background: var(--white); color: var(--black); border: 2px solid var(--white); }
.btn-white:hover { background: transparent; color: var(--white); }

.btn-outline-white { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.45); }
.btn-outline-white:hover { border-color: var(--white); }

/* ── Header ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
  max-width: 100%;
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  transition: box-shadow var(--transition);
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
.site-header.scrolled { box-shadow: var(--shadow); }

/* 3-column grid: logo | nav (centred) | actions */
/* 90% wide inner container — matches footer pattern */
.header-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: 90%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 16px 0;
}
@media (max-width: 600px) { .header-inner { width: 94%; } }

/* Logo — image version */
.logo { display: flex; align-items: center; justify-self: start; }
.logo-img { height: 40px; width: auto; display: block; }

/* Logo — text fallback */
.logo-text {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--black);
}
.logo-text span { color: var(--accent); }

/* Nav sits in column 2 and is naturally centred */
.main-nav { justify-self: center; }
.main-nav ul { display: flex; gap: 4px; }
.main-nav a {
  display: block;
  padding: 8px 16px;
  font-size: 1rem;          /* was 0.82rem — increased by ~6px */
  font-weight: 500;
  color: var(--black);
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s, font-weight 0.1s;
}
.main-nav a:hover,
.main-nav a.active { border-bottom-color: var(--black); font-weight: 700; }

/* Actions column — pushed to the right end */
.header-actions { display: flex; align-items: center; gap: 8px; justify-self: end; }

/* Base icon button — explicit reset so no browser default blue appears */
.icon-btn {
  position:   relative;
  width:      44px;
  height:     44px;
  display:    flex;
  align-items: center;
  justify-content: center;
  background: none;
  border:     none;
  outline:    none;
  cursor:     pointer;
  color:      var(--black);
  transition: color var(--transition), background var(--transition), opacity var(--transition);
  padding:    0;
  border-radius: 8px;
  appearance: none;
  -webkit-appearance: none;
}
.icon-btn svg { display: block; flex-shrink: 0; }
.icon-btn:hover,
.icon-btn:focus-visible {
  opacity: 1;
  background: rgba(200, 169, 110, 0.12);
  outline: none;
}

/* Cart — gold so it always stands out */
.cart-icon-btn       { color: var(--accent); }
.cart-icon-btn:hover { color: var(--accent-dark); }

/* Shop Now button in header */
.header-shop-btn {
  display: inline-flex;
  align-items: center;
  padding: 8px 18px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
  background: var(--black);
  color: var(--white);
  border: 2px solid var(--black);
  border-radius: 0;
  text-decoration: none;
  transition: background var(--transition), border-color var(--transition), color var(--transition);
  margin-left: 4px;
}
/* Keep text white in every link state */
.header-shop-btn:link,
.header-shop-btn:visited,
.header-shop-btn:focus,
.header-shop-btn:hover,
.header-shop-btn:active {
  color: var(--white);
  text-decoration: none;
}
.header-shop-btn:hover,
.header-shop-btn:active {
  background: var(--accent);
  border-color: var(--accent);
}

.cart-count {
  position: absolute;
  top: 4px; right: 4px;
  min-width: 16px; height: 16px;
  background: var(--accent);
  color: var(--black);
  font-size: 0.6rem;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 2px;
}

/* Wishlist — dark by default, goes gold when items exist */
.wishlist-nav-btn            { color: var(--black); }
.wishlist-nav-btn:hover      { color: var(--accent); }
.wishlist-nav-btn.has-items  { color: var(--accent); }
.wishlist-nav-btn.has-items svg { fill: var(--accent); }

.wishlist-count {
  position: absolute;
  top: 2px; right: 2px;
  min-width: 16px; height: 16px;
  background: var(--accent);
  color: var(--black);
  font-size: 0.6rem;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 2px;
}

.hamburger { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--black); transition: var(--transition); }

/* Mobile Nav Drawer */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1100;
}
.mobile-nav.open { display: block; }
.mobile-nav-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
}
.mobile-nav-panel {
  position: absolute;
  top: 0; left: 0; bottom: 0;
  width: 280px;
  background: var(--white);
  padding: 24px;
  overflow-y: auto;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
}
.mobile-nav.open .mobile-nav-panel { transform: translateX(0); }
.mobile-nav-close {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-bottom: 24px;
}
.mobile-nav ul { display: flex; flex-direction: column; gap: 0; }
.mobile-nav a {
  display: block;
  padding: 14px 0;
  font-size: 1rem;
  font-weight: 600;
  border-bottom: 1px solid var(--gray-200);
}

/* ── Page Hero (inner pages) ── */
.page-hero {
  background: var(--black);
  padding: 56px 0 44px;
  text-align: center;
}
.page-hero h1 { color: var(--white); font-weight: 800; }
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
  margin-top: 14px;
}
.breadcrumb a { color: rgba(255,255,255,0.55); }
.breadcrumb a:hover { color: var(--white); }

/* ── Product Card ── */
.product-card { position: relative; overflow: hidden; background: var(--white); }

.product-image {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--gray-100);
  display: block;
}
.product-image img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: opacity 0.4s ease;
}
.product-image .img-primary   { opacity: 1; z-index: 0; }
.product-image .img-secondary { opacity: 0; z-index: 1; }
.product-card:hover .img-secondary { opacity: 1; }
.product-card:hover .img-primary   { opacity: 0; }

/* Badge */
.product-badge {
  position: absolute;
  top: 10px; left: 10px;
  padding: 3px 8px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  z-index: 2;
}
.badge-new  { background: var(--black);  color: var(--white); }
.badge-sale { background: var(--danger); color: var(--white); }

/* Quick Add — slides up on hover */
.quick-add {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: var(--white);
  color: var(--black);
  text-align: center;
  padding: 11px 12px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transform: translateY(100%);
  transition: transform 0.25s ease;
  z-index: 3;
  border-top: 1px solid var(--gray-200);
}
.product-card:hover .quick-add { transform: translateY(0); }

/* Info below image */
.product-info { padding: 10px 0 0; }
.product-category {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gray-400);
  margin-bottom: 3px;
}
.product-name { font-size: 0.875rem; font-weight: 400; color: var(--black); line-height: 1.35; margin-bottom: 5px; }
.product-price { display: flex; align-items: center; gap: 8px; }
.price-current  { font-size: 0.9rem; font-weight: 700; }
.price-original { font-size: 0.82rem; color: var(--gray-400); text-decoration: line-through; }
.price-save     { font-size: 0.72rem; color: var(--danger); font-weight: 600; }

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

/* ── Cart Drawer ── */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  z-index: 2000;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}
.cart-overlay.open { opacity: 1; pointer-events: all; }

.cart-drawer {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: 400px;
  background: var(--white);
  z-index: 2001;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
}
.cart-drawer.open { transform: translateX(0); }

.cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--gray-200);
}
.cart-header h2 { font-size: 1rem; font-weight: 700; }

.cart-close {
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  color: var(--gray-600);
  transition: color var(--transition);
}
.cart-close:hover { color: var(--black); }

.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 16px 24px;
}

.cart-item {
  display: flex;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--gray-100);
}
.cart-item-img {
  width: 72px;
  height: 90px;
  object-fit: cover;
  flex-shrink: 0;
  background: var(--gray-100);
}
.cart-item-info { flex: 1; }
.cart-item-name  { font-size: 0.85rem; font-weight: 600; margin-bottom: 3px; }
.cart-item-meta  { font-size: 0.75rem; color: var(--gray-600); margin-bottom: 10px; }
.cart-item-price { font-size: 0.875rem; font-weight: 700; }

.qty-control {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--gray-200);
  margin-top: 8px;
}
.qty-btn {
  width: 28px; height: 28px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem;
  transition: background var(--transition);
}
.qty-btn:hover { background: var(--gray-100); }
.qty-num { width: 32px; text-align: center; font-size: 0.82rem; font-weight: 600; }

.cart-empty {
  text-align: center;
  padding: 48px 24px;
  color: var(--gray-600);
  font-size: 0.9rem;
}

.cart-footer {
  border-top: 1px solid var(--gray-200);
  padding: 20px 24px;
}
.cart-totals { margin-bottom: 16px; }
.cart-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  margin-bottom: 8px;
}
.cart-total { font-size: 1rem; font-weight: 700; border-top: 1px solid var(--gray-200); padding-top: 10px; margin-top: 4px; }
.cart-checkout { display: block; width: 100%; text-align: center; padding: 15px; }

/* ── Toast ── */
.toast {
  position: fixed;
  bottom: 28px; right: 28px;
  background: var(--black);
  color: var(--white);
  padding: 14px 20px;
  font-size: 0.82rem;
  font-weight: 500;
  box-shadow: var(--shadow-lg);
  z-index: 9999;
  opacity: 0;
  transform: translateY(16px);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 10px;
  pointer-events: none;
}
.toast.show { opacity: 1; transform: translateY(0); }
.toast-icon { color: var(--success); }

/* ── Forms ── */
.form-group { margin-bottom: 20px; }
.form-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--gray-200);
  font-size: 0.875rem;
  color: var(--black);
  outline: none;
  transition: border-color var(--transition);
  background: var(--white);
}
.form-control:focus { border-color: var(--black); }
.form-control::placeholder { color: var(--gray-400); }
textarea.form-control { resize: vertical; min-height: 120px; }

/* ── Footer ── */
.site-footer {
  width:      100%;
  max-width:  100%;
  background: var(--black);
  color:      var(--white);
  padding:    0;
  margin:     0;
  box-sizing: border-box;
}
/* Boxed inner container — content stays max-width centred */
.site-footer > .container {
  width:      90%;
  max-width:  1320px;
  margin:     0 auto;
  padding:    0;
  box-sizing: border-box;
}
@media (max-width: 600px) { .site-footer > .container { width: 94%; } }
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.3fr;
  gap: 48px;
  padding: 64px 0 40px;
}
.footer-logo-link { display: inline-block; margin-bottom: 16px; }
.footer-logo-img  { height: 60px; width: auto; }

/* Text fallback */
.footer-logo { font-family: var(--font-display); font-size: 1.3rem; font-weight: 700; margin-bottom: 12px; }
.footer-logo span { color: var(--accent); }
.footer-desc { color: var(--gray-400); font-size: 0.82rem; line-height: 1.7; margin-bottom: 18px; }

.footer-social { display: flex; gap: 10px; }
.social-link {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.04);
  display: flex; align-items: center; justify-content: center;
  color: var(--gray-400);
  transition: var(--transition);
}
.social-link svg { display: block; flex-shrink: 0; }
.social-link:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.55);
  color: var(--white);
}

.footer-col-title {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
  padding-left: 0;
}
.footer-links li { margin-bottom: 9px; }
.footer-links a { color: var(--gray-400); font-size: 0.82rem; transition: color var(--transition); }
.footer-links a:hover { color: var(--white); }

.newsletter-form { display: flex; margin-top: 14px; }
.newsletter-form input {
  flex: 1;
  padding: 11px 14px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.15);
  border-right: none;
  color: var(--white);
  font-size: 0.82rem;
  outline: none;
}
.newsletter-form input::placeholder { color: var(--gray-600); }
.newsletter-form input:focus { border-color: rgba(255,255,255,0.4); }
.newsletter-form button {
  padding: 11px 18px;
  background: var(--white);
  color: var(--black);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background var(--transition);
}
.newsletter-form button:hover { background: var(--gray-200); }

.footer-payments {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 0;
  border-top: 1px solid rgba(255,255,255,0.07);
  flex-wrap: wrap;
}
.footer-payments-label {
  font-size: 0.7rem;
  color: var(--gray-600);
  letter-spacing: 0.06em;
  white-space: nowrap;
}
.payment-icons { display: flex; align-items: center; gap: 7px; flex-wrap: wrap; }
.payment-icon  { width: 38px; height: 24px; display: block; border-radius: 3px; flex-shrink: 0; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 18px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-bottom p { font-size: 0.75rem; color: var(--gray-400); }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { font-size: 0.75rem; color: var(--gray-400); transition: color var(--transition); }
.footer-legal a:hover { color: var(--white); }

/* ── Skeleton loader ── */
.skeleton-card {
  background: var(--gray-100);
  aspect-ratio: 3/4;
  animation: rdw-shimmer 1.4s ease-in-out infinite;
}
@keyframes rdw-shimmer {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.45; }
}

/* ── Utilities ── */
.divider        { width: 40px; height: 2px; background: var(--black); margin: 12px 0; }
.divider.accent { background: var(--accent); }
.text-accent    { color: var(--accent); }
.text-muted     { color: var(--gray-600); }
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

/* ── Attribute filter (shop.html) ── */
.attr-filter-toggle {
  display:        inline-flex;
  align-items:    center;
  gap:            7px;
  height:         34px;
  padding:        0 14px;
  font-size:      0.78rem;
  font-weight:    600;
  letter-spacing: 0.04em;
  border:         1.5px solid var(--gray-200);
  background:     var(--white);
  color:          var(--black);
  cursor:         pointer;
  font-family:    inherit;
  white-space:    nowrap;
  transition:     border-color 0.2s, background 0.2s, color 0.2s;
}
.attr-filter-toggle:hover                 { border-color: var(--black); }
.attr-filter-toggle[aria-expanded="true"] { background: var(--black); color: var(--white); border-color: var(--black); }
.attr-filter-badge {
  display:         inline-flex;
  align-items:     center;
  justify-content: center;
  min-width:       18px;
  height:          18px;
  padding:         0 4px;
  background:      var(--accent);
  color:           var(--black);
  font-size:       0.62rem;
  font-weight:     700;
  border-radius:   9px;
}

.attr-filter-panel {
  background:    var(--gray-100);
  border-bottom: 1px solid var(--gray-200);
}
.attr-filter-inner {
  display:     flex;
  align-items: flex-start;
  gap:         40px;
  flex-wrap:   wrap;
  padding:     18px 24px;
  max-width:   1320px;
  margin:      0 auto;
}
.attr-filter-group { min-width: 0; }
.attr-filter-group-title {
  font-size:      0.65rem;
  font-weight:    700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color:          var(--gray-600);
  margin-bottom:  10px;
}
.attr-filter-options { display: flex; align-items: center; gap: 6px; flex-wrap: wrap; }

.attr-filter-swatch {
  display:        inline-flex;
  align-items:    center;
  gap:            6px;
  padding:        5px 10px 5px 6px;
  border:         1.5px solid var(--gray-200);
  background:     var(--white);
  font-size:      0.75rem;
  color:          var(--black);
  cursor:         pointer;
  font-family:    inherit;
  white-space:    nowrap;
  transition:     border-color 0.2s, background 0.2s, color 0.2s;
}
.attr-filter-swatch:hover      { border-color: var(--black); }
.attr-filter-swatch.is-active  { border-color: var(--black); background: var(--black); color: var(--white); }
.attr-filter-swatch.is-active .attr-swatch-dot { outline: 2px solid var(--white); outline-offset: 1px; }

.attr-swatch-dot {
  width:         14px;
  height:        14px;
  border-radius: 50%;
  flex-shrink:   0;
  border:        1px solid rgba(0,0,0,0.1);
}

.attr-filter-tag {
  display:        inline-flex;
  align-items:    center;
  padding:        5px 13px;
  border:         1.5px solid var(--gray-200);
  background:     var(--white);
  font-size:      0.75rem;
  font-weight:    600;
  color:          var(--black);
  cursor:         pointer;
  font-family:    inherit;
  white-space:    nowrap;
  transition:     border-color 0.2s, background 0.2s, color 0.2s;
}
.attr-filter-tag:hover     { border-color: var(--black); }
.attr-filter-tag.is-active { border-color: var(--black); background: var(--black); color: var(--white); }

.attr-filter-clear {
  display:            inline-flex;
  align-items:        center;
  gap:                5px;
  font-size:          0.72rem;
  color:              var(--gray-600);
  text-decoration:    underline;
  text-underline-offset: 3px;
  cursor:             pointer;
  background:         none;
  border:             none;
  font-family:        inherit;
  padding:            0;
  align-self:         center;
  transition:         color 0.2s;
}
.attr-filter-clear:hover { color: var(--black); }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .products-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-top    { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .section { padding: 56px 0; }
  /* On mobile collapse to logo | actions (2 columns), hide nav */
  .header-inner {
    grid-template-columns: 1fr auto;
    padding: 14px 16px;
  }
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 1px; }
  .footer-top    { grid-template-columns: 1fr; gap: 28px; }
  .main-nav         { display: none; }
  .hamburger        { display: flex; }
  .header-shop-btn  { display: none; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .cart-drawer   { width: 100%; }
}
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .product-name { font-size: 0.8rem; }
}
