/* ============================================
   Kowka — The MIDI Guys
   Mobile-first, conversion-optimized
   ============================================ */

:root {
  --bg: #0a0a0a;
  --bg-elevated: #111;
  --surface: #1a1a1a;
  --surface-hover: #222;
  --border: #2a2a2a;
  --text: #f5f5f5;
  --text-secondary: #a3a3a3;
  --text-muted: #737373;
  --text-dim: #525252;
  --accent: #dc9814;
  --accent-hover: #e5a83a;
  --accent-green: #3bb54a;
  --accent-green-hover: #4ac95a;
  --danger: #dc2626;
  --radius-sm: 8px;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 4px 24px rgba(0,0,0,0.4);
  --shadow-lg: 0 25px 50px rgba(0,0,0,0.5);
  --transition: 0.2s ease;
  --container: 1200px;
  --header-h: 64px;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

/* ============================================
   HEADER
   ============================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10,10,10,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -0.5px;
  color: var(--text);
}


.logo img, .logo-footer img {
  visibility: hidden;                 /* oculta el SVG original */
}
.logo, .logo-footer {
  -webkit-mask: url('/assets/img/kowka-logo.svg') center / contain no-repeat;
  mask: url('/assets/img/kowka-logo.svg') center / contain no-repeat;
  background: var(--text);            /* blanco en dark, oscuro en light */
  width: 120px;
  height: 32px;
}

.logo svg {
  flex-shrink: 0;
}

.main-nav {
  display: none;
  gap: 32px;
  align-items: center;
}

.main-nav a {
  color: var(--text-secondary);
  font-size: 14px;
  font-weight: 500;
  transition: color var(--transition);
  position: relative;
}

.main-nav a:hover {
  color: var(--text);
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width var(--transition);
}

.main-nav a:hover::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.region-badge {
  display: none;
  align-items: center;
  gap: 6px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 6px 12px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  transition: border-color var(--transition);
}

.region-badge:hover {
  border-color: var(--accent);
}

.region-currency {
  color: var(--accent);
}

.lang-switch {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text-secondary);
  font-size: 12px;
  font-weight: 700;
  transition: all var(--transition);
}

.lang-switch:hover {
  border-color: var(--accent);
  color: var(--text);
}

.cart-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text);
  transition: border-color var(--transition);
}

.cart-btn:hover {
  border-color: var(--accent);
}

.cart-count {
  position: absolute;
  top: -4px;
  right: -4px;
  background: var(--accent);
  color: #000;
  font-size: 10px;
  font-weight: 800;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-menu-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
}

.mobile-menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s;
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 99;
  padding: calc(var(--header-h) + 20px) 20px 40px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  overflow-y: auto;
}

.mobile-menu.open {
  transform: translateX(0);
}

.mobile-menu a {
  padding: 16px 0;
  font-size: 18px;
  font-weight: 600;
  color: var(--text);
  border-bottom: 1px solid var(--border);
}

.mobile-actions {
  margin-top: auto;
  padding-top: 24px;
}

.lang-switch-mobile {
  display: block;
  padding: 14px 0;
  font-size: 15px;
  font-weight: 600;
  color: var(--accent);
}

.region-selector-mobile {
  margin-top: 16px;
}

.region-selector-mobile p {
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

.region-selector-mobile a {
  display: block;
  padding: 12px 16px;
  margin-bottom: 8px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
}

.region-selector-mobile a.active {
  border-color: var(--accent);
  color: var(--text);
}

/* Modals & Drawers */
.modal-overlay,
.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  z-index: 200;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}

.modal-overlay.active,
.drawer-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.95);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  width: 90%;
  max-width: 420px;
  z-index: 201;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}

.modal-overlay.active .modal-content {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%) scale(1);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--text);
  font-size: 20px;
  line-height: 1;
}

.modal-content h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 4px;
}

.modal-sub {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.region-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.region-card {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 16px;
  background: var(--bg);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  transition: all var(--transition);
}

.region-card:hover,
.region-card.active {
  border-color: var(--accent);
  background: rgba(220,152,20,0.05);
}

.region-card-flag {
  font-size: 24px;
}

.region-card-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
}

.region-card-detail {
  font-size: 13px;
  color: var(--text-muted);
}

/* Cart Drawer */
.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 400px;
  height: 100%;
  background: var(--surface);
  border-left: 1px solid var(--border);
  z-index: 202;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
}

.cart-drawer.open {
  transform: translateX(0);
}

.cart-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  border-bottom: 1px solid var(--border);
}

.cart-drawer-header h3 {
  font-size: 18px;
  font-weight: 700;
}

.cart-close {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--text);
  font-size: 22px;
}

.cart-drawer-body {
  flex: 1;
  padding: 20px;
  overflow-y: auto;
}

.cart-empty {
  text-align: center;
  color: var(--text-muted);
  padding: 40px 0;
}

.cart-item {
  display: flex;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}

.cart-item-img {
  width: 64px;
  height: 64px;
  background: var(--bg);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cart-item-info {
  flex: 1;
}

.cart-item-name {
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 4px;
}

.cart-item-price {
  color: var(--accent);
  font-weight: 700;
  font-size: 14px;
}

.cart-item-qty {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
}

.cart-item-qty button {
  width: 28px;
  height: 28px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 6px;
  color: var(--text);
  font-weight: 700;
  font-size: 14px;
}

.cart-item-qty span {
  font-size: 14px;
  font-weight: 600;
  min-width: 24px;
  text-align: center;
}

.cart-drawer-footer {
  padding: 20px;
  border-top: 1px solid var(--border);
  background: var(--bg);
}

.cart-total-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
  font-size: 14px;
}

.cart-total-row span:first-child {
  color: var(--text-secondary);
}

.cart-total-row span:last-child {
  font-weight: 700;
}

.checkout-btn {
  width: 100%;
  padding: 14px;
  background: var(--accent);
  color: #000;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 15px;
  margin-top: 8px;
  transition: background var(--transition);
}

.checkout-btn:hover {
  background: var(--accent-hover);
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  overflow: hidden;
  padding: 60px 0 80px;
}

.hero-grid {
  display: grid;
  gap: 40px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 6px 16px;
  margin-bottom: 20px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-secondary);
}

.hero-badge-dot {
  width: 8px;
  height: 8px;
  background: var(--accent-green);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.hero h1 {
  font-size: 36px;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -1.5px;
  margin-bottom: 16px;
}

.hero p {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 28px;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: #000;
  padding: 14px 24px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 15px;
  transition: background var(--transition), transform var(--transition);
}

.btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--surface);
  color: var(--text);
  border: 1px solid var(--border);
  padding: 14px 24px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 15px;
  transition: all var(--transition);
}

.btn-secondary:hover {
  border-color: var(--accent);
  color: var(--text);
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 16px;
}

.stars {
  display: flex;
}

