:root {
  --bg: #585858;
  --surface: #484848;
  --surface-2: #3e3e3e;
  --surface-3: #525252;
  --border: #6a6a6a;
  --border-2: #707070;
  --yellow: #ffc425;
  --yellow-dark: #e6ae1a;
  --yellow-soft: rgba(255, 196, 37, 0.12);
  --text: #f5f2ec;
  --muted: #b0a89a;
  --danger: #e06565;
  --shadow: 0 18px 42px rgba(0, 0, 0, 0.22);
  --radius-xl: 24px;
  --radius-lg: 16px;
  --radius-md: 12px;
  --radius-sm: 8px;
  --font-display: "Barlow Condensed", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Barlow", sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
}

a,
button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.site-shell {
  width: min(1220px, calc(100% - 32px));
  margin: 0 auto;
  padding: 18px 0 40px;
}

.topbar {
  position: sticky;
  top: 14px;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 84px;
  padding: 8px 18px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(62, 62, 62, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  color: inherit;
  text-decoration: none;
}

.brand-logo {
  width: 120px;
  height: 67.5px;
  object-fit: contain;
}

.brand-copy {
  display: grid;
}

.brand-title {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--yellow);
  line-height: 1;
}

.brand-subtitle {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

.top-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.language-switcher {
  min-height: 42px;
  padding: 4px;
  border: 1px solid var(--border);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 3px;
  background: rgba(72, 72, 72, 0.78);
}

.lang-btn {
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  transition: background 0.2s ease, color 0.2s ease, transform 0.15s ease;
}

.lang-btn:hover,
.lang-btn.active {
  background: var(--yellow);
  color: #1a1a1a;
}

.lang-btn:hover {
  transform: translateY(-1px);
}

.cart-trigger,
.icon-btn,
.secondary-block,
.clear-btn,
.thumb-btn {
  border: 1px solid var(--border-2);
  background: var(--surface-2);
  color: var(--text);
}

.cart-trigger,
.primary-block,
.secondary-block,
.contact-btn,
.clear-btn {
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.15s ease;
}

.cart-trigger:hover,
.secondary-block:hover,
.clear-btn:hover {
  border-color: var(--yellow);
  background: var(--surface-3);
  transform: translateY(-1px);
}

.cart-trigger {
  font-weight: 600;
}

.cart-trigger::before,
.add-btn::before {
  content: "";
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  display: inline-block;
  background: url("images/BASKET-ICON.svg") center / contain no-repeat;
  filter: drop-shadow(0 1px 1px rgba(0, 0, 0, 0.14));
}

.cart-trigger::before {
  width: 27px;
  height: 27px;
  flex-basis: 27px;
}

.cart-badge {
  min-width: 26px;
  height: 26px;
  padding: 0 8px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--yellow);
  color: #1a1a1a;
  font-weight: 700;
  font-size: 0.8rem;
}

.hero {
  padding: 24px 0 10px;
}

.hero-copy,
.catalog-section,
.card,
.cart-panel,
.product-modal,
.summary-modal,
.gallery-lightbox {
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.hero-copy {
  position: relative;
  overflow: hidden;
  padding: 22px 24px 20px;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at top center, rgba(255, 196, 37, 0.08), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01)),
    var(--surface-2);
  text-align: center;
}

.hero-copy::before {
  content: "";
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 680px;
  height: 280px;
  background: radial-gradient(circle, rgba(255, 196, 37, 0.08), transparent 68%);
  pointer-events: none;
}

.eyebrow,
.panel-label {
  margin: 0 0 10px;
  font-size: 1rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--yellow);
}

.hero h1,
.section-heading h2,
.cart-header h2,
.summary-head h3,
.product-modal-info h3,
.example-gallery-title h2,
.example-gallery-card-copy h3,
.gallery-lightbox-meta h3,
.card-title,
.catalog-family-head strong,
.reviews-head h2 {
  margin: 0;
  font-family: var(--font-display);
}

.hero h1 {
  max-width: 200ch;
  margin-inline: auto;
  width: fit-content;
  padding: 0;
  border-radius: 0;
  border: none;
  background: transparent;
  color: var(--text);
  font-size: clamp(1.65rem, 2.35vw, 2.7rem);
  line-height: 1.02;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.25);
}

.eyebrow {
  margin-bottom: 6px;
  font-size: 0.82rem;
}

.leadtime-highlight {
  width: fit-content;
  max-width: 100%;
  margin: 18px auto 0;
  padding: 9px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 196, 37, 0.35);
  background: var(--yellow-soft);
  color: var(--text);
}

.leadtime-highlight strong {
  color: var(--yellow);
}

.leadtime-value {
  color: #ff5a5a;
}

.notice-band {
  width: min(520px, 100%);
  height: 38px;
  margin: 12px auto 0;
  overflow: hidden;
  border-radius: 999px;
  border: 1px solid rgba(255, 196, 37, 0.35);
  background: var(--yellow-soft);
}

.notice-track {
  display: grid;
  animation: rotateNotice 8s infinite;
}

.notice-track span {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
}

.notice-track strong {
  color: var(--yellow);
}

.notice-track .leadtime-value {
  color: #ff5a5a;
}

@keyframes rotateNotice {
  0%, 28% {
    transform: translateY(0);
  }
  38%, 66% {
    transform: translateY(-38px);
  }
  76%, 100% {
    transform: translateY(-76px);
  }
}

.flow-diagram {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: fit-content;
  max-width: 100%;
  margin: 20px auto 0;
  padding-bottom: 0;
}

.hero-flow-wrap {
  width: fit-content;
  max-width: 100%;
  margin: 20px auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
}

.hero-flow-wrap .flow-diagram {
  margin: 0;
}

.flow-step {
  width: 218px;
  min-height: 42px;
  padding: 7px 11px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--surface);
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  text-align: center;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
  animation: flowStepSequence 5s linear infinite;
}

.flow-step strong {
  font-family: "Barlow Condensed", sans-serif;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 30px;
  background: var(--yellow);
  color: #1a1a1a;
  font-size: 1.05rem;
  line-height: 1;
}

.flow-step span {
  font-size: 0.86rem;
  color: var(--text);
  line-height: 1.35;
}

.flow-step .flow-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 28px;
  border: 1px solid rgba(255, 196, 37, 0.35);
  color: var(--yellow);
  background: rgba(255, 196, 37, 0.08);
  font-size: 1rem;
  line-height: 1;
  animation: flowIconSequence 5s ease-in-out infinite;
}

.flow-icon-cart {
  color: #25d366;
  border-color: rgba(37, 211, 102, 0.4);
  background: rgba(37, 211, 102, 0.12);
}

.flow-icon-send {
  color: #61b7ff;
  border-color: rgba(97, 183, 255, 0.42);
  background: rgba(97, 183, 255, 0.12);
}

.flow-step:nth-of-type(3) {
  animation-delay: 2s;
}

.flow-step:nth-of-type(3) .flow-icon {
  animation-delay: 2s;
}

.flow-step:nth-of-type(5) {
  animation-delay: 4s;
}

.flow-step:nth-of-type(5) .flow-icon {
  animation-delay: 4s;
}

.hero-catalog-chip {
  display: block;
  text-decoration: none;
  transition: transform 0.2s ease, filter 0.2s ease;
}

.hero-catalog-chip-img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 18px;
}

.hero-catalog-chip:hover {
  transform: translateY(-1px);
}

.topbar-catalog-chip {
  display: none;
}

.hero-flow-wrap > .hero-catalog-chip {
  width: min(170px, 100%);
  flex: 0 0 170px;
  order: -1;
  filter: drop-shadow(0 12px 22px rgba(0, 0, 0, 0.18));
}

.hero-flow-wrap > .hero-catalog-chip .hero-catalog-chip-img {
  border-radius: 14px;
}

.hero-flow-wrap > .hero-catalog-chip:hover {
  filter: drop-shadow(0 16px 28px rgba(0, 0, 0, 0.22));
}

.flow-arrow {
  color: var(--yellow);
  font-size: 1.5rem;
  font-weight: 700;
  opacity: 0.42;
  animation: flowArrowStep 5s linear infinite;
  animation-delay: 1s;
}

.flow-arrow:nth-of-type(4) {
  animation-delay: 3s;
}

@keyframes flowStepSequence {
  0%, 12% {
    border-color: var(--yellow);
    background: var(--surface-3);
    box-shadow: 0 0 18px rgba(255, 196, 37, 0.14);
  }
  28%, 100% {
    border-color: var(--border);
    background: var(--surface);
    box-shadow: none;
  }
}

@keyframes flowArrowStep {
  0%, 28%, 100% {
    opacity: 0.42;
    transform: translateX(0);
  }
  8%, 20% {
    opacity: 1;
    transform: translateX(4px);
  }
}

.catalog-section {
  margin-top: 10px;
  padding: 24px 24px 30px;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01)), var(--surface-2);
  scroll-margin-top: 120px;
}

.example-gallery {
  margin: 10px 0;
  padding: 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 88% 14%, rgba(255, 196, 37, 0.14), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01)),
    var(--surface-2);
  box-shadow: var(--shadow);
}

.example-gallery[hidden] {
  display: none;
}

.example-gallery-head {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 10px;
  text-align: left;
}

.example-gallery-title h2 {
  margin: 0;
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(1.45rem, 2.8vw, 2.15rem);
  color: var(--yellow);
  letter-spacing: 0.04em;
}

.example-gallery-socials {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  flex-wrap: wrap;
}

.gallery-social {
  min-height: 32px;
  padding: 0 10px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #fff;
  font-size: 0.82rem;
  font-weight: 800;
  text-decoration: none;
}

.gallery-social img {
  width: 22px;
  height: 22px;
  object-fit: contain;
  display: block;
}

.gallery-social span {
  line-height: 1;
}

.gallery-social.youtube {
  background: rgba(255, 0, 51, 0.16);
  border: 1px solid rgba(255, 0, 51, 0.38);
}

.gallery-social.instagram {
  background: #171717;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: inset 0 0 0 1px rgba(221, 42, 123, 0.4);
}

.example-gallery-frame {
  position: relative;
  overflow: hidden;
  min-height: 150px;
  padding: 12px 52px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.22);
}

.example-gallery-loading {
  position: absolute;
  inset: 12px 52px;
  z-index: 1;
  border: 1px dashed rgba(255, 196, 37, 0.28);
  border-radius: var(--radius-md);
  display: none;
  gap: 10px;
  place-items: center;
  align-content: center;
  background: rgba(0, 0, 0, 0.2);
  color: var(--yellow);
  font-weight: 800;
}

.example-gallery-loading img {
  width: 76px;
  height: auto;
  object-fit: contain;
  animation: galleryLogoSpin 1.15s linear infinite;
}

