/* Карточка товара - стили */

.product-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

/* Изображение товара */
.product-image-wrapper {
    position: relative;
    padding-bottom: 125%;
    overflow: hidden;
    background: #f8f8f8;
}

.product-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image {
    transform: scale(1.05);
}

/* Бейджи товара */
.product-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #1d1d1b;
    color: white;
    padding: 5px 12px;
    font-size: 11px;
    font-weight: bold;
    border-radius: 4px;
    text-transform: uppercase;
}

.product-badge.sale {
    background: #f44336;
}

.product-badge.new {
    background: #4caf50;
}

/* Информация о товаре */
.product-info {
    padding: 15px;
}

.product-category {
    font-size: 11px;
    color: #999;
    text-transform: uppercase;
    margin-bottom: 5px;
    letter-spacing: 0.5px;
}

.product-title {
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 10px;
    min-height: 40px;
    line-height: 1.3;
}

/* Цены товара */
.product-price-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.product-price {
    font-size: 18px;
    font-weight: bold;
    color: #333;
}

.product-old-price {
    font-size: 14px;
    color: #999;
    text-decoration: line-through;
}

/* Размеры товара */
.size-selector {
    display: flex;
    gap: 5px;
    flex-wrap: wrap;
}

.size-option {
    padding: 4px 8px;
    border: 1px solid #e0e0e0;
    font-size: 11px;
    border-radius: 3px;
    background: #fafafa;
}

.size-option.unavailable {
    opacity: 0.5;
    text-decoration: line-through;
    background: #f0f0f0;
    color: #999;
    border-color: #ccc;
}