/* SHOP PAGE */

.shop-page {
  background: #fafaf7;
}

/* HERO */
.shop-hero {
  padding: 100px 20px 70px;
  text-align: center;
}

.shop-hero .eyebrow {
  display: inline-block;
  margin-bottom: 12px;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #b89b4f;
}

.shop-hero h1 {
  font-size: 42px;
  margin-bottom: 16px;
}

.shop-hero p {
  font-size: 18px;
  color: #555;
}

/* GRID */
.shop-grid {
  max-width: 1100px;
  margin: 0 auto;
  padding: 60px 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

/* PRODUCT CARD */
.product-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
}

.product-media {
  height: 260px;
  background-size: cover;
  background-position: center;
}

.product-body {
  padding: 28px;
}

.product-body h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.product-desc {
  font-size: 15px;
  color: #666;
  margin-bottom: 18px;
}

.product-features {
  list-style: none;
  padding: 0;
  margin-bottom: 22px;
}

.product-features li {
  font-size: 14px;
  margin-bottom: 6px;
  color: #444;
}

/* CTA */
.product-cta {
  margin-top: auto;
}

.btn-outline {
  display: inline-block;
  padding: 12px 22px;
  border: 1px solid #b11116;
  color: #b11116;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 500;
  transition: all .2s ease;
}

.btn-outline:hover {
  background: #b11116;
  color: #fff;
}

/* DISABLED */
.product-card--disabled {
  opacity: .55;
}

.coming-soon {
  margin-top: 20px;
  font-size: 14px;
  color: #999;
  font-style: italic;
}

/* TRUST */
.shop-trust {
  padding: 60px 20px 90px;
  text-align: center;
  font-size: 18px;
  color: #333;
}
