:root{
  --bg:#ffffff;
  --soft:#f5f5f5;
  --line:#e5e5e5;
  --text:#1c1c1c;
  --muted:#6b6b6b;

  /* Dorado sutil (matching logo) */
  --gold-soft:#B9923B;  /* más visible, sigue elegante */
  --gold-glow: rgba(185,146,59,.28);
}

/* ... lo demás igual ... */

:root{
  --bg:#ffffff;
  --soft:#f5f5f5;
  --line:#e5e5e5;
  --text:#1c1c1c;
  --muted:#6b6b6b;

  /* Dorado sutil (matching logo) */
  --gold-soft:#C2A14D;
  --gold-glow: rgba(194,161,77,.25);
}

.btn.primary{
  background:#000;
  color:#fff;
  border:1px solid var(--gold-soft);
  transition: box-shadow .2s ease, transform .2s ease;
}

.btn.primary:hover{
  box-shadow: 0 6px 18px var(--gold-glow);
  transform: translateY(-1px);
}

/* Products */
.product{
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.product:hover{
  border-color: rgba(185,146,59,.55);
  box-shadow:
    0 12px 28px rgba(0,0,0,.10),
    0 0 0 2px rgba(185,146,59,.18); /* aro dorado sutil */
  transform: translateY(-3px);
}


*{box-sizing:border-box}
body{
  margin:0;
  font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Arial;
  color:var(--text);
  background:var(--bg);
}

.container{max-width:1200px;margin:auto;padding:0 20px}

.header{
  position:sticky;top:0;
  background:#fff;
  border-bottom:1px solid var(--line);
}
.header-inner{
  display:flex;align-items:center;justify-content:space-between;
  padding:14px 0;
}
.brand{display:flex;gap:12px;align-items:center}

.logo-img{
  height:42px;
  width:auto;
  display:block;
}

.logo{
  width:42px;height:42px;border-radius:12px;
  background:#000;
  box-shadow: 0 0 0 1px rgba(194,161,77,.35);
}
.brand-name{font-weight:800;letter-spacing:.5px}
.brand-sub{font-size:12px;color:var(--muted)}

.nav{display:flex;gap:18px}
.nav a{color:var(--muted);text-decoration:none;font-weight:600}
.nav a:hover{color:var(--text)}

.actions{display:flex;gap:10px;align-items:center}
.actions input{
  padding:8px 12px;border-radius:10px;
  border:1px solid var(--line);
}
.cart-btn{
  border:1px solid var(--line);
  background:#fff;border-radius:10px;
  padding:8px 12px;
  cursor:pointer;
}

.hero{
  padding:60px 0;
}
.hero-grid{
  display:grid;
  grid-template-columns:1.2fr .8fr;
  gap:40px;
  align-items:center;
}
.hero h1{font-size:40px;margin:0}
.hero p{color:var(--muted);margin:12px 0 20px}

.hero-actions{display:flex;gap:12px}
.hero-img{
  display:flex;
  justify-content:center;
  align-items:center;
}

.hero-img img{
  max-width:100%;
  height:auto;
  border-radius:28px;
  box-shadow: 0 20px 40px rgba(0,0,0,.08);
}

.hero-trust{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin: 10px 0 18px;
}

.hero-trust span{
  border:1px solid var(--line);
  padding:8px 12px;
  border-radius:999px;
  font-size:13px;
  color:var(--muted);
  background:#fff;
}

.hero-trust span:nth-child(2){
  border-color: rgba(185,146,59,.35);
}

.btn{
  padding:12px 18px;
  border-radius:12px;
  border:1px solid var(--line);
  background:#fff;
  font-weight:700;
  cursor:pointer;
}
.btn.primary {
  background:#000;
  color:#fff;
  border:1px solid var(--gold-soft);
}

.btn.primary:hover{
  box-shadow: 0 10px 24px rgba(0,0,0,.16), 0 0 0 3px rgba(185,146,59,.22);
  transform: translateY(-1px);
}
.btn.ghost{background:transparent}

.mock-product{
  width:100%;height:280px;
  background:var(--soft);
  border-radius:24px;
}

.section{padding:60px 0}
.section.light{background:var(--soft)}

/* Títulos de sección - estilo premium */
.section h2{
  font-size:32px;
  letter-spacing:-.3px;
  margin:0 0 24px;
  position:relative;
  padding-left:14px; /* espacio para el acento */
}

/* Barrita dorada vertical (muy sutil y elegante) */
.section h2::before{
  content:"";
  position:absolute;
  left:0;
  top:8px;
  width:4px;
  height:28px;
  border-radius:999px;
  background: linear-gradient(
    to bottom,
    rgba(185,146,59,.0),
    rgba(185,146,59,.85),
    rgba(185,146,59,.0)
  );
}

/* Línea dorada centrada debajo (la que ya tienes, pero centrada) */
.section h2::after{
  content:"";
  position:absolute;
  left:50%;
  transform:translateX(-50%);
  bottom:-12px;
  width:70px;
  height:3px;
  border-radius:999px;
  background: linear-gradient(
    to right,
    transparent,
    rgba(185,146,59,.95),
    transparent
  );
  opacity:.9;
}

.section h2{ margin:0 0 24px; }

.categories{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(160px,1fr));
  gap:16px;
}
.cat{
  padding:30px;
  background:#fff;
  border:1px solid var(--line);
  border-radius:18px;
  text-align:center;
  font-weight:700;
  cursor:pointer;

  /* NEW */
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.cat:hover{
  border-color: rgba(185,146,59,.55);
  transform: translateY(-3px);
  box-shadow:
    0 12px 28px rgba(0,0,0,.10),
    0 0 0 2px rgba(185,146,59,.18);
}

.cat.active{
  border-color: rgba(185,146,59,.65);
  box-shadow:
    0 12px 28px rgba(0,0,0,.10),
    0 0 0 2px rgba(185,146,59,.22);
}

.products{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:20px;
}

.product{
  background:#fff;
  border:1px solid var(--line);
  border-radius:18px;
  padding:16px;
  display:flex;
  flex-direction:column;
}

.product:hover {
  border-color: rgba(194,161,77,.4);
  transform: translateY(-2px);
}

.product-img{
  height:180px;
  background:var(--soft);
  border-radius:14px;
}
.product h3{margin:14px 0 6px}
.product p{color:var(--muted);font-size:14px}
.price {
  font-weight:800;
}

.price.accent {
  color: var(--gold-soft);
}

.reviews{
  color: var(--muted);
}
.reviews .star{
  color: var(--gold-soft);
  font-weight: 900;
}

.support{text-align:center}
.support-badges{display:flex;gap:14px;justify-content:center;margin-top:14px}
.support-badges span{
  border:1px solid var(--line);
  padding:8px 14px;
  border-radius:999px;
  font-size:13px;
}

.footer{
  border-top:1px solid var(--line);
  padding:20px 0;
  color:var(--muted);
  text-align:center;
}

/* CART */
.overlay{
  position:fixed;inset:0;
  background:rgba(0,0,0,.4);
  display:none;
}
.cart{
  position:fixed;
  right:0;top:0;
  width:360px;height:100%;
  background:#fff;
  border-left:1px solid var(--line);
  transform:translateX(100%);
  transition:.3s;
  display:flex;flex-direction:column;
}
.cart header{
  padding:16px;
  border-bottom:1px solid var(--line);
  display:flex;justify-content:space-between;
}
.cart-body{padding:16px;flex:1;overflow:auto}
.cart footer{
  padding:16px;
  border-top:1px solid var(--line);
}
.full{width:100%}

.cart.open{transform:translateX(0)}
.overlay.show{display:block}

.cat{
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease, background .18s ease;
}

.cat:hover{
  border-color: rgba(185,146,59,.55);
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(0,0,0,.10), 0 0 0 2px rgba(185,146,59,.16);
}

/* Estado activo (cuando das clic) */
.cat.active{
  background: linear-gradient(180deg, rgba(185,146,59,.08), transparent);
  border-color: rgba(185,146,59,.70);
  box-shadow: 0 12px 28px rgba(0,0,0,.10), 0 0 0 2px rgba(185,146,59,.22);
}

@media(max-width:900px){
  .hero-grid{grid-template-columns:1fr}
  .nav{display:none}
}