.codious-wc-buttons {
    position: fixed;
    bottom: 15px;
    right: 15px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 9999;
}

/* Common button style */
.codious-wc-buttons a {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff; /* Icon color */
    text-decoration: none;
    transition: opacity 0.3s;
}

/* WhatsApp background */
.codious-wc-whatsapp {
    background-color: #25D366;
}

/* Call background */
.codious-wc-call {
    background-color: #0a58ca;
}

/* SVG icons */
.codious-wc-buttons svg {
    width: 24px;
    height: 24px;
    display: block;
    fill: currentColor;
}

/* Hover effect */
.codious-wc-buttons a:hover {
    opacity: 0.9;
}

/* ===== MOBILE + DESKTOP CONTROL ===== */
/* Mobile: always show */
@media (max-width: 767px) {
    .codious-wc-buttons {
        display: flex !important;
    }
}

/* Desktop: change 'flex' to 'none' if you want desktop hidden */
@media (min-width: 768px) {
    .codious-wc-buttons {
        display: flex;
    }
}