/* Стили для блока "Похожие товары" */
.catalog-slider {
    margin: 25px 0;
}

.catalog-slider .title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #000;
}

.catalog-slider__inner {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.card-line {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px;
    border-bottom: 1px solid #e0e0e0;
    transition: background-color 0.2s ease;
}

.card-line:last-child {
    border-bottom: none;
}

.card-line:hover {
    background-color: #f9f9f9;
}

.card-line__image {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 4px;
    background: #f5f5f5;
}

.card-line__image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.card-line__content {
    flex: 1;
    min-width: 0;
}

.card-line__content-inner {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.card-line__name {
    font-size: 14px;
    font-weight: 500;
    color: #333;
    text-decoration: none;
    line-height: 1.3;
    transition: color 0.2s ease;
}

.card-line__name:hover {
    color: #f0cf4c;
}

.card-line__block {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.card__sku {
    font-size: 11px;
    color: #666;
}

.sku__value {
    margin: 0;
}

.card-line__right {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
    min-width: 140px;
}

.card-line__right-inner {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.card-line__right-price {
    text-align: right;
}

.card-line__price-current {
    font-size: 14px;
    font-weight: 700;
    color: #000;
    line-height: 1.2;
}

.card-line__buy {
    padding: 6px 12px;
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s ease;
    text-decoration: none;
    display: inline-block;
    white-space: nowrap;
}

.card-line__buy:hover {
    background-color: #0056b3;
    color: #fff;
}

.card-line__buy span {
    color: #fff;
}

/* Адаптивность */
@media (max-width: 992px) {
    .card-line {
        flex-wrap: wrap;
        padding: 8px;
    }
    
    .card-line__right {
        flex: 1 1 100%;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        min-width: auto;
        margin-top: 6px;
    }
    
    .card-line__right-inner {
        width: auto;
    }
}

@media (max-width: 768px) {
    .catalog-slider {
        margin: 20px 0;
    }
    
    .catalog-slider .title {
        font-size: 18px;
        margin-bottom: 12px;
    }
    
    .card-line {
        padding: 8px;
        gap: 8px;
    }
    
    .card-line__image {
        width: 35px;
        height: 35px;
    }
    
    .card-line__name {
        font-size: 13px;
    }
    
    .card-line__price-current {
        font-size: 13px;
    }
    
    .card-line__buy {
        padding: 6px 12px;
        font-size: 11px;
    }
}

