/* ===== Product Page ===== */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 40px;
  margin-top: 40px;
  padding: 0 10px;
}

.product-card {
  background-color: #fffdfc;
  padding: 24px;
  border-radius: 16px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.04);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #f1eaea;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.08);
}

.product-card img {
  max-width: 100%;
  height: auto;
  border-radius: 14px;
  margin-bottom: 16px;
  transition: transform 0.3s ease;
}

.product-card:hover img {
  transform: scale(1.03);
}

.product-card h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #222;
}

.product-card p {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 16px;
  line-height: 1.5;
}


/* ===== Capsule Dumbbell Product Page Styling ===== */

background: linear-gradient(to bottom right, #fff9f9, #fef7f5);

.product-hero-row {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  margin: 60px auto;
  max-width: 1100px;
  padding: 0 20px;
}

.product-text-col {
  flex: 1;
  max-width: 600px;
}

.product-visual-col {
  flex: 1;
  max-width: 400px;
  text-align: center;
}

.product-visual-col img {
  max-width: 100%;
  border-radius: 14px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.05);
  margin-bottom: 20px;
}

.btn-primary {
  background-color: #ff6b81;
  color: white;
  padding: 12px 24px;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  display: inline-block;
  transition: background-color 0.3s ease;
}

.btn-primary:hover {
  background-color: #e85c70;
}

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

  .product-text-col,
  .product-visual-col {
    max-width: 100%;
  }
}
