:root {
  --sand: #f3f4f6;
  --clay: #b97f68;
  --ink: #2c2622;
  --olive: #6c6a53;
  --cream: #ffffff;
  --rose: #e3b4a2;
  --line: rgba(44, 38, 34, 0.15);
}

html[data-theme="dark"] {
  color-scheme: dark;
}

html[data-theme="dark"] body {
  color: #e8ebef;
  background: radial-gradient(circle at top, #1e2530 0%, #141922 55%, #0f131a 100%);
}

html[data-theme="dark"] .hero::before {
  background: linear-gradient(120deg, rgba(18, 22, 30, 0.95) 0%, rgba(18, 22, 30, 0.78) 55%, rgba(18, 22, 30, 0.45) 100%);
}

html[data-theme="dark"] .topbar {
  background: rgba(22, 28, 38, 0.95);
  border-bottom-color: rgba(231, 238, 247, 0.12);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.35);
}

html[data-theme="dark"] .menu-link,
html[data-theme="dark"] .brand,
html[data-theme="dark"] .menu-dropdown a,
html[data-theme="dark"] .hero h1,
html[data-theme="dark"] .hero p,
html[data-theme="dark"] .note,
html[data-theme="dark"] .section-title h2,
html[data-theme="dark"] .section-title p,
html[data-theme="dark"] .footer,
html[data-theme="dark"] .product-panel-header h3,
html[data-theme="dark"] .product-panel-header p,
html[data-theme="dark"] .product-details h4,
html[data-theme="dark"] .product-manufacturer,
html[data-theme="dark"] .product-price,
html[data-theme="dark"] .wishlist-meta,
html[data-theme="dark"] .wishlist-panel .section-title p {
  color: #e8ebef;
}

html[data-theme="dark"] .menu-link:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(231, 238, 247, 0.18);
}

html[data-theme="dark"] .menu-dropdown {
  background: rgba(28, 35, 47, 0.98);
  border-color: rgba(231, 238, 247, 0.16);
  box-shadow: 0 18px 30px rgba(0, 0, 0, 0.4);
}

html[data-theme="dark"] .menu-dropdown a:hover {
  background: rgba(200, 143, 117, 0.24);
}

html[data-theme="dark"] .hero-content,
html[data-theme="dark"] .hero-accent,
html[data-theme="dark"] .product-panel,
html[data-theme="dark"] .wishlist-panel,
html[data-theme="dark"] .saved-section {
  background: rgba(22, 28, 38, 0.9);
  border-color: rgba(231, 238, 247, 0.16);
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.35);
}

html[data-theme="dark"] .product-card {
  background: linear-gradient(180deg, #222a36 0%, #161d27 100%);
  border-color: rgba(231, 238, 247, 0.14);
  box-shadow: 0 20px 30px rgba(0, 0, 0, 0.35);
}

html[data-theme="dark"] .product-figure,
html[data-theme="dark"] .product-card img {
  background: #121821;
  box-shadow: inset 0 0 0 1px rgba(231, 238, 247, 0.14);
}

html[data-theme="dark"] .product-materials,
html[data-theme="dark"] .product-notes,
html[data-theme="dark"] .product-label,
html[data-theme="dark"] .clear-filters,
html[data-theme="dark"] .product-filters label {
  color: #c4cfdf;
}

html[data-theme="dark"] .slider-arrow,
html[data-theme="dark"] .clear-filters,
html[data-theme="dark"] .save-toggle,
html[data-theme="dark"] .wishlist-remove {
  background: rgba(24, 31, 42, 0.95);
  border-color: rgba(231, 238, 247, 0.2);
  color: #e8ebef;
}

html[data-theme="dark"] .product-filters select {
  background: #131a24;
  color: #e8ebef;
  border-color: rgba(231, 238, 247, 0.18);
}

html[data-theme="dark"] .buy-button {
  background: #176f82;
  box-shadow: 0 10px 18px rgba(8, 21, 32, 0.5);
}

html[data-theme="dark"] .buy-button.disabled {
  background: #384351;
  color: #aeb8c8;
}

html[data-theme="dark"] .product-empty {
  background: rgba(26, 34, 47, 0.92);
  color: #c4cfdf;
}

.theme-toggle {
  min-width: 110px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Baskerville", "Palatino", "Times New Roman", serif;
  color: var(--ink);
  background: radial-gradient(circle at top, #ffffff 0%, #f6f7f9 55%, #eef1f4 100%);
}

.hero {
  min-height: 70vh;
  padding: 48px 8vw 72px;
  background: linear-gradient(130deg, rgba(190, 190, 198, 0.2), rgba(255, 255, 255, 0.95)),
    url("data:image/svg+xml,%3Csvg width='180' height='180' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 90h180' stroke='%23c7cdd6' stroke-width='1' stroke-dasharray='4 8'/%3E%3C/svg%3E");
  background-size: cover, 180px 180px;
  border-bottom: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}

.home .hero {
  display: grid;
  grid-template-rows: auto 1fr;
}

.home .hero {
  padding-bottom: 0;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(250, 251, 253, 0.95) 0%, rgba(250, 251, 253, 0.7) 55%, rgba(250, 251, 253, 0.25) 100%);
  z-index: 1;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid var(--line);
  padding: 12px 8vw;
  margin: 0 -8vw;
  box-shadow: 0 12px 24px rgba(44, 38, 34, 0.08);
}

.brand {
  font-size: 1.1rem;
  font-weight: 600;
}

.tagline {
  max-width: 420px;
  text-align: right;
}

.menu {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.menu-link {
  text-decoration: none;
  color: var(--ink);
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: border 0.2s ease, background 0.2s ease;
}

.menu-link:hover {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.6);
}

.menu-item {
  position: relative;
}

.menu-item::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 12px;
}

