:root {
  --bg: #050505;
  --bg-soft: #0b0b0b;
  --bg-elevated: #151515;
  --bg-glass: rgba(18, 18, 18, 0.82);
  --card: #1b1b1b;
  --card-soft: #202020;
  --card-strong: #262626;
  --text: #f5f5f5;
  --muted: #a8a8a8;
  --accent: #ff9800;
  --accent-2: #ff5f1f;
  --accent-soft: rgba(255, 152, 0, 0.18);
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.16);
  --shadow-lg: 0 28px 68px rgba(0, 0, 0, 0.6);
  --shadow-md: 0 20px 48px rgba(0, 0, 0, 0.48);
  --radius-lg: 20px;
  --radius-md: 14px;
  --radius-sm: 9px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: radial-gradient(circle at 12% 0, rgba(255, 153, 0, 0.15), transparent 60%),
    radial-gradient(circle at 90% 10%, rgba(255, 95, 31, 0.12), transparent 55%), var(--bg);
  color: var(--text);
  min-height: 100vh;
}

main {
  width: 100%;
}

main > section {
  padding-left: clamp(24px, 6vw, 80px);
  padding-right: clamp(24px, 6vw, 80px);
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover,
a:focus-visible {
  color: var(--accent);
}

button {
  font: inherit;
  border: none;
  cursor: pointer;
}

.primary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 26px;
  border-radius: var(--radius-md);
  background: linear-gradient(120deg, var(--accent), var(--accent-2));
  color: #050505;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.primary-btn:hover,
.primary-btn:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(255, 105, 0, 0.3);
  filter: brightness(1.05);
  color: var(--text);
}

.ghost-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border 0.2s ease;
}

.ghost-btn:hover,
.ghost-btn:focus-visible {
  background: rgba(255, 152, 0, 0.18);
  color: var(--accent);
  border-color: rgba(255, 152, 0, 0.45);
  transform: translateY(-1px);
}

.ghost-btn--sm {
  padding: 9px 18px;
  font-size: 0.85rem;
}

.danger-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 107, 107, 0.45);
  background: rgba(255, 82, 82, 0.12);
  color: #ff7b7b;
  font-weight: 600;
  transition: background 0.2s ease, color 0.2s ease, border 0.2s ease, transform 0.2s ease;
}

.danger-btn:hover,
.danger-btn:focus-visible {
  background: rgba(255, 82, 82, 0.2);
  color: #ff9a9a;
  border-color: rgba(255, 107, 107, 0.65);
  transform: translateY(-1px);
}

.text-btn {
  background: none;
  color: var(--muted);
  padding: 0;
}

.text-btn:hover,
.text-btn:focus-visible {
  color: var(--accent);
}

.filter-chip,
.section-tab,
.product-tab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: background 0.2s ease, color 0.2s ease, border 0.2s ease, transform 0.2s ease;
}

.filter-chip:hover,
.filter-chip:focus-visible,
.section-tab:hover,
.section-tab:focus-visible,
.product-tab:hover,
.product-tab:focus-visible {
  color: var(--accent);
  border-color: rgba(255, 152, 0, 0.45);
  background: var(--accent-soft);
  transform: translateY(-1px);
}

.section-tab.is-active,
.product-tab.is-active {
  background: linear-gradient(120deg, rgba(255, 152, 0, 0.25), rgba(255, 95, 31, 0.25));
  color: var(--text);
  border-color: rgba(255, 152, 0, 0.55);
}

.muted {
  color: var(--muted);
}

.hidden {
  display: none !important;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  background: rgba(5, 5, 5, 0.88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  box-shadow: 0 18px 28px rgba(0, 0, 0, 0.45);
}

.site-header__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(16px, 4vw, 32px);
  padding: 18px clamp(24px, 6vw, 80px);
}

.logo {
  font-weight: 700;
  font-size: 1.35rem;
  letter-spacing: 0.12rem;
  text-transform: uppercase;
  color: var(--text);
}

.logo-highlight {
  color: var(--accent);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 3vw, 32px);
  font-weight: 500;
  color: var(--muted);
}

.main-nav a {
  position: relative;
  padding: 6px 0;
}

.main-nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  background: linear-gradient(120deg, var(--accent), var(--accent-2));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

.main-nav a[aria-current='page'],
.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--text);
}

.main-nav a[aria-current='page']::after,
.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  transform: scaleX(1);
}

.site-header__actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.header-search {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  padding: 6px 10px 6px 18px;
  gap: 10px;
}

.header-search input {
  width: 220px;
  background: transparent;
  border: none;
  color: var(--text);
  font-size: 0.92rem;
}

.header-search input::placeholder {
  color: rgba(255, 255, 255, 0.45);
}

.header-search input:focus {
  outline: none;
}

.header-search:focus-within {
  border-color: rgba(255, 152, 0, 0.45);
  box-shadow: 0 0 0 3px rgba(255, 152, 0, 0.12);
}

