/* =========================================================================
   Zuron — Apple-style design system
   ========================================================================= */
:root {
  /* цвет */
  --text:        #1D1D1F;
  --text-soft:   #424245;
  --muted:       #86868B;
  --bg:          #FFFFFF;
  --bg-soft:     #F5F5F7;
  --bg-soft-2:   #FBFBFD;
  --surface:     #FFFFFF;
  --accent:      #0071E3;
  --accent-hover:#0077ED;
  --accent-press:#006EDB;
  --border:      #D2D2D7;
  --border-soft: #E8E8ED;
  --success:     #1D8A4A;
  --error:       #D83933;
  --star:        #FFA500;
  --hit:         #0071E3;
  --new:         #1D8A4A;
  --sale:        #D83933;

  /* радиусы */
  --r-card: 18px;
  --r-field: 12px;
  --r-pill: 980px;

  /* тени */
  --shadow-sm: 0 1px 2px rgba(0,0,0,.04), 0 2px 6px rgba(0,0,0,.04);
  --shadow-md: 0 4px 16px rgba(0,0,0,.06);
  --shadow-lg: 0 12px 40px rgba(0,0,0,.10);

  /* ритм */
  --maxw: 1200px;
  --ease: cubic-bezier(.4, 0, .2, 1);
}

/* ----------------------------- reset / base ----------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Inter',
               'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg { max-width: 100%; display: block; }
a { color: var(--accent); text-decoration: none; transition: color .2s var(--ease); }
a:hover { color: var(--accent-hover); text-decoration: underline; }
h1, h2, h3, h4 { letter-spacing: -.02em; line-height: 1.1; margin: 0 0 .4em; font-weight: 600; }
h1 { font-size: clamp(2rem, 5vw, 3.4rem); letter-spacing: -.03em; }
h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); }
p  { margin: 0 0 1em; color: var(--text-soft); }

:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; border-radius: 4px; }

/* ----------------------------- layout helpers --------------------------- */
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }
.section { padding: 72px 0; }
.section-tight { padding: 40px 0; }
.section-soft { background: var(--bg-soft); }
.center { text-align: center; }
.muted { color: var(--muted); }
.eyebrow { color: var(--accent); font-weight: 600; font-size: .85rem; letter-spacing: .02em; text-transform: uppercase; margin-bottom: 12px; }
.hide { display: none !important; }

.grid { display: grid; gap: 22px; }
.products-grid { grid-template-columns: repeat(4, 1fr); }
.cat-grid { grid-template-columns: repeat(4, 1fr); }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }

/* ----------------------------- buttons ---------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font: inherit; font-weight: 500; font-size: 1rem;
  padding: 12px 24px; border-radius: var(--r-pill);
  border: 1px solid transparent; cursor: pointer;
  transition: background .2s var(--ease), color .2s var(--ease), transform .15s var(--ease), box-shadow .2s var(--ease);
  text-decoration: none; white-space: nowrap; line-height: 1;
}
.btn:active { transform: scale(.97); }
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--accent-hover); color: #fff; text-decoration: none; }
.btn-dark { background: var(--text); color: #fff; }
.btn-dark:hover { background: #000; color: #fff; text-decoration: none; }
.btn-ghost { background: transparent; color: var(--accent); border-color: var(--accent); }
.btn-ghost:hover { background: rgba(0,113,227,.06); text-decoration: none; }
.btn-soft { background: var(--bg-soft); color: var(--text); }
.btn-soft:hover { background: var(--border-soft); text-decoration: none; }
.btn-sm { padding: 8px 16px; font-size: .9rem; }
.btn-block { width: 100%; }
.btn[disabled], .btn.disabled { opacity: .5; cursor: not-allowed; transform: none; }

/* icon button */
.icon-btn {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 50%; border: none; background: transparent;
  color: var(--text); cursor: pointer; transition: background .2s var(--ease); position: relative;
}
.icon-btn:hover { background: var(--bg-soft); }

