@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Playfair+Display:wght@500;600;700&display=swap');

:root {
  --bg: #f7f4ee;
  --surface: #ffffff;
  --surface-alt: #f0ebe3;
  --text: #1c1d1a;
  --muted: #6d6e67;
  --line: #d8d0c3;
  --accent: #1e1d1b;
  --accent-soft: #8a6a47;
  --radius: 0.25rem;
}

* {
  box-sizing: border-box;
}

body.venqm-theme {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 10% 0%, #f0e7d8 0%, rgba(240, 231, 216, 0) 34%),
    radial-gradient(circle at 90% 100%, #efe7dd 0%, rgba(239, 231, 221, 0) 32%),
    var(--bg);
  font-family: 'Manrope', 'Segoe UI', sans-serif;
  text-rendering: optimizeLegibility;
}

a {
  color: inherit;
}

.material-symbols-outlined {
  font-variation-settings:
    'FILL' 0,
    'wght' 300,
    'GRAD' 0,
    'opsz' 24;
  line-height: 1;
}

.site-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.site-main {
  flex: 1;
  padding-top: 1rem;
}

body.home-page .site-main {
  padding-top: 0;
  margin-top: calc(-5.3rem - 1px);
}

.venqm-container {
  max-width: 1280px;
}

.site-header {
  border-bottom: 1px solid rgba(122, 108, 85, 0.12);
  background: rgba(247, 244, 238, 0.85);
  backdrop-filter: blur(10px);
  transition:
    box-shadow 0.25s ease,
    background-color 0.25s ease,
    border-color 0.25s ease,
    backdrop-filter 0.25s ease;
}

.site-header.is-scrolled {
  box-shadow: 0 8px 28px rgba(24, 24, 21, 0.08);
}

body.home-page .site-header {
  background: transparent;
  border-bottom-color: transparent;
  backdrop-filter: none;
}

body.home-page .site-header:not(.is-scrolled) .venqm-brand {
  color: #fff !important;
  text-shadow: 0 3px 14px rgba(0, 0, 0, 0.3);
}

body.home-page .site-header:not(.is-scrolled) .venqm-link {
  color: rgba(255, 255, 255, 0.9);
}

body.home-page .site-header:not(.is-scrolled) .venqm-link::after {
  background: #fff;
}

body.home-page .site-header:not(.is-scrolled) .venqm-toggler {
  border-color: rgba(255, 255, 255, 0.65);
}

body.home-page .site-header:not(.is-scrolled) .navbar-toggler-icon {
  filter: invert(1) grayscale(1) brightness(2);
}

body.home-page .site-header:not(.is-scrolled) .icon-button {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.08);
}

body.home-page .site-header.is-scrolled {
  background: rgba(247, 244, 238, 0.85);
  border-bottom-color: rgba(122, 108, 85, 0.12);
  backdrop-filter: blur(10px);
}

.venqm-navbar {
  padding-block: 0.95rem;
}

.venqm-brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.9rem;
  letter-spacing: -0.02em;
  color: var(--accent) !important;
}

.venqm-link {
  color: var(--muted);
  font-size: 0.84rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
  padding-inline: 0.35rem !important;
  position: relative;
}

.venqm-link::after {
  content: '';
  position: absolute;
  left: 0.35rem;
  right: 0.35rem;
  bottom: 0.1rem;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--accent);
  transition: transform 0.2s ease;
}

.venqm-link:hover,
.venqm-link.active {
  color: var(--accent) !important;
}

.venqm-link:hover::after,
.venqm-link.active::after {
  transform: scaleX(1);
}

.venqm-toggler {
  border-color: rgba(0, 0, 0, 0.16);
}

.icon-button {
  width: 2.25rem;
  height: 2.25rem;
  border: 1px solid rgba(36, 35, 33, 0.14);
  border-radius: var(--radius);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  color: var(--accent);
  text-decoration: none;
}

