/* ============================================================
 * master-social-footer.css
 * Extracted from: head_styles.blade.php
 * Scope: WhatsApp float, stock-out overlay, social icons,
 *        footer fix, app badges, newsletter title
 * ============================================================ */

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 999;
    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 */
.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 Icons */
.social_list .fa-facebook-f {
    padding: 5px 8px;
    color: white;
    background-color: #3b5998;
}

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

.social_list .fa-twitter {
    padding: 5px 8px;
    color: white;
    background-color: #1da1f2;
}

.social_list .fa-twitter:hover {
    padding: 5px 8px;
    color: white;
    background-color: #0c85d0;
}

.social_list .fa-instagram {
    padding: 5px 8px;
    color: white;
    background-color: #e4405f;
}

.social_list .fa-instagram:hover {
    padding: 5px 8px;
    color: white;
    background-color: #bc2a8d;
}

.social_list .fa-linkedin {
    padding: 5px 8px;
    color: white;
    background-color: #0077b5;
}

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

.social_list .fa-whatsapp {
    padding: 5px 8px;
    color: white;
    background-color: #25d366;
}

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

.social_list .fa-youtube {
    padding: 5px 8px;
    color: white;
    background-color: #ff0000;
}

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

/* Footer Background Fix */
footer {
    position: relative !important;
    z-index: 999 !important;
    clear: both !important;
    margin-top: 0 !important;
}

#content {
    position: relative;
    z-index: 1;
    background: transparent !important;
    background-color: transparent !important;
}

body {
    background: transparent !important;
    background-color: transparent !important;
}

/* App Store Badges */
.app-badges {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 15px;
}

.app-badge-btn {
    display: inline-block;
    transition: transform 0.3s ease, opacity 0.3s ease;
    text-decoration: none;
}

.app-badge-btn:hover {
    transform: scale(1.05);
    opacity: 0.9;
}

.app-badge-btn img {
    height: 35px !important;
    max-height: 35px !important;
    width: auto !important;
    max-width: 140px !important;
    display: block;
}

@media (max-width: 768px) {
    .app-badges {
        gap: 10px;
    }

    .app-badge-btn img {
        height: 32px !important;
        max-height: 32px !important;
        max-width: 130px !important;
    }
}

@media (max-width: 576px) {
    .app-badge-btn img {
        height: 30px !important;
        max-height: 30px !important;
        max-width: 120px !important;
    }
}

/* Newsletter */
.footer-newsletter {
    margin: 15px 0 25px 0;
    padding: 15px;
    border-radius: 8px;
    border: none;
}

.footer-menu .title.stay_conn a {
    color: #ffffff !important;
}

.footer-menu ul + ul {
    margin-top: 20px;
}