.menu-button {
  background: transparent;
  border: 1px solid transparent;
  cursor: pointer;
  font: inherit;
  text-transform: inherit;
  letter-spacing: inherit;
  color: inherit;
}

.menu-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 180px;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  box-shadow: 0 18px 30px rgba(44, 38, 34, 0.12);
  opacity: 0;
  transform: translateY(-6px);
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 3;
}

.menu-dropdown a {
  text-decoration: none;
  color: var(--ink);
  padding: 8px 12px;
  border-radius: 12px;
  transition: background 0.2s ease;
}

.menu-dropdown a:hover {
  background: rgba(200, 143, 117, 0.15);
}

.menu-item:hover .menu-dropdown,
.menu-item:focus-within .menu-dropdown,
.menu-dropdown:hover {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.hero-content {
  max-width: 760px;
  margin-top: 0;
  background: rgba(255, 255, 255, 0.92);
  padding: 28px 30px;
  border-radius: 24px;
  border: 1px solid rgba(198, 206, 218, 0.6);
  box-shadow: 0 20px 44px rgba(44, 38, 34, 0.16);
}

.hero-stage {
  margin-top: 64px;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 680px;
}

.home .hero-stage {
  margin-top: 0;
  align-self: center;
}

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

.hero-slideshow img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  animation: hero-fade 12s infinite;
}

.hero-slideshow img:nth-child(1) {
  animation-delay: 0s;
}

.hero-slideshow img:nth-child(2) {
  animation-delay: 4s;
}

.hero-slideshow img:nth-child(3) {
  animation-delay: 8s;
}

.hero-accent {
  align-self: flex-start;
  padding: 12px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid var(--line);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: 0.75rem;
  color: var(--olive);
}

.hero-collection {
  min-height: 60vh;
}

.hero::after {
  content: "";
  position: absolute;
  right: -120px;
  top: 20px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(200, 143, 117, 0.3), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.hero h1 {
  font-size: clamp(2.5rem, 4vw, 4rem);
  margin: 0 0 16px;
}

.hero p {
  font-size: 1.2rem;
  line-height: 1.6;
}

.hero-actions {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.pill {
  border: none;
  padding: 12px 22px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--cream);
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.pill:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(44, 38, 34, 0.2);
}

.note {
  font-size: 0.9rem;
  color: var(--olive);
}

main {
  padding: 64px 8vw 80px;
}

.home-main {
  padding-top: 0;
}

.how-section {
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 36px 4vw;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.95), rgba(246, 242, 238, 0.85));
  margin-top: 0;
  min-height: clamp(320px, 55vh, 620px);
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.how-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 20%, rgba(185, 127, 104, 0.12), transparent 45%),
    radial-gradient(circle at 80% 10%, rgba(11, 124, 147, 0.12), transparent 40%),
    radial-gradient(circle at 50% 80%, rgba(44, 38, 34, 0.08), transparent 55%);
  pointer-events: none;
}

