@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;600;700&family=Sora:wght@300;400;600&display=swap");

:root {
  color-scheme: light;
  --bg: #faf7f2;
  --bg-elev: #ffffff;
  --text: #1a1816;
  --muted: #6b625b;
  --accent: #c8a45a;
  --accent-strong: #b4893f;
  --border: #ece4d7;
  --bg-soft: #f7f1e8;
  --topbar-bg: #1d1914;
  --topbar-text: #f6f1ea;
  --shadow: 0 18px 45px rgba(26, 24, 22, 0.08);
  --glow: rgba(200, 164, 90, 0.18);
  --glow-strong: rgba(200, 164, 90, 0.32);
  --max-width: 1200px;
  --radius: 22px;
  --transition: 200ms ease;
  --transition-slow: 420ms ease;
}

[data-theme="dark"] {
  color-scheme: dark;
  --bg: #0b0b0a;
  --bg-elev: #141312;
  --text: #f5f2ee;
  --muted: #b7b0a7;
  --accent: #c7a35a;
  --accent-strong: #e1c77d;
  --border: #2a2621;
  --bg-soft: #151310;
  --topbar-bg: #110f0c;
  --topbar-text: #f0e7db;
  --shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
  --glow: rgba(200, 164, 90, 0.16);
  --glow-strong: rgba(200, 164, 90, 0.26);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Sora", sans-serif;
  background: var(--bg);
  color: var(--text);
  transition: background var(--transition), color var(--transition);
  -webkit-tap-highlight-color: transparent;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(1200px 600px at 15% -10%, rgba(200, 164, 90, 0.15), transparent 60%),
    radial-gradient(800px 500px at 80% 10%, rgba(200, 164, 90, 0.12), transparent 65%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.7), rgba(250, 247, 242, 0.7));
  opacity: 0.85;
  pointer-events: none;
  z-index: -2;
}

[data-theme="dark"] body::before {
  background:
    radial-gradient(1200px 600px at 15% -10%, rgba(200, 164, 90, 0.18), transparent 60%),
    radial-gradient(800px 500px at 80% 10%, rgba(200, 164, 90, 0.08), transparent 65%),
    linear-gradient(135deg, rgba(18, 17, 16, 0.9), rgba(11, 11, 10, 0.95));
}

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

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

.container {
  width: min(100% - 2.5rem, var(--max-width));
  margin: 0 auto;
}

.section {
  padding: 4.5rem 0;
}

.section-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 2.7vw, 3.2rem);
  margin: 0 0 1rem;
  letter-spacing: 0.04em;
}

.section-subtitle {
  max-width: 620px;
  color: var(--muted);
  line-height: 1.7;
  margin: 0;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 0.7rem;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.85rem 1.8rem;
  border-radius: 999px;
  border: 1px solid var(--accent);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  background: transparent;
  color: var(--text);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform var(--transition), background var(--transition), color var(--transition), border var(--transition);
}

.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.45) 45%, transparent 70%);
  transform: translateX(-130%);
  opacity: 0.7;
  pointer-events: none;
  transition: transform var(--transition-slow);
}

.btn:hover {
  transform: translateY(-2px);
  background: var(--accent);
  color: #1a1816;
}

.btn.primary {
  background: var(--accent);
  color: #1a1816;
  border-color: var(--accent);
  box-shadow: 0 12px 26px rgba(200, 164, 90, 0.28);
}

.btn.primary:hover {
  background: var(--accent-strong);
  border-color: var(--accent-strong);
  box-shadow: 0 14px 30px rgba(200, 164, 90, 0.32);
}

.btn.ghost {
  border-color: var(--border);
  color: var(--text);
}

.btn:active {
  transform: translateY(0) scale(0.98);
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  background: rgba(200, 164, 90, 0.12);
  color: var(--accent);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.pill {
  border: 1px solid var(--border);
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  font-size: 0.8rem;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.7);
}

.top-bar {
  background: var(--topbar-bg);
  color: var(--topbar-text);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.28em;
}

.top-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  padding: 0.65rem 0;
}

.top-bar-sep {
  opacity: 0.6;
}

header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(16px);
  background: var(--bg);
  background: color-mix(in srgb, var(--bg) 85%, transparent);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 10px 30px rgba(26, 24, 22, 0.06);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 0;
  gap: 1.5rem;
}

