:root{
  --bg:#07070b;
  --card:#0d0f17;
  --text:#f5f7ff;
  --muted:rgba(245,247,255,.72);
  --line:rgba(255,255,255,.10);

  --cyan:#22d3ee;
  --pink:#ff4fd8;
  --lime:#b7ff2a;

  --shadow: 0 20px 60px rgba(0,0,0,.55);
  --r:22px;
}

*{ box-sizing:border-box; }
html,body{ margin:0; padding:0; font-family:Inter,system-ui,Arial; background:var(--bg); color:var(--text); }
a{ color:inherit; text-decoration:none; }
button, input, select{ font-family:inherit; }

.bg{ position:fixed; inset:0; z-index:-2; overflow:hidden; }
.blob{ position:absolute; width:520px; height:520px; filter: blur(40px); opacity:.45; border-radius:50%; }
.blob--cyan{ background: radial-gradient(circle, var(--cyan), transparent 60%); left:-180px; top:-160px; }
.blob--pink{ background: radial-gradient(circle, var(--pink), transparent 60%); right:-220px; top:60px; }
.blob--lime{ background: radial-gradient(circle, var(--lime), transparent 60%); left:20%; bottom:-240px; opacity:.35; }

.grid-noise{
  position:absolute; inset:0;
  background:
    linear-gradient(transparent 0 95%, rgba(255,255,255,.04) 95% 100%) 0 0/100% 28px,
    linear-gradient(90deg, transparent 0 95%, rgba(255,255,255,.04) 95% 100%) 0 0/28px 100%;
  opacity:.18;
  mask-image: radial-gradient(circle at 50% 30%, black 35%, transparent 70%);
}

/* NAV */

.nav{
  position:sticky; top:0; z-index:50;
  backdrop-filter: blur(10px);
  background: rgba(7,7,11,.65);
  border-bottom:1px solid var(--line);
}
.nav__inner{
  width:min(1150px, 92vw);
  margin:0 auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding:12px 0;
}
.nav__icon{
  width:44px; height:44px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.03);
  border-radius:14px;
  cursor:pointer;
  display:grid;
  place-items:center;
}
.nav__brand{
  display:flex; align-items:center; gap:10px;
  font-weight:900; letter-spacing:.18em;
}
.brand-dot{
  width:10px; height:10px; border-radius:999px;
  background: linear-gradient(90deg, var(--cyan), var(--pink), var(--lime));
  box-shadow: 0 0 18px rgba(255,255,255,.25);
}
.brand-name{ font-size:13px; opacity:.95; }

.nav__actions{ display:flex; align-items:center; gap:10px; }
.nav__pill{
  border:1px solid var(--line);
  background: rgba(255,255,255,.03);
  color:var(--text);
  padding:10px 12px;
  border-radius:999px;
  font-weight:800;
  cursor:pointer;
}
.nav__pill b{ color:var(--cyan); }
/* MENU LATERAL */
.side-menu{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.6);
  backdrop-filter: blur(6px);
  transform: translateX(-100%);
  transition: transform .4s ease;
  z-index: 1000;
}

.side-menu.active{
  transform: translateX(0);
}

.side-menu__content{
  width: 280px;
  height: 100%;
  background: #0f111a;
  padding: 30px 25px;
  border-right: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 0 50px rgba(0,0,0,.6);
}

.close-btn{
  background:none;
  border:none;
  color:white;
  font-size:22px;
  cursor:pointer;
  margin-bottom:30px;
}

.side-nav{
  display:flex;
  flex-direction:column;
  gap:25px;
}

.side-nav a{
  color:white;
  font-weight:800;
  text-decoration:none;
  font-size:18px;
  transition:.2s;
}

