.ms {
  font-family: 'Material Symbols Sharp';
  font-size: 20px;
  font-style: normal;
  font-weight: normal;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  direction: ltr;
  -webkit-font-smoothing: antialiased;
  font-variation-settings: 'FILL' 1, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

.ms-sm {
  font-size: 18px;
}

.ms-lg {
  font-size: 24px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: #000;
  color: #fff;
  font-family: 'Inter', sans-serif;
}

.font-oswald {
  font-family: 'Oswald', sans-serif;
}

.font-inter {
  font-family: 'Inter', sans-serif;
}

/* Header transitions */
#main-header {
  background: rgba(0, 0, 0, 1);
  transition: background 0.3s ease;
}

#main-header.scrolled {
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(12px);
}

/* Thin rule */
.rule {
  border-color: #2a2a2a;
}

/* Hero photo motion */
.hero-photo-stage {
  overflow: hidden;
  background: #050505;
}

.hero-photo-stage::after {
  content: '';
  position: absolute;
  inset: -12%;
  pointer-events: none;
  background: linear-gradient(115deg, transparent 0%, rgba(255, 232, 194, 0.06) 38%, transparent 62%);
  mix-blend-mode: screen;
  opacity: 0.55;
  transform: translate3d(-10%, 0, 0);
  animation: heroLightBreath 16s ease-in-out infinite alternate;
}

.hero-bg-img {
  transform: scale(1.045) translate3d(0, 0, 0);
  transform-origin: 68% 52%;
  animation: heroPhotoDrift 24s ease-in-out infinite alternate;
  backface-visibility: hidden;
  will-change: transform;
}

@keyframes heroPhotoDrift {
  0% {
    transform: scale(1.045) translate3d(0, 0, 0);
  }

  50% {
    transform: scale(1.075) translate3d(-0.7%, 0.25%, 0);
  }

  100% {
    transform: scale(1.105) translate3d(-1.35%, 0.6%, 0);
  }
}

@keyframes heroLightBreath {
  0% {
    opacity: 0.25;
    transform: translate3d(-14%, 0, 0);
  }

  100% {
    opacity: 0.55;
    transform: translate3d(6%, 0, 0);
  }
}

@media (max-width: 768px) {
  .hero-bg-img {
    transform-origin: 72% 50%;
    animation-duration: 28s;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-bg-img {
    animation: none !important;
    transform: scale(1.035) !important;
  }

  .hero-photo-stage::after {
    animation: none !important;
    opacity: 0.22;
    transform: none;
  }
}

/* Wide editorial photo sections */
.production-photo-card {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  background: #050505;
}

.production-photo-card-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: contrast(1.04) saturate(1.03);
  pointer-events: none;
}

.production-photo-card-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(100deg, rgba(0, 0, 0, 0.88) 0%, rgba(0, 0, 0, 0.76) 34%, rgba(0, 0, 0, 0.24) 58%, rgba(0, 0, 0, 0.02) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.02) 48%, rgba(0, 0, 0, 0.18) 100%);
  pointer-events: none;
}

.wide-photo-section {
  position: relative;
  overflow: hidden;
  background: #050505;
}

.wide-photo-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.wide-photo-img-production {
  object-position: 62% 50%;
  filter: brightness(0.74) contrast(1.12) saturate(1.04);
}

.wide-photo-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(100deg, rgba(0, 0, 0, 0.82) 0%, rgba(0, 0, 0, 0.62) 42%, rgba(0, 0, 0, 0.18) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0.05) 42%, rgba(0, 0, 0, 0.45) 100%);
  pointer-events: none;
}

.wide-inline-photo {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  background: #050505;
  height: clamp(280px, 38vw, 430px);
}

.wide-inline-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.9) contrast(1.08) saturate(1.06);
}

.wide-inline-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0.28) 100%);
  pointer-events: none;
}

.delivery-wide img {
  object-position: center 52%;
  filter: brightness(1.03) contrast(1.08) saturate(1.08);
}

