/* Основные стили */
body {
    background-color: #f8f9fa;
    min-height: 100vh;
}

.navbar-brand {
    font-weight: 600;
}

/* Карточки товаров */
.product-card {
    transition: transform 0.2s, box-shadow 0.2s;
    height: 100%;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.product-image {
    height: 180px;
    object-fit: contain;
    padding: 10px;
    background: #fff;
}

.product-name {
    font-weight: 600;
    font-size: 0.95rem;
    line-height: 1.3;
    height: 2.6em;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.product-sku {
    font-size: 0.8rem;
    color: #6c757d;
}

.product-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: #198754;
}

.product-old-price {
    font-size: 0.9rem;
    color: #6c757d;
    text-decoration: line-through;
}

.product-discount {
    background: #dc3545;
    color: #fff;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
}

/* Характеристики */
.product-specs {
    font-size: 0.8rem;
}

.product-specs .badge {
    font-weight: 500;
    margin: 1px;
}

/* Наличие */
.availability-badge {
    font-size: 0.75rem;
    padding: 3px 8px;
}

/* Модальное окно */
.modal-product-images {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 1rem;
}

.modal-product-images img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: border-color 0.2s;
}

.modal-product-images img:hover {
    border-color: #0d6efd;
}

.modal-main-image {
    max-width: 100%;
    max-height: 400px;
    object-fit: contain;
    margin-bottom: 1rem;
}

/* Пагинация */
.pagination .page-link {
    min-width: 45px;
    text-align: center;
}

/* Поиск */
.form-control-lg, .form-select-lg {
    font-size: 1rem;
}

/* Адаптивность */
@media (max-width: 768px) {
    .product-image {
        height: 150px;
    }
    
    .product-name {
        font-size: 0.9rem;
    }
    
    .product-price {
        font-size: 1.1rem;
    }
}

/* Анимация загрузки */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.product-card {
    animation: fadeIn 0.3s ease-out;
}

/* Скроллбар */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #a1a1a1;
}