.example-gallery-loading span {
  color: var(--muted);
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.example-gallery.is-loading .example-gallery-loading {
  display: grid;
}

.example-gallery.is-loading .example-gallery-btn,
.example-gallery.is-loading .example-gallery-dots {
  opacity: 0;
  pointer-events: none;
}

@keyframes galleryLogoSpin {
  from {
    transform: rotate(0deg) scale(0.98);
  }
  to {
    transform: rotate(360deg) scale(0.98);
  }
}

.example-gallery-track {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  will-change: transform, opacity;
}

.example-gallery-track.slide-next {
  animation: gallerySlideNext 0.68s cubic-bezier(0.2, 0.85, 0.2, 1) both;
}

.example-gallery-track.slide-prev {
  animation: gallerySlidePrev 0.68s cubic-bezier(0.2, 0.85, 0.2, 1) both;
}

@keyframes gallerySlideNext {
  from {
    opacity: 0.72;
    transform: translate3d(34px, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes gallerySlidePrev {
  from {
    opacity: 0.72;
    transform: translate3d(-34px, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.example-gallery-card {
  position: relative;
  display: grid;
  align-content: end;
  aspect-ratio: 1 / 1;
  width: 100%;
  padding: 0;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: #fff;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.example-gallery-card-media {
  position: absolute;
  inset: 0;
  padding: 0;
  border: 0;
  background: transparent;
}

.example-gallery-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.example-gallery-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 72%;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.82));
  pointer-events: none;
}

.example-gallery-card-copy {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: end;
  gap: 7px;
  min-height: 100%;
  padding: 12px 12px 12px;
  text-align: left;
  pointer-events: none;
}

.example-gallery-chip {
  width: fit-content;
  min-height: 22px;
  padding: 0 8px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(255, 196, 37, 0.35);
  background: rgba(255, 196, 37, 0.14);
  color: var(--yellow);
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.example-gallery-card-copy h3 {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.15;
  color: #fff7e0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.example-gallery-card-copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.76rem;
  line-height: 1.3;
}

.example-gallery-card-author {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.72rem;
  font-weight: 700;
}

.example-gallery-card-link {
  position: relative;
  z-index: 2;
  width: fit-content;
  min-height: 32px;
  margin-top: 4px;
  padding: 0 12px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  justify-self: start;
  pointer-events: auto;
  backdrop-filter: blur(10px);
  background: rgba(16, 16, 16, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  text-decoration: none;
  font-size: 0.72rem;
  font-weight: 800;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.28);
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.22);
}

.example-gallery-card-link img {
  width: 14px;
  height: 14px;
  object-fit: contain;
}

.example-gallery-card.active,
.example-gallery-card:hover {
  border-color: var(--yellow);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.24);
  transform: translateY(-2px);
}

.example-gallery-card-link:hover {
  border-color: var(--yellow);
  color: #fff8dd;
  background: rgba(28, 28, 28, 0.96);
}

.example-gallery-card-link.is-youtube {
  background: rgba(193, 29, 29, 0.96);
  border-color: rgba(255, 255, 255, 0.16);
  color: #fff;
}

.example-gallery-card-link.is-instagram {
  background: linear-gradient(135deg, #833ab4, #e1306c 55%, #fdc830);
  border-color: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.example-gallery-btn {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 34px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.44);
  color: var(--yellow);
  font-size: 1.7rem;
  line-height: 1;
  transform: translateY(-50%);
}

.example-gallery-btn:hover {
  border-color: var(--yellow);
  background: rgba(0, 0, 0, 0.62);
}

.example-gallery-btn:first-of-type {
  left: 10px;
}

.example-gallery-btn:last-of-type {
  right: 10px;
}

.example-gallery-dots {
  display: flex;
  justify-content: center;
  gap: 7px;
  margin-top: 10px;
}

.example-gallery-dots button {
  width: 22px;
  height: 5px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.24);
}

.example-gallery-dots button.active {
  background: var(--yellow);
}

.catalog-families-section {
  margin: 0 auto 14px;
  display: grid;
  gap: 10px;
}

.catalog-families-head p {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-align: center;
}

.catalog-families {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.catalog-family-card {
  padding: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: grid;
  background: var(--surface);
  text-align: left;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.catalog-family-card:hover,
.catalog-family-card.active {
  border-color: var(--yellow);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
  transform: translateY(-2px);
}

.catalog-family-visual {
  display: block;
  aspect-ratio: 1.5 / 1;
  background: #fff;
  overflow: hidden;
}

.catalog-family-visual img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  padding: 10px;
}

.catalog-family-copy {
  display: grid;
  gap: 4px;
  padding: 10px 12px 12px;
}

.catalog-family-copy strong {
  font-size: 0.92rem;
  color: var(--text);
}

.catalog-family-copy span {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 700;
}

.catalog-tools {
  width: min(1040px, 100%);
  margin-inline: auto;
  margin-bottom: 14px;
  display: grid;
  gap: 10px;
  justify-items: stretch;
}

.catalog-search-row {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 12px;
  justify-content: stretch;
}

.catalog-sort-row {
  display: none;
}

.sort-wrap {
  min-height: 46px;
  min-width: 0;
  padding: 4px 8px 4px 14px;
  border: 1px solid var(--border);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--surface);
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
}

.sort-wrap select {
  min-height: 36px;
  min-width: 0;
  padding: 0 30px 0 10px;
  border: 0;
  border-radius: 999px;
  background: #484848;
  color: #d8d0be;
  outline: none;
  font-weight: 700;
}

.sort-wrap select option {
  background: #292929;
  color: #d8d0be;
}

.search-wrap {
  position: relative;
  display: block;
  width: 100%;
  grid-column: auto;
}

.search-wrap::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 50%;
  z-index: 1;
  width: 13px;
  height: 13px;
  border: 2px solid var(--yellow);
  border-radius: 50%;
  transform: translateY(-58%);
  pointer-events: none;
}

.search-wrap::after {
  content: "";
  position: absolute;
  left: 31px;
  top: 50%;
  z-index: 1;
  width: 9px;
  height: 2px;
  border-radius: 999px;
  background: var(--yellow);
  transform: translateY(5px) rotate(45deg);
  transform-origin: left center;
  pointer-events: none;
}

.search-wrap input {
  width: 100%;
  min-height: 54px;
  padding: 0 50px 0 48px;
  border: 1px solid #858585;
  border-radius: 999px;
  background: #6c6c6c;
  color: var(--text);
  text-align: center;
  outline: none;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  font-size: 1rem;
}

.search-wrap input::placeholder {
  color: var(--muted);
  text-align: center;
}

.search-wrap input:focus {
  border-color: var(--yellow);
  background: #747474;
}

.search-wrap input::-webkit-search-cancel-button,
.search-wrap input::-webkit-search-decoration {
  -webkit-appearance: none;
  appearance: none;
  display: none;
}

.search-wrap input::-ms-clear,
.search-wrap input::-ms-reveal {
  display: none;
  width: 0;
  height: 0;
}

.search-clear-btn {
  position: absolute;
  right: 10px;
  top: 50%;
  z-index: 2;
  width: 28px;
  height: 28px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: var(--yellow);
  transform: translateY(-50%);
  transition: background 0.2s ease, color 0.2s ease, transform 0.15s ease;
}

.search-clear-btn:hover {
  background: rgba(255, 196, 37, 0.12);
  color: #fff3c5;
  transform: translateY(-50%) scale(1.04);
}

.search-clear-btn span {
  display: block;
  font-size: 1.35rem;
  font-weight: 800;
  line-height: 1;
}

.page-size-wrap {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
}

.page-size-wrap select {
  min-height: 34px;
  padding: 0 32px 0 12px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--surface);
  color: var(--text);
  font-weight: 800;
  outline: none;
}

.page-size-wrap select:hover,
.page-size-wrap select:focus {
  border-color: var(--yellow);
}

.view-toggle {
  grid-column: auto;
  justify-self: start;
  min-height: 46px;
  padding: 4px;
  border: 1px solid var(--border);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: var(--surface);
}

.view-toggle button {
  width: 34px;
  height: 34px;
  min-height: 34px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  font-weight: 800;
}

.view-toggle button:hover,
.view-toggle button.active {
  background: var(--yellow);
  color: #1a1a1a;
}

.view-icon {
  width: 18px;
  height: 18px;
  display: block;
  margin: auto;
}

.view-icon-grid {
  border: 2px solid currentColor;
  border-radius: 4px;
  background:
    linear-gradient(currentColor, currentColor) 50% 0 / 2px 100% no-repeat,
    linear-gradient(currentColor, currentColor) 0 50% / 100% 2px no-repeat;
}

.view-icon-list {
  position: relative;
  border: 0;
  border-radius: 4px;
  background:
    radial-gradient(circle, currentColor 0 2px, transparent 2.4px) 1px 3px / 5px 6px no-repeat,
    radial-gradient(circle, currentColor 0 2px, transparent 2.4px) 1px 9px / 5px 6px no-repeat,
    radial-gradient(circle, currentColor 0 2px, transparent 2.4px) 1px 15px / 5px 6px no-repeat,
    linear-gradient(currentColor, currentColor) 8px 4px / 9px 2px no-repeat,
    linear-gradient(currentColor, currentColor) 8px 10px / 9px 2px no-repeat,
    linear-gradient(currentColor, currentColor) 8px 16px / 9px 2px no-repeat;
}

.section-heading {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
  text-align: center;
}

.section-heading h2 {
  font-size: clamp(2.1rem, 4vw, 3.4rem);
  color: var(--yellow);
  letter-spacing: 0.04em;
}

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

.filter-btn {
  min-height: 32px;
  padding: 0 10px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--muted);
  font-size: 0.82rem;
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease, transform 0.15s ease;
}

.filter-btn .filter-close {
  display: none;
  margin-left: 4px;
  font-weight: 700;
}

.filter-btn:hover {
  border-color: var(--yellow);
  color: var(--yellow);
  transform: translateY(-1px);
}

.filter-btn.active {
  background: var(--yellow);
  border-color: var(--yellow);
  color: #1a1a1a;
  font-weight: 700;
}

.filter-btn.active .filter-close {
  display: inline;
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 18px;
  align-items: stretch;
  margin-top: 18px;
}

.catalog-grid.is-list-view {
  grid-template-columns: 1fr;
}

.catalog-empty {
  grid-column: 1 / -1;
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--surface);
  color: var(--muted);
  text-align: center;
}

.catalog-pagination {
  display: grid;
  justify-items: center;
  gap: 10px;
  margin-top: 18px;
}

.catalog-pagination-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.catalog-page-status {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 700;
}

.catalog-page-controls {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 7px;
}

.catalog-page-btn {
  min-height: 36px;
  padding: 0 13px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--surface);
  color: var(--muted);
  font-weight: 700;
  transition: border-color 0.18s ease, color 0.18s ease, background 0.18s ease, transform 0.18s ease;
}

.catalog-page-btn:hover:not(:disabled),
.catalog-page-btn.active {
  border-color: var(--yellow);
  background: var(--yellow);
  color: #1a1a1a;
  transform: translateY(-1px);
}

.catalog-page-btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.catalog-page-gap {
  display: inline-flex;
  align-items: center;
  color: var(--muted);
  font-weight: 700;
}

.card {
  height: 100%;
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--surface);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.catalog-grid.is-list-view .card {
  grid-template-columns: 92px minmax(0, 1fr);
  grid-template-rows: auto;
}

