/* =========================================================
   milaessentials — design tokens
   Palette: deep kitchen green, spice-jar ochre, brick accent
   Type: Fraunces (display) + Work Sans (body/utility)
   ========================================================= */
:root {
  --green-900: #1F3128;
  --green-700: #2F4739;
  --green-600: #3C5A47;
  --sage-300:  #A8B79A;
  --sage-100:  #E4E9DD;
  --ochre-500: #D8A13B;
  --ochre-400: #E4B75E;
  --brick-600: #B5502F;
  --shell-050: #F6F2EA;
  --shell-100: #EFE8D9;
  --ink-900:   #22201C;
  --ink-600:   #55524A;
  --ink-300:   #948F82;
  --white:     #FFFFFF;

  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Work Sans', -apple-system, Helvetica, Arial, sans-serif;

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --shadow-card: 0 2px 14px rgba(34, 32, 28, 0.08);
  --shadow-lift: 0 12px 32px rgba(31, 49, 40, 0.16);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink-900);
  background: var(--shell-050);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.1;
  margin: 0 0 0.4em;
  color: var(--green-900);
}
p { margin: 0 0 1em; }
ul { margin: 0; padding: 0; list-style: none; }
button { font-family: inherit; cursor: pointer; }
input, select, textarea { font-family: inherit; font-size: 1rem; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brick-600);
  font-weight: 600;
  margin-bottom: 10px;
}
.eyebrow::before {
  content: "";
  width: 18px;
  height: 2px;
  background: var(--brick-600);
  display: inline-block;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid transparent;
  transition: all 0.18s ease;
  white-space: nowrap;
}
.btn-primary { background: var(--green-700); color: var(--white); }
.btn-primary:hover { background: var(--green-900); transform: translateY(-1px); }
.btn-accent { background: var(--ochre-500); color: var(--green-900); }
.btn-accent:hover { background: var(--ochre-400); transform: translateY(-1px); }
.btn-outline { background: transparent; border-color: var(--white); color: var(--white); }
.btn-outline:hover { background: rgba(255,255,255,0.12); }
.btn-outline-dark { background: transparent; border-color: var(--green-700); color: var(--green-700); }
.btn-outline-dark:hover { background: var(--green-700); color: var(--white); }
.btn-block { width: 100%; }
.btn-sm { padding: 9px 18px; font-size: 0.85rem; }
.btn:disabled { opacity: 0.5; cursor: not-allowed; }

/* ---------- Top utility bar ---------- */
.topbar {
  background: var(--green-900);
  color: var(--sage-100);
  font-size: 0.82rem;
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 8px;
  padding-bottom: 8px;
  gap: 16px;
  flex-wrap: wrap;
}
.topbar a { color: var(--sage-100); }
.topbar a:hover { color: var(--ochre-400); }
.topbar-zones span { margin-right: 16px; }
.topbar-zones strong { color: var(--ochre-400); }

/* ---------- Header ---------- */
.site-header {
  background: var(--shell-050);
  border-bottom: 1px solid var(--shell-100);
  position: sticky;
  top: 0;
  z-index: 50;
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  padding-bottom: 16px;
  gap: 24px;
}

.logo {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--green-900);
  letter-spacing: -0.01em;
}
.logo span { color: var(--brick-600); }
.main-nav { display: flex; gap: 28px; align-items: center; }
.main-nav a {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--ink-600);
  position: relative;
  padding: 4px 0;
}


/* ---------- Footer Logo Adjustments ---------- */
.footer-about img {
  height: 75px;   /* Sets a clean, standard height for the footer */
  width: auto;    /* Retains the correct image proportions */
  display: block; /* Eradicates inline element bottom spacing quirks */
  margin-bottom: 16px; /* Adds clean breathing room above your paragraph text */
}