.problem-card-readable {
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

@media (max-width: 768px) {
  .production-photo-card {
    border-radius: 14px;
  }

  .production-photo-card-img {
    object-position: 68% 50%;
  }

  .production-photo-card-shade {
    background:
      linear-gradient(100deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.78) 56%, rgba(0, 0, 0, 0.28) 100%),
      linear-gradient(180deg, rgba(0, 0, 0, 0.28) 0%, rgba(0, 0, 0, 0.06) 48%, rgba(0, 0, 0, 0.25) 100%);
  }

  .wide-photo-img-production {
    object-position: 68% 50%;
  }

  .wide-photo-shade {
    background:
      linear-gradient(100deg, rgba(0, 0, 0, 0.86) 0%, rgba(0, 0, 0, 0.66) 58%, rgba(0, 0, 0, 0.28) 100%),
      linear-gradient(180deg, rgba(0, 0, 0, 0.48) 0%, rgba(0, 0, 0, 0.1) 42%, rgba(0, 0, 0, 0.56) 100%);
  }

  .wide-inline-photo {
    height: 300px;
    border-radius: 14px;
  }
}

/* Readability pass for formerly too-muted text */
.text-\[\#555\] {
  color: #777 !important;
}

.text-\[\#666\] {
  color: #8f8f8f !important;
}

.text-\[\#777\] {
  color: #9c9c9c !important;
}

.text-\[\#888\] {
  color: #aaa !important;
}

.text-\[\#999\] {
  color: #b8b8b8 !important;
}

.text-\[\#aaa\] {
  color: #c7c7c7 !important;
}

/* Section fade-in — robust version */
/* ── Scroll reveal — safe approach */
.reveal {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.will-animate {
  opacity: 0;
  transform: translateY(24px);
}

.reveal.will-animate.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {

  .reveal,
  .reveal.will-animate {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* Prevent CLS on images */
img {
  display: block;
}

/* FAQ fix — use js-controlled height instead of fixed 400px */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease;
}

.faq-answer.open {
  max-height: 600px;
}

/* Channel switcher — compact horizontal tabs */
.channel-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  max-width: 880px;
  margin: 0 auto;
}

@media (max-width: 640px) {
  .channel-tabs {
    grid-template-columns: 1fr;
  }
}

.channel-tab {
  display: flex;
  align-items: center;
  gap: 18px;
  background: #0c0c0c;
  border: 1px solid #1a1a1a;
  border-radius: 16px;
  padding: 20px 22px;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  color: inherit;
  transition: border-color 0.25s ease, background 0.25s ease, transform 0.25s ease;
  position: relative;
  min-height: 96px;
}

.channel-tab:hover {
  border-color: #3a3a3a;
  transform: translateY(-2px);
}

.channel-tab.active {
  border-color: #ffffff;
  background: #141414;
  box-shadow: 0 0 0 1px #ffffff, 0 18px 60px -30px rgba(255, 255, 255, 0.15);
}

.channel-tab-icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid #2a2a2a;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: border-color 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.channel-tab-icon svg {
  width: 24px;
  height: 24px;
}

.channel-tab.active .channel-tab-icon {
  border-color: #fff;
  background: #fff;
  color: #000;
}

.channel-tab-text {
  flex: 1;
  min-width: 0;
}

.channel-tab-title {
  font-family: 'Oswald', sans-serif;
  font-size: 22px;
  font-weight: 300;
  text-transform: uppercase;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 4px;
}

.channel-tab-sub {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  color: #888;
  line-height: 1.4;
}

