:root{
  --eco-primary:#6a11cb;
  --eco-secondary:#2575fc;
  --eco-success:#00a650;
  --eco-bg:#f5f6fa;
  --eco-dark:#1f2937;
}

html,body{min-height:100%;}
body.ecommerce-body,
body.bg-grey{
  background:var(--eco-bg)!important;
  background-image:none!important;
  font-family:Arial, Helvetica, sans-serif;
  color:var(--eco-dark);
}

a{text-decoration:none;}

.eco-navbar{
  background:linear-gradient(90deg,var(--eco-primary),var(--eco-secondary));
  box-shadow:0 4px 18px rgba(31,41,55,.18);
}

.eco-logo{
  width:36px;
  height:36px;
  border-radius:12px;
  background:rgba(255,255,255,.18);
  display:inline-flex;
  align-items:center;
  justify-content:center;
}

.eco-search{max-width:620px; width:100%;}
.eco-search .form-control{border-radius:999px 0 0 999px; border:0;}
.eco-search .btn{border-radius:0 999px 999px 0;}

.eco-page{padding-bottom:90px;}

.eco-hero{
  background:linear-gradient(135deg,var(--eco-primary),var(--eco-secondary));
  color:white;
  border-radius:28px;
  min-height:220px;
  padding:42px;
  position:relative;
  overflow:hidden;
  box-shadow:0 14px 32px rgba(37,117,252,.25);
}
.eco-hero:after{
  content:"";
  position:absolute;
  width:260px;
  height:260px;
  border-radius:50%;
  right:-70px;
  top:-70px;
  background:rgba(255,255,255,.15);
}
.eco-hero:before{
  content:"";
  position:absolute;
  width:180px;
  height:180px;
  border-radius:50%;
  right:100px;
  bottom:-90px;
  background:rgba(255,255,255,.12);
}
.eco-hero-content{position:relative; z-index:1;}

.eco-panel{
  background:white;
  border-radius:22px;
  border:0;
  box-shadow:0 5px 22px rgba(0,0,0,.08);
}

.category-link{
  border:0;
  border-radius:12px!important;
  margin-bottom:5px;
  color:#374151;
  font-weight:500;
}
.category-link:hover,
.category-link.active{
  background:#eef2ff;
  color:var(--eco-primary);
}

.product-card{
  border:0;
  border-radius:20px;
  overflow:hidden;
  background:#fff;
  box-shadow:0 5px 18px rgba(0,0,0,.08);
  transition:all .25s ease;
}
.product-card:hover{
  transform:translateY(-6px);
  box-shadow:0 16px 35px rgba(0,0,0,.14);
}
.product-img-box{
  height:210px;
  background:#f8fafc;
  display:flex;
  align-items:center;
  justify-content:center;
  position:relative;
  overflow:hidden;
}
.product-img{
  width:100%;
  height:100%;
  object-fit:contain;
  padding:16px;
  transition:transform .25s ease;
}
.product-card:hover .product-img{transform:scale(1.06);}
.product-title{
  font-size:1rem;
  font-weight:700;
  color:#111827;
  min-height:24px;
}
.product-description{
  color:#6b7280;
  font-size:.92rem;
  min-height:42px;
}
.product-price{
  color:var(--eco-success);
  font-size:2rem;
  font-weight:800;
  line-height:1;
}
.btn-add-cart{
  background:linear-gradient(90deg,var(--eco-primary),var(--eco-secondary));
  border:0;
  border-radius:14px;
  font-weight:700;
  padding:.7rem 1rem;
}
.btn-add-cart:hover{opacity:.93;}
.badge-stock{
  position:absolute;
  top:12px;
  left:12px;
  border-radius:999px;
  padding:.45rem .7rem;
}
.favorite-btn{
  position:absolute;
  top:10px;
  right:10px;
  width:36px;
  height:36px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
}
.cart-floating{
  position:fixed;
  right:22px;
  bottom:62px;
  z-index:1040;
  border-radius:999px;
  box-shadow:0 10px 30px rgba(0,0,0,.25);
}
.footer-fixed.skippy{
  background:linear-gradient(90deg,var(--eco-primary),var(--eco-secondary));
}

.cart-card{border:0;border-radius:22px;box-shadow:0 6px 25px rgba(0,0,0,.08);}

@media(max-width:768px){
  .eco-hero{padding:28px;text-align:center;min-height:auto;}
  .product-img-box{height:170px;}
  .product-price{font-size:1.65rem;}
  .eco-search{max-width:100%; margin-top:12px;}
  .cart-floating{bottom:70px;right:14px;}
}

/* Detalle de producto */
.product-detail-card{
  overflow:hidden;
}
.product-detail-img-box{
  min-height:420px;
  background:linear-gradient(180deg,#f8fafc,#eef2ff);
  border-radius:28px;
  display:flex;
  align-items:center;
  justify-content:center;
  position:relative;
  overflow:hidden;
}
.product-detail-img{
  width:100%;
  max-height:390px;
  object-fit:contain;
  padding:28px;
  transition:transform .25s ease;
}
.product-detail-img-box:hover .product-detail-img{
  transform:scale(1.04);
}
.badge-stock-detail{
  position:absolute;
  top:18px;
  left:18px;
  border-radius:999px;
  font-size:1rem;
  padding:.65rem 1rem;
  z-index:2;
}
.product-detail-price{
  color:var(--eco-success);
  font-size:3.4rem;
  font-weight:900;
  line-height:1;
}
@media(max-width:768px){
  .product-detail-img-box{min-height:280px;}
  .product-detail-img{max-height:260px;padding:18px;}
  .product-detail-price{font-size:2.6rem;}
}