/* ----------------------------- navbar ----------------------------------- */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.72);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid var(--border-soft);
}
.nav-inner { display: flex; align-items: center; gap: 24px; height: 56px; }
.nav-brand { display: flex; align-items: center; gap: 9px; font-weight: 700; font-size: 1.25rem; letter-spacing: -.03em; color: var(--text); }
.nav-brand:hover { text-decoration: none; }
.nav-brand img, .nav-brand svg { width: 28px; height: 28px; flex-shrink: 0; }
.nav-links { display: flex; align-items: center; gap: 4px; margin-left: 14px; }
.nav-links a {
  color: var(--text); font-size: .92rem; font-weight: 400; padding: 8px 12px; border-radius: var(--r-pill);
}
.nav-links a:hover { background: var(--bg-soft); text-decoration: none; color: var(--text); }
.nav-search { flex: 1; max-width: 320px; position: relative; }
.nav-search input {
  width: 100%; height: 38px; border: 1px solid var(--border-soft); background: var(--bg-soft);
  border-radius: var(--r-pill); padding: 0 14px 0 38px; font: inherit; font-size: .9rem;
}
.nav-search input:focus { outline: none; border-color: var(--accent); background: #fff; box-shadow: 0 0 0 4px rgba(0,113,227,.12); }
.nav-search svg { position: absolute; left: 12px; top: 50%; transform: translateY(-50%); width: 18px; height: 18px; color: var(--muted); }
.nav-actions { display: flex; align-items: center; gap: 2px; margin-left: auto; }
.cart-badge {
  position: absolute; top: 2px; right: 2px; min-width: 17px; height: 17px; padding: 0 4px;
  background: var(--accent); color: #fff; font-size: .68rem; font-weight: 700;
  border-radius: 9px; display: flex; align-items: center; justify-content: center;
}

/* mobile nav toggle */
.nav-toggle { display: none; }

/* ----------------------------- hero ------------------------------------- */
.hero { text-align: center; padding: 96px 0 72px; background: var(--bg-soft); }
.hero h1 { margin-bottom: 18px; }
.hero .lead { font-size: clamp(1.1rem, 2vw, 1.4rem); color: var(--text-soft); max-width: 640px; margin: 0 auto 32px; }
.hero-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* section heading row */
.section-head { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 28px; gap: 16px; }
.section-head h2 { margin: 0; }
.section-head a { font-size: .92rem; }

/* ----------------------------- category chips -------------------------- */
.cat-card {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  background: var(--surface); border-radius: var(--r-card); padding: 26px 16px;
  text-align: center; color: var(--text); border: 1px solid var(--border-soft);
  transition: transform .2s var(--ease), box-shadow .2s var(--ease); min-height: 140px;
}
.cat-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); text-decoration: none; }
.cat-card svg, .cat-card img { width: 56px; height: 56px; margin-bottom: 12px; }
.cat-card span { font-weight: 500; font-size: .95rem; }

/* ----------------------------- product card ----------------------------- */
.product-card {
  display: flex; flex-direction: column; background: var(--surface);
  border-radius: var(--r-card); overflow: hidden; border: 1px solid var(--border-soft);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease); position: relative;
}
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.product-card a.cover-link { display: block; }
.card-media {
  aspect-ratio: 1 / 1; background: var(--bg-soft); display: flex; align-items: center; justify-content: center;
  padding: 28px; position: relative; overflow: hidden;
}
.card-media img { width: 100%; height: 100%; object-fit: contain; transition: transform .4s var(--ease); }
.product-card:hover .card-media img { transform: scale(1.04); }
.card-body { padding: 16px 18px 20px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.card-body .pc-name { color: var(--text); font-weight: 500; font-size: 1rem; line-height: 1.3; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; min-height: 2.6em; }
.product-card:hover .pc-name { text-decoration: none; }
.pc-sku { font-size: .78rem; color: var(--muted); }
.pc-meta { display: flex; align-items: center; gap: 8px; font-size: .82rem; }
.pc-price-row { margin-top: auto; display: flex; align-items: baseline; gap: 8px; }
.pc-price { font-size: 1.3rem; font-weight: 600; letter-spacing: -.01em; font-variant-numeric: tabular-nums; }
.pc-old-price { font-size: .95rem; color: var(--muted); text-decoration: line-through; }
.pc-unit { font-size: .82rem; color: var(--muted); }
.pc-actions { display: flex; gap: 8px; margin-top: 6px; }

/* badges */
.badge {
  position: absolute; top: 12px; left: 12px; z-index: 2;
  font-size: .72rem; font-weight: 600; padding: 4px 10px; border-radius: var(--r-pill);
  color: #fff; letter-spacing: .01em;
}
.badge-Хит, .badge-hit { background: var(--hit); }
.badge-Новинка, .badge-new { background: var(--new); }
.badge-Акция, .badge-Топ, .badge-sale { background: var(--sale); }
.badge-stock-out { background: var(--muted); }

/* ----------------------------- rating stars ----------------------------- */
.stars { position: relative; display: inline-block; vertical-align: middle; }
.stars-back, .stars-front { display: inline-flex; gap: 1px; }
.stars-back { color: var(--border); }
.stars-front { position: absolute; top: 0; left: 0; overflow: hidden; white-space: nowrap; color: var(--star); }
.stars svg { width: 15px; height: 15px; display: block; }
.rating-text { color: var(--muted); font-size: .82rem; margin-left: 4px; }

/* ----------------------------- product page ----------------------------- */
.product-detail { padding: 48px 0 72px; }
.pd-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; }
.gallery-main {
  aspect-ratio: 1/1; background: var(--bg-soft); border-radius: var(--r-card);
  display: flex; align-items: center; justify-content: center; padding: 48px; border: 1px solid var(--border-soft);
}
.gallery-main img { max-width: 100%; max-height: 100%; object-fit: contain; }
.gallery-thumbs { display: flex; gap: 10px; margin-top: 14px; flex-wrap: wrap; }
.gallery-thumbs button {
  width: 72px; height: 72px; border-radius: 12px; border: 1px solid var(--border-soft);
  background: var(--bg-soft); padding: 8px; cursor: pointer; transition: border-color .2s var(--ease);
}
.gallery-thumbs button.active { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(0,113,227,.15); }
.gallery-thumbs img { width: 100%; height: 100%; object-fit: contain; }