.icon-button:hover {
  transform: translateY(-2px);
  border-color: rgba(30, 29, 27, 0.45);
  background: rgba(255, 255, 255, 0.55);
}

.cart-button {
  position: relative;
}

.cart-badge {
  position: absolute;
  right: -0.35rem;
  top: -0.35rem;
  min-width: 1.1rem;
  height: 1.1rem;
  border-radius: 999px;
  background: #b12626;
  color: #fff;
  font-size: 0.66rem;
  font-weight: 700;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 0.22rem;
  border: 1px solid #fff;
}

.hero-stage {
  position: relative;
  min-height: min(84vh, 860px);
  border-radius: var(--radius);
  overflow: hidden;
  margin-inline: 1rem;
  border: 1px solid rgba(0, 0, 0, 0.08);
}

body.home-page .hero-stage {
  min-height: 100vh;
  margin-inline: 0;
  margin-top: -1px;
  border: 0;
  border-radius: 0;
}

body.home-page .hero-content-wrap {
  padding-top: 5.4rem;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(15, 15, 14, 0.65) 0%,
      rgba(15, 15, 14, 0.28) 45%,
      rgba(15, 15, 14, 0.16) 100%
    ),
    linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.25) 0%,
      rgba(0, 0, 0, 0) 48%,
      rgba(0, 0, 0, 0.28) 100%
    );
}

.hero-content-wrap {
  position: relative;
  z-index: 2;
  min-height: inherit;
  display: flex;
  align-items: center;
}

.hero-content {
  max-width: 620px;
  color: #ffffff;
  padding-block: 3rem;
}

.hero-kicker {
  margin: 0;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 700;
}

.hero-title {
  margin: 0;
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.08;
}

.hero-text {
  max-width: 56ch;
  font-size: 1.08rem;
  line-height: 1.62;
  opacity: 0.96;
}

.btn-luxury {
  border-radius: var(--radius);
  border: 1px solid var(--accent);
  background: var(--accent);
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.88rem 1.3rem;
}

.btn-luxury:hover,
.btn-luxury:focus {
  background: #2a2824;
  border-color: #2a2824;
  color: #ffffff;
}

.section-gap {
  padding-top: clamp(2.6rem, 6vw, 5.5rem);
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.section-title {
  margin: 0;
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.65rem, 2.7vw, 2.5rem);
  letter-spacing: -0.01em;
}

.section-subtitle {
  margin-top: 0.75rem;
  color: var(--muted);
  line-height: 1.65;
  max-width: 62ch;
}

.section-link {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  font-weight: 700;
  border-bottom: 1px solid rgba(20, 20, 18, 0.5);
  padding-bottom: 0.2rem;
  text-decoration: none;
}

.collection-card {
  height: 100%;
  background: var(--surface);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(34, 30, 24, 0.08);
}

.collection-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  transition: transform 0.65s ease;
}

.collection-card-wide img {
  aspect-ratio: 16 / 9;
}

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

.collection-body {
  padding: 1.5rem;
}

.collection-body h3 {
  margin: 0 0 0.5rem;
  font-family: 'Playfair Display', serif;
  font-size: 1.42rem;
}

.collection-body p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.collection-badge {
  display: inline-block;
  margin-bottom: 0.8rem;
  padding: 0.26rem 0.56rem;
  background: #efe4d3;
  font-size: 0.73rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
}