.channel-tab-check {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid #2a2a2a;
  display: flex;
  align-items: center;
  justify-content: center;
  color: transparent;
  transition: border-color 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.channel-tab.active .channel-tab-check {
  background: #fff;
  border-color: #fff;
  color: #000;
}

@media (max-width: 640px) {
  .channel-tab-title {
    font-size: 20px;
  }

  .channel-tab-sub {
    font-size: 11px;
  }

  .channel-tab {
    padding: 16px 18px;
    min-height: 84px;
  }
}

.channel-panel {
  display: none;
  animation: channelFade 0.4s ease;
}

.channel-panel.active {
  display: block;
}

@keyframes channelFade {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Final CTA — format segmented radio buttons */
.format-choice {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 14px;
}

@media (max-width: 580px) {
  .format-choice {
    grid-template-columns: 1fr;
  }
}

.format-choice-option {
  position: relative;
  cursor: pointer;
  display: block;
}

.format-choice-option input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.format-choice-content {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #131313;
  border: 1px solid #1e1e1e;
  border-radius: 14px;
  padding: 14px 16px;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.format-choice-option:hover .format-choice-content {
  border-color: #3a3a3a;
}

.format-choice-option input:checked+.format-choice-content {
  border-color: #ffffff;
  background: #1a1a1a;
  box-shadow: 0 0 0 1px #ffffff;
}

.format-choice-icon {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid #2a2a2a;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.format-choice-icon svg {
  width: 18px;
  height: 18px;
}

.format-choice-option input:checked+.format-choice-content .format-choice-icon {
  border-color: #fff;
  background: #fff;
  color: #000;
}

.format-choice-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.format-choice-title {
  font-family: 'Oswald', sans-serif;
  font-size: 15px;
  font-weight: 300;
  text-transform: uppercase;
  line-height: 1;
  color: #fff;
}

.format-choice-sub {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  color: #888;
  line-height: 1.3;
}

/* Textarea in lead form */
.lead-form textarea {
  width: 100%;
  background: #0a0a0a;
  border: 1px solid #222;
  color: #eee;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  padding: 14px 16px;
  border-radius: 10px;
  outline: none;
  transition: border-color 0.2s ease;
  resize: vertical;
  min-height: 54px;
  font: inherit;
}

.lead-form textarea:focus {
  border-color: #fff;
}

.lead-form textarea::placeholder {
  color: #555;
}

/* Retail badge */
.retail-badge {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #C8A96B;
  border: 1px solid #C8A96B44;
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.horeca-badge {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #7BAED4;
  border: 1px solid #7BAED444;
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 16px;
}

/* Conditions table */
.cond-table {
  width: 100%;
  border-collapse: collapse;
}

.cond-table td {
  padding: 14px 0;
  border-bottom: 1px solid #1a1a1a;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
}

.cond-table td:first-child {
  color: #666;
  width: 55%;
}

.cond-table td:last-child {
  color: #fff;
  font-weight: 300;
  text-align: right;
}

.cond-table tr:last-child td {
  border-bottom: none;
}

/* Lead form */
.lead-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.lead-form input,
.lead-form select {
  background: #111;
  border: 1px solid #2a2a2a;
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  padding: 13px 16px;
  border-radius: 8px;
  width: 100%;
  transition: border-color 0.2s;
  outline: none;
  -webkit-appearance: none;
}

.lead-form input::placeholder {
  color: #555;
}

.lead-form input:focus,
.lead-form select:focus {
  border-color: #555;
}

.lead-form select {
  color: #555;
  cursor: pointer;
}

.lead-form select option {
  background: #111;
  color: #fff;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

@media (max-width: 640px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

.form-success {
  display: none;
  text-align: center;
  padding: 32px 0;
}

.form-success .check {
  width: 48px;
  height: 48px;
  border: 1px solid #2a2a2a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

/* Nav active segment indicator */
.nav-segment {
  display: flex;
  gap: 0;
  border: 1px solid #2a2a2a;
  border-radius: 100px;
  overflow: hidden;
}

.nav-seg-btn {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 14px;
  cursor: pointer;
  border: none;
  background: transparent;
  color: #666;
  transition: background 0.2s, color 0.2s;
  text-decoration: none;
}

.nav-seg-btn:hover {
  color: #aaa;
}

.faq-icon {
  transition: transform 0.3s ease;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

/* Hover lift */
.card-hover {
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.card-hover:hover {
  transform: translateY(-4px);
  border-color: #555 !important;
}

/* Button */
.btn-primary {
  display: inline-block;
  background: #fff;
  color: #000;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: 100px;
  transition: background 0.2s, color 0.2s, transform 0.2s;
  cursor: pointer;
  border: none;
  text-decoration: none;
}

.btn-primary:hover {
  background: #e8e0d0;
  transform: translateY(-1px);
}

.btn-outline {
  display: inline-block;
  background: transparent;
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 13px 32px;
  border-radius: 100px;
  border: 1px solid #555;
  transition: border-color 0.2s, background 0.2s, transform 0.2s;
  cursor: pointer;
  text-decoration: none;
}

.btn-outline:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-1px);
}

/* Gradient overlays on photos */
.photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.85) 40%, rgba(0, 0, 0, 0.2) 100%);
}

.photo-overlay-bottom {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 30%, rgba(0, 0, 0, 0.2) 100%);
}

/* Stat divider */
.stat-col+.stat-col {
  border-left: 1px solid #2a2a2a;
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 4px;
}

::-webkit-scrollbar-track {
  background: #000;
}

::-webkit-scrollbar-thumb {
  background: #333;
  border-radius: 2px;
}

/* Mobile menu */
#mobile-menu {
  transition: max-height 0.4s ease, opacity 0.4s ease;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
}

#mobile-menu.open {
  max-height: 500px;
  opacity: 1;
}

/* Noise texture overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  opacity: 0.35;
}

/* Responsive heading sizes */
.h-hero {
  font-size: clamp(2.4rem, 7vw, 6.5rem);
  line-height: 1.0;
}

.h-section {
  font-size: clamp(2rem, 5vw, 4.2rem);
  line-height: 1.05;
}

.h-sub {
  font-size: clamp(1.3rem, 3vw, 2.2rem);
  line-height: 1.1;
}

.script-accent {
  font-size: clamp(2.2rem, 5.5vw, 5rem);
  line-height: 0.9;
}

/* Bread card image */
.product-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  filter: grayscale(15%) contrast(1.05);
  transition: filter 0.4s, transform 0.4s;
}