.catalog-grid.is-list-view .card-visual {
  aspect-ratio: auto;
  min-height: 92px;
  border-right: 1px solid var(--border);
  border-bottom: none;
}

.catalog-grid.is-list-view .card-body {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 6px;
  padding: 8px 10px;
}

.catalog-grid.is-list-view .card-head {
  gap: 8px;
}

.catalog-grid.is-list-view .card-title {
  font-size: 0.88rem;
  line-height: 1.15;
}

.catalog-grid.is-list-view .card-ref {
  margin-top: 3px;
  padding-top: 4px;
  font-size: 0.68rem;
}

.catalog-grid.is-list-view .card-badge-new {
  top: -8px;
  right: -8px;
  left: auto;
}

.catalog-grid.is-list-view .card-badge-new img {
  width: 68px;
  height: 68px;
}

.catalog-grid.is-list-view .card-price {
  font-size: 1.35rem;
}

.catalog-grid.is-list-view .card-desc {
  display: none;
  min-height: 0;
  font-size: 0.82rem;
  line-height: 1.35;
}

.catalog-grid.is-list-view .product-unit-advice,
.catalog-grid.is-list-view .option-summary {
  grid-column: 1 / -1;
}

.catalog-grid.is-list-view .card-purchase {
  grid-column: 2;
  grid-row: 2 / span 3;
  grid-template-columns: 1fr;
  align-self: start;
  gap: 5px;
}

.catalog-grid.is-list-view .product-unit-advice {
  display: inline-flex;
  padding: 3px 7px;
  font-size: 0.64rem;
}

.catalog-grid.is-list-view .option-summary {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 10px;
  margin-top: 0;
}

.catalog-grid.is-list-view .option-summary-label {
  font-size: 0.62rem;
}

.catalog-grid.is-list-view .option-swatches {
  gap: 3px;
}

.catalog-grid.is-list-view .option-swatch {
  width: 14px;
  height: 14px;
}

.catalog-grid.is-list-view .add-btn {
  min-height: 30px;
  font-size: 0.78rem;
  grid-row: 1;
}

.catalog-grid.is-list-view .qty-btn {
  width: 26px;
  height: 26px;
}

.catalog-grid.is-list-view .card-cart-count {
  min-height: 22px;
  padding: 3px 8px;
  font-size: 0.68rem;
}

.catalog-grid.is-list-view .qty-row {
  justify-content: flex-start;
  grid-row: 2;
}

.catalog-grid.is-list-view .card-cart-count {
  grid-row: 3;
  margin-left: 0;
}

.card:hover {
  border-color: var(--yellow);
  box-shadow: 0 8px 32px rgba(255, 196, 37, 0.1);
  transform: translateY(-5px);
}

.card-visual {
  aspect-ratio: 4 / 3;
  position: relative;
  overflow: hidden;
  background: #fff;
  border-bottom: 1px solid var(--border);
}

.card-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: url("images/teeck3d-logo-gris.svg") center / 74% auto no-repeat;
  opacity: 0.16;
  pointer-events: none;
  mix-blend-mode: multiply;
}

.card-visual.is-default-logo::before {
  content: none;
}

.card-visual::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 68px;
  z-index: 2;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.18));
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s ease;
}

.product-badge-new {
  display: inline-block;
  line-height: 0;
}

.product-badge-new img {
  width: 92px;
  height: 92px;
  object-fit: contain;
  display: block;
}

.card-badge-new {
  position: absolute;
  inset: -10px -10px auto auto;
  left: auto;
  right: -10px;
  z-index: 2;
  pointer-events: none;
}

@keyframes flowIconSequence {
  0%, 34% {
    opacity: 1;
  }
  52%, 100% {
    opacity: 0.72;
  }
}

.flow-icon-search {
  animation-name: flowSearchIcon;
}

.flow-icon-cart {
  animation-name: flowCartIcon;
}

.flow-icon-send {
  animation-name: flowSendIcon;
}

@keyframes flowSearchIcon {
  0%, 8% {
    opacity: 1;
    transform: rotate(0deg) translateX(0) scale(1.05);
  }
  18% {
    opacity: 1;
    transform: rotate(16deg) translate(2px, -2px) scale(1.08);
  }
  28%, 34% {
    opacity: 1;
    transform: rotate(-12deg) translate(-2px, 2px) scale(1.08);
  }
  52%, 100% {
    opacity: 0.72;
    transform: rotate(0deg) translateX(0) scale(1);
  }
}

@keyframes flowCartIcon {
  0%, 10% {
    opacity: 1;
    transform: translateX(0) scale(1.04);
  }
  22% {
    opacity: 1;
    transform: translateX(4px) scale(1.08);
  }
  34% {
    opacity: 1;
    transform: translateX(0) scale(1.06);
  }
  52%, 100% {
    opacity: 0.72;
    transform: translateX(0) scale(1);
  }
}

@keyframes flowSendIcon {
  0%, 12% {
    opacity: 1;
    transform: translate(0, 0) rotate(0deg) scale(1.04);
  }
  26% {
    opacity: 1;
    transform: translate(5px, -3px) rotate(10deg) scale(1.08);
  }
  34% {
    opacity: 1;
    transform: translate(0, 0) rotate(0deg) scale(1.06);
  }
  52%, 100% {
    opacity: 0.72;
    transform: translate(0, 0) rotate(0deg) scale(1);
  }
}

.product-gallery::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("images/teeck3d-logo-gris.svg") center / 116% auto no-repeat;
  opacity: 0.22;
  pointer-events: none;
  mix-blend-mode: multiply;
}

.card-visual-image {
  position: relative;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  padding: 10px;
  transition: transform 0.18s ease;
}

.card-placeholder-logo {
  opacity: 0.3;
  filter: grayscale(1);
}

.card-visual-dots {
  position: absolute;
  left: 50%;
  bottom: 10px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 8px;
  border-radius: 999px;
  background: transparent;
  backdrop-filter: none;
  transform: translate(-50%, 0);
  opacity: 1;
  pointer-events: none;
  transition:
    opacity 0.18s ease,
    transform 0.18s ease,
    background 0.18s ease,
    backdrop-filter 0.18s ease;
}

.card-visual-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.58);
}

.card-visual-dot.active {
  background: var(--yellow);
  transform: scale(1.12);
}

.card-visual.is-preview-active::after,
.card-visual:hover::after {
  opacity: 1;
}

.card-visual.is-preview-active .card-visual-dots,
.card-visual:hover .card-visual-dots {
  background: rgba(24, 24, 24, 0.52);
  backdrop-filter: blur(8px);
}

.card-visual.is-preview-active .card-visual-image,
.card-visual:hover .card-visual-image {
  transform: scale(1.02);
}

.card-quick-add {
  position: absolute;
  right: 12px;
  bottom: 12px;
  z-index: 3;
  width: 46px;
  height: 46px;
  padding: 0;
  border: none;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.18);
  transition: transform 0.16s ease, box-shadow 0.16s ease;
}

.card-quick-add::before {
  content: "";
  width: 100%;
  height: 100%;
  display: inline-block;
  background: url("images/BASKET-ICON.svg") center / contain no-repeat;
}

.card-quick-add:hover {
  transform: translateY(-1px) scale(1.02);
  box-shadow: 0 16px 28px rgba(0, 0, 0, 0.22);
}

.product-badge-new-modal {
  box-shadow: none;
}

.card-body {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 14px 16px 16px;
}

.card-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 12px;
}

.card-title {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
}

.card-ref {
  margin: 6px 0 0;
  font-size: 0.78rem;
  color: var(--muted);
  padding-top: 8px;
  border-top: 1px solid var(--border);
}

.card-cart-count {
  width: fit-content;
  min-height: 25px;
  margin: 0;
  padding: 4px 9px;
  border-radius: 999px;
  background: rgba(255, 196, 37, 0.16);
  color: var(--text);
  font-size: 0.76rem;
}

.card-cart-count strong {
  color: var(--yellow);
}

.card-cart-count.is-empty {
  display: none;
}

.card-price {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.8rem;
  color: var(--yellow);
  line-height: 1;
  white-space: nowrap;
}

.card-desc {
  margin: 0;
  min-height: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

.product-unit-advice,
.product-modal-advice {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  margin: 0;
  padding: 6px 10px;
  border: 1px solid rgba(255, 90, 36, 0.58);
  border-radius: 999px;
  background: rgba(255, 90, 36, 0.16);
  color: #ff6a2a;
  font-size: 0.78rem;
  font-weight: 800;
}

.product-modal-advice {
  display: flex;
  margin-top: 12px;
  line-height: 1.35;
}

.option-summary {
  display: grid;
  gap: 7px;
  margin-top: -2px;
}

.option-summary-group {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}

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

.option-swatches {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  min-width: 0;
}

.option-swatch {
  width: 13px;
  height: 13px;
  flex: 0 0 auto;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: var(--swatch-color);
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.04);
}

.option-swatch.light {
  border-color: rgba(0, 0, 0, 0.28);
}

.option-more,
.option-values {
  color: var(--muted);
  font-size: 0.72rem;
}

.product-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.product-meta span {
  min-height: 22px;
  padding: 0 7px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--surface-2);
  color: var(--muted);
  display: inline-flex;
  align-items: center;
  font-size: 0.65rem;
}

.qty-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.card-purchase {
  margin-top: auto;
  display: grid;
  gap: 10px;
}

.qty-controls {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.qty-btn,
.line-btn {
  width: 30px;
  height: 30px;
  border-radius: 6px;
  border: 1px solid var(--border);
  background: var(--surface-2);
  color: var(--text);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.qty-btn:hover,
.line-btn:hover {
  border-color: var(--yellow);
  color: var(--yellow);
  background: var(--surface-3);
}

.qty-value {
  min-width: 20px;
  text-align: center;
  font-weight: 600;
}

.card-meta-note {
  font-size: 0.82rem;
  color: var(--muted);
}

.add-btn {
  width: 100%;
  min-height: 46px;
  border: none;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--yellow);
  color: #1a1a1a;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: background 0.2s ease, transform 0.15s ease;
}

.add-btn:hover {
  background: var(--yellow-dark);
  transform: translateY(-1px);
}

.reviews-section {
  margin-top: 22px;
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 196, 37, 0.11), transparent 26%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.01)),
    var(--surface-2);
  box-shadow: var(--shadow);
}

.reviews-head {
  max-width: 680px;
  margin: 0 auto 16px;
  text-align: center;
}

.reviews-head h2 {
  margin: 0;
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  color: var(--yellow);
  letter-spacing: 0.04em;
}

.reviews-head p:last-child {
  margin: 8px 0 0;
  color: var(--muted);
}

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

.review-card {
  display: grid;
  gap: 10px;
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.035);
}

.review-stars {
  color: var(--yellow);
  font-size: 0.95rem;
  letter-spacing: 0.08em;
}

.review-card p {
  margin: 0;
  color: var(--text);
  line-height: 1.5;
}

.review-card footer {
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 700;
}

.reviews-video-strip {
  margin-top: 18px;
  display: grid;
  gap: 10px;
}