.main-nav a:hover, .main-nav a.active { color: var(--green-900); }
.main-nav a.active::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -4px;
  height: 2px;
  background: var(--ochre-500);
}
.header-actions { display: flex; align-items: center; gap: 18px; }
.header-search {
  display: flex;
  align-items: center;
  background: var(--white);
  border: 1px solid var(--shell-100);
  border-radius: 999px;
  padding: 8px 16px;
  gap: 8px;
  min-width: 220px;
}
.header-search input {
  border: none;
  outline: none;
  background: transparent;
  width: 100%;
  font-size: 0.9rem;
}
.cart-link {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  background: var(--green-700);
  color: var(--white);
  padding: 10px 18px;
  border-radius: 999px;
}
.cart-link:hover { background: var(--green-900); }
.cart-count {
  background: var(--ochre-500);
  color: var(--green-900);
  border-radius: 999px;
  font-size: 0.72rem;
  min-width: 20px;
  height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 5px;
  font-weight: 700;
}
.mobile-toggle { display: none; background: none; border: none; }
.mobile-menu { display: none; }

/* ---------- Hero slider ---------- */
.hero-slider {
  position: relative;
  overflow: hidden;
  background: var(--green-900);
}
.hero-slide {
  display: none;
  position: relative;
  min-height: 480px;
  align-items: center;
  background-size: cover;
  background-position: center;
}
.hero-slide.is-active { display: flex; }
.hero-slide::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(31,49,40,0.92) 30%, rgba(31,49,40,0.55) 75%);
}
.hero-slide .container { position: relative; z-index: 2; }
.hero-content { max-width: 560px; color: var(--white); }
.hero-content .eyebrow { color: var(--ochre-400); }
.hero-content .eyebrow::before { background: var(--ochre-400); }
.hero-content h1 {
  color: var(--white);
  font-size: clamp(2.1rem, 4vw, 3.2rem);
  margin-bottom: 0.3em;
}
.hero-content p { color: var(--sage-100); font-size: 1.08rem; max-width: 460px; }
.hero-actions { display: flex; gap: 14px; margin-top: 22px; flex-wrap: wrap; }
.hero-dots {
  position: absolute;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 3;
}
.hero-dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  border: none;
  cursor: pointer;
  transition: all 0.2s;
}
.hero-dot.is-active { background: var(--ochre-500); width: 26px; border-radius: 6px; }
.hero-arrow {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  z-index: 3;
  background: rgba(255,255,255,0.14);
  border: none;
  color: var(--white);
  width: 44px; height: 44px;
  border-radius: 50%;
  font-size: 1.2rem;
  display: flex; align-items: center; justify-content: center;
}
.hero-arrow:hover { background: rgba(255,255,255,0.28); }
.hero-arrow.prev { left: 20px; }
.hero-arrow.next { right: 20px; }

/* ---------- Delivery strip (signature element) ---------- */
.zone-strip {
  background: var(--sage-100);
  border-bottom: 1px dashed var(--sage-300);
}
.zone-strip .container {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 14px 24px;
  flex-wrap: nowrap;
  overflow-x: auto;
  white-space: nowrap;
  font-size: 0.88rem;
  color: var(--green-900);
  font-weight: 600;
  scrollbar-width: none; /* Firefox */
}
.zone-strip .container::-webkit-scrollbar { display: none; } /* Chrome/Safari */
.zone-strip .zone-item { display: inline-flex; align-items: center; gap: 8px; flex-shrink: 0; }
.zone-item .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--brick-600); flex-shrink: 0; }


/* ---------- Section headings ---------- */
.section { padding: 64px 0; }
.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 32px;
  flex-wrap: wrap;
  gap: 12px;
}
.section-head h2 { font-size: 2rem; margin: 0; }
.section-head p { color: var(--ink-600); margin: 6px 0 0; max-width: 480px; }

/* ---------- Category "jar" cards (signature element) ---------- */
.category-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
}
.category-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 20px 14px 18px;
  text-align: center;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--shell-100);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  position: relative;
}
.category-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); }
.category-jar {
  width: 68px; height: 68px;
  margin: 0 auto 12px;
  border-radius: 16px 16px 20px 20px;
  background: var(--sage-100);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  border: 2px solid var(--sage-300);
}
.category-jar img { width: 100%; height: 100%; object-fit: cover; }
.category-card span { font-weight: 600; font-size: 0.86rem; color: var(--green-900); }

