/* ============================================================
   shop.css — Shop page (hero + all products grid)
   ============================================================ */

/* ---------- SHOP HERO ---------- */
.shop-hero {
  position: relative;
  width: 100%;
  min-height: 480px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: url('../assets/images/home/shop/shop.png') no-repeat center right;
  background-size: cover;
}
.shop-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
    #ffffff 0%,
    rgba(255,255,255,0.92) 30%,
    rgba(255,255,255,0.55) 50%,
    rgba(255,255,255,0.12) 68%,
    rgba(255,255,255,0) 82%);
}
.shop-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1.5rem;
  width: 100%;
}
.shop-hero-left {
  display: flex;
  flex-direction: column;
  max-width: 520px;
}
.shop-hero-eyebrow {
  font-family: 'Barlow', sans-serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #FE5000;
  margin: 0 0 20px;
}
.shop-hero-heading {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 64px;
  font-weight: 400;
  line-height: 57px;
  color: #1a1a1a;
  margin: 0 0 24px;
}
.shop-hero-body {
  font-family: 'Barlow', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.55;
  color: #555;
  max-width: 440px;
  margin: 0;
}

@media (max-width: 900px) {
  .shop-hero { min-height: 420px; }
  .shop-hero::before {
    background: linear-gradient(90deg,
      #ffffff 0%,
      rgba(255,255,255,0.9) 45%,
      rgba(255,255,255,0.6) 100%);
  }
  .shop-hero-heading { font-size: 44px; line-height: 1.05; }
}

/* ---------- ALL PRODUCTS ---------- */
.shop-all {
  width: 100%;
  background: #fff;
  padding: 72px 0 96px;
}
.shop-all-heading {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 52px;
  font-weight: 400;
  line-height: 0.95;
  color: #4b4b4b;
  margin: 0 0 48px;
}
.prod-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 32px;
}
.prod-card {
  position: relative;
  background: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.prod-badge {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #FE5000;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.prod-badge .b-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 22px;
  font-weight: 700;
}
.prod-badge .b-lbl {
  font-family: 'Barlow', sans-serif;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 1px;
}
.prod-media {
  width: 100%;
  height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.prod-media img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
}
/* empty placeholder for images not yet available */
.prod-media--empty {
  border: 1px dashed #d9d9d9;
  border-radius: 10px;
  background: #fafafa;
  flex-direction: column;
  gap: 8px;
  color: #b5b5b5;
}
.prod-media--empty svg { width: 40px; height: 40px; }
.prod-media--empty span {
  font-family: 'Barlow', sans-serif;
  font-size: 12px;
  letter-spacing: 0.5px;
}
.prod-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 8px;
}
.prod-desc {
  font-family: 'Barlow', sans-serif;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.5;
  color: #7a7a7a;
  max-width: 230px;
  margin: 0 0 14px;
}
.prod-price {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 2px;
}
.prod-stock {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #1a1a1a;
  margin: 0 0 14px;
}
.prod-cart-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: #FE5000;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.prod-cart-btn:hover { background: #e04700; transform: translateY(-2px); }
.prod-cart-btn svg { width: 22px; height: 22px; }

@media (max-width: 900px) {
  .prod-grid { grid-template-columns: repeat(2, 1fr); gap: 32px 20px; }
  .shop-all-heading { font-size: 40px; }
}
@media (max-width: 560px) {
  .prod-grid { grid-template-columns: 1fr; }
}