.side-nav a:hover{
  color: var(--cyan);
  transform: translateX(5px);
}
/* icons */
.i-hamb{
  width:20px; height:14px;
  background:
    linear-gradient(var(--text),var(--text)) 0 0/100% 2px,
    linear-gradient(var(--text),var(--text)) 0 6px/100% 2px,
    linear-gradient(var(--text),var(--text)) 0 12px/100% 2px;
  background-repeat:no-repeat;
  border-radius:2px;
  opacity:.9;
}
.i-search{
  width:18px; height:18px;
  border:2px solid var(--text);
  border-radius:999px;
  position:relative;
  opacity:.9;
}
.i-search::after{
  content:"";
  position:absolute;
  width:9px; height:2px;
  background:var(--text);
  right:-6px; bottom:-2px;
  transform: rotate(45deg);
  border-radius:2px;
}

/* WRAP */
.wrap{ width:min(1150px, 92vw); margin:0 auto; padding:24px 0 70px; }

/* HERO */
/* QUICK INFO CARDS */

.quick{
  display:flex;
  gap:16px;
  margin-top:24px;
  flex-wrap:wrap;
}

.info-card{
  flex:1;
  min-width:220px;
  padding:18px 22px;
  border-radius:18px;
  background: linear-gradient(
    180deg,
    rgba(255,255,255,.06),
    rgba(255,255,255,.02)
  );
  border:1px solid rgba(255,255,255,.08);
  backdrop-filter: blur(10px);
  text-decoration:none;
  transition: all .3s ease;
  box-shadow: 0 10px 30px rgba(0,0,0,.35);
}

.info-card:hover{
  transform: translateY(-6px);
  border:1px solid rgba(34,211,238,.4);
  box-shadow: 0 15px 40px rgba(0,0,0,.55);
}

.info-card__title{
  font-weight:600;
  font-size:16px;
  margin-bottom:6px;
  color:#fff;
}

.info-card__text{
  font-size:14px;
  color:rgba(255,255,255,.65);
}
.hero{
  display:grid;
  grid-template-columns: 1fr;
  gap:18px;
  align-items:center;
  padding: 14px 0 12px;
}
.logo-card{
  position:relative;
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
  border:1px solid var(--line);
  border-radius: calc(var(--r) + 10px);
  padding: 18px;
  box-shadow: var(--shadow);
  overflow:hidden;
}
.logo{
  width: min(320px, 75vw);
  height:auto;
  display:block;
  margin: 0 auto;
  position: relative;
  z-index: 2;   /* 🔥 el logo queda arriba */
  filter: drop-shadow(0 18px 28px rgba(0,0,0,.55));
}
.logo-glow{
  position:absolute;
  inset:-40%;
  z-index:1;   /* 🔥 glow queda detrás */
  background: radial-gradient(circle, rgba(34,211,238,.25), transparent 55%),
              radial-gradient(circle, rgba(255,79,216,.22), transparent 55%),
              radial-gradient(circle, rgba(183,255,42,.18), transparent 55%);
  transform: rotate(18deg);
  pointer-events:none;
}
.hero__badges{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top:12px;
  justify-content:center;
}

h1{
  margin:0 0 10px;
  font-size: 38px;
  line-height:1.05;
  letter-spacing:-.02em;
}
.grad{
  background: linear-gradient(90deg, var(--cyan), var(--pink), var(--lime));
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}
.lead{
  margin:0 0 16px;
  color:var(--muted);
  line-height:1.5;
}

.cta{ display:flex; gap:10px; flex-wrap:wrap; margin-bottom:14px; }
.btn{
  border:1px solid var(--line);
  background: rgba(255,255,255,.03);
  color:var(--text);
  padding:12px 16px;
  border-radius:999px;
  font-weight:900;
  cursor:pointer;
}
.btn--primary{
  background: linear-gradient(90deg, rgba(34,211,238,.22), rgba(255,79,216,.18), rgba(183,255,42,.14));
  border-color: rgba(255,255,255,.14);
  box-shadow: 0 14px 40px rgba(0,0,0,.35);
}
.btn--ghost:hover{ border-color: rgba(255,255,255,.22); }
.btn--primary:hover{ transform: translateY(-1px); transition:.15s; }