.featured-stage {
  margin-top: clamp(2rem, 4vw, 4rem);
  background: linear-gradient(180deg, #f4efe7 0%, #f7f4ee 100%);
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  padding-bottom: clamp(2.6rem, 5vw, 4.2rem);
}

.product-card {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(25, 24, 22, 0.11);
  background: var(--surface);
  box-shadow: 0 15px 40px rgba(28, 25, 22, 0.05);
  transition:
    transform 0.23s ease,
    box-shadow 0.23s ease;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(24, 23, 20, 0.12);
}

.product-media-wrap {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.product-image-link {
  position: relative;
  display: block;
  text-decoration: none;
}

.product-gallery-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 2.1rem;
  height: 2.1rem;
  border: 1px solid rgba(255, 255, 255, 0.8);
  background: rgba(17, 16, 14, 0.35);
  color: #fff;
  display: grid;
  place-items: center;
  z-index: 3;
  opacity: 0;
  transition:
    opacity 0.2s ease,
    background 0.2s ease;
}

.product-gallery-arrow span {
  font-size: 1.25rem;
  line-height: 1;
}

.product-gallery-arrow.is-prev {
  left: 0.5rem;
}

.product-gallery-arrow.is-next {
  right: 0.5rem;
}

.product-gallery-arrow.is-hidden {
  display: none;
}

.product-media-wrap:hover .product-gallery-arrow,
.product-media-wrap:focus-within .product-gallery-arrow {
  opacity: 1;
}

.product-gallery-arrow:hover {
  background: rgba(17, 16, 14, 0.55);
}

.product-image {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  display: block;
  transition:
    transform 0.5s ease,
    opacity 0.18s ease;
}

.product-image.is-swapping {
  opacity: 0.82;
}

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

.product-image-placeholder {
  width: 100%;
  aspect-ratio: 4 / 5;
  display: grid;
  place-items: center;
  color: #8f8475;
  letter-spacing: 0.2em;
  font-size: 0.74rem;
  background:
    linear-gradient(rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0.6)),
    repeating-linear-gradient(
      -45deg,
      #f6efe3,
      #f6efe3 14px,
      #efe6d8 14px,
      #efe6d8 28px
    );
}

.product-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  margin: 0 0 0.45rem;
}

.product-title-link {
  text-decoration: none;
  color: inherit;
}

.product-title-link:hover {
  color: #4b463d;
}

.product-description {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.55;
}

.product-price {
  font-size: 1rem;
  letter-spacing: 0.04em;
  font-weight: 800;
}

.variant-panel {
  padding: 0.7rem;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: #fcfaf6;
}

.variant-swatch-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.62rem;
  margin-bottom: 0.75rem;
}

.variant-swatch {
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.2);
  background: var(--swatch-color, #b8b8b8);
  position: relative;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease;
}

.variant-swatch:hover {
  transform: scale(1.08);
}

.variant-swatch.is-active {
  box-shadow:
    0 0 0 2px #fff,
    0 0 0 4px #292723;
}

.variant-selected,
.variant-stock {
  font-size: 0.74rem;
  color: #6e6a60;
  line-height: 1.4;
  margin: 0;
}

.variant-empty {
  font-size: 0.8rem;
  color: #8f887a;
  border: 1px dashed rgba(0, 0, 0, 0.15);
  padding: 0.45rem 0.55rem;
}

.products-hero {
  border-bottom: 1px solid rgba(0, 0, 0, 0.09);
  padding-bottom: 1.1rem;
}

.products-page-shell {
  padding-top: 0.35rem;
}

.products-title {
  margin: 0 0 0.4rem;
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3.2vw, 3rem);
}

.products-subtitle {
  margin: 0;
  color: var(--muted);
  max-width: 56ch;
}

.filter-panel {
  position: sticky;
  top: 6rem;
  padding: 1.35rem;
  border-radius: var(--radius);
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: #fffdf8;
}

.filter-title {
  margin: 0;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 800;
}

.category-accordion {
  --bs-accordion-bg: transparent;
  --bs-accordion-border-color: rgba(0, 0, 0, 0.1);
  --bs-accordion-btn-padding-x: 0.9rem;
  --bs-accordion-btn-padding-y: 0.8rem;
  --bs-accordion-btn-focus-box-shadow: none;
  --bs-accordion-active-bg: #f8f3ea;
  --bs-accordion-active-color: var(--accent);
}

.category-accordion .accordion-item {
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 0.5rem;
}