/* ---------- Product grid & cards ---------- */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.product-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--shell-100);
  box-shadow: var(--shadow-card);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  display: flex;
  flex-direction: column;
}
.product-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lift); }
.product-thumb {
  position: relative;
  aspect-ratio: 1 / 1;
  background: var(--shell-100);
  overflow: hidden;
}
.product-thumb img { width: 100%; height: 100%; object-fit: cover; }
.badge {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--brick-600);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
  letter-spacing: 0.02em;
}
.badge-out {
  position: absolute; inset: 0;
  background: rgba(34,32,28,0.55);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
}
.product-info { padding: 16px 16px 18px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.product-cat { font-size: 0.74rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--sage-300); font-weight: 700; }
.product-info h3 { font-size: 1.02rem; margin: 0; font-family: var(--font-body); font-weight: 700; color: var(--ink-900); }
.product-info h3 a:hover { color: var(--green-700); }
.price-row { display: flex; align-items: baseline; gap: 8px; margin-top: auto; }
.price { font-weight: 700; color: var(--green-900); font-size: 1.05rem; }
.price-old { text-decoration: line-through; color: var(--ink-300); font-size: 0.85rem; }
.add-form { margin-top: 6px; }

/* ---------- Trust strip ---------- */
.trust-strip { background: var(--green-700); color: var(--white); }
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: 40px 0;
}
.trust-item { display: flex; gap: 14px; align-items: flex-start; }
.trust-item .icon {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,0.14);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 1.2rem;
}
.trust-item h4 { color: var(--white); font-size: 0.98rem; margin-bottom: 3px; }
.trust-item p { color: var(--sage-100); font-size: 0.85rem; margin: 0; }

/* ---------- Footer ---------- */
.site-footer { background: var(--green-900); color: var(--sage-100); padding-top: 56px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 32px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.site-footer h4 { color: var(--white); font-size: 0.95rem; margin-bottom: 16px; }
.site-footer .logo { color: var(--white); }
.site-footer .logo span { color: var(--ochre-400); }
.footer-about p { font-size: 0.88rem; color: var(--sage-100); max-width: 280px; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { font-size: 0.88rem; color: var(--sage-100); }
.footer-links a:hover { color: var(--ochre-400); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding: 18px 0;
  font-size: 0.8rem;
  color: var(--sage-300);
  flex-wrap: wrap;
  gap: 8px;
}
.social-row { display: flex; gap: 10px; margin-top: 6px; }
.social-row a {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
}
.social-row a:hover { background: var(--ochre-500); color: var(--green-900); }

/* ---------- Breadcrumb ---------- */
.breadcrumb { font-size: 0.85rem; color: var(--ink-600); padding: 18px 0; }
.breadcrumb a:hover { color: var(--green-700); }
.breadcrumb .sep { margin: 0 6px; color: var(--ink-300); }

/* ---------- Page header banner ---------- */
.page-banner {
  background: var(--sage-100);
  padding: 36px 0;
  border-bottom: 1px dashed var(--sage-300);
}
.page-banner h1 { margin: 0; font-size: 2rem; }

/* ---------- Shop layout ---------- */
.shop-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 32px;
  align-items: start;
}
.filter-box {
  background: var(--white);
  border: 1px solid var(--shell-100);
  border-radius: var(--radius-md);
  padding: 20px;
  position: sticky;
  top: 100px;
}
.filter-box h4 { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 14px; }
.filter-list li { margin-bottom: 10px; }
.filter-list a { display: flex; justify-content: space-between; font-size: 0.92rem; color: var(--ink-600); }
.filter-list a:hover, .filter-list a.active { color: var(--green-700); font-weight: 700; }
.filter-list .count { color: var(--ink-300); font-size: 0.8rem; }
.shop-toolbar {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 20px; flex-wrap: wrap; gap: 12px;
}
.shop-toolbar select {
  border: 1px solid var(--shell-100);
  border-radius: 8px;
  padding: 9px 12px;
  background: var(--white);
}
.empty-state { text-align: center; padding: 60px 20px; color: var(--ink-600); }

/* ---------- Product detail ---------- */
.product-detail { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; padding: 40px 0 64px; }
.product-gallery img#pdp-main-image {
  width: 100%;
  border-radius: var(--radius-lg);
  border: 1px solid var(--shell-100);
  aspect-ratio: 1/1;
  object-fit: cover;
}
.product-thumbs {
  display: flex;
  gap: 10px;
  margin-top: 12px;
  flex-wrap: wrap;
}
.product-thumb-btn {
  width: 68px; height: 68px;
  border-radius: 10px;
  overflow: hidden;
  padding: 0;
  border: 2px solid var(--shell-100);
  background: var(--white);
  cursor: pointer;
  flex-shrink: 0;
  transition: border-color 0.15s ease;
}
.product-thumb-btn img { width: 100%; height: 100%; object-fit: cover; }
.product-thumb-btn:hover { border-color: var(--sage-300); }
.product-thumb-btn.is-active { border-color: var(--ochre-500); }
.product-main .product-cat { margin-bottom: 8px; }
.product-main h1 { font-size: 2rem; margin-bottom: 12px; }
.product-price-row { display: flex; align-items: baseline; gap: 12px; margin-bottom: 18px; }
.product-price-row .price { font-size: 1.7rem; }
.stock-pill {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.82rem; font-weight: 600; color: var(--green-700);
  margin-bottom: 22px;
}
.stock-pill .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green-700); }
.stock-pill.low { color: var(--brick-600); }
.stock-pill.low .dot { background: var(--brick-600); }
.qty-selector {
  display: inline-flex; align-items: center;
  border: 1px solid var(--shell-100);
  border-radius: 999px;
  overflow: hidden;
}
.qty-selector button {
  background: var(--shell-100); border: none;
  width: 40px; height: 42px; font-size: 1.1rem; font-weight: 700; color: var(--green-900);
}
.qty-selector input {
  width: 50px; text-align: center; border: none; outline: none; font-weight: 700;
}
.pdp-actions { display: flex; align-items: center; gap: 14px; margin: 22px 0; flex-wrap: wrap; }
.pdp-desc { border-top: 1px solid var(--shell-100); margin-top: 26px; padding-top: 22px; color: var(--ink-600); }

