:root{
  --verde:#0D672C;
  --verdeOsc:#0b5524;
  --naranja:#ED9803;
  --grisTexto:#333333;
  --grisSuave:#f6f7fb;
  --borde: rgba(13,103,44,.18);
  --shadow: 0 10px 30px rgba(0,0,0,.08);
  --shadow2: 0 8px 18px rgba(0,0,0,.10);
  --radius: 18px;
}

html, body{
  font-family: 'Poppins', sans-serif;
  background:#ffffff;
  color: var(--grisTexto);
}

.container-max{ max-width: 1280px; }

/* ===== Navbar (tu estilo) ===== */
.navbar{
  background:#ffffff !important;
  border-bottom: 3px solid var(--verde);
}
.navbar .navbar-brand{ color: var(--verde) !important; font-weight: 800; }
.navbar .btn, .navbar a{ font-weight: 600; }
.navbar .btn-outline-dark{
  border-color: var(--verde);
  color: var(--verde);
}
.navbar .btn-outline-dark:hover{
  background: var(--verde);
  border-color: var(--verde);
  color:#fff;
}
.navbar .btn-warning{
  background: var(--naranja);
  border-color: var(--naranja);
  color:#111;
}
.navbar .btn-warning:hover{
  filter: brightness(.95);
}

/* ===== Botones (alineados con tu .btn-success) ===== */
.btn-success{
  background: var(--verde);
  border: none;
}
.btn-success:hover{ background: var(--verdeOsc); }

.btn-soft{
  border: 1px solid rgba(13,103,44,.25);
  background: rgba(13,103,44,.05);
  color: var(--verde);
}
.btn-soft:hover{
  background: rgba(13,103,44,.09);
  color: var(--verde);
}

/* ===== Hero Shopify-like ===== */
.hero{
  background:
    radial-gradient(1200px 420px at 10% 10%, rgba(237,152,3,.22), transparent 55%),
    radial-gradient(900px 380px at 90% 30%, rgba(13,103,44,.14), transparent 55%),
    linear-gradient(180deg, rgba(255,255,255,.95), rgba(255,255,255,.75));
  border: 1px solid rgba(13,103,44,.18);
  border-radius: calc(var(--radius) + 6px);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero .badge{
  border-radius: 999px;
  background: var(--naranja) !important;
  color: #111 !important;
}

.hero-cta{ display:flex; gap:10px; flex-wrap: wrap; }

.kpi{
  border: 1px solid rgba(13,103,44,.18);
  border-radius: var(--radius);
  background: rgba(255,255,255,.75);
  padding: 12px 14px;
}

/* ===== Títulos ===== */
.sectionTitle{
  display:flex;
  align-items:flex-end;
  justify-content: space-between;
  gap:12px;
  margin: 26px 0 12px;
}
.sectionTitle h2{
  margin:0;
  font-size: 1.25rem;
  color: var(--verde);
  font-weight: 800;
}
.sectionTitle .muted{ color: #556; font-size: .92rem; }

/* ===== Colecciones ===== */
.collectionCard{
  border:1px solid rgba(13,103,44,.18);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow2);
  overflow:hidden;
  transition: transform .15s ease, box-shadow .15s ease;
}
.collectionCard:hover{
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(0,0,0,.12);
}
.collectionCard .thumb{
  height: 110px;
  background: linear-gradient(135deg, rgba(13,103,44,.92), rgba(13,103,44,.72));
}
.collectionCard .content{ padding: 14px 14px 16px; }
.collectionCard .content .name{ font-weight: 800; margin-bottom: 6px; color: var(--verde); }
.collectionCard .content .desc{ color: #555; font-size: .92rem; margin: 0; }

/* ===== Panel de filtros ===== */
.filtersPanel{
  border:1px solid rgba(13,103,44,.18);
  border-radius: var(--radius);
  background: rgba(255,255,255,.9);
  box-shadow: var(--shadow);
}
.filtersPanel .form-label{
  color:#333;
  font-size: .9rem;
  font-weight: 600;
}
.form-control:focus, .form-select:focus{
  border-color: rgba(13,103,44,.55);
  box-shadow: 0 0 0 .2rem rgba(13,103,44,.15);
}

/* ===== Cards de producto Shopify-like ===== */
.card-product{
  border:1px solid rgba(13,103,44,.18);
  border-radius: var(--radius);
  overflow:hidden;
  background:#fff;
  box-shadow: var(--shadow2);
  transition: transform .15s ease, box-shadow .15s ease;
}
.card-product:hover{
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(0,0,0,.12);
}

.card-product .imgWrap{
  position: relative;
  background: #f2f6f3;
  overflow:hidden;
}
.card-product img{
  width:100%;
  height: 300px;
  object-fit: cover;
  transition: transform .25s ease;
}
.card-product:hover img{ transform: scale(1.04); }

.pill{
  display:inline-flex;
  align-items:center;
  gap:6px;
  padding: 7px 10px;
  border-radius: 999px;
  border:1px solid rgba(13,103,44,.18);
  background: rgba(255,255,255,.92);
  color: #222;
  font-size: .82rem;
  line-height: 1;
}

.price{
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--verde);
}

.quickAdd{
  position:absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .18s ease, transform .18s ease;
}
.card-product:hover .quickAdd{
  opacity: 1;
  transform: translateY(0);
}

.quickAdd .btn{
  background: var(--naranja);
  border-color: var(--naranja);
  font-weight: 800;
}
.quickAdd .btn:hover{ filter: brightness(.95); }

/* Empty state bonito */
.emptyState{
  border:1px dashed rgba(13,103,44,.35);
  border-radius: var(--radius);
  padding: 26px;
  background: rgba(13,103,44,.04);
}

/* Toast */
.toastShop{
  position: fixed;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  z-index: 2000;
  display:none;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(13,103,44,.95);
  color: #fff;
  box-shadow: 0 18px 50px rgba(0,0,0,.25);
  font-weight: 700;
}

/* ===== Footer (tu estilo) ===== */
.footerShop{
  margin-top: 32px;
  padding: 26px 0;
  background: #3c3c3b;
  color: #fff;
  border-radius: 16px;
}
.footerShop a{ color:#fff; text-decoration:none; }
.footerShop a:hover{ color: var(--naranja); }

/* Responsive */
@media (max-width: 991.98px){
  .card-product img{ height: 260px; }
}