.star {
  width: 28px;
  height: 28px;
  background: var(--surface);
  border: 2px solid var(--bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  margin-left: -6px;
  color: var(--accent);
}

.star:first-child {
  margin-left: 0;
}

.hero-trust span {
  font-size: 13px;
  color: var(--text-muted);
}

.hero-visual {
  position: relative;
}

.hero-visual-inner {
  background: linear-gradient(135deg, var(--surface) 0%, var(--bg-elevated) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1;
  position: relative;
  overflow: hidden;
}

.hero-glow-1 {
  position: absolute;
  top: -40px;
  right: -40px;
  width: 250px;
  height: 250px;
  background: var(--accent);
  opacity: 0.06;
  border-radius: 50%;
  filter: blur(80px);
}

.hero-glow-2 {
  position: absolute;
  bottom: -20px;
  left: -20px;
  width: 180px;
  height: 180px;
  background: var(--accent-green);
  opacity: 0.04;
  border-radius: 50%;
  filter: blur(60px);
}

.hero-pedal {
  position: relative;
  z-index: 2;
  text-align: center;
}

.hero-pedal-body {
  width: 260px;
  height: 160px;
  background: #222;
  border-radius: 16px;
  border: 1px solid #333;
  margin: 0 auto;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 16px;
  gap: 8px;
}

.hero-switch {
  width: 24px;
  height: 90px;
  background: var(--accent);
  border-radius: 6px;
  box-shadow: 0 0 20px rgba(220,152,20,0.25);
  position: relative;
}

.hero-switch::after {
  content: '';
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 8px;
  height: 8px;
  background: rgba(255,255,255,0.3);
  border-radius: 50%;
}

.hero-pedal-label {
  margin-top: 16px;
  font-size: 11px;
  color: var(--text-muted);
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* ============================================
   PRODUCTS
   ============================================ */
.section-products {
  padding: 80px 0;
  background: var(--bg-elevated);
  border-top: 1px solid var(--border);
}

.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-header h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 8px;
}

.section-header p {
  font-size: 15px;
  color: var(--text-muted);
}

.product-grid {
  display: grid;
  gap: 24px;
}

.product-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  position: relative;
  transition: transform 0.3s, border-color 0.3s;
}

.product-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
}

.product-card.c4:hover {
  border-color: var(--accent-green);
}

.product-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--accent);
  color: #000;
  font-size: 11px;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 6px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.product-img-wrap {
  background: var(--bg);
  border-radius: var(--radius);
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  border: 1px solid var(--border);
  overflow: hidden;
}

.product-switches {
  display: flex;
  gap: 8px;
  align-items: flex-end;
}

.product-switch {
  width: 20px;
  height: 80px;
  background: var(--accent);
  border-radius: 5px;
  box-shadow: 0 0 15px rgba(220,152,20,0.2);
  position: relative;
}

.product-switch::after {
  content: '';
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 6px;
  height: 6px;
  background: rgba(255,255,255,0.25);
  border-radius: 50%;
}

.product-card.c4 .product-switch {
  background: var(--accent-green);
  box-shadow: 0 0 15px rgba(59,181,74,0.2);
}

.product-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 6px;
}

.product-desc {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 16px;
}

.product-price-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 16px;
}

.product-price {
  font-size: 28px;
  font-weight: 800;
  color: var(--text);
}

.product-price-note {
  font-size: 13px;
  color: var(--text-muted);
}

.product-stock {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.product-stock.in {
  color: var(--accent-green);
}

.product-stock.out {
  color: var(--danger);
}

.btn-add-cart {
  width: 100%;
  padding: 14px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 15px;
  border: none;
  transition: all var(--transition);
}

.btn-add-cart.c6 {
  background: var(--accent);
  color: #000;
}

.btn-add-cart.c6:hover {
  background: var(--accent-hover);
}

.btn-add-cart.c4 {
  background: var(--accent-green);
  color: #000;
}

.btn-add-cart.c4:hover {
  background: var(--accent-green-hover);
}

.btn-add-cart:disabled {
  background: var(--surface-hover);
  color: var(--text-muted);
  cursor: not-allowed;
}

/* ============================================
   COMPARE
   ============================================ */
.section-compare {
  padding: 80px 0;
  background: var(--bg);
}

.compare-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.compare-table {
  width: 100%;
  min-width: 600px;
  border-collapse: separate;
  border-spacing: 0;
  background: var(--surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
}

.compare-table thead tr {
  background: var(--bg-elevated);
}

.compare-table th {
  padding: 16px 20px;
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-bottom: 1px solid var(--border);
}

.compare-table th:first-child {
  text-align: left;
  color: var(--text-secondary);
}

.compare-table th.c6 {
  color: var(--accent);
}

.compare-table th.c4 {
  color: var(--accent-green);
}

.compare-table td {
  padding: 14px 20px;
  font-size: 14px;
  border-bottom: 1px solid var(--border);
  text-align: center;
  color: var(--text-secondary);
}

.compare-table td:first-child {
  text-align: left;
  font-weight: 600;
  color: var(--text);
}

.compare-table tbody tr:nth-child(even) {
  background: rgba(255,255,255,0.02);
}

.compare-table tbody tr:last-child td {
  border-bottom: none;
}

.compare-table .price-c6 {
  color: var(--accent);
  font-weight: 800;
}

.compare-table .price-c4 {
  color: var(--accent-green);
  font-weight: 800;
}

/* ============================================
   SPECS
   ============================================ */
.section-specs {
  padding: 80px 0;
  background: var(--bg-elevated);
  border-top: 1px solid var(--border);
}

.specs-grid {
  display: grid;
  gap: 20px;
}

.spec-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
}

.spec-card h4 {
  font-size: 11px;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.spec-card ul {
  list-style: none;
}

.spec-card li {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 2.2;
  position: relative;
  padding-left: 16px;
}

.spec-card li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--text-muted);
}

/* ============================================
   COMPATIBILITY
   ============================================ */
.section-compat {
  padding: 60px 0;
  background: var(--bg);
  border-top: 1px solid var(--border);
  text-align: center;
}

.compat-label {
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
}

.compat-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.compat-tag {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
}

/* ============================================
   CTA
   ============================================ */
.section-cta {
  padding: 100px 20px;
  background: linear-gradient(180deg, var(--bg-elevated) 0%, var(--surface) 100%);
  text-align: center;
}

.section-cta h2 {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 12px;
  letter-spacing: -1px;
}

.section-cta p {
  font-size: 16px;
  color: var(--text-secondary);
  margin-bottom: 28px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.section-cta .btn-primary {
  padding: 16px 32px;
  font-size: 16px;
}

.cta-note {
  margin-top: 20px;
  font-size: 13px;
  color: var(--text-dim);
}

.cta-note a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: #000;
  border-top: 1px solid var(--border);
  padding: 60px 0 0;
}

.footer-grid {
  display: grid;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand {
  max-width: 320px;
}

.logo-footer {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 16px;
  margin-bottom: 12px;
}

.footer-brand p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 16px;
}

.footer-social {
  display: flex;
  gap: 16px;
}

.footer-social a {
  font-size: 13px;
  color: var(--text-muted);
  transition: color var(--transition);
}

.footer-social a:hover {
  color: var(--accent);
}

