.whatsapp-float {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 1000;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    padding: 15px;
    font-size: 24px;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
}

.whatsapp-float:hover {
    color: white;
    box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

@media (max-width: 768px) {
    .whatsapp-float {
        display: none;
    }
}

.stock-out-overlay {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 100%;
    background-color: white;
    color: black;
    font-size: 1em;
    opacity: 0.8;
    font-weight: bold;
    text-align: center;
    padding: 10px 0;
    overflow: hidden;
    white-space: nowrap;
}

.social_list .fa-facebook-f,
.social_list .fa-twitter,
.social_list .fa-instagram,
.social_list .fa-linkedin,
.social_list .fa-whatsapp,
.social_list .fa-youtube,
.social_list .fa-tiktok,
.social_list .fa-telegram-plane,
.social_list .fa-github,
.social_list i.fab {
    padding: 5px 8px;
    color: white;
    display: inline-block;
    transition: background-color 0.3s;
}

.social_list .fa-facebook-f {
    background-color: #3b5998;
}

.social_list .fa-facebook-f:hover {
    background-color: #2d4373;
}

.social_list .fa-twitter {
    background-color: #1da1f2;
}

.social_list .fa-twitter:hover {
    background-color: #0c85d0;
}

.social_list .fa-instagram {
    background-color: #e4405f;
}

.social_list .fa-instagram:hover {
    background-color: #bc2a8d;
}

.social_list .fa-linkedin {
    background-color: #0077b5;
}

.social_list .fa-linkedin:hover {
    background-color: #005983;
}

.social_list .fa-whatsapp {
    background-color: #25d366;
}

.social_list .fa-whatsapp:hover {
    background-color: #128c7e;
}

.social_list .fa-youtube {
    background-color: #ff0000;
}

.social_list .fa-youtube:hover {
    background-color: #cc0000;
}

.social_list .fa-tiktok {
    background-color: #000000;
}

.social_list .fa-tiktok:hover {
    background-color: #111111;
}

.social_list .fa-telegram-plane {
    background-color: #0088cc;
}

.social_list .fa-telegram-plane:hover {
    background-color: #006b9b;
}

.social_list .fa-github {
    background-color: #181717;
}

.social_list .fa-github:hover {
    background-color: #0d0d0d;
}
.custom_paginate > .page-link, .custom_paginate .page-link {
    color: var(--primary-color);
}
.custom_paginate .active > .page-link, .custom_paginate .page-link.active {
    color: #f0f0f0;
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}
.custom_paginate .page-link:focus {
    box-shadow: var(--primary-color);
    border-color: var(--secondary-color);
}
.bg--primary{
    background-color: var(--primary-color);
}