.logo {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.6rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 1.5rem;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}

.nav-links a {
  position: relative;
  padding-bottom: 0.2rem;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.nav-links a:hover {
  color: var(--text);
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after {
  transform: scaleX(1);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.theme-toggle {
  border: 1px solid var(--border);
  background: transparent;
  color: var(--muted);
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.65rem;
  cursor: pointer;
  transition: border var(--transition), color var(--transition), box-shadow var(--transition);
}

.theme-toggle.highlight {
  animation: themeGlow 1.6s ease-out 1;
}

.hero {
  padding: 4.5rem 0 3.5rem;
}

.hero-luxe {
  position: relative;
  overflow: hidden;
}

.hero-luxe::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(800px 400px at 5% 10%, rgba(200, 164, 90, 0.18), transparent 60%),
    radial-gradient(700px 400px at 95% 0%, rgba(200, 164, 90, 0.12), transparent 55%);
  opacity: 0.7;
  pointer-events: none;
}

.hero-luxe .container {
  position: relative;
  z-index: 1;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: start;
  gap: 3.5rem;
}

.hero-card {
  position: relative;
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) + 2px);
  padding: 3rem;
  box-shadow: var(--shadow);
  overflow: hidden;
  isolation: isolate;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(400px 200px at 10% 0%, rgba(200, 164, 90, 0.14), transparent 60%);
  opacity: 0.7;
  pointer-events: none;
  z-index: 0;
}

.hero-copy {
  display: grid;
  gap: 1.6rem;
  position: relative;
  z-index: 1;
}

.hero-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.8rem, 4.4vw, 4.5rem);
  margin: 0;
  line-height: 1.05;
  letter-spacing: 0.01em;
}

.hero-text {
  color: var(--muted);
  line-height: 1.9;
  margin: 0;
  max-width: 560px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero-actions .btn {
  min-width: 200px;
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1rem;
  margin-top: 0.5rem;
}

.trust-item {
  display: grid;
  gap: 0.35rem;
  padding: 1rem 1.1rem;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: color-mix(in srgb, var(--bg-elev) 88%, var(--bg-soft));
}

.trust-title {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
}

.trust-text {
  color: var(--muted);
  font-size: 0.85rem;
  line-height: 1.4;
}

.hero-visual {
  display: grid;
  gap: 1.2rem;
  align-content: start;
}

.hero-media {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 460px;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.02) 0%, rgba(0, 0, 0, 0.18) 100%);
  z-index: 1;
}

.hero-slides {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.03);
  animation: heroSlide 18s infinite;
  animation-fill-mode: both;
  transition: transform var(--transition-slow);
}

.hero-slide:first-child {
  opacity: 1;
}

.hero-slide:nth-child(2) { animation-delay: 6s; }
.hero-slide:nth-child(3) { animation-delay: 12s; }

.hero-media-badge {
  position: absolute;
  top: 1.4rem;
  left: 1.4rem;
  z-index: 2;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: #1a1816;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: 0 12px 30px rgba(26, 24, 22, 0.18);
}

.hero-caption-card {
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 1.2rem 1.4rem;
  background: var(--bg-elev);
  box-shadow: var(--shadow);
  display: grid;
  gap: 0.35rem;
}

.hero-caption-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
  letter-spacing: 0.02em;
}

.hero-caption-sub {
  color: var(--muted);
  font-size: 0.9rem;
}

.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.stat {
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 1.3rem 1.2rem;
  background: var(--bg-elev);
  transition: transform var(--transition), box-shadow var(--transition), border var(--transition);
}

.stat h4 {
  margin: 0 0 0.35rem;
  font-size: 1.4rem;
}

.stat span {
  color: var(--muted);
  font-size: 0.85rem;
  line-height: 1.4;
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  margin-top: 2.5rem;
}

.product-card {
  display: flex;
  flex-direction: column;
  border-radius: 18px;
  overflow: hidden;
  background: var(--bg-elev);
  border: 1px solid var(--border);
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition), border var(--transition);
}

.product-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(520px 180px at -10% -10%, var(--glow), transparent 60%);
  opacity: 0;
  transition: opacity var(--transition-slow);
  pointer-events: none;
}

.product-card:hover {
  transform: translateY(-6px);
  border-color: rgba(200, 164, 90, 0.5);
  box-shadow: var(--shadow);
}

