/* ======================================================
   HITARA — Soft & Editorial Design System
   ====================================================== */

:root {
  /* Logo-extracted palette */
  --accent:        #C4177A;   /* Core magenta — center of logo gradient */
  --accent-light:  #D81B7A;   /* Bright magenta — left of logo */
  --accent-dark:   #8B1560;   /* Deep fuchsia — right of logo */

  /* Gradient matching logo */
  --accent-grad: linear-gradient(90deg, #D81B7A, #8B1560);

  /* Neutrals — warm whites/creams that make the magenta pop */
  --bg:      #FFF8FB;   /* Very warm white with the faintest pink blush */
  --surface: #FFFFFF;
  --text:    #2A1020;   /* Near-black with a hint of the logo's purple */
  --muted:   #7A5068;   /* Muted mauve — pulled from logo shadow tones */
  --border:  #F0DFEA;   /* Blush pink border */

  /* Shadows */
  --shadow-sm: rgba(139,21,96,0.06);
  --shadow-md: rgba(139,21,96,0.12);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Outfit", sans-serif;
  -webkit-font-smoothing: antialiased;
}
button, input, select { font: inherit; }
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }

/* ── Shipping bar ── */
.shipping-bar {
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  background: var(--accent-grad);
  color: #fff;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 600;
}
.shipping-bar span { opacity: 0.6; }

/* ── Header ── */
.site-header {
  height: 72px;
  display: flex;
  align-items: center;
  padding: 0 max(5%, 40px);
  background: rgba(255,248,251,0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 50;
}

.wordmark {
  display: flex;
  align-items: center;
  text-decoration: none;
  /* fallback text styles for footer */
  font: 500 28px/1 "Playfair Display", serif;
  letter-spacing: 2px;
  color: var(--accent);
  text-transform: uppercase;
}
.wordmark img {
  width: 160px;
  height: auto;
  display: block;
}

.site-header nav {
  display: flex;
  gap: 40px;
  flex: 1;
  justify-content: center;
  /* Desktop nav is inline */
}
.site-header nav a {
  font-size: 12px;
  font-weight: 500;
  text-decoration: none;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  transition: color 0.3s;
}
.site-header nav a:hover { color: var(--accent); }
.site-header nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -4px;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s cubic-bezier(0.19,1,0.22,1);
}
.site-header nav a.active::after,
.site-header nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.bag-button {
  flex-shrink: 0;
  border: 1.5px solid var(--accent);
  background: transparent;
  color: var(--accent);
  border-radius: 40px;
  padding: 8px 20px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 7px;
  transition: all 0.3s;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.bag-button:hover {
  background: var(--accent-grad);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 8px 20px var(--shadow-md);
}

/* Groups the bag button + hamburger together on the right */
.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Hamburger button — hidden on desktop */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: transparent;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
}
.nav-toggle span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s ease;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
.bag-count {
  background: var(--accent-grad);
  color: #fff;
  border-radius: 50%;
  width: 20px; height: 20px;
  font-size: 10px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.nav-toggle { display: none; }

/* ── Hero ── */
.home-hero {
  padding: 24px max(5%, 40px);
}
.hero-box {
  width: 100%;
  border-radius: 24px;
  border: 1.5px solid var(--border);
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(45,43,42,0.08);
  background: var(--surface);
}
.home-hero .hero-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.7s cubic-bezier(0.25,1,0.5,1);
}
.hero-box:hover .hero-image {
  transform: scale(1.02);
}