.reviews-video-head {
  display: flex;
  justify-content: center;
}

.reviews-video-head strong {
  color: var(--yellow);
  font-family: var(--font-display);
  font-size: clamp(1rem, 2.2vw, 1.35rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.reviews-video-row {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(172px, 172px);
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 6px;
  scrollbar-width: thin;
  scrollbar-color: rgba(238, 190, 5, 0.42) transparent;
}

.reviews-video-row::-webkit-scrollbar {
  height: 8px;
}

.reviews-video-row::-webkit-scrollbar-thumb {
  background: rgba(238, 190, 5, 0.38);
  border-radius: 999px;
}

.review-video-card {
  min-height: 260px;
  padding: 0 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  display: grid;
  grid-template-rows: auto auto minmax(0, 1fr) auto;
  align-content: stretch;
  gap: 10px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(198, 40, 40, 0.16), rgba(198, 40, 40, 0.04)),
    rgba(255, 255, 255, 0.03);
  color: #fff6df;
  text-decoration: none;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.18);
  transition: border-color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}

.review-video-card:hover {
  border-color: rgba(238, 190, 5, 0.82);
  transform: translateY(-2px);
  box-shadow: 0 16px 28px rgba(0, 0, 0, 0.24);
}

.review-video-thumb {
  display: block;
  overflow: hidden;
  width: 100%;
  border-radius: 20px 20px 0 0;
  aspect-ratio: 16 / 10;
  background: rgba(0, 0, 0, 0.24);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  order: 0;
}

.review-video-thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.review-video-thumb img.is-fallback {
  object-fit: contain;
  padding: 14px;
  background: rgba(0, 0, 0, 0.22);
}

.review-video-icon {
  width: 40px;
  height: 40px;
  object-fit: contain;
  order: 3;
  justify-self: center;
  margin: 2px 0 0;
}

.review-video-channel {
  order: 1;
  padding: 0 14px;
  color: #ffd36c;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.review-video-title {
  order: 2;
  padding: 0 14px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}

.product-modal-recommendations {
  display: grid;
  gap: 8px;
}

.product-modal-recommendations[hidden] {
  display: none;
}

.product-recommendations-head strong {
  color: var(--yellow);
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.product-recommendations-grid {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(150px, 1fr);
  gap: 8px;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  padding-bottom: 4px;
  scroll-snap-type: x proximity;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 196, 37, 0.45) rgba(255, 255, 255, 0.04);
}

.product-recommendations-grid::-webkit-scrollbar {
  height: 6px;
}

.product-recommendations-grid::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.04);
  border-radius: 999px;
}

.product-recommendations-grid::-webkit-scrollbar-thumb {
  background: rgba(255, 196, 37, 0.45);
  border-radius: 999px;
}

.product-recommendation-card {
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  display: grid;
  grid-template-columns: 1fr;
  align-content: start;
  gap: 8px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  text-align: left;
  transition: border-color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
  scroll-snap-align: start;
}

.product-recommendation-card:hover {
  border-color: rgba(238, 190, 5, 0.78);
  transform: translateY(-2px);
  box-shadow: 0 12px 22px rgba(0, 0, 0, 0.16);
}

.product-recommendation-thumb {
  display: block;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: #fff;
}

.product-recommendation-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 6px;
  margin: 0;
}

.product-recommendation-copy {
  min-width: 0;
  display: grid;
  gap: 3px;
}

.product-recommendation-name {
  color: #fff8dd;
  font-size: 0.8rem;
  font-weight: 800;
  line-height: 1.2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.product-recommendation-ref,
.product-recommendation-price {
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 700;
}

.product-recommendation-price {
  color: var(--yellow);
}

.site-footer {
  margin-top: 26px;
  padding: 28px 20px;
  border-top: 1px solid var(--border);
  text-align: center;
  color: var(--muted);
  background: var(--surface-2);
}

.footer-logo {
  width: 112px;
  height: auto;
  object-fit: contain;
  margin-bottom: 10px;
}

.site-footer p {
  margin: 8px 0 0;
}

.site-version {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: #d7cdbd;
}

.site-footer a {
  color: var(--yellow);
  text-decoration: none;
}

.site-footer a:hover {
  text-decoration: underline;
}

.site-footer span {
  margin: 0 8px;
}

.site-footer p span:not(.social-icon) {
  display: none;
}

.site-footer .contact-btn {
  min-width: 118px;
  margin: 0 5px 10px;
  text-decoration: none;
  vertical-align: middle;
}

.site-footer .contact-btn.whatsapp,
.site-footer .contact-btn.telegram,
.site-footer .contact-btn.email {
  color: #fff;
}

.site-footer .contact-btn.email::before {
  content: "\2709";
  color: var(--yellow);
  font-size: 1rem;
  line-height: 1;
}

.contact-btn.instagram {
  background: linear-gradient(135deg, #f58529, #dd2a7b 48%, #515bd4);
  color: #fff;
}

.back-to-catalog {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 25;
  width: 58px;
  height: 58px;
  min-height: 0;
  padding: 0;
  border-radius: 50%;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  border: none;
  background: var(--yellow);
  color: #4a4a4a;
  font-weight: 800;
  text-decoration: none;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, background 0.2s ease;
}

.back-to-catalog span {
  position: relative;
  width: 30px;
  height: 24px;
  display: block;
  line-height: 0.8;
  font-size: 0;
}

.back-to-catalog span::before {
  content: "";
  position: absolute;
  left: 3px;
  top: 6px;
  width: 16px;
  height: 16px;
  border-left: 7px solid #4a4a4a;
  border-top: 7px solid #4a4a4a;
  transform: rotate(45deg);
}

.back-to-catalog span::after {
  content: none;
}

.back-to-catalog strong {
  margin-top: 2px;
  line-height: 1;
  font-size: 0.6rem;
  letter-spacing: 0.08em;
}

.back-to-catalog:hover {
  background: var(--yellow-dark);
  transform: translateY(-2px);
}

.cart-overlay,
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.62);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.24s ease;
  z-index: 30;
}

.cart-overlay.open,
.modal-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.cart-panel,
.product-modal,
.summary-modal,
.gallery-lightbox {
  position: fixed;
  z-index: 40;
}

.cart-panel {
  top: 0;
  right: -460px;
  width: 440px;
  max-width: 96vw;
  height: 100vh;
  display: grid;
  grid-template-rows: auto 1fr auto;
  background: var(--surface-2);
  transition: right 0.3s ease;
}

.cart-panel.open {
  right: 0;
}

.cart-header {
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border);
  background: var(--surface-3);
}

.cart-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.cart-header-logo {
  width: 70px;
  height: 39px;
  object-fit: contain;
}

.cart-header h2 {
  font-size: 1.8rem;
  color: var(--yellow);
  letter-spacing: 0.08em;
}

.icon-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  font-size: 1.6rem;
}

.icon-btn:hover {
  border-color: var(--yellow);
  color: var(--yellow);
}

.cart-body {
  overflow-y: auto;
  padding: 18px 20px;
}

.cart-items {
  display: grid;
  gap: 12px;
}

.cart-empty {
  padding: 28px 16px;
  text-align: center;
  color: var(--muted);
}

.cart-line {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}

.cart-line-side {
  display: grid;
  justify-items: end;
  align-self: stretch;
  align-content: space-between;
  gap: 6px;
}

.cart-line-side .line-total {
  align-self: end;
  justify-self: end;
}

.cart-line-thumb {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  object-fit: contain;
  background: #fff;
  border: 1px solid var(--border);
}

.cart-line-title {
  margin: 0 0 4px;
  font-size: 0.96rem;
  font-weight: 700;
}

.product-open-link,
.summary-product-link {
  display: inline-block;
  padding: 0;
  border: 0;
  background: none;
  color: inherit;
  text-align: left;
}

.product-open-link:hover,
.summary-product-link:hover,
.product-open-link:focus-visible,
.summary-product-link:focus-visible {
  color: var(--yellow);
}

.product-open-link:focus-visible,
.summary-product-link:focus-visible {
  outline: 2px solid var(--yellow);
  outline-offset: 3px;
  border-radius: 6px;
}

.summary-product-link {
  display: block;
  width: 100%;
}

.cart-line-ref {
  margin: 0 0 4px;
  color: var(--muted);
  font-size: 0.78rem;
}

.cart-line-meta {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.cart-line-options {
  margin: 4px 0 0;
  color: var(--yellow);
  font-size: 0.78rem;
  line-height: 1.35;
}

.cart-line-controls {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
}

.line-total {
  align-self: center;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.3rem;
  color: var(--yellow);
}

.line-remove {
  border: none;
  background: none;
  color: var(--danger);
  font-size: 0.8rem;
}

.cart-footer {
  padding: 18px 20px;
  border-top: 1px solid var(--border);
  background: var(--surface-3);
  display: grid;
  gap: 10px;
}

.cart-total-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}

.cart-total-row strong {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 2rem;
  color: var(--yellow);
}

.shipping-line,
.leadtime-line {
  margin: 0;
  font-size: 0.84rem;
  color: var(--muted);
}

.shipping-line strong {
  color: var(--yellow);
}

.payment-methods {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 7px;
}

.payment-label {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
}

.payment-pill {
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.02em;
}

.payment-pill.paypal {
  background: #003087;
  color: #fff;
}

.payment-pill.bizum {
  background: #05c0c7;
  color: #102124;
}

.payment-pill.transfer {
  background: #f2f2f2;
  color: #1a1a1a;
}

.cart-actions,
.contact-grid,
.summary-actions,
.summary-send-grid {
  display: grid;
  gap: 10px;
}

.summary-actions {
  margin-top: 16px;
}

.required-note {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.send-file-note,
.send-file-steps {
  margin: 16px 0 0;
  padding: 12px;
  border: 1px solid rgba(217, 45, 45, 0.45);
  border-radius: var(--radius-md);
  background: rgba(217, 45, 45, 0.1);
  color: var(--text);
  font-size: 0.84rem;
  line-height: 1.45;
}

.send-file-steps {
  display: grid;
  grid-template-columns: 0.95fr 0.9fr 1.15fr;
  gap: 12px;
  font-weight: 700;
  text-align: left;
}

.send-step-card {
  min-width: 0;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-sm);
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 10px;
  background: rgba(0, 0, 0, 0.12);
}

.send-step-card > strong {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #d92d2d;
  color: #fff;
  font-size: 0.78rem;
}

.send-step-card p {
  margin: 0 0 7px;
  color: var(--text);
  font-weight: 900;
}

.send-file-steps em {
  font-style: normal;
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.35;
}

.send-file-steps .editable-file-btn {
  min-height: 36px;
  padding: 0 14px;
  font-size: 0.78rem;
}

.editable-file-btn + em {
  width: fit-content;
  margin: 6px auto 0;
  text-align: center;
}

.send-file-steps .pdf-file-btn {
  min-height: 36px;
  padding: 0 14px;
  font-size: 0.78rem;
}

.required-note span {
  color: #ff5a5a;
  font-weight: 900;
}

.summary-send-grid {
  grid-template-columns: 1fr;
}