.header-search button {
  background: rgba(255, 255, 255, 0.08);
  color: var(--muted);
  border-radius: 999px;
  padding: 6px 14px;
  text-transform: uppercase;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
}

.header-search button:hover,
.header-search button:focus-visible {
  background: linear-gradient(120deg, rgba(255, 152, 0, 0.2), rgba(255, 95, 31, 0.2));
  color: var(--text);
}

.header-link {
  color: var(--muted);
  font-size: 0.96rem;
}

.header-link:hover,
.header-link:focus-visible {
  color: var(--accent);
}

.site-header__sub {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 10px clamp(24px, 6vw, 80px);
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  background: rgba(5, 5, 5, 0.92);
}

.header-tags {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  font-size: 0.82rem;
  color: var(--muted);
}

.tag-label {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.72rem;
}

.header-tag {
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--muted);
  font-weight: 500;
  transition: background 0.2s ease, border 0.2s ease, color 0.2s ease;
}

.header-tag:hover,
.header-tag:focus-visible {
  background: var(--accent-soft);
  border-color: rgba(255, 152, 0, 0.4);
  color: var(--accent);
}

.header-stats {
  display: flex;
  align-items: center;
  gap: 18px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.82rem;
}

.header-stats strong {
  color: var(--text);
}

/* Hero */
.hero {
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(360px, 1.05fr);
  gap: clamp(32px, 5vw, 68px);
  padding-top: clamp(48px, 8vw, 120px);
  padding-bottom: clamp(48px, 8vw, 110px);
  align-items: stretch;
  max-width: 1280px;
  margin: 0 auto;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.55);
}

.hero-content h1 {
  margin: 0;
  font-size: clamp(2.5rem, 4.6vw, 3.6rem);
  line-height: 1.05;
}

.hero-text {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.6;
  margin: 0;
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-metas {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 16px;
  margin-top: 8px;
}

.hero-meta {
  background: rgba(255, 255, 255, 0.04);
  border-radius: var(--radius-md);
  padding: 18px 18px 16px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
}

.hero-meta::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border-top: 3px solid rgba(255, 152, 0, 0.65);
  opacity: 0.8;
}

.hero-meta .meta-label {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

.hero-meta .meta-label strong {
  color: var(--accent);
}

.hero-meta .meta-value {
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--text);
}

.hero-meta .meta-hint {
  color: var(--accent);
  font-size: 0.85rem;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.hero-visual {
  display: flex;
  flex-direction: column;
  gap: 24px;
  background: linear-gradient(150deg, rgba(32, 32, 32, 0.95), rgba(12, 12, 12, 0.92));
  padding: clamp(18px, 3vw, 28px);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-lg);
}

.setup-visual-grid {
  position: relative;
  display: flex;
  justify-content: center;
  width: 100%;
}

.setup-stage {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.08), rgba(12, 12, 12, 0.65));
  width: 100%;
  max-width: 1280px;
  height: auto;
  border: 1px solid rgba(255, 255, 255, 0.04);
  margin: 0 auto;
}

.setup-stage::before {
  content: '';
  display: block;
  padding-top: 56.25%;
}

@media (max-width: 1200px) {
  .setup-stage {
    max-width: 960px;
  }
}

@media (max-width: 768px) {
  .setup-stage {
    max-width: 640px;
  }
}

.setup-stage img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.setup-stage::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 5, 5, 0) 45%, rgba(5, 5, 5, 0.75));
  pointer-events: none;
}

.stage-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(5, 5, 5, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.stage-fullscreen-btn {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(5, 5, 5, 0.72);
  color: var(--text);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, border 0.2s ease;
  z-index: 5;
}

.stage-fullscreen-btn:hover,
.stage-fullscreen-btn:focus-visible {
  background: rgba(255, 152, 0, 0.2);
  border-color: rgba(255, 152, 0, 0.6);
}

.stage-fullscreen-btn.hidden {
  display: none;
}

.setup-stage.is-fullscreen {
  width: 100vw;
  max-width: none;
  height: 100vh;
  border-radius: 0;
}

.setup-stage.is-fullscreen::before {
  display: none;
}

.product-stack {
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: rgba(12, 12, 12, 0.85);
  border-radius: var(--radius-lg);
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.4);
}

.product-stack-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.section-label {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.72rem;
}

.product-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.product-chip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: border 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.product-chip.is-active,
.product-chip:focus-visible,
.product-chip:hover {
  border-color: rgba(255, 152, 0, 0.6);
  background: linear-gradient(120deg, rgba(255, 152, 0, 0.16), rgba(255, 95, 31, 0.08));
  box-shadow: 0 18px 30px rgba(0, 0, 0, 0.35);
}

.product-chip-main {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 1 1 auto;
  min-width: 0;
}

.product-dot {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(120deg, var(--accent), var(--accent-2));
  color: #050505;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
}

.product-chip-main strong {
  display: block;
  font-size: 1rem;
  color: var(--text);
  line-height: 1.2;
}