/* ---------- Cart page ---------- */
.cart-table { width: 100%; border-collapse: collapse; }
.cart-table th { text-align: left; font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--ink-300); padding-bottom: 12px; border-bottom: 1px solid var(--shell-100); }
.cart-table td { padding: 18px 0; border-bottom: 1px solid var(--shell-100); vertical-align: middle; }
.cart-product { display: flex; gap: 14px; align-items: center; }
.cart-product img { width: 72px; height: 72px; object-fit: cover; border-radius: var(--radius-sm); border: 1px solid var(--shell-100); }
.cart-product h4 { margin: 0; font-size: 0.96rem; }
.cart-remove { color: var(--brick-600); font-size: 0.82rem; font-weight: 600; margin-top: 4px; display: inline-block; }
.cart-summary {
  background: var(--white);
  border: 1px solid var(--shell-100);
  border-radius: var(--radius-md);
  padding: 24px;
  position: sticky;
  top: 100px;
}
.summary-row { display: flex; justify-content: space-between; margin-bottom: 12px; font-size: 0.95rem; color: var(--ink-600); }
.summary-row.total { font-weight: 700; color: var(--green-900); font-size: 1.15rem; border-top: 1px solid var(--shell-100); padding-top: 14px; margin-top: 14px; }
.cart-layout { display: grid; grid-template-columns: 1fr 340px; gap: 32px; align-items: start; }

/* ---------- Checkout ---------- */
.checkout-layout { display: grid; grid-template-columns: 1.3fr 1fr; gap: 40px; align-items: start; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 600; margin-bottom: 6px; color: var(--ink-900); }
.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  border: 1px solid var(--shell-100);
  border-radius: 8px;
  padding: 12px 14px;
  background: var(--white);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: 2px solid var(--ochre-500);
  outline-offset: 1px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.order-review { background: var(--white); border: 1px solid var(--shell-100); border-radius: var(--radius-md); padding: 24px; }