.summary-send-grid .contact-btn.email::before {
  content: "\2709";
  color: var(--yellow);
  font-size: 1rem;
  line-height: 1;
}

.primary-block {
  border: none;
  background: var(--yellow);
  color: #1a1a1a;
  font-weight: 700;
}

.primary-block:hover {
  background: var(--yellow-dark);
  transform: translateY(-1px);
}

.secondary-block:hover {
  border-color: var(--yellow);
  color: var(--yellow);
}

.editable-file-btn {
  border-color: #c92a2a;
  background: #d92d2d;
  color: #fff;
  font-weight: 800;
}

.editable-file-btn span {
  min-height: 22px;
  padding: 0 6px;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  background: #fff;
  color: #d92d2d;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.editable-file-btn:hover {
  border-color: #b42323;
  background: #bd2424;
  color: #fff;
}

.pdf-file-btn {
  border-color: rgba(255, 255, 255, 0.2);
  background: var(--surface);
  color: var(--text);
  font-weight: 800;
}

.pdf-file-btn span {
  min-height: 22px;
  padding: 0 6px;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  background: #fff;
  color: #d92d2d;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.pdf-file-btn small {
  display: block;
  color: var(--muted);
  font-size: 0.62rem;
  line-height: 1.1;
}

.pdf-file-btn:hover {
  border-color: var(--yellow);
  color: var(--yellow);
}

.summary-pdf-actions {
  justify-items: center;
}

.summary-pdf-actions .pdf-file-btn {
  width: min(280px, 100%);
}

.contact-grid {
  grid-template-columns: repeat(3, 1fr);
}

.cart-footer .contact-grid {
  gap: 8px;
}

.cart-footer .contact-btn,
.cart-footer .clear-btn {
  min-height: 34px;
  padding: 0 12px;
  font-size: 0.78rem;
}

.cart-footer .clear-btn {
  width: fit-content;
  justify-self: center;
  margin-top: 2px;
}

.contact-btn {
  border: none;
  color: #fff;
  font-weight: 700;
}

.contact-btn.whatsapp {
  background: #25d366;
}

.cart-footer .contact-btn.whatsapp,
.summary-send-grid .contact-btn.whatsapp {
  border: 1px solid rgba(37, 211, 102, 0.36);
  background: rgba(37, 211, 102, 0.16);
  color: #e7fff0;
}

.contact-btn.telegram {
  background: #229ed9;
}

.contact-btn.email {
  background: var(--surface);
  border: 1px solid var(--border);
}

.contact-btn:hover {
  transform: translateY(-1px);
}

.clear-btn:hover {
  color: var(--danger);
  border-color: var(--danger);
}

.product-modal,
.summary-modal {
  inset: 50% auto auto 50%;
  transform: translate(-50%, calc(-50% + 24px));
  width: min(980px, calc(100vw - 28px));
  max-height: calc(100vh - 40px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.24s ease, transform 0.24s ease;
  border-radius: var(--radius-xl);
  background: var(--surface-2);
  overflow: auto;
}

.product-modal.open,
.summary-modal.open {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, -50%);
}

.gallery-lightbox {
  inset: 50% auto auto 50%;
  width: min(980px, calc(100vw - 28px));
  max-height: calc(100vh - 40px);
  padding: 22px;
  border-radius: var(--radius-xl);
  background: var(--surface-2);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, calc(-50% + 24px));
  transition: opacity 0.24s ease, transform 0.24s ease;
  overflow: auto;
}

.gallery-lightbox.open {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, -50%);
}

.gallery-lightbox-body {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(280px, 0.72fr);
  gap: 18px;
  align-items: start;
}

.gallery-lightbox-media {
  position: relative;
  display: grid;
  gap: 10px;
  min-width: 0;
}

.gallery-lightbox-image {
  display: block;
  width: 100%;
  max-height: min(70vh, 720px);
  object-fit: contain;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: #fff;
}

.gallery-lightbox-btn {
  position: absolute;
  top: 50%;
  width: 44px;
  height: 52px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.52);
  color: var(--yellow);
  font-size: 2rem;
  line-height: 1;
  transform: translateY(-50%);
}

.gallery-lightbox-btn:hover {
  border-color: var(--yellow);
  background: rgba(0, 0, 0, 0.72);
}

.gallery-lightbox-btn.prev {
  left: 16px;
}

.gallery-lightbox-btn.next {
  right: 16px;
}

.gallery-lightbox-counter {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
  text-align: center;
}

.gallery-lightbox-meta {
  min-width: 0;
  margin-top: 0;
  padding: 16px 18px 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(22, 22, 22, 0.84), rgba(38, 38, 38, 0.76));
  display: grid;
  align-content: start;
  gap: 10px;
  justify-items: start;
  text-align: left;
}

.gallery-lightbox-badge {
  min-height: 24px;
  padding: 0 10px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(255, 196, 37, 0.34);
  background: rgba(255, 196, 37, 0.12);
  color: var(--yellow);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.gallery-lightbox-meta h3 {
  margin: 0;
  font-size: 1.2rem;
  color: #fff6db;
}

.gallery-lightbox-meta p {
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
}

.gallery-lightbox-author {
  font-size: 0.84rem;
  font-weight: 700;
}

.gallery-lightbox-link {
  min-height: 38px;
  padding: 0 16px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255, 196, 37, 0.34);
  background: rgba(255, 196, 37, 0.14);
  color: var(--yellow);
  font-weight: 800;
  text-decoration: none;
  justify-self: start;
}

.gallery-lightbox-link img {
  width: 16px;
  height: 16px;
  object-fit: contain;
}

.gallery-lightbox-link:hover {
  border-color: var(--yellow);
  background: rgba(255, 196, 37, 0.22);
}

.gallery-lightbox-link.is-youtube {
  background: #d32f2f;
  border-color: #ef5350;
  color: #fff;
}

.gallery-lightbox-link.is-instagram {
  background: linear-gradient(135deg, #833ab4, #e1306c 55%, #fdc830);
  border-color: transparent;
  color: #fff;
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
}

.product-modal-mobile-close {
  display: none;
}

#closeProductModal,
#closeProductModalDesktop {
  z-index: 6;
  top: 14px;
  right: 14px;
  background: rgba(18, 18, 18, 0.82);
  border-color: rgba(255, 196, 37, 0.5);
  color: var(--yellow);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(10px);
}

#closeProductModalDesktop {
  display: none;
  top: 18px;
  right: 18px;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  font-size: 1.55rem;
}

.product-modal-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: start;
  gap: 24px;
  padding: 28px;
}

.product-gallery {
  position: relative;
  display: grid;
  gap: 12px;
}

.product-gallery-stage {
  position: relative;
  display: grid;
  overflow: hidden;
}

.product-gallery.has-hover-preview .product-modal-image {
  cursor: ew-resize;
}

.product-gallery-stage::before {
  content: "";
  position: absolute;
  inset: -22%;
  z-index: 3;
  border-radius: 0;
  background-image: url("images/teeck3d-logo-gris.svg");
  background-position: 18px 18px;
  background-size: 140px auto;
  background-repeat: repeat;
  opacity: 0.12;
  pointer-events: none;
  mix-blend-mode: multiply;
  transform: rotate(-24deg);
  transform-origin: center;
}

.product-gallery.is-default-logo .product-gallery-stage::before {
  content: none;
}

.product-modal-image {
  position: relative;
  z-index: 2;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

.product-modal-image.is-default-logo {
  opacity: 0.34;
  filter: grayscale(1);
}

.product-gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 4;
  width: 42px;
  height: 68px;
  padding: 0;
  border: 1px solid rgba(255, 196, 37, 0.34);
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(44, 44, 44, 0.72);
  color: var(--yellow);
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 700;
  line-height: 1;
  backdrop-filter: blur(8px);
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.15s ease, color 0.2s ease;
}

.product-gallery-nav[hidden],
.product-thumbs[hidden],
.product-modal-tags[hidden] {
  display: none !important;
}

.product-gallery-nav.prev {
  left: 14px;
}

.product-gallery-nav.next {
  right: 14px;
}

.product-gallery-nav:hover {
  border-color: var(--yellow);
  background: rgba(70, 70, 70, 0.88);
  color: #fff2bf;
  transform: translateY(calc(-50% - 1px));
}

.product-thumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.product-gallery-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.product-gallery-links[hidden] {
  display: none !important;
}

.product-gallery-link {
  width: min(100%, 260px);
  border-radius: 16px;
  display: grid;
  gap: 0;
  border: 1px solid rgba(255, 196, 37, 0.34);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  text-decoration: none;
  overflow: hidden;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
}

.product-gallery-link-thumb {
  position: relative;
  aspect-ratio: 16 / 9;
  display: block;
  background: #fff;
}

.product-gallery-link:not(.has-thumb) .product-gallery-link-thumb {
  display: none;
}

.product-gallery-link-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.product-gallery-link-badge {
  position: absolute;
  left: 10px;
  bottom: 10px;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  background: rgba(24, 24, 24, 0.76);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.product-gallery-link-copy {
  min-height: 42px;
  padding: 10px 12px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: inherit;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.product-gallery-link-copy img {
  width: 16px;
  height: 16px;
  object-fit: contain;
  flex: 0 0 16px;
}

.product-gallery-link:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 28px rgba(0, 0, 0, 0.18);
}

.product-gallery-link.is-youtube {
  border-color: #ef5350;
}

.product-gallery-link.is-youtube .product-gallery-link-copy {
  background: #d32f2f;
  color: #fff;
}

.product-gallery-link.is-youtube:hover .product-gallery-link-copy {
  background: #c62828;
}

.thumb-btn {
  width: 74px;
  height: 74px;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: #fff;
}

.thumb-btn img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 6px;
}

.thumb-btn.active,
.thumb-btn:hover {
  border-color: var(--yellow);
}

.product-modal-info {
  padding-top: 8px;
  display: grid;
  gap: 12px;
}

.product-modal-info h3 {
  font-size: 2rem;
}

.product-modal-price-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
}

.product-modal-price {
  margin: 0;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 2rem;
  color: var(--yellow);
}

.product-modal-desc {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.product-modal-desc p {
  margin: 0;
}

.product-modal-desc p + p {
  margin-top: 10px;
}

.product-modal-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.product-modal-tags span {
  min-height: 34px;
  padding: 0 12px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--muted);
  font-size: 0.82rem;
}

.product-modal-options {
  display: none;
}

.product-modal-options.visible {
  display: grid;
  gap: 10px;
  padding: 12px;
  border: 1px solid rgba(255, 196, 37, 0.28);
  border-radius: var(--radius-md);
  background: rgba(255, 196, 37, 0.07);
}

.product-options-title {
  margin: 0;
  color: var(--yellow);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

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

.product-option-actions-slot {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-top: 4px;
}

.product-option-actions-slot:empty {
  display: none;
}

.product-option-field {
  display: grid;
  gap: 6px;
  min-width: 0;
}

.product-option-label {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
}

.product-option-control {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 34px;
  align-items: center;
  gap: 8px;
}

.product-option-field select {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--surface);
  color: var(--text);
  padding: 10px;
  outline: none;
}