.product-chip-main small {
  color: var(--muted);
  font-size: 0.82rem;
}

.product-chip-meta {
  text-align: right;
  min-width: 120px;
}

.product-chip-meta div {
  font-weight: 600;
  color: var(--accent);
  font-size: 1rem;
}

.product-chip-meta small {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
}

.product-chip-actions {
  display: none;
  width: 100%;
  grid-column: 1 / -1;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 8px;
}

.product-chip.is-active .product-chip-actions,
.product-chip:hover .product-chip-actions,
.product-chip:focus-visible .product-chip-actions {
  display: flex;
}

.product-chip-rating {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.75);
}

.product-chip-stars {
  font-size: 1.1rem;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.55);
}

.product-chip-rating span:last-child {
  font-weight: 600;
  color: var(--accent);
}

.product-chip-buy {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 18px;
  border-radius: 999px;
  background: rgba(255, 152, 0, 0.18);
  color: var(--accent);
  font-size: 0.9rem;
  font-weight: 600;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.product-chip-buy:hover,
.product-chip-buy:focus-visible {
  background: linear-gradient(120deg, var(--accent), var(--accent-2));
  color: #050505;
  transform: translateY(-1px);
}

/* Hotspots */
.hotspot {
  position: absolute;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.7);
  background: linear-gradient(120deg, var(--accent), var(--accent-2));
  color: #050505;
  font-size: 0.8rem;
  font-weight: 600;
  transform: translate(-50%, -50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  padding: 0;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hotspot::after {
  content: '';
  position: absolute;
  inset: -12px;
  border-radius: inherit;
  border: 1px solid rgba(255, 153, 0, 0.35);
  animation: pulse 1.8s infinite;
}

.hotspot:hover,
.hotspot:focus-visible,
.hotspot.is-active {
  transform: translate(-50%, -50%) scale(1.08);
  box-shadow: 0 18px 34px rgba(255, 153, 0, 0.32);
  animation-play-state: paused;
}

.hotspot:hover .hotspot-dot,
.hotspot:focus-visible .hotspot-dot,
.hotspot.is-active .hotspot-dot {
  animation-play-state: paused;
}

.hotspot-dot {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  animation: hotspot-breathe 2.6s ease-in-out infinite;
}

.hotspot-bubble {
  position: absolute;
  top: 50%;
  left: calc(100% + 12px);
  transform: translateY(-50%) translateX(6px);
  background: rgba(5, 5, 5, 0.92);
  color: var(--text);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 0.82rem;
  white-space: nowrap;
  box-shadow: 0 18px 28px rgba(0, 0, 0, 0.4);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.hotspot[data-align='left'] .hotspot-bubble {
  left: auto;
  right: calc(100% + 12px);
  transform: translateY(-50%) translateX(-6px);
}

.hotspot:hover .hotspot-bubble,
.hotspot:focus-visible .hotspot-bubble,
.hotspot.is-active .hotspot-bubble,
.hotspot.is-preview .hotspot-bubble {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

.hotspot-tooltip {
  --tooltip-translate-y: 12px;
  position: absolute;
  left: 12px;
  bottom: calc(100% + 16px);
  transform: translateY(var(--tooltip-translate-y));
  background: rgba(5, 5, 5, 0.92);
  color: var(--text);
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  width: 210px;
  text-align: left;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s ease, transform 0.2s ease;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 32px rgba(0, 0, 0, 0.45);
}

.hotspot[data-tooltip-x='left'] .hotspot-tooltip {
  left: auto;
  right: 12px;
}

.hotspot[data-tooltip-y='bottom'] .hotspot-tooltip {
  bottom: auto;
  top: calc(100% + 16px);
  --tooltip-translate-y: -12px;
}

.hotspot:hover .hotspot-tooltip,
.hotspot:focus-visible .hotspot-tooltip {
  opacity: 1;
  transform: translateY(0);
}

.hotspot-tooltip strong {
  display: block;
  font-size: 0.84rem;
}

.hotspot-tooltip small {
  display: block;
  color: rgba(255, 255, 255, 0.65);
  margin-top: 4px;
}

.hotspot-price {
  display: inline-block;
  margin-top: 8px;
  font-weight: 600;
  color: var(--accent);
}

@keyframes pulse {
  0% {
    opacity: 0.85;
    transform: scale(0.82);
  }
  100% {
    opacity: 0;
    transform: scale(1.25);
  }
}

@keyframes hotspot-breathe {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.35;
  }
  100% {
    opacity: 1;
  }
}

/* Product detail */
.product-detail {
  position: absolute;
  top: clamp(20px, 5vw, 48px);
  right: clamp(20px, 5vw, 48px);
  width: min(360px, 70%);
  padding: 18px;
  border-radius: calc(var(--radius-lg) - 6px);
  background: rgba(8, 8, 8, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.58);
  color: var(--text);
  z-index: 5;
  backdrop-filter: blur(16px);
}

.product-detail.hidden {
  display: none;
}

.detail-header {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
}

.detail-header h3 {
  margin: 0;
}

.product-detail .detail-header span {
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.7rem;
}

.detail-desc {
  color: var(--muted);
  margin: 6px 0 16px;
  line-height: 1.4;
  font-size: 0.9rem;
}

.carousel {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 12px;
  background: rgba(255, 255, 255, 0.04);
}

.carousel img {
  width: 100%;
  height: clamp(120px, 18vw, 160px);
  object-fit: cover;
  display: block;
}

.carousel button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(5, 5, 5, 0.65);
  width: 28px;
  height: 36px;
  border-radius: 6px;
  color: var(--text);
}

.carousel .prev {
  left: 8px;
}

.carousel .next {
  right: 8px;
}

.carousel-indicator {
  position: absolute;
  bottom: 8px;
  right: 10px;
  background: rgba(5, 5, 5, 0.8);
  padding: 4px 8px;
  border-radius: 6px;
  font-size: 0.75rem;
}

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

.price-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 152, 0, 0.2);
  padding: 8px 14px;
  border-radius: 999px;
  color: var(--accent);
  font-weight: 600;
}

