/* Ovivo Wog — Nirvana Mono Design System
   Palette: white / light gray / anthracite
   Type: clean sans, no decorative display fonts */

:root {
  --white: #ffffff;
  --gray-50: #f7f7f7;
  --gray-100: #f0f0f0;
  --gray-200: #e6e6e6;
  --gray-300: #d4d4d4;
  --gray-500: #8a8a8a;
  --gray-700: #4a4a4a;
  --anthracite: #2c2c2c;
  --anthracite-hover: #1f1f1f;
  --ink: #222222;
  --muted: #6b6b6b;
  --line: #e8e8e8;
  --success: #3d7a55;
  --danger: #b33a3a;
  /* CTA: sakin sage yeşil */
  --cta: #4f6356;
  --cta-hover: #3e5045;
  --cta-soft: #6a7d70;
  --cta-tint: #eef2ef;
  --radius: 4px; /* tüm kutularda 4 köşe */
  --wrap: 1180px;
  --font: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  font-size: 14px;
  line-height: 1.5;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
button, input, select { font: inherit; color: inherit; }
button { cursor: pointer; border: 0; background: none; }
img { max-width: 100%; display: block; }
h1, h2, h3, h4 {
  font-family: var(--font);
  font-weight: 600;
  letter-spacing: -0.01em;
  margin: 0;
  color: var(--anthracite);
}
p { margin: 0; }

.wrap { width: min(var(--wrap), 92vw); margin: 0 auto; }

/* —— Buttons —— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 22px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: background .2s, color .2s, border-color .2s;
}
.btn-primary {
  background: var(--cta);
  color: var(--white);
  box-shadow: 0 1px 0 rgba(255,255,255,.12) inset;
}
.btn-primary:hover {
  background: var(--cta-hover);
  box-shadow: 0 8px 18px -10px rgba(79, 99, 86, .55);
}
.btn-secondary {
  background: var(--white);
  color: var(--cta);
  border: 1px solid var(--cta);
}
.btn-secondary:hover {
  background: var(--cta-tint);
  color: var(--cta-hover);
  border-color: var(--cta-hover);
}
.btn-ghost {
  background: var(--cta-tint);
  color: var(--cta);
}
.btn-ghost:hover { background: #e2e8e3; color: var(--cta-hover); }
.btn-block { width: 100%; }
.btn-sm { min-height: 36px; padding: 0 14px; font-size: 11px; }

/* —— Top bar —— */
.topbar {
  background: var(--gray-50);
  border-bottom: 1px solid var(--line);
  font-size: 12px;
  color: var(--muted);
}
.topbar-inner {
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.topbar-links { display: flex; gap: 18px; }
.topbar-links a:hover { color: var(--anthracite); }

/* —— Header —— */
.header { background: var(--white); border-bottom: 1px solid var(--line); }
.header-main {
  height: 78px;
  display: grid;
  grid-template-columns: 160px 1fr auto;
  gap: 28px;
  align-items: center;
}
.logo {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--anthracite);
  text-transform: lowercase;
}
.logo span { color: var(--cta-soft); font-weight: 600; }
.search {
  display: flex;
  height: 42px;
  border: 1px solid var(--gray-300);
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
}
.search input {
  flex: 1;
  border: 0;
  outline: 0;
  padding: 0 14px;
  background: transparent;
}
.search button {
  width: 48px;
  background: var(--cta);
  color: var(--white);
  display: grid;
  place-items: center;
}
.search button:hover { background: var(--cta-hover); }
.header-actions { display: flex; align-items: center; gap: 8px; }
.icon-link {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  color: var(--anthracite);
  position: relative;
  border-radius: var(--radius);
  border: 1px solid transparent;
  transition: border-color .2s ease, background .2s ease, color .2s ease, transform .2s ease;
}
.cart-link svg {
  width: 26px;
  height: 26px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.cart-link:hover {
  border-color: var(--cta);
  color: var(--cta);
  background: var(--cta-tint);
  transform: translateY(-1px);
}
.icon-link .badge {
  position: absolute;
  top: 1px;
  right: -1px;
  min-width: 18px;
  height: 18px;
  padding: 0 4px;
  border-radius: 50%;
  background: var(--cta);
  color: #fff;
  font-size: 10.5px;
  font-weight: 800;
  display: grid;
  place-items: center;
  border: 2px solid var(--white);
  transition: background .2s ease;
}
.cart-link:hover .badge { background: var(--cta-hover); }
.nav-bar {
  position: relative;
  border-top: 1px solid var(--line);
  height: 58px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.mega-title {
  display: block;
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--gray-500);
  margin-bottom: 10px;
}
.mega-card {
  position: relative;
  flex: 1;
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  color: #fff;
  text-decoration: none;
  border: 0;
  background: var(--gray-100);
  isolation: isolate;
  transition: box-shadow .35s ease;
}
.mega-card:hover {
  box-shadow: 0 18px 38px -20px rgba(20,20,20,.55);
}
.mega-card img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  transition: transform .7s cubic-bezier(.22,1,.36,1), filter .35s ease;
}
.mega-card:hover img { transform: scale(1.045); filter: saturate(1.04); }
.mega-card::after {
  content: "";
  position: absolute; inset: 0;
  z-index: 0;
  background:
    linear-gradient(180deg, rgba(10,14,12,.02) 35%, rgba(10,14,12,.88) 100%),
    linear-gradient(90deg, rgba(10,14,12,.18), transparent 62%);
}
.mega-card-label {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 18px 20px;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -.01em;
}
.mega-card-lg { min-height: 148px; }

/* —— Primary links —— */
.nav-links { display: flex; align-items: stretch; gap: 0; height: 100%; flex: 1; }
.nav-links > a,
.nav-drop-trigger {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  height: 100%;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: .01em;
  color: var(--gray-700);
  padding: 0 13px;
  border-radius: 0;
  background: transparent;
  border: 0;
  cursor: pointer;
  transition: color .2s ease, background .2s ease;
}
.nav-links > a::after,
.nav-drop-trigger::after {
  content: "";
  position: absolute;
  left: 13px;
  right: 13px;
  bottom: 0;
  height: 2px;
  background: var(--cta);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .25s cubic-bezier(.22,1,.36,1);
}
.nav-links > a:hover,
.nav-links > a.active,
.nav-drop-trigger:hover,
.nav-drop-trigger.active,
.nav-drop.open .nav-drop-trigger { color: var(--anthracite); background: var(--gray-50); }
.nav-links > a:hover::after,
.nav-links > a.active::after,
.nav-drop-trigger.active::after,
.nav-drop.open .nav-drop-trigger::after { transform: scaleX(1); }

.nav-drop { position: relative; height: 100%; }
.nav-drop-trigger svg {
  width: 11px; height: 11px; stroke: currentColor; fill: none; stroke-width: 2.2;
  transition: transform .25s cubic-bezier(.22,1,.36,1);
}
.nav-drop.open .nav-drop-trigger svg { transform: rotate(180deg); }
.nav-drop-panel {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 210px;
  background: var(--white);
  border: 1px solid rgba(30,40,34,.1);
  border-radius: var(--radius);
  box-shadow: 0 32px 70px -24px rgba(23,29,25,.34), 0 8px 22px -16px rgba(23,29,25,.22);
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(9px) scale(.985);
  transform-origin: top left;
  transition: opacity .22s ease, transform .3s cubic-bezier(.22,1,.36,1), visibility .22s ease;
  z-index: 80;
}
.nav-drop-panel::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -11px;
  height: 11px;
}
.nav-drop.open .nav-drop-panel,
.nav-drop:focus-within .nav-drop-panel {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: none;
}
.nav-drop:nth-last-child(-n+2) > .nav-drop-panel {
  left: auto;
  right: 0;
  transform-origin: top right;
}
.nav-drop-panel a {
  font-size: 13px;
  font-weight: 500;
  color: var(--gray-700);
  padding: 8px 10px;
}
.nav-drop-panel a::after { display: none; }
.nav-drop-panel a:hover { color: var(--anthracite); background: var(--gray-50); }
.nav-drop-panel .mega-card {
  padding: 0;
  color: #fff;
}
.nav-drop-panel .mega-card:hover {
  color: #fff;
  background: var(--gray-100);
}