.product-image {
  position: relative;
  height: 260px;
  overflow: hidden;
}

.product-image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.product-tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
}

.product-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.product-brand {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
}

.product-name {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.4rem;
  margin: 0;
}

.product-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  color: var(--muted);
  font-size: 0.85rem;
}

.product-card .product-meta {
  display: grid;
  gap: 0.2rem;
  justify-items: start;
}

.product-price {
  font-weight: 600;
  color: var(--text);
}

.lux-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin-top: 2.5rem;
}

.lux-card {
  border-radius: var(--radius);
  background: var(--bg-elev);
  border: 1px solid var(--border);
  padding: 2rem;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition), border var(--transition);
}

.lux-card h4 {
  margin: 0 0 0.6rem;
  font-size: 1.1rem;
}

.lux-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.review-card {
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 1.5rem;
  background: var(--bg-elev);
  transition: transform var(--transition), box-shadow var(--transition), border var(--transition);
}

.review-card p {
  color: var(--muted);
  line-height: 1.6;
}

.reviewer {
  margin-top: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.85rem;
}

.reviewer span {
  color: var(--accent);
}

.cta-panel {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  align-items: center;
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.5rem;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition), border var(--transition);
}

.cta-panel p {
  color: var(--muted);
  line-height: 1.7;
}

footer {
  border-top: 1px solid var(--border);
  padding: 2.5rem 0;
  color: var(--muted);
  font-size: 0.85rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.footer-grid h5 {
  margin: 0 0 0.7rem;
  font-size: 0.95rem;
  color: var(--text);
}

.footer-links {
  display: grid;
  gap: 0.4rem;
}

.divider {
  height: 1px;
  background: var(--border);
  margin: 2.5rem 0 1.5rem;
}

.product-page {
  padding: 2rem 0 4rem;
}

.breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--muted);
  font-size: 0.85rem;
  margin-bottom: 1.5rem;
}

.product-hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  align-items: start;
}

.product-gallery {
  display: grid;
  gap: 1rem;
}

.gallery-main {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-elev);
  box-shadow: var(--shadow);
}

.gallery-main img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(90px, 1fr));
  gap: 0.7rem;
}

.gallery-thumbs button {
  border: 1px solid var(--border);
  background: var(--bg-elev);
  border-radius: 12px;
  padding: 0;
  cursor: pointer;
  overflow: hidden;
  transition: border var(--transition), transform var(--transition);
}

.gallery-thumbs button:hover {
  transform: translateY(-2px);
  border-color: rgba(200, 164, 90, 0.6);
}

.gallery-thumbs img {
  width: 100%;
  height: 90px;
  object-fit: cover;
}

:where(a, button, select, input):focus-visible {
  outline: 2px solid rgba(200, 164, 90, 0.5);
  outline-offset: 2px;
}

.product-info {
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  display: grid;
  gap: 1.2rem;
  transition: transform var(--transition), box-shadow var(--transition), border var(--transition);
}

.product-info h1 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.2rem, 3vw, 3.2rem);
}

.product-info p {
  color: var(--muted);
  line-height: 1.7;
  margin: 0;
}

.note-list {
  display: grid;
  gap: 0.7rem;
}

.note-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid var(--border);
  padding: 0.75rem 1rem;
  border-radius: 12px;
  font-size: 0.85rem;
}

.note-item span {
  color: var(--accent);
  font-weight: 600;
}

.purchase-box {
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
  display: grid;
  gap: 1rem;
}

.purchase-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.field {
  display: grid;
  gap: 0.4rem;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
}

.field select,
.field input {
  padding: 0.7rem 0.9rem;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text);
  font-size: 0.9rem;
}

.product-details {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.detail-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.8rem;
  background: var(--bg-elev);
  transition: transform var(--transition), box-shadow var(--transition), border var(--transition);
}

.detail-card h3 {
  margin: 0 0 0.6rem;
  font-size: 1.1rem;
}

.detail-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.reveal {
  opacity: 0;
  transform: translateY(12px);
  animation: reveal 700ms ease forwards;
}

.reveal.delay-1 { animation-delay: 0.15s; }
.reveal.delay-2 { animation-delay: 0.3s; }
.reveal.delay-3 { animation-delay: 0.45s; }
.reveal.delay-4 { animation-delay: 0.6s; }

