  /* ---------- TRUST STRIP ---------- */
  .trust-strip{display:flex;justify-content:space-between;flex-wrap:wrap;gap:18px;padding:30px 0;margin-top:40px;border-top:1px solid var(--border);}
  .trust-item{display:flex;align-items:center;gap:12px;flex:1;min-width:220px;}
  .trust-item svg{width:30px;height:30px;stroke:var(--green);flex:none;}
  .trust-item b{display:block;font-size:13px;}
  .trust-item span{display:block;font-size:11.5px;color:var(--gray);}


.notice{background:var(--green-light);border:1px solid #d4e7d9;border-radius:10px;padding:14px 16px;color:var(--green-2);}
.btn{display:inline-flex;align-items:center;justify-content:center;border-radius:8px;padding:12px 18px;font-weight:700;}
.btn-primary{background:var(--green);color:#fff;}
.btn-primary:hover{background:var(--green-2);}


/* ---------- PRODUCT CARDS v15.2 ---------- */
.product-card{
  position:relative;
  display:flex;
  flex-direction:column;
  min-width:0;
  min-height:390px;
  padding:14px;
  border:1px solid #dce4ec;
  border-radius:14px;
  background:#fff;
  color:#07162a;
  box-shadow:0 4px 18px rgba(4,22,43,.05);
  overflow:hidden;
}
.product-card:hover{box-shadow:0 10px 28px rgba(2,22,49,.12);transform:translateY(-1px)}
.product-thumb{
  height:205px;
  margin:0 0 12px;
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
  border-radius:10px;
  background:#f7f9fb;
}
.product-thumb img,.product-thumb svg{
  display:block;
  width:100%;
  height:100%;
  object-fit:contain;
  padding:10px;
}
.product-thumb img.product-placeholder{width:78%;height:78%;opacity:.52;padding:18px}
.product-card h4{
  margin:0 0 10px;
  min-height:42px;
  font-size:14px;
  line-height:1.45;
  font-weight:700;
  color:#07162a;
}
.product-card h4 a{
  display:-webkit-box;
  -webkit-line-clamp:2;
  -webkit-box-orient:vertical;
  overflow:hidden;
  color:inherit;
}
.product-card .rating{
  display:flex;
  align-items:center;
  gap:7px;
  min-height:20px;
  margin-top:auto;
  color:#778391;
  font-size:11px;
}
.product-card .stars{display:flex;align-items:center;gap:2px}
.product-card .stars span{display:flex;width:13px;height:13px}
.product-card .stars svg{width:13px;height:13px;fill:#ffad17}
.product-card .price-row{
  display:flex;
  align-items:baseline;
  gap:8px;
  min-height:31px;
  margin:8px 0 10px;
}
.product-card .price-now{font-size:19px;font-weight:800;color:#07162a}
.product-card .price-old{font-size:12px;color:#8b949e;text-decoration:line-through}
.product-card .add-cart{
  width:100%;
  min-height:40px;
  border:0;
  border-radius:8px;
  background:#082f61;
  color:#fff;
  font:inherit;
  font-size:12px;
  font-weight:800;
  cursor:pointer;
}
.product-card .add-cart:hover{background:#0b66c3}
.product-card .add-cart:disabled{background:#e4e9ee;color:#89929c;cursor:not-allowed}
.product-card .wish{
  position:absolute;
  z-index:3;
  top:12px;
  right:12px;
  width:34px;
  height:34px;
  padding:8px;
  border:1px solid #dce4ec;
  border-radius:50%;
  background:rgba(255,255,255,.94);
  cursor:pointer;
}
.product-card .wish svg{width:100%;height:100%;stroke:#17334f}
.product-card .wish.active{background:#e9f3ff}
.product-card .badge{
  position:absolute;
  z-index:3;
  top:12px;
  left:12px;
  display:inline-flex;
  padding:6px 9px;
  border-radius:6px;
  background:#0b63b9;
  color:#fff;
  font-size:10px;
  line-height:1;
  font-weight:800;
  text-transform:uppercase;
}
.product-card .badge.sale{background:#d93025}
.product-card .badge.new{background:#16804b}
.product-card .badge.hit{background:#0b63b9}
@media(max-width:650px){
  .product-card{min-height:350px;padding:11px}
  .product-thumb{height:165px}
  .product-card h4{font-size:13px}
  .product-card .price-now{font-size:17px}
}
