:root {
  --bg: #faf6f1;
  --panel: #ffffff;
  --ink: #20180f;
  --muted: #7a7268;
  --line: #ece3d7;
  --brand: #e8631a;
  --brand-2: #c44f10;
  --accent: #1f5fd0;
  --accent-2: #1746a6;
  --danger: #c1342b;
  --soft: #eaf1fc;
  --wa: #1faf5b;
  --ring: rgba(31, 95, 208, .35);
  color-scheme: light;
}

* { box-sizing: border-box; }
html, body { min-height: 100%; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
img { display: block; max-width: 100%; }

.app-shell { min-height: 100vh; display: flex; flex-direction: column; }
.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(250, 246, 241, .92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(236, 227, 215, .82);
  box-shadow: 0 8px 26px rgba(32, 24, 15, .06);
}
.topbar-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.brand { display: flex; align-items: center; gap: 11px; min-width: 0; }
.brand { transition: transform .15s ease; }
.brand:hover { transform: translateY(-1px); }
.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--brand), var(--accent));
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 800;
  box-shadow: 0 8px 18px rgba(232, 99, 26, .24), inset 0 1px 0 rgba(255,255,255,.34);
}
.brand-title { font-size: 17px; font-weight: 800; line-height: 1.1; }
.brand-1 { color: var(--brand); }
.brand-2-name { color: var(--accent); }
.brand-sub { font-size: 12px; color: var(--muted); margin-top: 2px; }
.nav { display: flex; gap: 7px; align-items: center; }
.nav button {
  border: 1px solid transparent;
  background: rgba(255,255,255,.34);
  color: var(--muted);
  border-radius: 10px;
  padding: 9px 11px;
  font-size: 13px;
  font-weight: 700;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.38);
}
.nav button.active { background: var(--brand); color: #fff; box-shadow: 0 8px 18px rgba(232, 99, 26, .22); }
.nav .cart-pill { display: inline-block; background: var(--accent); color: #fff; border-radius: 999px; padding: 2px 7px; margin-left: 5px; font-size: 11px; box-shadow: 0 3px 8px rgba(31, 95, 208, .26); }
.nav .cart-pill.bump { animation: count-pop .5s ease; }

.main { flex: 1; width: 100%; max-width: 1180px; margin: 0 auto; padding: 18px; }
.section-head { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; margin-bottom: 14px; }
.eyebrow { color: var(--brand); font-size: 12px; letter-spacing: .08em; text-transform: uppercase; font-weight: 800; }
h1, h2, h3, p { margin: 0; }
h1 { font-size: clamp(28px, 5vw, 56px); line-height: .98; letter-spacing: 0; max-width: 820px; }
h2 { font-size: clamp(20px, 2.5vw, 30px); line-height: 1.1; }
.lede { color: #4e554d; line-height: 1.6; font-size: 15px; max-width: 680px; }
.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, .95fr);
  gap: 28px;
  align-items: center;
  padding: 28px 0 18px;
}
.hero-actions { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 22px; }
.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}
.hero-proof span {
  border: 1px solid var(--line);
  background: rgba(255,255,255,.62);
  border-radius: 999px;
  padding: 7px 10px;
}
.btn {
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  border-radius: 10px;
  min-height: 44px;
  padding: 0 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 800;
  text-decoration: none;
}
.btn.primary { background: var(--brand); border-color: var(--brand); color: #fff; }
.btn.whatsapp { background: var(--wa); border-color: var(--wa); color: #fff; width: 100%; }
.btn.danger { color: var(--danger); border-color: #e6c8c4; }
.hero-media {
  min-height: 380px;
  border-radius: 8px;
  overflow: hidden;
  background: #e5e7df;
  display: grid;
  grid-template-columns: 1.15fr .72fr .58fr;
  grid-template-rows: 1fr 1fr;
  gap: 3px;
  box-shadow: 0 18px 44px rgba(32, 24, 15, .13);
}
.hero-pane {
  position: relative;
  min-width: 0;
  min-height: 0;
  border: 0;
  background: #e5e7df;
  color: #fff;
  padding: 0;
  overflow: hidden;
  text-align: left;
}
.hero-pane.main { grid-row: span 2; }
.hero-pane.tall { grid-row: span 2; }
.hero-pane.small-a { grid-column: 3; grid-row: 1; }
.hero-pane.small-b { grid-column: 3; grid-row: 2; }
.hero-pane img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: hero-pane-in .72s ease both;
  transition: transform .7s ease;
}
.hero-pane:hover img { transform: scale(1.045); }
.hero-pane::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 42%, rgba(0,0,0,.48));
  pointer-events: none;
}
.hero-pane-label {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 1;
  display: grid;
  gap: 2px;
  text-shadow: 0 1px 10px rgba(0,0,0,.44);
}
.hero-pane-label span { font-size: 11px; font-weight: 800; text-transform: uppercase; opacity: .88; }
.hero-pane-label strong { font-size: 13px; line-height: 1.2; }
.hero-pane.main .hero-pane-label strong { font-size: 17px; }
@keyframes hero-pane-in {
  from { opacity: .02; transform: scale(1.012); }
  to { opacity: 1; transform: scale(1); }
}
.service-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 8px 0 24px;
}
.service-strip button,
.service-strip a {
  min-width: 0;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  border-radius: 8px;
  padding: 14px 15px;
  text-align: left;
  text-decoration: none;
  display: grid;
  gap: 4px;
  box-shadow: 0 10px 24px rgba(32, 24, 15, .06);
}
.service-strip span {
  color: var(--brand);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}
