:root{
  --blue:#0b5bd3;
  --blue-dark:#0a1f44;
  --blue-2:#0d3472;
  --yellow:#ffb000;
  --orange:#ff7a00;
  --bg:#f4f8ff;
  --text:#06152f;
  --muted:#5f6b80;
  --border:#e0e8f5;
  --shadow:0 18px 45px rgba(10,31,68,.10);
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:'Inter',Arial,sans-serif;
  color:var(--text);
  background:linear-gradient(120deg,#fffaf0 0%,#f7fbff 40%,#dbeaff 100%);
}
a{text-decoration:none;color:inherit}
.topbar{
  background:#0d3472;
  color:#fff;
  text-align:center;
  font-weight:900;
  padding:10px 14px;
  font-size:15px;
}
.site-header{
  background:#fff;
  box-shadow:0 8px 24px rgba(10,31,68,.08);
  position:sticky;
  top:0;
  z-index:90;
}
.navbar{
  width:min(1180px,92%);
  margin:0 auto;
  min-height:92px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
}
.brand{
  display:flex;
  align-items:center;
  gap:12px;
  color:var(--blue-dark);
  font-weight:900;
}
.brand-logo{
  height:76px;
  width:auto;
  display:block;
  object-fit:contain;
}
.brand-text{
  display:flex;
  flex-direction:column;
  line-height:.94;
}
.brand-text small{
  color:#ff7a00;
  text-transform:uppercase;
  letter-spacing:.16em;
  font-size:12px;
  font-weight:900;
}
.brand-text strong{
  font-family:'Montserrat',sans-serif;
  font-size:23px;
  color:var(--blue-dark);
}
.search-wrap{
  flex:1;
  max-width:510px;
  display:flex;
  align-items:center;
  background:#f6f9fd;
  border:1px solid #d8e3f2;
  border-radius:999px;
  overflow:hidden;
}
.search-wrap input{
  flex:1;
  border:0;
  background:transparent;
  padding:15px 18px;
  font:inherit;
  outline:0;
  min-width:0;
}
.search-wrap button{
  border:0;
  background:var(--yellow);
  color:#06152f;
  width:62px;
  height:52px;
  font-size:18px;
  cursor:pointer;
}
.menu-toggle{
  display:none;
  background:#0b5bd3;
  color:#fff;
  border:0;
  width:44px;
  height:44px;
  border-radius:12px;
  font-size:24px;
  font-weight:900;
}
.nav-links{
  display:flex;
  align-items:center;
  gap:20px;
  font-weight:900;
}
.nav-links a{
  color:var(--blue-dark);
  white-space:nowrap;
}
.cart-mini{
  color:var(--blue)!important;
}
.btn,.btn-small,.btn-agregar,.btn-limpiar{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:9px;
  border:0;
  border-radius:999px;
  background:linear-gradient(180deg,var(--yellow),var(--orange));
  color:#06152f!important;
  font-weight:900;
  padding:15px 24px;
  cursor:pointer;
  box-shadow:0 15px 30px rgba(255,122,0,.20);
  font-family:'Inter',sans-serif;
}
.btn:hover,.btn-agregar:hover,.btn-limpiar:hover{
  transform:translateY(-1px);
}
.btn-outline{
  background:#fff!important;
  box-shadow:none!important;
  color:var(--blue-dark)!important;
}
.btn-small{
  padding:13px 20px!important;
  border-radius:12px!important;
}
.category-bar{
  background:#071d43;
}
.category-inner{
  width:min(1180px,92%);
  margin:0 auto;
  display:flex;
  gap:8px;
  overflow:auto;
  padding:12px 0;
}
.category-inner a{
  color:#fff;
  background:rgba(255,255,255,.09);
  padding:10px 14px;
  border-radius:999px;
  font-weight:900;
  white-space:nowrap;
}
.category-inner a:first-child{
  background:var(--yellow);
  color:#06152f;
}
.section-pad{
  width:min(1180px,92%);
  margin:0 auto;
  padding:64px 0;
}
.hero{
  display:grid;
  grid-template-columns:1.45fr .7fr;
  gap:24px;
  align-items:stretch;
  padding-top:34px;
  padding-bottom:40px;
}
.hero-content{
  min-height:430px;
  border-radius:28px;
  padding:42px;
  background:linear-gradient(135deg,#0b5bd3 0%,#0a1f44 62%,#06152f 100%);
  color:#fff;
  position:relative;
  overflow:hidden;
  box-shadow:var(--shadow);
}
.hero-content:after{
  content:"";
  position:absolute;
  right:-90px;
  bottom:-120px;
  width:340px;
  height:340px;
  border-radius:50%;
  background:rgba(255,176,0,.22);
}
.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:8px;
  background:#e7f0ff;
  color:var(--blue);
  border:1px solid #bfd6ff;
  border-radius:999px;
  padding:9px 14px;
  font-size:13px;
  text-transform:uppercase;
  letter-spacing:.05em;
  font-weight:900;
  margin-bottom:18px;
}
.hero-content .eyebrow{
  background:rgba(255,255,255,.14);
  color:#fff;
  border-color:rgba(255,255,255,.22);
}
.hero h1{
  margin:0;
  max-width:760px;
  font-family:'Montserrat',sans-serif;
  font-size:clamp(40px,5vw,64px);
  line-height:1.03;
  letter-spacing:-.055em;
}
.hero h1 span{
  color:#ffc400;
}
.hero p{
  color:rgba(255,255,255,.92);
  font-size:18px;
  line-height:1.65;
  max-width:760px;
}
.hero-actions,.hero-points{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-top:24px;
}
.hero-points span{
  display:inline-flex;
  align-items:center;
  gap:7px;
  background:rgba(255,255,255,.12);
  border:1px solid rgba(255,255,255,.18);
  border-radius:999px;
  padding:10px 14px;
  color:#fff;
  font-weight:900;
}
.promo-side{
  display:grid;
  gap:18px;
}
.promo-tile{
  background:#fff;
  border:1px solid var(--border);
  border-radius:24px;
  padding:26px;
  min-height:205px;
  box-shadow:var(--shadow);
  position:relative;
  overflow:hidden;
}
.promo-tile strong{
  display:block;
  color:var(--blue-dark);
  font-family:'Montserrat',sans-serif;
  font-size:26px;
  line-height:1.05;
  letter-spacing:-.04em;
}
.promo-tile span{
  display:block;
  color:var(--muted);
  font-weight:800;
  margin-top:10px;
}
.promo-tile i{
  position:absolute;
  right:18px;
  bottom:16px;
  font-size:76px;
  color:rgba(11,91,211,.12);
}
.quick-cats{
  width:min(1180px,92%);
  margin:0 auto 12px;
  display:grid;
  grid-template-columns:repeat(6,1fr);
  gap:14px;
}
.quick-cat{
  display:block;
  background:#fff;
  border:1px solid var(--border);
  border-radius:18px;
  padding:18px 14px;
  text-align:center;
  font-weight:900;
  box-shadow:0 10px 24px rgba(10,31,68,.07);
}
.quick-cat i{
  display:block;
  color:var(--blue);
  font-size:26px;
  margin-bottom:9px;
}
.section-title,.page-head{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:20px;
  border-bottom:1px solid #dce6f5;
  padding-bottom:20px;
  margin-bottom:24px;
}
.section-title h2,.page-head h1{
  font-family:'Montserrat',sans-serif;
  font-size:36px;
  line-height:1.05;
  letter-spacing:-.05em;
  margin:0;
  color:var(--blue-dark);
}
.section-title p,.page-head p{
  color:var(--muted);
  line-height:1.6;
  max-width:420px;
}
.productos-grid{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:20px;
}
.product-card{
  background:#fff;
  border:1px solid var(--border);
  border-radius:20px;
  overflow:hidden;
  box-shadow:0 12px 28px rgba(10,31,68,.08);
  transition:.2s ease;
}
.product-card:hover{
  transform:translateY(-3px);
  box-shadow:0 20px 42px rgba(10,31,68,.14);
}
.product-image{
  height:240px;
  background:#f6f8fb;
  display:flex;
  align-items:center;
  justify-content:center;
  position:relative;
  border-bottom:1px solid #edf2f8;
}
.product-image img{
  width:100%;
  height:100%;
  object-fit:contain;
  padding:16px;
}
.offer-label{
  position:absolute;
  left:14px;
  top:14px;
  background:var(--yellow);
  color:#06152f;
  padding:8px 12px;
  border-radius:999px;
  font-weight:900;
}
.product-info{
  padding:18px;
}
.product-info h3{
  margin:0 0 10px;
  color:var(--blue-dark);
  font-size:18px;
  line-height:1.35;
  min-height:48px;
}
.product-info p,.muted{
  color:var(--muted);
  margin:0 0 12px;
}
.product-price strong{
  color:var(--blue);
  font-size:25px;
  font-weight:900;
}
.product-price del{
  display:block;
  color:#98a2b3;
  font-weight:800;
  margin-top:5px;
}
.stock-line{
  font-weight:900;
  margin:12px 0;
}
.stock-line.ok{color:#008a3d}
.stock-line.bad{color:#b42318}
.btn-agregar{
  width:100%;
  background:var(--blue);
  color:#fff!important;
  border-radius:12px;
  padding:14px 18px;
  box-shadow:none;
}
.btn-agregar.disabled{
  background:#aab4c4;
  cursor:not-allowed;
}
.intro-band{
  background:var(--yellow);
  color:#06152f;
  padding:30px 20px;
  text-align:center;
  border-top:5px solid #ff7a00;
  border-bottom:5px solid #ff7a00;
}
.intro-band p{
  width:min(900px,92%);
  margin:0 auto;
  font-size:clamp(20px,3vw,30px);
  font-weight:900;
  line-height:1.25;
}
.split-section{
  display:grid;
  grid-template-columns:.8fr 1.2fr;
  gap:38px;
  align-items:center;
  background:#fff;
  border:1px solid var(--border);
  border-radius:28px;
  padding:34px!important;
  box-shadow:0 12px 34px rgba(10,31,68,.06);
}
.split-image img{
  width:100%;
  border-radius:24px;
}
.split-content h2{
  font-family:'Montserrat',sans-serif;
  color:var(--blue-dark);
  font-size:clamp(32px,4vw,52px);
  line-height:1.02;
  letter-spacing:-.05em;
  margin:0 0 18px;
}
.split-content p{
  color:var(--muted);
  line-height:1.7;
}
.values-list,.guide-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:14px;
  margin-top:20px;
}
.values-list div,.guide-card{
  background:#f8fbff;
  border:1px solid var(--border);
  border-radius:18px;
  padding:18px;
}
.values-list strong,.guide-card h3{
  display:block;
  color:var(--blue-dark);
  font-weight:900;
  margin-bottom:6px;
}
.guide-grid{
  grid-template-columns:repeat(4,1fr);
}
.detail-card,.cart-layout,.checkout-layout{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:26px;
  align-items:start;
}
.detail-card{
  background:#fff;
  border:1px solid var(--border);
  border-radius:24px;
  padding:24px;
  box-shadow:var(--shadow);
}
.detail-image{
  background:#f6f8fb;
  border-radius:20px;
  min-height:430px;
  display:flex;
  align-items:center;
  justify-content:center;
}
.detail-image img{
  width:100%;
  height:430px;
  object-fit:contain;
  padding:20px;
}
.detail-info h1{
  font-family:'Montserrat',sans-serif;
  font-size:42px;
  line-height:1.04;
  letter-spacing:-.05em;
  color:var(--blue-dark);
  margin:0 0 12px;
}
.product-price.detail strong{
  font-size:38px;
}
.form-label,.checkout-form label{
  display:block;
  color:var(--blue-dark);
  font-weight:900;
  margin:12px 0 8px;
}
.input,.checkout-form input,.checkout-form select,.checkout-form textarea{
  width:100%;
  border:1px solid #d7e2f1;
  border-radius:14px;
  padding:14px;
  font:inherit;
  background:#fff;
}
.checkout-form textarea{
  min-height:95px;
}
.cart-layout,.checkout-layout{
  grid-template-columns:1fr 360px;
}
.summary-card,.checkout-form,.payment-card,.empty-box{
  background:#fff;
  border:1px solid var(--border);
  border-radius:24px;
  padding:24px;
  box-shadow:var(--shadow);
}
.summary-card h2{
  color:var(--blue-dark);
  font-family:'Montserrat',sans-serif;
  font-size:28px;
  margin:0 0 10px;
}
.summary-card .btn,.summary-card .btn-limpiar{
  width:100%;
  margin-top:12px;
}
.btn-limpiar{
  background:#fff1d6;
  border-radius:12px;
  box-shadow:none;
}
.cart-list{
  background:#fff;
  border:1px solid var(--border);
  border-radius:24px;
  padding:18px 24px;
  box-shadow:var(--shadow);
}
.cart-item{
  display:grid;
  grid-template-columns:76px 1fr auto auto auto;
  gap:15px;
  align-items:center;
  border-bottom:1px solid #e9eef6;
  padding:16px 0;
}
.cart-item:last-child{border-bottom:0}
.cart-item img{
  width:76px;
  height:76px;
  object-fit:contain;
  background:#f6f8fb;
  border-radius:14px;
}
.cart-name strong{
  display:block;
  color:var(--blue-dark);
  margin-bottom:8px;
}
.qty{
  display:flex;
  gap:8px;
  align-items:center;
}
.qty button{
  width:34px;
  height:34px;
  border:0;
  border-radius:10px;
  background:#e8f1ff;
  color:var(--blue);
  font-weight:900;
  cursor:pointer;
}
.danger{
  background:#ffe0e0;
  color:#b42318;
  border:0;
  border-radius:10px;
  padding:10px 14px;
  font-weight:900;
  cursor:pointer;
}
.cart-total{
  font-family:'Montserrat',sans-serif;
  color:var(--blue-dark);
  font-size:30px;
  font-weight:900;
  text-align:right;
  margin-top:18px;
}
.payment-card{
  max-width:760px;
  margin:0 auto;
  text-align:center;
}
.payment-card h1{
  font-family:'Montserrat',sans-serif;
  color:var(--blue-dark);
  font-size:42px;
  margin:0 0 16px;
}
.payment-total{
  display:block;
  font-size:48px;
  color:var(--blue);
  margin:12px 0 22px;
}
.notice-box{
  background:#fff;
  border:1px solid var(--border);
  border-radius:20px;
  padding:20px;
  box-shadow:var(--shadow);
}
.footer{
  background:#071d43;
  color:#fff;
  padding:34px 4%;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
}
.footer p{color:rgba(255,255,255,.74);margin:6px 0 0}
.footer-links{
  display:flex;
  gap:16px;
  flex-wrap:wrap;
}
.footer-links a{
  color:#fff;
  font-weight:800;
}
@media(max-width:1100px){
  .productos-grid{grid-template-columns:repeat(3,1fr)}
  .quick-cats{grid-template-columns:repeat(3,1fr)}
}
@media(max-width:900px){
  .search-wrap{display:none}
  .menu-toggle{display:block}
  .nav-links{
    position:absolute;
    top:92px;
    left:4%;
    right:4%;
    display:none;
    flex-direction:column;
    align-items:stretch;
    background:#fff;
    padding:12px;
    border-radius:20px;
    box-shadow:var(--shadow);
  }
  .nav-links.open{display:flex}
  .nav-links a{padding:12px;border-radius:12px}
  .hero,.split-section,.detail-card,.cart-layout,.checkout-layout{grid-template-columns:1fr}
  .productos-grid{grid-template-columns:repeat(2,1fr)}
  .section-title,.page-head{display:block}
}
@media(max-width:620px){
  .brand-text{display:none}
  .brand-logo{height:62px}
  .productos-grid,.quick-cats,.guide-grid,.values-list{grid-template-columns:1fr}
  .hero-content{padding:28px}
  .cart-item{grid-template-columns:70px 1fr}
  .cart-item > *:nth-child(n+3){grid-column:2}
  .footer{display:block;text-align:center}
  .footer-links{justify-content:center;margin-top:16px}
}