.footer-col h4 {
  font-size: 12px;
  font-weight: 700;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col a {
  font-size: 14px;
  color: var(--text-muted);
  transition: color var(--transition);
}

.footer-col a:hover {
  color: var(--text);
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 24px 0;
}

.footer-bottom .container {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  text-align: center;
}

.footer-bottom p {
  font-size: 13px;
  color: var(--text-dim);
}

.footer-legal {
  display: flex;
  gap: 20px;
}

.footer-legal a {
  font-size: 13px;
  color: var(--text-dim);
}

/* ============================================
   PRODUCT PAGE
   ============================================ */

/* Breadcrumb */
.breadcrumb {
  padding: 16px 0;
  font-size: 13px;
  color: var(--text-muted);
}

.breadcrumb a {
  color: var(--text-muted);
  transition: color var(--transition);
}

.breadcrumb a:hover {
  color: var(--text);
}

.breadcrumb span {
  margin: 0 8px;
  color: var(--text-dim);
}

/* Product Hero */
.product-hero {
  padding: 20px 0 60px;
}

.product-hero-grid {
  display: grid;
  gap: 40px;
}

/* Gallery */
.product-gallery-main {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.product-gallery-glow {
  position: absolute;
  top: -40px;
  right: -40px;
  width: 250px;
  height: 250px;
  background: var(--accent);
  opacity: 0.06;
  border-radius: 50%;
  filter: blur(80px);
}

.product-gallery-thumbs {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.gallery-thumb {
  flex: 1;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition);
  opacity: 0.6;
}

.gallery-thumb.active,
.gallery-thumb:hover {
  border-color: var(--accent);
  opacity: 1;
}

.gallery-thumb img {
  max-height: 60%;
  max-width: 60%;
  object-fit: contain;
}

/* Batch Badge (top-left on gallery) */
.batch-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--accent);
  color: #000;
  font-size: 11px;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 6px;
  text-transform: uppercase;
  z-index: 3;
}

/* Shipping Date Badge (bottom-right on gallery) */
.shipping-badge {
  position: absolute;
  bottom: 16px;
  right: 16px;
  background: rgba(0,0,0,0.7);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 6px;
  z-index: 3;
  backdrop-filter: blur(4px);
}

/* Product Info */
.product-info {
  display: flex;
  flex-direction: column;
}

.product-stock-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 4px 12px;
  margin-bottom: 16px;
  font-size: 12px;
  font-weight: 500;
  color: var(--text-secondary);
  width: fit-content;
}

.product-stock-badge.hype {
  background: rgba(255,193,7,0.12);
  color: var(--accent);
  border: 1px solid rgba(255,193,7,0.3);
}

.product-stock-badge .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
}

.product-stock-badge .dot.in {
  background: var(--accent-green);
}

.product-stock-badge .dot.out {
  background: var(--danger);
}

.product-stock-badge .dot.pulse {
  background: #ffc107;
  animation: pulse 2s infinite;
}

.product-info h1 {
  font-size: 32px;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 12px;
}

.product-short-desc {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 24px;
}

.product-price-block {
  margin-bottom: 8px;
}

.product-price-block.muted {
  opacity: 0.6;
}

.product-price-main {
  font-size: 42px;
  font-weight: 800;
  color: var(--text);
}

.product-price-note {
  font-size: 14px;
  color: var(--text-muted);
}

.product-shipping-note {
  font-size: 13px;
  color: var(--text-dim);
  margin-bottom: 24px;
}

/* Hype / Urgency Block */
.hype-urgency {
  margin: 12px 0 16px;
  padding: 10px 14px;
  background: var(--bg-elevated);
  border-radius: 8px;
  border-left: 3px solid var(--accent);
}

.hype-urgency p {
  margin: 0;
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.5;
}

.hype-urgency strong {
  color: var(--text);
}

/* Waitlist Form */
.waitlist-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.waitlist-input {
  padding: 14px 16px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--bg-elevated);
  color: var(--text);
  font-size: 15px;
  outline: none;
  transition: border-color 0.2s;
  font-family: inherit;
}

.waitlist-input:focus {
  border-color: var(--accent);
}

.waitlist-input::placeholder {
  color: var(--text-dim);
}

.waitlist-success {
  display: none;
  margin: 0;
  padding: 14px;
  background: rgba(59,181,74,0.1);
  color: #3bb54a;
  border-radius: 8px;
  font-size: 14px;
  text-align: center;
}

/* Product Actions */
.product-actions {
  display: flex;
  gap: 12px;
  margin-bottom: 32px;
}

.product-actions.stacked {
  flex-direction: column;
  align-items: stretch;
  gap: 12px;
}

.product-actions .btn-primary {
  flex: 1;
  justify-content: center;
}
.btn-wishlist-text {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: none;
  color: var(--text-secondary);
  font-size: 14px;
  padding: 8px 0;
  cursor: pointer;
  transition: color var(--transition);
  align-self: flex-start;
}
.btn-wishlist-text:hover {
  color: var(--text);
}

.btn-wishlist {
  width: 56px;
  height: 56px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  transition: all var(--transition);
  flex-shrink: 0;
}

.btn-wishlist:hover {
  border-color: var(--danger);
  color: var(--danger);
}

/* Trust Box */
.product-trust {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
  margin-bottom: 24px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.trust-item:last-child {
  margin-bottom: 0;
}

.trust-item svg {
  flex-shrink: 0;
}

.trust-item strong {
  font-size: 13px;
  color: var(--text);
}

.trust-item span {
  font-size: 13px;
  color: var(--text-secondary);
}

/* Key Features List */
.product-features {
  border-top: 1px solid var(--border);
  padding-top: 20px;
}

.product-features h4 {
  font-size: 12px;
  font-weight: 700;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.features-grid li {
  font-size: 13px;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 8px;
}

.features-grid li .arrow {
  color: var(--accent);
  font-weight: 700;
}

/* Product Tabs — PILL STYLE (unificado, sin duplicación) */
.product-tabs-nav {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 12px;
}

.tab-btn {
  padding: 10px 18px;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all .2s;
  white-space: nowrap;
}

.tab-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.tab-btn.active {
  background: var(--accent);
  color: #000;
  border-color: var(--accent);
}

.product-tab-content {
  display: none;
  animation: fadeIn .25s ease;
}

.product-tab-content.active {
  display: block;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Specs Table (product page) */
.specs-table {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.specs-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid var(--border);
}

.specs-row:nth-child(even) {
  background: rgba(255,255,255,0.02);
}

.specs-row:last-child {
  border-bottom: none;
}

.specs-label {
  padding: 14px 20px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
  border-right: 1px solid var(--border);
}

.specs-value {
  padding: 14px 20px;
  font-size: 14px;
  color: var(--text);
  font-weight: 500;
}

/* In the Box */
.box-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.box-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--text-secondary);
}

.box-list li::before {
  content: '✓';
  color: var(--accent-green);
  font-weight: 700;
  font-size: 14px;
}

/* Upsell */
.product-upsell {
  padding: 60px 0;
  background: var(--bg);
  border-top: 1px solid var(--border);
}

.upsell-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  display: flex;
  gap: 16px;
  align-items: center;
  max-width: 400px;
  margin: 0 auto;
  transition: all var(--transition);
}

.upsell-card:hover {
  border-color: var(--accent);
}

.upsell-img {
  width: 64px;
  height: 64px;
  background: var(--bg);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  flex-shrink: 0;
}

.upsell-info h4 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 4px;
}

.upsell-info p {
  font-size: 13px;
  color: var(--text-muted);
  margin: 0 0 8px 0;
}

.upsell-price {
  font-size: 16px;
  font-weight: 700;
}

.upsell-link {
  font-size: 13px;
  color: var(--accent);
  font-weight: 600;
  margin-left: 8px;
}

/* Sticky Mobile Bar */
.sticky-mobile-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(10,10,10,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid var(--border);
  padding: 12px 20px;
  display: flex;
  gap: 12px;
  align-items: center;
  z-index: 50;
}

.sticky-mobile-bar .price {
  font-size: 18px;
  font-weight: 800;
}

.sticky-mobile-bar .price-muted {
  font-size: 14px;
  opacity: 0.7;
}

.sticky-mobile-bar .stock {
  font-size: 11px;
  color: var(--text-muted);
}

.sticky-mobile-bar .stock.hype {
  color: #ffc107;
}

.sticky-mobile-bar .btn-primary {
  flex: 1;
  padding: 12px;
  font-size: 15px;
}

