/* Los Poderes - styles */
:root{
  --bg:#0b0706;
  --ink:#f3ede6;
  --muted:rgba(243,237,230,.72);
  --muted2:rgba(243,237,230,.58);
  --line:rgba(243,237,230,.14);
  --glass:rgba(0,0,0,.38);
  --warm:#c08a5a; /* coffee-gold */
  --warm2:#a87045;
  --shadow: 0 20px 60px rgba(0,0,0,.55);
  --radius: 18px;
  --radius2: 28px;
  --max: 1100px;
}
*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  background: var(--bg);
  color: var(--ink);
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  letter-spacing:.2px;
  overflow-x:hidden;
}
a{color:inherit; text-decoration:none}
.wrap{max-width:var(--max); margin:0 auto; padding:0 18px}
.sr{position:absolute; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden; clip:rect(0,0,0,0); white-space:nowrap; border:0}

/* HERO (poster) */
.hero{
  min-height: 100svh;
  position:relative;
  display:flex;
  align-items:stretch;
  justify-content:center;
  isolation:isolate;
  background:
    radial-gradient(1200px 700px at 20% 20%, rgba(192,138,90,.18), transparent 60%),
    radial-gradient(900px 600px at 85% 15%, rgba(192,138,90,.12), transparent 65%),
    radial-gradient(1200px 800px at 50% 110%, rgba(0,0,0,.75), rgba(0,0,0,.95));
}
.hero::before{
  content:"";
  position:absolute; inset:0;
  background:
    linear-gradient(to bottom, rgba(0,0,0,.25), rgba(0,0,0,.78) 70%, rgba(0,0,0,.96)),
    url("/hero.png") center/cover no-repeat;
  filter: saturate(1.02) contrast(1.05);
  z-index:-2;
}
.hero::after{
  content:"";
  position:absolute; inset:-40px;
  background: radial-gradient(800px 500px at 50% 20%, rgba(0,0,0,.0), rgba(0,0,0,.65));
  z-index:-1;
  pointer-events:none;
}

/* top bar */
.topbar{
  position:sticky;
  top:0;
  z-index:50;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  background: linear-gradient(to bottom, rgba(0,0,0,.55), rgba(0,0,0,.15));
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.topbar .row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  padding:14px 0;
}
.brand{display:flex; align-items:center; gap:12px;}
.brandmark{
  width:38px; height:38px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.14);
  background: radial-gradient(circle at 30% 30%, rgba(192,138,90,.35), rgba(0,0,0,.55));
  display:grid; place-items:center;
  box-shadow: 0 12px 35px rgba(0,0,0,.4);
}
.brandmark svg{opacity:.95}
.brand h1{
  margin:0;
  font-size:14px;
  letter-spacing:3px;
  text-transform:uppercase;
  line-height:1.1;
}
.brand .sub{
  margin:3px 0 0;
  font-size:12px;
  color: var(--muted2);
  letter-spacing:.6px;
}
.nav{display:flex; align-items:center; gap:10px;}
.pill{
  border:1px solid rgba(255,255,255,.14);
  background: rgba(0,0,0,.28);
  color: var(--ink);
  padding:10px 12px;
  border-radius:999px;
  font-size:13px;
  letter-spacing:.4px;
  display:inline-flex;
  align-items:center;
  gap:10px;
  transition: transform .15s ease, background .15s ease, border-color .15s ease;
}
.pill:hover{transform: translateY(-1px); border-color: rgba(192,138,90,.45); background: rgba(0,0,0,.36)}
.pill .dot{
  width:8px; height:8px; border-radius:999px;
  background: var(--warm);
  box-shadow: 0 0 0 4px rgba(192,138,90,.16);
}
.btn{
  border:1px solid rgba(192,138,90,.55);
  background: linear-gradient(180deg, rgba(192,138,90,.26), rgba(0,0,0,.28));
  color: var(--ink);
  padding:10px 14px;
  border-radius:999px;
  font-size:13px;
  letter-spacing:.5px;
  transition: transform .15s ease, filter .15s ease;
  box-shadow: 0 12px 35px rgba(0,0,0,.35);
  cursor:pointer;
  white-space:nowrap;
}
.btn:hover{transform: translateY(-1px); filter: brightness(1.05)}
.btn.secondary{
  border-color: rgba(255,255,255,.16);
  background: rgba(0,0,0,.26);
  box-shadow:none;
}
.hamburger{
  display:none;
  width:44px; height:44px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(0,0,0,.28);
  color: var(--ink);
  cursor:pointer;
}

/* Cart badge */
.cartBtn{position:relative;}
.badge{
  position:absolute;
  top:-6px; right:-6px;
  min-width:18px; height:18px;
  padding:0 5px;
  display:grid; place-items:center;
  border-radius:999px;
  background: rgba(192,138,90,.95);
  color: #0b0706;
  font-weight:800;
  font-size:11px;
  line-height:1;
  box-shadow: 0 10px 24px rgba(0,0,0,.45);
  border:1px solid rgba(0,0,0,.35);
}

