@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700;800;900&display=swap');

:root {
  --dark: #05070b;
  --glass: rgba(5, 8, 12, .72);
  --glass2: rgba(255,255,255,.08);
  --line: rgba(255,255,255,.14);
  --gold: #ffd15a;
  --orange: #ff9f2e;
  --green: #38e878;
  --blue: #4ddfff;
  --white: #fff;
  --muted: #d7d7d7;
  --shadow: 0 30px 90px rgba(0,0,0,.42);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  background: #0b0d10;
  color: var(--white);
}

.dc-header {
  position: fixed;
  top: 26px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 50;
  width: min(92vw, 1740px);
  height: 82px;
  display: grid;
  grid-template-columns: 250px 1fr 175px;
  align-items: center;
  gap: 18px;
  padding: 0 24px;
  border-radius: 20px;
  background: rgba(5, 10, 14, .62);
  border: 1px solid rgba(255,255,255,.10);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.dc-logo img {
  height: 70px;
  width: auto;
  display: block;
  filter: drop-shadow(0 8px 20px rgba(0,0,0,.45));
}

.dc-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
}

.dc-nav a {
  color: #fff;
  text-decoration: none;
  font-weight: 900;
  font-size: 14px;
  text-transform: uppercase;
  transition: .18s;
}

.dc-nav a:hover { color: var(--gold); }

.dc-cart {
  justify-self: end;
  width: 175px;
  min-width: 175px;
  display: grid;
  grid-template-columns: 38px 1fr;
  grid-template-rows: 1fr 1fr;
  align-items: center;
  padding: 10px 14px;
  border-radius: 12px;
  background: rgba(0,0,0,.55);
  color: #fff;
  text-decoration: none;
  font-weight: 900;
}

.dc-cart span { color: var(--gold); }
.dc-cart small { color: #fff; opacity: .9; }

.dc-hero {
  position: relative;
  min-height: 720px;
  overflow: hidden;
}

.dc-hero-bg {
  position: absolute;
  inset: 0;
  background: url("assets/background.jpg") center/cover no-repeat;
  transform: scale(1.02);
}

.dc-hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(2,4,6,.82) 0%, rgba(2,4,6,.42) 45%, rgba(2,4,6,.70) 100%),
    linear-gradient(180deg, rgba(0,0,0,.40) 0%, transparent 48%, rgba(0,0,0,.18) 100%);
}

.dc-hero-content {
  position: relative;
  z-index: 3;
  width: min(92vw, 1700px);
  margin: 0 auto;
  padding-top: 170px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 60px;
  align-items: center;
}

.dc-left { max-width: 760px; }

.dc-social-badges {
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  align-items:center;
  margin-bottom:4px;
}

.dc-social-badges .dc-badge {
  text-decoration:none;
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
}

.dc-social-badges .dc-badge:hover {
  transform: translateY(-2px);
  background: rgba(255,255,255,.16);
  border-color: rgba(255,209,102,.55);
}


.dc-badge {
  display: inline-flex;
  padding: 10px 16px;
  border-radius: 999px;
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  background: rgba(0,0,0,.28);
  border: 1px solid rgba(255,255,255,.15);
  box-shadow: 0 8px 24px rgba(0,0,0,.25);
}

.dc-left h1 {
  margin: 28px 0 4px;
  font-size: clamp(58px, 7vw, 108px);
  line-height: .92;
  letter-spacing: -4px;
  font-weight: 950;
  color: white;
  text-shadow: 0 15px 38px rgba(0,0,0,.45);
}

.dc-left h2 {
  margin: 0 0 20px;
  color: var(--gold);
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 950;
}

.dc-left p {
  font-size: 18px;
  line-height: 1.7;
  max-width: 650px;
  font-weight: 650;
  text-shadow: 0 4px 16px rgba(0,0,0,.55);
}

.dc-actions {
  display: flex;
  gap: 16px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.dc-btn {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  min-width: 220px;
  padding: 18px 24px;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 950;
  text-transform: uppercase;
  transition: .22s;
  box-shadow: 0 18px 36px rgba(0,0,0,.25);
}

.dc-btn small {
  display: block;
  font-size: 13px;
  font-weight: 700;
  text-transform: none;
  opacity: .85;
}

.dc-btn-main {
  background: linear-gradient(135deg, #ffb13a, #ffd966);
  color: #2a1600;
}

.dc-btn-glass {
  background: rgba(5, 10, 14, .58);
  border: 1px solid rgba(255,255,255,.16);
  color: white;
  backdrop-filter: blur(12px);
}

.dc-btn:hover {
  transform: translateY(-4px);
}

.dc-stats {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(4, minmax(120px, 1fr));
  gap: 12px;
  padding: 16px;
  border-radius: 16px;
  background: rgba(5, 10, 14, .50);
  border: 1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(14px);
}

.dc-stats div { display: grid; gap: 4px; }
.dc-stats strong { font-size: 14px; }
.dc-stats span { color: #e7e7e7; font-size: 12px; }

.dc-server-card {
  padding: 28px;
  border-radius: 18px;
  background: rgba(4, 12, 7, .58);
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.dc-server-card h3 {
  margin: 0 0 20px;
  color: var(--gold);
  font-weight: 950;
  text-transform: uppercase;
  font-size: 16px;
}

.dc-info-row {
  position: relative;
  display: grid;
  gap: 6px;
  padding: 14px 42px 14px 14px;
  margin-bottom: 12px;
  border-radius: 10px;
  background: rgba(0,0,0,.28);
}

.dc-info-row span {
  color: var(--gold);
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 900;
}

.dc-info-row strong {
  font-size: 16px;
}

.dc-info-row button {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  border: 0;
  background: transparent;
  cursor: pointer;
  font-size: 18px;
}

.dc-categories {
  position: relative;
  padding: 70px 0 90px;
  background: linear-gradient(180deg, #fff4da 0%, #fff8e9 100%);
  color: #0b0d10;
}

.dc-categories:before {
  content: "";
  position: absolute;
  top: -38px;
  left: 0;
  right: 0;
  height: 60px;
  background: #fff4da;
  clip-path: polygon(0 35%, 8% 55%, 16% 40%, 26% 58%, 38% 35%, 50% 55%, 62% 38%, 76% 58%, 88% 36%, 100% 55%, 100% 100%, 0 100%);
}

.dc-section-head {
  text-align: center;
  margin-bottom: 36px;
}

.dc-section-head span {
  color: #1e8b45;
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
}

.dc-section-head h2 {
  margin: 6px 0;
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 950;
  letter-spacing: -2px;
  text-transform: uppercase;
}

.dc-section-head i {
  display: block;
  margin: 12px auto 0;
  width: 54px;
  height: 4px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--orange), var(--gold));
}

.dc-grid {
  width: min(92vw, 1700px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 24px;
}

.dc-category {
  min-height: 240px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  border-radius: 16px;
  text-decoration: none;
  color: white;
  background: #111;
  box-shadow: 0 24px 50px rgba(0,0,0,.22);
  transition: .25s;
}

.dc-category:hover {
  transform: translateY(-8px);
}

.dc-category:before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--img) center/cover no-repeat;
  transform: scale(1.06);
  transition: .25s;
}

.dc-category:hover:before {
  transform: scale(1.14);
}

.dc-category:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 10%, rgba(0,0,0,.86) 100%);
}

.dc-category div {
  position: relative;
  z-index: 2;
  padding: 20px;
}

.dc-category h3 {
  margin: 0 0 7px;
  font-size: 21px;
  font-weight: 950;
  text-transform: uppercase;
}

.dc-category p {
  margin: 0 0 14px;
  font-size: 14px;
  line-height: 1.35;
}

.dc-category button {
  border: 0;
  border-radius: 8px;
  padding: 10px 34px;
  color: white;
  font-weight: 950;
  text-transform: uppercase;
  background: #1475bd;
}

