
.chat-buttons-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 15px;
}

.chat-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #000;
    color: #fff;
    padding: 12px 15px;
    font-size: 16px;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
}

.chat-btn:hover {
    opacity: 0.85;
}

.messenger-btn i {
    color: #0084FF;
    font-size: 20px;
}

.whatsapp-btn i {
    color: #25D366;
    font-size: 20px;
}

.call-btn i {
    color: #28a745;
    font-size: 20px;
}

/* Mobile view = stacked */
@media (max-width: 768px) {
    .chat-buttons-wrap {
        flex-direction: column;
    }
}

/* 🔹 Hide chat buttons when sticky add-to-cart bar is shown */
.wd-sticky-btn.wd-sticky-btn-shown .chat-buttons-wrap {
    display: none !important;
}