/* ── Brand Typography ── */
.home-typography {
  max-width: 1100px;
  margin: 0 auto;
  padding: 120px 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 60px;
  text-align: left;
}
.typo-left, .typo-right {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  opacity: 0;
  animation: fadeUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.typo-right {
  animation-delay: 0.2s;
  max-width: 480px;
}
@keyframes fadeUp {
  0% { opacity: 0; transform: translateY(40px); }
  100% { opacity: 1; transform: translateY(0); }
}
.kicker {
  font-size: 11px;
  letter-spacing: 2.5px;
  background: var(--accent-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
  margin: 0 0 20px;
  text-transform: uppercase;
}
.home-typography h1 {
  font: 400 60px/1.1 "Playfair Display", serif;
  margin: 0;
  color: var(--text);
  letter-spacing: -1px;
}
.home-typography h1 em {
  font-style: italic;
  background: var(--accent-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.home-typography p:not(.kicker) {
  font-size: 16px;
  line-height: 1.7;
  color: var(--muted);
  margin: 0 0 40px;
}
.primary-link {
  display: inline-flex;
  align-items: center;
  background: var(--accent-grad);
  color: #fff;
  padding: 14px 40px;
  border-radius: 40px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  transition: all 0.35s ease;
  box-shadow: 0 6px 20px var(--shadow-md);
}
.primary-link:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: 0 14px 32px var(--shadow-md);
}

/* ── Category Links ── */
.home-links {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 5% 120px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.category-link {
  background: var(--surface);
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  padding: 40px 32px;
  color: var(--text);
  box-shadow: 0 4px 20px var(--shadow-sm);
  transition: all 0.4s cubic-bezier(0.19,1,0.22,1);
  min-height: 260px;
  position: relative;
}
.category-link:hover:not(.disabled) {
  transform: translateY(-8px);
  box-shadow: 0 24px 48px var(--shadow-md);
}
.category-link.disabled {
  opacity: 0.6;
  cursor: default;
  background: transparent;
  box-shadow: none;
  border: 1.5px dashed var(--border);
}
.cat-num {
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 1.5px;
  margin-bottom: auto; /* Pushes content down */
}
.cat-content h3 {
  font: 400 34px "Playfair Display", serif;
  margin: 0 0 10px;
}
.cat-content p {
  font-size: 14px;
  color: var(--muted);
  margin: 0;
  line-height: 1.5;
}
.coming-soon { color: var(--accent) !important; font-weight: 500; }
.cat-arrow {
  position: absolute;
  top: 36px;
  right: 32px;
  font-size: 24px;
  transition: transform 0.3s cubic-bezier(0.19,1,0.22,1);
  color: var(--muted);
}
.category-link:hover:not(.disabled) .cat-arrow {
  transform: translateX(6px) translateY(-6px);
  color: var(--accent);
}

/* ── Product Grid (Shop) ── */
.shop-page {
  max-width: 1320px;
  margin: auto;
  padding: 80px 5% 120px;
}
.page-heading h1 {
  font: 400 60px/1.1 "Playfair Display", serif;
  margin: 0;
}
.page-heading > p {
  font-size: 16px;
  line-height: 1.6;
  margin: 20px 0 0;
  color: var(--muted);
  max-width: 380px;
}
.shop-toolbar {
  border-top: 1px solid var(--border);
  margin-top: 56px;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.filters { display: flex; gap: 10px; flex-wrap: wrap; }
.filter {
  border: 1.5px solid transparent;
  background: var(--surface);
  color: var(--text);
  padding: 10px 24px;
  border-radius: 40px;
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.35s ease;
  box-shadow: 0 3px 10px var(--shadow-sm);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.filter.active,
.filter:hover:not([disabled]) {
  background: var(--accent-grad);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 8px 20px var(--shadow-md);
}
.filter[disabled] {
  opacity: 0.45;
  box-shadow: none;
  background: transparent;
  border: 1.5px dashed var(--border);
  cursor: default;
}
.product-total { font-size: 12px; color: var(--muted); }

.product-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 36px 20px;
  margin-top: 40px;
}
.product-card { min-width: 0; display: flex; flex-direction: column; }
.product-art {
  height: 420px;
  overflow: hidden;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--surface);
  box-shadow: 0 4px 16px var(--shadow-sm);
  transition: box-shadow 0.4s ease;
}
.product-art img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.25,1,0.5,1);
}
.product-card:hover .product-art { box-shadow: 0 16px 36px var(--shadow-md); }
.product-card:hover .product-art img { transform: scale(1.05); }

.product-art.neutral { background: #EFE8DE; }
.product-art.blush   { background: #F5E5E7; }
.product-art.sage    { background: #E1E7DC; }
.product-art.charcoal{ background: #E2E2E2; }

.garment {
  width: 58%; height: 58%;
  position: relative;
  filter: drop-shadow(0 12px 12px rgba(0,0,0,0.08));
  background: #FFF;
  transition: transform 0.7s cubic-bezier(0.25,1,0.5,1);
}
.product-card:hover .garment { transform: scale(1.05); }
.garment.tops { border-radius: 12px 12px 4px 4px; clip-path: polygon(25% 0,75% 0,100% 30%,85% 45%,80% 30%,80% 100%,20% 100%,20% 30%,15% 45%,0% 30%); }
.garment.dresses { border-radius: 20px 20px 8px 8px; clip-path: polygon(30% 0,70% 0,75% 20%,90% 100%,10% 100%,25% 20%); }
.garment.sets::before, .garment.sets::after { content: ""; position: absolute; background: #FFF; }
.garment.sets::before { width:100%; height:45%; top:0; left:0; border-radius:12px 12px 4px 4px; clip-path:polygon(25% 0,75% 0,100% 30%,85% 45%,80% 30%,80% 100%,20% 100%,20% 30%,15% 45%,0% 30%); }
.garment.sets::after  { width:80%; height:50%; bottom:0; left:10%; border-radius:4px 4px 12px 12px; clip-path:polygon(0 0,100% 0,90% 100%,10% 100%); }

.product-meta {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 16px 4px;
  gap: 12px;
}
.product-meta > div { flex: 1; min-width: 0; }
.product-meta h3 { font: 400 17px "Playfair Display", serif; margin: 0; }
.product-meta p  { font-size: 13px; color: var(--muted); margin: 6px 0 0; }

.add-button {
  border: none;
  background: var(--accent-grad);
  color: #fff;
  border-radius: 50%;
  width: 40px; height: 40px;
  font-size: 22px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 16px var(--shadow-md);
  transition: all 0.4s cubic-bezier(0.19,1,0.22,1);
  flex-shrink: 0;
}
.add-button:hover {
  opacity: 0.85;
  transform: rotate(90deg) scale(1.1);
  box-shadow: 0 12px 28px var(--shadow-md);
}

/* ── Footer ── */
footer {
  padding: 80px max(5%, 40px);
  background: var(--text);
  color: #D0C8D5;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.footer-logo {
  width: 140px;
  height: auto;
  /* Invert logo to white for dark background */
  filter: brightness(0) invert(1);
  margin-bottom: 20px;
}
.footer-tagline {
  font: 400 15px/1.7 "Playfair Display", serif;
  color: #888;
  margin: 0;
}
.footer-heading {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #555;
  margin: 0 0 20px;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-links a {
  color: #aaa;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.5px;
  transition: color 0.3s;
  text-decoration: none;
}
.footer-links a:hover { color: var(--accent-light); }

/* ── Bag Drawer ── */
.bag-drawer {
  position: fixed;
  z-index: 100;
  right: 0; top: 0;
  width: min(440px,100vw);
  height: 100dvh;
  background: rgba(253,251,247,0.97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  transform: translateX(105%);
  transition: transform 0.5s cubic-bezier(0.19,1,0.22,1);
  padding: 36px;
  display: flex;
  flex-direction: column;
  box-shadow: -16px 0 60px var(--shadow-md);
  border-left: 1px solid var(--border);
}
.bag-drawer.open { transform: translateX(0); }
.bag-overlay {
  position: fixed;
  z-index: 90;
  inset: 0;
  background: rgba(45,43,42,0.45);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}
.bag-overlay.open { opacity: 1; visibility: visible; }

.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}
.drawer-header h2 { font: 400 24px "Playfair Display", serif; margin: 0; }
.drawer-close {
  border: 0; background: transparent;
  font-size: 32px; font-weight: 300;
  cursor: pointer; color: var(--text);
  transition: transform 0.3s; line-height: 1;
}
.drawer-close:hover { transform: rotate(90deg); }

.bag-items { flex: 1; overflow: auto; padding: 24px 0; }
.bag-item {
  display: grid;
  grid-template-columns: 72px 1fr auto;
  gap: 16px;
  margin-bottom: 24px;
  align-items: start;
}
.bag-item-swatch { width:72px; height:88px; border-radius:10px; }
.bag-item-swatch.neutral { background:#EFE8DE; }
.bag-item-swatch.blush   { background:#F5E5E7; }
.bag-item-swatch.sage    { background:#E1E7DC; }
.bag-item-swatch.charcoal{ background:#E2E2E2; }
.bag-item h3 { font: 400 15px "Playfair Display", serif; margin: 4px 0; }
.bag-item p  { font-size: 13px; color: var(--muted); margin: 4px 0; }
.bag-remove {
  border: 0; background: transparent;
  color: #bbb; font-size: 20px;
  cursor: pointer; padding: 0;
  transition: color 0.3s;
}
.bag-remove:hover { color: var(--accent); }
.bag-empty {
  text-align: center;
  font: 400 17px/1.6 "Outfit", sans-serif;
  color: var(--muted);
  padding: 80px 20px;
}
.bag-footer { border-top: 1px solid var(--border); padding-top: 24px; }
.bag-footer > div {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
  font-size: 15px;
  font-weight: 500;
}
.bag-footer b { font-size: 18px; }
.whatsapp-checkout {
  width: 100%;
  border: 0;
  background: var(--text);
  color: var(--bg);
  padding: 16px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 40px;
  cursor: pointer;
  transition: all 0.35s ease;
}
.whatsapp-checkout:hover { background: var(--accent); }
.bag-footer small {
  display: block;
  text-align: center;
  font-size: 11px;
  color: #bbb;
  margin-top: 16px;
}

/* ── About Page ── */
.about-page { max-width: 1200px; margin: auto; padding: 80px 5% 120px; }
.about-hero {
  min-height: 480px;
  border-radius: 16px;
  overflow: hidden;
  background: #EFE8DE;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-hero img { width:100%; height:100%; object-fit:cover; }

/* ── Admin Page ── */
.admin-page {
  min-height: 100vh;
  background: var(--bg);
  display: grid;
  place-items: center;
  padding: 24px;
}
.admin-shell {
  width: min(860px,100%);
  background: var(--surface);
  border-radius: 20px;
  box-shadow: 0 16px 60px var(--shadow-md);
  padding: 56px;
}
.admin-shell > .wordmark { display: block; margin-bottom: 40px; }
.admin-login { max-width: 400px; }
.admin-login h1, .admin-heading h1 {
  font: 400 48px "Playfair Display", serif;
  margin: 0 0 16px;
}
.admin-login > p:not(.kicker) { font-size: 14px; color: var(--muted); }
.login-form label {
  display: block;
  font-size: 11px; font-weight: 600;
  margin: 16px 0 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.login-form input,
.product-form input,
.product-form select {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  background: var(--bg);
  transition: border-color 0.3s;
}
.login-form input:focus,
.product-form input:focus,
.product-form select:focus { outline: none; border-color: var(--accent); }
.login-form button {
  width: 100%;
  margin-top: 24px;
  background: var(--text);
  color: var(--surface);
  border: 0;
  padding: 14px;
  border-radius: 40px;
  cursor: pointer;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: background 0.3s;
}
.login-form button:hover { background: var(--accent); }
.login-error { color: var(--accent); font-size: 12px; margin-top: 8px; }
.hidden { display: none; }

.admin-heading { display: flex; justify-content: space-between; align-items: center; margin-bottom: 40px; }
.admin-logout {
  background: transparent;
  border: 1.5px solid var(--text);
  padding: 8px 20px;
  border-radius: 40px;
  cursor: pointer;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s;
}
.admin-logout:hover { background: var(--text); color: var(--surface); }

.product-form {
  display: grid;
  grid-template-columns: 2fr 1fr 2fr 1fr 1fr auto;
  gap: 10px;
  background: var(--bg);
  padding: 16px;
  border-radius: 12px;
  margin-bottom: 32px;
}
.product-form button {
  background: var(--text);
  color: var(--surface);
  border: 0;
  padding: 0 18px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  transition: background 0.3s;
}
.product-form button:hover { background: var(--accent); }
.admin-row {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 24px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
  align-items: center;
}
.admin-row b span { color: var(--muted); font-weight: 400; }
.admin-row button {
  background: transparent;
  border: 0;
  color: var(--accent);
  cursor: pointer;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}


/* ══════════════════════════════════════════
   MOBILE  (≤ 768px)
══════════════════════════════════════════ */
@media (max-width: 768px) {

  /* ── Header ── */
  .site-header {
    height: 64px;
    padding: 0 18px;
  }
  .wordmark {
    flex: 1; /* Push header-actions to the right */
  }
  .wordmark img { width: 110px; }

  /* Show hamburger on mobile */
  .nav-toggle { display: flex; }

  /* Completely remove nav from header flex flow */
  .site-header nav {
    display: none;     /* hidden by default on mobile */
    position: fixed;
    flex: none;
    top: 64px; left: 0; right: 0;
    background: rgba(255,248,251,0.99);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 8px 0 24px;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 20px 40px var(--shadow-sm);
    z-index: 49;
    transform: translateY(-120%);
    transition: transform 0.4s cubic-bezier(0.19,1,0.22,1);
  }
  .site-header nav.open {
    display: flex;     /* show when toggled */
    transform: translateY(0);
  }
  .site-header nav a {
    padding: 16px 24px;
    font-size: 14px;
    border-bottom: 1px solid var(--border);
    letter-spacing: 1px;
    width: 100%;
    display: block;
  }
  .site-header nav a::after { display: none; }
  .site-header nav a:last-child { border-bottom: none; }

  /* Bag button compact */
  .bag-button {
    padding: 7px 14px;
    font-size: 11px;
  }

  /* ── Shipping bar ── */
  .shipping-bar {
    font-size: 10px;
    letter-spacing: 1px;
    height: 36px;
    gap: 8px;
    padding: 0 12px;
    text-align: center;
  }

  /* ── Hero ── */
  .home-hero { padding: 16px 18px; }
  .hero-box { border-radius: 18px; }

  /* ── Typography section ── */
  .home-typography {
    padding: 56px 24px 48px;
  }
  .home-typography h1 {
    font-size: 40px;
    letter-spacing: -0.5px;
  }
  .home-typography > p {
    font-size: 15px;
    margin: 20px 0 32px;
  }
  .primary-link {
    padding: 13px 32px;
    font-size: 11px;
  }

  /* ── Category links ── */
  .home-links {
    padding: 0 18px 72px;
    gap: 12px;
  }
  .category-link {
    padding: 20px 22px;
    grid-template-columns: 44px 1fr auto;
    border-radius: 14px;
  }
  .cat-content h3 { font-size: 22px; }
  .cat-content p  { font-size: 12px; }
  .cat-num        { font-size: 12px; }
  .cat-arrow      { font-size: 18px; }

  /* ── Shop page ── */
  .shop-page { padding: 52px 18px 80px; }
  .page-heading h1 { font-size: 40px; }
  .page-heading > p { font-size: 14px; margin: 14px 0 0; }
  .shop-toolbar {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    margin-top: 36px;
  }
  .filters { flex-wrap: wrap; gap: 8px; }
  .filter { padding: 9px 18px; font-size: 11px; }

  /* Product grid: 2 columns */
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px 10px;
    margin-top: 28px;
  }
  .product-art {
    height: 220px;
    border-radius: 10px;
  }
  .product-meta { padding: 12px 2px; gap: 8px; }
  .product-meta h3 { font-size: 14px; }
  .product-meta p  { font-size: 12px; }
  .add-button { width: 34px; height: 34px; font-size: 18px; }

  /* ── Footer ── */
  footer {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 52px 24px 48px;
  }
  .footer-logo { width: 110px; }
  .footer-tagline { font-size: 14px; }

  /* ── Bag drawer ── */
  .bag-drawer { padding: 28px 22px; width: 100vw; }
  .bag-item   { grid-template-columns: 60px 1fr auto; gap: 12px; }
  .bag-item-swatch { width: 60px; height: 72px; }

  /* ── Admin ── */
  .admin-shell    { padding: 28px 20px; }
  .product-form   { grid-template-columns: 1fr; }
  .admin-login h1 { font-size: 36px; }

  /* ── About ── */
  .about-page { padding: 52px 18px 80px; }
  .about-hero { min-height: 280px; border-radius: 14px; }

  /* ── Typography Stacking ── */
  .home-typography {
    flex-direction: column;
    text-align: center;
    gap: 30px;
    padding: 80px 5%;
  }
  .typo-left, .typo-right {
    align-items: center;
    max-width: 100%;
  }
  .home-typography h1 {
    font-size: 44px;
  }
  
  /* ── Category Cards Mobile ── */
  .home-links {
    grid-template-columns: 1fr;
    gap: 16px;
    padding-bottom: 80px;
  }
  .category-link {
    min-height: 200px;
    padding: 32px 28px;
  }
}

/* Extra small screens */
@media (max-width: 380px) {
  .product-grid { gap: 12px 8px; }
  .product-art  { height: 190px; }
  .home-typography h1 { font-size: 34px; }
  .cat-content h3 { font-size: 20px; }
}