.offers {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 14px;
}

.offer-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(255, 255, 255, 0.03);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.offer-card .rating {
  color: var(--muted);
  font-size: 0.8rem;
  margin-top: 4px;
}

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

.link-btn {
  color: var(--accent);
  font-weight: 600;
}

.link-btn:hover,
.link-btn:focus-visible {
  color: var(--accent-2);
}

/* Category rail */
.category-rail {
  padding-top: clamp(40px, 6vw, 80px);
  padding-bottom: clamp(40px, 6vw, 90px);
}

.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: clamp(24px, 4vw, 38px);
  flex-wrap: wrap;
}

.section-header h2 {
  margin: 8px 0 0;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
}

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

.category-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 200px;
  background: linear-gradient(160deg, rgba(255, 152, 0, 0.18), rgba(20, 20, 20, 0.95));
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: flex-end;
  transition: transform 0.25s ease, border 0.25s ease, box-shadow 0.25s ease;
}

.category-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(5, 5, 5, 0.85));
}

.category-card:hover,
.category-card:focus-visible {
  transform: translateY(-6px);
  border-color: rgba(255, 152, 0, 0.55);
  box-shadow: 0 22px 40px rgba(255, 152, 0, 0.22);
}

.category-card--creator {
  background: linear-gradient(160deg, rgba(255, 95, 31, 0.22), rgba(20, 20, 20, 0.95));
}

.category-card--edit {
  background: linear-gradient(160deg, rgba(255, 205, 46, 0.22), rgba(20, 20, 20, 0.95));
}

.category-card--budget {
  background: linear-gradient(160deg, rgba(0, 166, 255, 0.18), rgba(20, 20, 20, 0.95));
}

.category-card__overlay {
  position: relative;
  z-index: 1;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.category-chip {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(5, 5, 5, 0.68);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--accent);
  text-transform: uppercase;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
}

.category-card__overlay h3 {
  margin: 0;
  font-size: 1.4rem;
}

.category-card__overlay p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

/* Popular section */
.home-popular {
  padding-top: clamp(40px, 6vw, 90px);
  padding-bottom: clamp(40px, 6vw, 90px);
}

.section-tabs {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.home-popular-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}

.popular-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
  background: rgba(255, 255, 255, 0.03);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.06);
  overflow: hidden;
  color: var(--text);
  text-decoration: none;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.popular-card__media {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.02);
}

.popular-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

.popular-card__tag {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(5, 5, 5, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
}

.popular-card__body {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 16px 16px 18px;
}

.popular-card__title {
  font-size: 1rem;
  line-height: 1.35;
}

.popular-card__desc {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.4;
  min-height: 44px;
}

.popular-card__meta {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.65);
}

.popular-card__category {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(255, 152, 0, 0.2);
  border: 1px solid rgba(255, 152, 0, 0.3);
  color: var(--accent);
  font-weight: 600;
  font-size: 0.72rem;
}

.popular-card__stats {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.6);
}

.popular-card__stats span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.popular-meta {
  color: var(--muted);
  font-size: 0.85rem;
}

.popular-card:hover,
.popular-card:focus-visible {
  transform: translateY(-6px);
  border-color: rgba(255, 152, 0, 0.55);
  box-shadow: 0 24px 42px rgba(0, 0, 0, 0.45);
}

.popular-card:hover .popular-card__media img,
.popular-card:focus-visible .popular-card__media img {
  transform: scale(1.05);
}

.home-featured-list {
  margin-top: clamp(24px, 4vw, 38px);
  display: grid;
  gap: 12px;
}

.featured-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 14px 18px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.featured-item span {
  display: flex;
  align-items: center;
  gap: 12px;
}

