/* style.css */
.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 Styles */
.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);
}

.header-image-container {
    width: 100%;
    height: 30vh;
    overflow: hidden;
}

.header-image-container img {
    width: 100%;
    height: auto;
}

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