:root {
  color-scheme: light;
  --brand-red: #ff3030;
  --brand-orange: #ff7a3d;
  --brand-black: #070707;
  --ink: #12151c;
  --muted: #667085;
  --soft: #f5f7fb;
  --paper: #ffffff;
  --line: #e4e8f0;
  --blue: #2256d6;
  --green: #0f8a63;
  --gold: #d89723;
  --danger: #b42318;
  --shadow: 0 18px 45px rgba(18, 21, 28, 0.1);
  --soft-shadow: 0 8px 24px rgba(18, 21, 28, 0.08);
  --radius: 8px;
  --max: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--soft);
  line-height: 1.55;
  letter-spacing: 0;
  overflow-x: hidden;
}

body.cart-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
  letter-spacing: 0;
}

button {
  cursor: pointer;
}

img {
  max-width: 100%;
  display: block;
}

.skip-link {
  position: absolute;
  top: -44px;
  left: 16px;
  z-index: 999;
  background: #fff;
  color: var(--ink);
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.skip-link:focus {
  top: 10px;
}

.site-top {
  background: var(--brand-black);
  color: #fff;
  font-size: 13px;
}

.site-top-inner,
.header-inner,
.container {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
}

.site-top-inner {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.top-list {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.top-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #fff;
}

.top-pill strong {
  color: #ffd5bf;
}

.language-switcher {
  display: inline-flex;
  gap: 5px;
  padding: 4px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.08);
}

.language-switcher button {
  min-width: 36px;
  min-height: 28px;
  border: 0;
  border-radius: 6px;
  color: #fff;
  background: transparent;
  font-size: 12px;
  font-weight: 800;
}

.language-switcher button.active {
  background: #fff;
  color: var(--brand-black);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  min-height: 78px;
  display: grid;
  grid-template-columns: auto minmax(230px, 1fr) auto;
  align-items: center;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 210px;
}

.brand img {
  width: 54px;
  height: 54px;
  object-fit: contain;
  border-radius: var(--radius);
}

.brand-name {
  display: block;
  font-size: 17px;
  line-height: 1;
  font-weight: 900;
  color: var(--brand-black);
}

.brand-tagline {
  display: block;
  margin-top: 4px;
  color: var(--brand-orange);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.search-shell {
  position: relative;
}

.search-shell input {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  padding: 0 46px 0 14px;
  outline: none;
}

.search-shell input:focus {
  border-color: var(--brand-red);
  box-shadow: 0 0 0 3px rgba(255,48,48,0.12);
}

.search-shell .search-icon {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--muted);
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
}

.language-menu {
  position: relative;
  display: inline-flex;
}

.language-toggle {
  width: auto;
  min-width: 54px;
  padding: 0 10px;
  gap: 6px;
  font-size: 12px;
}

.language-toggle::before {
  content: "A";
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--brand-black);
  color: #fff;
  font-size: 11px;
  line-height: 1;
}

.language-options {
  position: absolute;
  right: 0;
  top: calc(100% + 8px);
  width: 162px;
  padding: 6px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
  display: none;
  z-index: 80;
}

.language-menu.open .language-options {
  display: grid;
  gap: 4px;
}

.language-options button {
  min-height: 38px;
  border: 0;
  border-radius: 7px;
  background: transparent;
  color: var(--ink);
  text-align: left;
  padding: 0 10px;
  font-weight: 800;
}

.language-options button:hover,
.language-options button.active {
  background: var(--soft);
  color: var(--brand-red);
}

