:root{
  --bg:#0b0f17;
  --card:#111827;
  --muted:#94a3b8;
  --text:#e5e7eb;
  --primary:#22c55e;
  --border:rgba(148,163,184,.18);
  --shadow: 0 10px 30px rgba(0,0,0,.25);
  --radius:16px;
  --container:1200px;
}

*{box-sizing:border-box}
body{
  margin:0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: radial-gradient(1200px 700px at 20% -10%, rgba(34,197,94,.15), transparent 60%),
              radial-gradient(900px 600px at 90% 0%, rgba(59,130,246,.10), transparent 55%),
              var(--bg);
  color:var(--text);
}
a{color:inherit; text-decoration:none}
.container{max-width:var(--container); margin:0 auto; padding:0 16px}

.skip-link{position:absolute; left:-9999px}
.skip-link:focus{left:16px; top:16px; background:var(--card); padding:10px 12px; border-radius:10px; border:1px solid var(--border)}

.site-header{
  position:sticky; top:0; z-index:50;
  background: rgba(11,15,23,.72);
  backdrop-filter: blur(10px);
  border-bottom:1px solid var(--border);
}
.header-row{
  display:flex; align-items:center; gap:14px;
  padding:12px 0;
}
.brand .site-name{font-weight:800; letter-spacing:.2px}
.menu-toggle{
  display:none;
  border:1px solid var(--border);
  background:transparent; color:var(--text);
  padding:10px 12px; border-radius:12px;
}
.main-nav .menu{
  list-style:none; display:flex; gap:14px; padding:0; margin:0;
}
.main-nav .menu a{
  display:block; padding:10px 10px; border-radius:12px;
  color:var(--muted);
}
.main-nav .menu a:hover{background:rgba(148,163,184,.08); color:var(--text)}

.header-actions{margin-left:auto; display:flex; gap:12px; align-items:center}
.header-search form{display:flex; gap:8px; align-items:center}
.header-search input[type="search"]{
  width:320px; max-width:44vw;
  background:rgba(17,24,39,.75);
  border:1px solid var(--border);
  color:var(--text);
  padding:10px 12px;
  border-radius:12px;
  outline:none;
}
.header-search button, .header-search input[type="submit"]{
  background:var(--primary);
  border:0; color:#07140b;
  padding:10px 12px; border-radius:12px;
  font-weight:700; cursor:pointer;
}
.cart-link{
  display:flex; gap:8px; align-items:center;
  border:1px solid var(--border);
  padding:10px 12px; border-radius:12px;
}
.cart-count{
  min-width:22px; height:22px;
  display:inline-flex; align-items:center; justify-content:center;
  background:rgba(34,197,94,.18);
  border:1px solid rgba(34,197,94,.35);
  border-radius:999px;
  font-size:12px; font-weight:800;
}

.site-content{padding:22px 0 40px}
.content-grid{
  display:grid;
  grid-template-columns: 1fr 320px;
  gap:18px;
}
.card{
  background:rgba(17,24,39,.75);
  border:1px solid var(--border);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  padding:18px;
}
.entry-title{margin:0 0 10px}
.entry-excerpt{color:var(--muted)}
.entry-content{color:var(--text)}
.small{color:var(--muted); font-size:13px}

.sidebar .widget{
  background:rgba(17,24,39,.6);
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:16px;
  margin-bottom:14px;
}
.widget-title{margin:0 0 10px}

.hero{padding:36px 0 12px}
.hero-inner{
  background: linear-gradient(135deg, rgba(34,197,94,.14), rgba(59,130,246,.10));
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:22px;
  box-shadow:var(--shadow);
}
.hero h1{margin:0 0 8px; font-size:34px}
.hero p{margin:0 0 16px; color:var(--muted)}
.hero-cta{display:flex; gap:12px; flex-wrap:wrap}

.btn{
  display:inline-flex; align-items:center; justify-content:center;
  gap:8px;
  background:var(--primary);
  color:#07140b;
  padding:12px 14px;
  border-radius:14px;
  font-weight:800;
  border:0;
}
.btn-ghost{
  background:transparent;
  color:var(--text);
  border:1px solid var(--border);
}

.section{padding:18px 0}
.section-title{margin:0 0 12px}

/* WooCommerce ajustes básicos */
.woocommerce-wrap{
  background:rgba(17,24,39,.55);
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:18px;
  box-shadow:var(--shadow);
}
.shop-note{
  margin:0 0 12px;
  padding:12px 12px;
  border:1px dashed rgba(148,163,184,.35);
  border-radius:14px;
  color:var(--muted);
}

.woocommerce ul.products{
  display:grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap:14px;
}
.woocommerce ul.products li.product{
  background:rgba(17,24,39,.7);
  border:1px solid var(--border);
  border-radius:16px;
  padding:12px;
  margin:0 !important;
}
.woocommerce ul.products li.product a{
  color:var(--text);
}
.woocommerce ul.products li.product .price{
  color: var(--text);
  font-weight:900;
}
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button{
  background:var(--primary) !important;
  color:#07140b !important;
  border-radius:14px !important;
  border:0 !important;
  padding:12px 14px !important;
  font-weight:900 !important;
}

/* Responsivo */
@media (max-width: 980px){
  .content-grid{grid-template-columns:1fr}
  .header-search input[type="search"]{width:220px}
  .woocommerce ul.products{grid-template-columns: repeat(2, minmax(0, 1fr))}
}
@media (max-width: 720px){
  .menu-toggle{display:inline-flex}
  .main-nav{display:none}
  .main-nav.is-open{display:block; width:100%}
  .header-row{flex-wrap:wrap}
  .main-nav .menu{flex-direction:column}
  .header-actions{width:100%; justify-content:space-between}
  .header-search input[type="search"]{max-width:70vw}
}

