:root {
  --bg: #070a0b;
  --bg-soft: #101416;
  --panel: rgba(255, 255, 255, 0.04);
  --border: rgba(255, 255, 255, 0.12);
  --text: #f3f5f4;
  --muted: #9ea9a3;
  --accent: #b97841;
  --accent-soft: #4f6a4f;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Inter', 'Sawarabi Gothic', 'Segoe UI', sans-serif;
  background:
    radial-gradient(circle at top left, rgba(185, 120, 65, 0.14), transparent 28%),
    linear-gradient(135deg, var(--bg), #0f1517 55%, #06080a);
  color: var(--text);
}

:lang(ja) {
  font-family: 'Inter', 'Sawarabi Gothic', 'Segoe UI', sans-serif;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.page-shell {
  min-height: 100vh;
  padding: 24px 24px 40px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 26px;
  margin: 0 auto 28px;
  max-width: 1320px;
  border: 1px solid var(--border);
  border-radius: 999px;
  backdrop-filter: blur(20px);
  background: rgba(9, 12, 14, 0.72);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.brand {
  color: var(--text);
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: 0.92rem;
}

.site-nav {
  display: flex;
  gap: 20px;
  align-items: center;
}

.site-nav a,
.nav-dropdown-trigger {
  display: inline-flex;
  align-items: center;
  color: var(--muted);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.25s ease;
  background: transparent;
  border: 0;
  padding: 0;
  cursor: pointer;
  font: inherit;
}

.header-search {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
}

.header-search input {
  width: 140px;
  border: 0;
  outline: none;
  background: transparent;
  color: var(--text);
  font: inherit;
}

.header-search input::placeholder {
  color: var(--muted);
}

.social-link {
  position: relative;
  justify-content: center;
  width: 34px;
  height: 34px;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.social-link svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.social-link-line {
  background: #06c755;
  border-color: #06c755;
  color: #ffffff;
}

.social-link-youtube {
  isolation: isolate;
  background: #ff0000;
  border-color: #ff0000;
  color: #ffffff;
}

.social-link-youtube::after {
  content: '';
  position: absolute;
  inset: -5px;
  border-radius: 999px;
  border: 1px solid rgba(255, 0, 0, 0.55);
  box-shadow: 0 0 0 0 rgba(255, 0, 0, 0.45);
  opacity: 0;
  transform: scale(0.92);
  z-index: -1;
  pointer-events: none;
}

.social-link:hover,
.social-link:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(185, 120, 65, 0.6);
  box-shadow: 0 0 0 1px rgba(185, 120, 65, 0.25), 0 0 20px rgba(185, 120, 65, 0.35);
}

.social-link-youtube:hover,
.social-link-youtube:focus-visible {
  border-color: #ff3b3b;
  box-shadow: 0 0 0 1px rgba(255, 59, 59, 0.35), 0 0 24px rgba(255, 0, 0, 0.55);
}

.social-link-youtube:hover::after,
.social-link-youtube:focus-visible::after {
  animation: youtube-pulse 0.9s ease-out infinite;
}

@keyframes youtube-pulse {
  0% {
    opacity: 0.55;
    transform: scale(0.9);
    box-shadow: 0 0 0 0 rgba(255, 0, 0, 0.5);
  }
  70% {
    opacity: 0.2;
    transform: scale(1.2);
    box-shadow: 0 0 0 10px rgba(255, 0, 0, 0);
  }
  100% {
    opacity: 0;
    transform: scale(1.28);
    box-shadow: 0 0 0 14px rgba(255, 0, 0, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .social-link-youtube:hover::after,
  .social-link-youtube:focus-visible::after {
    animation: none;
    opacity: 0.25;
    transform: scale(1.02);
  }
}

.social-link-line svg {
  width: 18px;
  height: 18px;
}

.social-link-line svg rect {
  fill: #06c755;
}

.social-link-line svg path {
  fill: #ffffff;
}

.social-link-line svg text {
  fill: #06c755;
  font-size: 3.5px;
  font-weight: 800;
  font-family: Arial, sans-serif;
  letter-spacing: 0.2px;
}

.site-nav a:hover,
.nav-dropdown-trigger:hover,
.nav-dropdown:hover .nav-dropdown-trigger {
  color: var(--text);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  display: grid;
  gap: 8px;
  min-width: 180px;
  padding: 12px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: rgba(7, 10, 11, 0.92);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

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

.nav-dropdown-menu a {
  display: block;
  padding: 8px 10px;
  border-radius: 10px;
  color: var(--muted);
}

.nav-dropdown-menu a:hover {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
}

main {
  max-width: 1320px;
  margin: 0 auto;
}

.hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 36px;
  align-items: center;
  min-height: 85vh;
  padding: 38px 0 24px;
}

.hero-copy h1 {
  font-size: clamp(2.6rem, 4vw, 4.6rem);
  line-height: 0.95;
  margin: 0 0 18px;
  letter-spacing: -0.04em;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.32em;
  font-size: 0.8rem;
  font-weight: 700;
}

.hero-text,
.section-heading p,
.feature-copy p,
.collection-item p,
.news-card p,
.purchase-grid p,
.site-footer p {
  color: var(--muted);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px;
}

.hero-contact-meta {
  margin-top: 12px;
  display: grid;
  gap: 4px;
}

.hero-contact-meta p {
  margin: 0;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.6;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  text-decoration: none;
  transition: transform 0.25s ease, background 0.25s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button.primary {
  background: linear-gradient(90deg, var(--accent), #d18d5f);
  color: #fff;
}

.button.secondary {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  border: 1px solid var(--border);
}

.hero-stats {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.hero-stats div {
  min-width: 120px;
  padding: 12px 0;
  border-top: 1px solid var(--border);
}

.hero-stats strong {
  display: block;
  font-size: 1.1rem;
  margin-bottom: 4px;
}

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

.hero-visual {
  position: relative;
  transform: translate3d(0, calc(var(--offset, 0px) * 0.02), 0);
}

.hero-card {
  position: relative;
  overflow: hidden;
  border-radius: 32px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.hero-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.25) 100%);
}

.hero-badge {
  position: absolute;
  right: 18px;
  bottom: 18px;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 999px;
  backdrop-filter: blur(10px);
  color: #f4f8f6;
  font-size: 0.9rem;
}

.section {
  padding: 56px 0 20px;
}

.section-heading {
  margin-bottom: 24px;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(1.5rem, 2.2vw, 2.2rem);
  letter-spacing: -0.03em;
}

.news-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 0.85fr;
  gap: 18px;
}

.news-card,
.purchase-grid article,
.collection-item,
.feature-panel {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.news-card {
  padding: 24px;
  min-height: 180px;
}

.news-preview-shell {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: linear-gradient(135deg, rgba(185, 120, 65, 0.16), rgba(255,255,255,0.04));
  color: var(--text);
  text-decoration: none;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.news-preview-shell:hover,
.news-preview-shell:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(185, 120, 65, 0.34);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.22);
}

.news-preview-shell:visited {
  color: var(--text);
}

.news-preview-image {
  width: 100%;
  height: 210px;
  object-fit: cover;
}

.news-preview-body {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 20px 22px 24px;
}

.news-preview-badge {
  display: inline-flex;
  align-self: flex-start;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #d9b08d;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.news-preview-title {
  margin: 0;
  font-size: 1.16rem;
  line-height: 1.35;
}

.news-preview-description {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-preview-link {
  display: inline-flex;
  align-self: flex-start;
  margin-top: 4px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #e7c9a5;
  text-decoration: none;
  font-weight: 600;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.news-preview-link:hover {
  transform: translateY(-1px);
  background: rgba(185, 120, 65, 0.16);
  border-color: rgba(185, 120, 65, 0.3);
}

.news-card-loading {
  color: var(--muted);
}

.news-card.large {
  background:
    linear-gradient(135deg, rgba(185, 120, 65, 0.16), transparent 70%),
    var(--panel);
}

.news-card h3,
.purchase-grid h3,
.collection-item h3,
.feature-copy h3 {
  margin: 0 0 10px;
  font-size: 1.1rem;
}

.feature-panel {
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: 24px;
  padding: 20px;
}

.feature-photo {
  min-height: 320px;
  border-radius: 20px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
}

.feature-photo img {
  object-position: center;
}

.feature-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 10px 4px;
}

.inline-link {
  margin-top: 14px;
  color: #d9b08d;
  text-decoration: none;
  font-weight: 600;
}

.latest-ring-shell {
  display: block;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 24px;
  box-shadow: var(--shadow);
  padding: 26px;
}

.latest-ring-viewport {
  position: relative;
  min-height: 560px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: radial-gradient(circle at 50% 18%, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02) 45%, transparent 70%);
  overflow: hidden;
}

.latest-ring-scene {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  perspective: 1700px;
}

.latest-ring-track {
  --ring-rotation: 0deg;
  --ring-radius: 520px;
  position: relative;
  width: 250px;
  height: 250px;
  transform-style: preserve-3d;
  transform: rotateX(8deg) rotateY(var(--ring-rotation));
  transition: transform 0.1s linear;
}

.latest-ring-card {
  --ring-index: 0;
  --ring-total: 10;
  --ring-scale: 1;
  --ring-lift: 0px;
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-rows: 1fr auto;
  gap: 8px;
  border-radius: 18px;
  overflow: hidden;
  text-decoration: none;
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.03));
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.35);
  transform-style: preserve-3d;
  backface-visibility: hidden;
  transform:
    rotateY(calc((360deg / var(--ring-total)) * var(--ring-index)))
    translateZ(var(--ring-radius))
    translateY(var(--ring-lift))
    scale(var(--ring-scale));
  transition: transform 0.35s cubic-bezier(0.22, 0.61, 0.36, 1), box-shadow 0.35s ease, border-color 0.35s ease, filter 0.35s ease;
}

.latest-ring-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(circle at 28% 18%, rgba(255, 242, 220, 0.22), transparent 38%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.latest-ring-card:hover,
.latest-ring-card:focus-visible {
  --ring-scale: 1.16;
  --ring-lift: -18px;
  border-color: rgba(255, 215, 156, 0.72);
  box-shadow: 0 34px 86px rgba(0, 0, 0, 0.62), 0 0 56px rgba(255, 202, 121, 0.34);
  filter: brightness(1.08) saturate(1.08);
}

.latest-ring-card:hover::after,
.latest-ring-card:focus-visible::after {
  opacity: 1;
}

.latest-ring-card img {
  width: 100%;
  height: 170px;
  object-fit: cover;
}

.latest-ring-card-body {
  padding: 10px 12px 14px;
  background: linear-gradient(180deg, rgba(8, 11, 13, 0.1), rgba(8, 11, 13, 0.55));
}

.latest-ring-card-name {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.3;
}

.latest-ring-card-meta {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.liquid-distortion-defs {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
  pointer-events: none;
}

.collection-orbit {
  position: relative;
  perspective: 1600px;
  overflow: hidden;
  border-radius: 32px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: linear-gradient(135deg, rgba(185, 120, 65, 0.08), transparent 45%),
              linear-gradient(225deg, rgba(79, 106, 79, 0.08), transparent 45%),
              var(--panel);
  box-shadow: inset 0 0 80px rgba(0, 0, 0, 0.25);
  padding: 28px 0;
}

.collection-orbit::before,
.collection-orbit::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 90px;
  z-index: 10;
  pointer-events: none;
}

.collection-orbit::before {
  left: 0;
  background: linear-gradient(90deg, rgba(7, 10, 11, 0.8), transparent);
}

.collection-orbit::after {
  right: 0;
  background: linear-gradient(270deg, rgba(7, 10, 11, 0.8), transparent);
}

.collection-track {
  display: flex;
  gap: 24px;
  padding: 0 60px;
  transform-style: preserve-3d;
  cursor: grab;
}

.collection-track.is-dragging {
  cursor: grabbing;
}

.collection-track.is-dragging .collection-card {
  pointer-events: none;
}

.collection-card {
  position: relative;
  flex: 0 0 260px;
  text-decoration: none;
  color: inherit;
  border-radius: 22px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  transform-style: preserve-3d;
  transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              box-shadow 0.45s ease,
              border-color 0.45s ease,
              filter 0.45s ease;
}

.collection-card:nth-child(odd),
.collection-card:nth-child(even) {
  transform: translateZ(0);
}

.collection-card:hover,
.collection-card:focus {
  transform: translateZ(40px) translateY(-8px) scale(1.04);
  border-color: rgba(185, 120, 65, 0.55);
  box-shadow: 0 0 0 1px rgba(185, 120, 65, 0.25),
              0 24px 70px rgba(0, 0, 0, 0.45),
              0 0 60px rgba(185, 120, 65, 0.18);
  z-index: 20;
}

.collection-track:hover .collection-card:not(:hover) {
  filter: blur(1.5px) brightness(0.75);
  transform: translateZ(-40px) scale(0.96);
}

.collection-card-visual {
  position: relative;
  height: 300px;
  overflow: hidden;
}

.collection-card-visual img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  will-change: transform, filter;
  transition: transform 0.8s ease;
}

.collection-card-visual img.is-liquid-distorting {
  filter: url(#liquidDistortionFilter);
}

.collection-card:hover .collection-card-visual img {
  transform: scale(1.08);
}

.collection-card-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 20%, rgba(185, 120, 65, 0.25), transparent 35%),
              radial-gradient(circle at 80% 80%, rgba(79, 106, 79, 0.22), transparent 30%);
  pointer-events: none;
  opacity: 0.7;
  mix-blend-mode: screen;
}

.collection-card:hover .collection-card-glow {
  opacity: 1;
}

.collection-card-label {
  position: relative;
  padding: 16px 18px 20px;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.35));
}