.featured-item .meta-value {
  background: linear-gradient(120deg, var(--accent), var(--accent-2));
  color: #050505;
  padding: 4px 10px;
  border-radius: 999px;
  font-weight: 600;
}

.featured-item small {
  display: block;
  color: var(--muted);
  font-size: 0.82rem;
}

/* CTA */
.cta-twitter {
  padding-top: clamp(36px, 5vw, 72px);
  padding-bottom: clamp(50px, 7vw, 100px);
}

.cta-twitter-card {
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: linear-gradient(135deg, rgba(255, 152, 0, 0.22), rgba(5, 5, 5, 0.9));
  border-radius: var(--radius-lg);
  padding: clamp(24px, 5vw, 40px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-md);
}

.cta-twitter-card p {
  color: var(--muted);
  line-height: 1.5;
}

.cta-twitter-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.cta-twitter-delay {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.88rem;
}

/* Footer */
.site-footer {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  padding: clamp(32px, 6vw, 60px);
  background: rgba(5, 5, 5, 0.92);
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.site-footer h3 {
  margin: 0 0 10px;
  font-size: 1.4rem;
}

.site-footer h4 {
  margin: 0 0 12px;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.65);
}

.footer-brand p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.footer-links ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
  color: var(--muted);
}

.footer-cta {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
}

.footer-cta p {
  margin: 0;
  color: var(--muted);
  line-height: 1.4;
}

/* Setups page */
.page-setups {
  background: radial-gradient(circle at 20% 0, rgba(255, 152, 0, 0.12), transparent 60%),
    var(--bg);
}

.setups-main {
  max-width: 1220px;
  margin: 0 auto;
  padding: clamp(48px, 7vw, 110px) clamp(24px, 6vw, 72px);
  display: flex;
  flex-direction: column;
  gap: clamp(32px, 5vw, 48px);
}

.setups-hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 36px;
  align-items: start;
}

.hero-label {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.55);
}

.setups-hero h1 {
  margin: 12px 0 14px;
  font-size: clamp(2rem, 3.2vw, 2.8rem);
}

.setups-hero p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.search-panel,
.products-search {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: rgba(10, 10, 10, 0.7);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 18px 20px;
}

.search-panel label,
.products-search label {
  font-weight: 600;
  font-size: 0.88rem;
}

.search-input-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
}

.search-input-wrapper input {
  flex: 1;
  padding: 12px 16px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
}

.search-input-wrapper input::placeholder {
  color: rgba(255, 255, 255, 0.45);
}

.search-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.search-tag {
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--text);
  font-size: 0.82rem;
  transition: transform 0.2s ease, background 0.2s ease;
}

.search-tag:hover,
.search-tag:focus-visible {
  background: var(--accent-soft);
  color: var(--accent);
  transform: translateY(-2px);
}

.setups-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.setup-card {
  position: relative;
  border-radius: calc(var(--radius-lg) + 22px);
  background: rgba(10, 10, 10, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.05);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  color: inherit;
  transition: transform 0.25s ease, border 0.25s ease, box-shadow 0.25s ease;
  cursor: pointer;
  min-height: 460px;
}

.setup-card--compact {
  cursor: default;
  min-height: 0;
}

.setup-card--compact .setup-card-gallery {
  aspect-ratio: 16 / 9;
  min-height: 220px;
}

.setup-card--compact .card-body {
  gap: 14px;
}

.setup-card--compact .setup-summary {
  margin: 6px 0;
}

.setup-card-gallery,
.product-card-gallery {
  position: relative;
  overflow: hidden;
}

.setup-card-gallery {
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  z-index: 2;
}

.setup-card-gallery::before {
  content: '';
  display: block;
  padding-top: 58%;
}

.product-card-gallery {
  aspect-ratio: 16 / 10;
  min-height: 220px;
  border-radius: var(--radius-md);
  background: rgba(0, 0, 0, 0.6);
  width: 100%;
}

.setup-card-gallery__image,
.product-card-gallery__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.025);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.setup-card-gallery__image.is-active,
.product-card-gallery__image.is-active {
  opacity: 1;
  transform: scale(1);
}

.setup-card-gallery__nav,
.product-card-gallery__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(5, 5, 5, 0.65);
  color: rgba(255, 255, 255, 0.85);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  line-height: 0;
  z-index: 3;
}

.setup-card-gallery__nav.prev,
.product-card-gallery__nav.prev {
  left: 24px;
}

.setup-card-gallery__nav.next,
.product-card-gallery__nav.next {
  right: 24px;
}

.setup-card-gallery__nav:hover,
.setup-card-gallery__nav:focus-visible,
.product-card-gallery__nav:hover,
.product-card-gallery__nav:focus-visible {
  background: rgba(255, 152, 0, 0.35);
  border-color: rgba(255, 152, 0, 0.6);
  color: var(--text);
  outline: 2px solid rgba(255, 152, 0, 0.6);
  outline-offset: 2px;
}