.card-hover:hover .product-img {
  filter: grayscale(0%) contrast(1.1);
  transform: scale(1.03);
}

.product-img-wrap {
  overflow: hidden;
}

/* Testimonial star */
.star {
  color: #fff;
  font-size: 18px;
}

/* Review avatars — initials in circle */
.review-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid #2a2a2a;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Oswald', sans-serif;
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 0.05em;
  color: #e0e0e0;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .stat-col+.stat-col {
    border-left: none;
    border-top: 1px solid #2a2a2a;
  }
}

/* ── Global Oswald weight — refined balance */
/* Default small UI text */
.font-oswald,
[class*="font-oswald"] {
  font-weight: 300;
}

/* Plain standalone headers — medium weight */
h1.font-oswald,
h2.font-oswald,
h3.font-oswald,
.h-hero,
.h-section,
.h-sub {
  font-weight: 300;
}

/* Headers WITH Great Vibes script — thin, the script does the visual weight */
h2.font-oswald:has(.font-vibes),
h1.font-oswald:has(.font-vibes) {
  font-weight: 300;
}

/* Reduce hero size */
.h-hero {
  font-size: clamp(1.9rem, 5vw, 4.6rem) !important;
  line-height: 1.05 !important;
}

.h-section {
  font-size: clamp(1.55rem, 3.6vw, 3.1rem) !important;
  line-height: 1.08 !important;
}

/* ── Great Vibes — softer */
.font-vibes {
  font-family: 'Great Vibes', cursive;
}

.script-accent {
  font-size: clamp(1.5rem, 3.8vw, 3.2rem) !important;
  line-height: 1.05 !important;
}

/* ── Product Card Slider */
.prod-slider {
  position: relative;
  overflow: hidden;
}

.prod-slider-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.prod-slide {
  flex: 0 0 100%;
}

.prod-slide img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  filter: grayscale(15%) contrast(1.05);
  transition: filter 0.4s;
}

.card-hover:hover .prod-slide img {
  filter: grayscale(0%) contrast(1.1);
}

.prod-dots {
  display: flex;
  gap: 5px;
  justify-content: center;
  padding: 8px 0 0;
}

.prod-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #333;
  cursor: pointer;
  transition: background 0.3s;
}

.prod-dot.active {
  background: #fff;
}

/* ── Product Card Flip */
.prod-card-inner {
  position: relative;
  min-height: 380px;
}

