body {
  font-family: 'Poppins', sans-serif;
  color: var(--abyss);
  background: var(--parchment);
  line-height: 1.7;
}

/* ── HERO ── */
.page-hero {
  background: var(--abyss);
  padding: 8rem 6rem 6rem;
  text-align: center;
}
.page-hero h1 {
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 900;
  color: white;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}
.page-hero h1 em {
  font-style: normal;
  color: var(--gold);
}
.page-hero p {
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
  color: var(--white-70);
  max-width: 600px;
  margin: 0 auto;
}

/* ── SHOP GRID ── */
.shop-section {
  padding: 6rem;
  max-width: 1200px;
  margin: 0 auto;
}
.shop-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem 2rem;
}

/* ── PRODUCT CARD ── */
.product-card {
  background: var(--white);
  border: 1px solid rgba(223,182,43,0.1);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  min-width: 0;
}
.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}
.product-image {
  aspect-ratio: 4/5;
  background: var(--parchment);
  overflow: hidden;
  position: relative;
  width: 100%;
  flex-shrink: 0;
}
.product-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.product-card:hover .product-image img {
  transform: scale(1.05);
}
.product-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--gold);
  color: var(--black);
  padding: 0.4rem 0.8rem;
  font-family: 'Unbounded', sans-serif;
  font-size: 0.55rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  z-index: 2;
}

.product-info {
  padding: 2rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
.product-category {
  font-family: 'Poppins', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--teal);
  margin-bottom: 0.5rem;
}
.product-info h3 {
  font-family: 'Unbounded', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--abyss);
  margin-bottom: 0.8rem;
  line-height: 1.3;
}
.product-info p {
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem;
  color: var(--abyss-text);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}
.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(0,0,0,0.05);
}
.product-price {
  font-family: 'Unbounded', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--abyss);
}
.product-price span {
  font-family: 'Poppins', sans-serif;
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--white-35);
  margin-left: 0.2rem;
}

/* ── BUNDLE CARD (Special Styling) ── */
.product-card.bundle {
  border-color: var(--gold);
  background: #fffcf5;
}

/* ── COMING SOON SECTION ── */
.shop-coming-soon {
  background: var(--abyss);
  padding: 6rem;
  text-align: center;
  margin-top: 4rem;
}
.shop-coming-soon h2 {
  font-family: 'Unbounded', sans-serif;
  font-size: 2rem;
  color: white;
  margin-bottom: 1rem;
}
.shop-coming-soon p {
  color: var(--white-70);
  max-width: 500px;
  margin: 0 auto 2.5rem;
}

/* btn-secondary in the dark coming-soon section stays gold */
.shop-coming-soon .btn-secondary { color: var(--gold); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .page-hero { padding: 6rem 3rem 4rem; }
  .shop-section { padding: 4rem 3rem; }
  .shop-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .shop-grid { grid-template-columns: 1fr; }
  .page-hero { padding: 5rem 1.5rem 3rem; }
  .shop-section { padding: 3rem 1.5rem; }
}