.setup-card-gallery__dots,
.product-card-gallery__dots {
  position: absolute;
  left: 50%;
  bottom: 12px;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  z-index: 3;
}

.setup-card-gallery__dot,
.product-card-gallery__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.setup-card-gallery__dot.is-active,
.product-card-gallery__dot.is-active {
  background: var(--accent);
  transform: scale(1.1);
}

.setup-card-gallery__dot:focus-visible,
.product-card-gallery__dot:focus-visible {
  outline: 2px solid rgba(255, 152, 0, 0.6);
  outline-offset: 2px;
}

.setup-card .card-body {
  position: relative;
  z-index: 2;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.setup-summary {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.4;
  font-size: 0.85rem;
}

.setup-card-cta {
  width: 100%;
  padding: 12px 18px;
  border-radius: calc(var(--radius-md) + 6px);
  background: rgba(255, 255, 255, 0.14);
  color: var(--text);
  font-weight: 600;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
}

.setup-card:hover .setup-card-cta,
.setup-card:focus-within .setup-card-cta,
.setup-card.is-active .setup-card-cta {
  background: rgba(255, 152, 0, 0.25);
  color: var(--text);
}

.setup-meta {
  display: flex;
  justify-content: space-between;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.78);
  flex-wrap: wrap;
  gap: 8px;
}

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

.setup-platforms span {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  padding: 4px 10px;
  font-size: 0.75rem;
  background: rgba(255, 255, 255, 0.04);
}

.setup-price {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 152, 0, 0.2);
  padding: 6px 12px;
  border-radius: var(--radius-md);
  color: var(--accent);
  font-weight: 600;
}

.setup-card:hover,
.setup-card:focus-within,
.setup-card.is-active {
  border-color: rgba(255, 152, 0, 0.35);
  transform: translateY(-8px);
  box-shadow: 0 36px 60px rgba(0, 0, 0, 0.55);
}

.setup-card:focus-visible {
  outline: 2px solid rgba(255, 152, 0, 0.55);
  outline-offset: 4px;
}

.no-results {
  text-align: center;
  color: var(--muted);
  padding: 24px;
  border-radius: var(--radius-lg);
  border: 1px dashed rgba(255, 255, 255, 0.2);
}

/* Setup detail */
.page-setup-detail {
  background: radial-gradient(circle at 10% 0, rgba(255, 95, 31, 0.12), transparent 55%),
    var(--bg);
}

.setup-detail-main {
  max-width: 1220px;
  margin: 0 auto;
  padding: clamp(48px, 7vw, 120px) clamp(24px, 6vw, 72px);
  display: flex;
  flex-direction: column;
  gap: clamp(36px, 6vw, 56px);
}

.setup-detail-hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  align-items: start;
}

.setup-detail-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.setup-detail-info h1 {
  margin: 0;
  font-size: clamp(2.4rem, 4vw, 3rem);
}

.setup-detail-info p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.setup-creator {
  font-size: 1rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 6px;
}

.setup-stat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 14px;
}

.setup-stat-card {
  padding: 14px 16px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.stat-label {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.55);
}

.setup-meta-inline {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 0.9rem;
}

.setup-detail-visual {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.setup-detail-visual .setup-visual-grid {
  width: 100%;
}

.detail-stage {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  width: 100%;
  height: auto;
}

.detail-stage::before {
  content: '';
  display: block;
  padding-top: 56.25%;
}

.detail-stage img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.detail-product-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: rgba(10, 10, 10, 0.7);
  border-radius: var(--radius-md);
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.setup-video {
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: rgba(10, 10, 10, 0.72);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: clamp(24px, 4vw, 36px);
  box-shadow: var(--shadow-md);
}

.setup-video-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.setup-video-player {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: rgba(0, 0, 0, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.setup-video-player::before {
  content: '';
  display: block;
  padding-top: 56.25%;
}

.setup-video-frame {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.setup-video-frame iframe,
.setup-video-frame video {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
  border-radius: inherit;
  background: #000;
}

.setup-video-frame video {
  object-fit: cover;
}

.setup-products,
.setup-recos {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.setup-products-grid,
.setup-recos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(16px, 3vw, 28px);
  align-items: stretch;
}

.setup-recos-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

/* Products page */
.page-products {
  background: radial-gradient(circle at 75% 0, rgba(255, 152, 0, 0.12), transparent 55%),
    var(--bg);
}

.products-main {
  max-width: 1240px;
  margin: 0 auto;
  padding: clamp(48px, 7vw, 110px) clamp(24px, 6vw, 72px);
  display: flex;
  flex-direction: column;
  gap: clamp(32px, 5vw, 52px);
}

.products-hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  align-items: start;
}

.products-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 6px;
}

.product-tab {
  background: rgba(255, 255, 255, 0.06);
  font-size: 0.85rem;
}

.products-grid {
  display: grid;
  gap: clamp(22px, 4vw, 32px);
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}



.products-grid-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  background: rgba(255, 255, 255, 0.03);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.products-grid-heading h2 {
  margin: 0;
}

.products-grid-heading p {
  margin: 6px 0 0;
  color: var(--muted);
}

.products-grid-heading span {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
}

.product-card {
  position: relative;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.06);
  overflow: visible;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.45);
  background: rgba(8, 8, 8, 0.68);
  display: flex;
  flex-direction: column;
  min-height: 0;
  height: 100%;
}

