/*
 Theme Name:   Woodmart Child
 Description:  Woodmart Child Theme
 Author:       XTemos
 Author URI:   http://xtemos.com
 Template:     woodmart
 Version:      1.0.0
 Text Domain:  woodmart
*/



.buy-via-chat {
    margin-top: 15px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.chat-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    color: #fff;
    transition: transform 0.2s, box-shadow 0.2s;
    font-size: 14px;
}

.chat-button:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.chat-button svg {
    width: 20px;
    height: 20px;
    fill: white;
}

.chat-button.whatsapp {
    background-color: #25D366;
}

.chat-button.telegram {
    background-color: #0088cc;
}

@media (max-width: 480px) {
    .chat-button {
        flex: 1 1 48%;
        justify-content: center;
    }