.quick{
  display:grid;
  grid-template-columns: 1fr;
  gap:10px;
}
.qcard{
  border:1px solid var(--line);
  background: rgba(255,255,255,.03);
  border-radius: var(--r);
  padding:12px 14px;
}
.qcard b{ display:block; margin-bottom:4px; }
.qcard span{ color:var(--muted); font-size:13px; }

/* Chips */
.chip{
  border:1px solid var(--line);
  background: rgba(255,255,255,.03);
  padding:8px 12px;
  border-radius:999px;
  font-weight:800;
  font-size:13px;
}
.chip--cyan{ border-color: rgba(34,211,238,.35); }
.chip--pink{ border-color: rgba(255,79,216,.35); }
.chip--lime{ border-color: rgba(183,255,42,.35); }

/* SECTION */
.section{ margin-top: 26px; }
.section__head{
  display:flex;
  flex-direction:column;
  gap:12px;
  align-items:flex-start;
  justify-content:space-between;
  margin-bottom:12px;
}
.section__head h2{
  margin:0;
  font-size:22px;
  letter-spacing:.02em;
}
.controls{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  width:100%;
}
.search, .select{
  width: min(320px, 100%);
  padding:11px 12px;
  border-radius:14px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.03);
  color: var(--text);
  outline:none;
}
.select{ cursor:pointer; }

/* Products */
.products{
  display:grid;
  grid-template-columns: 1fr;
  gap:14px;
}
.img-product{
  width:100%;
  height:600px;
  object-fit:cover;
  border-radius:20px;
  transition: transform .4s ease;
}
.p{
  border:1px solid var(--line);
  border-radius: calc(var(--r) + 6px);
  overflow:hidden;
  background: rgba(255,255,255,.02);
  box-shadow: 0 18px 55px rgba(0,0,0,.35);
}
.p__media{
  position:relative;
  background: radial-gradient(circle at 20% 20%, rgba(34,211,238,.18), transparent 45%),
              radial-gradient(circle at 80% 30%, rgba(255,79,216,.16), transparent 45%),
              radial-gradient(circle at 50% 90%, rgba(183,255,42,.10), transparent 55%),
              rgba(255,255,255,.02);

  min-height:600px;
  overflow:hidden;   /* 🔥 esto es clave */
  border-radius:20px;

}
.ph{
  width:84%;
  height:160px;
  border-radius: 18px;
  border:2px dashed rgba(255,255,255,.18);
  display:grid;
  place-items:center;
  color: rgba(245,247,255,.55);
  font-weight:900;
  letter-spacing:.08em;
}
.p:hover .img-product{
  transform: scale(1.06);  /* 🔥 aquí hace zoom */
}
.tag{
  position:absolute;
  top:14px;
  left:14px;
  padding:8px 10px;
  border-radius:999px;
  font-weight:900;
  font-size:12px;
  border:1px solid rgba(255,255,255,.18);
  background: rgba(0,0,0,.25);
}
.tag--cyan{ color: var(--cyan); }
.tag--pink{ color: var(--pink); }
.tag--lime{ color: var(--lime); }

.p__info{ padding:14px 14px 16px; }
.p__info h3{ margin:0 0 6px; font-size:16px; }
.muted{ margin:0 0 12px; color:var(--muted); font-size:13px; }
.p__row{
  display:flex; align-items:center; justify-content:space-between; gap:10px;
}
.price{
  font-size:16px;
  background: linear-gradient(90deg, var(--cyan), var(--pink), var(--lime));
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}
.mini{
  border:1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.04);
  color:var(--text);
  padding:10px 12px;
  border-radius:14px;
  font-weight:900;
  cursor:pointer;
}
.mini:hover{ border-color: rgba(255,255,255,.25); }