.service-strip strong {
  font-size: 14px;
  line-height: 1.25;
}
.service-strip button:nth-child(2),
.service-strip a:nth-child(2) {
  border-color: #cde7d6;
  background: #f4fbf6;
}
.service-strip button:nth-child(3),
.service-strip a:nth-child(3) {
  border-color: #c9dcf7;
  background: #f5f8fd;
}

.toolbar {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) auto auto;
  gap: 12px;
  align-items: center;
  margin: 12px 0 18px;
}
.search, .select {
  width: 100%;
  min-height: 44px;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 10px;
  padding: 0 13px;
}
.chips { display: flex; gap: 8px; overflow-x: auto; padding-bottom: 3px; }
.chip {
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  border-radius: 999px;
  padding: 9px 13px;
  font-size: 13px;
  font-weight: 750;
  white-space: nowrap;
}
.chip.active { background: var(--brand); border-color: var(--brand); color: #fff; }

.content-grid { display: grid; grid-template-columns: 240px minmax(0, 1fr); gap: 18px; align-items: start; }
.collection-panel {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px;
}
.collection-panel h2 { font-size: 15px; margin-bottom: 12px; }
.collection-list { display: flex; flex-direction: column; gap: 6px; }
.collection-chip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  width: 100%;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  border-radius: 10px;
  padding: 10px 12px;
  font-size: 13px;
  font-weight: 750;
  text-align: left;
}
.collection-chip > span:last-child { color: var(--muted); font-weight: 800; font-variant-numeric: tabular-nums; }
.collection-chip.is-active { background: var(--brand); border-color: var(--brand); color: #fff; }
.collection-chip.is-active > span:last-child { color: #fff; }

.grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; }
.product-card {
  position: relative;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.product-card .card-open { border: 0; background: transparent; padding: 0; text-align: left; color: inherit; width: 100%; display: block; }
.product-card.is-sold-out .card-open { opacity: .55; }
.badge.sold { background: #6b6f68; }
.quick-add {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 0;
  background: var(--brand);
  color: #fff;
  font-size: 20px;
  font-weight: 800;
  line-height: 1;
  display: grid;
  place-items: center;
  box-shadow: 0 4px 12px rgba(232, 99, 26, .35);
  transition: transform .14s ease, background-color .18s ease;
}
.quick-add:hover { background: var(--brand-2); transform: scale(1.08); }
.quick-add.is-open { background: var(--ink); }
.quick-pop {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  background: #fff;
  border-top: 1px solid var(--line);
  padding: 10px 12px 12px;
  box-shadow: 0 -8px 20px rgba(0, 0, 0, .08);
  animation: pop-up .18s ease;
}
@keyframes pop-up { from { transform: translateY(8px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
.quick-pop-title { font-size: 11px; font-weight: 800; color: var(--muted); text-transform: uppercase; letter-spacing: .05em; margin-bottom: 8px; }
.quick-pop-sizes { display: flex; flex-wrap: wrap; gap: 6px; max-height: 96px; overflow: auto; }
.quick-pop-sizes .chip { padding: 6px 10px; font-size: 12px; }

.filter-group { margin-top: 16px; border-top: 1px solid var(--line); padding-top: 14px; }
.filter-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 10px; margin-bottom: 12px; }
.filter-head h3 { font-size: 18px; margin-top: 2px; }
.filter-clear { border: 0; background: transparent; color: var(--brand); font-weight: 800; font-size: 12px; }
.filter-block { margin-bottom: 14px; }
.filter-label { display: block; font-size: 12px; font-weight: 800; color: var(--muted); text-transform: uppercase; letter-spacing: .05em; margin-bottom: 8px; }
.filter-chips { display: flex; flex-wrap: wrap; gap: 6px; }
.filter-chips .chip { padding: 7px 10px; font-size: 12px; }
.filter-swatches { display: flex; flex-wrap: wrap; gap: 8px; }
.swatch { width: 30px; height: 30px; border-radius: 999px; border: 1px solid var(--line); background: #fff; padding: 3px; cursor: pointer; transition: transform .14s ease, box-shadow .18s ease; }
.swatch span { display: block; width: 100%; height: 100%; border-radius: 999px; }
.swatch:hover { transform: scale(1.08); }
.swatch.active { border-color: var(--brand); box-shadow: 0 0 0 2px var(--brand); }

.skeleton-hero { height: 220px; border-radius: 12px; margin: 24px 0; }
.skeleton-card { aspect-ratio: 3 / 4.4; border-radius: 8px; }
.skeleton-hero, .skeleton-card { background: linear-gradient(100deg, #ece6dd 30%, #f6f1ea 50%, #ece6dd 70%); background-size: 200% 100%; animation: shimmer 1.3s linear infinite; }
@keyframes shimmer { from { background-position: 200% 0; } to { background-position: -200% 0; } }
.store-info { margin-top: 28px; border-top: 1px solid var(--line); padding-top: 20px; display: flex; flex-wrap: wrap; gap: 16px; justify-content: space-between; align-items: center; }
.store-contact { display: flex; gap: 10px; flex-wrap: wrap; }
.product-image { aspect-ratio: 4 / 5; background: #eceee8; overflow: hidden; position: relative; }
.product-image img { width: 100%; height: 100%; object-fit: cover; }
.badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--brand);
  color: #fff;
  border-radius: 6px;
  padding: 4px 7px;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .04em;
}
.product-body { padding: 12px; display: flex; flex-direction: column; gap: 7px; flex: 1; }
.product-title { font-size: 14px; line-height: 1.25; font-weight: 800; }
.meta { color: var(--muted); font-size: 12px; line-height: 1.35; }
.price { color: var(--brand); font-size: 16px; font-weight: 850; margin-top: auto; }

.split { display: grid; grid-template-columns: minmax(0, .9fr) minmax(340px, .7fr); gap: 24px; align-items: start; }
.gallery { display: flex; flex-direction: column; gap: 10px; }
.gallery-main { position: relative; border: 0; padding: 0; background: #eceee8; border-radius: 10px; overflow: hidden; cursor: zoom-in; display: block; width: 100%; }
.gallery-main img { width: 100%; aspect-ratio: 4/5; object-fit: cover; display: block; transition: transform .3s ease; }
.gallery-main:hover img { transform: scale(1.03); }
.zoom-hint { position: absolute; bottom: 10px; right: 10px; background: rgba(0,0,0,.55); color: #fff; width: 32px; height: 32px; border-radius: 8px; display: grid; place-items: center; font-size: 15px; }
.thumbs { display: flex; gap: 8px; flex-wrap: wrap; }
.thumb { width: 64px; height: 80px; padding: 0; border: 2px solid var(--line); border-radius: 8px; overflow: hidden; background: #eceee8; transition: border-color .15s ease; }
.thumb img { width: 100%; height: 100%; object-fit: cover; }
.thumb.is-active { border-color: var(--brand); }
.zoom-overlay { position: fixed; inset: 0; z-index: 80; background: rgba(15,12,8,.9); display: grid; place-items: center; padding: 24px; cursor: zoom-out; animation: fade-in .2s ease; }
.zoom-overlay img { max-width: 92vw; max-height: 88vh; object-fit: contain; border-radius: 10px; }
.zoom-close { position: fixed; top: 16px; right: 18px; width: 44px; height: 44px; border-radius: 999px; border: 0; background: rgba(255,255,255,.15); color: #fff; font-size: 24px; }
@keyframes fade-in { from { opacity: 0; } to { opacity: 1; } }
.size-head { display: flex; align-items: center; justify-content: space-between; }
.link-btn { border: 0; background: transparent; color: var(--accent); font-weight: 800; font-size: 13px; text-decoration: underline; }
.size-guide { background: var(--soft); border: 1px solid #c4d8f6; border-radius: 8px; padding: 12px; margin: 10px 0; }
.size-guide table { width: 100%; border-collapse: collapse; font-size: 12px; }
.size-guide th, .size-guide td { border: 1px solid #c4d8f6; padding: 5px 6px; text-align: center; }
.size-guide th { background: #dbe7fb; color: var(--accent-2); font-weight: 800; white-space: nowrap; }
.option.is-out { color: var(--muted); text-decoration: line-through; opacity: .5; cursor: not-allowed; }
.swatch-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 6px; }
.swatch-chip { display: inline-flex; align-items: center; gap: 6px; border: 1px solid var(--line); border-radius: 999px; padding: 4px 10px 4px 5px; font-size: 12px; font-weight: 700; }
.swatch-dot { width: 16px; height: 16px; border-radius: 999px; border: 1px solid rgba(0,0,0,.12); }
.panel {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
}
.sticky-panel { position: sticky; top: 82px; }
.option-grid { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 10px; }
.option {
  min-width: 48px;
  min-height: 40px;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 8px;
  padding: 0 11px;
  font-weight: 750;
}
.option.active { background: var(--brand); color: #fff; border-color: var(--brand); }
.size-select-wrap {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: stretch;
  margin-top: 10px;
}
.size-select {
  width: 100%;
  min-height: 50px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  border-radius: 10px;
  padding: 0 14px;
  font-weight: 850;
}
.selected-size {
  min-width: 108px;
  border: 1px solid #c9dcf7;
  background: #f5f8fd;
  border-radius: 10px;
  padding: 8px 12px;
  display: grid;
  align-content: center;
  gap: 1px;
}
.selected-size span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 850;
  text-transform: uppercase;
}
.selected-size strong {
  color: var(--accent-2);
  font-size: 15px;
}

.cart-layout { display: grid; grid-template-columns: minmax(0, 1fr) 340px; gap: 18px; align-items: start; }
.line-item { display: grid; grid-template-columns: 82px 1fr auto; gap: 12px; align-items: center; padding: 12px; border-bottom: 1px solid var(--line); }
.line-item:last-child { border-bottom: 0; }
.line-item img { width: 82px; height: 96px; object-fit: cover; border-radius: 8px; background: #eceee8; }
.qty { display: inline-flex; align-items: center; border: 1px solid var(--line); border-radius: 8px; overflow: hidden; }
.qty button { width: 34px; height: 34px; border: 0; background: #fff; color: var(--brand); font-weight: 900; }
.qty span { width: 34px; text-align: center; font-weight: 800; }
.form-grid { display: grid; gap: 13px; }
.field label { display: block; font-size: 13px; font-weight: 800; margin-bottom: 6px; }
.field input, .field textarea, .field select {
  width: 100%;
  min-height: 44px;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 10px;
  padding: 10px 12px;
}
.notice { background: var(--soft); border: 1px solid #c4d8f6; color: var(--accent-2); border-radius: 8px; padding: 13px; line-height: 1.5; font-size: 13px; }
.error { color: var(--danger); font-size: 12px; margin-top: 5px; }
.empty { text-align: center; padding: 60px 20px; color: var(--muted); }

.orders-table { width: 100%; border-collapse: collapse; }
.orders-table th, .orders-table td { text-align: left; padding: 12px; border-bottom: 1px solid var(--line); vertical-align: top; font-size: 13px; }
.orders-table th { color: var(--muted); font-size: 12px; text-transform: uppercase; letter-spacing: .06em; }
.status { display: inline-flex; border-radius: 999px; padding: 5px 9px; font-size: 12px; font-weight: 800; background: #eef0ec; color: #4f554d; }
.status.ready { background: #e3edfc; color: var(--accent-2); }
.status.process { background: #fbedd4; color: #8a5a00; }

.track-search { display: grid; grid-template-columns: minmax(130px, 1fr) minmax(180px, 1fr) auto; gap: 10px; }
.tracker { list-style: none; margin: 22px 0 0; padding: 0; }
.track-step { position: relative; display: grid; grid-template-columns: 24px 1fr; gap: 12px; padding-bottom: 22px; }
.track-step:last-child { padding-bottom: 0; }
.track-step::before { content: ""; position: absolute; left: 10px; top: 18px; bottom: 0; width: 2px; background: var(--line); }
.track-step:last-child::before { display: none; }
.track-dot {
  width: 14px;
  height: 14px;
  margin: 3px 0 0 4px;
  border-radius: 999px;
  border: 2px solid var(--line);
  background: #fff;
  transition: background-color .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.track-step.done .track-dot,
.track-step.active .track-dot { background: var(--brand); border-color: var(--brand); }
.track-step.done::before { background: var(--brand); }
.track-step.active .track-dot { box-shadow: 0 0 0 4px rgba(232, 99, 26, .18); }
.track-step strong { display: block; }
.track-step:not(.done):not(.active) strong { color: var(--muted); }
.track-step .meta { margin-top: 2px; }

.mobile-nav {
  display: none;
  position: sticky;
  bottom: 0;
  background: #fff;
  border-top: 1px solid var(--line);
  z-index: 25;
}
.mobile-nav button { flex: 1; min-height: 62px; border: 0; background: #fff; color: var(--muted); font-weight: 800; }
.mobile-nav button.active { color: var(--brand); }

.toast {
  position: fixed;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  background: #1a1a1a;
  color: #fff;
  border-radius: 10px;
  padding: 12px 15px;
  z-index: 50;
  box-shadow: 0 12px 30px rgba(0,0,0,.22);
  animation: toast-in .22s ease;
}
@keyframes toast-in {
  from { opacity: 0; transform: translate(-50%, 12px); }
  to { opacity: 1; transform: translate(-50%, 0); }
}

.cart-bar {
  position: fixed;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  z-index: 40;
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 320px;
  max-width: calc(100vw - 36px);
  padding: 12px 16px;
  border: 0;
  border-radius: 14px;
  background: var(--brand);
  color: #fff;
  box-shadow: 0 14px 34px rgba(232, 99, 26, .38);
  text-align: left;
  transition: transform .15s ease, box-shadow .2s ease, background-color .2s ease;
}
.cart-bar:hover { background: var(--brand-2); box-shadow: 0 18px 40px rgba(232, 99, 26, .45); }
.cart-bar:active { transform: translateX(-50%) translateY(1px); }
.cart-bar-icon { position: relative; font-size: 20px; line-height: 1; }
.cart-bar-count {
  position: absolute;
  top: -8px;
  right: -10px;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 2px var(--brand);
}
.cart-bar-text { display: flex; flex-direction: column; line-height: 1.2; margin-right: auto; }
.cart-bar-text strong { font-size: 15px; }
.cart-bar-text span { font-size: 13px; opacity: .92; }
.cart-bar-cta { font-weight: 800; font-size: 14px; white-space: nowrap; }
.cart-bar.bump { animation: cart-bump .5s ease; }
.cart-bar.bump .cart-bar-count { animation: count-pop .5s ease; }
@keyframes cart-bump {
  0% { transform: translateX(-50%) scale(1); }
  30% { transform: translateX(-50%) scale(1.06) translateY(-3px); }
  60% { transform: translateX(-50%) scale(.99); }
  100% { transform: translateX(-50%) scale(1); }
}
@keyframes cart-bump-mobile {
  0% { transform: translateY(0); }
  30% { transform: translateY(-6px); }
  100% { transform: translateY(0); }
}
@keyframes count-pop {
  0% { transform: scale(1); }
  40% { transform: scale(1.5); }
  100% { transform: scale(1); }
}
.fly-img {
  position: fixed;
  z-index: 60;
  margin: 0;
  border-radius: 12px;
  object-fit: cover;
  pointer-events: none;
  box-shadow: 0 12px 30px rgba(0, 0, 0, .25);
  transition: transform .7s cubic-bezier(.2, .7, .3, 1), opacity .7s ease;
  will-change: transform, opacity;
}

/* Interactions & micro-animations */
.btn, .chip, .collection-chip, .option, .nav button, .mobile-nav button, .qty button, .service-strip button, .service-strip a {
  transition: transform .14s ease, box-shadow .18s ease, background-color .18s ease, border-color .18s ease, color .18s ease;
}
.btn:hover { border-color: var(--brand); }
.btn.primary:hover { background: var(--brand-2); border-color: var(--brand-2); }
.btn.whatsapp:hover { filter: brightness(.96); }
.btn:active, .chip:active, .option:active, .collection-chip:active { transform: translateY(1px); }
.nav button:hover { color: var(--ink); background: var(--soft); }
.nav button.active:hover { color: #fff; background: var(--brand); }
.chip:hover { border-color: var(--brand); color: var(--brand); }
.chip.active, .chip.active:hover { color: #fff; }
.collection-chip:hover { border-color: var(--accent); }
.collection-chip.is-active:hover { color: #fff; }
.option:hover { border-color: var(--brand); }
.qty button:hover { background: var(--soft); }
.service-strip button:hover, .service-strip a:hover { transform: translateY(-2px); border-color: var(--brand); box-shadow: 0 14px 30px rgba(32, 24, 15, .1); }
.product-card { transition: transform .16s ease, box-shadow .2s ease, border-color .2s ease; }
.product-card:hover { transform: translateY(-4px); box-shadow: 0 14px 30px rgba(32, 24, 15, .12); border-color: var(--brand); }
.product-image img { transition: transform .35s ease; }
.product-card:hover .product-image img { transform: scale(1.05); }
:where(button, a, input, select, textarea):focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
  border-radius: 8px;
}
@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; animation: none !important; }
  .product-card:hover, .product-card:hover .product-image img, .hero-pane:hover img { transform: none; }
}

@media (max-width: 920px) {
  .topbar-inner { padding: 12px 14px; }
  .nav { display: none; }
  .main { padding: 14px; padding-bottom: 76px; }
  .hero { grid-template-columns: 1fr; gap: 18px; }
  .hero-media { min-height: 320px; grid-template-columns: 1.25fr .75fr; grid-template-rows: 1fr 1fr; }
  .hero-pane.main { grid-column: 1; grid-row: 1 / span 2; }
  .hero-pane.tall { grid-column: 2; grid-row: 1 / span 2; }
  .hero-pane.small-a, .hero-pane.small-b { display: none; }
  .service-strip { grid-template-columns: 1fr; margin-top: 0; }
  .grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 11px; }
  .split, .cart-layout { grid-template-columns: 1fr; }
  .content-grid { grid-template-columns: 1fr; }
  .collection-panel { padding: 12px; }
  .collection-panel h2 { display: none; }
  .collection-list { flex-direction: row; overflow-x: auto; padding-bottom: 3px; }
  .collection-chip { width: auto; white-space: nowrap; border-radius: 999px; }
  .sticky-panel { position: static; }
  .toolbar { grid-template-columns: 1fr; }
  .track-search { grid-template-columns: 1fr; }
  .line-item { grid-template-columns: 72px 1fr; }
  .line-item > .line-actions { grid-column: 2; }
  .mobile-nav { display: flex; }
  .cart-bar {
    left: 12px;
    right: 12px;
    bottom: 74px;
    transform: none;
    min-width: 0;
    max-width: none;
    border-radius: 12px;
  }
  .cart-bar:active { transform: translateY(1px); }
  .cart-bar.bump { animation-name: cart-bump-mobile; }
  .has-cart-bar .main { padding-bottom: 140px; }
}

@media (max-width: 520px) {
  .brand-sub { display: none; }
  .brand-title { font-size: 15px; }
  .hero { padding-top: 16px; }
  .hero-media { min-height: 260px; }
  .hero-pane-label { left: 10px; right: 10px; bottom: 10px; }
  .hero-pane-label strong, .hero-pane.main .hero-pane-label strong { font-size: 12px; }
  .grid { gap: 9px; }
  .product-body { padding: 10px; }
  .product-title { font-size: 13px; }
  .thumb { width: 56px; height: 70px; }
  .panel { padding: 14px; }
  .size-select-wrap { grid-template-columns: 1fr; }
  .orders-table { display: block; overflow-x: auto; white-space: nowrap; }
}