/* Visual variant — image card + description/CTA, used for collection nav-drops */
.nav-drop-panel.nav-drop-panel-visual {
  min-width: 370px;
  width: 370px;
  padding: 12px 12px 18px;
  gap: 13px;
}
.nav-drop-panel-visual .mega-card { min-height: 238px; }
.nav-drop-panel-visual .mega-card-label { font-size: 18px; padding: 22px; }
.nav-drop-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 9.5px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--cta);
  padding: 4px 5px 0;
}
.nav-drop-eyebrow::before { content: ""; width: 14px; height: 1px; background: var(--cta); }
.nav-drop-desc {
  font-size: 13px;
  line-height: 1.6;
  color: var(--muted);
  padding: 0 6px;
  margin: -3px 0 0;
}
.nav-drop-panel .nav-drop-cta {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  min-height: 39px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .025em;
  color: var(--cta);
  margin: 0 5px;
  padding: 0 12px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  transition: color .2s ease, border-color .2s ease, background .2s ease;
}
.nav-drop-panel .nav-drop-cta:hover { color: var(--cta-hover); border-color: var(--gray-300); background: var(--gray-50); }
.nav-drop-cta svg,
.nav-drop-links-all svg {
  width: 12px; height: 12px; stroke: currentColor; fill: none;
  stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round;
  transition: transform .25s cubic-bezier(.22,1,.36,1);
}
.nav-drop-cta:hover svg,
.nav-drop-links-all:hover svg { transform: translateX(3px); }

