/* =========================================================
   Zapatería Lupita - Tienda Premium v33
   ========================================================= */

:root{
  --zl-red:#c5162e;
  --zl-red-dark:#991b1b;
  --zl-green:#20c55a;
  --zl-ink:#172033;
  --zl-muted:#667085;
  --zl-soft:#f7f2ef;
  --zl-card:#fff;
  --zl-line:rgba(23,32,51,.10);
  --zl-shadow:0 22px 60px rgba(15,23,42,.12);
  --zl-radius:26px;
}

body.zl-premium-v33{
  background:linear-gradient(180deg,#fff 0%,var(--zl-soft) 100%) !important;
}

body.zl-premium-v33 .entry-content-wrap,
body.zl-premium-v33 .content-bg,
body.zl-premium-v33 .site-main,
body.zl-premium-v33 #primary,
body.zl-premium-v33 .site{
  background:transparent !important;
}

body.zl-premium-v33 .entry-title{
  display:none !important;
}

.zl-premium-shop,
.zl-premium-page{
  max-width:1180px;
  margin:0 auto;
  padding:28px 18px 70px;
  color:var(--zl-ink);
}

.zl-shop-hero{
  display:grid;
  grid-template-columns:1.3fr .7fr;
  gap:24px;
  align-items:stretch;
  margin:8px 0 28px;
}

.zl-shop-hero > div:first-child,
.zl-shop-hero-card,
.zl-page-hero,
.zl-woo-box{
  background:rgba(255,255,255,.92);
  border:1px solid var(--zl-line);
  border-radius:var(--zl-radius);
  box-shadow:var(--zl-shadow);
}

.zl-shop-hero > div:first-child{
  padding:42px;
}

.zl-kicker{
  display:block;
  color:var(--zl-red);
  font-size:12px;
  font-weight:950;
  text-transform:uppercase;
  letter-spacing:.16em;
  margin-bottom:12px;
}

.zl-shop-hero h1,
.zl-page-hero h1{
  margin:0 0 12px;
  font-size:clamp(42px,6vw,76px);
  line-height:.92;
  letter-spacing:-2px;
  font-weight:950;
  color:var(--zl-ink);
}

.zl-shop-hero p,
.zl-page-hero p{
  max-width:650px;
  color:var(--zl-muted);
  font-size:18px;
  line-height:1.55;
  margin:0 0 24px;
}

.zl-hero-actions,
.zl-product-actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}

.zl-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:46px;
  padding:12px 18px;
  border-radius:999px;
  font-weight:950;
  text-decoration:none !important;
  border:0;
  cursor:pointer;
  transition:.15s ease;
  font-size:14px;
}

.zl-btn-red{
  background:linear-gradient(135deg,var(--zl-red),var(--zl-red-dark));
  color:#fff !important;
  box-shadow:0 12px 26px rgba(197,22,46,.25);
}

.zl-btn-red:hover{
  transform:translateY(-1px);
  color:#fff !important;
}

.zl-btn-green{
  background:#eafff1;
  color:#087b35 !important;
  border:1px solid rgba(32,197,90,.25);
}

.zl-btn-line{
  background:#fff;
  color:var(--zl-ink) !important;
  border:1px solid var(--zl-line);
}

.zl-shop-hero-card{
  padding:30px;
  display:flex;
  flex-direction:column;
  justify-content:center;
  gap:13px;
}

.zl-shop-hero-card strong{
  font-size:30px;
  line-height:1;
  font-weight:950;
}

.zl-shop-hero-card span{
  display:block;
  background:#faf7f5;
  border:1px solid var(--zl-line);
  border-radius:18px;
  padding:14px 16px;
  font-weight:850;
}

.zl-shop-filters{
  background:#fff;
  border:1px solid var(--zl-line);
  border-radius:var(--zl-radius);
  box-shadow:0 14px 38px rgba(15,23,42,.08);
  padding:24px;
  margin:0 0 26px;
}

.zl-filter-form{
  display:grid;
  grid-template-columns:1fr;
  gap:18px;
}

.zl-filter-form label{
  display:block;
  color:var(--zl-muted);
  font-size:12px;
  font-weight:950;
  text-transform:uppercase;
  letter-spacing:.12em;
  margin-bottom:8px;
}

.zl-search-box input{
  width:100%;
  min-height:50px;
  border:1px solid var(--zl-line);
  border-radius:18px;
  padding:0 16px;
  font-size:15px;
  font-weight:750;
  outline:none;
}

.zl-brand-pills{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}