.prod-card-front,
.prod-card-back {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.prod-card-back {
  opacity: 0;
  transform: translateY(10px);
  background: #111;
  border-radius: 0 0 16px 16px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  pointer-events: none;
}

.prod-card.flipped .prod-card-front {
  opacity: 0;
  transform: translateY(-10px);
}

.prod-card.flipped .prod-card-back {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

.prod-card-front {
  display: flex;
  flex-direction: column;
}

/* ── Order button in card */
.btn-order {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: #000;
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 11px 22px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  text-decoration: none;
}

.btn-order:hover {
  background: #e8e0d0;
  transform: translateY(-1px);
}

.btn-order-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 10px 22px;
  border-radius: 100px;
  border: 1px solid #444;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}

.btn-order-outline:hover {
  border-color: #fff;
}

/* ── Catalog page */
#catalog-page {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: #000;
  overflow-y: auto;
}

#catalog-page.open {
  display: block;
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

/* ── Reviews Slider */
.reviews-slider-wrap {
  position: relative;
  overflow: hidden;
}

.reviews-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.review-slide {
  flex: 0 0 calc(33.333% - 14px);
  margin-right: 20px;
}

@media (max-width: 900px) {
  .review-slide {
    flex: 0 0 calc(50% - 10px);
  }
}

@media (max-width: 600px) {
  .review-slide {
    flex: 0 0 100%;
  }
}

.reviews-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #111;
  border: 1px solid #333;
  color: #fff;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s, background 0.2s;
}

.reviews-nav-btn:hover {
  border-color: #fff;
  background: #1a1a1a;
}

.reviews-nav-prev {
  left: -22px;
}

.reviews-nav-next {
  right: -22px;
}

@media (max-width: 600px) {
  .reviews-nav-prev {
    left: 0;
  }

  .reviews-nav-next {
    right: 0;
  }
}

/* Review expand */
.review-text-short {
  display: block;
}

.review-text-full {
  display: none;
}

.review-expanded .review-text-short {
  display: none;
}

.review-expanded .review-text-full {
  display: block;
}

.read-more-btn {
  background: none;
  border: none;
  color: #888;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0;
  margin-top: 8px;
  transition: color 0.2s;
}

.read-more-btn:hover {
  color: #fff;
}

/* ── Review Submit Modal */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 500;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal-overlay.open {
  display: flex;
}

.modal-box {
  background: #0e0e0e;
  border: 1px solid #2a2a2a;
  border-radius: 20px;
  padding: 40px;
  max-width: 520px;
  width: 100%;
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: 1px solid #2a2a2a;
  color: #888;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s, color 0.2s;
}

.modal-close:hover {
  border-color: #fff;
  color: #fff;
}

/* ── Order modal (contact form popup) */
#order-modal .modal-box {
  max-width: 480px;
}

/* ── Degustation popup */
#degustation-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 800;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(12px);
  align-items: flex-start;
  justify-content: center;
  padding: 20px;
  overflow-y: auto;
}

#degustation-modal.open {
  display: flex;
}

#degustation-modal .deg-inner {
  width: 100%;
  max-width: 680px;
  margin: auto;
  padding: 60px 0 80px;
}

@media (max-width: 640px) {
  #degustation-modal .deg-inner {
    padding: 40px 0 60px;
  }
}

#degustation-modal .deg-header {
  text-align: center;
  margin-bottom: 40px;
}

#degustation-modal .deg-form-wrap {
  background: #0c0c0c;
  border: 1px solid #1a1a1a;
  border-radius: 20px;
  padding: 40px;
  position: relative;
}

@media (max-width: 640px) {
  #degustation-modal .deg-form-wrap {
    padding: 24px 20px;
  }
}

#degustation-modal .deg-close {
  position: fixed;
  top: 20px;
  right: 20px;
  background: #111;
  border: 1px solid #2a2a2a;
  color: #888;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s, color 0.2s;
  z-index: 10;
}

#degustation-modal .deg-close:hover {
  border-color: #fff;
  color: #fff;
}


/* ── Legal page */
#legal-page {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 700;
  background: #000;
  overflow-y: auto;
}

#legal-page.open {
  display: block;
}

.legal-content {
  max-width: 760px;
  margin: 0 auto;
  padding: 60px 24px 80px;
}

.legal-content h1 {
  font-family: 'Oswald', sans-serif;
  font-size: 2rem;
  font-weight: 400;
  text-transform: uppercase;
  margin-bottom: 32px;
}

.legal-content h2 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.2rem;
  font-weight: 400;
  text-transform: uppercase;
  margin: 28px 0 12px;
}

