/* ===== Products ===== */
#products {
  padding: 100px 0;
  background: #f5efe6;
}

.products-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px;
}

.products-title {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: 44px;
  color: #3e1f00;
  text-align: center;
  letter-spacing: 0.01em;
}

.products-subtitle {
  text-align: center;
  font-size: 18px;
  color: #8b5e3c;
  max-width: 560px;
  margin: 14px auto 56px;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.product-card {
  background: #ffffff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(62, 31, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: 0 18px 40px rgba(62, 31, 0, 0.15);
}

.product-img {
  height: 220px;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s ease;
}

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

.product-body {
  padding: 22px 24px 24px;
}

.product-name {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 21px;
  color: #3e1f00;
  margin-bottom: 6px;
}

.product-desc {
  font-size: 14.5px;
  color: #8b5e3c;
  margin-bottom: 18px;
  min-height: 44px;
}

.product-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.product-price {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 22px;
  color: #c8a96e;
}

.product-btn {
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.03em;
  text-decoration: none;
  color: #3e1f00;
  background: transparent;
  border: 1.5px solid #c8a96e;
  padding: 9px 20px;
  border-radius: 50px;
  transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.product-btn:hover {
  background: #c8a96e;
  color: #ffffff;
  transform: translateY(-2px);
}

/* ===== Responsive ===== */
@media (min-width: 1440px) {
  .products-inner { max-width: 1320px; padding: 0 64px; }
}

@media (max-width: 1024px) {
  #products { padding: 80px 0; }
  .products-inner { padding: 0 32px; }
  .products-title { font-size: 38px; }
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 22px; }
}

@media (max-width: 768px) {
  .products-subtitle { font-size: 16px; margin-bottom: 40px; }
  .product-img { height: 200px; }
}

@media (max-width: 480px) {
  #products { padding: 64px 0; }
  .products-inner { padding: 0 16px; }
  .products-title { font-size: 30px; }
  .products-grid { grid-template-columns: 1fr; }
  .product-desc { min-height: 0; }
}
