body.products{
  background: var(--bm-green, #f7fcfc);
}

/* Page container */
.wrap{
  max-width: 1100px;
  margin: 0 auto;
  padding: 22px 14px 44px;
}

/* Head */
.page-head{
  text-align: center;
  padding: 18px 10px 10px;
}
.page-head h1{
  margin: 0 0 8px;
  color: #091423;
}
.page-head p{
  margin: 0 auto;
  max-width: 720px;
  line-height: 1.5;
  opacity: 0.9;
}

/* Sections */
.product-section{
  margin-top: 26px;
  background: #fff;
  border-radius: 10px;
  padding: 18px 16px 16px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}
.section-title{
  text-align: left;
  margin-bottom: 12px;
}
.section-title h2{
  margin: 0 0 6px;
  color: #091423;
}
.section-title {
  margin: 0;
  opacity: 0.85;
}

/* Grid */
.product-grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

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

@media (max-width: 560px){
  .product-grid{
    grid-template-columns: 1fr;
  }
}

/* Cards */
.products-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.product-card{
  display:flex;
  flex-direction:column;
  height:100%;
}

.product-body{
  margin-top:auto;
}
.product-card{
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.product-media{
  background:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  height:160px;     /* ⭐ KEY LINE */
  padding:10px;
}
.product-media img{
  max-height:140px;
  width:auto;
  height:auto;
}
.product-media img{
  display: block;
  max-height: 220px;
  width: auto;
  height: auto;
  background: #fff; 

}
.product-media img{
  display:block;
  max-height:180px;
  width:auto;
}

.product-body{
  padding: 12px 12px 14px;
}
.product-body h3{
  margin: 0 0 6px;
  font-size: 18px;
  color: #091423;
}
.product-sub{
  margin: 0 0 10px;
  opacity: 0.8;
  font-size: 14px;
}

.product-meta{
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  padding-top: 10px;
  border-top: 1px dashed rgba(0,0,0,0.14);
}

.product-size{
  font-size: 13px;
  opacity: 0.85;
}
.product-price{
  font-weight: 700;
  color: #0a203f;
}

/* Bottom note + CTA */
.products-note{
  margin-top: 22px;
  text-align: center;
}
.products-note p{
  margin: 10px auto;
  max-width: 760px;
  opacity: 0.9;
}

.bm-btn{
  display: inline-block;
  padding: 12px 18px;
  border-radius: 8px;
  background: #A67C00;
  color: #fff;
  font-weight: 700;
}
.bm-btn:hover{
  transform: translateY(-1px);
}