/* Storefront — header, marketing, product listing & detail */
.announce {
  background: var(--primary);
  color: #fff;
  text-align: center;
  padding: 9px 12px;
  font-size: 13px;
  margin: 0 -18px;
}

.site-header {
  border-bottom: 1px solid rgba(231, 224, 213, 0.9);
  background: rgba(255, 255, 255, 0.92);
  margin: 0 -18px;
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(14px);
}

.site-header-inner {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 17px 18px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
}

.site-brand {
  font-size: 23px;
  font-weight: 850;
  letter-spacing: 0.16em;
  color: var(--primary);
  text-decoration: none;
}

.topnav {
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
}

.topnav a {
  color: var(--text);
  text-decoration: none;
  font-weight: 650;
  font-size: 14px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
}

.header-icon-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--line);
  background: var(--card);
  text-decoration: none;
  color: var(--primary);
}

.header-icon-link svg {
  display: block;
}

.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  padding: 0;
  align-items: center;
  justify-content: center;
}

.nav-toggle svg {
  display: block;
}

.topnav__admin {
  font-size: 13px;
  color: var(--muted);
}

/* Site footer */
.site-footer {
  margin: 40px -18px 0;
  padding: 28px 18px 36px;
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.6);
}

.site-footer-inner {
  max-width: var(--content-max);
  margin: 0 auto;
  display: grid;
  gap: 16px;
}

.footer-brand {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 20px;
}

.footer-nav a {
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}

.footer-copy {
  margin: 0;
  font-size: 13px;
}

.preview-banner {
  margin: 0 0 8px;
  padding: 10px 14px;
  border-radius: var(--radius-md);
  background: #fff7ed;
  color: #9a3412;
  border: 1px solid #fed7aa;
  font-size: 13px;
  font-weight: 600;
  text-align: center;
}

.cart-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border-radius: var(--radius-pill);
  background: var(--primary);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* Hero & home sections */
.hero {
  display: grid;
  grid-template-columns: minmax(320px, 1.05fr) minmax(320px, 0.95fr);
  gap: 34px;
  align-items: center;
  padding: 54px 0 30px;
}

.hero h1 {
  font-size: clamp(38px, 5vw, 72px);
  line-height: 0.95;
  letter-spacing: -0.05em;
  margin: 10px 0 18px;
}

.hero-copy {
  color: #4b5563;
  font-size: 17px;
  line-height: 1.7;
  max-width: 620px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 22px;
}

.hero-visual {
  min-height: 420px;
  border-radius: 34px;
  background: radial-gradient(circle at 50% 44%, #fff 0 22%, #efe6d9 23% 54%, #d6c0a2 55% 100%);
  border: 1px solid #dfd0bb;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-watch {
  width: 68%;
  max-width: 420px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: linear-gradient(145deg, #111, #3f3f46);
  box-shadow:
    inset 0 0 0 20px #c9aa76,
    inset 0 0 0 36px #111,
    0 30px 80px rgba(0, 0, 0, 0.2);
  position: relative;
}

.hero-watch::before {
  content: "";
  position: absolute;
  inset: 30%;
  border-radius: 50%;
  background: #e8e0d2;
  box-shadow: 0 0 0 8px #111;
}

.hero-watch::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 13%;
  width: 13%;
  height: 74%;
  transform: translateX(-50%);
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.18);
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 18px;
  margin: 18px 0;
}

.section-head h2 {
  font-size: 30px;
  margin: 4px 0 0;
  letter-spacing: -0.03em;
}

.feature-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 16px 0 28px;
}

.feature-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 16px;
  background: var(--card);
}

/* Category & listing */
.category-hero {
  margin-top: 24px;
  border-radius: 26px;
  padding: 28px;
  background: var(--primary);
  color: #fff;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: end;
}

.category-hero .muted {
  color: #d1d5db;
}

.category-hero a {
  color: #fff;
}

.filter-bar {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

/* Product cards */
.product-card {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 12px;
  background: var(--card);
  overflow: hidden;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.product-card:hover {
  transform: translateY(-4px);
  border-color: #d0b487;
  box-shadow: var(--shadow-card-hover);
}

.product-card .thumb {
  height: 260px;
  border-radius: 14px;
  background: linear-gradient(145deg, #f8f5ef, #ebe4d8);
  object-fit: contain;
  padding: 12px;
}

.product-card h3 {
  min-height: 48px;
  font-size: 17px;
  line-height: 1.35;
  margin: 14px 2px 6px;
}

.product-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin: 8px 2px 4px;
}

.product-tag {
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  padding: 4px 9px;
  color: #766b5b;
  font-size: 12px;
  background: #fbfaf7;
}

.card-link {
  position: absolute;
  inset: 0;
  font-size: 0;
}

/* Product detail */
.detail-layout {
  display: grid;
  grid-template-columns: minmax(360px, 1.08fr) minmax(330px, 0.92fr);
  gap: 34px;
  align-items: start;
}

.product-gallery {
  position: sticky;
  top: var(--header-sticky-top);
  display: grid;
  gap: 12px;
}

.product-main-image {
  min-height: 560px;
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  background: linear-gradient(145deg, #faf7f1, #e9dfcf);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.product-main-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 24px;
}

.detail-thumbs {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(96px, 1fr));
  gap: 10px;
}

.detail-thumbs img {
  height: 96px;
  border-radius: var(--radius-md);
  object-fit: cover;
  border: 1px solid var(--line);
  background: var(--card);
  cursor: pointer;
}

.product-summary {
  position: sticky;
  top: var(--header-sticky-top);
}

.product-summary h1 {
  font-size: clamp(30px, 3.4vw, 52px);
  line-height: 1.02;
  letter-spacing: -0.045em;
  margin: 10px 0 14px;
}

.review-line {
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 14px;
  color: #594f42;
}

.stars {
  color: var(--gold);
  letter-spacing: 2px;
}

.buy-box {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 16px;
  margin: 18px 0;
  background: var(--card);
  box-shadow: var(--shadow-buy-box);
}

.qty-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 12px 0;
}

.qty-row input {
  width: 72px;
  text-align: center;
}

.service-list {
  display: grid;
  gap: 10px;
  margin: 16px 0;
}

.service-item {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 12px;
  background: var(--card);
  display: flex;
  justify-content: space-between;
  gap: 10px;
}
