/* ===== СЛАЙДЕР: ОСНОВНІ СТИЛІ ===== */

.header-image-container {
    width: 100%;
    height: 400px;
    position: relative;
    overflow: hidden;
    background-color: #f5f5f5;
}

#slider {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    display: block;
}

.slider-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
}

.slider-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    background-size: cover;
    background-position: center;
}

/* ===== СЛАЙДЕР: МОБІЛЬНА ОПТИМІЗАЦІЯ ===== */

@media (max-width: 1200px) {
    .header-image-container {
        height: 350px;
    }
}

@media (max-width: 992px) {
    .header-image-container {
        height: 300px;
    }
}

@media (max-width: 768px) {
    .header-image-container {
        height: 300px;
    }
}

@media (max-width: 576px) {
    .header-image-container {
        height: 250px;
    }
}

@media (max-width: 480px) {
    .header-image-container {
        height: 200px;
        min-height: 180px;
    }
}

/* ===== ТОВАРИ: КАРТКИ ===== */

.card-img-top {
    width: 100%;
    height: 200px;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

.bg-card {
    background-color: rgb(255, 250, 200);
}

/* ===== ЕЛЕМЕНТИ ІНТЕРФЕЙСУ ===== */

.numb {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: #dc3545;
    color: #fff;
    font-size: 2rem;
}

#cart-icon {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1050;
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    #cart-icon {
        position: static;
    }
}

/* ===== ПАГІНАЦІЯ ===== */

.pagination .page-link {
    color: #dc3545;
}

.pagination .page-link:hover {
    background-color: #f8d7da;
    border-color: #dc3545;
}

.pagination .page-item.active .page-link {
    background-color: #dc3545;
    border-color: #dc3545;
    color: #fff;
}

.page-link:focus {
    box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.25);
}
