/* Shop listing page */

.shop-section { max-width: 1240px; margin: 28px auto; padding: 0 24px; }
.product-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 24px; }

.product-card-link { display: block; color: inherit; text-decoration: none; }
.product-card {
  background: var(--white); border-radius: var(--radius); padding: 16px; box-shadow: var(--shadow);
  border: 1px solid rgba(43,27,46,0.06); display: flex; flex-direction: column; justify-content: space-between;
  transition: transform .25s ease, box-shadow .25s ease; height: 100%; position: relative;
}
.product-card:hover { transform: translateY(-4px); box-shadow: 0 14px 32px rgba(43,27,46,0.12); }

.img-wrapper { width: 100%; height: 200px; border-radius: 12px; overflow: hidden; background: var(--cream-2); position: relative; margin-bottom: 14px; }
.product-img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s ease; }
.product-card:hover .product-img { transform: scale(1.05); }
.certified-tag { position: absolute; top: 10px; left: 10px; background: rgba(36,27,58,0.85); color: var(--gold); font-size: 10px; font-weight: 700; padding: 3px 8px; border-radius: 6px; backdrop-filter: blur(4px); letter-spacing: 0.5px; }

.product-category { font-size: 11px; font-weight: 600; color: var(--saffron-deep); text-transform: uppercase; letter-spacing: 0.5px; }
.product-title { font-size: 15px; font-weight: 700; color: var(--night); margin: 2px 0 6px; line-height: 1.35; }
.product-rating { font-size: 12px; color: var(--ink-soft); margin-bottom: 12px; }
.product-rating span { color: #FFB300; font-weight: 600; }

.product-bottom { border-top: 1px dashed rgba(43,27,46,0.1); padding-top: 12px; display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.price-box { display: flex; flex-direction: column; }
.price-current { font-size: 16px; font-weight: 700; color: var(--night); }
.price-original { font-size: 11px; color: var(--ink-soft); text-decoration: line-through; }
.btn-add-cart { background: linear-gradient(135deg, var(--saffron), var(--saffron-deep)); color: #fff; border: none; padding: 8px 14px; border-radius: 999px; font-size: 12px; font-weight: 600; cursor: pointer; transition: all .2s; font-family: inherit; }
.btn-add-cart:hover { transform: scale(1.04); }