.product-card-badge {
  position: absolute;
  top: 0;
  left: 0;
  transform: translate(-50%, -50%);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(120deg, var(--accent), var(--accent-2));
  color: #050505;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.35);
}

.product-card-gallery {
  position: relative;
  aspect-ratio: 4 / 3;
  background: rgba(0, 0, 0, 0.65);
  flex: 1 0 auto;
  border-radius: var(--radius-md);
  overflow: hidden;
}

.product-card-content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: clamp(18px, 4vw, 28px);
  background: linear-gradient(180deg, rgba(5, 5, 5, 0) 0%, rgba(5, 5, 5, 0.85) 55%, rgba(5, 5, 5, 0.95) 100%);
  display: flex;
  flex-direction: column;
  gap: 16px;
  z-index: 2;
}

.product-card-info h3 {
  margin: 0;
  font-size: clamp(1.25rem, 2vw, 1.45rem);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  word-break: break-word;
}

.product-card-category {
  display: block;
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
}

.product-card-price {
  margin-top: 10px;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--text);
}

.product-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.product-card-rating {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.75);
}

.product-card-stars {
  font-size: 1.1rem;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.55);
}

.product-card-rating span:last-child {
  color: var(--accent);
  font-weight: 600;
  font-size: 1.05rem;
}

.setup-product-card {
  min-height: auto;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.setup-product-card .product-card-gallery {
  aspect-ratio: 16 / 9;
  min-height: clamp(200px, 30vw, 260px);
}

.page-products .product-card-badge {
  display: none;
}

.setup-product-card .product-card-content {
  padding: clamp(18px, 4vw, 28px);
  gap: clamp(12px, 3vw, 18px);
}

.setup-product-card .product-card-footer {
  align-items: flex-start;
  width: 100%;
}

.setup-product-card .product-card-rating {
  flex: 1 1 auto;
  min-width: 110px;
}

.setup-product-card .product-card-buy {
  flex-shrink: 0;
}

.page-products .product-card {
  overflow: hidden;
  min-height: clamp(360px, 45vw, 460px);
}

.page-products .product-card-gallery {
  min-height: clamp(210px, 32vw, 260px);
}

.page-products .product-card-content {
  padding: clamp(18px, 4vw, 30px);
  background: linear-gradient(180deg, rgba(5, 5, 5, 0.05) 0%, rgba(5, 5, 5, 0.85) 55%, rgba(5, 5, 5, 0.97) 100%);
}

.page-products .product-card-info h3 {
  font-size: clamp(1.2rem, 4vw, 1.45rem);
  word-break: break-word;
}

.page-products .product-card-footer {
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.page-products .product-card-buy {
  padding: 10px 18px;
  font-size: 1rem;
  width: 100%;
  justify-content: center;
}

.product-card-buy {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border-radius: 999px;
  background: linear-gradient(120deg, var(--accent), var(--accent-2));
  color: #050505;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.product-card-buy:hover,
.product-card-buy:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(255, 152, 0, 0.3);
}

@media (max-width: 640px) {
  .setup-product-card .product-card-footer {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .setup-product-card .product-card-buy {
    width: 100%;
    justify-content: center;
  }
}

.page-admin {
  background: radial-gradient(circle at 10% 10%, rgba(255, 152, 0, 0.12), transparent 45%), var(--bg);
}

.admin-main {
  max-width: 960px;
  margin: 0 auto;
  padding: clamp(48px, 6vw, 80px) clamp(24px, 6vw, 72px) 140px;
  display: flex;
  flex-direction: column;
  gap: clamp(32px, 4vw, 48px);
}

.admin-toolbar {
  position: fixed;
  bottom: clamp(16px, 4vw, 32px);
  right: clamp(16px, 5vw, 40px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  width: auto;
  height: auto;
  z-index: 20;
  pointer-events: none;
}

.admin-euro-btn {
  pointer-events: auto;
  font-size: 1.4rem;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle, rgba(255, 152, 0, 0.55), rgba(5, 5, 5, 0.9));
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.5);
}

@media (max-width: 600px) {
  .admin-toolbar {
    right: 16px;
    bottom: 16px;
  }
}

.admin-card {
  background: rgba(12, 12, 12, 0.82);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: clamp(24px, 4vw, 42px);
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.admin-card__header {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: flex-start;
}

.admin-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

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

.form-grid label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.85);
}

.form-grid input,
.form-grid textarea,
.form-grid select {
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(5, 5, 5, 0.4);
  color: var(--text);
  padding: 10px 12px;
  font: inherit;
  resize: vertical;
}

.form-grid select {
  appearance: none;
}

.form-grid textarea {
  min-height: 110px;
}

.form-grid .form-full {
  grid-column: 1 / -1;
}

.admin-form-mode {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 12px;
}

.admin-form-mode__controls {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

.admin-form-mode select {
  min-width: 220px;
}

.is-readonly {
  background: rgba(255, 255, 255, 0.08) !important;
  cursor: not-allowed;
}

.form-checkbox {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
}

.form-checkbox input[type='checkbox'] {
  width: 18px;
  height: 18px;
}

.admin-form__actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.admin-hotspots {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  padding: 24px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.04);
}

.admin-hotspots__label {
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.65);
  margin: 0 0 8px;
}