.collection-card-label h3 {
  margin: 0;
  font-size: 1.25rem;
  letter-spacing: -0.01em;
}

.collection-card-index {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.22em;
  margin-bottom: 6px;
}

.collection-card-cta {
  display: inline-flex;
  margin-top: 10px;
  font-size: 0.82rem;
  color: #d9b08d;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.collection-card:hover .collection-card-cta {
  opacity: 1;
  transform: translateY(0);
}

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

.purchase-grid article {
  padding: 24px;
}

.catalog-toolbar {
  margin-bottom: 18px;
}

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

.faq-item {
  border: 1px solid var(--border);
  border-radius: 18px;
  background: var(--panel);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 20px;
  font-weight: 700;
  color: var(--text);
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '+';
  float: right;
  color: var(--accent);
  font-size: 1.1rem;
}

.faq-item[open] summary::after {
  content: '-';
}

.faq-answer {
  padding: 0 20px 18px;
  border-top: 1px solid var(--border);
}

.faq-answer p {
  color: var(--muted);
  line-height: 1.75;
  margin: 12px 0 0;
}

.catalog-toolbar input {
  width: 100%;
  max-width: 420px;
  padding: 12px 14px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  outline: none;
}

.catalog-toolbar input:focus {
  border-color: rgba(185, 120, 65, 0.5);
  box-shadow: 0 0 0 3px rgba(185, 120, 65, 0.16);
}

.search-page {
  padding: 12px 0 40px;
}

