.products-hero-copy{
  display:grid;
  grid-template-columns:minmax(0,1.25fr) minmax(260px,.9fr);
  gap:18px;
  align-items:stretch;
}

.products-hero-side{
  padding:22px 24px;
  border-radius:22px;
  background:linear-gradient(180deg,#170900,#2a1200 72%,#3b1c07);
  color:#f8eed9;
}

.products-hero-side h2{
  margin:0 0 10px;
  font-size:1.08rem;
  color:#fff;
  font-family:var(--font-heading),var(--font-body),sans-serif;
}

.products-hero-side p{
  margin:0;
  color:rgba(255,241,214,.78);
}

.products-hero-points{
  display:grid;
  gap:10px;
  margin-top:16px;
}

.products-hero-point{
  padding:14px 14px 12px;
  border-radius:16px;
  border:1px solid rgba(232,184,75,.16);
  background:rgba(255,255,255,.05);
}

.products-hero-point strong{
  display:block;
  color:#e8b84b;
  font-size:.92rem;
  margin-bottom:4px;
}

.products-hero-point span{
  display:block;
  color:rgba(255,241,214,.74);
  font-size:.8rem;
  line-height:1.6;
}

.products-toolbar{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  align-items:center;
  justify-content:space-between;
  margin-bottom:18px;
}

.products-toolbar strong{
  display:block;
  color:#140700;
  font-size:1rem;
  font-family:var(--font-heading),var(--font-body),sans-serif;
}

.products-toolbar span{
  display:block;
  color:#6f5a39;
  font-size:.84rem;
}

.product-category-strip{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-bottom:18px;
}

.product-category-chip{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:10px 16px;
  border:none;
  border-radius:999px;
  background:#fff;
  color:#2c1a00;
  font-size:.84rem;
  font-weight:700;
  cursor:pointer;
  box-shadow:0 10px 24px rgba(27,12,1,.08);
  transition:all .2s ease;
}

.product-category-chip:hover{
  transform:translateY(-1px);
  box-shadow:0 14px 28px rgba(27,12,1,.12);
}

.product-category-chip.is-active{
  background:linear-gradient(135deg,#241103,#140700);
  color:#f5d078;
}

.product-category-count{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:26px;
  height:26px;
  padding:0 8px;
  border-radius:999px;
  background:rgba(200,150,12,.12);
  color:#8b6508;
  font-size:.74rem;
  font-weight:700;
}

.product-category-chip.is-active .product-category-count{
  background:rgba(245,208,120,.18);
  color:#f5d078;
}

.product-browser-note{
  margin-bottom:18px;
  padding:14px 16px;
  border-radius:18px;
  background:rgba(255,255,255,.72);
  border:1px solid rgba(200,150,12,.16);
  color:#6f5a39;
  font-size:.84rem;
}

.product-browser-note strong{
  color:#140700;
}

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

.product-card{
  display:flex;
  flex-direction:column;
  min-width:0;
  background:#fff;
  border:1px solid rgba(200,150,12,.12);
  border-radius:24px;
  overflow:hidden;
  box-shadow:0 18px 32px rgba(27,12,1,.08);
  transition:transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}

.product-card:hover{
  transform:translateY(-4px);
  border-color:rgba(139,101,8,.28);
  box-shadow:0 20px 36px rgba(27,12,1,.14);
}

.product-card-media{
  position:relative;
  width:100%;
  aspect-ratio:1 / 1;
  overflow:hidden;
  background:#f5ead0;
}

.product-card-media img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.product-card-body{
  display:flex;
  flex:1;
  flex-direction:column;
  padding:16px;
}

.product-card-category{
  display:inline-flex;
  align-items:center;
  padding:4px 10px;
  border-radius:999px;
  background:rgba(200,150,12,.12);
  color:#8b6508;
  font-size:.72rem;
  font-weight:700;
}

.product-card-title{
  margin:10px 0 8px;
  color:#140700;
  font-size:.96rem;
  line-height:1.5;
  font-weight:700;
  font-family:var(--font-heading),var(--font-body),sans-serif;
}

.product-card-summary{
  margin:0 0 12px;
  color:#6f5a39;
  font-size:.82rem;
  line-height:1.7;
  display:-webkit-box;
  -webkit-box-orient:vertical;
  -webkit-line-clamp:3;
  overflow:hidden;
  min-height:4.2em;
}

.product-card-footer{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  margin-top:auto;
}

.product-card-price{
  color:#9e2222;
  font-size:1rem;
  font-weight:700;
}

.product-card-action{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:9px 14px;
  border-radius:999px;
  background:#140700;
  color:#f5d078;
  font-size:.78rem;
  font-weight:700;
}

.product-card-action:hover{
  background:#241103;
}

.product-grid-state{
  padding:48px 18px;
  border-radius:20px;
  border:1px dashed rgba(200,150,12,.28);
  background:rgba(255,255,255,.64);
  color:#7f6841;
  text-align:center;
  grid-column:1/-1;
}

@media (max-width: 1120px){
  .product-grid{
    grid-template-columns:repeat(3,minmax(0,1fr));
  }
}

@media (max-width: 900px){
  .products-hero-copy{
    grid-template-columns:1fr;
  }

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

@media (max-width: 560px){
  .product-category-strip{
    gap:8px;
  }

  .product-category-chip{
    width:100%;
    justify-content:space-between;
  }

  .product-grid{
    gap:14px;
  }

  .product-card-body{
    padding:14px;
  }

  .product-card-summary{
    min-height:auto;
  }
}
