/* Исправление fallback для товаров без картинок */

/* Белый фон для товаров без картинок */
.image-fallback {
    width: 100% !important;
    height: 200px !important;
    background: white !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: #6c757d !important;
    font-size: 48px !important;
    border-radius: 20px 20px 0 0 !important;
    border: 2px solid #e9ecef !important;
    position: relative !important;
}

.image-fallback:before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    background: linear-gradient(45deg, #f8f9fa, #e9ecef) !important;
    border-radius: 20px 20px 0 0 !important;
    z-index: -1 !important;
}

.image-fallback i {
    color: #dee2e6 !important;
    font-size: 48px !important;
    opacity: 0.7 !important;
}

/* Улучшаем карточки товаров */
.product {
    background: white !important;
    border-radius: 20px !important;
    overflow: hidden !important;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08) !important;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
    border: 1px solid rgba(255,255,255,0.2) !important;
    backdrop-filter: blur(10px) !important;
    position: relative !important;
}

.product:hover {
    transform: translateY(-8px) scale(1.02) !important;
    box-shadow: 0 12px 40px rgba(0,0,0,0.15) !important;
}

.product-img {
    position: relative !important;
    overflow: hidden !important;
    border-radius: 20px 20px 0 0 !important;
    background: white !important;
    min-height: 200px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.product-img img {
    transition: transform 0.4s ease !important;
    width: 100% !important;
    height: 200px !important;
    object-fit: cover !important;
    background: white !important;
}

.product-img img[src=""],
.product-img img:not([src]) {
    display: none !important;
}

/* Улучшаем body товара */
.product-body {
    padding: 25px !important;
    background: white !important;
    border-radius: 0 0 20px 20px !important;
}

.product-name {
    margin-bottom: 15px !important;
}

.product-name a {
    color: #2c3e50 !important;
    font-weight: 600 !important;
    font-size: 16px !important;
    line-height: 1.4 !important;
    text-decoration: none !important;
    transition: color 0.3s ease !important;
}

.product-name a:hover {
    color: #e74c3c !important;
}

.product-price {
    color: #e74c3c !important;
    font-weight: 700 !important;
    font-size: 20px !important;
    margin-bottom: 15px !important;
}

.product-category {
    color: #6c757d !important;
    font-size: 12px !important;
    text-transform: uppercase !important;
    margin-bottom: 10px !important;
    font-weight: 500 !important;
}

/* Улучшаем кнопки */
.add-to-cart-btn {
    background: linear-gradient(45deg, #e74c3c, #c0392b) !important;
    border: none !important;
    color: white !important;
    padding: 12px 25px !important;
    border-radius: 30px !important;
    font-weight: 600 !important;
    font-size: 14px !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3) !important;
    position: relative !important;
    overflow: hidden !important;
    width: 100% !important;
}

.add-to-cart-btn:before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: -100% !important;
    width: 100% !important;
    height: 100% !important;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent) !important;
    transition: left 0.5s !important;
}

.add-to-cart-btn:hover:before {
    left: 100% !important;
}

.add-to-cart-btn:hover {
    background: linear-gradient(45deg, #c0392b, #a93226) !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 8px 25px rgba(231, 76, 60, 0.4) !important;
}

.add-to-cart-btn i {
    margin-right: 8px !important;
}

/* Адаптивность */
@media (max-width: 768px) {
    .product {
        margin-bottom: 20px;
    }
    
    .image-fallback {
        height: 150px !important;
    }
    
    .product-img img {
        height: 150px !important;
    }
    
    .product-img {
        min-height: 150px !important;
    }
}

@media (max-width: 480px) {
    .image-fallback {
        height: 120px !important;
    }
    
    .product-img img {
        height: 120px !important;
    }
    
    .product-img {
        min-height: 120px !important;
    }
    
    .image-fallback i {
        font-size: 36px !important;
    }
}
