

/* Start:/local/templates/DenAlf/components/bitrix/news.list/tablicatovarov-h1/style.css?17703655782285*/
/* Сетка карточек */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
    padding: 20px 0;
}

/* Карточка товара */
.product-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 0 24px 0 rgba(132, 132, 132, 0.3);
    padding: 20px;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(132, 132, 132, 0.4);
    border-color: #ffcf27;
}

/* Изображение */
.product-card__image {
    text-align: center;
    margin-bottom: 15px;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-card__image img {
    max-width: 100%;
    max-height: 180px;
    object-fit: contain;
}

/* Название */
.product-card__title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 15px;
    min-height: 50px;
}

.product-card__title a {
    color: #000;
    text-decoration: none;
    transition: color 0.3s;
}

.product-card__title a:hover {
    color: #ffcf27;
}

/* Характеристики */
.product-card__specs {
    flex-grow: 1;
    margin-bottom: 20px;
}

.product-card__spec-item {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px dashed #ddd;
    font-size: 14px;
}

.product-card__spec-item:last-child {
    border-bottom: none;
}

.spec-label {
    color: #666;
}

.spec-value {
    font-weight: bold;
    color: #000;
}

/* Кнопка */
.product-card__button {
    text-align: center;
}

.btn-details {
    display: inline-block;
    background: #ffcf27;
    color: #000;
    padding: 12px 30px;
    font-weight: bold;
    text-decoration: none;
    border-radius: 5px;
    border: 2px solid #000;
    transition: all 0.3s ease;
    width: 100%;
    box-sizing: border-box;
}

.btn-details:hover {
    background: #000;
    color: #ffcf27;
}

/* Адаптивность */
@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .products-grid {
        grid-template-columns: 1fr;
    }
}
/* End */
/* /local/templates/DenAlf/components/bitrix/news.list/tablicatovarov-h1/style.css?17703655782285 */