.pd-info h1 { font-size: clamp(1.6rem, 3vw, 2.4rem); margin-bottom: 8px; }
.pd-sku-line { color: var(--muted); font-size: .9rem; margin-bottom: 18px; }
.pd-price-block { display: flex; align-items: baseline; gap: 12px; margin: 18px 0; }
.pd-price { font-size: 2rem; font-weight: 600; letter-spacing: -.02em; font-variant-numeric: tabular-nums; }
.pd-old { font-size: 1.2rem; color: var(--muted); text-decoration: line-through; }
.pd-stock { display: inline-flex; align-items: center; gap: 6px; font-size: .9rem; font-weight: 500; }
.pd-stock.in { color: var(--success); }
.pd-stock.out { color: var(--error); }
.qty-stepper { display: inline-flex; align-items: center; border: 1px solid var(--border); border-radius: var(--r-field); overflow: hidden; }
.qty-stepper button { width: 42px; height: 44px; border: none; background: #fff; cursor: pointer; font-size: 1.2rem; color: var(--text); }
.qty-stepper button:hover { background: var(--bg-soft); }
.qty-stepper input { width: 52px; height: 44px; border: none; text-align: center; font: inherit; font-weight: 600; -moz-appearance: textfield; }
.qty-stepper input::-webkit-outer-spin-button, .qty-stepper input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }

/* spec table */
.spec-table { width: 100%; border-collapse: collapse; }
.spec-table td { padding: 12px 0; border-bottom: 1px solid var(--border-soft); vertical-align: top; }
.spec-table td:first-child { color: var(--muted); width: 40%; }
.spec-table td:last-child { color: var(--text); font-weight: 500; }

