/* Контейнер с карточками */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  padding: 40px 0;
}

/* Карточка товара */
.product-card {
  background: var(--ivory);
  border: 1px solid var(--gold);
  border-radius: 20px;
  padding: 20px;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  position: relative;
  overflow: hidden;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(197, 168, 130, 0.15);
}

/* Изображение товара */
.product-image {
  height: 220px;
  border-radius: 12px;
  object-fit: cover;
  margin-bottom: 15px;
  position: relative;
}

.product-image::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(255,252,248,0) 60%, rgba(197,168,130,0.15));
}

/* Название услуги */
.product-title {
  color: var(--gold-dark);
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 18px;
  margin: 0 0 12px 0;
  min-height: 44px;
}

/* Описание услуги */
.product-description {
  color: var(--slate);
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 20px;
  height: 60px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

/* Блок с ценой */
.price-block {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
}

.product-price {
  color: var(--gold);
  font-size: 20px;
  font-weight: 700;
}

/* Кнопка "Заказать" */
.product-btn {
  background: var(--gold);
  color: var(--ivory) !important;
  border: none !important;
  border-radius: 25px !important;
  padding: 10px 25px !important;
  font-size: 14px !important;
  transition: all 0.3s ease !important;
}

.product-btn:hover {
  background: var(--gold-dark) !important;
  transform: scale(1.05);
}

/* Лейблы и бейджи */
.product-badge {
  position: absolute;
  top: 15px;
  right: -30px;
  background: var(--gold-dark);
  color: var(--ivory);
  padding: 8px 35px;
  transform: rotate(45deg);
  font-size: 12px;
  z-index: 2;
}

/* Адаптивность */
@media (max-width: 768px) {
  .products-grid {
    gap: 20px;
    grid-template-columns: 1fr;
  }
  
  .product-image {
    height: 180px;
  }
  
  .product-title {
    font-size: 16px;
    min-height: auto;
  }
}