/* ── TIENDA.HTML — page-specific styles ── */

/* ── HERO TIENDA ── */
.tienda-hero {
  padding: 8rem 5% 4rem;
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark3) 100%);
  border-bottom: 1px solid rgba(192,21,42,.15);
}
.hero-tag {
  display: inline-block; border: 1px solid rgba(192,21,42,.35); color: var(--red);
  font-size: .68rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase;
  padding: .3rem .9rem; border-radius: 20px; margin-bottom: 1.2rem;
}
.tienda-hero h1 {
  font-size: clamp(2rem,5vw,3.5rem); font-weight: 900; line-height: 1.05;
  letter-spacing: -.03em; margin-bottom: .8rem;
}
.tienda-hero h1 span { color: var(--red); }
.tienda-hero p { color: var(--gray); font-size: 1rem; max-width: 540px; margin-bottom: 2rem; }
.trust-badges  { display: flex; flex-wrap: wrap; gap: .8rem; }
.trust-badge   {
  display: flex; align-items: center; gap: .5rem;
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.07);
  border-radius: 8px; padding: .5rem 1rem;
  font-size: .78rem; font-weight: 600; color: var(--light);
}
.trust-badge .icon { color: var(--gold); font-size: 1rem; }

/* ── VIDEO HERO (compacto, sin scroll-animation) ── */
#shop-video-section { position: relative; height: auto; }
.shop-video-sticky  { position: relative; top: auto; height: 58vh; min-height: 340px; overflow: hidden; }
#shop-hero-video    { width: 100%; height: 100%; object-fit: cover; display: block; }
.shop-veil {
  position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(to bottom, rgba(0,0,0,.45) 0%, rgba(0,0,0,.6) 60%, var(--dark) 100%);
}
.shop-video-overlay {
  position: absolute; inset: 0; display: flex; flex-direction: column;
  align-items: flex-start; justify-content: center; padding: 0 8%;
}
.shop-scroll-hint   { display: none; }
#shop-scroll-prog-wrap { display: none; }
@media (max-width: 768px) {
  .shop-video-sticky { height: 52vh; min-height: 300px; }
}

/* ── CATEGORÍAS ── */
.tienda-main  { padding: 2.5rem 5% 6rem; }
.categorias-tabs { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 2.5rem; }
.cat-tab {
  padding: .55rem 1.3rem; border-radius: 8px; border: 1px solid rgba(255,255,255,.1);
  background: transparent; color: var(--gray); font-size: .82rem; font-weight: 600;
  cursor: pointer; transition: all .2s;
}
.cat-tab:hover  { border-color: rgba(192,21,42,.4); color: var(--white); }
.cat-tab.active { background: var(--red); border-color: var(--red); color: var(--white); }

/* ── BÚSQUEDA Y ORDEN ── */
.shop-controls {
  display: flex; gap: .8rem; align-items: center;
  margin-bottom: 1.5rem; flex-wrap: wrap;
}
.shop-search-wrap {
  flex: 1; min-width: 200px; position: relative;
  display: flex; align-items: center;
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.1);
  border-radius: 10px; overflow: hidden; transition: border-color .2s;
}
.shop-search-wrap:focus-within { border-color: rgba(192,21,42,.5); }
.shop-search-icon { padding: 0 .5rem 0 .85rem; font-size: .95rem; opacity: .45; pointer-events: none; }
.shop-search-input {
  flex: 1; background: transparent; border: none; outline: none;
  color: var(--white); font-family: inherit; font-size: .88rem;
  padding: .65rem 0; min-width: 0;
}
.shop-search-input::placeholder { color: rgba(255,255,255,.3); }
.shop-search-clear {
  width: 34px; height: 34px; border: none; background: transparent;
  color: rgba(255,255,255,.4); cursor: pointer; font-size: .8rem;
  display: none; align-items: center; justify-content: center;
  border-radius: 6px; transition: color .2s, background .2s; flex-shrink: 0;
}
.shop-search-clear:hover { color: var(--white); background: rgba(255,255,255,.08); }
.shop-search-clear.visible { display: flex; }
.shop-sort-select {
  padding: .65rem 1rem; background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1); border-radius: 10px;
  color: var(--white); font-family: inherit; font-size: .82rem; font-weight: 600;
  cursor: pointer; outline: none; transition: border-color .2s; white-space: nowrap;
}
.shop-sort-select:focus { border-color: rgba(192,21,42,.5); }
.shop-sort-select option { background: #0d1526; }
@media (max-width: 540px) {
  .shop-controls { flex-direction: column; }
  .shop-sort-select { width: 100%; }
}

/* ── GRID PRODUCTOS ── */
.productos-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.5rem; }
.productos-count  { font-size: .82rem; color: var(--gray); }
.productos-grid   { display: grid; grid-template-columns: repeat(auto-fill,minmax(260px,1fr)); gap: 1.2rem; }