.icon-btn,
.pill-btn,
.primary-btn,
.outline-btn,
.ghost-btn {
  min-height: 42px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 900;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.icon-btn:hover,
.pill-btn:hover,
.primary-btn:hover,
.outline-btn:hover,
.ghost-btn:hover {
  transform: translateY(-1px);
}

.icon-btn {
  width: 44px;
  background: #fff;
  border-color: var(--line);
  position: relative;
}

.icon-btn.language-toggle {
  width: auto;
  min-width: 54px;
  padding: 0 10px;
}

.cart-count {
  position: absolute;
  right: -5px;
  top: -6px;
  min-width: 19px;
  height: 19px;
  border-radius: 999px;
  background: var(--brand-red);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 900;
  padding: 0 5px;
}

.pill-btn {
  padding: 0 14px;
  background: #fff;
  border-color: var(--line);
}

.pill-btn.whatsapp {
  color: #fff;
  background: var(--green);
  border-color: var(--green);
}

.primary-btn {
  padding: 0 16px;
  color: #fff;
  background: linear-gradient(135deg, var(--brand-red), var(--brand-orange));
  border-color: var(--brand-red);
  box-shadow: 0 10px 22px rgba(255, 48, 48, 0.22);
}

.outline-btn {
  padding: 0 16px;
  background: #fff;
  color: var(--ink);
  border-color: var(--line);
}

.ghost-btn {
  padding: 0 12px;
  background: transparent;
  color: var(--ink);
  border-color: transparent;
}

.menu-btn {
  display: none;
}

.site-nav {
  border-top: 1px solid var(--line);
  background: #fff;
}

.site-nav-inner {
  width: min(var(--max), calc(100% - 32px));
  min-height: 44px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 20px;
  overflow-x: auto;
}

.site-nav a {
  white-space: nowrap;
  color: #323745;
  font-size: 14px;
  font-weight: 800;
  padding: 12px 0;
  border-bottom: 3px solid transparent;
}

.site-nav a.active,
.site-nav a:hover {
  color: var(--brand-red);
  border-color: var(--brand-red);
}

.hero {
  min-height: 620px;
  display: grid;
  align-items: center;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(7,7,7,0.9) 0%, rgba(7,7,7,0.72) 45%, rgba(7,7,7,0.18) 100%),
    url("../img/catalog/premium-steel-chrono-look-watch.jpg") center/cover no-repeat;
}

.hero-inner {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding: 72px 0 58px;
  display: grid;
  grid-template-columns: minmax(0, 680px) minmax(260px, 420px);
  gap: 42px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 30px;
  padding: 5px 10px;
  border: 1px solid rgba(255,255,255,0.28);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.1);
  color: #ffd8c6;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

h1,
.page-title {
  margin: 16px 0 0;
  font-size: clamp(36px, 6vw, 76px);
  line-height: 0.98;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 640px;
  margin: 18px 0 0;
  color: rgba(255,255,255,0.9);
  font-size: 18px;
}

.hero-actions {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero .primary-btn,
.hero .outline-btn {
  min-height: 50px;
  font-size: 16px;
}

.hero .outline-btn {
  color: #fff;
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.3);
}

.hero-trust {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 30px;
  max-width: 640px;
}

.trust-chip {
  min-height: 70px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.1);
  padding: 12px;
}

.trust-chip strong {
  display: block;
  font-size: 16px;
}

.trust-chip span {
  color: rgba(255,255,255,0.78);
  font-size: 13px;
}

.hero-panel {
  background: rgba(255,255,255,0.94);
  color: var(--ink);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow);
}

.hero-panel h2 {
  margin: 0;
  font-size: 22px;
}

.hero-video {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 6px;
  margin-top: 14px;
  background: #111827;
}

.mini-product-stack {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.mini-product {
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.mini-product img {
  width: 74px;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 6px;
  background: var(--soft);
}

.mini-product strong {
  display: block;
  font-size: 14px;
}

.mini-product span {
  display: block;
  color: var(--muted);
  font-size: 12px;
}

.price {
  color: var(--brand-red);
  font-weight: 900;
}

.section {
  padding: 66px 0;
}

.section.compact {
  padding: 38px 0;
}

.section-head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: end;
  margin-bottom: 26px;
}

.section-kicker {
  margin: 0 0 8px;
  color: var(--brand-red);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.section-title {
  margin: 0;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.08;
  letter-spacing: 0;
}

.section-copy {
  margin: 10px 0 0;
  max-width: 690px;
  color: var(--muted);
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.category-card {
  min-height: 210px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--soft-shadow);
}

.category-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.category-media {
  height: 110px;
  background: var(--soft);
  overflow: hidden;
}

.category-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.category-body {
  padding: 13px;
}

.category-body h3 {
  margin: 0;
  font-size: 17px;
}

.category-body p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.offer-band {
  color: #fff;
  background: linear-gradient(135deg, #141821, #2b1010 45%, #321b12);
  border-radius: var(--radius);
  padding: 24px;
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(260px, 0.7fr);
  gap: 18px;
  align-items: center;
}

.offer-band h2 {
  margin: 0;
  font-size: clamp(24px, 4vw, 38px);
  line-height: 1.12;
}

.offer-band p {
  margin: 10px 0 0;
  color: rgba(255,255,255,0.82);
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.metric-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--soft-shadow);
}

.metric-number {
  display: block;
  font-size: 32px;
  line-height: 1;
  color: var(--brand-red);
  font-weight: 900;
}

.metric-card span:last-child {
  display: block;
  margin-top: 7px;
  color: var(--muted);
  font-weight: 700;
}

.review-strip,
.guide-link-grid,
.local-proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.review-card,
.guide-card,
.proof-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--soft-shadow);
}