.search-page .section-heading {
  margin-bottom: 24px;
}

.search-page .section-heading h1 {
  margin: 8px 0 10px;
  font-size: clamp(1.8rem, 2.6vw, 2.5rem);
}

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

.product-card-link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.product-card {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: var(--panel);
  box-shadow: var(--shadow);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.product-card:hover {
  transform: translateY(-4px);
  border-color: rgba(185, 120, 65, 0.45);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.36);
}

.product-card.out-of-stock {
  opacity: 0.82;
}

.product-image-wrap {
  position: relative;
  height: 220px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
}

.product-image-wrap img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
}

.product-card:hover .product-image-wrap img {
  transform: scale(1.04);
  filter: brightness(1.05) saturate(1.05);
}

.sold-out-badge {
  position: absolute;
  inset: 14px auto auto 14px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(7, 10, 11, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #f4d6b8;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.product-card .product-body {
  padding: 18px 18px 22px;
}

@media (min-width: 781px) {
  .product-card .product-body h3,
  .new-arrival-body h3,
  .latest-ring-card-name {
    font-size: 1rem;
  }
}

.product-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 12px;
  color: #d9b08d;
  font-weight: 600;
}

.purchase-grid span {
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(185, 120, 65, 0.2);
  color: #e8bf9b;
  margin-bottom: 16px;
  font-weight: 700;
}

.detail-page-shell {
  padding-bottom: 56px;
}

.detail-page {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  align-items: start;
  padding: 12px 0 0;
}

.detail-visual {
  background: linear-gradient(135deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
  border: 1px solid var(--border);
  border-radius: 32px;
  padding: 18px;
  box-shadow: var(--shadow);
}

.detail-stage {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  min-height: 460px;
  background: #071015;
  aspect-ratio: 16 / 10;
}

.detail-stage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.detail-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(185, 120, 65, 0.28), transparent 26%),
    radial-gradient(circle at 80% 0%, rgba(79, 106, 79, 0.24), transparent 30%);
  pointer-events: none;
}

.detail-thumbs {
  display: flex;
  gap: 8px;
  margin-top: 14px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-padding-inline: 0;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 4px;
}

.detail-thumb {
  min-width: 88px;
  height: 72px;
  flex: 0 0 auto;
  scroll-snap-align: start;
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  background: transparent;
  padding: 0;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.detail-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.detail-thumb.is-active {
  opacity: 1;
  transform: translateY(-2px);
  border-color: rgba(185, 120, 65, 0.55);
}

.detail-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.detail-info {
  padding: 14px 8px 8px 6px;
}

.detail-info h1 {
  margin: 0 0 18px;
  font-size: clamp(2rem, 3.2vw, 3rem);
  line-height: 1.02;
}

.detail-price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.detail-price {
  font-size: 1.75rem;
  font-weight: 700;
  color: #f0caa3;
}

.detail-stock {
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.05);
  color: #d8e2dc;
  font-size: 0.9rem;
}

.detail-stock.is-out {
  color: #f7c8a8;
  border-color: rgba(185,120,65,0.45);
  background: rgba(185,120,65,0.14);
}

.detail-description {
  font-size: 1.02rem;
  line-height: 1.8;
  color: var(--muted);
  margin-bottom: 24px;
}

.new-arrivals-page {
  max-width: 1320px;
  margin: 0 auto;
  padding: 24px 0 48px;
}

.new-arrivals-sub {
  color: var(--muted);
  margin-top: 10px;
}

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

