/* SHOP PAGE STYLES */
#shop {
  padding: 60px 20px;
  background: #fafafa;
  color: #222;
  text-align: center;
}

.shop-intro h2 {
  font-size: 2rem;
  margin-bottom: 10px;
  font-family: "EB Garamond", serif;
}

.shop-intro p {
  max-width: 700px;
  margin: 0 auto 40px;
  font-size: 1.1rem;
  color: #555;
  line-height: 1.6;
}

.product-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}

.product-card {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.08);
  width: 320px;
  padding: 20px;
  text-align: center;
  transition: transform 0.3s ease;
}

.product-card:hover {
  transform: translateY(-5px);
}

.product-card img {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 15px;
}

.product-card h3 {
  font-size: 1.25rem;
  font-family: "EB Garamond", serif;
  margin-bottom: 8px;
}

.subtitle {
  font-style: italic;
  color: #555;
  margin-bottom: 12px;
}

.gumroad-button {
  display: inline-block;
  background: linear-gradient(90deg, #2f6959 0%, #005b4f 100%);
  color: #fff;
  padding: 10px 24px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease, transform 0.2s ease;
}

.gumroad-button:hover {
  background: linear-gradient(90deg, #005b4f 0%, #00463e 100%);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .product-grid {
    flex-direction: column;
    align-items: center;
  }
}