.category-header-row {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.22rem;
  background: #f7f2e9;
}

.category-filter-link {
  flex: 1;
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 0.45rem;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 700;
  color: #2f2d29;
  padding: 0.55rem 0.68rem;
  border-radius: 0.45rem;
}

.category-filter-link:hover,
.category-filter-link.is-active {
  background: #fff;
}

.category-accordion .accordion-label {
  flex: 1;
  min-width: 0;
}

.category-accordion .accordion-count {
  color: #7a7468;
  font-weight: 600;
}

.category-toggle-btn {
  width: 2rem;
  height: 2rem;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 0.45rem;
  background: #fff;
  display: grid;
  place-items: center;
  color: #2d2b27;
}

.category-toggle-icon {
  display: block;
  font-size: 1rem;
  line-height: 1;
  transition: transform 0.2s ease;
}

.category-toggle-btn.collapsed .category-toggle-icon {
  transform: rotate(-90deg);
}

.category-accordion .accordion-body {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.6;
}

.category-product-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.45rem;
}

.category-product-link {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  text-decoration: none;
  color: #4f4a42;
  padding: 0.25rem 0.35rem;
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.category-product-link:hover {
  color: #1f1d1a;
  border-color: rgba(0, 0, 0, 0.18);
}

.category-product-link img {
  width: 2rem;
  height: 2rem;
  object-fit: cover;
}

.product-grid-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  margin-bottom: 1.1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  color: var(--muted);
  font-size: 0.88rem;
}

.product-grid-head .form-select {
  border-radius: 999px;
  border-color: rgba(0, 0, 0, 0.15);
  min-width: 12rem;
  font-size: 0.85rem;
}

.placeholder-panel {
  padding: 1.4rem;
  border: 1px dashed #c7bdaf;
  border-radius: var(--radius);
  background: #fffdf8;
}

.summary-card {
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: var(--radius);
  background: #fff;
  padding: 1.3rem;
}

.summary-card h2 {
  margin: 0 0 0.9rem;
  font-family: 'Playfair Display', serif;
  font-size: 1.32rem;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.93rem;
  color: var(--muted);
  margin-bottom: 0.55rem;
}

.summary-row.total {
  color: var(--accent);
  font-weight: 700;
}

.mission-image {
  position: relative;
}

.mission-image img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.mission-image::after {
  content: '';
  position: absolute;
  width: 62%;
  height: 62%;
  right: -1rem;
  bottom: -1rem;
  border: 1px solid rgba(137, 109, 73, 0.38);
  border-radius: var(--radius);
  z-index: -1;
}

.mission-kicker {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.76rem;
  font-weight: 800;
  color: #7a6040;
  margin-bottom: 0.7rem;
}

.mission-title {
  margin: 0 0 0.9rem;
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.7rem);
}

.mission-text {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.mission-stats {
  margin-top: 1.2rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(0, 0, 0, 0.09);
}

.mission-stats strong {
  display: block;
  font-size: 1.5rem;
  font-family: 'Playfair Display', serif;
}

.mission-stats span {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.7rem;
  color: var(--muted);
  font-weight: 700;
}

.venqm-footer {
  background: linear-gradient(180deg, #ede8e0 0%, #e7e1d8 100%);
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.footer-brand {
  margin: 0;
  font-family: 'Playfair Display', serif;
  font-size: 1.75rem;
}

.footer-title {
  margin: 0 0 0.7rem;
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  font-weight: 800;
}

.footer-text {
  color: var(--muted);
  line-height: 1.65;
}

.footer-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-list li + li {
  margin-top: 0.35rem;
}

.footer-list a {
  text-decoration: none;
  color: var(--muted);
}

.footer-list a:hover {
  color: var(--accent);
}

.footer-credit a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid rgba(26, 25, 23, 0.35);
}

.footer-credit a:hover {
  border-bottom-color: rgba(26, 25, 23, 0.9);
}

.footer-bottom {
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  display: flex;
  gap: 0.75rem;
  justify-content: space-between;
  align-items: center;
  color: #5f5f59;
  font-size: 0.88rem;
}

.footer-credit {
  margin-left: auto;
  text-align: right;
}

.admin-shell {
  min-height: 100vh;
  background: #f6f2ea;
}

.admin-topbar {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(6px);
}

.admin-brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: #151513;
  text-decoration: none;
}

.admin-main {
  padding-bottom: 2rem;
}

.admin-login-wrap {
  max-width: 460px;
  margin-top: 3.5rem;
}

.admin-card {
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 18px 45px rgba(17, 16, 14, 0.07);
}

.admin-stat-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
}