.new-arrival-card {
  display: block;
  color: inherit;
  text-decoration: none;
  border: 1px solid var(--border);
  border-radius: 24px;
  overflow: hidden;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.new-arrival-image-wrap {
  position: relative;
  height: 220px;
}

.new-arrival-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.new-arrival-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #f5ddc2;
  background: rgba(7, 10, 11, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.new-arrival-body {
  padding: 16px 16px 18px;
}

.new-arrival-body h3 {
  margin: 0;
}

.new-arrival-type {
  margin: 8px 0 10px;
  color: #d9b08d;
  font-weight: 600;
}

.new-arrival-review {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
  min-height: 52px;
}

.new-arrival-meta {
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.85rem;
}

.detail-summary {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 24px;
}

.info-card {
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: rgba(255,255,255,0.04);
}

.info-card span {
  display: block;
  color: var(--muted);
  font-size: 0.8rem;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.info-card strong {
  font-size: 1rem;
}

.detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.site-footer {
  max-width: 1320px;
  margin: 32px auto 0;
  padding: 20px 0 8px;
  border-top: 1px solid var(--border);
  text-align: center;
}

.site-footer {
  margin-top: 80px;
  padding-top: 48px;
  border-top: 1px solid var(--border);
  text-align: center;
}

.store-info {
  display: grid;
  gap: 10px;
  max-width: 640px;
  margin: 0 auto 36px;
}

.store-label {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.store-address {
  margin: 0;
  font-style: normal;
  font-size: 1.15rem;
  font-weight: 600;
  line-height: 1.6;
  color: var(--text);
}

.store-hours {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.copyright {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.home-page {
  background:
    radial-gradient(circle at 8% -2%, rgba(241, 168, 84, 0.3), transparent 32%),
    radial-gradient(circle at 90% 0%, rgba(91, 174, 208, 0.28), transparent 35%),
    linear-gradient(145deg, #05131a 8%, #0a2128 42%, #0f2623 100%);
}

.home-page .page-shell {
  position: relative;
  overflow: hidden;
}

.home-page .page-shell::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 38px 38px;
  pointer-events: none;
  mask-image: radial-gradient(circle at 50% 30%, black 40%, transparent 82%);
  opacity: 0.22;
}

.home-ambience {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.ambient-orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(3px);
  opacity: 0.7;
  animation: drift 12s ease-in-out infinite;
}

.ambient-orb-1 {
  width: 280px;
  height: 280px;
  top: 120px;
  left: -100px;
  background: radial-gradient(circle at 35% 35%, rgba(249, 198, 129, 0.45), rgba(249, 198, 129, 0.08));
}

.ambient-orb-2 {
  width: 360px;
  height: 360px;
  top: -120px;
  right: -80px;
  background: radial-gradient(circle at 30% 30%, rgba(118, 201, 235, 0.4), rgba(118, 201, 235, 0.05));
  animation-delay: -4s;
}

.ambient-orb-3 {
  width: 240px;
  height: 240px;
  bottom: 140px;
  right: 18%;
  background: radial-gradient(circle at 40% 40%, rgba(105, 185, 165, 0.35), rgba(105, 185, 165, 0.04));
  animation-delay: -8s;
}

@keyframes drift {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(0, -16px, 0) scale(1.04);
  }
}

.home-page .site-header {
  background: rgba(6, 19, 25, 0.74);
  border-color: rgba(213, 231, 238, 0.26);
}

.home-page .hero {
  padding-top: 52px;
  gap: 44px;
}

.home-page .hero-copy h1 {
  font-family: 'Bricolage Grotesque', 'Inter', 'Sawarabi Gothic', sans-serif;
  font-size: clamp(2.8rem, 4.2vw, 5rem);
  line-height: 0.9;
  text-wrap: balance;
}

.home-page .hero-text {
  max-width: 62ch;
  color: #c7d8dd;
  font-size: 1.03rem;
}

.home-page .button {
  border-radius: 14px;
  padding: 13px 20px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.home-page .button.primary {
  background: linear-gradient(120deg, #e19f53, #e7be87);
  color: #0f181d;
}

.home-page .button.secondary {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(213, 231, 238, 0.24);
}

@media (min-width: 781px) {
  .home-page .hero-actions .button {
    width: 172px;
    text-align: center;
    justify-content: center;
  }
}

.home-page .hero-stats {
  gap: 14px;
}

.home-page .hero-stats div {
  border: 1px solid rgba(213, 231, 238, 0.2);
  background: rgba(255, 255, 255, 0.04);
  border-radius: 14px;
  padding: 12px 14px;
  min-width: 170px;
}

.home-page .hero-stats strong {
  color: #f7fbfd;
}

.home-page .hero-stats span {
  color: #a5bdc3;
}

.home-page .hero-card {
  border-color: rgba(213, 231, 238, 0.28);
  border-radius: 36px;
}

.home-page .hero-badge {
  background: rgba(6, 20, 27, 0.75);
  color: #d2eaef;
  border-color: rgba(213, 231, 238, 0.28);
}

.pulse-strip {
  margin: 16px 0 10px;
  padding: 10px 0;
  border-top: 1px solid rgba(213, 231, 238, 0.22);
  border-bottom: 1px solid rgba(213, 231, 238, 0.22);
  overflow: hidden;
}

.pulse-track {
  display: flex;
  gap: 24px;
  width: max-content;
  padding-left: 10px;
  animation: pulse-run 16s linear infinite;
}

.pulse-track span {
  position: relative;
  color: #d4e6eb;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: 0.78rem;
  font-weight: 700;
  white-space: nowrap;
}

.pulse-track span::after {
  content: '•';
  margin-left: 24px;
  color: rgba(225, 159, 83, 0.8);
}

@keyframes pulse-run {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.home-page .news-card,
.home-page .feature-panel,
.home-page .collection-orbit,
.home-page .faq-item {
  border-color: rgba(213, 231, 238, 0.22);
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.03));
}

.home-page .section-heading h2,
.home-page .feature-copy h3,
.home-page .collection-card-label h3 {
  font-family: 'Bricolage Grotesque', 'Inter', 'Sawarabi Gothic', sans-serif;
  letter-spacing: -0.02em;
}

.home-page .collection-card {
  border-color: rgba(213, 231, 238, 0.25);
}

.home-page .collection-card:hover,
.home-page .collection-card:focus {
  border-color: rgba(225, 159, 83, 0.7);
  box-shadow: 0 0 0 1px rgba(225, 159, 83, 0.28),
              0 24px 70px rgba(0, 0, 0, 0.5),
              0 0 70px rgba(118, 201, 235, 0.22);
}

.home-page .store-label,
.home-page .eyebrow {
  color: #f0b06a;
}

.home-page .site-footer {
  border-top-color: rgba(213, 231, 238, 0.22);
}

@media (prefers-reduced-motion: reduce) {
  .ambient-orb,
  .pulse-track {
    animation: none;
  }
}

.theme-experimental {
  --exp-cyan: #8ce9ff;
  --exp-lime: #9cff9b;
  --exp-ink: #021117;
  --exp-panel: rgba(7, 26, 36, 0.62);
  --exp-border: rgba(140, 233, 255, 0.38);
  background:
    radial-gradient(circle at 12% 6%, rgba(140, 233, 255, 0.28), transparent 24%),
    radial-gradient(circle at 86% 10%, rgba(156, 255, 155, 0.22), transparent 26%),
    conic-gradient(from 210deg at 20% 10%, #041018, #0a1f2a, #06161f, #041018);
}

.theme-experimental .page-shell::before {
  background-image:
    repeating-linear-gradient(0deg, rgba(140, 233, 255, 0.1) 0 1px, transparent 1px 26px),
    repeating-linear-gradient(90deg, rgba(140, 233, 255, 0.08) 0 1px, transparent 1px 26px);
  opacity: 0.3;
}

.theme-experimental .site-header {
  border-radius: 18px;
  border-color: var(--exp-border);
  background: linear-gradient(120deg, rgba(6, 28, 38, 0.86), rgba(9, 35, 31, 0.8));
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.4), inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.theme-experimental .brand {
  font-family: 'Syne', 'Inter', 'Sawarabi Gothic', sans-serif;
  letter-spacing: 0.28em;
}

.theme-experimental .hero {
  grid-template-columns: 0.95fr 1.05fr;
  align-items: stretch;
  min-height: min(95vh, 920px);
}

.theme-experimental .hero-copy {
  position: relative;
  padding: 24px 24px 22px;
  border: 1px solid var(--exp-border);
  border-radius: 24px;
  background: linear-gradient(170deg, rgba(6, 28, 38, 0.64), rgba(3, 17, 23, 0.58));
  clip-path: polygon(0 0, 95% 0, 100% 16%, 100% 100%, 8% 100%, 0 88%);
}

.theme-experimental .hero-copy::after {
  content: 'EXPERIMENTAL RELEASE';
  position: absolute;
  right: 14px;
  top: -13px;
  padding: 5px 10px;
  border: 1px solid rgba(156, 255, 155, 0.75);
  color: var(--exp-lime);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  background: rgba(4, 20, 26, 0.9);
}

.theme-experimental .hero-copy h1 {
  font-family: 'Syne', 'Bricolage Grotesque', 'Inter', 'Sawarabi Gothic', sans-serif;
  font-size: clamp(2.5rem, 4.6vw, 5.4rem);
  letter-spacing: -0.03em;
  line-height: 0.88;
  text-shadow: 0 0 20px rgba(140, 233, 255, 0.16);
}

.theme-experimental .hero-text {
  color: #b8d9df;
}

.theme-experimental .button {
  border-radius: 8px;
  clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 45%, 100% 100%, 14px 100%, 0 55%);
}

.theme-experimental .button.primary {
  background: linear-gradient(120deg, var(--exp-cyan), #b2f8ff);
  color: #02222e;
}

.theme-experimental .button.secondary {
  border-color: rgba(140, 233, 255, 0.36);
  background: rgba(9, 34, 44, 0.64);
}

.theme-experimental .hero-stats div {
  border-color: rgba(140, 233, 255, 0.35);
  background: rgba(4, 21, 29, 0.82);
  clip-path: polygon(0 0, 95% 0, 100% 28%, 100% 100%, 6% 100%, 0 70%);
}

.theme-experimental .hero-visual {
  padding: 18px;
  border: 1px solid var(--exp-border);
  border-radius: 28px;
  background: linear-gradient(145deg, rgba(7, 30, 41, 0.7), rgba(3, 15, 20, 0.6));
  transform: perspective(1200px) rotateY(-6deg) translate3d(0, calc(var(--offset, 0px) * 0.015), 0);
}

.theme-experimental .hero-card {
  border-radius: 24px;
  border-color: rgba(140, 233, 255, 0.45);
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.42), 0 0 42px rgba(140, 233, 255, 0.16);
}

.theme-experimental .hero-badge {
  right: 10px;
  bottom: 10px;
  border-radius: 8px;
  border-color: rgba(140, 233, 255, 0.5);
  color: var(--exp-cyan);
}

.theme-experimental .pulse-strip {
  transform: skewY(-1.5deg);
  border-top-color: rgba(140, 233, 255, 0.34);
  border-bottom-color: rgba(140, 233, 255, 0.34);
  background: linear-gradient(90deg, rgba(5, 21, 28, 0.8), rgba(6, 33, 43, 0.72));
}

.theme-experimental .pulse-track span {
  color: #dffaff;
}

.theme-experimental .pulse-track span::after {
  color: var(--exp-cyan);
}

.theme-experimental .section-heading h2,
.theme-experimental .feature-copy h3,
.theme-experimental .collection-card-label h3 {
  font-family: 'Syne', 'Bricolage Grotesque', 'Inter', 'Sawarabi Gothic', sans-serif;
}

.theme-experimental .news-grid {
  grid-template-columns: 1.4fr 0.8fr 0.8fr;
}

.theme-experimental .news-card,
.theme-experimental .feature-panel,
.theme-experimental .collection-orbit,
.theme-experimental .faq-item {
  background: var(--exp-panel);
  border-color: var(--exp-border);
  border-radius: 20px;
}

.theme-experimental .news-card.large {
  clip-path: polygon(0 0, 98% 0, 100% 18%, 100% 100%, 2% 100%, 0 88%);
}

.theme-experimental .news-preview-shell {
  border-color: rgba(140, 233, 255, 0.28);
  background: linear-gradient(150deg, rgba(9, 34, 44, 0.88), rgba(8, 20, 33, 0.75));
}

.theme-experimental .news-preview-badge,
.theme-experimental .news-preview-link {
  border-radius: 8px;
  border-color: rgba(140, 233, 255, 0.35);
  color: var(--exp-cyan);
}

.theme-experimental .feature-panel {
  grid-template-columns: 1.15fr 0.85fr;
}

.theme-experimental .feature-photo {
  clip-path: polygon(0 0, 94% 0, 100% 25%, 100% 100%, 6% 100%, 0 78%);
  border: 1px solid rgba(140, 233, 255, 0.28);
}

.theme-experimental .collection-orbit {
  border-radius: 20px;
  box-shadow: inset 0 0 100px rgba(0, 0, 0, 0.4), 0 0 40px rgba(140, 233, 255, 0.08);
}

.theme-experimental .collection-card {
  border-radius: 18px;
  border-color: rgba(140, 233, 255, 0.32);
}

.theme-experimental .collection-card-label {
  background: linear-gradient(180deg, transparent, rgba(0, 14, 21, 0.74));
}

.theme-experimental .collection-card-cta {
  color: var(--exp-cyan);
}

.theme-experimental .collection-card:hover,
.theme-experimental .collection-card:focus {
  border-color: rgba(140, 233, 255, 0.74);
  box-shadow: 0 0 0 1px rgba(140, 233, 255, 0.34), 0 24px 70px rgba(0, 0, 0, 0.55), 0 0 60px rgba(140, 233, 255, 0.24);
}

.theme-experimental .faq-item {
  clip-path: polygon(0 0, 98% 0, 100% 20%, 100% 100%, 2% 100%, 0 80%);
}

.theme-experimental .store-label,
.theme-experimental .eyebrow {
  color: var(--exp-cyan);
}

.theme-experimental .store-address {
  color: #e3f6fb;
}

.theme-experimental .site-footer {
  border-top-color: rgba(140, 233, 255, 0.28);
}

.theme-editorial {
  background:
    radial-gradient(circle at 10% 0%, rgba(204, 165, 114, 0.1), transparent 24%),
    radial-gradient(circle at 100% 0%, rgba(213, 222, 223, 0.2), transparent 28%),
    linear-gradient(180deg, #f8f5ef 0%, #f4efe6 100%);
  color: #1b1b1a;
}

.theme-editorial .page-shell::before {
  opacity: 0;
}

.theme-editorial .home-ambience {
  opacity: 0.45;
}

.theme-editorial .ambient-orb-1,
.theme-editorial .ambient-orb-2,
.theme-editorial .ambient-orb-3 {
  filter: blur(16px);
}

.theme-editorial .site-header {
  max-width: 1240px;
  border-radius: 0;
  border-width: 0 0 1px;
  margin-bottom: 56px;
  padding: 20px 0;
  background: rgba(248, 245, 239, 0.78);
  border-color: rgba(40, 36, 28, 0.2);
  backdrop-filter: blur(8px);
  box-shadow: none;
}

.theme-editorial .brand {
  color: #111110;
  font-family: 'Cormorant Garamond', 'Inter', 'Sawarabi Gothic', serif;
  font-size: 1.2rem;
  letter-spacing: 0.18em;
}

.theme-editorial .site-nav a,
.theme-editorial .nav-dropdown-trigger {
  color: rgba(34, 31, 24, 0.78);
}

.theme-editorial .site-nav a:hover,
.theme-editorial .nav-dropdown-trigger:hover,
.theme-editorial .nav-dropdown:hover .nav-dropdown-trigger {
  color: #111110;
}

.theme-editorial .header-search {
  border-radius: 0;
  border-color: rgba(40, 36, 28, 0.22);
  background: rgba(255, 255, 255, 0.55);
}

.theme-editorial .header-search input {
  color: #121212;
}

.theme-editorial main,
.theme-editorial .site-footer {
  max-width: 1240px;
}

.theme-editorial .hero {
  grid-template-columns: 1fr;
  min-height: auto;
  gap: 28px;
  padding-top: 0;
}

.theme-editorial .hero-copy {
  max-width: 980px;
}

.theme-editorial .eyebrow {
  color: rgba(117, 90, 53, 0.9);
  letter-spacing: 0.28em;
}

.theme-editorial .hero-copy h1 {
  font-family: 'Cormorant Garamond', 'Sawarabi Gothic', serif;
  color: #151412;
  font-size: clamp(3rem, 6vw, 5.8rem);
  line-height: 0.98;
  letter-spacing: -0.01em;
  max-width: 16ch;
  text-wrap: balance;
  margin-bottom: 22px;
}

.theme-editorial .hero-text,
.theme-editorial .hero-contact-meta p,
.theme-editorial .section-heading p,
.theme-editorial .faq-answer p,
.theme-editorial .store-hours,
.theme-editorial .copyright {
  color: rgba(35, 31, 24, 0.76);
}

.theme-editorial .hero-visual {
  max-width: 820px;
  justify-self: end;
  transform: none;
}

.theme-editorial .hero-card {
  border-radius: 2px;
  border-color: rgba(40, 36, 28, 0.18);
  box-shadow: 0 32px 44px rgba(80, 60, 24, 0.14);
}

.theme-editorial .hero-badge {
  border-radius: 0;
  right: 0;
  bottom: 0;
  background: rgba(246, 240, 231, 0.92);
  border-color: rgba(40, 36, 28, 0.2);
  color: #1e1c18;
}

.theme-editorial .button {
  border-radius: 0;
  padding: 13px 24px;
  font-weight: 600;
}

.theme-editorial .button.primary {
  background: #171512;
  color: #f8f4ec;
}

.theme-editorial .button.secondary {
  background: transparent;
  color: #1b1916;
  border-color: rgba(40, 36, 28, 0.25);
}

.theme-editorial .hero-stats {
  margin-top: 28px;
  gap: 0;
  border-top: 1px solid rgba(40, 36, 28, 0.16);
  border-bottom: 1px solid rgba(40, 36, 28, 0.16);
}

.theme-editorial .hero-stats div {
  border: 0;
  border-right: 1px solid rgba(40, 36, 28, 0.14);
  background: transparent;
  border-radius: 0;
  padding: 14px 18px;
}

.theme-editorial .hero-stats div:last-child {
  border-right: 0;
}

.theme-editorial .hero-stats strong {
  color: #171512;
}

.theme-editorial .hero-stats span {
  color: rgba(35, 31, 24, 0.7);
}

.theme-editorial .pulse-strip {
  margin-top: 24px;
  border-color: rgba(40, 36, 28, 0.18);
  background: transparent;
  transform: none;
}

.theme-editorial .pulse-track {
  animation-duration: 22s;
}

.theme-editorial .pulse-track span {
  color: #2c2922;
  letter-spacing: 0.14em;
}

.theme-editorial .pulse-track span::after {
  color: rgba(117, 90, 53, 0.65);
}

.theme-editorial .section {
  padding-top: 86px;
}

.theme-editorial .section-heading {
  margin-bottom: 28px;
}

.theme-editorial .section-heading h2 {
  font-family: 'Cormorant Garamond', 'Sawarabi Gothic', serif;
  color: #161512;
  font-size: clamp(2rem, 3vw, 3rem);
  letter-spacing: 0;
}

.theme-editorial .news-grid {
  gap: 24px;
}

.theme-editorial .news-card,
.theme-editorial .feature-panel,
.theme-editorial .collection-orbit,
.theme-editorial .faq-item {
  background: rgba(255, 255, 255, 0.58);
  border-color: rgba(40, 36, 28, 0.16);
  border-radius: 2px;
  box-shadow: 0 12px 24px rgba(50, 39, 18, 0.08);
}

.theme-editorial .news-preview-shell {
  background: linear-gradient(180deg, rgba(247, 242, 234, 0.95), rgba(241, 233, 221, 0.88));
  border-color: rgba(40, 36, 28, 0.14);
  border-radius: 2px;
}

.theme-editorial .news-preview-badge,
.theme-editorial .news-preview-link {
  border-radius: 2px;
  border-color: rgba(40, 36, 28, 0.18);
  color: #3b3226;
}

.theme-editorial .feature-panel {
  padding: 26px;
}

.theme-editorial .feature-photo {
  border-radius: 2px;
}

.theme-editorial .feature-copy h3,
.theme-editorial .collection-card-label h3,
.theme-editorial .news-card h3 {
  font-family: 'Cormorant Garamond', 'Sawarabi Gothic', serif;
  color: #181613;
  font-size: 1.56rem;
  line-height: 1.2;
}

.theme-editorial .inline-link,
.theme-editorial .collection-card-cta {
  color: #4d3a1e;
}

.theme-editorial .collection-orbit {
  padding: 32px 0;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.55);
}

.theme-editorial .collection-orbit::before,
.theme-editorial .collection-orbit::after {
  width: 56px;
  background: linear-gradient(90deg, rgba(248, 245, 239, 0.9), transparent);
}

.theme-editorial .collection-orbit::after {
  background: linear-gradient(270deg, rgba(248, 245, 239, 0.9), transparent);
}

.theme-editorial .collection-card {
  border-radius: 2px;
  border-color: rgba(40, 36, 28, 0.18);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
}

.theme-editorial .collection-card:hover,
.theme-editorial .collection-card:focus {
  transform: translateY(-5px) scale(1.01);
  border-color: rgba(117, 90, 53, 0.38);
  box-shadow: 0 14px 34px rgba(66, 48, 18, 0.18);
}

.theme-editorial .collection-track:hover .collection-card:not(:hover) {
  filter: grayscale(0.4) brightness(0.9);
  transform: translateZ(0) scale(0.98);
}

.theme-editorial .faq-item summary,
.theme-editorial .faq-answer {
  color: #1e1b16;
}

.theme-editorial .faq-item summary::after {
  color: #4f3b1d;
}

.theme-editorial .store-label {
  color: #4b3517;
}

.theme-editorial .store-address {
  color: #1a1813;
}

.theme-editorial .site-footer {
  border-top-color: rgba(40, 36, 28, 0.16);
}

.theme-luxury {
  --lux-bg: #050403;
  --lux-bg-soft: #0f0c09;
  --lux-panel: rgba(20, 14, 9, 0.9);
  --lux-border: rgba(210, 165, 98, 0.5);
  --lux-border-soft: rgba(210, 165, 98, 0.3);
  --lux-text: #f4e7d1;
  --lux-muted: #d5bf9d;
  --lux-gold: #d2a05f;
  --lux-gold-soft: #e2c08d;
  background:
    radial-gradient(circle at 12% -4%, rgba(210, 165, 98, 0.24), transparent 32%),
    radial-gradient(circle at 88% 10%, rgba(248, 225, 185, 0.14), transparent 34%),
    linear-gradient(168deg, #030202 0%, #0b0805 52%, #030202 100%);
  color: var(--lux-text);
}

.theme-luxury .page-shell::before {
  background-image:
    linear-gradient(rgba(210, 165, 98, 0.09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(210, 165, 98, 0.08) 1px, transparent 1px);
  background-size: 36px 36px;
  opacity: 0.16;
}

.theme-luxury .home-ambience {
  opacity: 0.82;
}

.theme-luxury .ambient-orb-1 {
  background: radial-gradient(circle at 35% 35%, rgba(200, 154, 94, 0.45), rgba(200, 154, 94, 0.04));
}

.theme-luxury .ambient-orb-2 {
  background: radial-gradient(circle at 35% 35%, rgba(255, 226, 178, 0.33), rgba(255, 226, 178, 0.03));
}

.theme-luxury .ambient-orb-3 {
  background: radial-gradient(circle at 35% 35%, rgba(151, 116, 67, 0.36), rgba(151, 116, 67, 0.04));
}

.theme-luxury .site-header {
  border-color: var(--lux-border);
  background: linear-gradient(120deg, rgba(9, 6, 4, 0.9), rgba(24, 16, 10, 0.82));
  box-shadow: 0 20px 46px rgba(0, 0, 0, 0.5), inset 0 0 0 1px rgba(255, 231, 197, 0.08);
}

.theme-luxury .brand {
  font-family: 'Cinzel', 'Cormorant Garamond', 'Inter', 'Sawarabi Gothic', serif;
  color: #f8efdf;
  letter-spacing: 0.26em;
  font-size: 1.15rem;
}

.theme-luxury .site-nav a,
.theme-luxury .nav-dropdown-trigger {
  color: var(--lux-muted);
}

.theme-luxury .site-nav a:hover,
.theme-luxury .nav-dropdown-trigger:hover,
.theme-luxury .nav-dropdown:hover .nav-dropdown-trigger {
  color: #f6ecdc;
}

.theme-luxury .nav-dropdown-menu {
  background: rgba(11, 9, 8, 0.96);
  border-color: var(--lux-border-soft);
}

.theme-luxury .nav-dropdown-menu a:hover {
  background: rgba(200, 154, 94, 0.12);
}

.theme-luxury .header-search {
  border-color: var(--lux-border-soft);
  background: rgba(255, 255, 255, 0.03);
}

.theme-luxury .header-search input,
.theme-luxury .header-search input::placeholder {
  color: var(--lux-muted);
}

.theme-luxury .eyebrow,
.theme-luxury .store-label {
  color: var(--lux-gold-soft);
}

.theme-luxury .hero {
  padding-top: 44px;
  gap: 40px;
}

.theme-luxury .hero-copy h1 {
  font-family: 'Cinzel', 'Cormorant Garamond', 'Inter', 'Sawarabi Gothic', serif;
  font-size: clamp(2.95rem, 4.9vw, 5.45rem);
  line-height: 0.92;
  letter-spacing: 0;
  color: #fff2dc;
  text-shadow: 0 10px 34px rgba(0, 0, 0, 0.52);
}

.theme-luxury .hero-text,
.theme-luxury .hero-contact-meta p,
.theme-luxury .section-heading p,
.theme-luxury .news-card p,
.theme-luxury .feature-copy p,
.theme-luxury .faq-answer p,
.theme-luxury .store-hours,
.theme-luxury .copyright {
  color: var(--lux-muted);
}

.theme-luxury .button {
  border-radius: 7px;
  font-weight: 700;
  letter-spacing: 0.03em;
  border-width: 1px;
}

.theme-luxury .button.primary {
  background: linear-gradient(135deg, #a56f35, #d7b37e 48%, #e9cb98 100%);
  color: #20150a;
  box-shadow: 0 12px 24px rgba(161, 113, 49, 0.28);
}

.theme-luxury .button.secondary {
  border-color: var(--lux-border-soft);
  background: rgba(255, 255, 255, 0.04);
  color: #f0e6d7;
}

.theme-luxury .hero-stats div {
  border-color: var(--lux-border-soft);
  background: rgba(255, 249, 235, 0.04);
}

.theme-luxury .hero-stats strong {
  color: #f8ebd8;
}

.theme-luxury .hero-stats span {
  color: #c8b8a0;
}

.theme-luxury .hero-card {
  border-color: var(--lux-border);
  box-shadow: 0 28px 72px rgba(0, 0, 0, 0.56), 0 0 72px rgba(210, 165, 98, 0.2);
}

.theme-luxury .hero-card::before {
  content: '';
  position: absolute;
  inset: -30% -40%;
  background: linear-gradient(115deg, transparent 42%, rgba(255, 220, 162, 0.25) 50%, transparent 58%);
  animation: lux-sheen 7s ease-in-out infinite;
  pointer-events: none;
  mix-blend-mode: screen;
}

@keyframes lux-sheen {
  0%,
  100% {
    transform: translateX(-38%) translateY(0) rotate(6deg);
    opacity: 0;
  }
  26% {
    opacity: 0;
  }
  42% {
    opacity: 1;
  }
  58% {
    opacity: 0;
  }
  80% {
    transform: translateX(28%) translateY(0) rotate(6deg);
    opacity: 0;
  }
}

.theme-luxury .hero-card::after {
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.35) 100%);
}

.theme-luxury .hero-badge {
  border-color: var(--lux-border-soft);
  background: rgba(8, 6, 5, 0.86);
  color: var(--lux-gold-soft);
}

.theme-luxury .pulse-strip {
  border-top-color: var(--lux-border-soft);
  border-bottom-color: var(--lux-border-soft);
  background: linear-gradient(90deg, rgba(20, 14, 9, 0.72), rgba(35, 24, 15, 0.64));
}

.theme-luxury .pulse-track span {
  color: #efdfc7;
}

.theme-luxury .pulse-track span::after {
  color: var(--lux-gold);
}

.theme-luxury .section-heading h2,
.theme-luxury .feature-copy h3,
.theme-luxury .collection-card-label h3,
.theme-luxury .news-card h3,
.theme-luxury .faq-item summary,
.theme-luxury .store-address {
  color: #f5e9d7;
}

.theme-luxury .latest-ring-shell {
  background: linear-gradient(152deg, rgba(26, 19, 12, 0.92), rgba(14, 10, 7, 0.86));
  border-color: var(--lux-border-soft);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.36);
}

.theme-luxury .latest-ring-viewport {
  border-color: rgba(210, 165, 98, 0.22);
  background: radial-gradient(circle at 50% 18%, rgba(210, 165, 98, 0.18), rgba(255, 255, 255, 0.02) 48%, transparent 72%);
}

.theme-luxury .latest-ring-card {
  border-color: rgba(210, 165, 98, 0.3);
  background: linear-gradient(145deg, rgba(35, 24, 15, 0.92), rgba(16, 11, 8, 0.82));
}

.theme-luxury .section-heading h2,
.theme-luxury .feature-copy h3,
.theme-luxury .collection-card-label h3 {
  font-family: 'Cinzel', 'Cormorant Garamond', 'Inter', 'Sawarabi Gothic', serif;
  letter-spacing: 0.03em;
}

.theme-luxury .news-card,
.theme-luxury .feature-panel,
.theme-luxury .collection-orbit,
.theme-luxury .faq-item {
  background: linear-gradient(152deg, rgba(26, 19, 12, 0.92), rgba(14, 10, 7, 0.86));
  border-color: var(--lux-border-soft);
  border-radius: 20px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.36);
}

.theme-luxury .news-card.large {
  background:
    linear-gradient(135deg, rgba(200, 154, 94, 0.14), transparent 68%),
    linear-gradient(150deg, rgba(24, 19, 14, 0.9), rgba(14, 11, 9, 0.82));
}

.theme-luxury .news-preview-shell {
  background: linear-gradient(140deg, rgba(35, 26, 16, 0.9), rgba(16, 11, 8, 0.85));
  border-color: var(--lux-border-soft);
}

.theme-luxury .news-preview-badge,
.theme-luxury .news-preview-link {
  border-color: var(--lux-border-soft);
  color: var(--lux-gold-soft);
}

.theme-luxury .news-preview-link:hover {
  background: rgba(200, 154, 94, 0.16);
  border-color: var(--lux-border);
}

.theme-luxury .inline-link,
.theme-luxury .collection-card-cta {
  color: var(--lux-gold-soft);
}

.theme-luxury .collection-orbit {
  background:
    linear-gradient(140deg, rgba(20, 15, 11, 0.86), rgba(13, 10, 8, 0.9)),
    linear-gradient(225deg, rgba(200, 154, 94, 0.08), transparent 55%);
}

.theme-luxury .collection-orbit::before {
  background: linear-gradient(90deg, rgba(7, 6, 6, 0.9), transparent);
}

.theme-luxury .collection-orbit::after {
  background: linear-gradient(270deg, rgba(7, 6, 6, 0.9), transparent);
}

.theme-luxury .collection-card {
  border-color: var(--lux-border-soft);
}

.theme-luxury .collection-card:hover,
.theme-luxury .collection-card:focus {
  border-color: var(--lux-border);
  box-shadow: 0 0 0 1px rgba(210, 165, 98, 0.38),
              0 24px 70px rgba(0, 0, 0, 0.62),
              0 0 48px rgba(210, 165, 98, 0.24);
}

.theme-luxury .collection-track:hover .collection-card:not(:hover) {
  filter: blur(1.15px) brightness(0.7);
}

.theme-luxury .faq-item summary::after {
  color: var(--lux-gold-soft);
}

.theme-luxury .faq-answer {
  border-top-color: var(--lux-border-soft);
}

.theme-luxury .site-footer {
  border-top-color: var(--lux-border-soft);
}

@media (max-width: 980px) {
  .theme-luxury .hero,
  .theme-luxury .news-grid,
  .theme-luxury .feature-panel {
    grid-template-columns: 1fr;
  }

  .theme-luxury .hero {
    gap: 24px;
  }
}

@media (max-width: 720px) {
  .theme-luxury .hero-copy h1 {
    font-size: clamp(2.15rem, 9.4vw, 2.95rem);
    line-height: 0.98;
  }

  .theme-luxury .button {
    width: 100%;
  }
}

@media (max-width: 980px) {
  .hero,
  .feature-panel,
  .news-grid,
  .collection-list,
  .purchase-grid,
  .product-grid,
  .detail-page,
  .new-arrivals-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .detail-stage {
    min-height: 420px;
  }

  .detail-page-shell {
    padding-bottom: 40px;
  }

  .detail-page {
    gap: 18px;
    padding-top: 4px;
  }

  .detail-visual {
    border-radius: 24px;
    padding: 14px;
  }

  .detail-stage {
    border-radius: 18px;
    min-height: 0;
    aspect-ratio: auto;
    height: auto;
  }

  .detail-stage img {
    width: 100%;
    height: auto;
    max-height: 72vh;
    object-fit: contain;
    object-position: center;
  }

  .detail-thumbs {
    gap: 8px;
    margin-top: 12px;
    overflow: visible;
    flex-wrap: wrap;
    scroll-snap-type: none;
    padding-bottom: 0;
  }

  .detail-thumb {
    min-width: 0;
    flex: 0 0 calc((100% - 24px) / 4);
    height: 68px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0b1114;
  }

  .detail-thumb img {
    object-fit: contain;
    object-position: center;
  }

  .detail-info {
    padding: 8px 2px 0;
  }

  .detail-info h1 {
    margin-bottom: 14px;
    font-size: clamp(1.8rem, 6vw, 2.4rem);
  }

  .detail-price {
    font-size: 1.55rem;
  }

  .detail-description {
    margin-bottom: 18px;
    line-height: 1.7;
  }

  .detail-summary {
    gap: 10px;
    margin-bottom: 18px;
  }

  .info-card {
    padding: 14px;
  }

  .home-page .hero-copy h1 {
    line-height: 0.95;
  }

  .theme-experimental .hero,
  .theme-experimental .feature-panel,
  .theme-experimental .news-grid {
    grid-template-columns: 1fr;
  }

  .theme-experimental .hero-copy,
  .theme-experimental .news-card.large,
  .theme-experimental .faq-item,
  .theme-experimental .feature-photo {
    clip-path: none;
  }

  .theme-experimental .hero-visual {
    transform: translate3d(0, calc(var(--offset, 0px) * 0.01), 0);
  }

  .theme-editorial .site-header {
    border-radius: 14px;
    padding: 18px 16px;
    border-width: 1px;
  }

  .theme-editorial .hero {
    gap: 20px;
  }

  .theme-editorial .hero-copy h1 {
    max-width: none;
  }

  .theme-editorial .hero-visual {
    max-width: none;
  }

  .theme-editorial .section {
    padding-top: 56px;
  }

  .theme-editorial .hero-stats {
    display: grid;
    grid-template-columns: 1fr;
  }

  .theme-editorial .hero-stats div {
    border-right: 0;
    border-bottom: 1px solid rgba(40, 36, 28, 0.14);
  }

  .theme-editorial .hero-stats div:last-child {
    border-bottom: 0;
  }

  .latest-ring-shell {
    padding: 18px;
  }

  .latest-ring-viewport {
    min-height: 470px;
  }

  .latest-ring-track {
    --ring-radius: 420px;
    width: 220px;
    height: 220px;
  }

  .latest-ring-card img {
    height: 150px;
  }

  .collection-orbit {
    perspective: none;
    overflow: visible;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    padding: 0;
  }

  .theme-luxury .collection-orbit,
  .theme-editorial .collection-orbit,
  .theme-experimental .collection-orbit {
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    padding: 0;
  }

  .collection-orbit::before,
  .collection-orbit::after {
    display: none;
  }

  .collection-track {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 0;
    transform: none !important;
    cursor: default;
  }

  .collection-card {
    flex: initial;
    transform: none !important;
    filter: none !important;
  }

  .collection-track:hover .collection-card:not(:hover) {
    filter: none;
    transform: none;
  }

  .collection-card:hover,
  .collection-card:focus {
    transform: none;
    box-shadow: var(--shadow);
  }

  .collection-card-visual {
    height: 240px;
  }

  .collection-card-cta {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 720px) {
  .page-shell {
    padding: 16px 16px 32px;
  }

  .hero-badge {
    right: 14px;
    bottom: 10px;
    padding: 8px 12px;
    font-size: 0.82rem;
  }

  .site-header {
    flex-direction: column;
    gap: 12px;
    padding: 16px 18px;
    border-radius: 20px;
  }

  .brand {
    width: 100%;
    text-align: center;
  }

  .site-nav {
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 12px;
    width: 100%;
  }

  .site-nav a,
  .nav-dropdown-trigger {
    font-size: 0.9rem;
  }

  .header-search {
    width: 100%;
    justify-content: center;
  }

  .header-search input {
    width: 100%;
    text-align: center;
  }

  .nav-dropdown {
    position: relative;
    z-index: 20;
  }

  .nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%) translateY(0);
    width: min(220px, calc(100vw - 32px));
    padding: 12px;
    background: rgba(7, 10, 11, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.16);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(18px);
    z-index: 30;
  }

  .nav-dropdown:hover .nav-dropdown-menu,
  .nav-dropdown:focus-within .nav-dropdown-menu {
    opacity: 1;
    pointer-events: auto;
  }

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

  .hero-stats {
    gap: 14px;
  }

  .hero-contact-meta {
    text-align: center;
  }

  .hero-contact-meta p {
    font-size: 0.82rem;
  }

  .store-info {
    text-align: center;
  }

  .home-page .hero {
    padding-top: 18px;
    gap: 24px;
  }

  .home-page .hero-copy h1 {
    font-size: clamp(2.2rem, 9vw, 2.9rem);
  }

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

  .home-page .hero-stats div {
    min-width: unset;
    width: 100%;
  }

  .pulse-track {
    animation-duration: 24s;
  }

  .theme-experimental .site-header {
    border-radius: 14px;
  }

  .theme-experimental .hero-copy {
    padding: 16px;
  }

  .theme-experimental .hero-copy::after {
    position: static;
    display: inline-block;
    margin-bottom: 14px;
  }

  .theme-experimental .button {
    width: 100%;
  }

  .theme-editorial .hero-copy h1 {
    font-size: clamp(2.2rem, 10.8vw, 3rem);
    line-height: 1.02;
  }

  .theme-editorial .section-heading h2 {
    font-size: clamp(1.8rem, 8vw, 2.2rem);
  }

  .theme-editorial .feature-panel,
  .theme-editorial .news-card,
  .theme-editorial .collection-orbit,
  .theme-editorial .faq-item {
    border-radius: 8px;
  }

  .latest-ring-viewport {
    min-height: 390px;
  }

  .latest-ring-track {
    --ring-radius: 300px;
    width: 188px;
    height: 188px;
  }

  .latest-ring-card {
    border-radius: 14px;
  }

  .latest-ring-card img {
    height: 124px;
  }

  .detail-page-shell {
    padding-bottom: 28px;
  }

  .detail-page {
    gap: 14px;
    padding-top: 0;
  }

  .detail-visual {
    border-radius: 18px;
    padding: 10px;
  }

  .detail-stage {
    min-height: 0;
    border-radius: 14px;
    aspect-ratio: auto;
    height: auto;
  }

  .detail-stage img {
    width: 100%;
    height: auto;
    max-height: 66vh;
    object-fit: contain;
    object-position: center;
  }

  .detail-thumbs {
    gap: 6px;
    margin-top: 10px;
    overflow: visible;
    flex-wrap: wrap;
    scroll-snap-type: none;
    padding-bottom: 0;
  }

  .detail-thumb {
    min-width: 0;
    flex: 0 0 calc((100% - 18px) / 4);
    height: 56px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0b1114;
  }

  .detail-thumb img {
    object-fit: contain;
    object-position: center;
  }

  .detail-info {
    padding-top: 2px;
  }

  .detail-info .eyebrow {
    font-size: 0.68rem;
    letter-spacing: 0.24em;
    margin-bottom: 8px;
  }

  .detail-info h1 {
    margin-bottom: 12px;
    font-size: clamp(1.5rem, 8.4vw, 2rem);
    line-height: 1.08;
  }

  .detail-price-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 12px;
  }

  .detail-price {
    font-size: 1.36rem;
  }

  .detail-stock {
    padding: 7px 11px;
    font-size: 0.84rem;
  }

  .detail-description {
    font-size: 0.95rem;
    line-height: 1.65;
    margin-bottom: 14px;
  }

  .detail-summary {
    grid-template-columns: 1fr;
    gap: 8px;
    margin-bottom: 14px;
  }

  .info-card {
    border-radius: 12px;
    padding: 12px;
  }

  .detail-actions {
    flex-direction: column;
    gap: 8px;
  }

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