/* Split mega menu — link groups left, editorial image right */
.nav-drop-panel.nav-drop-panel-split {
  min-width: 760px;
  width: 760px;
  padding: 26px;
  flex-direction: row;
  align-items: stretch;
  gap: 34px;
}
.nav-drop-panel-split .mega-card {
  width: 300px;
  flex: 0 0 300px;
  min-height: 280px;
}
.nav-drop-panel-split .mega-card-label { font-size: 18px; padding: 22px; }
.nav-drop-links-col {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
}
.nav-drop-panel .nav-drop-links-all {
  margin: 0 0 16px;
  padding: 0 0 14px;
  border-bottom: 1px solid var(--line);
  font-size: 13.5px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--cta);
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 7px;
  transition: color .2s ease;
}
.nav-drop-panel .nav-drop-links-all:hover { color: var(--cta-hover); background: none; }
.nav-drop-links-grid {
  display: flex;
  gap: 34px;
}
.nav-drop-links {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 3px;
  border-top: 0;
  padding-top: 0;
}
.nav-drop-links a {
  position: relative;
  min-height: 41px;
  padding: 0;
  margin: 0;
  border-bottom: 0;
  border-radius: 0;
  font-size: 13.5px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  transition: color .2s ease, padding-left .25s ease;
}
.nav-drop-links a::after {
  content: "→";
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity .2s ease, transform .2s ease;
  color: var(--cta);
  font-size: 12px;
}
.nav-drop-links a:hover {
  padding-left: 5px;
  color: var(--cta);
  background: transparent;
}
.nav-drop-links a:hover::after { opacity: 1; transform: none; }

/* —— Right-aligned support link —— */
.nav-support {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
  margin-left: 10px;
}
.nav-divider { width: 1px; height: 22px; background: var(--line); }
.nav-support-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  height: 34px;
  padding: 0 13px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-size: 12.5px;
  font-weight: 700;
  color: var(--anthracite);
  transition: border-color .2s ease, color .2s ease, background .2s ease;
}
.nav-support-link svg {
  width: 14px; height: 14px; stroke: currentColor; fill: none;
  stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
}
.nav-support-link:hover { border-color: var(--cta); color: var(--cta); background: var(--cta-tint); }
.nav-support-link .dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--cta); flex-shrink: 0;
}

/* —— Footer —— */
.footer {
  margin-top: 72px;
  background: var(--gray-50);
  border-top: 1px solid var(--line);
  padding: 56px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 40px;
}
.footer h4 {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 14px;
  color: var(--anthracite);
}
.footer p, .footer a {
  display: block;
  color: var(--muted);
  font-size: 13px;
  line-height: 2;
}
.footer a:hover { color: var(--anthracite); }
.copyright {
  border-top: 1px solid var(--line);
  padding: 16px 0;
  font-size: 11px;
  color: var(--gray-500);
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

/* —— Breadcrumb —— */
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  font-size: 12px;
  color: var(--muted);
  padding: 18px 0 8px;
}
.breadcrumb a:hover { color: var(--anthracite); }
.breadcrumb span.current { color: var(--anthracite); }

/* —— Product card —— */
.product-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
  transition:
    border-color .35s ease,
    box-shadow .35s ease,
    transform .35s cubic-bezier(.22, 1, .36, 1);
}
.product-card:hover {
  border-color: #cfcfcf;
  box-shadow: 0 20px 40px -20px rgba(20, 20, 20, .22);
  transform: translateY(-5px);
}
.product-card::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: var(--cta);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s cubic-bezier(.22, 1, .36, 1);
  z-index: 3;
}
.product-card:hover::after { transform: scaleX(1); }

