/* Custom CSS to fix styling issues */
.add_cart {
    border: none;
    outline: none;
}

.wsus__list_view .wsus__product_details .add_cart {
    border: none;
    outline: none;
}

/* Header contact info styling */
.wsus__call_text p {
    font-size: 13px;
    font-weight: 400;
    color: #fff;
    margin-bottom: 2px;
}

/* Moving Slogan Styling */
.slogan_border {
    border: 1px solid #eee;
    padding: 12px 0;
    background-color: #ffffff;
    overflow: hidden;
    margin: 20px 0;
}

.marquee-container {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.marquee-content {
    display: flex;
    animation: marquee 20s linear infinite;
    white-space: nowrap;
    position: relative;
}

.slogan-text {
    color: #ff0000;
    font-size: 24px;
    font-weight: 700;
    margin: 0;
    padding: 0 50px;
    letter-spacing: 1px;
    text-transform: capitalize;
}

@keyframes marquee {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-150%);
    }
}

/* Pagination Styling */
.pagination {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.pagination .page-item .page-link {
    color: #353535;
    border: 1px solid #ddd;
    margin: 0 5px;
    border-radius: 3px;
    font-size: 14px;
    padding: 8px 15px;
}

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

.pagination .page-item.disabled .page-link {
    color: #6c757d;
    pointer-events: none;
    background-color: #fff;
    border-color: #dee2e6;
}

.pagination .page-item:first-child .page-link,
.pagination .page-item:last-child .page-link {
    padding: 8px 15px;
}

.pagination svg {
    width: 20px;
    height: 20px;
}