.how-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)' opacity='0.06'/%3E%3C/svg%3E");
  opacity: 0.25;
  mix-blend-mode: multiply;
  pointer-events: none;
  z-index: 0;
}

.how-title-block {
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 1;
  width: min(900px, 86vw);
  max-width: 900px;
  margin: 0 auto;
}

.how-title-block p {
  margin: 0 0 18px;
  color: rgba(44, 38, 34, 0.7);
  font-size: 1.05rem;
}

.how-title-block h2 {
  font-size: clamp(2.2rem, 3.2vw, 3.6rem);
  line-height: 1.05;
  font-weight: 500;
}

.home-gallery {
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 0;
  margin-top: -32px;
}

.home-slider-title {
  position: absolute;
  top: 4%;
  left: 4%;
  transform: none;
  z-index: 2;
  max-width: 420px;
  color: #2c2622;
  text-align: left;
  text-shadow: none;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(198, 206, 218, 0.6);
  box-shadow: 0 14px 30px rgba(44, 38, 34, 0.12);
}

.home-slider-eyebrow {
  font-size: 0.85rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 600;
}

.home-slider-heading {
  margin-top: 10px;
  font-size: clamp(2.2rem, 3.2vw, 3.6rem);
  line-height: 1.05;
  font-weight: 500;
}

.home-slider-subtitle {
  margin-top: 12px;
  font-size: 1.05rem;
  line-height: 1.5;
  color: rgba(44, 38, 34, 0.8);
}

.home-slider-cta {
  margin-top: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  background: rgba(27, 27, 32, 0.9);
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.78rem;
  box-shadow: 0 16px 28px rgba(22, 20, 18, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.home-slider-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 32px rgba(22, 20, 18, 0.45);
}

.home-slider-cta[aria-disabled="true"] {
  opacity: 0.6;
  cursor: not-allowed;
  pointer-events: none;
}

.home-slider {
  width: 100%;
  margin: 0 auto;
}

.home-slider .slider-window {
  height: auto;
  aspect-ratio: 800 / 533;
  border-radius: 0;
}

.home-slider .slider-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.home-slider .slider-slide img.home-crop-top {
  object-fit: cover;
  object-position: center bottom;
}

.home-slider .slider-arrow.left {
  left: 18px;
}

.home-slider .slider-arrow.right {
  right: 18px;
}

.section-title {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 540px;
}

.section-title h2 {
  margin: 0;
  font-size: clamp(2rem, 3vw, 3rem);
}

.wishlist-meta {
  display: flex;
  gap: 16px;
  font-size: 0.9rem;
  color: #0b7c93;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
  flex-wrap: wrap;
}

.wishlist-meta span {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(11, 124, 147, 0.12);
  border: 1px solid rgba(11, 124, 147, 0.2);
}

.gallery {
  margin-top: 36px;
  display: grid;
  gap: 32px;
}

.slider-section {
  margin: 0 auto 56px;
  max-width: 980px;
}

.saved-section {
  margin-bottom: 64px;
}

.slider {
  margin-top: 24px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  align-items: center;
  position: relative;
}

.slider-window {
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid var(--line);
  box-shadow: 0 18px 40px rgba(44, 38, 34, 0.12);
  background: rgba(255, 255, 255, 0.8);
  transition: height 0.35s ease;
  position: relative;
}

.slider-track {
  display: flex;
  transition: transform 0.45s ease;
  height: 100%;
}

.slider-slide {
  min-width: 100%;
  position: relative;
  isolation: isolate;
  height: 100%;
}

.slider-slide img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
  background: #fff;
  position: relative;
  z-index: 1;
  pointer-events: none;
}

.slider-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: auto;
}

.slider-overlay-global {
  pointer-events: auto;
}

.slider-hotspot {
  position: absolute;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 2px solid #ffffff;
  background: rgba(228, 118, 151, 0.85);
  box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.35);
  transform: translate(-50%, -50%);
  z-index: 3;
  cursor: pointer;
  pointer-events: auto;
  animation: hotspot-pulse 1.8s ease-in-out infinite;
  transition: left 0.45s ease, top 0.45s ease, opacity 0.25s ease;
}

.slider-hotspot::after {
  content: "";
  position: absolute;
  inset: 6px;
  border-radius: 50%;
  border: 1px dashed rgba(255, 255, 255, 0.8);
}

.slider-hotspot:hover {
  background: rgba(228, 118, 151, 1);
}