/* Footer */
.footer{ margin-top:26px; border-top:1px solid var(--line); padding-top:14px; }
.footer__inner{
  display:flex; flex-direction:column; gap:10px;
  align-items:flex-start; justify-content:space-between;
}
.footer p{ margin:0; color:var(--muted); }
.footer__chips{ display:flex; gap:10px; flex-wrap:wrap; }

@media (min-width: 900px){
  .hero{ grid-template-columns: .95fr 1.05fr; gap:22px; }
  .hero__badges{ justify-content:flex-start; }
  .section__head{ flex-direction:row; align-items:center; }
  .products{ grid-template-columns: repeat(2, 1fr); }
  .footer__inner{ flex-direction:row; align-items:center; }
}
.marca-box{
  max-width:700px;
  margin: 0 auto;
  text-align:center;
  padding:40px 20px;
  border:1px solid var(--line);
  border-radius:28px;
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.01));
  box-shadow: var(--shadow);
}

.marca-box h2{
  font-size:28px;
  margin-bottom:20px;
}

.marca-box p{
  color:var(--muted);
  line-height:1.6;
  margin-bottom:15px;
}.hero__title{
  text-align:center;
  line-height:1;
  margin:0;
}

.title-top{
  display:block;
  font-size:28px;
  font-weight:700;   /* más gruesa */
  color:#ffffff;
  margin-bottom:6px;
}
.title-main{
  display:block;
  font-size:64px;
  font-weight:800;
}.lead{
  text-align:center;
  margin: 16px auto 24px auto;
  max-width:600px; /* opcional, para que no se vea muy ancho */
}/* ===== CARRITO DRAWER ===== */
.cart-drawer{
  position:fixed; inset:0;
  display:none;
  z-index:1200;
}
.cart-drawer.open{ display:block; }

.cart-overlay{
  position:absolute; inset:0;
  background:rgba(0,0,0,.6);
  backdrop-filter: blur(6px);
}

.cart-panel{
  position:absolute;
  top:0; right:0;
  height:100%;
  width:min(420px, 92vw);
  background:#0f111a;
  border-left:1px solid rgba(255,255,255,.08);
  box-shadow: -20px 0 60px rgba(0,0,0,.55);
  padding:18px;
  display:flex;
  flex-direction:column;
}

.cart-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:6px 0 14px 0;
  border-bottom:1px solid rgba(255,255,255,.08);
}
.cart-head h3{ margin:0; }
.cart-close{
  background:none;border:none;color:#fff;
  font-size:20px; cursor:pointer;
}

.cart-body{
  padding:14px 0;
  overflow:auto;
  flex:1;
  display:flex;
  flex-direction:column;
  gap:12px;
}

.cart-item{
  display:grid;
  grid-template-columns:72px 1fr auto;
  gap:12px;
  padding:12px;
  border-radius:16px;
  background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
  border:1px solid rgba(255,255,255,.08);
}
.cart-item img{
  width:72px;height:72px; border-radius:14px;
  object-fit:cover;
}
.ci-title{ font-weight:700; }
.ci-sub{ font-size:12px; opacity:.75; margin-top:2px; }

.qty{
  display:flex; gap:8px; align-items:center; justify-content:flex-end;
}
.qty button{
  width:30px;height:30px;border-radius:10px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.04);
  color:#fff; cursor:pointer;
}
.qty .remove{
  width:32px;
  border-color: rgba(255,80,80,.35);
}

.cart-foot{
  border-top:1px solid rgba(255,255,255,.08);
  padding-top:14px;
}
.cart-total{
  display:flex; justify-content:space-between; align-items:center;
  margin-bottom:12px;
}

.checkout{ display:flex; flex-direction:column; gap:10px; }
.field{
  width:100%;
  padding:12px 12px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.03);
  color:#fff;
  outline:none;
}
.field::placeholder{ color:rgba(255,255,255,.55); }
.w-100{ width:100%; }