.product-media {
  position: relative;
  aspect-ratio: 1 / 1;
  width: 100%;
  background: #f0f0f0;
  overflow: hidden;
  transition: background .35s ease;
}
.product-card:hover .product-media { background: #e8e8e8; }
/* cover = tabloyu tam doldurur, oran bozulmaz / eğilmez (sadece taşan kenar kesilir) */
.product-media img {
  position: absolute;
  inset: 0;
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  max-height: none !important;
  margin: 0 !important;
  padding: 0 !important;
  object-fit: cover !important;
  object-position: center center !important;
  display: block;
  transform: scale(1.01);
  transition: transform .5s cubic-bezier(.22, 1, .36, 1);
  will-change: transform;
}
.product-card:hover .product-media img {
  transform: scale(1.05);
}

/* Badges (discount / series) — top-left */
.card-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 2;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .03em;
  padding: 5px 9px;
  border-radius: var(--radius);
  line-height: 1.4;
}
.card-badge.sale { background: var(--anthracite); color: #fff; }
.card-badge.series {
  top: auto;
  bottom: 10px;
  background: rgba(255,255,255,.94);
  color: var(--cta);
  border: 1px solid var(--line);
}

.wish {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  font-size: 14px;
  color: var(--gray-700);
  opacity: 0;
  transform: translateY(4px);
  transition: opacity .3s ease, transform .3s ease, border-color .2s, color .2s, background .2s;
  z-index: 2;
}
.product-card:hover .wish {
  opacity: 1;
  transform: translateY(0);
}
.wish:hover {
  border-color: var(--anthracite);
  color: var(--anthracite);
  background: #fff;
}

/* Quick view — slides up from bottom of media on hover */
.quick-view {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: rgba(255,255,255,.96);
  border-top: 1px solid var(--line);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--anthracite);
  opacity: 0;
  transform: translateY(100%);
  transition: opacity .3s ease, transform .3s cubic-bezier(.22,1,.36,1), background .2s, color .2s;
}
.product-card:hover .quick-view {
  opacity: 1;
  transform: translateY(0);
}
.quick-view:hover { background: var(--cta); color: #fff; }

.product-body { padding: 16px 16px 18px; display: flex; flex-direction: column; flex: 1; }
.product-brand {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--cta);
  margin-bottom: 6px;
}
.product-brand::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--cta);
  flex-shrink: 0;
}
.product-title {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--anthracite);
  line-height: 1.4;
  min-height: 38px;
  margin-bottom: 8px;
  transition: color .25s ease;
}
.product-card:hover .product-title,
.product-title a:hover { color: var(--cta-hover); }

/* SKU + rating meta row */
.card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}
.card-sku {
  font-size: 10.5px;
  color: var(--gray-500);
  letter-spacing: .01em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  min-width: 0;
}
.card-rating {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
}
.card-rating .stars { color: var(--cta); font-size: 11px; letter-spacing: 1px; }
.card-rating .count { font-size: 10.5px; color: var(--gray-500); }

.card-color {
  display: grid;
  gap: 6px;
  margin: 0 0 12px;
}
.card-color__label {
  color: var(--gray-500);
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.card-color__value {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  width: fit-content;
  color: var(--gray-700);
  font-size: 11px;
  font-weight: 600;
}
.card-color__value i {
  width: 13px;
  height: 13px;
  flex: 0 0 13px;
  border: 1px solid var(--gray-300);
  border-radius: 50%;
}

.price-row { display: flex; align-items: baseline; gap: 8px; margin-bottom: 6px; }
.price { font-size: 18px; font-weight: 800; color: var(--anthracite); letter-spacing: -.01em; }
.price-row del { font-size: 12px; font-weight: 400; color: var(--gray-500); }

.card-stock {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 10.5px;
  color: var(--success);
  margin-bottom: 12px;
}
.card-stock i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--success);
  flex-shrink: 0;
  box-shadow: 0 0 0 3px rgba(61,122,85,.15);
}
.card-stock.is-out { color: var(--danger); }
.card-stock.is-out i {
  background: var(--danger);
  box-shadow: 0 0 0 3px rgba(179,58,58,.12);
}