.mobile-bar-spacer {
  height: 76px;
}

/* ============================================
   ACCORDION (contact / faq pages)
   ============================================ */
.accordion-item .accordion-body {
  display: none;
}
.accordion-item.open .accordion-body {
  display: block;
}
.accordion-icon {
  transition: transform .25s;
}
.accordion-item.open .accordion-icon {
  transform: rotate(180deg);
}

/* ============================================
   PRODUCT CARD LINK WRAPPER
   ============================================ */
.product-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
}
.product-card-link:hover h3 {
  color: var(--accent);
}
.product-card.c4 .product-card-link:hover h3 {
  color: var(--accent-green);
}

/* ============================================
   RESPONSIVE — Tablet
   ============================================ */
@media (min-width: 768px) {
  .hero h1 {
    font-size: 48px;
  }

  .hero p {
    font-size: 18px;
  }

  .product-grid {
    grid-template-columns: 1fr 1fr;
  }

  .specs-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }

  .section-cta h2 {
    font-size: 40px;
  }

  .product-info h1 {
    font-size: 40px;
  }

  .features-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* ============================================
   RESPONSIVE — Desktop
   ============================================ */
@media (min-width: 1024px) {
  .main-nav {
    display: flex;
  }

  .mobile-menu-toggle {
    display: none;
  }

  .region-badge {
    display: flex;
  }

  .hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: 60px;
  }

  .hero {
    padding: 100px 0 120px;
  }

  .hero h1 {
    font-size: 56px;
  }

  .hero-pedal-body {
    width: 320px;
    height: 200px;
  }

  .hero-switch {
    width: 28px;
    height: 110px;
  }

  .section-header h2 {
    font-size: 36px;
  }

  .specs-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .footer-bottom .container {
    flex-direction: row;
    justify-content: space-between;
  }

  .product-hero-grid {
    grid-template-columns: 1.1fr 1fr;
    gap: 60px;
  }

  .product-info h1 {
    font-size: 48px;
  }

  .sticky-mobile-bar,
  .mobile-bar-spacer {
    display: none !important;
  }
}

/* ============================================
   UTILITIES
   ============================================ */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ==========================================================================
   TOKENS EXTRA — páginas about / contact / downloads / manuales
   (se añaden al :root original; no pisan nada)
   ========================================================================== */
:root{
  --accent-soft:rgba(220,152,20,.10);
  --green:var(--accent-green);
  --red:var(--danger);
  --muted:var(--text-dim);
}

/* Botones extra usados en páginas nuevas (el .btn-primary es el del CSS original) */
.btn-outline{display:inline-block;padding:12px 24px;background:transparent;border:1px solid var(--accent);color:var(--accent);border-radius:var(--radius);font-weight:600;font-size:14px;transition:all .2s}
.btn-outline:hover{background:var(--accent-soft)}
.btn-sm{padding:8px 16px;font-size:13px}

/* ==========================================================================
   PÁGINA: ABOUT
   ========================================================================== */