/* ── SKELETON ── */
.skeleton-card { background: var(--dark2); border: 1px solid rgba(255,255,255,.06); border-radius: 14px; overflow: hidden; padding: 0; }
.skeleton-img  { height: 200px; background: linear-gradient(90deg,#1a2540 25%,#1e2d4d 50%,#1a2540 75%); background-size: 200% 100%; animation: shimmer 1.5s infinite; }
.skeleton-body { padding: 1.2rem; display: flex; flex-direction: column; gap: .7rem; }
.skeleton-line { height: .7rem; border-radius: 4px; background: linear-gradient(90deg,#1a2540 25%,#1e2d4d 50%,#1a2540 75%); background-size: 200% 100%; animation: shimmer 1.5s infinite; }
.skeleton-line.short { width: 50%; }
@keyframes shimmer { to { background-position: -200% 0; } }

/* ── TARJETA PRODUCTO ── */
.prod-card {
  background: var(--dark2); border: 1px solid rgba(255,255,255,.06);
  border-radius: 14px; overflow: hidden; display: flex; flex-direction: column;
  transition: border-color .25s, transform .25s, box-shadow .25s;
}
.prod-card:hover { border-color: rgba(192,21,42,.4); transform: translateY(-3px); box-shadow: 0 12px 40px rgba(0,0,0,.5); }
.prod-img-wrap { position: relative; height: 200px; background: #0a1020; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.prod-img { width: 100%; height: 100%; object-fit: contain; padding: 1rem; }
.prod-img-placeholder { font-size: 4rem; opacity: .3; }
.prod-stock-badge { position: absolute; top: .7rem; right: .7rem; font-size: .62rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; padding: .25rem .6rem; border-radius: 6px; }
.prod-stock-badge.ok  { background: rgba(37,211,102,.15); color: #25d366; border: 1px solid rgba(37,211,102,.3); }
.prod-stock-badge.low { background: rgba(212,175,55,.15); color: var(--gold); border: 1px solid rgba(212,175,55,.3); }
.prod-stock-badge.out { background: rgba(192,21,42,.15); color: var(--red);  border: 1px solid rgba(192,21,42,.3); }
.prod-body { padding: 1.2rem 1.2rem 1rem; flex: 1; display: flex; flex-direction: column; gap: .6rem; }
.prod-marca  { font-size: .68rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--gold); }
.prod-nombre { font-size: .9rem; font-weight: 600; color: var(--white); line-height: 1.35; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.prod-precio-wrap { margin-top: auto; padding-top: .4rem; }
.prod-precio { font-size: 1.5rem; font-weight: 900; color: var(--gold); letter-spacing: -.02em; }
.prod-iva    { font-size: .68rem; color: var(--gray); margin-top: .1rem; }
.prod-instalacion-wrap  { margin-top: .7rem; border-radius: 10px; border: 1px solid rgba(212,175,55,.2); background: rgba(212,175,55,.04); overflow: hidden; }
.prod-instalacion-check { display: flex; align-items: flex-start; gap: .6rem; padding: .65rem .75rem; cursor: pointer; }
.prod-instalacion-check input[type=checkbox] { width: 15px; height: 15px; accent-color: var(--gold); flex-shrink: 0; cursor: pointer; margin-top: 2px; }
.prod-instalacion-check label { font-size: .76rem; color: var(--light); cursor: pointer; line-height: 1.4; }
.prod-instalacion-check label strong { color: var(--gold); font-size: .85rem; }
.prod-instalacion-nota { font-size: .66rem; color: rgba(255,255,255,.35); padding: .3rem .75rem .55rem; line-height: 1.4; border-top: 1px solid rgba(212,175,55,.1); }
.prod-btn {
  margin: 1rem 1.2rem 1.2rem; padding: .7rem 1rem; border-radius: 8px;
  background: var(--red); color: var(--white); border: none; font-size: .84rem; font-weight: 700;
  cursor: pointer; transition: background .2s, transform .1s;
  display: flex; align-items: center; justify-content: center; gap: .5rem;
}
.prod-btn:hover:not(:disabled) { background: var(--red2); transform: translateY(-1px); }
.prod-btn:disabled { opacity: .5; cursor: not-allowed; }
.prod-btn.adding   { background: #1a4f3a; }

/* ── CARGAR MÁS ── */
.cargar-mas-wrap { text-align: center; margin-top: 2.5rem; }
.btn-cargar-mas  {
  padding: .75rem 2rem; border-radius: 8px;
  border: 1px solid rgba(255,255,255,.15); background: transparent;
  color: var(--white); font-size: .84rem; font-weight: 600; cursor: pointer;
  transition: background .2s, border-color .2s;
}
.btn-cargar-mas:hover { background: rgba(255,255,255,.05); border-color: rgba(255,255,255,.3); }

/* ── CARRITO FLOTANTE ── */
/* Lado IZQUIERDO debajo de WA (wa=92px, carrito=24px) */
.carrito-flotante {
  position: fixed; bottom: 24px; left: 24px; right: auto; z-index: 180;
  width: 58px; height: 58px; border-radius: 50%;
  background: var(--red); border: none; color: var(--white); font-size: 1.4rem; cursor: pointer;
  box-shadow: 0 6px 24px rgba(192,21,42,.5);
  display: flex; align-items: center; justify-content: center;
  transition: transform .2s, box-shadow .2s;
}
.carrito-flotante:hover { transform: scale(1.1); box-shadow: 0 8px 30px rgba(192,21,42,.7); }
.carrito-flotante .badge {
  position: absolute; top: -4px; right: -4px;
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--gold); color: #000; font-size: .65rem; font-weight: 800;
  display: none; align-items: center; justify-content: center;
}
.carrito-flotante .badge.show { display: flex; }

/* ── CARRITO DRAWER ── */
.carrito-overlay { position: fixed; inset: 0; z-index: 300; background: rgba(0,0,0,.6); backdrop-filter: blur(4px); opacity: 0; pointer-events: none; transition: opacity .3s; }
.carrito-overlay.open { opacity: 1; pointer-events: all; }
.carrito-drawer  { position: absolute; top: 0; right: 0; bottom: 0; width: min(420px,100vw); background: var(--dark2); display: flex; flex-direction: column; transform: translateX(100%); transition: transform .35s cubic-bezier(.4,0,.2,1); border-left: 1px solid rgba(255,255,255,.07); }
.carrito-overlay.open .carrito-drawer { transform: translateX(0); }
.carrito-header { display: flex; align-items: center; justify-content: space-between; padding: 1.2rem 1.4rem; border-bottom: 1px solid rgba(255,255,255,.07); flex-shrink: 0; }
.carrito-header h3 { font-size: 1rem; font-weight: 700; }
.carrito-header span { font-size: .78rem; color: var(--gray); }
.carrito-close { background: none; border: none; color: var(--gray); font-size: 1.4rem; cursor: pointer; padding: .3rem; transition: color .2s; }
.carrito-close:hover { color: var(--white); }
.carrito-items { flex: 1; overflow-y: auto; padding: 1rem 1.4rem; display: flex; flex-direction: column; gap: .8rem; }
.carrito-vacio { text-align: center; padding: 3rem 1rem; color: var(--gray); }
.carrito-vacio .icon { font-size: 3rem; margin-bottom: .8rem; opacity: .4; }
.carrito-item { display: flex; gap: .9rem; padding: .9rem; background: rgba(255,255,255,.03); border-radius: 10px; border: 1px solid rgba(255,255,255,.06); }
.item-img { width: 60px; height: 60px; border-radius: 8px; object-fit: contain; background: #0a1020; flex-shrink: 0; }
.item-img-placeholder { width: 60px; height: 60px; border-radius: 8px; background: #0a1020; flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; }
.item-info { flex: 1; min-width: 0; }
.item-nombre { font-size: .8rem; font-weight: 600; line-height: 1.3; margin-bottom: .2rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.item-marca  { font-size: .68rem; color: var(--gold); margin-bottom: .4rem; }
.item-instalacion { font-size: .7rem; color: var(--green); margin-bottom: .4rem; }
.item-controles { display: flex; align-items: center; justify-content: space-between; }
.item-precio { font-size: .9rem; font-weight: 800; color: var(--gold); }
.item-qty-wrap { display: flex; align-items: center; gap: .5rem; }
.item-qty-btn { width: 24px; height: 24px; border-radius: 6px; background: rgba(255,255,255,.08); border: none; color: var(--white); font-size: .9rem; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background .2s; }
.item-qty-btn:hover { background: rgba(255,255,255,.15); }
.item-qty { font-size: .8rem; font-weight: 600; min-width: 20px; text-align: center; }
.item-del { background: none; border: none; color: rgba(255,255,255,.3); font-size: 1rem; cursor: pointer; padding: .3rem; transition: color .2s; }
.item-del:hover { color: var(--red); }
.carrito-footer { border-top: 1px solid rgba(255,255,255,.07); padding: 1.2rem 1.4rem; flex-shrink: 0; }
.carrito-total-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1rem; }
.carrito-total-label { font-size: .88rem; color: var(--gray); }
.carrito-total-valor { font-size: 1.5rem; font-weight: 900; color: var(--gold); }
.carrito-iva-nota    { font-size: .68rem; color: var(--gray); text-align: right; margin-top: -.7rem; margin-bottom: 1rem; }
.btn-checkout { width: 100%; padding: .9rem; border-radius: 10px; background: var(--red); color: var(--white); border: none; font-size: .95rem; font-weight: 800; cursor: pointer; transition: background .2s; display: flex; align-items: center; justify-content: center; gap: .6rem; }
.btn-checkout:hover { background: var(--red2); }

/* ── MODAL BASE ── */
.modal-overlay { position: fixed; inset: 0; z-index: 400; background: rgba(0,0,0,.75); backdrop-filter: blur(6px); display: none; align-items: center; justify-content: center; padding: 1rem; }
.modal-overlay.open { display: flex; }
.modal-box { background: var(--dark2); border: 1px solid rgba(255,255,255,.08); border-radius: 18px; width: 100%; max-width: 520px; max-height: 90vh; overflow-y: auto; padding: 2rem; position: relative; }
.modal-close { position: absolute; top: 1.2rem; right: 1.2rem; background: none; border: none; color: var(--gray); font-size: 1.4rem; cursor: pointer; transition: color .2s; }
.modal-close:hover { color: var(--white); }
.modal-title { font-size: 1.2rem; font-weight: 800; margin-bottom: .3rem; }
.modal-sub   { font-size: .82rem; color: var(--gray); margin-bottom: 1.5rem; }

/* ── CHECKOUT MODAL ── */
.step-indicators { display: flex; gap: 1rem; margin-bottom: 1.5rem; }
.step-dot { width: 28px; height: 28px; border-radius: 50%; border: 2px solid rgba(255,255,255,.15); display: flex; align-items: center; justify-content: center; font-size: .75rem; font-weight: 700; color: var(--gray); transition: all .3s; }
.step-dot.active { background: var(--red); border-color: var(--red); color: var(--white); }
.step-dot.done   { background: rgba(37,211,102,.2); border-color: rgba(37,211,102,.5); color: var(--green); }
.step-label { font-size: .72rem; color: var(--gray); align-self: center; }

/* Tienda form overrides (scoped to avoid conflict with index.html form) */
.tienda-main .form-group,
.modal-box .form-group { margin-bottom: 1rem; }
.form-row   { display: grid; grid-template-columns: 1fr 1fr; gap: .8rem; }
.form-label { font-size: .75rem; font-weight: 600; color: var(--gray); display: block; margin-bottom: .35rem; text-transform: uppercase; letter-spacing: .08em; }
.form-input  {
  width: 100%; padding: .7rem .9rem; border-radius: 8px;
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1);
  color: var(--white); font-family: 'Inter', sans-serif; font-size: .88rem;
  transition: border-color .2s;
}
.form-input:focus { outline: none; border-color: rgba(192,21,42,.5); background: rgba(255,255,255,.07); }
.form-input::placeholder { color: rgba(255,255,255,.25); }
.form-select { width: 100%; padding: .7rem .9rem; border-radius: 8px; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1); color: var(--white); font-family: 'Inter', sans-serif; font-size: .88rem; appearance: none; }
.form-select option { background: var(--dark2); }
.factura-toggle { display: flex; align-items: center; gap: .7rem; margin-bottom: 1rem; padding: .75rem 1rem; background: rgba(255,255,255,.03); border-radius: 8px; border: 1px solid rgba(255,255,255,.07); cursor: pointer; }
.factura-toggle input { accent-color: var(--red); cursor: pointer; }
.factura-toggle label { font-size: .83rem; cursor: pointer; }
.factura-fields { display: none; }
.factura-fields.show { display: block; }

/* ── RESUMEN EN CHECKOUT ── */
.resumen-pago  { background: rgba(255,255,255,.03); border-radius: 10px; border: 1px solid rgba(255,255,255,.07); padding: 1rem; margin-bottom: 1.2rem; }
.resumen-title { font-size: .75rem; font-weight: 700; color: var(--gray); text-transform: uppercase; letter-spacing: .08em; margin-bottom: .8rem; }
.resumen-item  { display: flex; justify-content: space-between; font-size: .8rem; margin-bottom: .4rem; color: var(--light); }
.resumen-item.instalacion { color: var(--green); }
.resumen-separator { border: none; border-top: 1px solid rgba(255,255,255,.07); margin: .6rem 0; }
.resumen-total { display: flex; justify-content: space-between; font-weight: 800; }
.resumen-total .monto { color: var(--gold); font-size: 1.1rem; }

/* ── STRIPE ELEMENT ── */
#stripe-payment-element {
  min-height: 44px;
  margin-bottom: 1.2rem;
  padding: .75rem .9rem;
  border-radius: 8px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  transition: border-color .2s;
}
#stripe-payment-element:focus-within {
  border-color: rgba(192,21,42,.5);
  background: rgba(255,255,255,.07);
}
.stripe-msg { font-size: .72rem; color: var(--gray); text-align: center; margin-bottom: 1rem; }
.stripe-msg span { color: var(--white); }

/* ── BOTONES MODAL ── */
.btn-modal-primary { width: 100%; padding: .85rem; border-radius: 10px; background: var(--red); color: var(--white); border: none; font-size: .95rem; font-weight: 800; cursor: pointer; transition: background .2s; display: flex; align-items: center; justify-content: center; gap: .6rem; }
.btn-modal-primary:hover:not(:disabled) { background: var(--red2); }
.btn-modal-primary:disabled { opacity: .5; cursor: wait; }
.btn-modal-back { width: 100%; padding: .7rem; border-radius: 10px; margin-top: .6rem; background: transparent; border: 1px solid rgba(255,255,255,.1); color: var(--gray); font-size: .85rem; font-weight: 600; cursor: pointer; transition: all .2s; }
.btn-modal-back:hover { border-color: rgba(255,255,255,.25); color: var(--white); }
.error-msg { color: #ff6b6b; font-size: .8rem; text-align: center; margin-top: .8rem; min-height: 1.2rem; }

/* ── MODAL ÉXITO ── */
.success-icon { text-align: center; font-size: 4rem; margin-bottom: 1rem; }
.success-msg  { text-align: center; }
.success-msg h2 { font-size: 1.4rem; font-weight: 900; margin-bottom: .5rem; }
.success-msg p  { color: var(--gray); font-size: .88rem; line-height: 1.6; }
.success-actions { display: flex; flex-direction: column; gap: .7rem; margin-top: 1.8rem; }
.btn-success-primary { padding: .8rem; border-radius: 10px; background: var(--red); color: var(--white); border: none; font-size: .9rem; font-weight: 700; cursor: pointer; text-align: center; text-decoration: none; display: block; transition: background .2s; }
.btn-success-primary:hover { background: var(--red2); }
.btn-success-sec { padding: .7rem; border-radius: 10px; background: transparent; border: 1px solid rgba(255,255,255,.1); color: var(--gray); font-size: .85rem; font-weight: 600; cursor: pointer; text-align: center; text-decoration: none; display: block; transition: all .2s; }
.btn-success-sec:hover { color: var(--white); border-color: rgba(255,255,255,.3); }

/* ── OXXO VOUCHER ── */
.oxxo-box { background: rgba(255,193,7,.07); border: 1px solid rgba(255,193,7,.25); border-radius: 10px; padding: 1.2rem; text-align: center; }
.oxxo-box h3 { font-size: .9rem; font-weight: 700; margin-bottom: .5rem; }
.oxxo-box p  { font-size: .78rem; color: var(--gray); line-height: 1.5; }
.oxxo-num    { font-size: 1.2rem; font-weight: 800; letter-spacing: .1em; color: var(--gold); margin: .8rem 0; word-break: break-all; }

/* ── RESPONSIVE ── */
@media (max-width: 600px) {
  .tienda-hero    { padding: 7rem 5% 2.5rem; }
  .productos-grid { grid-template-columns: 1fr; }
  .form-row       { grid-template-columns: 1fr; }
  .modal-box      { padding: 1.4rem; }
}

/* ── MODAL DETALLE PRODUCTO ─────────────────────────────────── */
.detalle-modal-box { max-width: 780px; }
#detalle-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: start;
}
@media (min-width: 640px) {
  #detalle-content { grid-template-columns: 1fr 1fr; gap: 1.8rem; }
}
.detalle-galeria { display: flex; flex-direction: column; gap: .7rem; }
.detalle-img-main {
  width: 100%; aspect-ratio: 1; object-fit: contain;
  background: #0a1020; border-radius: 12px; padding: 1.2rem;
}
.detalle-thumbs { display: flex; gap: .5rem; flex-wrap: wrap; }
.detalle-thumb {
  width: 56px; height: 56px; object-fit: contain;
  background: #0a1020; border-radius: 8px; padding: .3rem;
  border: 2px solid transparent; cursor: pointer; transition: border-color .2s;
}
.detalle-thumb.active, .detalle-thumb:hover { border-color: var(--red); }
.detalle-nombre {
  font-size: 1rem; font-weight: 700; color: var(--white); line-height: 1.4; margin-bottom: .5rem;
}
.detalle-info { display: flex; flex-direction: column; }
.detalle-precio-wrap { display: flex; align-items: baseline; gap: .6rem; margin-bottom: .8rem; }
.detalle-desc { font-size: .82rem; color: rgba(255,255,255,.55); line-height: 1.6; margin-bottom: 1rem; }
.detalle-specs-wrap { display: flex; flex-direction: column; gap: .35rem; margin-bottom: 1rem; }
.detalle-spec-row {
  display: flex; justify-content: space-between; font-size: .78rem;
  padding: .35rem 0; border-bottom: 1px solid rgba(255,255,255,.06); gap: .5rem;
}
.detalle-spec-key { color: rgba(255,255,255,.45); flex-shrink: 0; }
.detalle-spec-val { color: rgba(255,255,255,.82); text-align: right; }
/* Características en formato checklist (cuando vienen como texto plano) */
#detalle-specs, #prod-specs { flex-direction: column; gap: .4rem; }
.detalle-feat {
  display: flex; align-items: flex-start; gap: .55rem;
  font-size: .82rem; color: rgba(255,255,255,.82); line-height: 1.45;
}
.detalle-feat-ico {
  color: var(--gold, #f5b301); font-weight: 800; flex-shrink: 0;
  font-size: .78rem; line-height: 1.5;
}
.detalle-ver-pagina {
  display: block; text-align: center; margin-top: .8rem;
  font-size: .78rem; color: rgba(255,255,255,.35); text-decoration: none; transition: color .2s;
}
.detalle-ver-pagina:hover { color: var(--gold); }
.detalle-spinner {
  width: 36px; height: 36px; border: 3px solid rgba(255,255,255,.1);
  border-top-color: var(--red); border-radius: 50%; margin: 0 auto;
  animation: spin .8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