.product-card .btn {
  margin-top: auto;
  transition: background .25s ease, transform .25s ease, box-shadow .25s ease;
}
.product-card:hover .btn-primary {
  background: var(--cta-hover);
  box-shadow: 0 10px 20px -10px rgba(79,99,86,.55);
}
.product-card .btn-primary:hover {
  transform: translateY(-1px);
}
.product-card .btn-primary svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

@media (prefers-reduced-motion: reduce) {
  .product-card,
  .product-media img,
  .wish,
  .quick-view,
  .product-card .btn {
    transition: none;
  }
  .product-card:hover { transform: none; }
  .product-card:hover .product-media img { transform: none; }
}

/* Mobilde iki ürün yan yana sığması için kart içeriğini sıkılaştır. */
@media (max-width: 560px) {
  .product-body { padding: 10px 10px 12px; }
  .card-badge { font-size: 9px; padding: 4px 7px; top: 7px; left: 7px; }
  .wish { top: 7px; right: 7px; width: 28px; height: 28px; font-size: 12px; }
  .product-brand { font-size: 9.5px; gap: 4px; margin-bottom: 5px; }
  .product-title { font-size: 12px; min-height: 34px; margin-bottom: 6px; }
  .card-meta { flex-wrap: wrap; gap: 4px 8px; margin-bottom: 8px; padding-bottom: 8px; }
  .card-sku { font-size: 9.5px; }
  .card-rating .count { display: none; }
  .card-color { margin-bottom: 8px; }
  .card-color__label { font-size: 8.5px; }
  .card-color__value { font-size: 10px; }
  .price { font-size: 15px; }
  .price-row { gap: 6px; margin-bottom: 4px; }
  .price-row del { font-size: 10px; }
  .card-stock { font-size: 9.5px; margin-bottom: 8px; }
  .product-card .btn-sm { min-height: 32px; padding: 0 8px; font-size: 10px; }
}

/* —— Section —— */
.section { padding: 56px 0; }
.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 28px;
}
.section-head h2 {
  font-size: 22px;
  font-weight: 600;
}
.link-more {
  font-size: 12px;
  font-weight: 600;
  color: var(--anthracite);
  border-bottom: 1px solid var(--anthracite);
  padding-bottom: 2px;
}

.toast {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: var(--anthracite);
  color: #fff;
  padding: 12px 16px;
  font-size: 12px;
  font-weight: 600;
  border-radius: var(--radius);
  transform: translateY(80px);
  opacity: 0;
  transition: .25s;
  z-index: 50;
}
.toast.show { transform: none; opacity: 1; }

@media (max-width: 900px) {
  .header-main { height: auto; padding: 10px 0; grid-template-columns: 1fr auto; gap: 8px 16px; }
  .search { display: flex; width: 100%; }
  .nav-support { display: none; }
  .nav-bar { overflow: visible; }
  .nav-links { flex-wrap: nowrap; }
  .nav-links > a,
  .nav-drop-trigger { padding-inline: 9px; font-size: 11.5px; }
  .nav-links > a::after,
  .nav-drop-trigger::after { left: 9px; right: 9px; }
  .nav-drop-panel.nav-drop-panel-visual { width: 330px; min-width: 330px; }
  .nav-drop-panel-visual .mega-card { min-height: 205px; }
  .nav-drop-panel.nav-drop-panel-split { width: 620px; min-width: 620px; padding: 20px; gap: 22px; }
  .nav-drop-panel-split .mega-card { width: 230px; flex: 0 0 230px; min-height: 240px; }
  .nav-drop-links-grid { gap: 20px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .nav-bar {
    width: 100%;
    height: auto;
    padding: 0 4vw;
  }
  .nav-links {
    overflow-x: auto;
    min-height: 52px;
    scrollbar-width: none;
  }
  .nav-links::-webkit-scrollbar { display: none; }
  .nav-drop-panel {
    position: fixed;
    top: 164px;
    left: 4vw !important;
    right: 4vw !important;
    width: 92vw !important;
    min-width: 0 !important;
    max-height: calc(100vh - 180px);
    overflow-y: auto;
    transform-origin: top center !important;
  }
  .nav-drop-panel.nav-drop-panel-split {
    flex-direction: column;
  }
  .nav-drop-panel-split .mega-card {
    width: 100%;
    flex: 0 0 190px;
    min-height: 190px;
  }
  .nav-drop-panel-visual .mega-card { min-height: 190px; }
  .nav-drop-links-grid { flex-direction: column; gap: 4px; }
  .footer-grid { grid-template-columns: 1fr; }
}