.review-card strong,
.guide-card strong,
.proof-card strong {
  display: block;
  color: var(--brand-black);
  font-size: 18px;
  line-height: 1.25;
}

.review-card p,
.guide-card p,
.proof-card p {
  margin: 9px 0 0;
  color: var(--muted);
}

.guide-card {
  min-height: 180px;
  display: flex;
  flex-direction: column;
}

.guide-card .outline-btn {
  margin-top: auto;
  width: fit-content;
}

.shop-shell {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 20px;
  align-items: start;
}

.filters {
  position: sticky;
  top: 132px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--soft-shadow);
  padding: 16px;
}

.filter-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
}

.filter-head h2 {
  margin: 0;
  font-size: 20px;
}

.filter-block {
  border-top: 1px solid var(--line);
  padding-top: 14px;
  margin-top: 14px;
}

.filter-block h3 {
  margin: 0 0 10px;
  font-size: 14px;
}

.chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.filter-chip {
  min-height: 32px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: #fff;
  padding: 6px 10px;
  color: #2f3440;
  font-weight: 800;
  font-size: 13px;
}

.filter-chip.active {
  background: var(--brand-black);
  color: #fff;
  border-color: var(--brand-black);
}

.product-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.product-toolbar select {
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  padding: 0 10px;
}

.product-count {
  color: var(--muted);
  font-weight: 800;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.product-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--soft-shadow);
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.product-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.product-media {
  position: relative;
  aspect-ratio: 1 / 1;
  background: #f1f3f8;
  overflow: hidden;
}

.product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.product-card:hover .product-media img {
  transform: scale(1.04);
}

.badge-stack {
  position: absolute;
  left: 10px;
  top: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  z-index: 2;
}

.badge {
  min-height: 25px;
  display: inline-flex;
  align-items: center;
  padding: 4px 8px;
  border-radius: 6px;
  color: #fff;
  background: var(--brand-red);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.badge.green { background: var(--green); }
.badge.gold { background: var(--gold); color: #161616; }
.badge.black { background: var(--brand-black); }

.product-body {
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.product-title {
  margin: 0;
  font-size: 17px;
  line-height: 1.28;
}

.product-desc {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  flex: 1;
}

.product-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.mini-tag {
  min-height: 24px;
  display: inline-flex;
  align-items: center;
  padding: 3px 7px;
  border-radius: 6px;
  background: var(--soft);
  color: #3d4350;
  font-size: 12px;
  font-weight: 800;
}

.product-price-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  flex-wrap: wrap;
}

.product-price {
  color: var(--brand-red);
  font-size: 22px;
  font-weight: 900;
}

.old-price {
  color: #98a2b3;
  text-decoration: line-through;
  font-weight: 700;
}

.product-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.product-actions .primary-btn,
.product-actions .outline-btn {
  min-height: 40px;
  padding: 0 8px;
  font-size: 13px;
}

.full-row {
  grid-column: 1 / -1;
}

.page-hero {
  background:
    linear-gradient(135deg, rgba(7,7,7,0.92), rgba(35,18,13,0.86)),
    url("../img/catalog/black-chain-premium-watch.jpg") center/cover no-repeat;
  color: #fff;
  padding: 70px 0 56px;
}

.page-hero p {
  max-width: 760px;
  color: rgba(255,255,255,0.86);
  font-size: 17px;
}

.content-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.info-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--soft-shadow);
}

.info-card h2,
.info-card h3 {
  margin: 0 0 8px;
  line-height: 1.22;
}

.info-card p {
  margin: 8px 0 0;
  color: var(--muted);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.8fr);
  gap: 22px;
  align-items: start;
}

.map-box {
  min-height: 420px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  overflow: hidden;
  box-shadow: var(--soft-shadow);
}

.map-box iframe {
  width: 100%;
  height: 420px;
  border: 0;
}

.form-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--soft-shadow);
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.field {
  display: grid;
  gap: 6px;
}

.field.full {
  grid-column: 1 / -1;
}

.field label {
  color: #384050;
  font-weight: 900;
  font-size: 13px;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 9px 11px;
  background: #fff;
}

.field textarea {
  min-height: 112px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--brand-red);
  box-shadow: 0 0 0 3px rgba(255,48,48,0.12);
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  min-height: 56px;
  border: 0;
  background: #fff;
  padding: 14px 16px;
  text-align: left;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  font-weight: 900;
}