.about-hero{text-align:center;padding:80px 20px 40px;background:linear-gradient(180deg,#0a0a0a,#111);position:relative;overflow:hidden}
.about-hero-glow,.contact-hero-glow,.downloads-hero-glow{position:absolute;top:-100px;left:50%;transform:translateX(-50%);width:400px;height:400px;background:radial-gradient(circle,rgba(220,152,20,.08),transparent 70%);border-radius:50%;pointer-events:none}
.about-hero h1,.contact-hero h1,.downloads-hero h1{font-size:clamp(32px,5vw,52px);font-weight:800;margin:0 0 16px;line-height:1.05;color:#eee}
.about-hero h1 span,.contact-hero h1 span,.downloads-hero h1 span{color:var(--accent)}
.about-hero p,.contact-hero p,.downloads-hero p{color:var(--text-muted);font-size:clamp(15px,2vw,18px);max-width:600px;margin:0 auto;line-height:1.6}

.about-section{padding:64px 20px}
.about-grid{max-width:1000px;margin:0 auto;display:grid;grid-template-columns:1fr 1fr;gap:48px;align-items:center}
.about-grid.reverse{direction:rtl}
.about-grid.reverse>*{direction:ltr}
.about-media img{width:100%;border-radius:12px;border:1px solid var(--border);display:block}
.about-media-caption{font-size:12px;color:#555;margin-top:8px;font-style:italic}
.about-text h2{font-size:clamp(22px,3vw,28px);font-weight:700;margin:0 0 16px;color:#eee;line-height:1.2}
.about-text p{color:var(--text-muted);line-height:1.7;margin:0 0 14px;font-size:15px}
.about-text strong{color:#ddd}

.stats-row{display:grid;grid-template-columns:repeat(4,1fr);gap:20px;max-width:900px;margin:0 auto;padding:0 20px}
.stat-card{background:var(--bg-elevated);border:1px solid var(--border);border-radius:12px;padding:24px;text-align:center}
.stat-number{font-size:32px;font-weight:800;color:var(--accent);display:block;line-height:1}
.stat-label{font-size:13px;color:var(--text-muted);margin-top:6px}

@media(max-width:768px){
  .about-grid{grid-template-columns:1fr;gap:32px}
  .stats-row{grid-template-columns:repeat(2,1fr)}
}

/* ==========================================================================
   PÁGINA: CONTACT
   ========================================================================== */
.contact-page{--contact-bg:#0a0a0a;--contact-surface:#111;--contact-border:#222;--contact-muted:#888;--contact-accent:#dc9814}
.contact-hero{text-align:center;padding:72px 20px 36px;background:linear-gradient(180deg,#0a0a0a,#111);position:relative;overflow:hidden}
.contact-hero-glow{top:-80px;width:340px;height:340px;background:radial-gradient(circle,rgba(220,152,20,.10),transparent 70%)}
.contact-badge{display:inline-block;background:rgba(220,152,20,.12);color:var(--accent);font-size:12px;font-weight:700;padding:6px 14px;border-radius:99px;margin-bottom:16px;letter-spacing:.5px;text-transform:uppercase}
.contact-trust{display:flex;justify-content:center;gap:24px;margin-top:24px;flex-wrap:wrap;font-size:13px;color:#555}
.contact-trust span{display:flex;align-items:center;gap:6px}
.contact-dot{color:var(--green);font-size:14px}

.contact-grid{max-width:1100px;margin:0 auto;padding:24px 20px 64px;display:grid;grid-template-columns:1fr 1.15fr;gap:28px}
@media(max-width:860px){.contact-grid{grid-template-columns:1fr;padding:20px 16px 48px}}

.info-card{background:var(--surface);border:1px solid var(--border);border-radius:var(--radius-lg);padding:20px;display:flex;align-items:flex-start;gap:14px;transition:border-color .2s}
.info-card:hover{border-color:#333}
.info-icon{width:42px;height:42px;min-width:42px;background:var(--accent-soft);border-radius:var(--radius);display:flex;align-items:center;justify-content:center;color:var(--accent);font-size:18px}
.info-label{font-size:11px;color:var(--muted);font-weight:700;text-transform:uppercase;letter-spacing:.6px;margin-bottom:4px}
.info-value{color:#eee;text-decoration:none;font-size:15px;font-weight:600;line-height:1.4}
.info-value:hover{color:var(--accent)}
.info-meta{font-size:13px;color:#555;margin-top:4px;line-height:1.5}
.social-pills{display:flex;gap:10px;flex-wrap:wrap;margin-top:6px}
.social-pills a{color:#aaa;text-decoration:none;font-size:13px;padding:7px 13px;background:#1a1a1a;border-radius:8px;border:1px solid #222;transition:all .2s}
.social-pills a:hover{border-color:var(--accent);color:var(--accent);background:var(--accent-soft)}

.faq-wrap{margin-top:10px}
.faq-title{font-size:16px;font-weight:700;margin:0 0 14px;color:#eee}
.accordion-item{background:var(--surface);border:1px solid var(--border);border-radius:12px;overflow:hidden;margin-bottom:10px}
.accordion-btn{width:100%;text-align:left;padding:16px 18px;background:none;border:none;color:#eee;font-size:14px;font-weight:600;display:flex;justify-content:space-between;align-items:center;cursor:pointer;gap:12px}
.accordion-btn:focus{outline:2px solid var(--accent);outline-offset:-2px;border-radius:12px}
.accordion-icon{color:var(--accent);font-size:12px;transition:transform .25s;flex-shrink:0}
.accordion-item.open .accordion-icon{transform:rotate(180deg)}
.accordion-body{display:none;padding:0 18px 16px;color:#999;font-size:13.5px;line-height:1.65}
.accordion-item.open .accordion-body{display:block}
.accordion-body a{color:var(--accent);text-decoration:none}
.accordion-body a:hover{text-decoration:underline}

.form-panel{background:var(--surface);border:1px solid var(--border);border-radius:16px;padding:28px;height:fit-content;position:sticky;top:24px}
@media(max-width:860px){.form-panel{position:static}}
.form-panel h2{font-size:20px;font-weight:700;margin:0 0 6px;color:#eee}
.form-panel>p{color:var(--muted);font-size:13px;margin:0 0 22px}
.form-row{display:grid;grid-template-columns:1fr 1fr;gap:12px}
@media(max-width:480px){.form-row{grid-template-columns:1fr}}
.form-group{display:flex;flex-direction:column;gap:6px;margin-bottom:4px}
.form-group label{font-size:11px;color:#777;font-weight:700;text-transform:uppercase;letter-spacing:.4px}
.form-group input,.form-group select,.form-group textarea{width:100%;padding:13px 14px;background:#0a0a0a;border:1px solid #222;border-radius:var(--radius);color:#eee;font-size:16px;outline:none;transition:border-color .2s,box-shadow .2s;font-family:Inter,system-ui,sans-serif;-webkit-appearance:none;appearance:none}
.form-group input:focus,.form-group select:focus,.form-group textarea:focus{border-color:var(--accent);box-shadow:0 0 0 3px rgba(220,152,20,.08)}
.form-group textarea{resize:vertical;min-height:120px;line-height:1.5}
.form-group select{background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23666'%3E%3Cpath d='M6 9L1 4h10z'/%3E%3C/svg%3E");background-repeat:no-repeat;background-position:right 14px center;padding-right:36px}

.btn-submit{width:100%;padding:15px;background:var(--accent);color:#000;border:none;border-radius:var(--radius);font-size:15px;font-weight:700;cursor:pointer;transition:filter .2s,transform .1s;margin-top:6px}
.btn-submit:hover{filter:brightness(1.08)}
.btn-submit:active{transform:scale(.99)}
.btn-submit:disabled{opacity:.6;cursor:not-allowed}
.form-note{text-align:center;font-size:12px;color:#444;margin:10px 0 0}

.alert{padding:14px 16px;border-radius:var(--radius);font-size:14px;margin-bottom:18px;font-weight:500}
.alert-error{background:rgba(231,76,60,.10);border:1px solid rgba(231,76,60,.25);color:var(--red)}
.alert-success{background:rgba(59,181,74,.10);border:1px solid rgba(59,181,74,.25);color:var(--green)}

.contact-cta{text-align:center;padding:48px 20px;border-top:1px solid #1a1a1a}
.contact-cta h3{font-size:clamp(18px,3vw,22px);font-weight:700;margin:0 0 8px;color:#eee}
.contact-cta p{color:var(--muted);font-size:14px;margin:0 0 18px}
.btn-cta-outline{display:inline-block;padding:12px 24px;background:transparent;border:1px solid var(--accent);color:var(--accent);text-decoration:none;border-radius:var(--radius);font-weight:600;font-size:14px;transition:all .2s}
.btn-cta-outline:hover{background:var(--accent-soft)}

/* ==========================================================================
   PÁGINA: DOWNLOADS
   ========================================================================== */
.downloads-hero{text-align:center;padding:72px 20px 36px;background:linear-gradient(180deg,#0a0a0a,#111);position:relative;overflow:hidden}

.downloads-tabs{display:flex;justify-content:center;gap:10px;flex-wrap:wrap;max-width:1100px;margin:0 auto;padding:8px 20px 32px}
.downloads-tab{padding:10px 20px;border:1px solid var(--border);border-radius:99px;font-size:13.5px;font-weight:600;color:var(--text-muted);cursor:pointer;background:var(--surface);transition:all .2s;user-select:none}
.downloads-tab:hover{border-color:var(--accent);color:var(--accent)}
.downloads-tab.active{background:var(--accent);border-color:var(--accent);color:#000}

.downloads-grid{max-width:1100px;margin:0 auto;padding:0 20px 64px;display:grid;grid-template-columns:repeat(auto-fill,minmax(320px,1fr));gap:20px}
.download-card{background:var(--surface);border:1px solid var(--border);border-radius:16px;padding:24px;display:flex;flex-direction:column;gap:14px;transition:border-color .2s,transform .2s}
.download-card:hover{border-color:var(--accent);transform:translateY(-2px)}
.download-card.hidden{display:none}
.download-card-top{display:flex;align-items:center;gap:14px}
.download-card-icon{width:46px;height:46px;min-width:46px;border-radius:12px;background:var(--accent-soft);display:flex;align-items:center;justify-content:center;color:var(--accent);font-size:20px}
.download-card-title{font-size:16px;font-weight:700;color:#eee;line-height:1.25}
.download-card-sub{font-size:12px;color:var(--text-muted);margin-top:2px}
.download-badge{display:inline-block;font-size:10.5px;font-weight:700;text-transform:uppercase;letter-spacing:.5px;padding:3px 9px;border-radius:99px;margin-left:auto}
.download-badge.latest{background:rgba(59,181,74,.12);color:var(--green)}
.download-badge.update{background:rgba(220,152,20,.12);color:var(--accent)}
.download-badge.legacy{background:#1a1a1a;color:#555}
.download-card-desc{font-size:13.5px;color:var(--text-muted);line-height:1.65;flex:1}
.download-meta{display:flex;gap:14px;flex-wrap:wrap;font-size:12px;color:var(--muted)}
.download-meta span{display:flex;align-items:center;gap:5px}
.download-links{display:flex;flex-direction:column;gap:8px;border-top:1px solid var(--border);padding-top:14px}
.download-link{display:flex;align-items:center;gap:10px;padding:11px 14px;background:#0a0a0a;border:1px solid var(--border);border-radius:var(--radius);font-size:13.5px;color:var(--text);font-weight:500;transition:all .2s}
.download-link:hover{border-color:var(--accent);background:var(--accent-soft)}
.download-link-icon{color:var(--accent);font-size:14px}
.download-link-label{flex:1}
.download-link-size{color:var(--muted);font-size:12px}
.download-link-arrow{color:var(--muted);transition:transform .2s,color .2s}
.download-link:hover .download-link-arrow{transform:translateX(3px);color:var(--accent)}

.downloads-note{max-width:1100px;margin:0 auto 72px;padding:0 20px}
.downloads-note-inner{background:var(--surface);border:1px solid var(--border);border-radius:var(--radius-lg);padding:20px 24px;display:flex;gap:14px;align-items:flex-start}
.downloads-note-icon{color:var(--accent);font-size:18px;line-height:1.5}
.downloads-note-inner p{font-size:13px;color:var(--text-muted);line-height:1.7}
.downloads-note-inner strong{color:#ddd}

@media(max-width:560px){
  .downloads-grid{grid-template-columns:1fr}
  .download-card-top{flex-wrap:wrap}
  .download-badge{margin-left:0}
}

/* ==========================================================================
   PÁGINA: MANUAL (interactivo)
   ========================================================================== */
.manual-hero{text-align:center;padding:64px 20px 32px;background:linear-gradient(180deg,#0a0a0a,#111);position:relative;overflow:hidden}
.manual-hero h1{font-size:clamp(28px,5vw,44px);font-weight:800;margin:0 0 10px;line-height:1.08;color:#eee}
.manual-hero h1 span{color:var(--accent)}
.manual-hero p{color:var(--text-muted);font-size:clamp(14px,2vw,16px);max-width:640px;margin:0 auto;line-height:1.6}
.manual-updated{display:inline-block;margin-top:16px;font-size:12px;color:var(--muted);border:1px solid var(--border);padding:5px 12px;border-radius:99px}

.doc-layout{max-width:1200px;margin:0 auto;padding:24px 20px 72px;display:grid;grid-template-columns:250px 1fr;gap:36px;align-items:start}
@media(max-width:900px){.doc-layout{grid-template-columns:1fr}}

.doc-nav{position:sticky;top:84px;background:var(--surface);border:1px solid var(--border);border-radius:var(--radius-lg);padding:14px;max-height:calc(100vh - 110px);overflow-y:auto}
@media(max-width:900px){.doc-nav{position:static;max-height:none}}
.doc-nav-item a{display:block;padding:9px 12px;font-size:13.5px;font-weight:600;color:var(--text-muted);border-radius:8px;transition:all .15s;border-left:3px solid transparent}
.doc-nav-item a:hover{color:var(--text);background:#1a1a1a}
.doc-nav-item.active>a{color:var(--accent);border-left-color:var(--accent);background:var(--accent-soft)}
.doc-nav-subitems{margin-left:14px;border-left:1px solid var(--border);padding-left:6px;display:none}
.doc-nav-item.active .doc-nav-subitems{display:block}
.doc-nav-subitem a{font-size:12.5px;font-weight:500;padding:7px 12px}
.doc-nav-subitem.active>a{color:var(--accent)}

.doc-content{min-width:0}
.doc-section{background:var(--surface);border:1px solid var(--border);border-radius:16px;padding:32px;margin-bottom:24px;scroll-margin-top:84px}
@media(max-width:600px){.doc-section{padding:22px 18px}}
.doc-section-title{font-size:clamp(20px,3vw,26px);font-weight:800;margin:0 0 18px;color:#eee;line-height:1.2}
.doc-section-title::before{content:"";display:inline-block;width:8px;height:22px;background:var(--accent);border-radius:3px;margin-right:10px;vertical-align:-3px}
.doc-subsection{font-size:17px;font-weight:700;margin:28px 0 12px;color:#eee;scroll-margin-top:84px}
.doc-subsection-anchor{scroll-margin-top:84px}
.doc-section p{color:var(--text-muted);font-size:14.5px;line-height:1.75;margin:0 0 14px}
.doc-section p strong,.doc-section li strong{color:#ddd}
.doc-section ul,.doc-section ol{margin:0 0 16px 20px}
.doc-section li{color:var(--text-muted);font-size:14.5px;line-height:1.75;margin-bottom:6px}
.doc-section a{color:var(--accent)}
.doc-section h4{font-size:14.5px;font-weight:700;color:#ddd;margin:18px 0 8px}
.doc-section pre{background:#0a0a0a;border:1px solid var(--border);border-radius:8px;padding:12px 16px;font-size:13px;color:var(--accent);overflow-x:auto;margin:0 0 16px}

.doc-table{width:100%;border-collapse:collapse;margin:0 0 20px;font-size:13.5px}
.doc-table td{padding:11px 14px;border:1px solid var(--border);color:var(--text-muted);vertical-align:top;line-height:1.6}
.doc-table td:first-child{font-weight:700;color:#ddd;background:#151515;width:34%}
.doc-table tr:first-child td{background:var(--accent-soft);color:var(--accent);font-weight:700;text-transform:uppercase;font-size:12px;letter-spacing:.4px}

.doc-img{display:block;max-width:100%;border-radius:10px;border:1px solid var(--border);margin:12px 0 18px;background:#0a0a0a}
.doc-img.small{max-width:280px}
.doc-img-caption{font-size:12px;color:var(--muted);font-style:italic;margin:-12px 0 18px}
.doc-img-missing{display:flex;align-items:center;justify-content:center;min-height:80px;color:#444;font-size:12px;background:#0a0a0a}

/* Accordion de escenas (reusa .accordion-item del FAQ de contacto) */
.scene-table-wrap{overflow-x:auto}
.scene-table{width:100%;border-collapse:collapse;font-size:12.5px;min-width:560px}
.scene-table th{background:var(--accent-soft);color:var(--accent);padding:8px 10px;font-size:11px;text-transform:uppercase;letter-spacing:.4px;border:1px solid var(--border)}
.scene-table td{padding:9px 10px;border:1px solid var(--border);color:var(--text-muted);text-align:center}
.scene-table td:first-child{font-weight:800;color:var(--accent);background:#151515}
.scene-dash{color:#444}
.scene-intro{display:flex;align-items:center;gap:10px;flex:1;min-width:0}
.scene-number{display:inline-block;background:var(--accent);color:#000;border-radius:20px;padding:3px 11px;font-size:11.5px;font-weight:800;min-width:38px;text-align:center;flex-shrink:0}
.scene-name{font-weight:700;color:#eee;font-size:14px}
.scene-desc{font-size:12.5px;color:var(--muted)}

.doc-note{background:var(--accent-soft);border:1px solid rgba(220,152,20,.25);border-radius:12px;padding:14px 18px;font-size:13.5px;color:#ccc;margin:16px 0}
.doc-note strong{color:var(--accent)}
.legal-note{background:#151515;border-left:4px solid var(--accent);border-radius:8px;padding:14px 18px;margin:20px 0;font-size:12.5px;color:var(--muted);line-height:1.7}
.legal-note strong{color:#ccc}

/* Video embebido (manuales C6/C4) */
.doc-video{position:relative;aspect-ratio:16/9;border-radius:12px;overflow:hidden;border:1px solid var(--border);margin:0 0 18px;background:#000}
.doc-video iframe{position:absolute;inset:0;width:100%;height:100%;border:0}
.table-wrap{overflow-x:auto;margin:0 0 20px}

/* ==========================================================================
   LIGHT THEME — activo con <html data-theme="light">
   ========================================================================== */
[data-theme="light"]{
  --bg:#f6f6f4;
  --bg-elevated:#efefec;
  --surface:#ffffff;
  --surface-hover:#e9e9e6;
  --border:#dcdcd8;
  --text:#161616;
  --text-secondary:#4a4a48;
  --text-muted:#6e6e6b;
  --text-dim:#9a9a96;
  --accent:#c8860d;
  --accent-hover:#a96f0a;
  --accent-green:#2f9e3f;
  --accent-green-hover:#27873a;
  --danger:#c62828;
  --shadow:0 4px 24px rgba(0,0,0,.08);
  --shadow-lg:0 25px 50px rgba(0,0,0,.12);
}

/* Botón del toggle */
.theme-toggle{display:flex;align-items:center;justify-content:center;width:36px;height:36px;border-radius:8px;background:var(--surface);border:1px solid var(--border);cursor:pointer;font-size:15px;line-height:1;transition:border-color .2s;color:var(--text)}
.theme-toggle:hover{border-color:var(--accent)}

/* --- Remap automático de colores hardcodeados oscuros --- */
[data-theme="light"] .site-header{position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);}
[data-theme="light"] .modal-overlay,[data-theme="light"] .drawer-overlay{position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  z-index: 200;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;}
[data-theme="light"] .hero-pedal-body{width: 260px;
  height: 160px;
  background: #d9d9d6;
  border-radius: 16px;
  border: 1px solid #c6c6c3;
  margin: 0 auto;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 16px;
  gap: 8px;}
[data-theme="light"] .hero-switch::after{content: '';
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 8px;
  height: 8px;
  background: rgba(0,0,0,0.15);
  border-radius: 50%;}
[data-theme="light"] .product-switch::after{content: '';
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 6px;
  height: 6px;
  background: rgba(0,0,0,0.15);
  border-radius: 50%;}
[data-theme="light"] .compare-table tbody tr:nth-child(even){background: rgba(0,0,0,0.03);}
[data-theme="light"] .shipping-badge{position: absolute;
  bottom: 16px;
  right: 16px;
  background: rgba(0,0,0,0.45);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 6px;
  z-index: 3;
  backdrop-filter: blur(4px);}
[data-theme="light"] .specs-row:nth-child(even){background: rgba(0,0,0,0.03);}
[data-theme="light"] .sticky-mobile-bar{position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid var(--border);
  padding: 12px 20px;
  display: flex;
  gap: 12px;
  align-items: center;
  z-index: 50;}
[data-theme="light"] .about-hero{text-align:center;padding:80px 20px 40px;background:linear-gradient(180deg,#f3f3f1,#eaeae8);position:relative;overflow:hidden}
[data-theme="light"] .about-hero h1,[data-theme="light"] .contact-hero h1,[data-theme="light"] .downloads-hero h1{font-size:clamp(32px,5vw,52px);font-weight:800;margin:0 0 16px;line-height:1.05;color:#1d1d1b}
[data-theme="light"] .about-media-caption{font-size:12px;color:#8b8b89;margin-top:8px;font-style:italic}
[data-theme="light"] .about-text h2{font-size:clamp(22px,3vw,28px);font-weight:700;margin:0 0 16px;color:#1d1d1b;line-height:1.2}
[data-theme="light"] .about-text strong{color:#2a2a28}
[data-theme="light"] .contact-page{--contact-bg:#f3f3f1;--contact-surface:#eaeae8;--contact-border:#d9d9d6;--contact-muted:#5e5e5c;--contact-accent:#dc9814}
[data-theme="light"] .contact-hero{text-align:center;padding:72px 20px 36px;background:linear-gradient(180deg,#f3f3f1,#eaeae8);position:relative;overflow:hidden}
[data-theme="light"] .contact-trust{display:flex;justify-content:center;gap:24px;margin-top:24px;flex-wrap:wrap;font-size:13px;color:#8b8b89}
[data-theme="light"] .info-card:hover{border-color:#c6c6c3}
[data-theme="light"] .info-value{color:#1d1d1b;text-decoration:none;font-size:15px;font-weight:600;line-height:1.4}
[data-theme="light"] .info-meta{font-size:13px;color:#8b8b89;margin-top:4px;line-height:1.5}
[data-theme="light"] .social-pills a{color:#40403e;text-decoration:none;font-size:13px;padding:7px 13px;background:#e7e7e5;border-radius:8px;border:1px solid #d9d9d6;transition:all .2s}
[data-theme="light"] .faq-title{font-size:16px;font-weight:700;margin:0 0 14px;color:#1d1d1b}
[data-theme="light"] .accordion-btn{width:100%;text-align:left;padding:16px 18px;background:none;border:none;color:#1d1d1b;font-size:14px;font-weight:600;display:flex;justify-content:space-between;align-items:center;cursor:pointer;gap:12px}
[data-theme="light"] .accordion-body{display:none;padding:0 18px 16px;color:#4f4f4d;font-size:13.5px;line-height:1.65}
[data-theme="light"] .form-panel h2{font-size:20px;font-weight:700;margin:0 0 6px;color:#1d1d1b}
[data-theme="light"] .form-group label{font-size:11px;color:#6d6d6b;font-weight:700;text-transform:uppercase;letter-spacing:.4px}
[data-theme="light"] .form-group input,[data-theme="light"] .form-group select,[data-theme="light"] .form-group textarea{width:100%;padding:13px 14px;background:#f3f3f1;border:1px solid #d9d9d6;border-radius:var(--radius);color:#1d1d1b;font-size:16px;outline:none;transition:border-color .2s,box-shadow .2s;font-family:Inter,system-ui,sans-serif;-webkit-appearance:none;appearance:none}
[data-theme="light"] .form-note{text-align:center;font-size:12px;color:#9a9a98;margin:10px 0 0}
[data-theme="light"] .contact-cta{text-align:center;padding:48px 20px;border-top:1px solid #e7e7e5}
[data-theme="light"] .contact-cta h3{font-size:clamp(18px,3vw,22px);font-weight:700;margin:0 0 8px;color:#1d1d1b}
[data-theme="light"] .downloads-hero{text-align:center;padding:72px 20px 36px;background:linear-gradient(180deg,#f3f3f1,#eaeae8);position:relative;overflow:hidden}
[data-theme="light"] .download-card-title{font-size:16px;font-weight:700;color:#1d1d1b;line-height:1.25}
[data-theme="light"] .download-badge.legacy{background:#e7e7e5;color:#8b8b89}
[data-theme="light"] .download-link{display:flex;align-items:center;gap:10px;padding:11px 14px;background:#f3f3f1;border:1px solid var(--border);border-radius:var(--radius);font-size:13.5px;color:var(--text);font-weight:500;transition:all .2s}
[data-theme="light"] .downloads-note-inner strong{color:#2a2a28}
[data-theme="light"] .manual-hero{text-align:center;padding:64px 20px 32px;background:linear-gradient(180deg,#f3f3f1,#eaeae8);position:relative;overflow:hidden}
[data-theme="light"] .manual-hero h1{font-size:clamp(28px,5vw,44px);font-weight:800;margin:0 0 10px;line-height:1.08;color:#1d1d1b}
[data-theme="light"] .doc-nav-item a:hover{color:var(--text);background:#e7e7e5}
[data-theme="light"] .doc-section-title{font-size:clamp(20px,3vw,26px);font-weight:800;margin:0 0 18px;color:#1d1d1b;line-height:1.2}
[data-theme="light"] .doc-subsection{font-size:17px;font-weight:700;margin:28px 0 12px;color:#1d1d1b;scroll-margin-top:84px}
[data-theme="light"] .doc-section p strong,[data-theme="light"] .doc-section li strong{color:#2a2a28}
[data-theme="light"] .doc-section h4{font-size:14.5px;font-weight:700;color:#2a2a28;margin:18px 0 8px}
[data-theme="light"] .doc-section pre{background:#f3f3f1;border:1px solid var(--border);border-radius:8px;padding:12px 16px;font-size:13px;color:var(--accent);overflow-x:auto;margin:0 0 16px}
[data-theme="light"] .doc-table td:first-child{font-weight:700;color:#2a2a28;background:#eeeeec;width:34%}
[data-theme="light"] .doc-img{display:block;max-width:100%;border-radius:10px;border:1px solid var(--border);margin:12px 0 18px;background:#f3f3f1}
[data-theme="light"] .doc-img-missing{display:flex;align-items:center;justify-content:center;min-height:80px;color:#9a9a98;font-size:12px;background:#f3f3f1}
[data-theme="light"] .scene-table td:first-child{font-weight:800;color:var(--accent);background:#eeeeec}
[data-theme="light"] .scene-dash{color:#9a9a98}
[data-theme="light"] .scene-name{font-weight:700;color:#1d1d1b;font-size:14px}
[data-theme="light"] .doc-note{background:var(--accent-soft);border:1px solid rgba(220,152,20,.25);border-radius:12px;padding:14px 18px;font-size:13.5px;color:#333331;margin:16px 0}
[data-theme="light"] .legal-note{background:#eeeeec;border-left:4px solid var(--accent);border-radius:8px;padding:14px 18px;margin:20px 0;font-size:12.5px;color:var(--muted);line-height:1.7}
[data-theme="light"] .legal-note strong{color:#333331}
/* Casos puntuales */
[data-theme="light"] .site-footer{background:#ececea}
[data-theme="light"] .doc-nav-item a:hover{background:#e7e7e5}
[data-theme="light"] .doc-section-title::before{background:var(--accent)}

/* ==========================================================================
   FIX MODALES — compatibilidad de clases .active (CSS original) y .open
   ========================================================================== */
.modal-overlay.open,.modal-overlay.active{opacity:1;visibility:visible}
.modal-overlay.open .modal-content,.modal-overlay.active .modal-content{opacity:1;visibility:visible;transform:translate(-50%,-50%) scale(1)}
.drawer-overlay.open,.drawer-overlay.active{opacity:1;visibility:visible}

/* ==========================================================================
   PÁGINA: DOWNLOADS — lista simple
   ========================================================================== */
.downloads-list{max-width:760px;margin:0 auto;padding:8px 20px 72px;display:flex;flex-direction:column}
.dl-row{display:flex;align-items:center;justify-content:space-between;gap:16px;padding:16px 4px;border-bottom:1px solid var(--border);flex-wrap:wrap}
.dl-name{font-size:15.5px;font-weight:700;color:var(--text)}
.dl-links{display:flex;gap:8px;flex-wrap:wrap}
.dl-link{display:inline-flex;align-items:center;gap:6px;padding:8px 14px;border:1px solid var(--border);border-radius:8px;font-size:13px;font-weight:600;color:var(--text-muted);transition:all .2s}
.dl-link:hover{border-color:var(--accent);color:var(--accent);background:var(--accent-soft)}
.dl-link.accent{border-color:var(--accent);color:var(--accent)}
.dl-empty{color:var(--text-dim);font-size:13.5px;font-style:italic}
@media(max-width:560px){.dl-row{flex-direction:column;align-items:flex-start;gap:10px}}


/* ==========================================================================
   PÁGINA: PEDALES ANALÓGICOS
   ========================================================================== */
.pedals-grid{max-width:1000px;margin:0 auto;padding:8px 20px 72px;display:grid;grid-template-columns:repeat(3,1fr);gap:20px}
@media(max-width:860px){.pedals-grid{grid-template-columns:1fr;max-width:480px}}
.pedal-card{background:var(--surface);border:1px solid var(--border);border-radius:16px;overflow:hidden;transition:border-color .2s,transform .2s;display:flex;flex-direction:column}
.pedal-card:hover{border-color:var(--accent);transform:translateY(-3px)}
.pedal-card-img{aspect-ratio:4/4;background:var(--bg);display:flex;align-items:center;justify-content:center;border-bottom:1px solid var(--border);position:relative;overflow:hidden}
.pedal-card-img img{width:100%;height:100%;object-fit:cover;display:block}
.pedal-card-body{padding:20px;display:flex;flex-direction:column;gap:8px;flex:1}
.pedal-card-type{font-size:11px;font-weight:700;text-transform:uppercase;letter-spacing:.8px;color:var(--accent)}
.pedal-card-name{font-size:19px;font-weight:800;color:var(--text);line-height:1.2}
.pedal-card-desc{font-size:13.5px;color:var(--text-muted);line-height:1.65;flex:1}
.pedal-card-foot{margin-top:10px;padding-top:14px;border-top:1px solid var(--border);font-size:12.5px;color:var(--text-dim)}


/* ==========================================================================
   SOL DRIVE — modos interactivos (azul/rojo)
   ========================================================================== */
.mode-section{border:1px solid var(--border);border-radius:16px;overflow:hidden;transition:border-color .35s,box-shadow .35s}
.mode-section[data-mode="blue"]{border-color:rgba(70,120,220,.45);box-shadow:0 0 60px rgba(70,120,220,.07) inset}
.mode-section[data-mode="red"]{border-color:rgba(220,70,60,.45);box-shadow:0 0 60px rgba(220,70,60,.07) inset}
.mode-switch{display:flex;justify-content:center;gap:10px;flex-wrap:wrap;margin-bottom:28px}
.mode-btn{padding:12px 26px;border-radius:99px;border:1px solid var(--border);background:var(--surface);color:var(--text-muted);font-weight:700;font-size:14px;cursor:pointer;transition:all .25s;font-family:inherit}
.mode-btn:hover{border-color:var(--text-muted)}
.mode-btn.active[data-mode="blue"]{background:#3b6fd4;border-color:#3b6fd4;color:#fff;box-shadow:0 0 24px rgba(70,120,220,.35)}
.mode-btn.active[data-mode="red"]{background:#d4453a;border-color:#d4453a;color:#fff;box-shadow:0 0 24px rgba(220,70,60,.35)}
.mode-panel{display:none}
.mode-panel.active{display:block;animation:fadeIn .3s ease}
.mode-head{display:flex;align-items:center;gap:12px;margin-bottom:14px}
.mode-dot{width:14px;height:14px;border-radius:50%;flex-shrink:0}
.mode-dot.blue{background:#3b6fd4;box-shadow:0 0 14px rgba(70,120,220,.7)}
.mode-dot.red{background:#d4453a;box-shadow:0 0 14px rgba(220,70,60,.7)}
.mode-title{font-size:20px;font-weight:800;color:var(--text)}
.mode-tag{font-size:12px;font-weight:600;color:var(--text-dim)}
.mode-desc{font-size:15px;color:var(--text-secondary);line-height:1.75;margin:0 0 14px}
.mode-uses{display:flex;gap:8px;flex-wrap:wrap;margin:0}
.mode-use{font-size:12px;font-weight:600;padding:6px 12px;border-radius:99px;border:1px solid var(--border);color:var(--text-muted)}
[data-mode="blue"] .mode-use{border-color:rgba(70,120,220,.35);color:#8fb3ee}
[data-mode="red"] .mode-use{border-color:rgba(220,70,60,.35);color:#ee9a92}
.secret-badge{display:inline-flex;align-items:center;gap:8px;background:var(--accent-soft);border:1px solid rgba(220,152,20,.35);color:var(--accent);font-size:11px;font-weight:800;letter-spacing:1px;text-transform:uppercase;padding:6px 14px;border-radius:99px;margin-bottom:14px}