.slider-hotspot.is-hidden {
  opacity: 0;
  pointer-events: none;
}

.slider-arrow {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.92);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.1rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}

.slider-arrow:hover {
  transform: translateY(calc(-50% - 2px));
  box-shadow: 0 10px 20px rgba(44, 38, 34, 0.18);
}

.slider-arrow.left {
  left: -56px;
}

.slider-arrow.right {
  right: -56px;
}

.product-panel {
  margin-top: 28px;
  padding: 20px;
  border-radius: 24px;
  border: 1px solid rgba(198, 206, 218, 0.7);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 40px rgba(44, 38, 34, 0.12);
  margin-left: 0;
  margin-right: 0;
}

.product-panel-header h3 {
  margin: 0 0 6px;
  font-size: 1.4rem;
}

.product-panel-header p {
  margin: 0 0 18px;
  color: var(--olive);
}

.product-panel-header {
  margin-top: 6px;
}

.product-tools {
  display: grid;
  gap: 16px;
  margin-bottom: 18px;
}

.product-tools.is-hidden {
  display: none;
}

.product-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.product-filters label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--olive);
}

.clear-filters {
  margin-left: auto;
  align-self: flex-end;
  border: 1px solid rgba(200, 143, 117, 0.4);
  background: rgba(255, 255, 255, 0.9);
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.clear-filters:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 16px rgba(44, 38, 34, 0.12);
}

.product-filters select {
  min-width: 180px;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(200, 143, 117, 0.35);
  background: #ffffff;
  font-size: 0.95rem;
  color: var(--ink);
}