.muted2{ opacity:.7; margin:0; }/* ===== MODAL RESUMEN PEDIDO ===== */
.order-modal{ position:fixed; inset:0; display:none; z-index:1400; }
.order-modal.open{ display:block; }

.order-overlay{
  position:absolute; inset:0;
  background:rgba(0,0,0,.65);
  backdrop-filter: blur(8px);
}

.order-card{
  position:relative;
  width:min(640px, 92vw);
  margin: 8vh auto;
  background:#0f111a;
  border:1px solid rgba(255,255,255,.10);
  border-radius:22px;
  box-shadow: 0 30px 90px rgba(0,0,0,.6);
  padding:18px;
}

.order-head{
  display:flex; justify-content:space-between; align-items:center;
  border-bottom:1px solid rgba(255,255,255,.08);
  padding-bottom:12px;
}

.order-close{
  background:none; border:none; color:#fff;
  font-size:20px; cursor:pointer;
}

.order-text{
  margin:14px 0;
  padding:14px;
  border-radius:16px;
  background: rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.08);
  max-height: 45vh;
  overflow:auto;
  white-space: pre-wrap;
  color:#fff;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  font-size:13px;
}

.order-actions{
  display:grid;
  gap:10px;
}.marca-condiciones{
  display: flex;
  justify-content: center;
  margin: 60px 0;
}

.cond-box{
  display: flex;
  flex-direction: column;   /* ← ahora todo va vertical */
  align-items: center;      /* ← centra horizontal */
  text-align: center;       /* ← centra texto */
  max-width: 700px;
  padding: 22px 28px;
  border-radius: 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
}

.cond-icon{
  font-size: 24px;
  margin-bottom: 10px;
}

.cond-title{
  font-weight: 700;
  margin: 0 0 8px 0;
}

.cond-text{
  font-size: 14px;
  opacity: 0.85;
  margin: 0;
  line-height: 1.6;
}/* Fondo blanco para imágenes del catálogo */
.img-white-bg{
  background: #fff;
  border-radius: 18px;
  padding: 10px;
  box-sizing: border-box;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}/* ====== CATALOGO: tarjetas parejas + imagen con fondo blanco ====== */

.products .p{
  display: flex;
  flex-direction: column;
  height: 100%;
}

.p__media{
  background:#fff;
  border-radius: 18px;
  padding: 8px;          /* antes 14px */
  height: 210px;         /* antes 260px */
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
}

.img-product{
  width: 100%;
  height: 100%;
  object-fit: contain;          /* ✅ NO recorta, solo ajusta */
  object-position: center;
  border-radius: 12px;
  display: block;
}

/* Asegura que la parte de info no “brinque” */
.p__info{
  margin-top: auto;
}

/* Opcional: para que el título no cambie la altura */
.p__info h3{
  min-height: 44px;
}/* Hover en la tarjeta */
.p{
  transition: transform .2s ease, box-shadow .2s ease;
}
.p:hover{
  transform: translateY(-4px);
  box-shadow: 0 14px 35px rgba(0,0,0,.35);
}

/* Hover en la imagen */
.p__media .img-product{
  transition: transform .25s ease;
}
.p:hover .img-product{
  transform: scale(1.05);
}.p__media{ overflow: hidden; }/* Hover en compu */
.p{ transition: transform .2s ease, box-shadow .2s ease; }
.p:hover{ transform: translateY(-4px); box-shadow: 0 14px 35px rgba(0,0,0,.35); }
.p__media .img-product{ transition: transform .25s ease; }
.p:hover .img-product{ transform: scale(1.05); }

/* En móvil: el efecto se activa con clase .tap */
.p.tap{
  transform: translateY(-2px);
  box-shadow: 0 14px 35px rgba(0,0,0,.35);
}
.p.tap .img-product{
  transform: scale(1.05);
}