/* hero content */
.heroInner{flex:1; display:flex; align-items:flex-end; padding: clamp(22px, 4.5vw, 54px) 0 52px;}
.heroGrid{display:grid; grid-template-columns: 1.2fr .8fr; gap: 26px; align-items:end;}
.kicker{
  display:inline-flex; align-items:center; gap:10px;
  padding:10px 14px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(0,0,0,.35);
  color: var(--muted);
  font-size:13px;
  letter-spacing:.5px;
}
.kicker .dot{width:9px; height:9px; border-radius:999px; background: var(--warm); box-shadow:0 0 0 4px rgba(192,138,90,.16)}
.title{
  margin:16px 0 10px;
  font-size: clamp(44px, 6.2vw, 78px);
  line-height: .95;
  letter-spacing: -1.2px;
  font-weight: 750;
  text-shadow: 0 18px 60px rgba(0,0,0,.6);
}
.title .warm{color: var(--warm)}
.lead{
  margin: 0;
  max-width: 56ch;
  color: rgba(243,237,230,.83);
  font-size: 16px;
  line-height: 1.6;
  text-shadow: 0 12px 40px rgba(0,0,0,.55);
}
.ctaRow{display:flex; gap:12px; flex-wrap:wrap; margin-top: 20px;}
.note{margin-top: 16px; color: rgba(243,237,230,.6); font-size: 12.5px; letter-spacing:.4px;}

/* right-side quote block */
.quoteCard{
  border:1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.40);
  border-radius: var(--radius2);
  padding: 20px 18px;
  box-shadow: var(--shadow);
}
.quoteCard .label{
  display:flex; align-items:center; gap:10px;
  color: rgba(243,237,230,.70);
  font-size: 12px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.quoteCard .label .line{flex:1; height:1px; background: linear-gradient(to right, rgba(192,138,90,.45), transparent); opacity:.85;}
.quote{margin: 0; font-size: 18px; line-height: 1.45; letter-spacing:.2px;}
.quote em{color: rgba(243,237,230,.86)}
.sig{margin-top: 12px; color: rgba(243,237,230,.6); font-size: 12.5px;}

/* Sections */
section{padding: 70px 0}
.sectionTitle{font-size: 13px; letter-spacing: 2.2px; text-transform: uppercase; color: rgba(243,237,230,.68); margin:0 0 14px;}
.h2{margin:0 0 14px; font-size: clamp(28px, 3.6vw, 42px); letter-spacing:-.6px; line-height:1.08;}
.grid2{display:grid; grid-template-columns: 1fr 1fr; gap: 20px; align-items:start;}
.panel{
  border:1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.35);
  border-radius: var(--radius2);
  padding: 22px;
  box-shadow: 0 16px 50px rgba(0,0,0,.45);
}
.list{display:grid; gap: 10px; margin-top: 14px;}
.li{
  display:flex; gap:10px;
  padding: 12px 12px;
  border-radius: 14px;
  border:1px solid rgba(255,255,255,.08);
  background: rgba(0,0,0,.28);
}
.li .icon{
  width:26px; height:26px; border-radius:9px;
  border:1px solid rgba(192,138,90,.38);
  background: rgba(192,138,90,.12);
  display:grid; place-items:center;
  flex:0 0 auto;
}
.li b{display:block; font-size:14px; margin-bottom:2px}
.li span{color: rgba(243,237,230,.68); font-size:13px; line-height:1.4}

.fineprint{color: rgba(243,237,230,.62); font-size: 13px; line-height:1.6}

/* Product grid */
.products{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 12px;
  margin-top: 16px;
}
.product{
  border:1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.28);
  border-radius: 18px;
  overflow:hidden;
  transition: transform .15s ease, border-color .15s ease;
}
.product:hover{transform: translateY(-2px); border-color: rgba(192,138,90,.38)}
.pImg{
  width:100%;
  aspect-ratio: 4/3;
  object-fit:cover;
  display:block;
  filter: saturate(1.02) contrast(1.02);
}
.pBody{padding: 14px 12px;}
.pTop{display:flex; align-items:flex-start; justify-content:space-between; gap:10px;}
.pName{font-weight:800; letter-spacing:.2px; font-size:14px;}
.pPrice{color: rgba(243,237,230,.82); font-weight:700; font-size:13px; white-space:nowrap;}
.pDesc{margin-top:6px; color: rgba(243,237,230,.65); font-size:12.5px; line-height:1.35;}
.pActions{display:flex; gap:10px; flex-wrap:wrap; margin-top: 12px;}
.select{
  height: 42px;
  border-radius: 999px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(0,0,0,.35);
  color: var(--ink);
  padding: 0 14px;
  outline:none;
}