.legal-content p,
.legal-content li {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: #999;
  line-height: 1.8;
  margin-bottom: 12px;
}

.legal-content ul {
  padding-left: 20px;
}

.legal-content li {
  margin-bottom: 6px;
}

/* ── Privacy checkbox — кастомный, работает везде */
.privacy-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 4px 0;
}

.privacy-row input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}

.privacy-row label {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  color: #888;
  line-height: 1.5;
  cursor: pointer;
  user-select: none;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.privacy-row label::before {
  content: '';
  flex-shrink: 0;
  display: block;
  width: 16px;
  height: 16px;
  min-width: 16px;
  border: 1.5px solid #555;
  border-radius: 3px;
  background: transparent;
  margin-top: 1px;
  transition: background 0.15s, border-color 0.15s;
  box-sizing: border-box;
}

.privacy-row input[type="checkbox"]:checked+label::before {
  background: #fff;
  border-color: #fff;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='8' viewBox='0 0 10 8'%3E%3Cpath d='M1 3.5L3.8 6.5L9 1' stroke='%23000' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

.privacy-row label:hover::before {
  border-color: #999;
}

.privacy-row a {
  color: #ccc;
  text-decoration: underline;
  text-decoration-color: #444;
}

.privacy-row a:hover {
  color: #fff;
}

/* ── Block photo backgrounds — atmospheric overlay */
.block-photo-bg {
  position: relative;
  overflow: hidden;
}

.block-photo-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.10;
  filter: grayscale(50%) contrast(1.1) brightness(0.6);
  pointer-events: none;
  z-index: 0;
}

.block-photo-bg>*:not(.block-photo-bg-img) {
  position: relative;
  z-index: 1;
}

/* ── Side photo (instead of background) — for some sections */
.block-side-photo {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  height: 100%;
  min-height: 400px;
}

.block-side-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(20%) contrast(1.08) brightness(0.85);
}

.block-side-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.6) 100%);
  pointer-events: none;
}

.block-side-photo.photo-full-color img {
  filter: contrast(1.04) saturate(1.06);
}

.block-side-photo.photo-full-color::after {
  display: none;
}

/* Full-width single cart button on cards */
.btn-cart-add-full {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  background: #fff;
  border: none;
  color: #000;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 10px 16px;
  border-radius: 100px;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.15s ease, opacity 0.2s;
  white-space: nowrap;
}

.btn-cart-add-full:hover {
  background: #e8e0d0;
  transform: translateY(-1px);
}

.btn-cart-add-full.added {
  background: #1a1a1a;
  color: #888;
  border: 1px solid #2a2a2a;
}

.btn-cart-add-full svg {
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.btn-cart-add-full.added svg {
  transform: rotate(45deg);
}

.product-card {
  background: #0a0a0a;
  border: 1px solid #1a1a1a;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.product-card:hover {
  border-color: #333;
  transform: translateY(-3px);
}

/* Image area with slider */
.prod-img-area {
  position: relative;
  background: #050505;
}

.prod-slider {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
}

.prod-slider-track {
  display: flex;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
}

.prod-slide {
  flex: 0 0 100%;
  height: 100%;
}

.prod-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.05) brightness(0.95);
}

/* Slider arrows on cards */
.prod-slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  opacity: 0;
  transition: opacity 0.25s ease, background 0.2s ease, border-color 0.2s ease;
}

.product-card:hover .prod-slider-arrow {
  opacity: 1;
}

.prod-slider-arrow:hover {
  background: rgba(0, 0, 0, 0.85);
  border-color: rgba(255, 255, 255, 0.4);
}

.prod-slider-arrow-prev {
  left: 8px;
}

.prod-slider-arrow-next {
  right: 8px;
}

/* Dots */
.prod-dots {
  position: absolute;
  bottom: 10px;
  left: 0;
  right: 0;
  display: flex;
  gap: 5px;
  justify-content: center;
  z-index: 2;
}

.prod-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: background 0.25s ease, width 0.25s ease;
}

.prod-dot.active {
  background: #fff;
  width: 18px;
  border-radius: 3px;
}