.product-list {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.product-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 18px 18px 20px;
  border-radius: 22px;
  border: 1px solid rgba(198, 206, 218, 0.75);
  background: linear-gradient(180deg, #ffffff 0%, #f2f5f8 100%);
  box-shadow: 0 20px 30px rgba(44, 38, 34, 0.16);
  text-align: center;
  min-height: 360px;
  position: relative;
}

.save-toggle {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 5;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(200, 143, 117, 0.4);
  background: #ffffff;
  color: #c0876f;
  cursor: pointer;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.save-toggle.is-saved {
  background: #f2a35f;
  border-color: #f2a35f;
  color: #ffffff;
}

.wishlist-remove {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 5;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(200, 143, 117, 0.4);
  background: #ffffff;
  color: #7e3c35;
  cursor: pointer;
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.wishlist-remove:hover {
  background: #f2a35f;
  border-color: #f2a35f;
  color: #ffffff;
}


.product-figure {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding: 16px;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: inset 0 0 0 1px rgba(216, 206, 198, 0.6);
}

.product-figure::after {
  content: "";
  position: absolute;
  right: 12px;
  bottom: 12px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.94);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232c2622' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='11' cy='11' r='7'/%3E%3Cline x1='16.65' y1='16.65' x2='21' y2='21'/%3E%3C/svg%3E");
  background-size: 18px 18px;
  background-position: center;
  background-repeat: no-repeat;
  box-shadow: 0 6px 16px rgba(44, 38, 34, 0.22);
  opacity: 0;
  transform: translateY(4px) scale(0.9);
  transition: opacity 0.18s ease, transform 0.18s ease;
  pointer-events: none;
}

.product-card:hover .product-figure::after,
.product-figure:focus-within::after {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.product-card img {
  width: 100%;
  height: 140px;
  object-fit: contain;
  border-radius: 12px;
  background: #ffffff;
  cursor: zoom-in;
}

.product-details {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 220px;
  gap: 6px;
  justify-content: flex-start;
  flex: 1 1 auto;
}

.product-details h4 {
  margin: 16px 0 0;
  font-size: 1.25rem;
  line-height: 1.2;
  min-height: 3.6em;
  text-align: center;
}

.product-manufacturer {
  margin: 0 0 2px;
  font-weight: 600;
  color: var(--ink);
  min-height: 1.3em;
  text-align: center;
}

.product-materials {
  margin: 0;
  font-size: 0.9rem;
  color: var(--olive);
  min-height: 4.2em;
  text-align: center;
  margin-bottom: 6px;
}

.product-notes {
  margin: 0;
  font-size: 0.9rem;
  color: var(--olive);
  text-align: center;
  min-height: 3.4em;
}

.product-notes.is-empty {
  visibility: hidden;
}

.product-meta {
  margin-top: auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.product-label {
  display: block;
  margin-bottom: 4px;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  color: rgba(44, 38, 34, 0.6);
  text-decoration: underline;
}

.product-price {
  margin-top: 0;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 14px;
}

.product-cta {
  width: 100%;
  margin-top: auto;
}

.buy-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 12px 16px;
  border-radius: 14px;
  background: #0b7c93;
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.02em;
  box-shadow: 0 10px 18px rgba(11, 124, 147, 0.25);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.buy-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 22px rgba(11, 124, 147, 0.3);
}

.buy-button.disabled {
  background: #d8d2cc;
  color: #7a746e;
  box-shadow: none;
  cursor: not-allowed;
}

.product-details a {
  color: var(--ink);
  text-decoration: none;
}

.product-details a:hover {
  text-decoration: underline;
}

body.zoom-open {
  overflow: hidden;
}

.image-zoom-overlay {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 28px;
  background: rgba(18, 20, 24, 0.78);
  z-index: 1000;
}

.image-zoom-overlay.is-open {
  display: flex;
}

.image-zoom-dialog {
  position: relative;
  width: min(92vw, 1100px);
  max-height: 92vh;
  border-radius: 18px;
  background: #ffffff;
  padding: 18px 18px 12px;
  box-shadow: 0 28px 70px rgba(10, 14, 20, 0.4);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.image-zoom-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  border: 1px solid rgba(44, 38, 34, 0.16);
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink);
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
}

.image-zoom-image {
  width: 100%;
  max-height: 78vh;
  object-fit: contain;
  border-radius: 12px;
  background: #ffffff;
}

.image-zoom-caption {
  margin: 0;
  text-align: center;
  color: var(--olive);
  font-size: 0.92rem;
}

.product-empty {
  padding: 16px;
  border-radius: 18px;
  background: rgba(248, 243, 236, 0.9);
  color: var(--olive);
  text-align: center;
}

.collection-links {
  margin-top: 0;
  max-width: none;
}

.how-carousel {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  padding: 26px 0 42px;
  position: relative;
  z-index: 1;
}


.how-carousel::before {
  content: "";
  position: absolute;
  top: 26px;
  left: 6%;
  right: 6%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(44, 38, 34, 0.25), transparent);
  pointer-events: none;
}

.how-card {
  position: relative;
  display: flex;
  flex-direction: column;
  border-radius: 18px;
  overflow: visible;
  background: rgba(255, 255, 255, 0.95);
  color: var(--ink);
  text-align: center;
  box-shadow: 0 20px 36px rgba(44, 38, 34, 0.16);
  min-height: 420px;
  transform: translateY(0);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.how-card:nth-child(odd) {
  transform: translateY(0);
}

.how-card:nth-child(even) {
  transform: translateY(0);
}

.how-card:nth-child(1) {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(246, 239, 234, 0.95));
}

.how-card:nth-child(2) {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(236, 246, 247, 0.95));
}

.how-card:nth-child(3) {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(243, 241, 250, 0.95));
}

.how-card:nth-child(4) {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(247, 240, 236, 0.95));
}

.how-card:hover {
  transform: translateY(-18px) scale(1.02);
  box-shadow: 0 30px 60px rgba(44, 38, 34, 0.28);
}

.how-step {
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 3;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid rgba(44, 38, 34, 0.12);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #7a5a4a;
  box-shadow: 0 12px 22px rgba(44, 38, 34, 0.16);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transform: translate(-50%, -50%);
}

.how-card:nth-child(odd) .how-step {
  background: #ffffff;
  border-color: #b97f68;
  color: #7a5a4a;
}

.how-card:nth-child(even) .how-step {
  background: #ffffff;
  border-color: #0b7c93;
  color: #0b7c93;
}

.how-media {
  width: 100%;
  flex: 1;
  min-height: 280px;
  background: #ffffff;
  display: grid;
  place-items: center;
  position: relative;
  z-index: 1;
  border-radius: 18px 18px 0 0;
  overflow: hidden;
}

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

.how-graphic img {
  width: 94%;
  height: 94%;
  object-fit: contain;
  object-position: center 65%;
  border-radius: 18px;
  box-shadow: 0 0 0 12px #ffffff;
}

