/* Секция продуктов */
.products {
    padding: 80px 0;
    background-color: #1d1c1c;
}

.products__header {
    text-align: left;
    max-width: 800px;

}

.section-title {
    color: #d35400;
}

.products__title {
    font-size: 42px;
    color: #e8b830;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.products__title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #e67e22, #f39c12);
    border-radius: 2px;
}

.products__title1 {
    font-size: 42px;
    color: #e8b830;
    margin-bottom: 20px;
    margin-left: 4% ;
    position: relative;
    display: inline-block;
}

.products__title1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #e67e22, #f39c12);
    border-radius: 2px;
}

.products__description {
    font-size: 18px;
    line-height: 1.6;
    color: #555;
    margin-left: 10%;
}

/* Сетка карточек */
.products__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

/* Карточка товара */
.product-card {
    background-color: #161616;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* ИСПРАВЛЕННЫЙ БЛОК ДЛЯ ИЗОБРАЖЕНИЙ */
.product-card__image {
    width: 100%;
    height: 360px; /* Фиксированная высота для всех карточек */
    overflow: hidden;
    position: relative;
}

.product-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ключевое свойство - обрезает и масштабирует изображение */
    object-position: center; /* Центрирует изображение */
    transition: transform 0.5s ease;
    display: block; /* Убирает лишние отступы */
}

.product-card:hover .product-card__image img {
    transform: scale(1.1);
}

/* Остальные стили остаются без изменений */
.product-card__content {
    padding: 28px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-card__title {
    font-size: 24px;
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: 600;
}

.product-card__description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 15px;
}

.product-card__features {
    list-style: none;
    margin-bottom: 25px;
    flex: 1;
}

.product-card__features li {
    padding: 8px 0 8px 28px;
    position: relative;
    color: #555;
    font-size: 14px;
}

.product-card__features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: bold;
    font-size: 16px;
}

.product-card__button {
    display: inline-block;
    padding: 12px 25px;
    background: linear-gradient(135deg, #e67e22, #d35400);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    text-align: center;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    margin-top: auto;
}

.product-card__button:hover {
    background: linear-gradient(135deg, #d35400, #e67e22);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(230, 126, 34, 0.3);
}

/* Заглушка для изображений, если их нет */
.product-card__image::before {
    content: '🛢️';
    font-size: 80px;
    position: absolute;
    opacity: 0.3;
}

.product-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    position: relative;
    z-index: 1;
}

.product-card:hover .product-card__image img {
    transform: scale(1.1);
}

.product-card__content {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-card__title {
    font-size: 24px;
    color: #e8b830;
    margin-bottom: 15px;
    font-weight: 600;
}

    

.product-card__description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 30px;
    font-size: 15px;;
}

.product-card__features {
    list-style: none;
    margin-bottom: 25px;
    flex: 1;
}

.product-card__features li {
    padding: 8px 0 8px 28px;
    position: relative;
    color: #555;
    font-size: 14px;
}

.product-card__features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: bold;
    font-size: 16px;
}

.product-card__button {
    display: inline-block;
    padding: 12px 25px;
    background: linear-gradient(135deg, #e67e22, #d35400);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    text-align: center;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    margin-top: auto;
}

.product-card__button:hover {
    background: linear-gradient(135deg, #d35400, #e67e22);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(230, 126, 34, 0.3);
}

/* Адаптивность */
@media (max-width: 992px) {
    .products__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .products {
        padding: 50px 0;
    }
    
    .products__title {
        font-size: 32px;
    }
    
    .products__description {
        font-size: 16px;
    }
    
    .products__grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .product-card__image {
        height: 200px;
    }
}