:root {
  --page: #fff;
  --white: #fff;
  --ink: #161616;
  --text: #333;
  --muted: #777;
  --line: #e6e6e6;
  --gold: #c7a24c;
  --purple: #5734d9;
  --black: #080808;
  --shadow: 0 16px 42px rgba(0, 0, 0, 0.14);
  --container: 1190px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--page);
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  line-height: 1.55;
  zoom: 1.25;
}
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
img { display: block; max-width: 100%; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 2px 14px rgba(0,0,0,.04);
}
.top-notice {
  background: #111;
  color: #fff;
  font-size: 12px;
}
.notice-shell {
  width: min(var(--container), calc(100% - 44px));
  min-height: 34px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
}
.notice-shell a {
  color: #f0cf74;
  font-weight: 900;
}
.header-shell {
  max-width: var(--container);
  min-height: 76px;
  margin: 0 auto;
  padding: 0 22px;
  display: flex;
  align-items: center;
  gap: 24px;
}
.brand-logo {
  flex: 0 0 168px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.brand-word {
  color: #111;
  font-size: 21px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: 7px;
}
.brand-word small {
  display: block;
  margin-top: 5px;
  text-align: center;
  font-size: 8px;
  letter-spacing: 4px;
}
.brand-icon {
  width: 45px;
  height: 45px;
  display: grid;
  place-items: center;
  background: #111;
  color: #fff;
  font-size: 28px;
}
.desktop-nav {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
.desktop-nav > a,
.nav-item > button {
  border: 0;
  background: transparent;
  color: #111;
  padding: 27px 0;
  font-size: 12px;
  font-weight: 900;
  white-space: nowrap;
}
.nav-item > button i { margin-left: 4px; font-size: 9px; }
.nav-item { position: relative; }
.mega-menu,
.drop-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  min-width: 820px;
  padding: 28px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  transform: translateX(-50%) translateY(12px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .18s ease, transform .18s ease;
}
.nav-item:hover .mega-menu,
.nav-item:hover .drop-menu,
.nav-item.open .mega-menu,
.nav-item.open .drop-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.compact .drop-menu {
  min-width: 255px;
  padding: 12px 0;
}
.compact .drop-menu.wide { min-width: 330px; }
.mega-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.mega-grid h3 {
  margin: 0 0 10px;
  font-size: 13px;
  color: #111;
}
.mega-grid a,
.drop-menu a {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 8px 0;
  color: #555;
  font-size: 13px;
  font-weight: 700;
}
.drop-menu a { padding: 10px 18px; }
.nav-item .mega-menu {
  left: 0;
  min-width: 510px;
  max-width: min(510px, calc(100vw - 32px));
  padding: 0;
  transform: translateY(12px);
}
.nav-item:hover .mega-menu,
.nav-item.open .mega-menu { transform: translateY(0); }
.watches-menu-shell { display: grid; grid-template-columns: 220px minmax(240px, 1fr); min-height: 280px; }
.watches-menu-primary { padding: 12px 0; border-right: 1px solid var(--line); background: #fff; }
.watches-menu-primary a,
.watches-menu-secondary a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 18px;
  color: #666;
  font-size: 13px;
  font-weight: 700;
}
.watches-menu-primary a:hover,
.watches-menu-primary a.active { color: var(--gold); background: #fafafa; }
.watches-menu-primary i { font-size: 10px; color: #aaa; }
.watches-menu-secondary { padding: 12px 0; background: #fff; }
.watches-menu-secondary a:hover { color: var(--gold); background: #fafafa; }
.watches-menu-secondary .watches-menu-all { margin-bottom: 5px; color: #222; font-weight: 900; }
.watches-menu-secondary span { color: var(--muted); font-size: 11px; }
.header-actions {
  flex: 0 0 338px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
}
.search-form {
  width: 222px;
  height: 44px;
  display: flex;
  align-items: center;
  background: #f8f8f8;
  border: 1px solid #eee;
  border-radius: 999px;
  overflow: hidden;
}
.search-form input {
  flex: 1;
  min-width: 0;
  height: 100%;
  border: 0;
  outline: 0;
  padding: 0 14px;
  background: transparent;
}
.search-form button {
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: var(--gold);
  color: #fff;
  font-weight: 900;
}
.account-link,
.cart-link {
  width: 39px;
  height: 39px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 4px 14px rgba(0,0,0,.08);
}
.cart-link {
  position: relative;
  background: #111;
  color: #fff;
}
.cart-link span {
  position: absolute;
  top: -4px;
  right: -4px;
  width: 18px;
  height: 18px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #fff;
  color: #111;
  font-size: 11px;
}
.mobile-trigger { display: none; }

.hero {
  min-height: 560px;
  display: grid;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(0,0,0,.74), rgba(0,0,0,.18)),
    var(--hero-image, #111);
  background-position: center;
  background-size: cover;
  color: #fff;
}
.hero-inner {
  width: min(var(--container), calc(100% - 44px));
  margin: 0 auto;
}
.hero .eyebrow { color: #dcbf72; }
.hero h1 {
  max-width: 650px;
  margin: 12px 0 16px;
  color: #fff;
  font-size: clamp(42px, 6vw, 78px);
  line-height: 1.02;
}
.hero p {
  max-width: 560px;
  margin: 0 0 28px;
  color: rgba(255,255,255,.82);
  font-size: 17px;
}
.eyebrow {
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}
.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 44px;
  padding: 0 20px;
  border: 1px solid var(--line);
  border-radius: 2px;
  background: #fff;
  color: #111;
  font-weight: 900;
}
.btn-dark { background: #111; border-color: #111; color: #fff; }
.btn-gold { background: var(--gold); border-color: var(--gold); color: #fff; }
.btn-purple { background: var(--purple); border-color: var(--purple); color: #fff; }
.btn-full { width: 100%; }
.button-row { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }

.home-banner,
.source-section {
  width: min(var(--container), calc(100% - 44px));
  margin: 18px auto;
  padding: 8px 0;
}
.home-top-grid {
  width: min(var(--container), calc(100% - 44px));
  margin: 6px auto 0;
  display: grid;
  grid-template-columns: 178px minmax(0, 1fr) 292px;
  gap: 20px;
  align-items: start;
}
.home-category-menu {
  display: grid;
  border: 1px solid var(--line);
  background: #fff;
}
.home-category-menu a {
  min-height: 39px;
  display: flex;
  align-items: center;
  padding: 0 14px;
  border-bottom: 1px solid var(--line);
  color: #242424;
  font-size: 13px;
  font-weight: 800;
}
.home-category-menu a:last-child {
  border-bottom: 0;
}
.home-category-menu a:hover {
  color: var(--gold);
}
.home-banner {
  display: block;
  overflow: hidden;
  background: #fff;
}
.home-top-grid .home-banner {
  width: auto;
  margin: 0;
  height: 382px;
}
.home-top-grid .home-banner picture,
.home-top-grid .home-banner img { height: 100%; }
.home-top-grid .home-banner img { object-fit: cover; }
.banner-copy {
  padding: 54px 24px 54px 58px;
}
.banner-copy span {
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.banner-copy h1 {
  max-width: 520px;
  margin: 12px 0 16px;
  font-size: clamp(42px, 5vw, 72px);
  line-height: .98;
}
.banner-copy p {
  max-width: 430px;
  color: #5c5449;
  font-size: 16px;
}
.home-banner picture,
.home-banner img {
  display: block;
  width: 100%;
}
.home-banner img {
  height: auto;
}
.home-premium-panel {
  min-width: 0;
}
.home-premium-panel .premium-head {
  justify-content: flex-start;
  gap: 8px;
  min-height: 28px;
  margin-bottom: 8px;
}
.home-premium-panel .premium-head h2 {
  font-size: 18px;
  text-align: left;
}
.fire-icon {
  width: 20px;
  height: 20px;
}
.stars {
  min-height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}
.home-premium-panel .premium-image img {
  width: 100%;
  aspect-ratio: 1;
  min-height: 0;
  height: auto;
  object-fit: cover;
}
.premium-list {
  display: grid;
  gap: 10px;
  margin-top: 10px;
}
.premium-mini-card {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
}
.premium-mini-thumb {
  width: 76px;
  height: 88px;
  display: block;
  background: #f7f7f7;
  overflow: hidden;
}
.premium-mini-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.premium-mini-card h3 {
  margin: 0 0 4px;
  font-size: 13px;
  line-height: 1.32;
  font-weight: 900;
}
.premium-mini-card .stars {
  color: #777;
  font-size: 12px;
}
.premium-mini-card .price {
  margin: 4px 0 0;
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
}
.mobile-brand-strip {
  width: min(var(--container), calc(100% - 44px));
  margin: 18px auto 0;
  display: none;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0;
  border: 1px solid var(--line);
  background: #fff;
}
.mobile-brand-strip a {
  padding: 12px 18px;
  border-right: 1px solid var(--line);
  color: #222;
  font-weight: 900;
  font-size: 13px;
}
.source-section {
  margin-top: 6px;
}
.premium-head {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}
.premium-head h2,
.source-heading h2,
.why-source > h2 {
  margin: 0;
  text-align: center;
  font-size: 27px;
}
.fire-mark {
  font-size: 28px;
}
.premium-grid {
  display: grid;
  grid-template-columns: 1.1fr repeat(2, minmax(0, .75fr));
  gap: 26px;
  align-items: stretch;
}
.premium-image {
  background: #f4f1ec;
}
.premium-image img {
  width: 100%;
  height: 100%;
  min-height: 380px;
  object-fit: cover;
}
.source-heading {
  text-align: center;
  margin-bottom: 12px;
}
.source-heading p {
  max-width: 740px;
  margin: 6px auto 0;
  color: var(--muted);
}
.category-tabs {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-bottom: 12px;
}
.category-tabs button {
  min-width: 118px;
  border: 1px solid var(--line);
  background: #fff;
  padding: 8px 16px;
  color: #222;
  font-weight: 900;
}
.category-tabs button.active {
  background: #111;
  border-color: #111;
  color: #fff;
}
.home-product-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 16px 14px;
}
.home-product-card {
  position: relative;
  min-width: 0;
  background: #fff;
  text-align: center;
  border: 1px solid #eee;
  border-radius: 6px;
  padding: 0 0 6px;
  transition: box-shadow .2s ease;
}
.home-product-card:hover {
  box-shadow: 0 4px 20px rgba(0,0,0,.08);
}
.home-media {
  position: relative;
  display: block;
  aspect-ratio: 1 / .92;
  background: #f7f7f7;
  overflow: hidden;
}
.home-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity .22s ease, transform .22s ease;
}
.home-media .hover-img {
  opacity: 0;
}
.home-product-card.has-hover-image:hover .home-media .primary-img {
  opacity: 0;
}
.home-product-card.has-hover-image:hover .home-media .hover-img {
  opacity: 1;
}
.home-product-card.has-hover-image:hover .home-media .primary-img,
.home-product-card.has-hover-image:hover .home-media .hover-img {
  transform: scale(1.04);
}
.home-badges {
  position: absolute;
  top: 12px;
  left: 12px;
  display: grid;
  gap: 5px;
  text-align: left;
}
.home-badges span {
  width: fit-content;
  padding: 4px 8px;
  background: var(--gold);
  color: #fff;
  font-size: 11px;
  font-weight: 900;
}
.home-badges span + span {
  background: #111;
}
.home-product-card h3 {
  min-height: 52px;
  margin: 10px 8px 4px;
  font-size: 13px;
  line-height: 1.35;
  font-weight: 900;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}
.home-product-card .stars {
  color: #6f6f6f;
  font-size: 12px;
  letter-spacing: 0;
}
.home-product-card .price {
  margin: 4px 0 0;
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
}
.home-product-card .price span {
  display: block;
  color: #8a8a8a;
  font-size: 12px;
  font-weight: 400;
}
.why-source {
  padding-top: 10px;
}
.why-top-grid,
.why-feature-grid,
.article-source-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.why-top-grid {
  margin-top: 24px;
}
.why-top-grid article,
.why-feature-grid article {
  min-height: 118px;
  padding: 26px;
  text-align: center;
  background: #fff;
  border: 1px solid var(--line);
}
.why-top-grid h3 {
  margin: 0 0 8px;
  font-size: 18px;
}
.wide-watch-banner {
  margin: 32px 0;
  max-height: 340px;
  overflow: hidden;
  background: #f5f3ef;
}
.wide-watch-banner img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  object-position: center;
}
.why-feature-grid {
  grid-template-columns: repeat(4, 1fr);
}
.why-feature-grid strong {
  display: block;
  color: #111;
  font-size: 16px;
}
.why-feature-grid p {
  color: var(--muted);
}
.article-source-grid article {
  background: #fff;
}
.article-source-grid img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  background: #f5f5f5;
}
.article-source-grid time {
  display: inline-block;
  margin-top: 12px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
}
.article-source-grid h3 {
  margin: 8px 0 0;
  font-size: 18px;
}
.faq-section {
  padding: 42px;
  background: #f8f7f5;
}
.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 28px;
}
.faq-item {
  padding: 18px 0;
  border-bottom: 1px solid #ded8ce;
}
.faq-item h3 {
  margin: 0 0 8px;
  font-size: 17px;
}
.faq-item p {
  margin: 0;
  color: #5e5e5e;
}
.seo-copy {
  display: grid;
  gap: 20px;
  margin-bottom: 70px;
}
.seo-copy section {
  max-width: 960px;
  margin: 0 auto;
}
.seo-copy h2 {
  margin: 0 0 8px;
  font-size: 25px;
}
.seo-copy p {
  margin: 0;
  color: #4a4a4a;
}

.trust-strip {
  width: min(var(--container), calc(100% - 44px));
  margin: -44px auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: #fff;
  box-shadow: var(--shadow);
  position: relative;
  z-index: 2;
}
.trust-strip div {
  padding: 24px 26px;
  border-right: 1px solid var(--line);
}
.trust-strip strong { display: block; color: #111; font-size: 17px; }
.trust-strip span { color: var(--muted); }

.section,
.page-head,
.catalog-layout,
.product-layout {
  width: min(var(--container), calc(100% - 44px));
  margin: 70px auto;
}
.page-head { margin: 38px auto 28px; }
.breadcrumbs {
  display: block;
  color: var(--muted);
  font-size: 12px;
  margin-bottom: 10px;
}
h1, h2, h3 { color: #111; line-height: 1.16; }
.section-title {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
  margin-bottom: 28px;
}
.section-title h2,
.page-head h1 {
  margin: 8px 0 0;
  font-size: clamp(30px, 4vw, 48px);
}
.section-title p,
.page-head p {
  max-width: 660px;
  color: var(--muted);
}
.brand-tiles {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}
.brand-tile {
  min-height: 126px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  background: #111;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.brand-tile::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 0%, rgba(199,162,76,.65), transparent 45%);
}
.brand-tile strong,
.brand-tile span { position: relative; }
.brand-tile strong { color: #fff; }
.brand-tile span { color: rgba(255,255,255,.72); }

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 26px;
}
.product-card {
  min-width: 0;
  background: #fff;
  border: 1px solid #eee;
  position: relative;
}
.product-card .media {
  position: relative;
  aspect-ratio: 1;
  background: #f5f5f5;
  overflow: hidden;
}
.product-card .media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .25s ease;
}
.product-card:hover .media img { transform: scale(1.045); }
.badge-stack {
  position: absolute;
  top: 12px;
  left: 12px;
  display: grid;
  gap: 5px;
  z-index: 2;
}
.badge {
  width: fit-content;
  padding: 5px 8px;
  background: #111;
  color: #fff;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}
.badge.sale { background: var(--gold); }
.quick-view {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 16px;
  opacity: 0;
  transform: translateY(10px);
  transition: .2s ease;
}
.product-card:hover .quick-view {
  opacity: 1;
  transform: translateY(0);
}
.product-info {
  padding: 18px;
  text-align: center;
}
.product-info .cats {
  min-height: 19px;
  color: var(--muted);
  font-size: 12px;
}
.stars {
  color: var(--gold);
  letter-spacing: 1px;
  font-size: 12px;
}
.product-info h3 {
  min-height: 64px;
  margin: 8px 0 12px;
  font-size: 15px;
  line-height: 1.38;
}
.select-field {
  width: 100%;
  height: 40px;
  border: 1px solid var(--line);
  background: #fff;
  padding: 0 12px;
}
.price {
  color: var(--gold);
  font-weight: 900;
}
.muted { color: var(--muted); }

.service-grid,
.article-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.service-card,
.article-card,
.review-card,
.info-panel {
  background: #fff;
  border: 1px solid var(--line);
  padding: 28px;
}
.service-icon {
  width: 42px;
  height: 42px;
  margin-bottom: 14px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--gold);
  color: #fff;
  font-weight: 900;
}

.catalog-layout {
  display: grid;
  grid-template-columns: 255px minmax(0, 1fr);
  gap: 34px;
  margin-top: 0;
}
.sidebar {
  height: fit-content;
  background: #fff;
  border: 1px solid var(--line);
  padding: 24px;
}
.sidebar h3 {
  margin: 0 0 13px;
  font-size: 15px;
  text-transform: uppercase;
}
.filter-link {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid #f1f1f1;
  color: #555;
  font-weight: 700;
}
.filter-block { margin-top: 26px; }
.range-stack { display: grid; gap: 10px; color: var(--muted); }
.range-stack input { width: 100%; }
.catalog-tools {
  margin-bottom: 22px;
  padding: 14px 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  background: #fff;
  border: 1px solid var(--line);
}
.catalog-display-tools { display: flex; align-items: center; justify-content: flex-end; flex-wrap: wrap; gap: 14px; }
.catalog-page-size { display: inline-flex; align-items: center; gap: 7px; color: var(--muted); font-size: 12px; font-weight: 700; }
.catalog-page-size button { border: 0; padding: 0; background: transparent; color: var(--muted); font: inherit; cursor: pointer; }
.catalog-page-size button:hover, .catalog-page-size button.active { color: var(--ink); font-weight: 900; }
.catalog-page-size i { color: #c5c5c5; font-style: normal; }
.catalog-view-toggle { display: inline-flex; align-items: center; gap: 7px; }
.catalog-view-toggle button { display: grid; width: 29px; height: 29px; place-items: center; border: 0; background: transparent; color: #b9b9b9; cursor: pointer; }
.catalog-view-toggle button:nth-child(1) i { font-size: 17px; }
.catalog-view-toggle button:nth-child(2) i { font-size: 13px; }
.catalog-view-toggle button:hover, .catalog-view-toggle button.active { color: #222; }
.search-summary h1 {
  margin: 0 0 8px;
  font-size: 28px;
}
.empty-state {
  grid-column: 1 / -1;
  margin: 0;
  padding: 24px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--muted);
  font-weight: 800;
  text-align: center;
}
.catalog-page { padding-top: 30px; }
.catalog-breadcrumbs { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 16px; color: var(--muted); font-size: 13px; }
.catalog-breadcrumbs strong { color: var(--ink); }
.catalog-page-head { margin: 0 0 28px; padding-bottom: 24px; border-bottom: 1px solid var(--line); }
.catalog-page-head h1 { margin: 0; font-size: clamp(28px, 3vw, 42px); }
.catalog-page-head p { max-width: 800px; margin: 12px 0 0; color: var(--muted); line-height: 1.65; }
.sidebar-cats { display: grid; }
.sidebar-cats a { display: flex; justify-content: space-between; gap: 10px; padding: 9px 0; border-bottom: 1px solid #f1f1f1; color: #555; font-size: 13px; font-weight: 700; }
.sidebar-cats a:hover, .sidebar-cats a.active { color: var(--gold); }
.sidebar-cats span { color: var(--muted); font-size: 12px; font-weight: 600; }
.sidebar-subcats a { font-size: 12px; }
.catalog-empty-filter { margin: 0; color: var(--muted); font-size: 12px; }
.catalog-price-inputs { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.catalog-price-inputs label, .catalog-filter-label { display: grid; gap: 6px; color: var(--muted); font-size: 12px; font-weight: 800; }
.catalog-price-inputs input, .filter-block select, .catalog-tools select { width: 100%; min-height: 38px; border: 1px solid var(--line); background: #fff; color: var(--ink); padding: 0 9px; }
.catalog-tools label { display: flex; align-items: center; gap: 8px; color: var(--muted); font-size: 12px; font-weight: 800; }
.catalog-tools select { width: auto; min-width: 190px; }
.catalog-product-grid { align-items: stretch; }
.catalog-product-grid.catalog-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.catalog-product-grid.catalog-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.catalog-product-card { display: flex; flex-direction: column; }
.catalog-product-card .home-media { aspect-ratio: 1; background: #fafafa; }
.catalog-product-card .home-media .primary-img { height: 100%; object-fit: contain; }
.catalog-media-missing { display: grid; width: 100%; height: 100%; place-items: center; color: var(--muted); font-size: 13px; font-weight: 700; }
.catalog-product-card h3 { min-height: 58px; margin: 15px 16px 8px; font-size: 15px; line-height: 1.4; }
.catalog-product-card .stars { min-height: 17px; margin: 0 16px; }
.catalog-product-card .price { margin: 8px 16px 16px; }
.catalog-product-card .price del, .lw-price del { margin-right: 7px; color: var(--muted); font-weight: 600; }
.catalog-product-card .price ins, .lw-price ins { color: var(--gold); font-weight: 900; text-decoration: none; }
.catalog-pagination { display: flex; justify-content: center; flex-wrap: wrap; gap: 6px; margin-top: 30px; }
.catalog-pagination button { min-width: 38px; height: 38px; border: 1px solid var(--line); background: #fff; color: var(--ink); padding: 0 11px; font-weight: 800; }
.catalog-pagination button:hover:not(:disabled), .catalog-pagination button.active { border-color: var(--gold); background: var(--gold); color: #fff; }
.catalog-pagination button:disabled { cursor: not-allowed; opacity: .45; }
.catalog-pagination-ellipsis { display: grid; min-width: 28px; height: 38px; place-items: center; color: var(--muted); font-weight: 900; }

@media (min-width: 1041px) {
  /* Move only the Bestsellers block upward without resizing the banner. */
  .home-top-grid + .mobile-brand-strip + .bestsellers-section { margin-top: -34px; }
}

.product-layout {
  margin-top: 24px;
  margin-bottom: 42px;
}
.product-top {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(390px, .98fr);
  gap: 36px;
  align-items: center;
  padding: 24px 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}
.product-side-tabs {
  position: sticky;
  top: 0;
  z-index: 4;
  display: flex;
  gap: 18px;
  margin: 0 0 26px;
  padding: 8px;
  border-radius: 999px;
  background: #f2f2f2;
}
.product-side-tabs button {
  border: 0;
  border-radius: 22px;
  background: transparent;
  padding: 12px 18px;
  font-weight: 900;
}
.product-side-tabs button.active {
  background: var(--purple);
  color: #fff;
}
.gallery-main {
  min-height: 320px;
  position: relative;
  display: grid;
  place-items: center;
  background: #fff;
  overflow: hidden;
}
.gallery-main img {
  width: min(62%, 310px);
  height: 310px;
  min-height: 0;
  object-fit: contain;
}
.gallery-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: rgba(255,255,255,.9);
  box-shadow: 0 4px 12px rgba(0,0,0,.12);
}
.gallery-arrow.prev { left: 14px; }
.gallery-arrow.next { right: 14px; }
.thumbs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(68px, 84px));
  justify-content: center;
  gap: 14px;
  margin-top: 12px;
}
.thumbs button {
  padding: 0;
  border: 2px solid transparent;
  background: #fff;
}
.thumbs button.active { border-color: var(--gold); }
.thumbs img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
}
.summary {
  padding: 12px 0;
  background: #fff;
  border: 0;
}
.summary .cats {
  margin: 0 0 6px;
}
.summary h1 {
  margin: 4px 0 10px;
  font-size: 30px;
}
.summary .stars {
  margin-bottom: 10px;
}
.summary .price {
  margin: 0 0 14px;
  font-size: 24px;
}
.variation {
  margin: 14px 0 12px;
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
}
.variation label {
  margin-bottom: 0;
  font-weight: 900;
}
.variation-message {
  margin: 8px 0 0;
  padding: 10px 12px;
  border: 1px solid #d9c591;
  background: #fff8df;
  color: #5c4611;
  font-weight: 800;
}
.buy-row {
  display: flex;
  flex-wrap: nowrap;
  gap: 8px;
  align-items: center;
}
.buy-row .btn {
  flex: 1 1 0;
  min-width: 0;
}
.qty {
  height: 44px;
  flex: 0 0 110px;
  display: grid;
  grid-template-columns: 32px 46px 32px;
  border: 1px solid var(--line);
}
.qty button,
.qty input {
  border: 0;
  background: #fff;
  text-align: center;
}
.delivery-grid {
  margin-top: 16px;
  display: grid;
  grid-template-columns: 1fr;
  padding: 12px 16px;
  border: 1px solid var(--line);
  border-radius: 10px;
}
.delivery-grid div {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr) minmax(126px, auto);
  gap: 10px;
  align-items: center;
  padding: 7px 0;
}
.product-service-icon {
  display: inline-flex;
  width: auto;
  height: auto;
  margin-bottom: 0;
  border-radius: 0;
  background: transparent;
  color: var(--purple);
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
}
.delivery-grid strong {
  color: #222;
}
.delivery-grid span {
  display: block;
  color: #111;
  text-align: right;
  font-size: 12px;
  line-height: 1.25;
}
.payment-methods {
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}
.payment-method {
  min-height: 0;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #222;
  font-size: 10px;
  font-weight: 800;
}
.payment-method i {
  color: #111;
  font-size: 15px;
}
.product-section {
  margin-top: 42px;
  padding: 34px;
  background: #fff;
  border: 1px solid var(--line);
}
.product-section h2 { margin-top: 0; }
.product-detail-block {
  scroll-margin-top: 92px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.product-detail-block:first-of-type {
  padding-top: 0;
  border-top: 0;
}
.source-copy p { color: #444; }
.detail-gallery {
  margin: 24px 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.detail-gallery img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.product-spec-info {
  margin-top: 24px;
  padding: 22px;
  border: 1px solid var(--line);
  background: #fafafa;
}
.spec-table {
  display: grid;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.spec-row {
  display: grid;
  grid-template-columns: 220px 1fr;
}
.spec-row dt,
.spec-row dd {
  margin: 0;
  padding: 14px 16px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.spec-row dt {
  background: #f8f8f8;
  color: #111;
  font-weight: 900;
}
.reviews { display: grid; gap: 14px; }
.review-card strong { display: block; color: #111; }
.review-card time { display: block; color: var(--muted); font-size: 12px; }
.review-form {
  margin-top: 28px;
  display: grid;
  gap: 12px;
}
.review-form input,
.review-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  padding: 12px;
}
.review-message {
  margin: 0;
  padding: 12px 14px;
  border: 1px solid #d9c591;
  background: #fff8df;
  color: #5c4611;
  font-weight: 800;
}

.drawer,
.modal {
  position: fixed;
  inset: 0;
  z-index: 160;
}
.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.5);
}
.drawer-panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(420px, 92vw);
  height: 100%;
  padding: 28px;
  overflow: auto;
  background: #fff;
  box-shadow: var(--shadow);
}
.left-drawer .drawer-panel {
  left: 0;
  right: auto;
}
.close-text,
.modal-close {
  border: 0;
  background: transparent;
  font-weight: 900;
}
.close-text { padding: 0 0 18px; }
.modal-close {
  position: absolute;
  top: 12px;
  right: 16px;
  font-size: 26px;
}
.cart-line {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}
.cart-line img {
  width: 64px;
  height: 64px;
  object-fit: cover;
}
.cart-line small,
.cart-qty {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
}
.quick-panel,
.coupon-panel {
  position: relative;
  width: min(980px, 92vw);
  max-height: 86vh;
  margin: 6vh auto;
  padding: 30px;
  overflow: auto;
  background: #fff;
  box-shadow: var(--shadow);
}
.quick-grid {
  display: grid;
  grid-template-columns: 380px minmax(0, 1fr);
  gap: 30px;
}
.quick-grid img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}
.mobile-search {
  display: flex;
  margin-bottom: 18px;
  border: 1px solid var(--line);
}
.mobile-search input {
  flex: 1;
  min-width: 0;
  border: 0;
  padding: 12px;
}
.mobile-search button {
  border: 0;
  background: var(--gold);
  color: #fff;
  padding: 0 14px;
  font-weight: 900;
}
.left-drawer a {
  display: block;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
  font-weight: 900;
}
.coupon-panel {
  width: min(420px, 92vw);
  text-align: center;
}
.coupon-panel input {
  width: 100%;
  margin: 14px 0;
  border: 1px solid var(--line);
  padding: 12px;
}
.coupon-teaser {
  position: fixed;
  left: 14px;
  bottom: 80px;
  z-index: 90;
}
.coupon-teaser button:first-child {
  width: 66px;
  height: 66px;
  border: 0;
  border-radius: 50%;
  background: #000;
  color: #fff;
  font-weight: 900;
  font-size: 12px;
  line-height: 1.1;
}
.teaser-x {
  position: absolute;
  top: -7px;
  right: -7px;
  width: 21px;
  height: 21px;
  border: 0;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,.18);
}
.scroll-top {
  position: fixed;
  right: 26px;
  bottom: 78px;
  z-index: 100;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 4px 14px rgba(0,0,0,.16);
}
.whatsapp-float {
  position: fixed;
  right: 16px;
  bottom: 100px;
  z-index: 99;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  font-size: 0;
  box-shadow: 0 4px 14px rgba(0,0,0,.2);
}
.sticky-add {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 95;
  min-height: 78px;
  background: rgba(255,255,255,.98);
  border-top: 1px solid var(--line);
  box-shadow: 0 -8px 22px rgba(0,0,0,.1);
}
.sticky-inner {
  width: min(var(--container), calc(100% - 44px));
  min-height: 78px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr) auto auto;
  gap: 14px;
  align-items: center;
}
.sticky-inner img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
}
.site-footer {
  background: #0f0f0f;
  color: #fff;
  padding: 62px 22px 24px;
}
.footer-shell {
  width: min(var(--container), 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.45fr 1fr 1fr 1fr;
  gap: 36px;
}
.footer-logo .brand-word { color: #fff; }
.site-footer p,
.site-footer a { color: rgba(255,255,255,.72); }
.site-footer a { display: block; margin: 7px 0; }
.dealer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.dealer-badges span {
  padding: 6px 8px;
  background: #fff;
  color: #111;
  font-size: 11px;
  font-weight: 800;
}
.footer-bottom {
  width: min(var(--container), 100%);
  margin: 34px auto 0;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.55);
  font-size: 12px;
}

@media (max-width: 1040px) {
  .notice-shell { justify-content: center; flex-wrap: wrap; padding: 8px 0; }
  .desktop-nav, .search-form, .account-link { display: none; }
  .mobile-trigger {
    display: inline-flex;
    border: 0;
    background: #111;
    color: #fff;
    padding: 10px 12px;
    font-weight: 900;
  }
  .header-actions { flex: 1; }
  .home-top-grid {
    grid-template-columns: minmax(0, 1fr) 300px;
  }
  .home-category-menu {
    display: none;
  }
  .mobile-brand-strip {
    display: flex;
  }
  .home-banner,
  .premium-grid,
  .trust-strip,
  .brand-tiles,
  .service-grid,
  .article-grid { grid-template-columns: repeat(2, 1fr); }
  .home-product-grid,
  .why-top-grid,
  .why-feature-grid,
  .article-source-grid,
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .catalog-layout,
  .product-top,
  .footer-shell,
  .quick-grid { grid-template-columns: 1fr; }
  .catalog-product-grid,
  .catalog-product-grid.catalog-cols-3,
  .catalog-product-grid.catalog-cols-4 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .gallery-main { min-height: 320px; }
  .gallery-main img {
    height: 300px;
    min-height: 0;
  }
}

@media (max-width: 620px) {
  .top-notice { font-size: 11px; }
  .notice-shell { width: calc(100% - 28px); gap: 8px; text-align: center; }
  .header-shell { padding: 0 14px; gap: 12px; min-height: 74px; }
  .brand-logo { flex-basis: 148px; }
  .brand-word { font-size: 18px; letter-spacing: 5px; }
  .brand-icon { width: 38px; height: 38px; }
  .hero { min-height: 500px; }
  .home-top-grid {
    width: calc(100% - 28px);
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .home-banner { min-height: 0; }
  .banner-copy { padding: 32px 22px; }
  .home-banner img { height: auto; }
  .mobile-brand-strip a { flex: 1 1 33.33%; text-align: center; padding: 10px 8px; }
  .premium-head h2,
  .source-heading h2,
  .why-source > h2 { font-size: 24px; }
  .premium-image img,
  .wide-watch-banner img { min-height: 0; height: 240px; }
  .faq-section { padding: 26px 20px; }
  .hero-inner,
  .home-banner,
  .mobile-brand-strip,
  .source-section,
  .section,
  .page-head,
  .catalog-layout,
  .product-layout,
  .trust-strip,
  .sticky-inner { width: calc(100% - 28px); }
  .trust-strip,
  .brand-tiles,
  .premium-grid,
  .home-product-grid,
  .why-top-grid,
  .why-feature-grid,
  .article-source-grid,
  .faq-grid,
  .service-grid,
  .article-grid,
  .product-grid,
  .delivery-grid,
  .detail-gallery { grid-template-columns: 1fr; }
  .catalog-product-grid,
  .catalog-product-grid.catalog-cols-3,
  .catalog-product-grid.catalog-cols-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .section-title,
  .catalog-tools { align-items: start; flex-direction: column; }
  .catalog-tools label { width: 100%; justify-content: space-between; }
  .catalog-tools select { flex: 1; }
  .summary,
  .product-section { padding: 22px; }
  .product-top { padding: 22px; }
  .product-side-tabs {
    position: static;
    overflow-x: auto;
    border-radius: 0;
  }
  .product-side-tabs button {
    flex: 0 0 auto;
    padding: 10px 14px;
  }
  .gallery-main {
    min-height: 300px;
  }
  .gallery-main img {
    width: min(86%, 320px);
    height: 280px;
  }
  .variation {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .buy-row {
    flex-wrap: wrap;
  }
  .delivery-grid div {
    grid-template-columns: 24px minmax(0, 1fr);
  }
  .delivery-grid span {
    grid-column: 2;
    text-align: left;
  }
  .buy-row .btn { width: 100%; }
  .spec-row { grid-template-columns: 1fr; }
  .sticky-inner { grid-template-columns: 48px minmax(0, 1fr); }
  .sticky-inner .price,
  .sticky-inner .btn { display: none; }
}

/* LuffyWatch Phase 1 product-detail demo. */
.brand-avatar {
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid rgba(199, 162, 76, .55);
}
.brand-logo .brand-word {
  letter-spacing: 0;
  font-size: 20px;
}
.brand-logo .brand-word small:empty { display: none; }

.lw-product-page { background: #fff; color: #171717; }
.lw-product-shell,
.lw-detail-shell,
.lw-anchor-nav {
  width: min(1240px, calc(100% - 48px));
  margin-left: auto;
  margin-right: auto;
}
.lw-detail-shell,
.lw-anchor-nav { width: min(1440px, calc(100% - 64px)); }
.lw-product-shell { padding: 24px 0 42px; }
.lw-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 20px;
  color: #777;
  font-size: 12px;
}
.lw-breadcrumbs strong { color: #ad7c25; font-weight: 800; }
.lw-product-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(410px, .97fr);
  gap: 38px;
  align-items: start;
}
.lw-gallery,
.lw-summary {
  min-width: 0;
}
.lw-gallery {
  width: min(100%, 540px);
  justify-self: center;
}
.lw-main-image {
  position: relative;
  width: 100%;
  min-height: 0;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 10px;
  border: 1px solid #ededed;
  background: #f8f8f8;
}
.lw-main-image > img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.lw-gallery-arrow,
.lw-image-zoom {
  position: absolute;
  z-index: 2;
  display: grid;
  place-items: center;
  border: 0;
  color: #171717;
  background: rgba(255, 255, 255, .95);
  box-shadow: 0 5px 18px rgba(0, 0, 0, .16);
}
.lw-gallery-arrow {
  top: 50%;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  transform: translateY(-50%);
}
.lw-gallery-prev { left: 16px; }
.lw-gallery-next { right: 16px; }
.lw-image-zoom {
  top: 16px;
  right: 16px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
}
.lw-thumbnail-rail {
  display: flex;
  justify-content: center;
  gap: 9px;
  margin-top: 13px;
}
.lw-thumbnail-rail button {
  width: 80px;
  height: 80px;
  flex: 0 0 80px;
  overflow: hidden;
  padding: 0;
  border: 1px solid #e0e0e0;
  border-radius: 7px;
  background: #f8f8f8;
}
.lw-thumbnail-rail button.active { border: 2px solid var(--gold); }
.lw-thumbnail-rail img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.lw-thumbnail-rail .lw-thumbnail-overflow {
  border: 0;
  color: #d9b365;
  background: #1a1a1a;
  font-size: 20px;
  font-weight: 800;
}
.lw-summary {
  align-self: start;
  padding: 4px;
}
.lw-summary-top {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
}
.lw-brand-badge {
  display: inline-flex;
  padding: 7px 10px;
  border-radius: 5px;
  background: #bf913d;
  color: #fff;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .4px;
  text-transform: uppercase;
}
.lw-summary h1 {
  max-width: 620px;
  margin: 13px 0 8px;
  font-size: clamp(24px, 2vw, 27px);
  line-height: 1.14;
  letter-spacing: 0;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.lw-star-rating {
  display: flex;
  gap: 4px;
  margin: 0 0 14px;
  color: #d4a51a;
  font-size: 15px;
}
.lw-price {
  margin: 0 0 19px;
  color: #bd8f3f;
  font-size: 24px;
  font-weight: 900;
}
.lw-option-group { margin: 0 0 15px; }
.lw-option-group > span,
.lw-quantity-row > span {
  display: block;
  margin-bottom: 7px;
  color: #222;
  font-size: 12px;
  font-weight: 900;
}
.lw-option-list { display: flex; flex-wrap: wrap; gap: 8px; }
.lw-option-list button {
  min-height: 38px;
  padding: 0 13px;
  border: 1px solid #ddd;
  border-radius: 7px;
  background: #fff;
  color: #222;
  font-weight: 800;
}
.lw-option-list button.active {
  border-color: #bf913d;
  box-shadow: inset 0 0 0 1px #bf913d;
  color: #6b4913;
}
.lw-quantity-row { margin: 0 0 14px; }
.lw-qty-control {
  width: 144px;
  height: 40px;
  display: grid;
  grid-template-columns: 40px 1fr 40px;
  overflow: hidden;
  border: 1px solid #ddd;
  border-radius: 7px;
}
.lw-qty-control button,
.lw-qty-control input { border: 0; background: #fff; text-align: center; }
.lw-qty-control button { font-size: 20px; }
.lw-qty-control input { min-width: 0; border-left: 1px solid #ddd; border-right: 1px solid #ddd; }
.lw-buy-actions { display: grid; grid-template-columns: 1.22fr .78fr; gap: 10px; }
.lw-primary-action,
.lw-secondary-action,
.lw-whatsapp-action {
  min-height: 46px;
  border-radius: 6px;
  font-weight: 900;
  text-transform: uppercase;
}
.lw-primary-action {
  border: 1px solid #bd8f3f;
  background: #bd8f3f;
  color: #fff;
}
.lw-primary-action i { margin-right: 8px; }
.lw-secondary-action { border: 1px solid #bd8f3f; background: #fff; color: #a97924; }
.lw-whatsapp-action {
  width: 100%;
  margin-top: 9px;
  border: 0;
  background: #179b42;
  color: #fff;
  text-transform: none;
  font-size: 14px;
}
.lw-whatsapp-action i { margin-right: 8px; font-size: 17px; }
.lw-variation-message { margin: 10px 0 0; color: #aa3939; font-size: 13px; font-weight: 800; }
.lw-service-card {
  margin-top: 11px;
  overflow: hidden;
  border: 1px solid #e5e1da;
  border-radius: 9px;
  background: #fff;
}
.lw-service-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 20px;
  min-height: 33px;
  padding: 0 15px;
  border-bottom: 1px solid #f0eee9;
  color: #252525;
  font-size: 11px;
}
.lw-service-row:last-child { border-bottom: 0; }
.lw-service-row span { font-weight: 800; }
.lw-service-row i { width: 16px; margin-right: 8px; color: #bd8f3f; text-align: center; }
.lw-service-row strong { font-weight: 800; white-space: nowrap; }
.lw-service-row a { color: #94671b; font-weight: 900; text-decoration: underline; white-space: nowrap; }
.lw-payment-methods {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 11px;
  margin-top: 9px;
  color: #555;
  font-size: 11px;
  font-weight: 800;
}
.lw-payment-methods span { display: inline-flex; align-items: center; gap: 4px; white-space: nowrap; }
.lw-payment-methods i { color: #202020; font-size: 17px; }

.lw-anchor-nav {
  position: sticky;
  top: 122px;
  z-index: 40;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  border: 1px solid #ededed;
  border-radius: 8px 8px 0 0;
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 7px 18px rgba(0, 0, 0, .04);
}
.lw-anchor-nav a {
  min-height: 58px;
  display: grid;
  place-items: center;
  border-bottom: 2px solid transparent;
  color: #222;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}
.lw-anchor-nav a.active { border-bottom-color: #bd8f3f; color: #a87826; }
.lw-detail-shell { padding: 34px 12px 74px; }
.lw-detail-section {
  scroll-margin-top: 192px;
  padding: 42px 0;
  border-bottom: 1px solid #ececec;
}
.lw-detail-section h2 {
  margin: 0 0 22px;
  font-size: 26px;
  letter-spacing: 0;
  text-transform: uppercase;
}
.lw-description-copy { max-width: none; color: #3f3f3f; font-size: 16px; line-height: 1.8; }
.lw-description-copy p { margin: 0 0 18px; }
.lw-description-copy h3 { margin: 28px 0 8px; color: #181818; font-size: 17px; }
.lw-description-accordions { max-width: none; margin-top: 26px; border-top: 1px solid #e9e9e9; }
.lw-description-accordions details { border-bottom: 1px solid #e9e9e9; }
.lw-description-accordions summary { display: flex; align-items: center; justify-content: space-between; min-height: 54px; cursor: pointer; color: #202020; font-size: 15px; font-weight: 900; list-style: none; }
.lw-description-accordions summary::-webkit-details-marker { display: none; }
.lw-description-accordions summary i { color: #a87826; font-size: 12px; transition: transform .18s ease; }
.lw-description-accordions details[open] summary i { transform: rotate(180deg); }
.lw-accordion-content { padding: 0 0 20px; color: #4a4a4a; font-size: 15px; line-height: 1.75; }
.lw-accordion-content p { margin: 0; }
.lw-spec-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; }
.lw-spec-column { margin: 0; border: 1px solid #e9e9e9; }
.lw-spec-row { display: grid; grid-template-columns: minmax(145px, .85fr) minmax(0, 1.15fr); min-height: 54px; border-bottom: 1px solid #e9e9e9; }
.lw-spec-row:last-child { border-bottom: 0; }
.lw-spec-row dt,
.lw-spec-row dd { display: flex; align-items: center; margin: 0; padding: 12px 15px; }
.lw-spec-row dt { gap: 10px; border-right: 1px solid #e9e9e9; color: #444; font-size: 13px; font-weight: 800; }
.lw-spec-row dt i { width: 16px; color: #222; text-align: center; }
.lw-spec-row dd { color: #171717; font-size: 13px; font-weight: 800; line-height: 1.45; overflow-wrap: anywhere; }
.lw-section-heading { display: flex; justify-content: space-between; align-items: baseline; gap: 16px; }
.lw-section-heading span { color: #888; font-size: 13px; }
.lw-detail-preview { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; }
.lw-detail-preview button { min-width: 0; overflow: hidden; padding: 0; border: 0; border-radius: 7px; background: #f6f6f6; }
.lw-detail-preview img { width: 100%; aspect-ratio: 4 / 3; object-fit: contain; transition: transform .2s ease; }
.lw-detail-preview button:hover img { transform: scale(1.025); }
.lw-view-all { display: flex; align-items: center; justify-content: center; gap: 9px; min-width: 250px; min-height: 46px; margin: 22px auto 0; padding: 0 20px; border: 1px solid #bd8f3f; border-radius: 6px; background: #fff; color: #a87826; font-size: 13px; font-weight: 900; text-transform: uppercase; }
.lw-empty-copy { color: #777; }
.lw-feedback-section { border-bottom: 0; }
.lw-feedback-empty { display: grid; place-items: center; align-content: center; gap: 8px; padding: 18px 0 4px; color: #777; text-align: center; }
.lw-feedback-empty i { color: #bd8f3f; font-size: 22px; }
.lw-feedback-empty p { margin: 0; font-size: 14px; }

.lw-media-modal { position: fixed; inset: 0; z-index: 220; }
.lw-media-backdrop { position: absolute; inset: 0; background: rgba(10, 10, 10, .68); }
.lw-media-panel { position: absolute; inset: 8px; box-sizing: border-box; width: min(1200px, calc(100% - 16px)); margin: 0 auto; overflow-y: scroll; overscroll-behavior: contain; scrollbar-gutter: stable; padding: 26px 26px 120px; border-radius: 10px; background: #fff; box-shadow: var(--shadow); }
.lw-media-panel h2 { margin: 0; font-size: 25px; }
.lw-media-panel > p { margin: 6px 0 24px; color: #777; font-size: 13px; }
.lw-media-close { position: absolute; top: 13px; right: 18px; border: 0; background: transparent; color: #444; font-size: 30px; line-height: 1; }
.lw-media-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.lw-media-grid button { padding: 0; overflow: hidden; border: 0; border-radius: 7px; background: #f6f6f6; }
.lw-media-grid img { width: 100%; height: auto; min-height: 180px; display: block; object-fit: contain; }
.lw-media-panel::-webkit-scrollbar { width: 12px; }
.lw-media-panel::-webkit-scrollbar-track { background: #f3f3f3; }
.lw-media-panel::-webkit-scrollbar-thumb { border: 3px solid #f3f3f3; border-radius: 999px; background: #a87826; }
.lw-modal-open { overflow: hidden; }

/* Keep the existing desktop header usable before its mobile breakpoint. */
@media (max-width: 1360px) {
  .header-shell { gap: 16px; }
  .desktop-nav { gap: 12px; }
  .header-actions { flex-basis: 295px; }
  .search-form { width: 180px; }
}

@media (max-width: 940px) {
  .lw-product-hero { grid-template-columns: 1fr; gap: 30px; }
  .lw-gallery { width: min(100%, 560px); }
  .lw-summary { max-width: 720px; }
  .lw-detail-preview { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .lw-anchor-nav { top: 122px; }
}
@media (max-width: 680px) {
  .brand-avatar { width: 32px; height: 32px; flex-basis: 32px; }
  .brand-logo .brand-word { font-size: 18px; }
  .lw-product-shell,
  .lw-detail-shell,
  .lw-anchor-nav { width: min(100% - 28px, 1240px); }
  .lw-product-shell { padding-top: 16px; }
  .lw-breadcrumbs { line-height: 1.5; }
  .lw-thumbnail-rail { justify-content: flex-start; overflow-x: auto; padding-bottom: 3px; }
  .lw-thumbnail-rail button { width: 66px; height: 66px; flex-basis: 66px; }
  .lw-summary h1 { font-size: 23px; }
  .lw-buy-actions { grid-template-columns: 1fr; }
  .lw-service-row { gap: 12px; padding: 0 12px; }
  .lw-anchor-nav { top: 102px; grid-template-columns: repeat(4, max-content); overflow-x: auto; }
  .lw-anchor-nav a { min-width: 144px; font-size: 11px; }
  .lw-detail-shell { padding: 22px 0 54px; }
  .lw-detail-section { padding: 30px 0; }
  .lw-detail-section h2 { font-size: 22px; }
  .lw-description-copy { font-size: 15px; line-height: 1.7; }
  .lw-spec-grid { grid-template-columns: 1fr; gap: 14px; }
  .lw-spec-row { grid-template-columns: minmax(128px, .82fr) minmax(0, 1.18fr); }
  .lw-spec-row dt,
  .lw-spec-row dd { padding: 11px; font-size: 12px; }
  .lw-detail-preview { grid-template-columns: 1fr; gap: 9px; }
  .lw-media-panel { inset: 6px; width: calc(100% - 12px); margin: 0 auto; padding: 20px 12px 96px; }
  .lw-media-grid { grid-template-columns: 1fr; gap: 10px; }
  .lw-media-grid img { min-height: 0; }
}