@keyframes heroSlide {
  0% {
    opacity: 0;
  }
  8% {
    opacity: 1;
  }
  35% {
    opacity: 1;
  }
  45% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

@keyframes reveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes themeGlow {
  0% {
    box-shadow: 0 0 0 0 rgba(200, 164, 90, 0.0);
  }
  45% {
    box-shadow: 0 0 0 6px rgba(200, 164, 90, 0.18), 0 0 14px rgba(200, 164, 90, 0.35);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(200, 164, 90, 0.0);
  }
}

@media (hover: hover) {
  .btn:hover::after {
    transform: translateX(130%);
  }

  .product-card:hover::after {
    opacity: 1;
  }

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

  .hero-media:hover .hero-slide {
    transform: scale(1.03);
  }

  .theme-toggle:hover {
    color: var(--text);
    border-color: rgba(200, 164, 90, 0.45);
    box-shadow: 0 0 0 3px rgba(200, 164, 90, 0.12);
  }

  .stat:hover,
  .lux-card:hover,
  .review-card:hover,
  .detail-card:hover,
  .product-info:hover,
  .cta-panel:hover {
    transform: translateY(-4px);
    border-color: rgba(200, 164, 90, 0.35);
    box-shadow: var(--shadow);
  }
}

@media (hover: none) {
  .btn:active {
    transform: scale(0.98);
  }

  .product-card:active {
    transform: scale(0.99);
    border-color: rgba(200, 164, 90, 0.5);
  }
}

@media (min-width: 900px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  }

  .hero-copy {
    order: 1;
  }

  .hero-visual {
    order: 2;
  }
}

@media (max-width: 900px) {
  .nav-links {
    display: none;
  }

  .nav {
    flex-wrap: wrap;
    gap: 1rem;
  }

  .nav-actions {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 700px) {
  .top-bar {
    font-size: 0.6rem;
    letter-spacing: 0.18em;
  }

  .top-bar-inner {
    flex-wrap: wrap;
    gap: 0.4rem;
    text-align: center;
  }

  .container {
    width: min(100% - 1.5rem, var(--max-width));
  }

  .section {
    padding: 3.5rem 0;
  }

  .logo {
    font-size: 1.3rem;
    letter-spacing: 0.25em;
  }

  .hero {
    padding: 2.5rem 0;
  }

  .hero-card {
    padding: 2rem;
  }

  .hero-title {
    font-size: clamp(2.3rem, 7vw, 3.2rem);
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-grid {
    gap: 2rem;
  }

  .hero-visual {
    order: -1;
  }

  .hero-media {
    min-height: 320px;
  }

  .hero-media-badge {
    top: 1rem;
    left: 1rem;
    font-size: 0.6rem;
  }

  .hero-caption-card {
    padding: 1rem 1.1rem;
  }

  .trust-row {
    grid-template-columns: 1fr;
  }

  .stats {
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  }

  .catalog-grid,
  .lux-grid,
  .review-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .product-image {
    height: 230px;
  }

  .cta-panel {
    padding: 2rem;
  }

  .product-page {
    padding: 1.5rem 0 3rem;
  }

  .product-hero {
    gap: 2rem;
  }

  .gallery-main img {
    height: 320px;
  }

  .gallery-thumbs {
    display: flex;
    overflow-x: auto;
    padding-bottom: 0.2rem;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .gallery-thumbs button {
    min-width: 84px;
    scroll-snap-align: start;
  }

  .gallery-thumbs::-webkit-scrollbar {
    display: none;
  }

  .product-info {
    padding: 1.6rem;
  }

  .note-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.35rem;
  }

  .purchase-row {
    flex-direction: column;
  }
}

@media (max-width: 520px) {
  header {
    position: static;
  }

  .nav {
    padding: 1rem 0 1.2rem;
  }

  .nav-actions {
    flex-direction: column;
  }

  .theme-toggle,
  .nav-actions .btn {
    width: 100%;
  }

  .hero-card {
    padding: 1.6rem;
  }

  .hero-text {
    font-size: 0.95rem;
  }

  .btn {
    letter-spacing: 0.16em;
  }

  .hero-media {
    min-height: 280px;
  }

  .hero-caption-title {
    font-size: 1.3rem;
  }

  .product-image {
    height: 210px;
  }

  .gallery-main img {
    height: 280px;
  }

  .cta-panel {
    gap: 1.2rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }
}