.dc-dinero button { background: #159327; }
.dc-kits button { background: #b97910; }
.dc-llaves button { background: #7433c9; }
.dc-comandos button { background: #bd2229; }
.dc-protecciones button { background: #00a7aa; }

.dc-rangos { --img: url("assets/cat-rangos.jpg"); }
.dc-dinero { --img: url("assets/cat-dinero.jpg"); }
.dc-kits { --img: url("assets/cat-kits.jpg"); }
.dc-llaves { --img: url("assets/cat-llaves.jpg"); }
.dc-comandos { --img: url("assets/cat-comandos.jpg"); }
.dc-protecciones { --img: url("assets/cat-protecciones.jpg"); }

.dc-cta {
  padding: 90px 20px;
  text-align: center;
  background: #0b0d10;
}

.dc-cta h2 {
  margin: 0 0 10px;
  font-size: clamp(32px, 4vw, 54px);
  font-weight: 950;
}

.dc-cta p { color: var(--muted); }

.dc-cta a {
  display: inline-block;
  margin-top: 20px;
  padding: 16px 28px;
  border-radius: 999px;
  color: #2a1600;
  background: linear-gradient(135deg, var(--orange), var(--gold));
  text-decoration: none;
  font-weight: 950;
}

.dc-footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 26px 5vw;
  background: #05070b;
  border-top: 1px solid rgba(255,255,255,.08);
  color: #d8d8d8;
  flex-wrap: wrap;
}

.dc-footer a { color: var(--gold); }

.dc-toast {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 99;
  padding: 14px 18px;
  border-radius: 12px;
  color: #111;
  background: var(--gold);
  font-weight: 950;
  opacity: 0;
  transform: translateY(16px);
  transition: .22s;
}

.dc-toast.show {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1200px) {
  .dc-header {
    grid-template-columns: 220px 1fr 170px;
  }

  .dc-nav {
    gap: 15px;
  }

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

  .dc-stats {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 860px) {
  .dc-header {
    position: absolute;
    grid-template-columns: 1fr;
    height: auto;
    padding: 16px;
  }

  .dc-nav {
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .dc-cart {
    justify-self: start;
  }

  .dc-hero-content {
    padding-top: 260px;
    grid-template-columns: 1fr;
  }

  .dc-left h1 {
    font-size: 52px;
    letter-spacing: -2px;
  }

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

  .dc-stats {
    grid-template-columns: 1fr;
  }
}


/* =========================================================
   DRIVERCRAFT AJUSTES V2 - MAS CLARO, COMPACTO Y AMPLIO
   Pegar al final de styles.css si se usa manualmente.
   ========================================================= */

.dc-header {
  top: 20px;
  height: 72px;
  width: min(92vw, 1720px);
  grid-template-columns: 260px 1fr 195px;
  gap: 20px;
  padding: 0 22px;
  border-radius: 17px;
  background: rgba(5, 10, 14, .50);
  box-shadow: 0 18px 60px rgba(0,0,0,.30);
}

.dc-logo img {
  height: 61px;
}

.dc-nav {
  gap: 18px;
}

.dc-nav a {
  font-size: 12.5px;
  padding: 9px 11px;
  border-radius: 10px;
}

.dc-nav a:first-child {
  background: rgba(255, 239, 204, .94);
  color: #4a3210;
  box-shadow: 0 8px 22px rgba(255, 209, 90, .22);
}

.dc-cart {
  min-width: 175px;
  padding: 10px 16px;
}

.dc-hero {
  min-height: 640px;
}

.dc-hero-bg {
  filter: brightness(1.25) saturate(1.25) contrast(.96);
}

.dc-hero-shade {
  background:
    linear-gradient(90deg, rgba(2,4,6,.62) 0%, rgba(2,4,6,.17) 48%, rgba(2,4,6,.48) 100%),
    linear-gradient(180deg, rgba(0,0,0,.26) 0%, transparent 50%, rgba(0,0,0,.08) 100%);
}

.dc-hero-content {
  padding-top: 132px;
  grid-template-columns: minmax(0, 1fr) 335px;
  gap: 54px;
}

.dc-badge {
  padding: 8px 14px;
  font-size: 12px;
}

.dc-left h1 {
  margin-top: 22px;
  font-size: clamp(52px, 6.2vw, 92px);
  letter-spacing: -3.5px;
}

.dc-left h2 {
  font-size: clamp(22px, 2.45vw, 32px);
  margin-bottom: 14px;
}

.dc-left p {
  font-size: 15.5px;
  line-height: 1.55;
  max-width: 620px;
}

.dc-actions {
  margin-top: 22px;
  gap: 14px;
}

.dc-btn {
  min-width: 198px;
  padding: 15px 20px;
  border-radius: 13px;
}

.dc-stats {
  margin-top: 22px;
  padding: 13px 15px;
  gap: 10px;
  max-width: 660px;
  background: rgba(5, 10, 14, .40);
}

.dc-stats strong {
  font-size: 13.5px;
}

.dc-stats span {
  font-size: 11.5px;
}

.dc-server-card {
  padding: 22px;
  border-radius: 17px;
  background: rgba(4, 14, 8, .43);
  box-shadow: 0 24px 70px rgba(0,0,0,.32);
}

.dc-server-card h3 {
  font-size: 15px;
  margin-bottom: 16px;
}

.dc-info-row {
  padding: 11px 40px 11px 13px;
  margin-bottom: 9px;
  background: rgba(0,0,0,.22);
}

.dc-info-row strong {
  font-size: 15px;
}

.dc-categories {
  padding: 42px 0 54px;
}

.dc-categories:before {
  top: -36px;
}

.dc-section-head {
  margin-bottom: 26px;
}

.dc-section-head span {
  font-size: 12px;
}

.dc-section-head h2 {
  font-size: clamp(32px, 3.7vw, 46px);
  letter-spacing: -1.5px;
}

.dc-section-head i {
  margin-top: 10px;
}

.dc-grid {
  width: min(86vw, 1480px);
  gap: 18px;
}

.dc-category {
  min-height: 198px;
  border-radius: 15px;
}

.dc-category div {
  padding: 15px;
}

.dc-category h3 {
  font-size: 18px;
  margin-bottom: 5px;
}

.dc-category p {
  font-size: 12px;
  line-height: 1.32;
  margin-bottom: 11px;
}

.dc-category button {
  padding: 8px 30px;
  font-size: 12px;
  border-radius: 8px;
}

@media (max-width: 1200px) {
  .dc-header {
    grid-template-columns: 210px 1fr 165px;
  }

  .dc-nav {
    gap: 10px;
  }

  .dc-nav a {
    font-size: 11.5px;
    padding: 8px 8px;
  }

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

@media (max-width: 860px) {
  .dc-header {
    position: absolute;
    grid-template-columns: 1fr;
    height: auto;
  }

  .dc-hero-content {
    padding-top: 245px;
    grid-template-columns: 1fr;
  }

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


/* =========================================================
   DRIVERCRAFT AJUSTES FINALES HEADER / LOGO / HERO
   Pegar al final si no reemplazas todo el CSS.
   ========================================================= */

body {
  overflow-x: hidden;
}

/* Barra superior más premium, organizada y limpia */
.dc-header {
  top: 20px !important;
  width: min(94vw, 1780px) !important;
  height: 82px !important;
  grid-template-columns: 315px 1fr 205px !important;
  gap: 24px !important;
  padding: 0 26px !important;
  border-radius: 18px !important;
  background: rgba(7, 14, 18, .56) !important;
  border: 1px solid rgba(255,255,255,.13) !important;
  backdrop-filter: blur(22px) saturate(1.25) !important;
  box-shadow: 0 18px 55px rgba(0,0,0,.26) !important;
}

/* Logo sin caja, más grande y mejor posicionado */
.dc-logo {
  display: flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
}

.dc-logo img {
  height: 76px !important;
  width: auto !important;
  object-fit: contain !important;
  display: block !important;
  filter: drop-shadow(0 8px 18px rgba(0,0,0,.45)) !important;
}

/* Menú más parecido a la referencia */
.dc-nav {
  gap: 22px !important;
  justify-content: center !important;
}

.dc-nav a {
  font-size: 13px !important;
  padding: 11px 13px !important;
  border-radius: 12px !important;
  letter-spacing: .1px !important;
}

.dc-nav a:first-child {
  background: rgba(255, 239, 204, .96) !important;
  color: #3d2a0c !important;
  box-shadow: 0 10px 24px rgba(255, 209, 90, .24) !important;
}

/* Carrito más compacto y elegante */
.dc-cart {
  min-width: 170px !important;
  padding: 11px 16px !important;
  border-radius: 14px !important;
  background: rgba(0, 0, 0, .62) !important;
  box-shadow: 0 12px 34px rgba(0,0,0,.30) !important;
}

/* Hero un poquito más amplio visualmente pero menos pesado */
.dc-hero {
  min-height: 650px !important;
}

.dc-hero-bg {
  filter: brightness(1.30) saturate(1.22) contrast(.96) !important;
}

.dc-hero-shade {
  background:
    linear-gradient(90deg, rgba(2,4,6,.57) 0%, rgba(2,4,6,.16) 48%, rgba(2,4,6,.45) 100%),
    linear-gradient(180deg, rgba(0,0,0,.24) 0%, transparent 52%, rgba(0,0,0,.08) 100%) !important;
}

.dc-hero-content {
  width: min(94vw, 1760px) !important;
  padding-top: 142px !important;
  grid-template-columns: minmax(0, 1fr) 350px !important;
  gap: 54px !important;
}

.dc-left h1 {
  font-size: clamp(56px, 6.5vw, 98px) !important;
}

.dc-left p {
  max-width: 650px !important;
}

/* Panel del servidor más vidrio y menos pesado */
.dc-server-card {
  background: rgba(6, 18, 9, .42) !important;
  border: 1px solid rgba(255,255,255,.14) !important;
  border-radius: 20px !important;
}

.dc-info-row {
  background: rgba(0,0,0,.20) !important;
  border-radius: 13px !important;
}

/* Categorías más elegantes y bien cuadradas */
.dc-categories {
  padding-top: 40px !important;
}

.dc-grid {
  width: min(88vw, 1500px) !important;
  gap: 20px !important;
}

.dc-category {
  min-height: 210px !important;
  border-radius: 16px !important;
}

.dc-category h3 {
  font-size: 18px !important;
}

.dc-category p {
  font-size: 12px !important;
}

.dc-category button {
  font-size: 12px !important;
  padding: 9px 32px !important;
}

/* Responsive para que no se dañe en pantallas medianas */
@media (max-width: 1300px) {
  .dc-header {
    grid-template-columns: 260px 1fr 165px !important;
  }

  .dc-logo img {
    height: 66px !important;
  }

  .dc-nav {
    gap: 10px !important;
  }

  .dc-nav a {
    font-size: 11.5px !important;
    padding: 9px 8px !important;
  }
}

@media (max-width: 860px) {
  .dc-header {
    position: absolute !important;
    height: auto !important;
    grid-template-columns: 1fr !important;
    padding: 16px !important;
  }

  .dc-logo img {
    height: 62px !important;
  }

  .dc-nav {
    justify-content: flex-start !important;
    flex-wrap: wrap !important;
  }

  .dc-hero-content {
    padding-top: 250px !important;
    grid-template-columns: 1fr !important;
  }
}


/* =========================================================
   DRIVERCRAFT PÁGINAS INTERNAS - RANGOS V1.2
   ========================================================= */

.dc-subhero {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  background: #0b0d10;
}

.dc-subhero-bg {
  position: absolute;
  inset: 0;
  background: url("assets/cat-rangos.jpg") center/cover no-repeat;
  filter: brightness(1.16) saturate(1.18) contrast(.98);
  transform: scale(1.04);
}

.dc-subhero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(2,4,6,.70) 0%, rgba(2,4,6,.26) 48%, rgba(2,4,6,.58) 100%),
    linear-gradient(180deg, rgba(0,0,0,.22), transparent 48%, rgba(0,0,0,.20));
}

.dc-subhero-content {
  position: relative;
  z-index: 3;
  width: min(92vw, 1500px);
  margin: 0 auto;
  padding-top: 165px;
  max-width: 820px;
}

.dc-subhero-content h1 {
  margin: 22px 0 12px;
  font-size: clamp(52px, 6vw, 92px);
  line-height: .92;
  letter-spacing: -3px;
  font-weight: 950;
  text-shadow: 0 16px 40px rgba(0,0,0,.45);
}

.dc-subhero-content p {
  max-width: 700px;
  font-size: 17px;
  line-height: 1.65;
  font-weight: 650;
  text-shadow: 0 5px 18px rgba(0,0,0,.55);
}

.dc-subhero-actions {
  display: flex;
  gap: 14px;
  margin-top: 26px;
  flex-wrap: wrap;
}

.dc-ranks-section {
  position: relative;
  padding: 54px 0 70px;
  background: linear-gradient(180deg, #fff4da 0%, #fff8e9 100%);
  color: #0b0d10;
}

.dc-ranks-section:before {
  content: "";
  position: absolute;
  top: -36px;
  left: 0;
  right: 0;
  height: 60px;
  background: #fff4da;
  clip-path: polygon(0 35%, 8% 55%, 16% 40%, 26% 58%, 38% 35%, 50% 55%, 62% 38%, 76% 58%, 88% 36%, 100% 55%, 100% 100%, 0 100%);
}

.dc-ranks-grid {
  width: min(92vw, 1500px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
}

.dc-rank-card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border-radius: 24px;
  color: white;
  background: #0b0d10;
  box-shadow: 0 28px 60px rgba(0,0,0,.24);
  border: 1px solid rgba(255,255,255,.14);
  transition: .25s;
}

.dc-rank-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 34px 72px rgba(0,0,0,.30);
}

.dc-rank-featured {
  transform: translateY(-10px);
  border-color: rgba(255, 209, 90, .55);
}

.dc-rank-featured:hover {
  transform: translateY(-18px);
}

.dc-rank-image {
  position: relative;
  height: 310px;
  overflow: hidden;
  background: #05070b;
}

.dc-rank-image:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, #0b0d10 100%);
}

.dc-rank-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.02);
  transition: .28s;
}

.dc-rank-card:hover .dc-rank-image img {
  transform: scale(1.09);
}

.dc-rank-content {
  padding: 0 24px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.dc-rank-tag {
  width: fit-content;
  margin-top: -22px;
  z-index: 2;
  display: inline-flex;
  padding: 8px 13px;
  border-radius: 999px;
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.20);
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.dc-rank-card h3 {
  margin: 16px 0 8px;
  font-size: 42px;
  font-weight: 950;
  line-height: .95;
  letter-spacing: -2px;
}

.dc-rank-nova h3 { color: #48dcff; }
.dc-rank-vip h3 { color: #8cf6ff; }
.dc-rank-elite h3 { color: #38e878; }

.dc-rank-card p {
  margin: 0;
  color: rgba(255,255,255,.88);
  line-height: 1.48;
  font-weight: 650;
}

.dc-rank-price {
  margin: 18px 0;
  padding: 14px 16px;
  border-radius: 15px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.13);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.dc-rank-price strong {
  color: var(--gold);
  text-transform: uppercase;
  font-size: 12px;
}

.dc-rank-price span {
  font-weight: 950;
  font-size: 22px;
}

.dc-benefit-groups {
  display: grid;
  gap: 10px;
}

.dc-benefit-groups div {
  padding: 12px 13px;
  border-radius: 13px;
  background: rgba(255,255,255,.075);
  border: 1px solid rgba(255,255,255,.08);
}

.dc-benefit-groups b {
  display: block;
  margin-bottom: 4px;
  color: #fff;
  font-size: 14px;
  font-weight: 950;
}

.dc-benefit-groups p {
  font-size: 13px;
  color: rgba(255,255,255,.78);
}

.dc-rank-buy {
  margin-top: auto;
  display: block;
  text-align: center;
  padding: 15px 18px;
  border-radius: 999px;
  text-decoration: none;
  color: #2a1600;
  background: linear-gradient(135deg, var(--orange), var(--gold));
  font-weight: 950;
  box-shadow: 0 16px 34px rgba(0,0,0,.28);
  transition: .2s;
}

.dc-rank-buy:hover {
  transform: translateY(-3px);
}

.dc-compare-section {
  padding: 62px 5vw 74px;
  background: #0b0d10;
}

.dc-compare-table {
  width: min(92vw, 1180px);
  margin: 0 auto;
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
  box-shadow: 0 24px 60px rgba(0,0,0,.26);
}

.dc-compare-row {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 0;
  border-bottom: 1px solid rgba(255,255,255,.09);
}

.dc-compare-row:last-child {
  border-bottom: none;
}

.dc-compare-row span,
.dc-compare-row b {
  padding: 16px 18px;
  display: flex;
  align-items: center;
}

.dc-compare-row span {
  color: rgba(255,255,255,.88);
  font-weight: 850;
}

.dc-compare-row b {
  justify-content: center;
  text-align: center;
  color: #fff;
}

.dc-compare-head {
  background: rgba(255, 209, 90, .12);
}

.dc-compare-head span,
.dc-compare-head b {
  color: var(--gold);
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 950;
}

.dc-rank-info {
  padding: 64px 5vw;
  background: #0b0d10;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.dc-rank-info-card {
  padding: 28px;
  border-radius: 20px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 22px 50px rgba(0,0,0,.25);
}

.dc-rank-info-card h2 {
  margin: 0 0 10px;
  color: var(--gold);
  font-size: 22px;
  font-weight: 950;
}

.dc-rank-info-card p {
  color: var(--muted);
  line-height: 1.65;
  margin: 0;
}

@media (max-width: 1180px) {
  .dc-ranks-grid,
  .dc-rank-info {
    grid-template-columns: 1fr;
  }

  .dc-rank-featured,
  .dc-rank-featured:hover {
    transform: none;
  }

  .dc-rank-image {
    height: 360px;
  }
}

@media (max-width: 860px) {
  .dc-subhero-content {
    padding-top: 250px;
  }

  .dc-subhero-content h1 {
    font-size: 48px;
    letter-spacing: -2px;
  }

  .dc-rank-image {
    height: 280px;
  }

  .dc-compare-row {
    grid-template-columns: 1fr;
  }

  .dc-compare-row span,
  .dc-compare-row b {
    justify-content: flex-start;
    text-align: left;
  }
}


/* =========================================================
   DRIVERCRAFT RANGOS V1.3 - BENEFICIOS MAS VISIBLES
   ========================================================= */

.dc-rank-highlights {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  margin: 0 0 18px;
}

.dc-rank-highlights div {
  min-height: 72px;
  padding: 10px 8px;
  border-radius: 14px;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.12);
  text-align: center;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 3px;
}

.dc-rank-highlights b {
  display: block;
  font-size: 22px;
  line-height: 1;
  color: var(--gold);
  font-weight: 950;
}

.dc-rank-highlights span {
  font-size: 10px;
  line-height: 1.15;
  color: rgba(255,255,255,.82);
  font-weight: 850;
  text-transform: uppercase;
}

.dc-benefit-detailed {
  margin-bottom: 18px;
}

.dc-benefit-detailed div {
  position: relative;
  padding-left: 15px;
}

.dc-benefit-detailed div:before {
  content: "";
  position: absolute;
  left: 0;
  top: 13px;
  bottom: 13px;
  width: 3px;
  border-radius: 99px;
  background: linear-gradient(180deg, var(--orange), var(--gold));
  opacity: .9;
}

.dc-rank-nova .dc-benefit-detailed div:before {
  background: linear-gradient(180deg, #48dcff, #2f73ff);
}

.dc-rank-vip .dc-benefit-detailed div:before {
  background: linear-gradient(180deg, #8cf6ff, #009dff);
}

.dc-rank-elite .dc-benefit-detailed div:before {
  background: linear-gradient(180deg, #38e878, #a8ff4d);
}

.dc-rank-content {
  padding-bottom: 26px;
}

.dc-rank-card {
  min-height: auto !important;
}

.dc-rank-buy {
  margin-top: 8px !important;
}

@media (max-width: 1180px) {
  .dc-rank-highlights {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 520px) {
  .dc-rank-highlights {
    grid-template-columns: 1fr;
  }
}

/* FIX FINAL HEADER */
.dc-header {
  position: absolute !important;
  top: 20px !important;
  height: 82px !important;
  grid-template-columns: 320px 1fr 150px !important;
  overflow: hidden !important;
}

.dc-cart {
  min-width: 135px !important;
  width: 135px !important;
  height: 58px !important;
  padding: 8px 12px !important;
  border-radius: 14px !important;
  grid-template-columns: 30px 1fr !important;
}

.dc-cart-icon {
  font-size: 19px !important;
}

.dc-cart-info span {
  font-size: 16px !important;
}

.dc-cart-info small {
  font-size: 13px !important;
}

.dc-nav {
  gap: 17px !important;
}

/* =========================================================
   DRIVERCRAFT HEADER FINAL - ICONOS AL LADO + CARRITO OK
   ========================================================= */

/* Barra superior: NO fija, se mueve normal con la página */
.dc-header {
  position: absolute !important;
  top: 18px !important;
  left: 50% !important;
  transform: translateX(-50%) !important;

  width: min(94vw, 1780px) !important;
  height: 86px !important;

  display: grid !important;
  grid-template-columns: 330px 1fr 185px !important;
  align-items: center !important;
  gap: 22px !important;

  padding: 0 24px !important;
  border-radius: 18px !important;
  overflow: hidden !important;

  background: rgba(7, 14, 18, .58) !important;
  border: 1px solid rgba(255,255,255,.13) !important;
  backdrop-filter: blur(22px) saturate(1.25) !important;
  box-shadow: 0 18px 55px rgba(0,0,0,.26) !important;
}

/* Logo */
.dc-logo {
  display: flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
}

.dc-logo img {
  height: 76px !important;
  width: auto !important;
  object-fit: contain !important;
  display: block !important;
  filter: drop-shadow(0 8px 18px rgba(0,0,0,.45)) !important;
}

/* Menú: icono al lado del texto, no arriba */
.dc-nav {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 20px !important;
  flex-wrap: nowrap !important;
}

.dc-nav a {
  display: inline-flex !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: center !important;

  gap: 8px !important;
  padding: 12px 13px !important;
  border-radius: 13px !important;

  color: #fff !important;
  text-decoration: none !important;
  text-transform: uppercase !important;
  white-space: nowrap !important;

  font-size: 15px !important;
  line-height: 1 !important;
  font-weight: 950 !important;
  letter-spacing: .1px !important;

  background: transparent !important;
  transition: .18s ease !important;
}

/* Inicio activo */
.dc-nav a.active,
.dc-nav a:first-child {
  background: rgba(255, 239, 204, .96) !important;
  color: #3d2a0c !important;
  box-shadow: 0 10px 24px rgba(255, 209, 90, .24) !important;
}

.dc-nav a:hover {
  color: var(--gold) !important;
  transform: translateY(-2px) !important;
}

.dc-nav a.active:hover,
.dc-nav a:first-child:hover {
  color: #3d2a0c !important;
}

/* Carrito corregido para que NO se salga */
.dc-cart {
  justify-self: end !important;

  width: 170px !important;
  min-width: 170px !important;
  height: 62px !important;

  display: grid !important;
  grid-template-columns: 34px 1fr !important;
  grid-template-rows: auto !important;
  align-items: center !important;
  column-gap: 10px !important;

  padding: 9px 14px !important;
  border-radius: 15px !important;

  background: rgba(0, 0, 0, .64) !important;
  color: #fff !important;
  text-decoration: none !important;
  font-weight: 950 !important;
  box-shadow: 0 12px 34px rgba(0,0,0,.30) !important;
}

.dc-cart-icon {
  font-size: 22px !important;
  line-height: 1 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.dc-cart-info {
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  justify-content: center !important;
  gap: 3px !important;
  line-height: 1 !important;
}

.dc-cart-info span,
.dc-cart span {
  color: var(--gold) !important;
  font-size: 20px !important;
  font-weight: 950 !important;
  line-height: 1 !important;
}

.dc-cart-info small,
.dc-cart small {
  color: #fff !important;
  opacity: .95 !important;
  font-size: 15px !important;
  font-weight: 900 !important;
  line-height: 1 !important;
}

/* Ajuste para pantallas medianas */
@media (max-width: 1400px) {
  .dc-header {
    grid-template-columns: 280px 1fr 160px !important;
    gap: 14px !important;
  }

  .dc-logo img {
    height: 68px !important;
  }

  .dc-nav {
    gap: 11px !important;
  }

  .dc-nav a {
    font-size: 13px !important;
    gap: 6px !important;
    padding: 10px 9px !important;
  }

  .dc-cart {
    width: 150px !important;
    min-width: 150px !important;
  }

  .dc-cart-info span,
  .dc-cart span {
    font-size: 17px !important;
  }

  .dc-cart-info small,
  .dc-cart small {
    font-size: 13px !important;
  }
}

/* Móvil */
@media (max-width: 860px) {
  .dc-header {
    position: absolute !important;
    top: 14px !important;
    height: auto !important;
    grid-template-columns: 1fr !important;
    padding: 16px !important;
  }

  .dc-logo img {
    height: 62px !important;
  }

  .dc-nav {
    justify-content: flex-start !important;
    flex-wrap: wrap !important;
  }

  .dc-nav a {
    font-size: 12px !important;
  }

  .dc-cart {
    justify-self: start !important;
  }
}


/* =========================================================
   DRIVERCRAFT HEADER FIX V2 - SOLO ACTIVE + CARRITO ARREGLADO
   ========================================================= */

/* Quita el resaltado automático del primer botón.
   Ahora SOLO se resalta el enlace que tenga class="active". */
.dc-nav a:first-child {
  background: transparent !important;
  color: #fff !important;
  box-shadow: none !important;
}

.dc-nav a.active {
  background: rgba(255, 239, 204, .96) !important;
  color: #3d2a0c !important;
  box-shadow: 0 10px 24px rgba(255, 209, 90, .24) !important;
}

.dc-nav a.active:hover {
  color: #3d2a0c !important;
}

/* Header con más espacio para que el carrito no se corte */
.dc-header {
  position: absolute !important;
  top: 18px !important;
  width: min(96vw, 1860px) !important;
  height: 86px !important;
  grid-template-columns: 330px minmax(0, 1fr) 205px !important;
  gap: 18px !important;
  padding: 0 24px !important;
  overflow: visible !important;
}

/* Menú más compacto para dejar respirar al carrito */
.dc-nav {
  gap: 14px !important;
  min-width: 0 !important;
}

.dc-nav a {
  font-size: 14px !important;
  gap: 7px !important;
  padding: 11px 11px !important;
  white-space: nowrap !important;
}

/* Carrito completo, centrado y sin salirse */
.dc-cart {
  justify-self: end !important;
  width: 185px !important;
  min-width: 185px !important;
  max-width: 185px !important;
  height: 62px !important;

  display: grid !important;
  grid-template-columns: 38px 1fr !important;
  grid-template-rows: 1fr !important;
  align-items: center !important;
  column-gap: 10px !important;

  padding: 9px 14px !important;
  border-radius: 15px !important;
  overflow: hidden !important;
}

.dc-cart-icon {
  font-size: 22px !important;
  line-height: 1 !important;
}

.dc-cart-info {
  min-width: 0 !important;
  overflow: hidden !important;
}

.dc-cart-info span,
.dc-cart span {
  display: block !important;
  font-size: 19px !important;
  line-height: 1 !important;
  white-space: nowrap !important;
}

.dc-cart-info small,
.dc-cart small {
  display: block !important;
  font-size: 14px !important;
  line-height: 1.05 !important;
  white-space: nowrap !important;
}

/* En pantallas medianas baja un poco los tamaños para que no se rompa */
@media (max-width: 1450px) {
  .dc-header {
    grid-template-columns: 285px minmax(0, 1fr) 175px !important;
    gap: 12px !important;
  }

  .dc-logo img {
    height: 68px !important;
  }

  .dc-nav {
    gap: 8px !important;
  }

  .dc-nav a {
    font-size: 12.5px !important;
    gap: 5px !important;
    padding: 10px 8px !important;
  }

  .dc-cart {
    width: 165px !important;
    min-width: 165px !important;
    max-width: 165px !important;
  }

  .dc-cart-info span,
  .dc-cart span {
    font-size: 17px !important;
  }

  .dc-cart-info small,
  .dc-cart small {
    font-size: 13px !important;
  }
}


/* =========================================================
   DRIVERCRAFT V1.4 - ANIMACIONES + FOOTER PREMIUM
   ========================================================= */

/* Animaciones suaves */
@keyframes dcFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

@keyframes dcGlowPulse {
  0%, 100% { box-shadow: 0 0 0 rgba(255, 209, 90, 0); }
  50% { box-shadow: 0 0 26px rgba(255, 209, 90, .26); }
}

.dc-logo img {
  transition: transform .25s ease, filter .25s ease !important;
}

.dc-logo:hover img {
  transform: scale(1.035) !important;
  filter: drop-shadow(0 10px 24px rgba(255, 209, 90, .25)) !important;
}

.dc-btn-main,
.dc-rank-buy,
.dc-cta a,
.dc-category button {
  position: relative;
  overflow: hidden;
}

.dc-btn-main:after,
.dc-rank-buy:after,
.dc-cta a:after,
.dc-category button:after {
  content: "";
  position: absolute;
  inset: 0;
  left: -140%;
  background: linear-gradient(110deg, transparent, rgba(255,255,255,.38), transparent);
  transform: skewX(-20deg);
  transition: .55s ease;
}

.dc-btn-main:hover:after,
.dc-rank-buy:hover:after,
.dc-cta a:hover:after,
.dc-category:hover button:after {
  left: 140%;
}

.dc-category,
.dc-rank-card,
.dc-server-card,
.dc-rank-info-card,
.dc-compare-table {
  will-change: transform;
}

.dc-category:hover,
.dc-rank-card:hover {
  filter: saturate(1.08);
}

.dc-info-row button {
  transition: transform .18s ease, filter .18s ease;
}

.dc-info-row button:hover {
  transform: translateY(-50%) scale(1.14);
  filter: drop-shadow(0 0 12px rgba(255, 209, 90, .35));
}

/* Footer premium */
.dc-footer {
  position: relative;
  padding: 0 !important;
  background:
    radial-gradient(circle at 15% 0%, rgba(255, 209, 90, .12), transparent 30%),
    radial-gradient(circle at 85% 10%, rgba(77, 223, 255, .10), transparent 30%),
    #05070b !important;
  border-top: 1px solid rgba(255,255,255,.10) !important;
  color: #fff !important;
}

.dc-footer-premium {
  width: min(92vw, 1500px);
  margin: 0 auto;
  padding: 46px 0 28px;
  display: grid;
  grid-template-columns: 1.25fr repeat(3, minmax(0, .75fr));
  gap: 34px;
}

.dc-footer-brand img {
  height: 76px;
  width: auto;
  display: block;
  margin-bottom: 14px;
  filter: drop-shadow(0 10px 20px rgba(0,0,0,.42));
}

.dc-footer-brand p {
  margin: 0;
  max-width: 420px;
  color: rgba(255,255,255,.72);
  line-height: 1.6;
  font-weight: 650;
}

.dc-footer-col h3 {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 15px;
  text-transform: uppercase;
  font-weight: 950;
}

.dc-footer-col a,
.dc-footer-col span {
  display: block;
  color: rgba(255,255,255,.78);
  text-decoration: none;
  margin: 9px 0;
  font-weight: 750;
  transition: .18s ease;
}

.dc-footer-col a:hover {
  color: var(--gold);
  transform: translateX(4px);
}

.dc-footer-bottom {
  width: min(92vw, 1500px);
  margin: 0 auto;
  padding: 18px 0 24px;
  border-top: 1px solid rgba(255,255,255,.09);
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  color: rgba(255,255,255,.62);
  font-weight: 700;
  font-size: 13px;
}

.dc-footer-bottom a {
  color: var(--gold);
  text-decoration: none;
}

/* Botón volver arriba */
.dc-back-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 80;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  text-decoration: none;
  color: #2a1600;
  background: linear-gradient(135deg, var(--orange), var(--gold));
  font-weight: 950;
  box-shadow: 0 14px 34px rgba(0,0,0,.35);
  transition: .22s ease;
}

.dc-back-top:hover {
  transform: translateY(-4px);
}

/* Pequeña etiqueta online visual */
.dc-online-dot {
  display: inline-block;
  width: 9px;
  height: 9px;
  margin-right: 7px;
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 0 14px rgba(56, 232, 120, .75);
}

/* Responsive footer */
@media (max-width: 920px) {
  .dc-footer-premium {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 620px) {
  .dc-footer-premium {
    grid-template-columns: 1fr;
  }

  .dc-footer-brand img {
    height: 62px;
  }

  .dc-back-top {
    width: 42px;
    height: 42px;
  }
}


/* =========================================================
   DRIVERCRAFT V1.5 - PAGINAS DE TIENDA COMPLETAS
   ========================================================= */

.dc-store-hero.dc-hero-money .dc-subhero-bg { background-image: url("assets/dinero-1000000.png") !important; }
.dc-store-hero.dc-hero-kits .dc-subhero-bg { background-image: url("assets/kit-supernova.png") !important; }
.dc-store-hero.dc-hero-keys .dc-subhero-bg { background-image: url("assets/llave-supernova.png") !important; }
.dc-store-hero.dc-hero-commands .dc-subhero-bg { background-image: url("assets/cmd-fly.png") !important; }
.dc-store-hero.dc-hero-protections .dc-subhero-bg { background-image: url("assets/proteccion-512.png") !important; }

.dc-store-section {
  position: relative;
  padding: 54px 0 76px;
  background: linear-gradient(180deg, #fff4da 0%, #fff8e9 100%);
  color: #0b0d10;
}

.dc-store-section:before {
  content: "";
  position: absolute;
  top: -36px;
  left: 0;
  right: 0;
  height: 60px;
  background: #fff4da;
  clip-path: polygon(0 35%, 8% 55%, 16% 40%, 26% 58%, 38% 35%, 50% 55%, 62% 38%, 76% 58%, 88% 36%, 100% 55%, 100% 100%, 0 100%);
}

.dc-products-grid {
  width: min(92vw, 1500px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
}

.dc-product-card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  border-radius: 24px;
  color: white;
  background: #0b0d10;
  box-shadow: 0 28px 60px rgba(0,0,0,.24);
  border: 1px solid rgba(255,255,255,.14);
  transition: .25s ease;
}

.dc-product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 34px 72px rgba(0,0,0,.30);
  filter: saturate(1.08);
}

.dc-product-wide {
  grid-column: 1 / -1;
  max-width: 760px;
  justify-self: center;
}

.dc-product-image {
  position: relative;
  height: 310px;
  overflow: hidden;
  background: #05070b;
}

.dc-product-wide .dc-product-image {
  height: 390px;
}

.dc-product-image:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, #0b0d10 100%);
}

.dc-product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.02);
  transition: .28s ease;
}

.dc-product-card:hover .dc-product-image img {
  transform: scale(1.09);
}

.dc-product-content {
  padding: 0 24px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.dc-product-tag {
  width: fit-content;
  margin-top: -22px;
  z-index: 2;
  display: inline-flex;
  padding: 8px 13px;
  border-radius: 999px;
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.20);
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.dc-product-card h3 {
  margin: 16px 0 8px;
  font-size: 32px;
  font-weight: 950;
  line-height: .95;
  letter-spacing: -1.4px;
  color: var(--gold);
}

.dc-product-card p {
  margin: 0;
  color: rgba(255,255,255,.86);
  line-height: 1.48;
  font-weight: 650;
}

.dc-product-price {
  margin: 18px 0;
  padding: 14px 16px;
  border-radius: 15px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.13);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.dc-product-price strong {
  color: var(--gold);
  text-transform: uppercase;
  font-size: 12px;
}

.dc-product-price span {
  font-weight: 950;
  font-size: 22px;
}

.dc-product-benefits {
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
  display: grid;
  gap: 9px;
}

.dc-product-benefits li {
  position: relative;
  padding: 11px 12px 11px 34px;
  border-radius: 13px;
  background: rgba(255,255,255,.075);
  border: 1px solid rgba(255,255,255,.08);
  color: rgba(255,255,255,.86);
  font-weight: 750;
  line-height: 1.35;
}

.dc-product-benefits li:before {
  content: "✓";
  position: absolute;
  left: 13px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--green);
  font-weight: 950;
}

.dc-product-buy {
  position: relative;
  overflow: hidden;
  margin-top: auto;
  display: block;
  text-align: center;
  padding: 15px 18px;
  border-radius: 999px;
  text-decoration: none;
  color: #2a1600;
  background: linear-gradient(135deg, var(--orange), var(--gold));
  font-weight: 950;
  box-shadow: 0 16px 34px rgba(0,0,0,.28);
  transition: .2s ease;
}

.dc-product-buy:hover {
  transform: translateY(-3px);
}

.dc-product-buy:after {
  content: "";
  position: absolute;
  inset: 0;
  left: -140%;
  background: linear-gradient(110deg, transparent, rgba(255,255,255,.38), transparent);
  transform: skewX(-20deg);
  transition: .55s ease;
}

.dc-product-buy:hover:after {
  left: 140%;
}

.dc-money-1 h3, .dc-money-2 h3, .dc-money-3 h3 { color: #ffd15a; }
.dc-kit-1 h3, .dc-kit-2 h3, .dc-kit-3 h3 { color: #8cf6ff; }
.dc-key-1 h3 { color: #d86bff; }
.dc-cmd-1 h3, .dc-cmd-2 h3, .dc-cmd-3 h3, .dc-cmd-4 h3, .dc-cmd-5 h3 { color: #d86bff; }
.dc-prot-1 h3 { color: #2f73ff; }
.dc-prot-2 h3 { color: #48dcff; }
.dc-prot-3 h3 { color: #38e878; }

.dc-back-top {
  border: 0;
  cursor: pointer;
}

@media (max-width: 1180px) {
  .dc-products-grid {
    grid-template-columns: 1fr;
  }

  .dc-product-wide {
    max-width: none;
  }

  .dc-product-image,
  .dc-product-wide .dc-product-image {
    height: 360px;
  }
}

@media (max-width: 620px) {
  .dc-product-image,
  .dc-product-wide .dc-product-image {
    height: 280px;
  }

  .dc-product-card h3 {
    font-size: 28px;
  }
}


/* =========================================================
   DRIVERCRAFT V1.6 - PRECIOS MAS VISIBLES
   ========================================================= */

/* Carrito en USD */
.dc-cart-info span,
.dc-cart span {
  color: var(--gold) !important;
  text-shadow: 0 0 14px rgba(255, 209, 90, .28) !important;
}

/* Precio en productos: más grande y con más presencia */
.dc-product-price,
.dc-rank-price {
  position: relative !important;
  overflow: hidden !important;
  padding: 18px 18px !important;
  border-radius: 18px !important;
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 209, 90, .20), transparent 40%),
    linear-gradient(135deg, rgba(255, 209, 90, .16), rgba(255,255,255,.07)) !important;
  border: 1px solid rgba(255, 209, 90, .35) !important;
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,.05),
    0 12px 28px rgba(0,0,0,.22) !important;
}

.dc-product-price:before,
.dc-rank-price:before {
  content: "";
  position: absolute;
  inset: -1px;
  background: linear-gradient(110deg, transparent, rgba(255,255,255,.16), transparent);
  transform: translateX(-100%);
  animation: dcPriceShine 4.8s ease-in-out infinite;
}

@keyframes dcPriceShine {
  0%, 72% { transform: translateX(-110%); }
  100% { transform: translateX(110%); }
}

.dc-product-price strong,
.dc-rank-price strong {
  position: relative;
  z-index: 2;
  color: rgba(255,255,255,.72) !important;
  font-size: 12px !important;
  letter-spacing: .7px !important;
}

.dc-product-price span,
.dc-rank-price span {
  position: relative;
  z-index: 2;
  color: var(--gold) !important;
  font-size: 30px !important;
  font-weight: 950 !important;
  line-height: .95 !important;
  text-shadow: 0 0 18px rgba(255, 209, 90, .32) !important;
}

/* Botón de compra con el precio más conectado visualmente */
.dc-product-buy,
.dc-rank-buy {
  margin-top: 14px !important;
  box-shadow:
    0 16px 34px rgba(0,0,0,.30),
    0 0 22px rgba(255, 209, 90, .18) !important;
}

/* En móvil evitar que el precio se rompa */
@media (max-width: 620px) {
  .dc-product-price span,
  .dc-rank-price span {
    font-size: 25px !important;
  }
}


/* DRIVERSTORE PRO CART DRAWER */
.dc-cart { cursor: pointer; }
.dc-cart-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,.62); backdrop-filter: blur(4px); opacity: 0; pointer-events: none; z-index: 9998; transition: .22s ease;
}
.dc-cart-drawer {
  position: fixed; top: 0; right: 0; height: 100vh; width: min(94vw, 440px); background: linear-gradient(180deg, #0b0d10, #131321); color: #fff; z-index: 9999; transform: translateX(105%); transition: .28s cubic-bezier(.2,.8,.2,1); box-shadow: -30px 0 70px rgba(0,0,0,.45); border-left: 1px solid rgba(255,255,255,.12); display: flex; flex-direction: column;
}
body.dc-cart-open .dc-cart-overlay { opacity: 1; pointer-events: auto; }
body.dc-cart-open .dc-cart-drawer { transform: translateX(0); }
.dc-cart-drawer-head { padding: 22px; display:flex; justify-content:space-between; align-items:flex-start; border-bottom:1px solid rgba(255,255,255,.1); }
.dc-cart-drawer-head span { color: var(--gold); font-weight: 950; text-transform: uppercase; font-size:12px; letter-spacing:.6px; }
.dc-cart-drawer-head h2 { margin: 5px 0 0; font-size: 34px; line-height: .95; }
.dc-cart-close { width: 42px; height: 42px; border-radius: 50%; border:1px solid rgba(255,255,255,.12); background:rgba(255,255,255,.08); color:#fff; cursor:pointer; font-size:28px; line-height:1; }
.dc-cart-drawer-body { padding: 18px; overflow:auto; flex:1; }
.dc-drawer-empty { text-align:center; padding: 40px 10px; }
.dc-drawer-empty h3 { font-size: 26px; margin:0 0 10px; color: var(--gold); }
.dc-drawer-items { display:grid; gap: 14px; }
.dc-drawer-item { display:grid; grid-template-columns: 92px 1fr; gap: 12px; padding: 12px; border-radius: 18px; background: rgba(255,255,255,.075); border:1px solid rgba(255,255,255,.1); transform: translateX(0); opacity:1; transition:.22s ease; }
.dc-drawer-item.removing { transform: translateX(35px); opacity:0; }
.dc-drawer-item img { width:92px; height:92px; object-fit:cover; border-radius:14px; }
.dc-drawer-item strong { display:block; color: var(--gold); font-size:17px; }
.dc-drawer-item small { display:block; opacity:.7; margin:3px 0 5px; }
.dc-drawer-price { font-weight:950; margin-bottom:8px; }
.dc-drawer-controls { display:flex; gap:7px; align-items:center; flex-wrap:wrap; }
.dc-drawer-controls button { border:0; cursor:pointer; border-radius:999px; min-width:30px; height:30px; padding:0 10px; font-weight:950; background:linear-gradient(135deg,var(--orange),var(--gold)); color:#2a1600; }
.dc-drawer-controls .danger { background:rgba(255,255,255,.12); color:#fff; }
.dc-drawer-summary { position:sticky; bottom:0; padding:18px; background:rgba(11,13,16,.96); border-top:1px solid rgba(255,255,255,.1); }
.dc-drawer-summary > div { display:flex; justify-content:space-between; align-items:center; margin-bottom:14px; font-size:20px; }
.dc-drawer-summary strong { color: var(--gold); font-size:28px; }
.dc-drawer-summary .dc-product-buy { display:block; width:100%; text-align:center; }
.dc-drawer-link { width:100%; margin-top:10px; background:transparent; color:#fff; border:0; cursor:pointer; font-weight:850; opacity:.85; }
.dc-add-toast { position: fixed; right: 24px; bottom: 24px; z-index:10000; padding:14px 18px; border-radius:999px; background:linear-gradient(135deg,var(--orange),var(--gold)); color:#2a1600; font-weight:950; box-shadow:0 20px 55px rgba(0,0,0,.32); transform: translateY(30px); opacity:0; pointer-events:none; transition:.24s ease; }
.dc-add-toast.show { transform: translateY(0); opacity:1; }
button.dc-product-buy, button.dc-rank-buy { border:0; cursor:pointer; font-family:inherit; }
.dc-product-buy.is-loading, .dc-rank-buy.is-loading { filter:saturate(.8); opacity:.8; }
@media(max-width:640px){.dc-cart-drawer{width:100vw}.dc-add-toast{left:16px;right:16px;text-align:center}.dc-drawer-item{grid-template-columns:78px 1fr}.dc-drawer-item img{width:78px;height:78px}}


/* SPRINT 15 - DriverStore final polish */
.dc-cart {
  position: relative;
}
.dc-cart::after {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 14px;
  opacity: 0;
  background: linear-gradient(135deg, rgba(255,209,90,.35), rgba(255,159,46,.08));
  pointer-events: none;
  transition: .2s ease;
}
.dc-cart:hover::after { opacity: 1; }

.dc-cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(460px, 94vw);
  height: 100vh;
  z-index: 9999;
  background: #080b0f;
  color: #fff;
  transform: translateX(110%);
  transition: transform .28s ease;
  box-shadow: -30px 0 80px rgba(0,0,0,.48);
  border-left: 1px solid rgba(255,255,255,.12);
  display: flex;
  flex-direction: column;
}
.dc-cart-open .dc-cart-drawer { transform: translateX(0); }
.dc-cart-overlay {
  position: fixed;
  inset: 0;
  z-index: 9998;
  background: rgba(0,0,0,.55);
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
}
.dc-cart-open .dc-cart-overlay {
  opacity: 1;
  pointer-events: auto;
}
.dc-cart-drawer-head {
  padding: 24px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.dc-cart-drawer-head span {
  color: var(--gold);
  font-weight: 950;
  text-transform: uppercase;
  font-size: 13px;
}
.dc-cart-drawer-head h2 {
  margin: 5px 0 0;
  font-size: 32px;
}
.dc-cart-close {
  border: 0;
  background: rgba(255,255,255,.1);
  color: #fff;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  font-size: 28px;
  cursor: pointer;
}
.dc-cart-drawer-body {
  padding: 18px 22px 24px;
  overflow: auto;
  flex: 1;
}
.dc-drawer-items {
  display: grid;
  gap: 14px;
}
.dc-drawer-item {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 13px;
  padding: 12px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 18px;
  animation: dcItemIn .22s ease both;
}
.dc-drawer-item.removing {
  animation: dcItemOut .2s ease both;
}
.dc-drawer-item img {
  width: 88px;
  height: 88px;
  object-fit: cover;
  border-radius: 14px;
}
.dc-drawer-item strong {
  display: block;
  font-size: 16px;
  margin-bottom: 2px;
}
.dc-drawer-item small {
  display: block;
  color: rgba(255,255,255,.65);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 11px;
}
.dc-drawer-price {
  color: var(--gold);
  font-weight: 950;
  margin: 7px 0;
}
.dc-drawer-controls {
  display: flex;
  align-items: center;
  gap: 7px;
  flex-wrap: wrap;
}
.dc-drawer-controls button {
  border: 0;
  cursor: pointer;
  border-radius: 999px;
  min-width: 34px;
  min-height: 34px;
  padding: 0 12px;
  font-weight: 950;
  background: rgba(255,255,255,.12);
  color: #fff;
}
.dc-drawer-controls button:not(.danger) {
  background: linear-gradient(135deg, var(--orange), var(--gold));
  color: #231100;
}
.dc-drawer-controls .danger {
  background: rgba(255,76,76,.18);
}
.dc-drawer-summary {
  margin-top: 18px;
  padding: 18px;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255,209,90,.11), rgba(255,255,255,.04));
  border: 1px solid rgba(255,209,90,.22);
  box-shadow: 0 18px 50px rgba(0,0,0,.25);
}
.dc-drawer-summary > div:first-child {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}
.dc-drawer-summary span {
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 950;
  opacity: .78;
}
.dc-drawer-summary strong {
  color: var(--gold);
  font-size: 28px;
}
.dc-drawer-input {
  width: 100%;
  display: block;
  margin: 9px 0;
  padding: 14px 15px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.08);
  color: #fff;
  font-weight: 900;
  outline: none;
}
.dc-drawer-input:focus {
  border-color: rgba(255,209,90,.55);
  box-shadow: 0 0 0 3px rgba(255,209,90,.13);
}
.dc-drawer-link {
  width: 100%;
  display: block;
  margin-top: 10px;
  text-align: center;
  border: 0;
  border-radius: 14px;
  padding: 13px 14px;
  background: rgba(255,255,255,.08);
  color: #fff;
  font-weight: 950;
  text-decoration: none;
  cursor: pointer;
  font-family: inherit;
}
.dc-drawer-support {
  font-size: 12px;
  color: rgba(255,255,255,.72);
  line-height: 1.35;
}
.dc-add-toast {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 10000;
  padding: 15px 18px;
  border-radius: 16px;
  background: #10151b;
  color: #fff;
  border: 1px solid rgba(255,209,90,.35);
  box-shadow: 0 20px 60px rgba(0,0,0,.35);
  font-weight: 950;
  transform: translateY(20px);
  opacity: 0;
  pointer-events: none;
  transition: .22s ease;
}
.dc-add-toast.show {
  transform: translateY(0);
  opacity: 1;
}
.dc-drawer-empty {
  text-align: center;
  padding: 40px 10px;
}
.dc-support-mini {
  position: fixed;
  left: 24px;
  bottom: 24px;
  z-index: 120;
  display: inline-flex;
  gap: 8px;
  align-items: center;
  padding: 12px 15px;
  border-radius: 999px;
  background: rgba(8,11,15,.82);
  color: #fff;
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 14px 44px rgba(0,0,0,.25);
  text-decoration: none;
  font-weight: 950;
  backdrop-filter: blur(12px);
}
.dc-support-mini span {
  color: var(--gold);
}
.dc-product-buy.is-loading {
  opacity: .82;
}
.dc-checkout-help {
  text-align: center;
  margin: 25px auto;
  color: #0b0d10;
  font-weight: 900;
}
@keyframes dcItemIn {
  from { opacity: 0; transform: translateX(18px) scale(.98); }
  to { opacity: 1; transform: translateX(0) scale(1); }
}
@keyframes dcItemOut {
  to { opacity: 0; transform: translateX(30px) scale(.96); }
}
@media (max-width: 760px) {
  .dc-support-mini {
    left: 12px;
    bottom: 12px;
  }
  .dc-add-toast {
    left: 12px;
    right: 12px;
    bottom: 74px;
  }
}


/* SPRINT 16 - Web ready/pro final */
.dc-legal-footer {
  width: min(92vw, 1260px);
  margin: 30px auto 45px;
  padding: 18px 22px;
  border-radius: 18px;
  background: rgba(5, 8, 12, .78);
  border: 1px solid rgba(255,255,255,.1);
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  color: #fff;
  font-weight: 850;
}
.dc-legal-footer a {
  color: var(--gold);
  text-decoration: none;
}
.dc-legal-page {
  min-height: 100vh;
  padding: 150px 0 80px;
  background: linear-gradient(180deg,#fff4da,#fff8e9);
  color: #0b0d10;
}
.dc-legal-card {
  width: min(92vw, 980px);
  margin: 0 auto;
  background: #0b0d10;
  color: #fff;
  border-radius: 28px;
  padding: 34px;
  box-shadow: 0 24px 70px rgba(0,0,0,.22);
  line-height: 1.65;
}
.dc-legal-card h3 {
  color: var(--gold);
  font-size: 24px;
  margin-top: 0;
}
.dc-legal-card p,
.dc-legal-card li {
  color: rgba(255,255,255,.86);
  font-weight: 750;
}
.dc-support-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin: 22px 0;
}
.dc-support-grid div {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  padding: 16px;
  border-radius: 16px;
}
.dc-support-grid strong,
.dc-support-grid span {
  display: block;
}
.dc-support-grid strong { color: var(--gold); }
.dc-support-grid span { margin-top: 4px; color: #fff; }
.dc-order-next-steps {
  width: min(92vw, 980px);
  margin: 24px auto;
  background: rgba(11,13,16,.88);
  color: #fff;
  border-radius: 24px;
  padding: 24px;
  display: grid;
  gap: 12px;
}
.dc-order-next-steps h3 {
  margin: 0 0 8px;
  color: var(--gold);
}
.dc-order-next-steps div {
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
}
.dc-order-next-steps strong,
.dc-order-next-steps span {
  display: block;
}
.dc-order-next-steps span {
  color: rgba(255,255,255,.76);
  margin-top: 4px;
}
@media (max-width: 760px) {
  .dc-support-grid { grid-template-columns: 1fr; }
  .dc-legal-card { padding: 24px; }
}


/* SPRINT 17 - Polish final de compra */
.dc-cart-open {
  overflow: hidden;
}

.dc-cart-drawer {
  top: 0 !important;
  bottom: 0 !important;
  right: 0 !important;
  height: 100dvh !important;
  max-height: 100dvh !important;
  position: fixed !important;
  display: flex !important;
  flex-direction: column !important;
}

.dc-cart-drawer-head {
  flex: 0 0 auto !important;
}

.dc-cart-drawer-body {
  flex: 1 1 auto !important;
  overflow-y: auto !important;
  overflow-x: hidden !important;
  padding-bottom: 28px !important;
  scrollbar-width: thin;
}

.dc-cart-drawer-body::-webkit-scrollbar {
  width: 8px;
}
.dc-cart-drawer-body::-webkit-scrollbar-thumb {
  background: rgba(255,209,90,.35);
  border-radius: 999px;
}

.dc-drawer-summary {
  position: sticky;
  bottom: 0;
  backdrop-filter: blur(18px);
  background: linear-gradient(180deg, rgba(44,36,18,.94), rgba(13,15,17,.96)) !important;
}

.dc-drawer-support {
  margin: 12px 0 0 !important;
  text-align: center !important;
  color: rgba(255,255,255,.58) !important;
  font-size: 12px !important;
  line-height: 1.35 !important;
  font-weight: 700 !important;
}
.dc-drawer-support strong {
  display: inline-block !important;
  margin-top: 3px !important;
  color: rgba(255,255,255,.78) !important;
  font-size: 13px !important;
  letter-spacing: .1px !important;
  word-break: break-word !important;
}

.dc-pay-btn {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 10px !important;
  transition: transform .18s ease, filter .18s ease, box-shadow .18s ease !important;
}
.dc-pay-btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.04);
}
.dc-pay-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 26px;
  border-radius: 7px;
  font-size: 12px;
  font-weight: 950;
  background: rgba(255,255,255,.92);
}
.dc-pay-logo-paypal {
  color: #003087;
}
.dc-pay-logo-mp {
  color: #009ee3;
}

.dc-order-card .dc-pay-note,
.dc-order-card [class*="note"] {
  color: rgba(255,255,255,.82);
}

.dc-order-next-steps {
  border: 1px solid rgba(255,255,255,.1);
  box-shadow: 0 22px 60px rgba(0,0,0,.18);
}
.dc-order-next-steps div {
  transition: transform .18s ease, background .18s ease;
}
.dc-order-next-steps div:hover {
  transform: translateY(-2px);
  background: rgba(255,255,255,.09);
}

.dc-checkout-help,
.dc-legal-footer span {
  font-size: 13px !important;
  color: rgba(10,13,16,.62) !important;
  font-weight: 850 !important;
}

.dc-support-mini {
  font-size: 13px !important;
}
.dc-support-mini span {
  font-size: 13px !important;
}

.is-loading {
  opacity: .75 !important;
  pointer-events: none !important;
  position: relative;
}
.is-loading::after {
  content: "";
  display: inline-block;
  width: 13px;
  height: 13px;
  margin-left: 8px;
  border-radius: 50%;
  border: 2px solid rgba(0,0,0,.25);
  border-top-color: rgba(0,0,0,.75);
  animation: dcSpin .7s linear infinite;
}

@keyframes dcSpin {
  to { transform: rotate(360deg); }
}

@media (max-width: 620px) {
  .dc-cart-drawer {
    width: 100vw !important;
  }
  .dc-drawer-summary {
    position: relative;
  }
}


/* SPRINT 18 - Legal PRO + aceptación obligatoria */
.dc-legal-checks {
  margin: 14px 0 12px;
  padding: 14px;
  border-radius: 16px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.11);
  display: grid;
  gap: 9px;
}
.dc-legal-checks label {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  color: rgba(255,255,255,.78);
  font-size: 12.5px;
  line-height: 1.35;
  font-weight: 760;
}
.dc-legal-checks input {
  margin-top: 2px;
  accent-color: #ffd15a;
}
.dc-legal-checks a {
  color: #ffd15a;
  font-weight: 950;
  text-decoration: none;
}
.dc-legal-subtitle {
  width: min(92vw, 820px);
  margin: 10px auto 0;
  color: rgba(11,13,16,.70);
  font-weight: 850;
  text-align: center;
}
.dc-legal-pro {
  display: grid;
  gap: 18px;
}
.dc-legal-intro {
  padding: 18px 20px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(255,209,90,.16), rgba(255,255,255,.05));
  border: 1px solid rgba(255,209,90,.24);
}
.dc-legal-intro strong,
.dc-legal-intro span {
  display: block;
}
.dc-legal-intro strong {
  color: #ffd15a;
  font-size: 20px;
}
.dc-legal-intro span {
  margin-top: 4px;
  color: rgba(255,255,255,.72);
  font-weight: 800;
}
.dc-legal-section {
  padding: 18px 20px;
  border-radius: 18px;
  background: rgba(255,255,255,.055);
  border: 1px solid rgba(255,255,255,.095);
}
.dc-legal-section h3 {
  margin: 0 0 10px;
}
.dc-legal-section ul {
  margin: 10px 0 0;
  padding-left: 20px;
}
.dc-legal-company {
  margin-top: 8px;
  padding: 20px;
  border-radius: 20px;
  background: rgba(255,209,90,.09);
  border: 1px solid rgba(255,209,90,.22);
}


/* SPRINT 18.1 - Legal compacto corregido */
.dc-legal-checks-compact {
  display: flex !important;
  flex-direction: column !important;
  gap: 10px !important;
  padding: 14px 15px !important;
  border-radius: 16px !important;
  background: rgba(255,255,255,.055) !important;
  border: 1px solid rgba(255,255,255,.12) !important;
}
.dc-legal-checks-compact label {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  width: 100% !important;
  margin: 0 !important;
  color: rgba(255,255,255,.84) !important;
  font-size: 13px !important;
  line-height: 1.25 !important;
  font-weight: 850 !important;
}
.dc-legal-checks-compact input[type="checkbox"] {
  flex: 0 0 auto !important;
  width: 16px !important;
  height: 16px !important;
  margin: 0 !important;
  accent-color: #ffd15a !important;
}
.dc-legal-checks-compact span {
  display: inline !important;
}
.dc-policy-links {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 8px !important;
  padding-left: 26px !important;
  margin-top: 0 !important;
}
.dc-policy-links a {
  display: inline-flex !important;
  align-items: center !important;
  color: #ffd15a !important;
  text-decoration: none !important;
  font-size: 12.5px !important;
  font-weight: 950 !important;
  line-height: 1.2 !important;
}
.dc-policy-links a:hover {
  text-decoration: underline !important;
}
.dc-legal-checks-compact p {
  margin: 0 !important;
  padding-left: 26px !important;
  color: rgba(255,255,255,.55) !important;
  font-size: 11.5px !important;
  line-height: 1.3 !important;
  font-weight: 700 !important;
}
@media (max-width: 540px) {
  .dc-policy-links {
    gap: 6px !important;
  }
  .dc-policy-links a {
    font-size: 12px !important;
  }
}

/* v1.2 Buyer info + email */
.dc-drawer-input#dc-drawer-buyer-name {
  border-color: rgba(255,209,90,.18);
}

/* v1.4 Post pago */
.dc-returning-home {
  margin-top: 16px !important;
  background: rgba(31,191,117,.10) !important;
  border-color: rgba(31,191,117,.24) !important;
  color: rgba(255,255,255,.92) !important;
}


/* =========================================================
   DriverStore FINAL - carrito lateral estable en producción
   Corrige que el formulario se quede fijo encima de productos.
   ========================================================= */
body.dc-cart-open {
  overflow: hidden !important;
}

.dc-cart-drawer {
  overflow: hidden !important;
  max-height: 100vh !important;
}

.dc-cart-drawer-body {
  flex: 1 1 auto !important;
  min-height: 0 !important;
  overflow-y: auto !important;
  overflow-x: hidden !important;
  padding: 18px !important;
  scroll-behavior: smooth;
  overscroll-behavior: contain;
}

.dc-drawer-items {
  display: grid !important;
  gap: 14px !important;
  margin: 0 0 18px !important;
}

.dc-drawer-checkout,
.dc-drawer-summary {
  position: relative !important;
  inset: auto !important;
  bottom: auto !important;
  top: auto !important;
  z-index: 1 !important;
  margin-top: 18px !important;
  padding: 18px !important;
  border-radius: 22px !important;
  background: rgba(11, 13, 16, .96) !important;
  border: 1px solid rgba(255, 209, 90, .22) !important;
  box-shadow: 0 18px 50px rgba(0,0,0,.32) !important;
}

.dc-drawer-checkout > div:first-child,
.dc-drawer-summary > div:first-child {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  gap: 12px !important;
  margin-bottom: 14px !important;
}

.dc-drawer-input,
.dc-input {
  width: 100% !important;
}

@media (max-width: 620px) {
  .dc-cart-drawer {
    width: 100vw !important;
  }

  .dc-cart-drawer-head {
    padding: 18px !important;
  }

  .dc-cart-drawer-head h2 {
    font-size: 30px !important;
  }

  .dc-cart-drawer-body {
    padding: 14px !important;
  }

  .dc-drawer-item {
    grid-template-columns: 78px 1fr !important;
    gap: 10px !important;
  }

  .dc-drawer-item img {
    width: 78px !important;
    height: 78px !important;
  }

  .dc-drawer-controls button {
    min-width: 34px !important;
    height: 34px !important;
  }
}



/* DriverStore estabilidad final: redes, footer centrado y sync seguro */
.dc-social-link { gap: 8px; align-items:center; }
.dc-social-icon { width:22px;height:22px;border-radius:999px;display:inline-flex;align-items:center;justify-content:center;font-weight:950;font-size:14px;line-height:1;box-shadow:0 8px 20px rgba(0,0,0,.22); }
.dc-main-icon { background:rgba(77,223,255,.16); color:#9cf7ff; }
.dc-facebook-icon { background:#1877f2; color:#fff; font-family:Arial, sans-serif; font-size:18px; }
.dc-tiktok-icon { background:linear-gradient(135deg,#00f2ea,#ff0050); color:#fff; font-size:16px; }
.dc-legal-footer { text-align:center; align-items:center; justify-content:center !important; }
.dc-legal-footer span { color:#f4f4f4; opacity:.9; }
.dc-dynamic-hero .dc-subhero-bg { background: url("assets/background.jpg") center/cover no-repeat; }
.dc-empty { grid-column:1/-1; padding:34px; border-radius:24px; background:rgba(255,255,255,.05); border:1px solid rgba(255,255,255,.10); color:#fff; text-align:center; font-weight:850; }
.dc-product-card img[src=""], .dc-rank-image img[src=""] { visibility:hidden; }
.dc-grid { grid-template-columns: repeat(4, minmax(220px, 1fr)); }
@media(max-width:1200px){ .dc-grid { grid-template-columns: repeat(3, minmax(220px, 1fr)); } }
@media(max-width:800px){ .dc-grid { grid-template-columns: repeat(2, minmax(180px, 1fr)); } }
@media(max-width:520px){ .dc-grid { grid-template-columns: 1fr; } }


/* DriverStore v1 Pets + navbar estable */
.dc-pets { --img: url("assets/cat-pets.png"); }
.dc-pets button { background: #8b5cf6; }
.dc-hero-pets .dc-subhero-bg { background: url("assets/cat-pets.png") center/cover no-repeat; }
.dc-nav { gap: 10px !important; flex-wrap: nowrap !important; white-space: nowrap; }
.dc-nav a { font-size: 12px !important; padding: 8px 8px; border-radius: 999px; }
.dc-header { grid-template-columns: auto minmax(0, 1fr) auto !important; gap: 14px !important; }
.dc-grid { grid-template-columns: repeat(4, minmax(230px, 1fr)) !important; gap: 26px !important; }
.dc-category { min-height: 280px; }
@media(max-width:1300px){ .dc-nav { gap: 7px !important; } .dc-nav a { font-size: 11px !important; padding: 7px 6px; } .dc-cart { min-width: 150px; } }
@media(max-width:1050px){ .dc-nav { flex-wrap: wrap !important; } }


/* DriverStore v1 final stability polish */
.dc-header { grid-template-columns: 260px minmax(0, 1fr) 190px; gap: 16px; }
.dc-nav { gap: 10px; justify-content: center; flex-wrap: nowrap; overflow: visible; }
.dc-nav a { font-size: 13px !important; padding: 9px 10px; border-radius: 999px; white-space: nowrap; background: rgba(255,255,255,.055); border: 1px solid rgba(255,255,255,.075); min-width: 0; text-align:center; }
.dc-nav a.active, .dc-nav a:first-child { background: rgba(255, 209, 90, .14); color: var(--gold); border-color: rgba(255, 209, 90, .28); }
.dc-social-icon { font-family: Inter, Arial, sans-serif; }
.dc-facebook-icon { background:#1877f2;color:white; }
.dc-tiktok-icon { background:linear-gradient(135deg,#00f2ea,#ff0050);color:white; }
.dc-main-icon { background:rgba(255,209,90,.22);color:#ffd15a; }
.dc-status-row { align-items:center; }
.dc-server-status { min-width:118px; font-size:12px; letter-spacing:.04em; }
.dc-server-status.online { background: rgba(34,197,94,.20) !important; border:1px solid rgba(34,197,94,.42); color:#bbf7d0; }
.dc-server-status.offline { background: rgba(239,68,68,.18) !important; border:1px solid rgba(239,68,68,.38); color:#fecaca; }
.dc-grid { grid-template-columns: repeat(4, minmax(230px, 1fr)) !important; gap: 24px !important; }
.dc-category { min-height: 330px; border-radius: 28px; }
.dc-category div { padding: 28px; }
.dc-category h3 { font-size: 30px; }
.dc-category p { font-size: 15px; line-height: 1.55; }
.dc-legal-footer { text-align:center; align-items:center; justify-content:center !important; gap: 16px 22px; }
.dc-legal-footer a, .dc-legal-footer span { display:inline-flex; }
.dc-subhero-content .dc-badge, .dc-section-head span { letter-spacing:.08em; }
.dc-product-dynamic .dc-product-benefits { margin-top: 14px; }
@media (max-width: 1400px) { .dc-header { width: min(96vw, 1500px); grid-template-columns: 220px minmax(0, 1fr) 170px; } .dc-nav a { font-size: 12px !important; padding: 8px 8px; } .dc-logo img { height: 60px; } }
@media (max-width: 1100px) { .dc-header { position:absolute; height:auto; grid-template-columns: 1fr; padding:18px; } .dc-nav { flex-wrap:wrap; } .dc-cart { justify-self:stretch; } .dc-grid { grid-template-columns: repeat(2, minmax(220px, 1fr)) !important; } }
@media (max-width: 620px) { .dc-grid { grid-template-columns: 1fr !important; } .dc-category { min-height: 280px; } }


/* =========================================================
   DriverStore V1 estabilidad final - no romper home/categorías
   ========================================================= */
.dc-header {
  grid-template-columns: 250px minmax(0, 1fr) 190px !important;
  gap: 18px !important;
}
.dc-nav {
  opacity: 0;
  min-height: 40px;
  justify-content: center !important;
  gap: 9px !important;
  flex-wrap: nowrap !important;
  overflow: visible !important;
  transition: opacity .16s ease;
}
body.ds-nav-ready .dc-nav { opacity: 1; }
.dc-nav a {
  font-size: clamp(11px, .78vw, 13px) !important;
  padding: 8px 9px !important;
  min-height: 36px;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  line-height: 1 !important;
  letter-spacing: .01em;
  white-space: nowrap;
}
.dc-cart { min-width: 178px; }

.dc-server-card .dc-status-row {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 4px 12px;
}
.dc-server-card .dc-status-row > span { grid-column: 1 / 3; }
.dc-server-state {
  display: inline-flex !important;
  align-items: center;
  gap: 8px;
  font-size: 18px !important;
}
.dc-status-dot {
  width: 11px;
  height: 11px;
  border-radius: 999px;
  display: inline-block;
  box-shadow: 0 0 16px currentColor;
}
.dc-status-dot.online { background: #22c55e; color: #22c55e; }
.dc-status-dot.offline { background: #ef4444; color: #ef4444; }
.dc-server-status {
  min-width: auto !important;
  padding: 7px 12px !important;
  border-radius: 999px !important;
  font-size: 11px !important;
  font-weight: 900 !important;
  letter-spacing: .02em !important;
  text-transform: uppercase;
}
.dc-server-status.online { background: rgba(34,197,94,.16) !important; border:1px solid rgba(34,197,94,.34) !important; color:#bbf7d0 !important; }
.dc-server-status.offline { background: rgba(239,68,68,.16) !important; border:1px solid rgba(239,68,68,.34) !important; color:#fecaca !important; }

.dc-product-benefits,
.dc-rank-benefits {
  text-align: left;
}
.dc-product-benefits li,
.dc-rank-benefits li {
  line-height: 1.35;
}
.dc-product-dynamic .dc-product-benefits {
  margin-top: 14px;
}
.dc-product-dynamic .dc-product-benefits:empty { display:none; }

.dc-legal-footer {
  justify-content: center !important;
  text-align: center !important;
  gap: 24px !important;
  flex-wrap: wrap;
}

@media (max-width: 1450px) {
  .dc-header { width: min(97vw, 1540px) !important; grid-template-columns: 220px minmax(0, 1fr) 170px !important; }
  .dc-logo img { height: 58px !important; }
  .dc-nav { gap: 6px !important; }
  .dc-nav a { font-size: 11px !important; padding: 7px 7px !important; }
}
@media (max-width: 1120px) {
  .dc-header { grid-template-columns: 1fr !important; height:auto !important; }
  .dc-nav { flex-wrap: wrap !important; opacity: 1; }
  .dc-cart { justify-self: stretch; }
}

/* DriverStore stability patch: admin-sync safe visuals */
body[data-dynamic-category]:not(.ds-category-loaded) .dc-dynamic-hero .dc-subhero-content,
body[data-dynamic-category]:not(.ds-category-loaded) .dc-products-section {
  opacity: 0;
  pointer-events: none;
}
body[data-dynamic-category].ds-category-loaded .dc-dynamic-hero .dc-subhero-content,
body[data-dynamic-category].ds-category-loaded .dc-products-section {
  opacity: 1;
  transition: opacity .18s ease;
}
.dc-nav {
  min-height: 40px;
  align-items: center;
}
.dc-nav a {
  flex: 0 0 auto;
  min-width: 74px;
}
.dc-server-card .dc-status-row {
  grid-template-columns: 1fr auto !important;
}
.dc-server-card .dc-status-row > span { grid-column: auto !important; }
.dc-server-state {
  justify-content: flex-end;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(34,197,94,.12);
  border: 1px solid rgba(34,197,94,.28);
  color: #d1fae5;
  font-size: 16px !important;
  text-transform: uppercase;
}
.dc-server-status { display: none !important; }
.dc-product-benefits li,
.dc-rank-benefits li {
  font-size: 16px;
  line-height: 1.42;
}
.dc-product-dynamic .dc-product-benefits li { font-size: 15px; }
body:not(.ds-nav-ready) .dc-nav {
  opacity: 0;
}
body.ds-nav-ready .dc-nav {
  opacity: 1;
  transition: opacity .15s ease;
}

/* DriverStore final safe stability: no nav flicker, better server status */
.dc-nav,
body:not(.ds-nav-ready) .dc-nav,
body.ds-nav-ready .dc-nav {
  opacity: 1 !important;
  transition: none !important;
}
.dc-nav a:first-child:not(.active) {
  background: rgba(255,255,255,.055) !important;
  color: #fff !important;
  border-color: rgba(255,255,255,.075) !important;
}
.dc-nav a.active {
  background: linear-gradient(135deg, rgba(255,177,58,.95), rgba(148,238,255,.95)) !important;
  color: #2a1600 !important;
  border-color: rgba(255,209,90,.48) !important;
  box-shadow: 0 10px 24px rgba(255,177,58,.18);
}
.dc-server-state {
  background: rgba(34,197,94,.13) !important;
  border: 1px solid rgba(34,197,94,.32) !important;
  color: #dcfce7 !important;
  font-size: 14px !important;
  text-transform: uppercase;
  letter-spacing: .02em;
}
.dc-server-state small {
  color: #86efac;
  font-weight: 950;
  margin-left: 2px;
}
.dc-product-dynamic .dc-product-content > p {
  min-height: 44px;
}
.dc-product-benefits,
.dc-rank-benefits {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 16px 0 0;
  list-style: none;
}
.dc-product-benefits li,
.dc-rank-benefits li {
  position: relative;
  padding: 13px 14px 13px 42px;
  border-radius: 12px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.10);
  color: rgba(255,255,255,.88);
  font-weight: 850;
  line-height: 1.35;
}
.dc-product-benefits li:before,
.dc-rank-benefits li:before {
  content: '✓';
  position: absolute;
  left: 15px;
  top: 12px;
  color: #38e878;
  font-weight: 950;
}


/* =========================================================
   DRIVERSTORE V1 FINAL PUBLIC FREEZE - ESTABLE PARA PRODUCCION
   La tienda publica queda congelada en paginas oficiales.
   Admin no reescribe textos, heroes ni categorias publicas.
   ========================================================= */
.dc-nav,
body:not(.ds-nav-ready) .dc-nav,
body.ds-nav-ready .dc-nav {
  opacity: 1 !important;
  transition: none !important;
  min-height: 42px;
}
.dc-nav a {
  flex: 0 0 auto !important;
  min-width: auto !important;
  font-size: 12px !important;
  padding: 8px 9px !important;
  line-height: 1 !important;
}
.dc-nav a.active {
  background: linear-gradient(135deg, rgba(255,215,125,.95), rgba(255,245,210,.90)) !important;
  color: #2d1a00 !important;
  border-color: rgba(255,220,130,.55) !important;
}
.dc-hero-keys .dc-subhero-bg,
.dc-store-hero.dc-hero-keys .dc-subhero-bg {
  background-image: url("assets/llave-supernova.png") !important;
  background-position: center center !important;
  background-size: cover !important;
  transform: scale(1.035) !important;
}
.dc-server-card .dc-status-row {
  grid-template-columns: 1fr auto !important;
  align-items: center !important;
}
.dc-server-state {
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  width: auto !important;
  padding: 7px 13px !important;
  border-radius: 999px !important;
  background: rgba(34,197,94,.14) !important;
  border: 1px solid rgba(34,197,94,.34) !important;
  color: #d9ffe9 !important;
  font-size: 14px !important;
  text-transform: uppercase !important;
  letter-spacing: .02em !important;
}
.dc-status-dot.online, .dc-online-dot {
  display: inline-block !important;
  width: 10px !important;
  height: 10px !important;
  border-radius: 50% !important;
  background: #22c55e !important;
  box-shadow: 0 0 14px rgba(34,197,94,.75) !important;
}
.dc-legal-footer {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  text-align: center !important;
  gap: 18px 26px !important;
  flex-wrap: wrap !important;
}
.dc-product-benefits li,
.dc-rank-benefits li {
  font-size: 15.5px !important;
  line-height: 1.38 !important;
}
@media (max-width: 1450px) {
  .dc-header { width: min(97vw, 1540px) !important; grid-template-columns: 220px minmax(0,1fr) 168px !important; }
  .dc-logo img { height: 58px !important; }
  .dc-nav { gap: 6px !important; }
  .dc-nav a { font-size: 10.5px !important; padding: 7px 6px !important; }
}
@media (max-width: 1100px) {
  .dc-header { grid-template-columns: 1fr !important; height: auto !important; padding: 16px !important; }
  .dc-nav { flex-wrap: wrap !important; justify-content: center !important; }
  .dc-cart { justify-self: stretch !important; }
}


/* Ajuste final: Pets en rosa/huella y precios visibles sincronizados desde API */
.dc-pets button {
  background: linear-gradient(135deg, #ff5fc8, #ff9ce8) !important;
  color: #fff !important;
  box-shadow: 0 14px 32px rgba(255, 95, 200, .28);
}
.dc-pets button:hover {
  filter: brightness(1.06);
}

/* =========================================================
   DRIVERSTORE RESPONSIVE EDITION - SAFE VISUAL ONLY
   Ajustes solo visuales para que la tienda se acomode en PC,
   portátiles, tablets y celulares sin tocar lógica/API.
   ========================================================= */

/* Base anti-overflow */
html, body {
  max-width: 100%;
  overflow-x: hidden !important;
}
img, video, canvas, svg {
  max-width: 100%;
}

/* Contenedores más fluidos */
.dc-hero-content,
.dc-subhero-content,
.dc-footer-premium,
.dc-footer-bottom,
.dc-products-grid,
.dc-grid,
.dc-cart-wrap {
  max-width: 100%;
}

/* Header desktop grande */
@media (min-width: 1501px) {
  .dc-header {
    width: min(94vw, 1780px) !important;
    grid-template-columns: 300px minmax(0, 1fr) 190px !important;
  }
  .dc-nav {
    gap: 12px !important;
  }
  .dc-nav a {
    font-size: 12px !important;
    padding: 9px 10px !important;
  }
  .dc-grid {
    grid-template-columns: repeat(4, minmax(240px, 1fr)) !important;
    width: min(90vw, 1520px) !important;
  }
}

/* Laptop común / pantallas medianas */
@media (max-width: 1500px) {
  .dc-header {
    width: min(97vw, 1420px) !important;
    grid-template-columns: 210px minmax(0, 1fr) 155px !important;
    gap: 10px !important;
    padding: 0 14px !important;
  }
  .dc-logo img {
    height: 56px !important;
  }
  .dc-nav {
    gap: 5px !important;
  }
  .dc-nav a {
    font-size: 10.5px !important;
    padding: 7px 6px !important;
    border-radius: 9px !important;
  }
  .dc-cart {
    min-width: 145px !important;
    padding: 9px 11px !important;
  }
  .dc-hero-content {
    width: min(94vw, 1400px) !important;
    grid-template-columns: minmax(0, 1fr) 320px !important;
    gap: 34px !important;
  }
  .dc-left h1 {
    font-size: clamp(48px, 6vw, 84px) !important;
  }
  .dc-left p {
    font-size: 15px !important;
  }
  .dc-grid {
    grid-template-columns: repeat(4, minmax(210px, 1fr)) !important;
    width: min(92vw, 1280px) !important;
  }
  .dc-products-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    width: min(92vw, 1280px) !important;
  }
  .dc-product-image {
    height: 250px !important;
  }
}

/* Tablets horizontales / pantallas pequeñas */
@media (max-width: 1180px) {
  .dc-header {
    position: absolute !important;
    top: 14px !important;
    width: min(94vw, 980px) !important;
    height: auto !important;
    grid-template-columns: 1fr !important;
    gap: 12px !important;
    padding: 15px !important;
  }
  .dc-logo {
    justify-content: center !important;
  }
  .dc-logo img {
    height: 64px !important;
  }
  .dc-nav {
    width: 100% !important;
    display: flex !important;
    flex-wrap: nowrap !important;
    justify-content: flex-start !important;
    gap: 8px !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    padding: 4px 4px 8px !important;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
  }
  .dc-nav a {
    flex: 0 0 auto !important;
    font-size: 11px !important;
    padding: 10px 12px !important;
    white-space: nowrap !important;
  }
  .dc-cart {
    justify-self: center !important;
    width: min(100%, 260px) !important;
    min-width: 0 !important;
  }
  .dc-hero {
    min-height: auto !important;
  }
  .dc-hero-content {
    padding-top: 250px !important;
    grid-template-columns: 1fr !important;
    gap: 28px !important;
  }
  .dc-server-card {
    width: min(100%, 620px) !important;
  }
  .dc-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
  .dc-grid {
    grid-template-columns: repeat(2, minmax(230px, 1fr)) !important;
  }
  .dc-products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
  .dc-product-wide {
    grid-column: auto !important;
    max-width: none !important;
  }
  .dc-footer-premium {
    grid-template-columns: 1fr 1fr !important;
    gap: 24px !important;
  }
  .dc-cart-wrap {
    grid-template-columns: 1fr !important;
  }
  .dc-cart-summary {
    position: static !important;
  }
}

/* Tablets verticales y celulares grandes */
@media (max-width: 760px) {
  .dc-header {
    top: 10px !important;
    width: calc(100vw - 22px) !important;
    border-radius: 16px !important;
    padding: 13px !important;
  }
  .dc-logo img {
    height: 56px !important;
  }
  .dc-nav a {
    font-size: 10.5px !important;
    padding: 9px 11px !important;
  }
  .dc-cart {
    width: 100% !important;
    max-width: 320px !important;
  }
  .dc-hero-content {
    padding-top: 238px !important;
    width: min(92vw, 620px) !important;
  }
  .dc-left {
    max-width: 100% !important;
  }
  .dc-left h1 {
    font-size: clamp(42px, 13vw, 68px) !important;
    line-height: .92 !important;
    letter-spacing: -2px !important;
  }
  .dc-left h2 {
    font-size: clamp(21px, 7vw, 32px) !important;
  }
  .dc-left p {
    font-size: 14.5px !important;
    line-height: 1.55 !important;
  }
  .dc-social-badges {
    gap: 8px !important;
  }
  .dc-social-badges .dc-badge,
  .dc-badge {
    font-size: 10.5px !important;
    padding: 8px 11px !important;
  }
  .dc-actions {
    display: grid !important;
    grid-template-columns: 1fr !important;
  }
  .dc-btn {
    width: 100% !important;
    min-width: 0 !important;
    justify-content: center !important;
    padding: 15px 16px !important;
  }
  .dc-stats {
    grid-template-columns: 1fr 1fr !important;
    padding: 12px !important;
  }
  .dc-server-card {
    padding: 18px !important;
  }
  .dc-info-row {
    padding: 11px 38px 11px 12px !important;
  }
  .dc-categories {
    padding: 48px 0 58px !important;
  }
  .dc-section-head {
    width: min(92vw, 620px) !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
  .dc-section-head h2 {
    font-size: clamp(28px, 9vw, 42px) !important;
  }
  .dc-grid {
    width: min(92vw, 620px) !important;
    grid-template-columns: 1fr !important;
    gap: 18px !important;
  }
  .dc-category {
    min-height: 250px !important;
  }
  .dc-category h3 {
    font-size: 21px !important;
  }
  .dc-category p {
    font-size: 13px !important;
  }
  .dc-subhero {
    min-height: auto !important;
  }
  .dc-subhero-content {
    padding-top: 238px !important;
    padding-bottom: 54px !important;
    width: min(92vw, 620px) !important;
  }
  .dc-subhero-content h1,
  .dc-subhero h1 {
    font-size: clamp(40px, 12vw, 64px) !important;
    letter-spacing: -2px !important;
  }
  .dc-subhero-actions {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }
  .dc-store-section,
  .dc-products-section {
    padding: 46px 0 58px !important;
  }
  .dc-products-grid {
    width: min(92vw, 620px) !important;
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }
  .dc-product-image,
  .dc-product-wide .dc-product-image {
    height: 260px !important;
  }
  .dc-product-content {
    padding: 0 18px 20px !important;
  }
  .dc-product-card h3 {
    font-size: 28px !important;
  }
  .dc-product-price {
    align-items: center !important;
    gap: 12px !important;
  }
  .dc-product-price span {
    font-size: 20px !important;
  }
  .dc-product-benefits li,
  .dc-rank-benefits li {
    font-size: 14px !important;
    padding: 11px 12px 11px 36px !important;
  }
  .dc-rank-info {
    grid-template-columns: 1fr !important;
    width: min(92vw, 620px) !important;
  }
  .dc-footer-premium {
    width: min(92vw, 620px) !important;
    grid-template-columns: 1fr !important;
    text-align: center !important;
  }
  .dc-footer-brand img {
    margin-left: auto !important;
    margin-right: auto !important;
  }
  .dc-footer-brand p {
    margin-left: auto !important;
    margin-right: auto !important;
  }
  .dc-footer-col a,
  .dc-footer-col span {
    justify-content: center !important;
  }
  .dc-footer-bottom {
    width: min(92vw, 620px) !important;
    justify-content: center !important;
    text-align: center !important;
  }
  .dc-legal-footer {
    padding: 18px 16px !important;
    gap: 10px 16px !important;
  }
  .dc-cart-page {
    padding: 230px 0 60px !important;
  }
  .dc-cart-wrap {
    width: min(92vw, 620px) !important;
    grid-template-columns: 1fr !important;
  }
  .dc-cart-item {
    grid-template-columns: 1fr !important;
  }
  .dc-cart-item img {
    height: 220px !important;
  }
  .dc-cart-actions {
    gap: 8px !important;
  }
  .dc-mini-btn {
    padding: 10px 13px !important;
  }
}

/* Celulares pequeños */
@media (max-width: 420px) {
  .dc-header {
    width: calc(100vw - 16px) !important;
    padding: 11px !important;
  }
  .dc-logo img {
    height: 50px !important;
  }
  .dc-nav {
    gap: 6px !important;
  }
  .dc-nav a {
    font-size: 10px !important;
    padding: 8px 10px !important;
  }
  .dc-hero-content,
  .dc-subhero-content {
    padding-top: 226px !important;
  }
  .dc-left h1 {
    font-size: 40px !important;
  }
  .dc-left h2 {
    font-size: 22px !important;
  }
  .dc-left p {
    font-size: 13.5px !important;
  }
  .dc-stats {
    grid-template-columns: 1fr !important;
  }
  .dc-category {
    min-height: 230px !important;
  }
  .dc-product-image,
  .dc-product-wide .dc-product-image {
    height: 225px !important;
  }
  .dc-product-card h3 {
    font-size: 25px !important;
  }
  .dc-product-price {
    flex-direction: column !important;
    align-items: flex-start !important;
  }
  .dc-back-top {
    right: 14px !important;
    bottom: 14px !important;
    width: 42px !important;
    height: 42px !important;
  }
}

/* DriverStore Home Premium Hero - DriverCraft official style */
.dc-header .dc-brandmark {
  display: inline-flex !important;
  align-items: center !important;
  gap: 16px !important;
  color: #fff !important;
  text-decoration: none !important;
  letter-spacing: 9px !important;
  font-weight: 950 !important;
  font-size: clamp(18px, 1.5vw, 30px) !important;
  text-shadow: 0 8px 24px rgba(0,0,0,.55) !important;
  min-width: 0 !important;
}

.dc-header .dc-brandmark .dc-brand-icon {
  width: 72px !important;
  height: 72px !important;
  object-fit: contain !important;
  display: block !important;
  filter: drop-shadow(0 10px 22px rgba(0,0,0,.55)) !important;
  border-radius: 22px !important;
}

.dc-hero-bg {
  animation: dcCinematicBackground 24s ease-in-out infinite alternate !important;
  transform-origin: center center !important;
  will-change: transform, filter !important;
}

@keyframes dcCinematicBackground {
  0% { transform: scale(1.04) translate3d(-10px, -4px, 0); filter: saturate(1.05) brightness(1.02); }
  50% { transform: scale(1.095) translate3d(14px, 6px, 0); filter: saturate(1.16) brightness(1.07); }
  100% { transform: scale(1.07) translate3d(-4px, 12px, 0); filter: saturate(1.1) brightness(1.04); }
}

.dc-hero-content {
  align-items: center !important;
}

.dc-left {
  max-width: 900px !important;
}

.dc-hero-badge {
  display: inline-flex !important;
  align-items: center !important;
  gap: 14px !important;
  padding: 14px 28px !important;
  border-radius: 999px !important;
  background: rgba(12, 12, 10, .48) !important;
  border: 1px solid rgba(255,255,255,.18) !important;
  box-shadow: 0 18px 42px rgba(0,0,0,.34) !important;
  color: #d6f6ff !important;
  letter-spacing: 9px !important;
  font-size: clamp(12px, 1vw, 17px) !important;
  font-weight: 950 !important;
  text-transform: uppercase !important;
  margin-bottom: 34px !important;
  backdrop-filter: blur(14px) !important;
}

.dc-hero-badge span {
  color: #ffd15a !important;
  letter-spacing: 0 !important;
}

.dc-hero-logo {
  display: block !important;
  width: min(760px, 82vw) !important;
  height: auto !important;
  margin: 0 0 24px !important;
  filter: drop-shadow(0 26px 42px rgba(0,0,0,.58)) !important;
  animation: dcLogoPulse 3.2s ease-in-out infinite !important;
  transform-origin: center !important;
  will-change: transform, filter !important;
}

@keyframes dcLogoPulse {
  0%, 100% { transform: scale(1); filter: drop-shadow(0 26px 42px rgba(0,0,0,.58)); }
  50% { transform: scale(1.035); filter: drop-shadow(0 34px 62px rgba(255,209,90,.18)) drop-shadow(0 24px 42px rgba(0,0,0,.58)); }
}

.dc-hero-slogan {
  max-width: 760px !important;
  font-size: clamp(18px, 1.55vw, 27px) !important;
  line-height: 1.55 !important;
  font-weight: 800 !important;
  color: rgba(255,255,255,.96) !important;
  text-shadow: 0 10px 28px rgba(0,0,0,.65) !important;
  margin: 0 0 30px !important;
}

.dc-hero-main-actions .dc-btn {
  justify-content: center !important;
}

.dc-left > h1,
.dc-left > h2 {
  display: none !important;
}

.dc-left > p:not(.dc-hero-slogan) {
  display: none !important;
}

@media (max-width: 1400px) {
  .dc-header .dc-brandmark { letter-spacing: 6px !important; font-size: 20px !important; }
  .dc-header .dc-brandmark .dc-brand-icon { width: 58px !important; height: 58px !important; }
  .dc-hero-logo { width: min(640px, 82vw) !important; }
}

@media (max-width: 1100px) {
  .dc-header .dc-brandmark { justify-content: center !important; letter-spacing: 5px !important; }
  .dc-header .dc-brandmark .dc-brand-icon { width: 54px !important; height: 54px !important; }
  .dc-hero-content { text-align: center !important; }
  .dc-hero-badge { margin-left: auto !important; margin-right: auto !important; }
  .dc-hero-logo { margin-left: auto !important; margin-right: auto !important; }
  .dc-hero-slogan { margin-left: auto !important; margin-right: auto !important; }
  .dc-actions { justify-content: center !important; }
}

@media (max-width: 640px) {
  .dc-header .dc-brandmark { gap: 10px !important; letter-spacing: 3px !important; font-size: 18px !important; }
  .dc-header .dc-brandmark .dc-brand-icon { width: 46px !important; height: 46px !important; }
  .dc-hero-badge { letter-spacing: 4px !important; padding: 12px 18px !important; }
  .dc-hero-logo { width: min(94vw, 430px) !important; }
  .dc-hero-slogan { font-size: 16px !important; }
}

/* =========================================================
   DRIVERSTORE HERO PREMIUM - AJUSTE FINO PROPORCIONES
   Logo más compacto, barra superior equilibrada y hero encajado.
   ========================================================= */

/* Barra superior: logo pequeño, texto más pegado y categorías más legibles */
.dc-header {
  top: 22px !important;
  height: 76px !important;
  width: min(94vw, 1760px) !important;
  grid-template-columns: 255px minmax(0, 1fr) 190px !important;
  gap: 18px !important;
  padding: 0 24px !important;
  border-radius: 18px !important;
}

.dc-header .dc-brandmark {
  gap: 14px !important;
  letter-spacing: 5px !important;
  font-size: clamp(18px, 1.25vw, 24px) !important;
  line-height: 1 !important;
  white-space: nowrap !important;
}

.dc-header .dc-brandmark .dc-brand-icon,
.dc-logo img.dc-brand-icon {
  width: 54px !important;
  height: 54px !important;
  border-radius: 16px !important;
  flex: 0 0 auto !important;
}

.dc-nav {
  gap: 11px !important;
  justify-content: center !important;
  align-items: center !important;
}

.dc-nav a {
  font-size: 14px !important;
  line-height: 1 !important;
  padding: 11px 13px !important;
  border-radius: 999px !important;
  letter-spacing: .02em !important;
}

.dc-cart {
  min-width: 176px !important;
  padding: 10px 15px !important;
}

/* Hero: más aire abajo y todo dentro del fondo */
.dc-hero {
  min-height: 760px !important;
}

.dc-hero-content {
  padding-top: 122px !important;
  align-items: center !important;
}

.dc-left {
  max-width: 820px !important;
}

.dc-hero-badge {
  padding: 10px 23px !important;
  gap: 10px !important;
  font-size: clamp(11px, .82vw, 14px) !important;
  letter-spacing: 7px !important;
  margin-bottom: 22px !important;
  box-shadow: 0 12px 32px rgba(0,0,0,.28) !important;
}

.dc-hero-logo {
  width: min(610px, 64vw) !important;
  margin: 0 0 20px !important;
  filter: drop-shadow(0 20px 36px rgba(0,0,0,.55)) !important;
}

@keyframes dcLogoPulse {
  0%, 100% { transform: scale(1); filter: drop-shadow(0 20px 36px rgba(0,0,0,.55)); }
  50% { transform: scale(1.018); filter: drop-shadow(0 26px 48px rgba(255,209,90,.14)) drop-shadow(0 20px 36px rgba(0,0,0,.55)); }
}

.dc-hero-slogan {
  max-width: 720px !important;
  font-size: clamp(18px, 1.32vw, 24px) !important;
  line-height: 1.48 !important;
  margin: 0 0 22px !important;
}

.dc-hero-main-actions {
  margin-bottom: 20px !important;
}

.dc-stats {
  margin-top: 0 !important;
  max-width: 760px !important;
}

/* Ajuste para portátiles: mantener todo en una línea sin apretar */
@media (max-width: 1400px) {
  .dc-header {
    grid-template-columns: 230px minmax(0, 1fr) 165px !important;
    gap: 12px !important;
    padding: 0 18px !important;
  }

  .dc-header .dc-brandmark {
    gap: 12px !important;
    letter-spacing: 3.5px !important;
    font-size: 19px !important;
  }

  .dc-header .dc-brandmark .dc-brand-icon,
  .dc-logo img.dc-brand-icon {
    width: 48px !important;
    height: 48px !important;
  }

  .dc-nav {
    gap: 7px !important;
  }

  .dc-nav a {
    font-size: 13px !important;
    padding: 10px 10px !important;
  }

  .dc-hero-logo {
    width: min(560px, 68vw) !important;
  }
}

@media (max-width: 1100px) {
  .dc-header {
    height: auto !important;
    grid-template-columns: 1fr !important;
    padding: 16px !important;
  }

  .dc-header .dc-brandmark {
    justify-content: center !important;
    letter-spacing: 3px !important;
    font-size: 20px !important;
  }

  .dc-nav {
    flex-wrap: wrap !important;
  }

  .dc-hero {
    min-height: 820px !important;
  }

  .dc-hero-content {
    padding-top: 225px !important;
    text-align: center !important;
  }

  .dc-hero-logo {
    width: min(560px, 86vw) !important;
  }
}

@media (max-width: 640px) {
  .dc-header .dc-brandmark {
    letter-spacing: 2px !important;
    font-size: 17px !important;
  }

  .dc-header .dc-brandmark .dc-brand-icon,
  .dc-logo img.dc-brand-icon {
    width: 42px !important;
    height: 42px !important;
  }

  .dc-nav a {
    font-size: 12.5px !important;
    padding: 9px 10px !important;
  }

  .dc-hero-badge {
    padding: 9px 16px !important;
    letter-spacing: 3.5px !important;
  }

  .dc-hero-logo {
    width: min(88vw, 390px) !important;
  }

  .dc-hero-slogan {
    font-size: 16px !important;
    line-height: 1.45 !important;
  }
}


/* =========================================================
   DRIVERSTORE AJUSTE FINAL HEADER + INFO SERVER
   - DriverCraft normal, compacto y respirado
   - Inicio separado del brand
   - Versión 1.21.5 arriba de IP Java
   ========================================================= */
.dc-header {
  grid-template-columns: 230px minmax(0, 1fr) 178px !important;
  gap: 26px !important;
}

.dc-header .dc-brandmark {
  gap: 10px !important;
  letter-spacing: 0 !important;
  font-size: clamp(20px, 1.25vw, 25px) !important;
  font-weight: 950 !important;
  text-transform: none !important;
  justify-content: flex-start !important;
}

.dc-header .dc-brandmark span {
  letter-spacing: 0 !important;
  text-transform: none !important;
  white-space: nowrap !important;
}

.dc-header .dc-brandmark .dc-brand-icon,
.dc-logo img.dc-brand-icon {
  width: 44px !important;
  height: 44px !important;
  border-radius: 13px !important;
  margin-right: 2px !important;
}

.dc-nav {
  justify-content: flex-start !important;
  padding-left: 18px !important;
  gap: 10px !important;
}

.dc-nav a:first-child {
  margin-left: 18px !important;
}

.dc-nav a {
  font-size: 14.8px !important;
  font-weight: 900 !important;
  padding: 12px 14px !important;
}

.dc-server-card .dc-version-row {
  order: -1 !important;
}

.dc-server-card .dc-version-row strong {
  color: #ffffff !important;
}

.dc-server-card .dc-version-row button {
  opacity: .72 !important;
  cursor: default !important;
}

@media (max-width: 1400px) {
  .dc-header {
    grid-template-columns: 205px minmax(0, 1fr) 160px !important;
    gap: 18px !important;
  }

  .dc-header .dc-brandmark {
    font-size: 21px !important;
    gap: 9px !important;
  }

  .dc-header .dc-brandmark .dc-brand-icon,
  .dc-logo img.dc-brand-icon {
    width: 40px !important;
    height: 40px !important;
  }

  .dc-nav {
    padding-left: 12px !important;
    gap: 7px !important;
  }

  .dc-nav a:first-child {
    margin-left: 12px !important;
  }

  .dc-nav a {
    font-size: 13.8px !important;
    padding: 10px 10px !important;
  }
}

@media (max-width: 1100px) {
  .dc-header .dc-brandmark {
    justify-content: center !important;
  }

  .dc-nav {
    justify-content: center !important;
    padding-left: 0 !important;
  }

  .dc-nav a:first-child {
    margin-left: 0 !important;
  }
}