.faq-answer {
  display: none;
  padding: 0 16px 16px;
  color: var(--muted);
}

.faq-item.open .faq-answer {
  display: block;
}

.policy-content {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--soft-shadow);
}

.policy-content h2 {
  margin-top: 26px;
}

.site-footer {
  background: #11141b;
  color: #fff;
  padding: 48px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.footer-logo {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 12px;
}

.footer-logo img {
  width: 54px;
  height: 54px;
  object-fit: contain;
  border-radius: var(--radius);
  background: #fff;
}

.site-footer h2,
.site-footer h3 {
  margin: 0 0 12px;
}

.site-footer p,
.site-footer li {
  color: rgba(255,255,255,0.74);
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
}

.footer-links a:hover {
  color: #fff;
}

.footer-bottom {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.12);
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  color: rgba(255,255,255,0.64);
  font-size: 13px;
}

.footer-bottom a {
  color: #fff;
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.mobile-bottom-nav {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 45;
  min-height: 62px;
  display: none;
  grid-template-columns: repeat(5, 1fr);
  background: #fff;
  border-top: 1px solid var(--line);
  box-shadow: 0 -10px 26px rgba(18,21,28,0.12);
}

.mobile-bottom-nav a,
.mobile-bottom-nav button {
  border: 0;
  background: #fff;
  color: var(--ink);
  display: grid;
  place-items: center;
  gap: 3px;
  font-size: 11px;
  font-weight: 900;
}

.mobile-bottom-nav span:first-child {
  font-size: 20px;
}

.drawer-backdrop,
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(7,7,7,0.58);
  z-index: 80;
  display: none;
}

.drawer-backdrop.show,
.modal-backdrop.show {
  display: block;
}

.cart-drawer {
  position: fixed;
  right: 0;
  top: 0;
  bottom: 0;
  width: min(430px, 100%);
  background: #fff;
  z-index: 90;
  transform: translateX(105%);
  transition: transform 0.24s ease;
  display: grid;
  grid-template-rows: auto 1fr auto;
  box-shadow: -20px 0 60px rgba(0,0,0,0.24);
}

.cart-drawer.show {
  transform: translateX(0);
}

.drawer-head {
  min-height: 68px;
  border-bottom: 1px solid var(--line);
  padding: 14px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.drawer-head h2 {
  margin: 0;
  font-size: 22px;
}

.cart-items {
  overflow: auto;
  padding: 14px;
  display: grid;
  align-content: start;
  gap: 10px;
}

.cart-item {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 8px;
}

.cart-item img {
  width: 64px;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 6px;
}

.cart-item h3 {
  margin: 0;
  font-size: 14px;
}

.cart-item p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.qty-control {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 7px;
}

.qty-control button {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  border: 1px solid var(--line);
  background: #fff;
  font-weight: 900;
}

.drawer-foot {
  border-top: 1px solid var(--line);
  padding: 14px;
  display: grid;
  gap: 10px;
}

.total-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 18px;
  font-weight: 900;
}

.checkout-form {
  display: grid;
  gap: 10px;
}

.checkout-form input,
.checkout-form select {
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0 10px;
}

.modal {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale(0.98);
  width: min(760px, calc(100% - 26px));
  max-height: calc(100vh - 34px);
  overflow: auto;
  background: #fff;
  border-radius: var(--radius);
  z-index: 95;
  display: none;
  box-shadow: 0 30px 90px rgba(0,0,0,0.34);
}

.modal.show {
  display: block;
  transform: translate(-50%, -50%) scale(1);
}

.modal-head {
  padding: 16px;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.modal-head h2 {
  margin: 0;
  font-size: 22px;
}

.modal-body {
  padding: 16px;
}

.product-modal-grid {
  display: grid;
  grid-template-columns: minmax(220px, 0.8fr) minmax(0, 1fr);
  gap: 16px;
}

.product-modal-grid img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--radius);
}

.product-detail-hero {
  color: #fff;
  background:
    linear-gradient(135deg, rgba(7,7,7,0.92), rgba(35,18,13,0.86)),
    url("../img/catalog/classic-black-dial-watch.jpg") center/cover no-repeat;
  padding: 70px 0 58px;
}

.product-detail-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
  gap: 30px;
  align-items: center;
}

.product-detail-media {
  background: rgba(255,255,255,0.95);
  border: 1px solid rgba(255,255,255,0.24);
  border-radius: var(--radius);
  padding: 14px;
  box-shadow: var(--shadow);
}