/* ----------------------------- forms ------------------------------------ */
.form-card { max-width: 440px; margin: 0 auto; }
.form-card.wide { max-width: 640px; }
.form-group { margin-bottom: 18px; }
.form-label { display: block; font-weight: 500; font-size: .9rem; margin-bottom: 6px; }
.form-control, input[type=text], input[type=email], input[type=password],
input[type=tel], input[type=number], textarea, select {
  width: 100%; padding: 12px 14px; border: 1px solid var(--border); border-radius: var(--r-field);
  font: inherit; font-size: 1rem; background: #fff; color: var(--text); transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.form-control:focus, input:focus, textarea:focus, select:focus {
  outline: none; border-color: var(--accent); box-shadow: 0 0 0 4px rgba(0,113,227,.12);
}
textarea { resize: vertical; min-height: 90px; }
.form-help { font-size: .82rem; color: var(--muted); margin-top: 6px; }
.form-error, .error-text { color: var(--error); font-size: .82rem; margin-top: 6px; }
.field-error input, .field-error textarea, .field-error select { border-color: var(--error); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.check-row { display: flex; align-items: center; gap: 8px; }
.check-row input { width: auto; }

/* rating input */
.rating-input { display: inline-flex; flex-direction: row-reverse; gap: 2px; }
.rating-input input { position: absolute; opacity: 0; width: 0; }
.rating-input label { font-size: 1.8rem; color: var(--border); cursor: pointer; line-height: 1; transition: color .1s; }
.rating-input input:checked ~ label, .rating-input label:hover, .rating-input label:hover ~ label { color: var(--star); }

/* ----------------------------- flash / alerts -------------------------- */
.flash-wrap { max-width: var(--maxw); margin: 16px auto 0; padding: 0 22px; }
.flash { padding: 12px 18px; border-radius: var(--r-field); margin-bottom: 10px; font-size: .92rem; display: flex; align-items: center; gap: 10px; }
.flash-success { background: rgba(29,138,74,.10); color: #0d5f30; }
.flash-error   { background: rgba(216,57,51,.10); color: #a32420; }
.flash-info    { background: rgba(0,113,227,.10); color: #024d96; }
.flash svg { width: 18px; height: 18px; flex-shrink: 0; }

/* ----------------------------- cart ------------------------------------- */
.cart-grid { display: grid; grid-template-columns: 1fr 360px; gap: 32px; align-items: start; }
.cart-line {
  display: grid; grid-template-columns: 84px 1fr auto auto; gap: 18px; align-items: center;
  padding: 18px 0; border-bottom: 1px solid var(--border-soft);
}
.cart-line .cl-thumb { width: 84px; height: 84px; background: var(--bg-soft); border-radius: 12px; padding: 10px; }
.cart-line .cl-thumb img { width: 100%; height: 100%; object-fit: contain; }
.cl-name { font-weight: 500; color: var(--text); }
.cl-name a { color: inherit; }
.cl-sku { font-size: .8rem; color: var(--muted); }
.cl-price { font-weight: 600; font-variant-numeric: tabular-nums; min-width: 110px; text-align: right; }
.summary-card { background: var(--bg-soft); border-radius: var(--r-card); padding: 26px; position: sticky; top: 80px; }
.summary-card .row { display: flex; justify-content: space-between; margin-bottom: 12px; color: var(--text-soft); }
.summary-card .total { font-size: 1.5rem; font-weight: 600; color: var(--text); border-top: 1px solid var(--border); padding-top: 16px; margin-top: 6px; }
.empty-state { text-align: center; padding: 80px 20px; }
.empty-state svg { width: 64px; height: 64px; color: var(--border); margin-bottom: 18px; }

/* ----------------------------- footer ----------------------------------- */
.footer { background: var(--bg-soft); border-top: 1px solid var(--border-soft); padding: 48px 0 32px; margin-top: 40px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 32px; margin-bottom: 32px; }
.footer h4 { font-size: .8rem; text-transform: uppercase; letter-spacing: .04em; color: var(--muted); margin-bottom: 14px; }
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer li { margin-bottom: 9px; }
.footer a { color: var(--text-soft); font-size: .9rem; }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 22px; color: var(--muted); font-size: .85rem; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; }

/* ============================ ADMIN ===================================== */
.admin-shell { display: grid; grid-template-columns: 240px 1fr; min-height: 100vh; }
.admin-sidebar { background: #1d1d1f; color: #f5f5f7; padding: 24px 0; position: sticky; top: 0; height: 100vh; overflow-y: auto; }
.admin-brand { padding: 0 22px 22px; font-weight: 700; font-size: 1.2rem; letter-spacing: -.02em; display: flex; align-items: center; gap: 8px; }
.admin-brand svg { width: 24px; height: 24px; }
.admin-nav { display: flex; flex-direction: column; gap: 2px; padding: 0 12px; }
.admin-nav a {
  display: flex; align-items: center; gap: 11px; padding: 10px 12px; border-radius: 10px;
  color: #d2d2d7; font-size: .92rem; transition: background .15s, color .15s;
}
.admin-nav a svg { width: 19px; height: 19px; }
.admin-nav a:hover { background: rgba(255,255,255,.08); color: #fff; text-decoration: none; }
.admin-nav a.active { background: var(--accent); color: #fff; }
.admin-main { padding: 32px 40px; background: var(--bg-soft); }
.admin-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 28px; gap: 16px; flex-wrap: wrap; }
.admin-head h1 { font-size: 1.7rem; margin: 0; }

.stat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-bottom: 28px; }
.stat-card { background: #fff; border-radius: var(--r-card); padding: 22px; border: 1px solid var(--border-soft); }
.stat-card .label { color: var(--muted); font-size: .82rem; margin-bottom: 6px; }
.stat-card .value { font-size: 1.9rem; font-weight: 600; letter-spacing: -.02em; font-variant-numeric: tabular-nums; }
.stat-card .sub { font-size: .8rem; color: var(--success); margin-top: 4px; }

.panel { background: #fff; border-radius: var(--r-card); border: 1px solid var(--border-soft); overflow: hidden; margin-bottom: 22px; }
.panel-head { padding: 18px 22px; border-bottom: 1px solid var(--border-soft); display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.panel-head h2 { margin: 0; font-size: 1.1rem; }
.panel-body { padding: 6px 22px 22px; }

table.data { width: 100%; border-collapse: collapse; font-size: .92rem; }
table.data th { text-align: left; padding: 12px 14px; color: var(--muted); font-weight: 500; font-size: .8rem; text-transform: uppercase; letter-spacing: .03em; border-bottom: 1px solid var(--border-soft); }
table.data td { padding: 14px; border-bottom: 1px solid var(--border-soft); vertical-align: middle; }
table.data tr:last-child td { border-bottom: none; }
table.data tr:hover td { background: var(--bg-soft-2); }
.td-thumb { width: 44px; height: 44px; background: var(--bg-soft); border-radius: 8px; padding: 4px; }
.td-thumb img { width: 100%; height: 100%; object-fit: contain; }
.row-actions { display: flex; gap: 6px; }
.pill-status { font-size: .74rem; font-weight: 600; padding: 4px 10px; border-radius: var(--r-pill); }
.st-new { background: rgba(0,113,227,.12); color: #024d96; }
.st-confirmed { background: rgba(29,138,74,.12); color: #0d5f30; }
.st-done { background: rgba(133,133,139,.18); color: #424245; }
.st-cancelled { background: rgba(216,57,51,.12); color: #a32420; }

/* specs editor (admin) */
.spec-row { display: grid; grid-template-columns: 1fr 1fr auto; gap: 10px; margin-bottom: 10px; }
.spec-row button { width: 44px; border: 1px solid var(--border); background: #fff; border-radius: var(--r-field); cursor: pointer; color: var(--error); font-size: 1.1rem; }
.image-grid { display: flex; gap: 12px; flex-wrap: wrap; }
.image-thumb { position: relative; width: 96px; height: 96px; border-radius: 12px; overflow: hidden; background: var(--bg-soft); border: 1px solid var(--border-soft); }
.image-thumb img { width: 100%; height: 100%; object-fit: cover; }
.image-thumb form { position: absolute; top: 4px; right: 4px; }
.image-thumb button { width: 22px; height: 22px; border-radius: 50%; border: none; background: rgba(0,0,0,.6); color: #fff; cursor: pointer; font-size: .8rem; display: flex; align-items: center; justify-content: center; }

/* pagination */
.pagination { display: flex; gap: 6px; justify-content: center; margin-top: 32px; flex-wrap: wrap; }
.pagination a, .pagination span {
  min-width: 40px; height: 40px; display: inline-flex; align-items: center; justify-content: center;
  border-radius: 10px; padding: 0 12px; font-size: .92rem; border: 1px solid var(--border-soft); color: var(--text);
}
.pagination a:hover { background: var(--bg-soft); text-decoration: none; }
.pagination .active { background: var(--accent); color: #fff; border-color: var(--accent); }
.pagination .disabled { color: var(--border); pointer-events: none; }

/* ============================ RESPONSIVE =============================== */
@media (max-width: 1024px) {
  .products-grid, .cat-grid { grid-template-columns: repeat(3, 1fr); }
  .stat-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 820px) {
  .nav-links { display: none; position: absolute; top: 56px; left: 0; right: 0; background: rgba(255,255,255,.96); backdrop-filter: blur(20px); flex-direction: column; padding: 12px 22px; border-bottom: 1px solid var(--border-soft); align-items: stretch; }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 14px 12px; }
  .nav-toggle { display: inline-flex; margin-left: auto; }
  .nav-search { display: none; }
  .pd-grid { grid-template-columns: 1fr; gap: 32px; }
  .cart-grid { grid-template-columns: 1fr; }
  .two-col { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .admin-shell { grid-template-columns: 1fr; }
  .admin-sidebar { position: static; height: auto; }
  .admin-nav { flex-direction: row; overflow-x: auto; padding: 0 12px 12px; }
  .admin-main { padding: 22px 18px; }
}
@media (max-width: 600px) {
  .section { padding: 48px 0; }
  .hero { padding: 64px 0 48px; }
  .products-grid, .cat-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .card-body { padding: 12px 12px 16px; }
  .pc-price { font-size: 1.1rem; }
  .cart-line { grid-template-columns: 64px 1fr; grid-template-areas: "thumb info" "thumb price"; row-gap: 6px; }
  .cart-line .cl-thumb { grid-area: thumb; width: 64px; height: 64px; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .spec-row { grid-template-columns: 1fr 1fr; }
}

/* reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
  .product-card:hover, .cat-card:hover { transform: none; }
}