/* Body */
.prod-body {
  padding: 18px 20px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.prod-desc {
  flex: 1;
  min-height: 38px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.prod-info-btn {
  background: none;
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #888;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  padding: 0;
  transition: color 0.2s ease;
}

.prod-info-btn:hover {
  color: #fff;
}

/* Cart + Order buttons */
.btn-cart-add {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: transparent;
  border: 1px solid #333;
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 10px 12px;
  border-radius: 100px;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.15s ease;
}

.btn-cart-add:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.04);
}

.btn-cart-add.added {
  background: #fff;
  color: #000;
  border-color: #fff;
}

.btn-cart-add.added svg {
  transform: rotate(45deg);
}

.btn-cart-add svg {
  transition: transform 0.3s ease;
}

.btn-order-quick {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: #000;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 10px 16px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.15s ease;
}

.btn-order-quick:hover {
  background: #e8e0d0;
  transform: translateY(-1px);
}

/* ═══════════════════════════════════════════════════════════
    FILTER BAR
    ═══════════════════════════════════════════════════════════ */

.filter-btn {
  background: transparent;
  border: 1px solid #2a2a2a;
  color: #888;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  letter-spacing: 0.05em;
  padding: 7px 16px;
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.filter-btn:hover {
  border-color: #555;
  color: #ccc;
}

.filter-btn.active {
  background: #fff;
  border-color: #fff;
  color: #000;
}

/* Cart toggle button */
.cart-toggle-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #141414;
  border: 1px solid #2a2a2a;
  color: #fff;
  padding: 11px 18px;
  border-radius: 100px;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease;
  position: relative;
}

.cart-toggle-btn:hover {
  border-color: #555;
  background: #1a1a1a;
}

.cart-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 22px;
  height: 22px;
  border-radius: 11px;
  background: #fff;
  color: #000;
  font-family: 'Oswald', sans-serif;
  font-weight: 300;
  font-size: 12px;
  padding: 0 6px;
}

.cart-badge.empty {
  opacity: 0.4;
}

/* ═══════════════════════════════════════════════════════════
    CART SIDEBAR
    ═══════════════════════════════════════════════════════════ */

#cart-sidebar {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  max-width: 440px;
  background: #0a0a0a;
  border-left: 1px solid #1a1a1a;
  z-index: 600;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
}

#cart-sidebar.open {
  transform: translateX(0);
}

#cart-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  z-index: 599;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

#cart-backdrop.open {
  opacity: 1;
  pointer-events: auto;
}

.cart-header {
  padding: 24px 24px 20px;
  border-bottom: 1px solid #1a1a1a;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 16px 20px;
}

.cart-item {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid #1a1a1a;
  align-items: center;
}

.cart-item:last-child {
  border-bottom: none;
}

.cart-item-img {
  width: 64px;
  height: 64px;
  border-radius: 8px;
  object-fit: cover;
}

.cart-item-name {
  font-family: 'Oswald', sans-serif;
  font-size: 14px;
  font-weight: 300;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 4px;
}

.cart-item-meta {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  color: #666;
}

.cart-qty {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 6px;
}

.cart-qty-btn {
  width: 22px;
  height: 22px;
  border: 1px solid #333;
  background: transparent;
  color: #ccc;
  border-radius: 50%;
  font-size: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  transition: border-color 0.2s, color 0.2s;
}

.cart-qty-btn:hover {
  border-color: #fff;
  color: #fff;
}

.cart-qty-val {
  font-family: 'Oswald', sans-serif;
  font-size: 13px;
  font-weight: 300;
  min-width: 18px;
  text-align: center;
  color: #fff;
}

.cart-item-remove {
  background: none;
  border: none;
  color: #555;
  cursor: pointer;
  padding: 4px;
  transition: color 0.2s;
}

.cart-item-remove:hover {
  color: #fff;
}

.cart-empty {
  padding: 60px 20px;
  text-align: center;
}

.cart-empty-icon {
  width: 56px;
  height: 56px;
  border: 1px solid #2a2a2a;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: #444;
}

.cart-footer {
  padding: 20px 24px 24px;
  border-top: 1px solid #1a1a1a;
  background: #080808;
}

.cart-total-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 14px;
}

.cart-total-label {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #666;
}

.cart-total-val {
  font-family: 'Oswald', sans-serif;
  font-size: 22px;
  font-weight: 300;
  color: #fff;
}