.zl-brand-pills a{
  display:inline-flex;
  align-items:center;
  min-height:40px;
  padding:9px 15px;
  border-radius:999px;
  background:#fff;
  color:var(--zl-ink);
  border:1px solid var(--zl-line);
  text-decoration:none !important;
  font-weight:850;
}

.zl-brand-pills a.is-active,
.zl-brand-pills a:hover{
  background:var(--zl-red);
  color:#fff;
}

.zl-product-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:24px;
}

.zl-product-card{
  background:#fff;
  border:1px solid var(--zl-line);
  border-radius:var(--zl-radius);
  box-shadow:var(--zl-shadow);
  overflow:hidden;
  display:flex;
  flex-direction:column;
  min-height:100%;
}

.zl-product-card:hover{
  transform:translateY(-4px);
  transition:.15s ease;
}

.zl-product-image{
  display:flex;
  align-items:center;
  justify-content:center;
  height:270px;
  background:linear-gradient(180deg,#fff 0%,#faf7f5 100%);
  border-bottom:1px solid var(--zl-line);
  padding:22px;
}

.zl-product-image img{
  width:100%;
  height:100%;
  object-fit:contain;
}

.zl-product-body{
  padding:22px;
  display:flex;
  flex-direction:column;
  flex:1;
}

.zl-product-meta{
  color:var(--zl-red);
  font-size:11px;
  letter-spacing:.14em;
  text-transform:uppercase;
  font-weight:950;
  margin-bottom:8px;
}

.zl-product-body h2{
  margin:0 0 10px;
  font-size:17px;
  line-height:1.2;
  font-weight:950;
  text-transform:uppercase;
}

.zl-product-body h2 a{
  color:var(--zl-ink);
  text-decoration:none;
}

.zl-product-price{
  color:var(--zl-red);
  font-size:21px;
  font-weight:950;
  margin:0 0 18px;
}

.zl-product-price del{
  color:#98a2b3;
  font-size:15px;
}

.zl-product-price ins{
  text-decoration:none;
}

.zl-product-actions{
  margin-top:auto;
}

.zl-product-actions .zl-btn{
  flex:1;
}

.zl-no-products{
  grid-column:1 / -1;
  background:#fff;
  border-radius:var(--zl-radius);
  border:1px solid var(--zl-line);
  box-shadow:var(--zl-shadow);
  text-align:center;
  padding:40px;
}

.zl-page-hero{
  padding:42px;
  text-align:center;
  margin-bottom:24px;
}

.zl-page-hero p{
  margin-left:auto;
  margin-right:auto;
}

.zl-woo-box{
  padding:28px;
}

/* WooCommerce dentro de cajas premium */
.zl-woo-box .woocommerce{
  max-width:100% !important;
}

.zl-woo-box form.login,
.zl-woo-box form.register{
  background:#fff !important;
  border:1px solid var(--zl-line) !important;
  border-radius:22px !important;
  padding:24px !important;
  box-shadow:0 12px 30px rgba(15,23,42,.07) !important;
}

.zl-woo-box .u-columns.col2-set{
  display:grid !important;
  grid-template-columns:repeat(2,minmax(0,1fr)) !important;
  gap:24px !important;
}

.zl-woo-box .u-column1,
.zl-woo-box .u-column2{
  width:auto !important;
  float:none !important;
}

/* El estilo de estos campos se movió a redisenio-total (única fuente
   de diseño para campos de texto en todo el plugin). */
.zl-woo-box select{
  border:1px solid var(--zl-line) !important;
  border-radius:14px !important;
  min-height:46px !important;
  padding:10px 12px !important;
}

/* El estilo de estos botones se movió a redisenio-total (única fuente
   de diseño para botones en todo el plugin). */

.zl-woo-box table.shop_table,
.zl-woo-box .cart_totals,
.zl-woo-box .woocommerce-checkout-review-order{
  background:#fff !important;
  border:1px solid var(--zl-line) !important;
  border-radius:22px !important;
  overflow:hidden !important;
  box-shadow:0 12px 30px rgba(15,23,42,.07) !important;
}

@media(max-width:980px){
  .zl-shop-hero{
    grid-template-columns:1fr;
  }

  .zl-product-grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }
}

@media(max-width:680px){
  .zl-premium-shop,
  .zl-premium-page{
    padding:18px 12px 50px;
  }

  .zl-shop-hero > div:first-child,
  .zl-page-hero,
  .zl-woo-box{
    padding:24px;
  }

  .zl-shop-hero h1,
  .zl-page-hero h1{
    font-size:42px;
  }

  .zl-product-grid{
    grid-template-columns:1fr;
  }

  .zl-woo-box .u-columns.col2-set{
    grid-template-columns:1fr !important;
  }

  .zl-product-image{
    height:230px;
  }
}
