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

*{margin:0;padding:0;box-sizing:border-box;font-family:"Inter",sans-serif}

:root{
  --bg:#0a0a0c;
  --bg-2:#121214;
  --panel:rgba(23,23,26,.74);
  --panel-strong:rgba(29,29,33,.92);
  --tile:rgba(255,255,255,.055);
  --line:rgba(255,255,255,.075);
  --line-strong:rgba(255,255,255,.13);
  --ink:#f4f4f5;
  --muted:#a1a1aa;
  --soft:#e4e4e7;
  --accent:#ff8a1f;
  --accent-2:#ffc14d;
  --green:#42e99a;
  --price:#ffb347;
  --shadow:0 28px 90px rgba(0,0,0,.44);
  --ease:cubic-bezier(.25,.8,.25,1);
}

html{scroll-behavior:smooth}

body{
  min-height:100vh;
  color:var(--ink);
  overflow-x:hidden;
  background:
    radial-gradient(circle at 50% 18%,rgba(66,233,154,.07),transparent 24rem),
    radial-gradient(circle at 12% -8%,rgba(255,138,31,.18),transparent 30rem),
    radial-gradient(circle at 88% 0%,rgba(255,193,77,.11),transparent 26rem),
    linear-gradient(180deg,#0b0907 0%,#14100c 48%,#0b0907 100%);
}

body::before{
  content:"";
  position:fixed;
  inset:0;
  pointer-events:none;
  z-index:-1;
  background:
    linear-gradient(rgba(255,255,255,.022) 1px,transparent 1px),
    linear-gradient(90deg,rgba(255,255,255,.018) 1px,transparent 1px);
  background-size:54px 54px;
  mask-image:linear-gradient(to bottom,rgba(0,0,0,.82),transparent 72%);
}

button,input,select{font:inherit}
button{cursor:pointer}
a{color:inherit}
svg{width:20px;height:20px;display:block;fill:none;stroke:currentColor;stroke-width:1.8;stroke-linecap:round;stroke-linejoin:round}

.page-shell{width:min(1440px,100%);margin:0 auto;padding:0 48px 28px}

.site-header{
  position:sticky;
  top:0;
  z-index:100;
  background:rgba(18,18,20,.78);
  backdrop-filter:blur(20px) saturate(1.18);
  border-bottom:1px solid rgba(255,255,255,.06);
  box-shadow:0 12px 38px rgba(0,0,0,.18);
}

.header-inner{
  width:min(1440px,100%);
  margin:0 auto;
  padding:22px 48px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
}

.brand-area,.brand,.header-actions,.cart-toggle,.search-trigger,.social-chip{
  display:flex;
  align-items:center;
}

.brand-area{gap:16px;min-width:230px}
.brand{text-decoration:none;gap:12px}
.brand-mark{
  width:44px;
  height:44px;
  display:grid;
  place-items:center;
  border:1px solid rgba(255,138,31,.48);
  border-radius:50%;
  background:
    radial-gradient(circle at 50% 28%,rgba(255,193,77,.22),transparent 42%),
    linear-gradient(145deg,rgba(12,10,8,.95),rgba(31,21,12,.92));
  color:#ffb347;
  font-weight:900;
  font-size:24px;
  box-shadow:0 0 0 3px rgba(255,138,31,.08),0 12px 34px rgba(255,138,31,.22);
}
.brand-copy strong{display:block;font-size:18px;line-height:1}
.brand-copy small{display:block;margin-top:4px;color:var(--muted);font-size:12px;letter-spacing:.02em}

.search-trigger,.cart-toggle,.social-chip{
  min-height:42px;
  border:1px solid var(--line);
  border-radius:8px;
  background:rgba(255,255,255,.045);
  color:var(--soft);
  box-shadow:inset 0 1px 0 rgba(255,255,255,.035);
  transition:all .3s var(--ease);
}

.search-trigger:hover,.cart-toggle:hover,.social-chip:hover{
  transform:translateY(-1px);
  border-color:rgba(255,138,31,.38);
  background:rgba(255,255,255,.075);
}
.header-nav{
  position:relative;
  display:flex;
  justify-content:center;
  gap:4px;
  padding:4px;
  border:1px solid var(--line);
  border-radius:8px;
  background:rgba(255,255,255,.035);
}
.header-nav a{
  position:relative;
  z-index:1;
  padding:10px 16px;
  border-radius:7px;
  text-decoration:none;
  color:#d4d4d8;
  font-size:14px;
  font-weight:600;
  transition:color .3s var(--ease),background .3s var(--ease);
}
.header-nav a:hover{
  color:#fff;
  background:rgba(255,255,255,.085);
}

.header-actions{justify-content:flex-end;gap:10px;min-width:330px}
.social-chip{
  width:42px;
  height:42px;
  justify-content:center;
}
.social-chip svg{width:19px;height:19px}
.search-trigger{gap:9px;padding:0 14px}
.search-trigger kbd{
  padding:3px 6px;
  border-radius:6px;
  background:rgba(255,255,255,.08);
  color:#a1a1aa;
  font-size:11px;
  font-weight:700;
}
.cart-widget{position:relative}
.cart-toggle{gap:9px;padding:0 12px}
.cart-toggle svg,.cart-toggle strong{flex:none}
.cart-toggle strong{
  min-width:24px;
  height:24px;
  display:grid;
  place-items:center;
  border-radius:999px;
  background:linear-gradient(135deg,var(--accent),var(--accent-2));
  color:#17100a;
  font-size:12px;
}
.cart-peek{
  position:absolute;
  top:calc(100% + 12px);
  right:0;
  width:310px;
  padding:14px;
  border:1px solid var(--line);
  border-radius:8px;
  background:rgba(18,18,20,.92);
  backdrop-filter:blur(22px);
  box-shadow:var(--shadow);
  opacity:0;
  transform:translateY(8px);
  pointer-events:none;
  transition:all .3s var(--ease);
}
.cart-widget:hover .cart-peek{opacity:1;transform:none}
.peek-title{display:flex;justify-content:space-between;color:var(--soft);font-size:13px;font-weight:800}
.peek-list{margin-top:10px;display:grid;gap:8px}
.peek-item{display:grid;grid-template-columns:42px 1fr;gap:9px;align-items:center;color:var(--muted);font-size:12px}
.peek-item img{width:42px;height:42px;object-fit:contain;border-radius:6px;background:#121214}

.hero-strip{
  padding:26px 0 12px;
}
.hero-card{
  position:relative;
  overflow:hidden;
  border:1px solid rgba(255,138,31,.16);
  border-radius:14px;
  background:linear-gradient(135deg,rgba(255,138,31,.12),rgba(255,255,255,.035));
  box-shadow:0 20px 60px rgba(0,0,0,.28);
  display:grid;
  grid-template-columns:minmax(0,1fr);
  align-items:start;
  justify-content:start;
  gap:20px;
  min-height:240px;
  padding:26px 28px;
  background:
    linear-gradient(90deg,rgba(255,255,255,.10),transparent 34%),
    radial-gradient(circle at 86% 50%,rgba(255,138,31,.22),transparent 18rem),
    radial-gradient(circle at 12% 0%,rgba(255,193,77,.13),transparent 16rem),
    linear-gradient(135deg,rgba(255,138,31,.13),rgba(255,255,255,.035));
}
.hero-card::before{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  background:linear-gradient(180deg,rgba(255,255,255,.08),transparent 42%);
  opacity:.55;
}
.hero-card::after{
  content:"";
  position:absolute;
  right:28px;
  bottom:-80px;
  width:220px;
  height:220px;
  border-radius:50%;
  background:linear-gradient(135deg,rgba(255,138,31,.72),rgba(255,193,77,.44));
  opacity:.20;
}
.eyebrow{color:var(--accent);font-size:12px;font-weight:900;text-transform:uppercase;letter-spacing:.12em}
.hero-copy{position:relative;z-index:1;max-width:720px}
.hero-card h1{margin-top:8px;font-size:clamp(30px,4vw,54px);line-height:1.02;letter-spacing:0}
.hero-card p{margin-top:14px;color:var(--soft);font-size:clamp(16px,2.2vw,22px);line-height:1.55;font-weight:700}
.hero-action{
  width:max-content;
  align-self:end;
  position:relative;
  z-index:1;
  padding:14px 18px;
  border-radius:8px;
  text-decoration:none;
  color:#17100a;
  background:linear-gradient(135deg,var(--accent),var(--accent-2));
  font-weight:900;
  box-shadow:0 18px 46px rgba(255,138,31,.18);
}

.toolbar{
  display:grid;
  grid-template-columns:minmax(0,1fr) minmax(320px,380px);
  gap:14px;
  align-items:end;
  padding:20px 0 12px;
}
.search-box{position:relative}
.search-icon{position:absolute;left:16px;top:50%;transform:translateY(-50%);color:var(--accent);z-index:1}
.search-box input,.select-box select{
  width:100%;
  min-height:54px;
  border:1px solid var(--line);
  border-radius:8px;
  color:var(--ink);
  outline:none;
  background:rgba(255,255,255,.055);
  box-shadow:inset 0 1px 0 rgba(255,255,255,.045),0 14px 38px rgba(0,0,0,.18);
}
.search-box input{padding:0 16px 0 48px}
.search-box input::placeholder{color:#71717a}
.select-box{display:grid;gap:7px;color:var(--muted);font-size:13px;min-width:0}
.select-box select{
  display:block;
  min-width:0;
  padding:0 46px 0 16px;
  color-scheme:dark;
  appearance:none;
  background-image:
    linear-gradient(45deg,transparent 50%,var(--accent) 50%),
    linear-gradient(135deg,var(--accent) 50%,transparent 50%);
  background-position:
    calc(100% - 22px) 50%,
    calc(100% - 16px) 50%;
  background-size:6px 6px,6px 6px;
  background-repeat:no-repeat;
  text-overflow:ellipsis;
}
.select-box option{background:#18181b;color:#f4f4f5}
.catalog-meta{min-height:24px;color:var(--muted);font-size:14px}

.grid{padding:20px 0 10px;display:grid;grid-template-columns:repeat(auto-fill,minmax(258px,1fr));gap:18px}
.card{
  position:relative;
  display:flex;
  flex-direction:column;
  min-height:100%;
  border:1px solid var(--line);
  border-radius:8px;
  overflow:hidden;
  background:
    linear-gradient(180deg,rgba(255,255,255,.075),rgba(255,255,255,.032)),
    rgba(18,18,20,.76);
  box-shadow:0 20px 55px rgba(0,0,0,.24);
  transition:all .3s var(--ease);
}
.media-wrap{
  position:relative;
  background:#101012;
}
.card:hover{transform:translateY(-6px);border-color:rgba(255,138,31,.42);box-shadow:var(--shadow)}
.card-link{flex:1;text-decoration:none;display:flex;flex-direction:column}
.card img{
  width:100%;
  aspect-ratio:1/.94;
  object-fit:contain;
  padding:4px;
  display:block;
  background:
    linear-gradient(180deg,rgba(255,255,255,.045),transparent 44%),
    radial-gradient(circle at 50% 42%,rgba(255,255,255,.075),transparent 42%),
    linear-gradient(145deg,rgba(255,138,31,.08),rgba(255,193,77,.045)),
    #101012;
}
.badges{
  position:absolute;
  left:18px;
  top:12px;
  z-index:2;
  display:flex;
  flex-wrap:wrap;
  gap:7px;
  max-width:calc(100% - 30px);
}
.badge{
  min-height:28px;
  padding:0 10px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:5px;
  border-radius:7px;
  border:1px solid rgba(255,255,255,.16);
  background:rgba(10,10,12,.80);
  backdrop-filter:blur(14px);
  color:#fff;
  font-size:11px;
  font-weight:900;
  line-height:1;
  letter-spacing:0;
  box-shadow:0 10px 24px rgba(0,0,0,.24);
  white-space:nowrap;
}
.badge.new{
  color:#17100a;
  border-color:rgba(255,255,255,.20);
  background:linear-gradient(135deg,#ffc14d,#fff1c2);
}
.badge.sale{
  color:#fff;
  border-color:rgba(66,233,154,.34);
  background:linear-gradient(135deg,#159a63,#42e99a);
}
.content{flex:1;padding:16px 16px 0;display:flex;flex-direction:column}
.title{font-size:18px;font-weight:800;line-height:1.2;color:#fff}
.desc{margin-top:9px;color:var(--muted);font-size:14px;line-height:1.45;min-height:40px}
.price-row{margin-top:auto;padding-top:14px;display:flex;align-items:flex-end;gap:9px;flex-wrap:wrap}
.price{font-size:24px;font-weight:900;color:var(--price)}
.old-price{color:#787880;text-decoration:line-through;font-weight:800;font-size:15px}
.buy-btn,.open-product-btn,.cart-whatsapp,.buy-big,.add-cart-big{
  border:1px solid rgba(255,255,255,.10);
  border-radius:8px;
  background:linear-gradient(135deg,#1b1b1f,#26262b);
  color:#fff;
  font-weight:900;
  text-decoration:none;
  box-shadow:inset 0 1px 0 rgba(255,255,255,.045),0 14px 30px rgba(0,0,0,.22);
  transition:all .3s var(--ease);
}
.card-actions{
  display:grid;
  grid-template-columns:minmax(0,1fr) 52px;
  gap:10px;
  padding:14px 16px 16px;
}
.open-product-btn,.buy-btn{
  position:relative;
  min-height:44px;
  display:flex;
  gap:8px;
  align-items:center;
  justify-content:center;
  padding:0 13px;
  text-align:center;
  white-space:nowrap;
}
.open-product-btn{
  border-color:rgba(255,138,31,.30);
  background:linear-gradient(135deg,var(--accent),var(--accent-2));
  color:#17100a;
  width:100%;
  min-width:0;
  padding:0 18px;
  overflow:hidden;
}
.buy-btn{
  width:52px;
  min-width:52px;
  background:rgba(255,255,255,.055);
  color:var(--soft);
}
.buy-btn svg{width:18px;height:18px;flex:none}
.open-product-btn span{display:block;width:100%;line-height:1;text-align:center}
.buy-btn span{display:none}
.buy-btn:hover,.open-product-btn:hover,.cart-whatsapp:hover,.buy-big:hover,.add-cart-big:hover{
  transform:translateY(-2px);
  border-color:rgba(255,138,31,.34);
  background:linear-gradient(135deg,#26262b,#34343a);
}
.open-product-btn:hover{
  color:#17100a;
  background:linear-gradient(135deg,#ff9d3d,#ffd36f);
}
.hero-action,.buy-big,.cart-whatsapp{
  border-color:rgba(255,138,31,.30);
  background:linear-gradient(135deg,var(--accent),var(--accent-2));
  color:#17100a;
  box-shadow:0 18px 44px rgba(255,138,31,.18);
}
.hero-action:hover,.buy-big:hover,.cart-whatsapp:hover{
  transform:translateY(-2px);
  border-color:rgba(255,255,255,.16);
  background:linear-gradient(135deg,#ff9d3d,#ffd36f);
  box-shadow:0 22px 54px rgba(255,138,31,.22);
}

.skeleton{height:378px;border-radius:8px;background:linear-gradient(100deg,rgba(255,255,255,.04),rgba(255,255,255,.09),rgba(255,255,255,.04));background-size:200% 100%;animation:shimmer 1.1s infinite}
@keyframes shimmer{to{background-position:-200% 0}}

.empty{grid-column:1/-1;padding:34px;border:1px dashed rgba(255,255,255,.18);border-radius:8px;color:var(--muted);text-align:center;background:rgba(255,255,255,.045)}
.empty.small{padding:20px;font-size:14px}

.pagination{display:flex;justify-content:center;flex-wrap:wrap;gap:8px;padding:24px 0 18px}
.pagination button,.icon-btn,.qty-row button{
  border:1px solid var(--line);
  border-radius:8px;
  background:rgba(255,255,255,.07);
  color:var(--ink);
}
.pagination button{min-width:42px;min-height:42px;padding:0 13px;font-weight:800}
.pagination button.active{background:linear-gradient(135deg,var(--accent),var(--accent-2));border-color:transparent;color:#17100a}
.pagination button:disabled{cursor:not-allowed;opacity:.45}

.cart-panel{
  position:fixed;
  z-index:130;
  top:0;
  right:0;
  width:min(430px,100%);
  height:100vh;
  padding:22px;
  background:rgba(18,18,20,.93);
  backdrop-filter:blur(24px);
  border-left:1px solid var(--line);
  box-shadow:-20px 0 55px rgba(0,0,0,.42);
  transform:translateX(105%);
  transition:transform .3s var(--ease);
  display:flex;
  flex-direction:column;
}
.cart-panel.open{transform:none}
.cart-backdrop{position:fixed;inset:0;z-index:120;background:rgba(0,0,0,.58);opacity:0;pointer-events:none;transition:opacity .25s var(--ease)}
.cart-backdrop.open{opacity:1;pointer-events:auto}
.cart-head{display:flex;justify-content:space-between;gap:16px;align-items:flex-start;padding-bottom:16px;border-bottom:1px solid var(--line)}
.cart-head h2{font-size:26px}.cart-head span{color:var(--muted);font-size:14px}
.icon-btn{width:40px;height:40px;font-size:26px;line-height:1}
.cart-items{flex:1;overflow:auto;display:grid;align-content:start;gap:12px;padding:18px 0}
.cart-item{display:grid;grid-template-columns:74px 1fr;gap:12px;align-items:center;padding:10px;border:1px solid var(--line);border-radius:8px;background:rgba(255,255,255,.045)}
.cart-item img{width:74px;height:74px;border-radius:8px;object-fit:contain;background:#101012}
.cart-item strong,.cart-item span{display:block}
.cart-item span{margin-top:4px;color:var(--price);font-weight:900}
.cart-title-row{display:flex;align-items:center;gap:8px;min-width:0}
.cart-title-row strong{min-width:0;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}
.qty-row{margin-top:10px;display:flex;align-items:center;gap:8px}
.qty-row button{min-width:32px;height:32px;padding:0 9px;font-weight:900}
.qty-row .remove-btn{
  margin-left:auto;
  width:32px;
  min-width:32px;
  padding:0;
  color:#fca5a5;
  font-size:20px;
  line-height:1;
}
.cart-total{display:flex;justify-content:space-between;align-items:center;padding:18px 0;border-top:1px solid var(--line);font-size:18px}
.cart-total strong{color:var(--price);font-size:24px}
.cart-whatsapp{display:flex;align-items:center;justify-content:center;gap:10px;text-align:center;padding:15px}
.cart-whatsapp svg{width:21px;height:21px;stroke:#17100a}

footer{margin-top:44px;padding:26px 0 10px;border-top:1px solid var(--line);display:flex;justify-content:space-between;gap:18px;color:var(--muted)}
.footer-links{display:flex;flex-wrap:wrap;gap:14px}
.footer-links a{color:#fff;text-decoration:none;font-weight:700}
.footer-links a:hover{color:var(--accent)}

@media(max-width:1080px){
  .header-inner{padding:16px;gap:12px}
  .brand-area{min-width:0}
  .header-nav,.search-trigger kbd{display:none}
  .page-shell{padding:0 16px 28px}
  .hero-strip{padding-top:18px}
  .hero-card{align-items:flex-start;flex-direction:column;min-height:160px;padding:22px}
  .toolbar{grid-template-columns:minmax(0,1fr)}
  .select-box,.select-box select{width:100%}
  .select-box select{min-height:58px}
}

@media(max-width:720px){
  .header-actions{min-width:0}
  .brand-area{flex:1;min-width:190px}
  .brand{gap:8px;min-width:0}
  .brand-copy{display:block;min-width:0}
  .brand-copy strong{font-size:15px;white-space:nowrap}
  .brand-copy small{
    max-width:none;
    overflow:visible;
    text-overflow:clip;
    white-space:nowrap;
    font-size:10px;
  }
  .search-trigger span,.cart-toggle span{display:none}
  .brand-mark{width:40px;height:40px}
  .social-chip{width:50px;min-width:50px;padding:0 14px}
  .cart-toggle{min-width:58px;padding:0 10px;justify-content:center}
  .grid{grid-template-columns:repeat(2,minmax(0,1fr));gap:12px}
  .card img{padding:3px}
  .badge{min-height:25px;padding:0 8px;font-size:10px}
  .content{padding:12px 12px 0}.title{font-size:16px}.price{font-size:20px}
  .card-actions{grid-template-columns:minmax(0,1fr) 48px;padding:12px;gap:8px}
  .open-product-btn{min-height:42px}
  .buy-btn{width:48px;min-width:48px;min-height:42px;padding:0 12px}
  footer{padding-bottom:28px;flex-direction:column}
}

@media(max-width:520px){
  .grid{grid-template-columns:1fr}
  .hero-card h1{font-size:34px}
  .header-inner{padding:12px 10px;gap:7px}
  .brand-area{min-width:178px}
  .header-actions{gap:5px}
  .brand-copy strong{font-size:14px}
  .brand-copy small{font-size:8px;letter-spacing:0}
  .brand-mark{width:42px;height:42px;flex:none}
  .social-chip{width:38px;min-width:38px;height:40px;min-height:40px;padding:0;justify-content:center}
  .social-chip svg{width:18px;height:18px}
  .search-trigger{min-width:38px;min-height:40px;padding:0 9px;justify-content:center}
  .cart-toggle{min-width:48px;min-height:40px;padding:0 8px}
  .cart-toggle strong{min-width:21px;height:21px;font-size:11px}
  .toolbar{gap:12px}
  .select-box select{min-height:60px;font-size:15px}
}

@media(max-width:390px){
  .header-inner{gap:5px;padding-left:8px;padding-right:8px}
  .brand-area{min-width:168px}
  .brand{gap:6px}
  .brand-copy strong{font-size:13px}
  .brand-copy small{font-size:7px}
  .brand-mark{width:40px;height:40px}
  .header-actions{gap:4px}
  .social-chip{width:36px;min-width:36px}
  .search-trigger{min-width:36px;padding:0 8px}
  .cart-toggle{min-width:44px;padding:0 7px}
}