.cart-min-warn {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  color: #C8A96B;
  margin-bottom: 12px;
  padding: 8px 12px;
  background: rgba(200, 169, 107, 0.08);
  border: 1px solid rgba(200, 169, 107, 0.2);
  border-radius: 8px;
}

/* ═══════════════════════════════════════════════════════════
    PRODUCT DETAIL MODAL
    ═══════════════════════════════════════════════════════════ */

#product-modal .modal-box {
  max-width: 880px;
  padding: 0;
  overflow: hidden;
}

.pm-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

@media (max-width: 720px) {
  .pm-grid {
    grid-template-columns: 1fr;
  }
}

.pm-img-side {
  position: relative;
  aspect-ratio: 1/1;
  background: #050505;
}

.pm-img-side .prod-slider {
  aspect-ratio: 1/1;
  height: 100%;
}

.pm-content {
  padding: 36px 32px 32px;
  display: flex;
  flex-direction: column;
}

.pm-meta {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 8px;
}

.pm-title {
  font-family: 'Oswald', sans-serif;
  font-size: 32px;
  font-weight: 300;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.pm-price {
  font-family: 'Oswald', sans-serif;
  font-size: 22px;
  font-weight: 300;
  color: #fff;
  margin-bottom: 20px;
}

.pm-desc {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: #aaa;
  line-height: 1.65;
  margin-bottom: 24px;
}

.pm-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 24px;
}

.pm-spec {
  background: #131313;
  border: 1px solid #1f1f1f;
  border-radius: 10px;
  padding: 10px 14px;
}

.pm-spec-label {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #666;
  margin-bottom: 4px;
}

.pm-spec-val {
  font-family: 'Oswald', sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: #fff;
}

.pm-actions {
  display: flex;
  gap: 10px;
  margin-top: auto;
}

/* ═══════════════════════════════════════════════════════════
    CHECKOUT MODAL (when ordering from cart)
    ═══════════════════════════════════════════════════════════ */

#checkout-modal {
  z-index: 650;
}

#product-modal {
  z-index: 650;
}

#order-modal {
  z-index: 650;
}

#review-modal {
  z-index: 650;
}

#checkout-modal .modal-box {
  max-width: 540px;
}

.checkout-summary {
  background: #131313;
  border: 1px solid #1f1f1f;
  border-radius: 12px;
  padding: 14px 16px;
  margin-bottom: 16px;
}

.checkout-summary-row {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: #aaa;
}

.checkout-summary-row:not(:last-child) {
  border-bottom: 1px solid #1f1f1f;
}

.checkout-summary-total {
  display: flex;
  justify-content: space-between;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid #1f1f1f;
  font-family: 'Oswald', sans-serif;
  font-size: 16px;
  font-weight: 300;
  text-transform: uppercase;
  color: #fff;
}

.pg-slider {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  background: #050505;
  aspect-ratio: 4 / 3;
}

.pg-track {
  display: flex;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
}

.pg-slide {
  flex: 0 0 100%;
  height: 100%;
}

.pg-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.pg-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  transition: background 0.2s, border-color 0.2s;
}

.pg-arrow:hover {
  background: rgba(0, 0, 0, 0.9);
  border-color: rgba(255, 255, 255, 0.4);
}

.pg-arrow-prev {
  left: 16px;
}

.pg-arrow-next {
  right: 16px;
}

.pg-dots {
  display: flex;
  gap: 6px;
  justify-content: center;
  padding: 12px 0 0;
}

.pg-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #333;
  cursor: pointer;
  transition: background 0.25s, width 0.25s;
}

.pg-dot.active {
  background: #fff;
  width: 20px;
  border-radius: 3px;
}

.pg-thumbs {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.pg-thumb {
  width: 72px;
  height: 72px;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color 0.2s;
  flex-shrink: 0;
}

.pg-thumb.active {
  border-color: #fff;
}

.pg-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.spec-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.spec-cell {
  background: #0d0d0d;
  border: 1px solid #1a1a1a;
  border-radius: 10px;
  padding: 12px 16px;
}

.spec-label {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #555;
  margin-bottom: 4px;
}

.spec-val {
  font-family: 'Oswald', sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: #fff;
}