.admin-stat {
  border: 1px solid rgba(0, 0, 0, 0.09);
  background: #fff;
  padding: 1rem;
}

.admin-stat h2 {
  margin: 0 0 0.45rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #6f6a5f;
}

.admin-stat strong {
  font-size: 1.5rem;
  font-family: 'Playfair Display', serif;
}

.admin-table thead th {
  font-size: 0.76rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #736f64;
  background: #f9f6f0;
}

.product-detail-page {
  padding-bottom: 2rem;
}

.detail-breadcrumb {
  font-size: 0.8rem;
  color: #807a6f;
  display: flex;
  align-items: center;
  gap: 0.45rem;
  flex-wrap: wrap;
}

.detail-breadcrumb a {
  text-decoration: none;
}

.detail-gallery {
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: #fff;
  padding: 0.65rem;
}

.detail-main-stage {
  position: relative;
}

.detail-main-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  border: 1px solid rgba(0, 0, 0, 0.1);
  cursor: zoom-in;
  transition: opacity 0.18s ease;
}

.detail-main-image.is-swapping {
  opacity: 0.82;
}

.detail-main-image-placeholder {
  display: grid;
  place-items: center;
  color: #887f71;
  background: #f6f0e5;
}

.detail-thumb-list {
  margin-top: 0.75rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.detail-thumb {
  border: 1px solid rgba(0, 0, 0, 0.12);
  padding: 0;
  background: #fff;
}

.detail-thumb img {
  width: 3.25rem;
  height: 3.25rem;
  object-fit: cover;
  display: block;
}

.detail-thumb.is-active {
  border-color: #20201c;
}

.detail-gallery-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 2.35rem;
  height: 2.35rem;
  border: 1px solid rgba(255, 255, 255, 0.82);
  background: rgba(17, 16, 14, 0.36);
  color: #fff;
  display: grid;
  place-items: center;
  z-index: 2;
}

.detail-gallery-arrow span {
  font-size: 1.35rem;
  line-height: 1;
}

.detail-gallery-arrow.is-prev {
  left: 0.75rem;
}

.detail-gallery-arrow.is-next {
  right: 0.75rem;
}

.detail-gallery-arrow.is-hidden {
  display: none;
}

.detail-panel {
  border: 1px solid rgba(0, 0, 0, 0.09);
  background: #fff;
  padding: 1.15rem;
}

.detail-category {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #837968;
  font-weight: 700;
}

.detail-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.7rem, 2.6vw, 2.4rem);
}

.detail-description {
  color: #6f6a5f;
  line-height: 1.65;
}

.detail-description-long {
  font-size: 0.96rem;
  color: #544f46;
}

.detail-price {
  font-size: 1.35rem;
  font-weight: 800;
}

.detail-variant-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.detail-variant-swatch {
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.2);
  background: var(--swatch-color, #b8b8b8);
}

.detail-variant-swatch.is-active {
  box-shadow:
    0 0 0 2px #fff,
    0 0 0 4px #2a2722;
}

.detail-meta {
  display: grid;
  gap: 0.4rem;
  margin: 0;
  padding: 0;
}

.detail-meta li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  border-bottom: 1px dashed rgba(0, 0, 0, 0.14);
  padding-bottom: 0.32rem;
  font-size: 0.9rem;
}