.review-line { display: flex; justify-content: space-between; gap: 10px; font-size: 0.88rem; padding: 8px 0; border-bottom: 1px solid var(--shell-050); }

/* ---------- Alerts / flash ---------- */
.alert { padding: 14px 18px; border-radius: var(--radius-sm); margin-bottom: 20px; font-size: 0.92rem; font-weight: 600; }
.alert-success { background: #E4F0E6; color: var(--green-900); border: 1px solid #BFDCC4; }
.alert-error { background: #FBE7E1; color: var(--brick-600); border: 1px solid #F3C6B7; }

/* ---------- Misc ---------- */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    overflow: visible;
  }
  .category-grid { grid-template-columns: repeat(3, 1fr); }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .shop-layout { grid-template-columns: 1fr; }
  .filter-box { position: static; }
  .product-detail { grid-template-columns: 1fr; }
  .cart-layout, .checkout-layout { grid-template-columns: 1fr; }
  .main-nav, .header-search { display: none; }
  .mobile-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    color: var(--green-900);
    z-index: 1001;
  }
  .mobile-menu {
    display: none;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--white);
    border-top: 1px solid var(--shell-100);
    box-shadow: 0 18px 34px rgba(0,0,0,0.12);
    padding: 16px 24px 18px;
    gap: 10px;
    z-index: 1000;
  }
  .mobile-menu.open { display: flex; }
  .mobile-menu a {
    padding: 14px 0;
    border-bottom: 1px solid var(--shell-050);
    font-size: 1rem;
    font-weight: 600;
    color: var(--ink-900);
  }
  .mobile-menu a:last-child { border-bottom: none; }
  .mobile-menu a.active { color: var(--green-700); }
}
@media (max-width: 600px) {
  .category-grid { grid-template-columns: repeat(2, 1fr); }
  .product-grid { grid-template-columns: 1fr 1fr; }
  .trust-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero-content { max-width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}


@media (max-width: 700px) {
  .cart-table thead { display: none; }
  .cart-table, .cart-table tbody, .cart-table tr, .cart-table td {
    display: block;
    width: 100%;
  }
  .cart-table tr {
    border: 1px solid var(--shell-100);
    border-radius: var(--radius-md);
    margin-bottom: 16px;
    padding: 14px;
  }
  .cart-table td {
    border-bottom: none;
    padding: 6px 0;
  }
  .cart-product { align-items: flex-start; }
  .cart-product img { width: 60px; height: 60px; flex-shrink: 0; }
  .cart-product > div { min-width: 0; }
  .cart-product h4 { white-space: normal; overflow-wrap: break-word; }

  .cart-table td:nth-of-type(2)::before { content: "Price: "; font-weight: 600; color: var(--ink-300); font-size: 0.78rem; }
  .cart-table td:nth-of-type(3)::before { content: "Qty: "; font-weight: 600; color: var(--ink-300); font-size: 0.78rem; }
  .cart-table td:nth-of-type(4)::before { content: "Subtotal: "; font-weight: 600; color: var(--ink-300); font-size: 0.78rem; }
  .cart-table td:nth-of-type(5) { text-align: left; padding-top: 10px; }
}


.hero-dots {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 3;
  padding: 6px 10px;
  background: rgba(31, 49, 40, 0.35);
  border-radius: 999px;
}

@media (max-width: 600px) {
  .hero-slide { padding-bottom: 48px; }
}


@media (max-width: 600px) {
  .header-actions { gap: 10px; }
  .cart-link {
    padding: 8px 12px;
    font-size: 0.85rem;
    gap: 6px;
    white-space: nowrap;
    flex-shrink: 0;
  }
  .logo { font-size: 1.3rem; }
}

.logo img {
  height: 40px;
  width: auto;
  display: block;
  object-fit: contain;
}

.site-header .logo img { height: 40px; }
.site-footer .logo img { height: 34px; }
.admin-sidebar .logo img { height: 30px; }
.login-card .logo img { height: 44px; margin: 0 auto; }

@media (max-width: 600px) {
  .site-header .logo img { height: 32px; }
}