.how-graphic img.how-masked {
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, transparent 3%, #000 8%, #000 100%);
  mask-image: linear-gradient(to bottom, transparent 0%, transparent 3%, #000 8%, #000 100%);
}


.how-masked-wrap {
  position: relative;
  overflow: hidden;
}

.how-masked-wrap::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 16%;
  background: linear-gradient(180deg, #ffffff 0%, rgba(255, 255, 255, 0.85) 60%, rgba(255, 255, 255, 0) 100%);
  z-index: 0;
  pointer-events: none;
}

.how-masked-wrap img {
  position: relative;
  z-index: 1;
}

.how-graphic svg {
  width: 80%;
  height: 80%;
}

.how-text {
  padding: 14px 12px 18px;
  background: transparent;
}

.how-title {
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.menu-link-saved {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.menu-badge {
  min-width: 18px;
  height: 18px;
  padding: 0 6px;
  border-radius: 999px;
  background: #f2a35f;
  color: #ffffff;
  font-size: 0.7rem;
  font-weight: 700;
  line-height: 18px;
  text-align: center;
  display: none;
}

.menu-badge.is-visible {
  display: inline-block;
}

.scene {
  background: rgba(255, 255, 255, 0.75);
  border-radius: 28px;
  padding: 18px;
  border: 1px solid var(--line);
  box-shadow: 0 18px 40px rgba(44, 38, 34, 0.08);
  display: grid;
  gap: 16px;
  animation: float-in 0.8s ease both;
}

.wishlist-panel {
  max-width: 980px;
  margin: 0 auto;
  padding: 18px;
  border-radius: 24px;
  border: 1px solid rgba(198, 206, 218, 0.6);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 40px rgba(44, 38, 34, 0.12);
}

.wishlist-actions {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 24px;
}

.wishlist-clear {
  border: none;
  background: #ffffff;
  color: var(--ink);
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
  border: 1px solid rgba(200, 143, 117, 0.3);
  box-shadow: 0 10px 18px rgba(44, 38, 34, 0.12);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.wishlist-clear:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 22px rgba(44, 38, 34, 0.16);
}

.scene:nth-child(odd) {
  transform-origin: left center;
}

.scene:nth-child(even) {
  transform-origin: right center;
}

.scene-title {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--olive);
}

.image-frame {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  max-width: 1100px;
  margin: 0 auto;
}

.image-frame img {
  width: 100%;
  display: block;
  border-radius: 22px;
  transform: scale(1.01);
}

.hotspot {
  position: absolute;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 2px solid rgba(44, 38, 34, 0.8);
  box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.5);
  display: grid;
  place-items: center;
  color: var(--ink);
  font-size: 0.75rem;
  text-align: center;
  padding: 8px;
  background: rgba(255, 255, 255, 0.6);
  transition: transform 0.3s ease, background 0.3s ease;
}

.hotspot::after {
  content: "";
  position: absolute;
  width: 86px;
  height: 86px;
  border-radius: 50%;
  border: 1px dashed rgba(44, 38, 34, 0.35);
}

.hotspot:hover {
  transform: scale(1.05);
  background: rgba(255, 255, 255, 0.85);
}

.footer {
  padding: 32px 8vw 48px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: var(--olive);
  font-size: 0.9rem;
}

@keyframes float-in {
  from {
    opacity: 0;
    transform: translateY(16px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes hero-fade {
  0%,
  25% {
    opacity: 1;
  }
  33%,
  100% {
    opacity: 0;
  }
}

@keyframes hotspot-pulse {
  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    transform: translate(-50%, -50%) scale(1.08);
  }
}

@media (max-width: 900px) {
  .topbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .tagline {
    text-align: left;
  }

  .hero-content {
    margin-top: 32px;
  }

  .slider {
    grid-template-columns: 1fr;
  }

  .slider-arrow {
    width: 40px;
    height: 40px;
  }

  .slider-arrow.left {
    left: -44px;
  }

  .slider-arrow.right {
    right: -44px;
  }

  .product-panel {
    margin-left: 0;
    margin-right: 0;
  }

  .hotspot {
    width: 52px;
    height: 52px;
    font-size: 0.68rem;
  }
}

@media (max-width: 600px) {
  .hero {
    padding: 36px 6vw 60px;
  }

  .slider-arrow.left {
    left: 8px;
  }

  .slider-arrow.right {
    right: 8px;
  }

  main {
    padding: 48px 6vw 64px;
  }

  .slider-slide {
    min-width: 100%;
  }
}
