/* Cart Count Badge Styling */
.cart-count {
    position: absolute;
    top: -8px !important;
    right: -8px !important;
    width: 18px;
    height: 18px;
    font-size: 10px;
    background-color: #cd192d;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

/* Pagination Styling */
.pagination-shop {
    display: flex;
    list-style: none;
    padding: 0;
}

.pagination-shop .page-item {
    margin: 0 2px;
}

.pagination-shop .page-item .page-link {
    padding: 8px 16px;
    border-radius: 4px;
    color: #333;
    background-color: #f8f9fa;
    border: 1px solid #dee2e6;
    text-decoration: none;
}

.pagination-shop .page-item.active .page-link {
    color: #fff;
    background-color: #cd192d;
    border-color: #cd192d;
}

.pagination-shop .page-item.disabled .page-link {
    color: #6c757d;
    pointer-events: none;
    background-color: #f8f9fa;
    border-color: #dee2e6;
}

/* Page size dropdown styling */
.pagination-container select.form-control-sm {
    width: 70px;
    height: 30px;
    padding: 2px 5px;
    font-size: 12px;
    display: inline-block;
}