/* Email */
.formRow{display:flex; gap:10px; flex-wrap:wrap; margin-top: 12px;}
input{
  flex: 1 1 220px;
  min-width: 220px;
  height: 44px;
  border-radius: 999px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(0,0,0,.35);
  color: var(--ink);
  padding: 0 14px;
  outline:none;
}
input:focus{border-color: rgba(192,138,90,.55)}
.footer{
  padding: 26px 0 38px;
  border-top: 1px solid rgba(255,255,255,.08);
  color: rgba(243,237,230,.55);
  font-size: 12.5px;
}
.footRow{display:flex; align-items:center; justify-content:space-between; gap:14px; flex-wrap:wrap;}
.footLinks{display:flex; gap:12px; flex-wrap:wrap}
.footLinks a{opacity:.82}
.footLinks a:hover{opacity:1}

/* Mobile */
@media (max-width: 980px){
  .heroGrid{grid-template-columns: 1fr; gap: 18px}
  .products{grid-template-columns: 1fr;}
  .nav .pill, .nav .btn{display:none}
  .hamburger{display:inline-grid; place-items:center}
}
@media (max-width: 520px){
  section{padding: 56px 0}
  .quoteCard{padding: 18px 16px}
}

/* Menu Drawer */
.drawerBackdrop{
  position:fixed; inset:0;
  background: rgba(0,0,0,.58);
  display:none;
  z-index:100;
}
.drawer{
  position:fixed; top:0; right:0;
  width:min(420px, 92vw);
  height:100%;
  background: rgba(8,6,5,.92);
  border-left: 1px solid rgba(255,255,255,.10);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transform: translateX(105%);
  transition: transform .18s ease;
  z-index:110;
  padding: 16px;
  display:flex; flex-direction:column; gap:10px;
}
.drawer.open{transform: translateX(0)}
.drawerBackdrop.open{display:block}
.drawerHead{display:flex; align-items:center; justify-content:space-between; padding: 6px 2px 10px;}
.xbtn{
  width:42px; height:42px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(0,0,0,.25);
  color: var(--ink);
  cursor:pointer;
}
.drawer a{
  padding: 12px 12px;
  border-radius: 14px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.25);
  color: rgba(243,237,230,.9);
}
.drawer a:hover{border-color: rgba(192,138,90,.45)}

/* Cart drawer */
.cartBackdrop{
  position:fixed; inset:0;
  background: rgba(0,0,0,.62);
  display:none;
  z-index:120;
}
.cartDrawer{
  position:fixed; top:0; right:0;
  width:min(460px, 94vw);
  height:100%;
  background: rgba(8,6,5,.94);
  border-left: 1px solid rgba(255,255,255,.10);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transform: translateX(105%);
  transition: transform .18s ease;
  z-index:130;
  padding: 16px;
  display:flex; flex-direction:column;
}
.cartDrawer.open{transform: translateX(0)}
.cartBackdrop.open{display:block}
.cartHead{display:flex; align-items:center; justify-content:space-between; gap:10px; padding: 6px 2px 10px;}
.cartTitle{font-size:13px; letter-spacing:2px; text-transform:uppercase; color: rgba(243,237,230,.72);}
.cartItems{display:flex; flex-direction:column; gap:10px; overflow:auto; padding-right:4px;}
.cartItem{
  display:grid;
  grid-template-columns: 70px 1fr;
  gap:12px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.25);
  border-radius: 16px;
  padding: 10px;
}
.cartItem img{width:70px; height:70px; object-fit:cover; border-radius: 12px; border:1px solid rgba(255,255,255,.10);}
.ciName{font-weight:800; font-size:13px;}
.ciMeta{color: rgba(243,237,230,.62); font-size:12px; margin-top:2px;}
.ciRow{display:flex; align-items:center; justify-content:space-between; gap:10px; margin-top:8px;}
.qty{
  display:inline-flex; align-items:center; gap:8px;
  border:1px solid rgba(255,255,255,.12);
  border-radius:999px;
  padding:6px 10px;
  background: rgba(0,0,0,.28);
}
.qbtn{
  width:26px; height:26px; border-radius:999px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(0,0,0,.22);
  color: var(--ink);
  cursor:pointer;
}
.rm{
  border:1px solid rgba(255,255,255,.14);
  background: rgba(0,0,0,.18);
  color: rgba(243,237,230,.75);
  padding:6px 10px;
  border-radius:999px;
  font-size:12px;
  cursor:pointer;
}
.cartFoot{
  margin-top: 12px;
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 12px;
}
.totalRow{display:flex; align-items:center; justify-content:space-between; gap:10px; color: rgba(243,237,230,.80); font-size:13px; margin-bottom:10px;}
.smallmuted{color: rgba(243,237,230,.55); font-size:12px; line-height:1.5;}