.product-option-field select:focus {
  border-color: var(--yellow);
}

.selected-option-swatch {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  background:
    radial-gradient(circle at 32% 28%, rgba(255, 255, 255, 0.5), transparent 22%),
    var(--selected-option-color);
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.05), inset 0 0 0 1px rgba(0, 0, 0, 0.18);
}

.selected-option-swatch.light {
  border-color: rgba(0, 0, 0, 0.38);
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.14), inset 0 0 0 1px rgba(0, 0, 0, 0.18);
}

.product-modal-custom {
  display: none;
}

.product-modal-custom.visible {
  display: grid;
  gap: 8px;
}

.product-modal-custom-head {
  display: block;
}

.product-modal-custom-card {
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.product-modal-custom-card:focus-within {
  border-color: rgba(238, 190, 5, 0.78);
  box-shadow: 0 0 0 1px rgba(238, 190, 5, 0.16);
}

.product-modal-lower {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  align-items: start;
  gap: 22px;
}

.product-modal-lower:not(.has-custom),
.product-modal-lower:not(.has-recommendations) {
  grid-template-columns: 1fr;
}

.custom-label {
  font-size: 0.86rem;
  color: var(--text);
}

.custom-textarea {
  width: 100%;
  min-height: 130px;
  resize: vertical;
  padding: 0;
  border: none;
  border-radius: 0;
  background: transparent;
  color: var(--text);
}

.custom-textarea:focus {
  outline: none;
}

.product-modal-actions {
  display: inline-flex;
  align-items: center;
  justify-self: end;
  gap: 10px;
  flex-wrap: nowrap;
}

.product-modal-actions.in-options {
  justify-self: auto;
  justify-content: flex-end;
  gap: 12px;
  width: max-content;
  max-width: 100%;
  margin-left: auto;
  flex: 0 0 auto;
}

.product-modal-actions.in-options .product-modal-qty {
  flex: 0 0 auto;
}

.product-modal-actions.in-options .product-modal-add {
  width: 46px;
  height: 46px;
  min-width: 46px;
  min-height: 46px;
  padding: 0;
  border-radius: 999px;
  flex: 0 0 46px;
  gap: 0;
  background: transparent;
  background-image: url("images/BASKET-ICON.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 40px 40px;
  box-shadow: none;
  font-size: 0;
  line-height: 0;
  color: transparent;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.product-modal-actions.in-options .product-modal-add::before {
  content: none;
}

.product-modal-actions.in-options .product-modal-add:hover {
  background: transparent;
  background-image: url("images/BASKET-ICON.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 40px 40px;
  transform: translateY(-1px) scale(1.02);
  box-shadow: none;
}

.product-modal-add {
  width: auto;
  min-width: 0;
  min-height: 42px;
  padding: 0 16px;
  flex: 0 0 auto;
  white-space: nowrap;
}

.product-modal-add::before {
  transform: scale(1.55);
  transform-origin: center;
}

.summary-modal {
  width: min(820px, calc(100vw - 28px));
  padding: 24px;
}

.summary-head {
  position: sticky;
  top: -24px;
  z-index: 3;
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 16px;
  margin: -24px -24px 16px;
  padding: 24px;
  background: var(--surface-2);
  border-bottom: 1px solid var(--border);
}

.summary-title {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.summary-logo {
  width: 72px;
  height: auto;
  flex: 0 0 auto;
}

.summary-title .panel-label {
  margin: 0;
}

.summary-help {
  margin: 10px 0 14px;
  color: var(--muted);
}

.honeypot-field {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.customer-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 12px;
  margin: 12px 0 16px;
  padding: 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.03);
}

.customer-fields-heading {
  grid-column: 1 / -1;
}

.customer-fields-heading p {
  margin: 0;
  color: var(--yellow);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.18rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.customer-fields label {
  display: block;
  color: var(--muted);
  font-size: 0.84rem;
}

.field-label-text {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  border: 0;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.field-control {
  position: relative;
  display: block;
}

.required-mark {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: #ff5a5a;
  font-weight: 900;
  pointer-events: none;
}

.required-mark.hidden {
  display: none;
}

.customer-fields input,
.customer-fields textarea,
.customer-fields select {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--surface);
  color: var(--text);
  padding: 10px 28px 10px 10px;
  outline: none;
}

.customer-fields select {
  padding-right: 46px;
}

.customer-fields select + .required-mark {
  right: 34px;
}

.customer-fields input:focus,
.customer-fields textarea:focus,
.customer-fields select:focus {
  border-color: var(--yellow);
}

.customer-fields .field-error {
  border-color: #ff5a5a;
  box-shadow: 0 0 0 3px rgba(255, 90, 90, 0.16);
}

.customer-address {
  grid-column: 1 / -1;
}

.print-customer-data {
  display: none;
}

.summary-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--surface);
}

.summary-table {
  width: 100%;
  border-collapse: collapse;
}

.summary-table th,
.summary-table td {
  padding: 12px 10px;
  border-bottom: 1px solid var(--border);
  text-align: left;
  vertical-align: top;
}

.summary-table th {
  color: var(--yellow);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.summary-table td {
  color: var(--text);
}

.summary-table small {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  line-height: 1.35;
}

.summary-table tfoot td {
  border-bottom: none;
  color: var(--yellow);
  font-weight: 700;
}

.summary-extra {
  padding: 12px 14px;
  color: var(--muted);
}

.summary-extra p {
  margin: 4px 0;
}

.sheet-export {
  margin: 12px 0;
  color: var(--muted);
}

.sheet-export summary {
  cursor: pointer;
  color: var(--yellow);
  font-size: 0.9rem;
}

.summary-text {
  width: 100%;
  min-height: 180px;
  margin-top: 10px;
  resize: vertical;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--surface);
  color: var(--text);
  padding: 14px;
  line-height: 1.55;
  font-family: Consolas, "Courier New", monospace;
  white-space: pre;
  font-size: 0.9rem;
}

.summary-text-hidden {
  display: none;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 24px;
  transform: translate(-50%, 90px);
  padding: 10px 22px;
  border-radius: 999px;
  border: 1px solid rgba(255, 196, 37, 0.25);
  background: var(--surface-2);
  color: var(--text);
  z-index: 60;
  transition: transform 0.24s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.toast.show {
  transform: translate(-50%, 0);
}

@media (max-width: 900px) {
  .product-modal-grid {
    grid-template-columns: 1fr;
  }

  .product-modal-lower {
    grid-template-columns: 1fr;
  }

  .example-gallery-track {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .catalog-families {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

@media (max-width: 720px) {
  .site-shell {
    width: min(100%, calc(100% - 20px));
  }

  .topbar {
    min-height: 74px;
    gap: 8px;
    padding: 8px 10px;
  }

  .brand-copy {
    display: none;
  }

  .top-actions {
    margin-left: auto;
    gap: 6px;
  }

  .language-switcher {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    min-height: 34px;
    padding: 3px;
    gap: 2px;
  }

  .lang-btn {
    width: 28px;
    height: 28px;
    font-size: 0.62rem;
  }

  .cart-trigger {
    min-height: 56px;
    min-width: 56px;
    padding: 0 12px;
    border-radius: 18px;
    gap: 5px;
    font-size: 0.82rem;
  }

  .cart-trigger::before {
    width: 24.3px;
    height: 24.3px;
    flex-basis: 24.3px;
  }

  .cart-trigger > span[data-i18n="cartButton"] {
    display: none;
  }

  .cart-badge {
    min-width: 22px;
    height: 22px;
    padding: 0 6px;
    font-size: 0.7rem;
  }

  .hero {
    padding: 8px 0 6px;
  }

  .hero-copy {
    padding: 12px 12px 12px;
    border-radius: var(--radius-lg);
  }

  .eyebrow {
    margin-bottom: 4px;
    font-size: 0.58rem;
    letter-spacing: 0.12em;
  }

  .hero h1 {
    max-width: none;
    padding: 0;
    border-radius: 0;
    font-size: clamp(0.98rem, 3.9vw, 1.22rem);
    line-height: 1.02;
    white-space: nowrap;
  }

  .notice-band {
    height: 30px;
    margin-top: 12px;
    font-size: 0.72rem;
  }

  .notice-track span {
    min-height: 30px;
    padding: 0 8px;
  }

  @keyframes rotateNotice {
    0%, 28% {
      transform: translateY(0);
    }
    38%, 66% {
      transform: translateY(-30px);
    }
    76%, 100% {
      transform: translateY(-60px);
    }
  }

  .hero-flow-wrap {
    width: 100%;
    margin-top: 14px;
    display: grid;
    justify-items: center;
    gap: 12px;
  }

  .flow-diagram {
    gap: 3px;
    padding-bottom: 0;
  }

  .flow-arrow {
    width: 24px;
    text-align: center;
    transform: rotate(90deg);
    animation-name: flowArrowStepMobile;
  }

  .flow-step {
    width: 100%;
    min-height: 34px;
    padding: 5px 8px;
  }

  .flow-step strong {
    width: 24px;
    height: 24px;
    flex-basis: 24px;
    font-size: 0.9rem;
  }

  .flow-step span {
    font-size: 0.78rem;
  }

  .flow-step .flow-icon {
    width: 24px;
    height: 24px;
    flex-basis: 24px;
    font-size: 0.88rem;
  }

  .product-modal-mobile-close {
    position: sticky;
    top: 0;
    z-index: 9;
    display: flex;
    justify-content: flex-end;
    margin: 0 -12px -52px;
    padding: calc(env(safe-area-inset-top, 0px) + 10px) 12px 0;
    pointer-events: none;
  }

  #closeProductModal {
    position: static;
    margin: 0;
    width: 40px;
    height: 40px;
    font-size: 1.45rem;
    pointer-events: auto;
  }

  .product-modal-grid {
    gap: 16px;
    padding: 12px 12px 14px;
  }

  .product-gallery-nav {
    width: 40px;
    height: 64px;
    font-size: 1.75rem;
  }

  .product-gallery-link {
    width: 100%;
    max-width: none;
  }

  .product-gallery-link-copy {
    min-height: 40px;
    padding: 9px 11px;
    font-size: 0.74rem;
  }

  .product-gallery-link-badge {
    left: 8px;
    bottom: 8px;
  }

  .product-modal-price-row {
    gap: 10px;
  }

  .product-modal-price {
    font-size: 1.72rem;
  }

  .product-modal-actions {
    gap: 8px;
  }

  .product-modal-qty {
    gap: 5px;
  }

  .product-modal-add {
    width: 46px;
    height: 46px;
    min-width: 46px;
    min-height: 46px;
    padding: 0;
    border-radius: 999px;
    flex: 0 0 46px;
    gap: 0;
    font-size: 0;
    line-height: 0;
    color: transparent;
    background: transparent url("images/BASKET-ICON.svg") center / 40px 40px no-repeat;
    box-shadow: none;
    overflow: hidden;
  }

  .product-modal-add::before {
    content: none;
  }

  .product-option-actions-slot {
    justify-content: flex-start;
    padding-top: 2px;
  }

  .product-modal-lower {
    gap: 16px;
  }

  .hero-flow-wrap > .hero-catalog-chip {
    width: min(189px, 100%);
    flex-basis: auto;
    order: 0;
  }

  .example-gallery {
    margin: 8px 0;
    padding: 10px;
    border-radius: var(--radius-lg);
  }

  .example-gallery-head {
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    margin-bottom: 8px;
    text-align: left;
  }

  .example-gallery-title h2 {
    font-size: 1.25rem;
  }

  .example-gallery-title h2 span {
    display: inline;
    margin-left: 6px;
    margin-top: 0;
  }

  .example-gallery-socials {
    justify-content: flex-start;
  }

  .example-gallery-frame {
    padding: 9px 38px;
  }

  .example-gallery-loading {
    inset: 9px 38px;
  }

  .example-gallery-track {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .example-gallery-card-copy {
    padding: 10px 10px 9px;
  }

  .example-gallery-card-copy h3 {
    font-size: 0.82rem;
  }

  .example-gallery-card-link {
    font-size: 0.68rem;
  }

  .example-gallery-card.has-link .example-gallery-card-copy {
    gap: 0;
  }

  .example-gallery-card.has-link .example-gallery-card-copy h3 {
    display: none;
  }

  .example-gallery-card.has-link .example-gallery-card-link {
    margin-top: 0;
  }

  .example-gallery-btn {
    width: 28px;
    height: 36px;
    font-size: 1.35rem;
  }

  .example-gallery-dots {
    margin-top: 8px;
  }

  .catalog-page-controls {
    gap: 5px;
  }

  .catalog-page-btn {
    min-height: 34px;
    padding: 0 11px;
  }

  .reviews-section {
    margin-top: 16px;
    padding: 16px 14px;
  }

  .review-card {
    padding: 14px;
  }

  .catalog-section {
    margin-top: 6px;
    padding: 16px 14px 18px;
  }

  .catalog-families {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px;
  }

  .catalog-family-copy {
    padding: 9px 10px 11px;
  }

  .catalog-family-copy strong {
    font-size: 0.84rem;
  }

  .catalog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .catalog-grid.is-list-view {
    grid-template-columns: 1fr;
  }

  .catalog-grid.is-list-view .card {
    grid-template-columns: 74px minmax(0, 1fr);
  }

  .catalog-grid.is-list-view .card-visual {
    min-height: 82px;
  }

  .catalog-grid.is-list-view .card-purchase {
    grid-template-columns: 1fr;
    grid-column: 1 / -1;
    grid-row: auto;
    gap: 5px;
  }

  .card-body {
    gap: 7px;
    padding: 9px;
  }

  .card-head {
    display: grid;
    gap: 4px;
  }

  .card-title {
    font-size: 0.78rem;
    line-height: 1.15;
  }

  .card-ref {
    margin-top: 4px;
    padding-top: 5px;
    font-size: 0.64rem;
  }

  .card-price {
    font-size: 1.28rem;
  }

  .card-desc {
    display: none;
  }

  .product-unit-advice {
    padding: 4px 6px;
    font-size: 0.62rem;
  }

  .option-summary {
    display: none;
  }

  .card-quick-add {
    right: 8px;
    bottom: 8px;
    width: 42px;
    height: 42px;
    border-radius: 999px;
  }

  .catalog-grid.is-list-view .option-summary {
    display: flex;
  }

  .card-visual-image {
    padding: 6px;
  }

  .card-visual-dots {
    bottom: 8px;
    gap: 5px;
    padding: 4px 7px;
    display: inline-flex;
  }

  .card-visual-dot {
    width: 5px;
    height: 5px;
  }

  .qty-row {
    display: grid;
    gap: 5px;
  }

  .qty-controls {
    gap: 4px;
  }

  .qty-btn {
    width: 26px;
    height: 26px;
  }

  .card-meta-note {
    display: none;
  }

  .add-btn {
    min-height: 36px;
    padding: 0 6px;
    font-size: 0.72rem;
  }

  .card-cart-count {
    min-height: 21px;
    padding: 3px 7px;
    font-size: 0.64rem;
  }

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

  .section-heading h2 {
    font-size: 1.7rem;
  }

  .catalog-tools {
    margin-bottom: 10px;
  }

  .catalog-search-row {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .catalog-sort-row {
    justify-content: stretch;
  }

  .sort-wrap {
    grid-column: 1;
    width: 100%;
    max-width: 100%;
    padding-left: 10px;
    justify-content: stretch;
    gap: 6px;
  }

  .sort-wrap > span {
    display: none;
  }

  .sort-wrap select {
    flex: 1 1 auto;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    padding-right: 24px;
    font-size: 0.76rem;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .search-wrap {
    grid-column: 1 / -1;
  }

  .view-toggle {
    grid-column: 2;
  }

  .page-size-wrap {
    font-size: 0.72rem;
  }

  .search-wrap input {
    min-height: 46px;
  }

  .view-toggle {
    min-height: 40px;
  }

  .view-toggle button {
    width: 31px;
    height: 31px;
    min-height: 31px;
  }

  .contact-grid,
  .summary-send-grid {
    grid-template-columns: 1fr;
  }

  .send-file-steps {
    grid-template-columns: 1fr;
    gap: 8px;
    font-size: 0.78rem;
  }

  .send-step-card {
    padding: 10px;
  }

  .cart-panel {
    width: 100vw;
    max-width: 100vw;
  }

  .customer-fields {
    grid-template-columns: 1fr;
  }

  .summary-modal {
    width: min(100vw - 16px, 520px);
    padding: 16px;
  }

  .gallery-lightbox {
    width: min(100vw - 16px, 520px);
    padding: 16px;
  }

  .gallery-lightbox-body {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .gallery-lightbox-image {
    max-height: min(50vh, 360px);
  }

  .gallery-lightbox-meta h3 {
    font-size: 1rem;
  }

  .gallery-lightbox-btn {
    width: 34px;
    height: 42px;
    font-size: 1.55rem;
  }

  .gallery-lightbox-btn.prev {
    left: 10px;
  }

  .gallery-lightbox-btn.next {
    right: 10px;
  }

  .product-recommendations-grid {
    grid-auto-columns: minmax(140px, 72%);
  }

  .summary-head {
    top: -16px;
    margin: -16px -16px 12px;
    padding: 16px;
  }

  .summary-table-wrap {
    overflow: visible;
    border: none;
    background: transparent;
  }

  .summary-table,
  .summary-table thead,
  .summary-table tbody,
  .summary-table tfoot,
  .summary-table tr,
  .summary-table td {
    display: block;
    width: 100%;
  }

  .summary-table thead {
    display: none;
  }

  .summary-table tbody tr {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto auto;
    align-items: center;
    gap: 6px;
    margin-bottom: 6px;
    padding: 9px 10px;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background: var(--surface);
  }

  .summary-table td {
    padding: 7px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .summary-table tbody td {
    display: block;
    width: auto;
    min-width: 0;
    padding: 0;
    border-bottom: none;
  }

  .summary-table tbody td::before {
    content: none !important;
  }

  .summary-table tbody td:first-child {
    color: var(--yellow);
    font-size: 0.74rem;
    font-weight: 700;
    white-space: nowrap;
  }

  .summary-table tbody td:nth-child(2) {
    overflow: hidden;
    color: var(--text);
    font-size: 0.82rem;
    white-space: nowrap;
    text-overflow: ellipsis;
  }

  .summary-table tbody td:nth-child(2) strong,
  .summary-table tbody td:nth-child(2) small {
    display: inline;
  }

  .summary-table tbody td:nth-child(2) small {
    margin: 0;
    color: var(--muted);
    font-size: 0.72rem;
  }

  .summary-table tbody td:nth-child(2) small::before {
    content: " · ";
  }

  .summary-table tbody td:nth-child(3) {
    color: var(--muted);
    font-size: 0.76rem;
    white-space: nowrap;
  }

  .summary-table tbody td:nth-child(3)::after {
    content: attr(data-unit-label);
  }

  .summary-table tbody td:nth-child(4) {
    display: none;
  }

  .summary-table tbody td:nth-child(5) {
    color: var(--yellow);
    font-size: 0.86rem;
    font-weight: 800;
    white-space: nowrap;
  }

  .summary-table tfoot tr {
    display: grid;
    gap: 4px;
    padding: 12px 14px;
    border: 1px solid rgba(255, 196, 37, 0.35);
    border-radius: var(--radius-md);
    background: rgba(255, 196, 37, 0.1);
  }

  .summary-table tfoot td {
    border-bottom: none;
    padding: 0;
  }

  .summary-table tfoot td:first-child {
    display: block;
    color: var(--muted);
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .summary-table tfoot td:last-child {
    color: var(--yellow);
    font-size: 1.2rem;
    font-weight: 800;
  }

  .product-option-grid {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 721px) {
  #closeProductModal {
    display: none;
  }

  #closeProductModalDesktop {
    display: inline-flex;
  }
}

@media print {
  @page {
    size: A4;
    margin: 10mm;
  }

  body.print-summary {
    background: #fff;
    color: #111;
    font-size: 11px;
  }

  body.print-summary .site-shell,
  body.print-summary .cart-overlay,
  body.print-summary .cart-panel,
  body.print-summary .product-modal,
  body.print-summary .gallery-lightbox,
  body.print-summary .modal-overlay,
  body.print-summary .back-to-catalog,
  body.print-summary .toast {
    display: none !important;
  }

  body.print-summary .summary-modal {
    position: static;
    inset: auto;
    transform: none;
    width: 100%;
    max-height: none;
    opacity: 1;
    pointer-events: auto;
    border: none;
    box-shadow: none;
    background: #fff;
    color: #111;
    padding: 0;
    overflow: visible;
  }

  body.print-summary .summary-modal * {
    color: #111 !important;
  }

  body.print-summary .summary-actions,
  body.print-summary .modal-close,
  body.print-summary .honeypot-field,
  body.print-summary .send-file-steps,
  body.print-summary .send-file-note,
  body.print-summary .required-note {
    display: none !important;
  }

  body.print-summary .summary-head {
    position: static;
    margin: 0 0 8px;
    padding: 0 0 8px;
    border-bottom: 1px solid #999;
  }

  body.print-summary .summary-logo {
    width: 46px;
  }

  body.print-summary .panel-label {
    font-size: 0.82rem;
    letter-spacing: 0.1em;
  }

  body.print-summary .customer-fields {
    display: none;
  }

  body.print-summary .print-customer-data {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px 10px;
    margin: 0 0 8px;
    padding: 8px;
    border: 1px solid #999;
    border-radius: 8px;
    background: #fff;
    font-size: 10px;
  }

  body.print-summary .print-customer-data div {
    display: grid;
    gap: 3px;
  }

  body.print-summary .print-customer-data span {
    color: #555 !important;
    font-size: 9px;
  }

  body.print-summary .print-customer-data strong {
    font-weight: 600;
  }

  body.print-summary .print-customer-notes {
    grid-column: 1 / -1;
  }

  body.print-summary .summary-table-wrap {
    border-color: #999;
    background: #fff;
  }

  body.print-summary .summary-table {
    display: table;
    width: 100%;
    border-collapse: collapse;
    font-size: 10px;
  }

  body.print-summary .summary-table thead {
    display: table-header-group;
  }

  body.print-summary .summary-table tbody {
    display: table-row-group;
  }

  body.print-summary .summary-table tfoot {
    display: table-footer-group;
  }

  body.print-summary .summary-table tr {
    display: table-row;
    break-inside: avoid;
  }

  body.print-summary .summary-table th,
  body.print-summary .summary-table td {
    display: table-cell;
    width: auto;
    padding: 5px 6px;
    border-bottom: 1px solid #bbb;
  }

  body.print-summary .summary-table td::before {
    content: none !important;
  }

  body.print-summary .summary-table tfoot td {
    padding-top: 7px;
    font-weight: 800;
  }

  body.print-summary .summary-extra {
    padding: 6px 8px 0;
    font-size: 10px;
  }

  body.print-summary .summary-extra p {
    margin: 2px 0;
  }
}

@keyframes flowArrowStepMobile {
  0%, 28%, 100% {
    opacity: 0.42;
    transform: rotate(90deg);
  }
  8%, 20% {
    opacity: 1;
    transform: rotate(90deg);
  }
}

.catalog-families-section {
  margin: 0 auto 18px;
  gap: 12px;
}

.catalog-families-head p {
  text-align: left;
  color: var(--yellow);
  font-size: 0.94rem;
  letter-spacing: 0.18em;
}

.catalog-families {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.catalog-family-card {
  padding: 16px;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0)),
    linear-gradient(135deg, rgba(18, 18, 18, 0.96), rgba(45, 45, 45, 0.92));
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.24);
  gap: 12px;
}

.catalog-family-card:hover,
.catalog-family-card.active {
  border-color: rgba(238, 190, 5, 0.92);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.28);
  transform: translateY(-3px);
}

.catalog-family-overline {
  display: none;
}

.catalog-family-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.catalog-family-head strong {
  font-size: 1.08rem;
  line-height: 1.12;
  color: #fff8df;
  letter-spacing: 0.01em;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.22);
}

.catalog-family-count {
  min-width: 44px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(238, 190, 5, 0.18);
  color: var(--yellow);
  font-size: 0.8rem;
  font-weight: 800;
  text-align: center;
}

.catalog-family-visual {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  aspect-ratio: auto;
  background: transparent;
  overflow: visible;
}

.catalog-family-shot {
  aspect-ratio: 1.16 / 1;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #fff;
  overflow: hidden;
}

.catalog-family-shot img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  padding: 8px;
}

.catalog-family-shot.is-placeholder img {
  opacity: 0.26;
  padding: 14px;
}

.catalog-family-copy {
  display: none;
}

.catalog-family-copy span {
  color: var(--yellow);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.filters {
  position: relative;
  width: min(1040px, 100%);
  margin: 0 auto 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.filters-dropdown {
  position: relative;
}

.filters-trigger {
  width: 100%;
  min-height: 52px;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  background: var(--surface);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.14);
}

.filters-trigger-copy {
  display: grid;
  gap: 4px;
  text-align: left;
}

.filters-trigger-copy strong {
  color: var(--yellow);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.filters-trigger-copy span {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 700;
}

.filters-trigger-arrow {
  width: 11px;
  height: 11px;
  border-right: 2px solid var(--yellow);
  border-bottom: 2px solid var(--yellow);
  transform: rotate(45deg);
  transition: transform 0.18s ease;
}

.filters-dropdown.is-open .filters-trigger-arrow {
  transform: rotate(-135deg);
}

.filters-panel {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  right: 0;
  z-index: 12;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  background: rgba(22, 22, 22, 0.98);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.32);
}

.filters-options {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  max-height: 300px;
  overflow: auto;
}

.filter-option {
  min-height: 42px;
  padding: 10px 12px;
  border: 1px solid var(--border);
  border-radius: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.02);
  cursor: pointer;
  transition: border-color 0.18s ease, background 0.18s ease, transform 0.18s ease;
}

.filter-option:hover,
.filter-option.is-selected {
  border-color: rgba(238, 190, 5, 0.85);
  background: rgba(238, 190, 5, 0.12);
  transform: translateY(-1px);
}

.filter-option input {
  accent-color: var(--yellow);
  margin: 0;
  flex: 0 0 auto;
}

.filter-option span {
  color: var(--text);
  font-size: 0.82rem;
  font-weight: 700;
}

.filters-actions {
  margin-top: 12px;
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

.filters-action {
  min-height: 38px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid var(--border);
  font-weight: 800;
}

.filters-action-secondary {
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted);
}

.filters-action-primary {
  background: var(--yellow);
  border-color: var(--yellow);
  color: #1a1a1a;
}

.filters-applied {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.filter-chip {
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(238, 190, 5, 0.72);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(238, 190, 5, 0.12);
  color: var(--text);
  font-size: 0.82rem;
  font-weight: 800;
}

.filter-chip .filter-close {
  color: var(--yellow);
  font-size: 1rem;
  line-height: 1;
}

@media (max-width: 980px) {
  .catalog-families {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .catalog-families-head p {
    text-align: left;
  }

  .catalog-families {
    grid-template-columns: 1fr;
  }

  .catalog-family-card {
    padding: 13px;
    gap: 10px;
  }

  .catalog-family-head strong {
    font-size: 0.94rem;
  }
}

.catalog-families-section {
  width: min(1120px, 100%);
  margin: 10px auto 18px;
  padding: 18px 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(24, 24, 24, 0.84), rgba(39, 39, 39, 0.72));
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.18);
}

.catalog-families-head p {
  margin: 0 0 12px;
  color: var(--yellow);
  text-align: center;
  font-size: clamp(2rem, 4.2vw, 3.4rem);
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: none;
}

.catalog-families {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.catalog-family-card {
  padding: 12px;
  gap: 9px;
}

.catalog-family-head {
  align-items: center;
  gap: 10px;
}

.catalog-family-head strong {
  font-size: 1rem;
  line-height: 1.05;
}

.catalog-family-count {
  min-width: 36px;
  padding: 4px 8px;
  font-size: 0.74rem;
}

.catalog-family-visual {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 6px;
}

.catalog-family-shot {
  aspect-ratio: 1 / 0.74;
  border-radius: 12px;
}

.catalog-family-shot img {
  padding: 6px;
}

.catalog-tools {
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(23, 23, 23, 0.8), rgba(41, 41, 41, 0.68));
}

.filters {
  width: min(1040px, 100%);
  margin: 0 auto 12px;
}

.filters-shell {
  width: 100%;
  padding: 12px 14px 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(22, 22, 22, 0.82), rgba(38, 38, 38, 0.74));
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.16);
}

.filters-head {
  margin-bottom: 10px;
  display: grid;
  gap: 3px;
}

.filters-head strong {
  color: var(--yellow);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.filters-head span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
}

.filters-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.filter-btn {
  min-height: 36px;
  padding: 0 12px;
  background: rgba(255, 255, 255, 0.03);
}

.filter-btn.active {
  box-shadow: 0 8px 18px rgba(238, 190, 5, 0.18);
}

@media (max-width: 980px) {
  .catalog-families {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .catalog-families-section {
    padding: 15px 14px 16px;
  }

  .catalog-families-head p {
    margin-bottom: 10px;
    text-align: center;
    font-size: clamp(1.7rem, 8vw, 2.3rem);
  }

  .catalog-families {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .catalog-family-card {
    padding: 10px;
  }

  .catalog-family-head strong {
    font-size: 0.88rem;
  }

  .catalog-family-visual {
    gap: 4px;
  }

  .catalog-tools {
    padding: 12px;
  }

  .filters-shell {
    padding: 11px 12px 12px;
  }
}

.catalog-families-head p {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.catalog-family-head {
  justify-content: center;
  text-align: center;
}

.catalog-family-head strong {
  width: 100%;
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 1.45vw, 1.7rem);
  line-height: 0.98;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #fff8df;
}

.catalog-family-count {
  display: none;
}

@media (max-width: 720px) {
  .catalog-family-head strong {
    font-size: clamp(1rem, 3.8vw, 1.18rem);
  }
}

.example-gallery-head {
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
}

.example-gallery-title h2,
.catalog-families-head p,
.catalog-tools-head p {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 3vw, 2.2rem);
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
  color: var(--yellow);
}

.example-gallery-socials {
  justify-content: center;
}

.catalog-tools {
  width: min(1120px, 100%);
  margin: 0 auto 12px;
  display: grid;
  gap: 12px;
}

.catalog-tools-head {
  display: flex;
  justify-content: center;
}

.filters {
  width: 100%;
  margin: 0;
}

.filters-shell {
  width: 100%;
}

.catalog-family-visual {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.catalog-family-shot {
  aspect-ratio: 1 / 0.92;
}

@media (max-width: 720px) {
  .example-gallery-title h2,
  .catalog-families-head p,
  .catalog-tools-head p {
    font-size: clamp(1.45rem, 6.6vw, 1.95rem);
  }

  .catalog-family-visual {
    gap: 5px;
  }
}

.catalog-families-section {
  border-color: rgba(255, 255, 255, 0.12);
  background:
    radial-gradient(circle at 12% 18%, rgba(238, 190, 5, 0.14), transparent 28%),
    linear-gradient(180deg, rgba(120, 120, 120, 0.38), rgba(78, 78, 78, 0.42));
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.14);
}

.catalog-family-card {
  border-color: rgba(255, 255, 255, 0.14);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    linear-gradient(135deg, rgba(124, 124, 124, 0.34), rgba(84, 84, 84, 0.4));
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.14);
}

.catalog-family-card:hover,
.catalog-family-card.active {
  border-color: rgba(238, 190, 5, 0.92);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.18);
}

.catalog-tools {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  padding: 16px 18px 18px;
  background:
    radial-gradient(circle at 88% 12%, rgba(238, 190, 5, 0.12), transparent 24%),
    linear-gradient(180deg, rgba(125, 123, 117, 0.34), rgba(77, 77, 77, 0.42));
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.14);
}

.filters-shell {
  border-color: rgba(255, 255, 255, 0.12);
  background: linear-gradient(180deg, rgba(138, 138, 138, 0.14), rgba(93, 93, 93, 0.2));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.search-wrap input {
  border-color: rgba(255, 255, 255, 0.16);
  background: #8f8d88;
  color: #fff8e7;
}

.search-wrap input::placeholder {
  color: rgba(255, 248, 231, 0.72);
}

.search-wrap input:focus {
  border-color: var(--yellow);
  background: #9a9892;
}

.sort-wrap {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(124, 122, 116, 0.48);
  color: #f1e6c9;
}

.sort-wrap select {
  background: #6e6c67;
  color: #fff5dc;
}

.sort-wrap select option {
  background: #5e5c57;
  color: #fff5dc;
}

.filters-head span,
.filter-option span {
  color: #fff6e1;
}

.filter-option {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
}

.filter-option:hover,
.filter-option.is-selected {
  background: rgba(238, 190, 5, 0.18);
}