.detail-meta li span {
  color: #7a7468;
}

.detail-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1200;
  background: rgba(10, 10, 9, 0.84);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.2rem;
}

.detail-lightbox[hidden] {
  display: none !important;
}

.detail-lightbox-image {
  width: auto;
  max-width: min(90vw, 1280px);
  max-height: 86vh;
  object-fit: contain;
  border: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow: 0 24px 72px rgba(0, 0, 0, 0.55);
}

.detail-lightbox-close {
  position: fixed;
  top: 1.15rem;
  right: 1.15rem;
  width: 2.4rem;
  height: 2.4rem;
  border: 1px solid rgba(255, 255, 255, 0.55);
  background: rgba(0, 0, 0, 0.45);
  color: #fff;
  font-size: 1.6rem;
  line-height: 1;
  display: grid;
  place-items: center;
}

.detail-lightbox-arrow {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  width: 2.7rem;
  height: 2.7rem;
  border: 1px solid rgba(255, 255, 255, 0.55);
  background: rgba(0, 0, 0, 0.42);
  color: #fff;
  display: grid;
  place-items: center;
}

.detail-lightbox-arrow span {
  font-size: 1.5rem;
  line-height: 1;
}

.detail-lightbox-arrow.is-prev {
  left: 1.1rem;
}

.detail-lightbox-arrow.is-next {
  right: 1.1rem;
}

.detail-lightbox-arrow.is-hidden {
  display: none;
}

body.detail-lightbox-open {
  overflow: hidden;
}

.variant-row {
  border: 1px solid rgba(0, 0, 0, 0.09);
  padding: 0.8rem;
  background: #faf8f4;
}

.mobile-dock {
  position: fixed;
  left: 0.6rem;
  right: 0.6rem;
  bottom: 0.6rem;
  z-index: 1040;
  border: 1px solid rgba(0, 0, 0, 0.13);
  border-radius: var(--radius);
  background: rgba(250, 248, 243, 0.94);
  backdrop-filter: blur(9px);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  box-shadow: 0 16px 30px rgba(16, 16, 15, 0.12);
}

.dock-item {
  padding: 0.56rem 0.2rem;
  text-align: center;
  text-decoration: none;
  color: #7d7c74;
  font-size: 0.64rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.14rem;
  flex-direction: column;
}

.dock-item.active {
  color: #131311;
}

.dock-item .material-symbols-outlined {
  font-size: 1.28rem;
}

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

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

@media (max-width: 1199.98px) {
  .hero-stage {
    min-height: 72vh;
  }

  .collection-card-wide img {
    aspect-ratio: 4 / 3;
  }
}

@media (max-width: 991.98px) {
  .site-main {
    padding-bottom: 5.5rem;
  }

  body.home-page .site-main {
    margin-top: calc(-4.8rem - 1px);
  }

  .venqm-actions {
    margin-top: 0.8rem;
  }

  .filter-panel {
    position: static;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-credit {
    margin-left: 0;
    text-align: left;
  }

  .admin-stat-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767.98px) {
  .hero-stage {
    margin-inline: 0;
    border-radius: 0;
    min-height: 66vh;
  }

  body.home-page .hero-stage {
    min-height: 92vh;
  }

  body.home-page .hero-content-wrap {
    padding-top: 5rem;
  }

  .hero-content {
    padding-inline: 0.5rem;
  }

  .section-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .product-grid-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .detail-thumb img {
    width: 2.8rem;
    height: 2.8rem;
  }

  .detail-gallery-arrow {
    width: 2rem;
    height: 2rem;
  }

  .detail-lightbox-arrow {
    width: 2.2rem;
    height: 2.2rem;
  }

  .detail-lightbox-arrow.is-prev {
    left: 0.55rem;
  }

  .detail-lightbox-arrow.is-next {
    right: 0.55rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