.hotspot-preview {
  position: relative;
  border-radius: var(--radius-md);
  border: 1px dashed rgba(255, 255, 255, 0.18);
  overflow: hidden;
  background: rgba(5, 5, 5, 0.4);
  min-height: 280px;
  cursor: crosshair;
}

.hotspot-preview img {
  width: 100%;
  display: block;
  height: auto;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.hotspot-preview img.is-visible {
  opacity: 1;
}

.hotspot-preview__pins {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hotspot-preview__hint {
  position: absolute;
  bottom: 12px;
  left: 12px;
  right: 12px;
  padding: 10px 12px;
  border-radius: var(--radius-md);
  background: rgba(5, 5, 5, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.75);
  pointer-events: none;
}

.hotspot-preview-pin {
  position: absolute;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.8);
  background: linear-gradient(120deg, var(--accent), var(--accent-2));
  color: #050505;
  font-weight: 600;
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translate(-50%, -50%);
  pointer-events: none;
  box-shadow: 0 12px 18px rgba(0, 0, 0, 0.35);
}

.admin-hotspots__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.admin-hotspots__list-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.hotspot-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.hotspot-row {
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 14px;
  background: rgba(5, 5, 5, 0.55);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hotspot-row__fields,
.hotspot-row__coords {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 12px;
}

.hotspot-row label {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.75);
}

.hotspot-row input {
  margin-top: 4px;
  width: 100%;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(0, 0, 0, 0.35);
  color: var(--text);
  padding: 8px 10px;
  font: inherit;
}

.hotspot-row__remove {
  align-self: flex-start;
  color: rgba(255, 255, 255, 0.75);
}

/* Utilities */
.no-results {
  border: 1px dashed rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-xl, 28px);
  padding: clamp(32px, 6vw, 60px);
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: center;
  background: rgba(8, 8, 8, 0.65);
}

.no-results.hidden {
  display: none;
}

.no-results-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
}

.no-results-title {
  margin: 0;
  font-size: clamp(1.4rem, 4vw, 1.9rem);
  font-weight: 600;
  color: var(--text);
}

.no-results-highlight {
  background: linear-gradient(120deg, #ffb347, #ffcc33);
  -webkit-background-clip: text;
  color: transparent;
}


.no-results-subtitle {
  margin: 0 0 16px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
}

.no-results-btn {
  align-self: center;
  padding: 14px 30px;
  font-size: 1rem;
  border-radius: 999px;
  min-width: 200px;
}

/* Responsive */
@media (min-width: 900px) {
  .products-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 1200px) {
  .products-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 1200px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    order: -1;
  }

  .product-stack {
    flex-direction: column;
  }
}

@media (max-width: 1024px) {
  .site-header__actions {
    flex-wrap: wrap;
    justify-content: flex-end;
  }

  .header-search input {
    width: 160px;
  }
}

@media (max-width: 900px) {
  .site-header__bar {
    flex-wrap: wrap;
  }

  .main-nav {
    order: 3;
    width: 100%;
    justify-content: space-between;
  }

  .header-stats {
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .site-header__sub {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 720px) {
  .site-header__actions {
    width: 100%;
    flex-direction: column;
    gap: 10px;
    align-items: stretch;
  }

  .header-search {
    width: 100%;
  }

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

  .primary-btn.header-cta {
    display: none;
  }

  .hero-cta-group,
  .cta-twitter-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .popular-card img {
    height: 180px;
  }

  .products-grid-heading {
    align-items: flex-start;
  }

  .products-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 540px) {
  .hero-content h1 {
    font-size: 2.1rem;
  }

  .site-header__bar {
    padding-left: 18px;
    padding-right: 18px;
  }

  .site-header__sub {
    padding-left: 18px;
    padding-right: 18px;
  }

  .hero,
  main > section {
    padding-left: 18px;
    padding-right: 18px;
  }

  .hero-metas {
    grid-template-columns: 1fr;
  }

  .product-stack {
    padding: 16px;
  }

  .setups-grid,
  .setup-products-grid,
  .setup-recos-grid {
    grid-template-columns: 1fr;
  }

  .product-card {
    gap: 0;
  }

  .product-card-body {
    padding: 20px;
  }
}