.product-detail-media img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 6px;
  background: var(--soft);
}

.product-detail-copy .hero-copy {
  color: rgba(255,255,255,0.88);
}

.detail-price .product-price {
  color: #fff;
  font-size: 34px;
}

.detail-price .old-price {
  color: rgba(255,255,255,0.58);
}

.spec-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 22px;
}

.spec-list div {
  min-height: 74px;
  padding: 12px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.1);
}

.spec-list strong,
.spec-list span {
  display: block;
}

.spec-list strong {
  font-size: 12px;
  text-transform: uppercase;
  color: #ffd8c6;
}

.spec-list span {
  margin-top: 5px;
  color: rgba(255,255,255,0.88);
  font-weight: 800;
}

.payment-direct-note {
  margin: 12px 0 0;
  padding: 12px 14px;
  border: 1px solid #c7d7fe;
  border-radius: var(--radius);
  background: #eef4ff;
  color: #183b87;
  font-weight: 800;
}

.alert {
  padding: 12px 14px;
  border-radius: var(--radius);
  background: #fff7ed;
  color: #703500;
  border: 1px solid #fed7aa;
  font-weight: 700;
  font-size: 14px;
}

.no-results {
  padding: 28px;
  border: 1px dashed var(--line);
  border-radius: var(--radius);
  background: #fff;
  text-align: center;
}

@media (max-width: 1100px) {
  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .category-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .hero-inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 850px) {
  body {
    padding-bottom: 62px;
  }

  .site-top-inner {
    justify-content: center;
  }

  .top-list {
    display: none;
  }

  .header-inner {
    min-height: auto;
    padding: 10px 0;
    grid-template-columns: auto auto auto;
    gap: 10px;
  }

  .brand {
    min-width: 0;
  }

  .brand-name {
    font-size: 14px;
  }

  .brand-tagline,
  .header-actions .pill-btn,
  .header-actions .search-toggle-desktop {
    display: none;
  }

  .header-actions {
    gap: 6px;
  }

  .icon-btn.language-toggle {
    min-width: 52px;
    padding: 0 8px;
  }

  .search-shell {
    grid-column: 1 / -1;
    order: 3;
  }

  .menu-btn {
    display: inline-flex;
  }

  .site-nav {
    display: none;
  }

  .site-nav.open {
    display: block;
  }

  .site-nav-inner {
    display: grid;
    gap: 0;
    padding: 8px 0;
  }

  .site-nav a {
    padding: 12px 0;
  }

  .hero {
    min-height: auto;
    background-position: center;
  }

  .hero-inner {
    padding: 44px 0 34px;
  }

  .hero-trust,
  .metric-grid,
  .review-strip,
  .guide-link-grid,
  .local-proof-grid,
  .content-grid,
  .footer-grid,
  .field-grid,
  .split,
  .offer-band,
  .shop-shell,
  .product-detail-grid,
  .spec-list {
    grid-template-columns: 1fr;
  }

  .category-grid {
    display: flex;
    overflow-x: auto;
    padding-bottom: 8px;
    scroll-snap-type: x mandatory;
  }

  .category-card {
    min-width: 210px;
    scroll-snap-align: start;
  }

  .section {
    padding: 46px 0;
  }

  .section-head {
    display: block;
  }

  .filters {
    position: static;
    display: none;
  }

  .filters.open {
    display: block;
    margin-bottom: 14px;
  }

  .product-toolbar {
    flex-wrap: wrap;
  }

  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .product-body {
    padding: 11px;
  }

  .product-title {
    font-size: 14px;
  }

  .product-desc {
    font-size: 12px;
  }

  .product-price {
    font-size: 18px;
  }

  .product-actions {
    grid-template-columns: 1fr;
  }

  .mobile-bottom-nav {
    display: grid;
  }

  .product-modal-grid {
    grid-template-columns: 1fr;
  }

  .product-detail-hero {
    padding: 44px 0 38px;
  }
}

@media (max-width: 460px) {
  .site-top-inner,
  .header-inner,
  .site-nav-inner,
  .container,
  .hero-inner {
    width: min(100% - 22px, var(--max));
  }

  .product-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .product-card {
    border-radius: 7px;
  }

  .product-actions {
    grid-template-columns: 1fr 1fr;
  }

  .product-actions .primary-btn,
  .product-actions .outline-btn {
    min-height: 44px;
    font-size: 13px;
  }

  .badge-stack {
    left: 7px;
    top: 7px;
  }

  .badge {
    font-size: 10px;
  }
}

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