/* Vendor Contact UI Standard Styles */

.vendor-contact-icons {
    display: flex;
    gap: 12px;
    align-items: center;
    justify-content: flex-start;
    margin-top: 10px;
    flex-wrap: wrap;
}

@media (max-width: 576px) {
    .vendor-contact-icons {
        gap: 10px;
        justify-content: center;
    }

    .contact-icon-btn {
        width: 38px;
        height: 38px;
        font-size: 16px;
    }
}

.contact-icon-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    background: #ffffff;
    color: #333;
    font-size: 18px;
    border: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.contact-icon-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.contact-icon-btn.whatsapp {
    color: #25D366;
    background: #e9f7ef;
}

.contact-icon-btn.whatsapp:hover {
    background: #25D366;
    color: #fff;
}

.contact-icon-btn.call {
    color: #007bff;
    background: #e7f1ff;
}

.contact-icon-btn.call:hover {
    background: #007bff;
    color: #fff;
}

.contact-icon-btn.email {
    color: #ff5a00;
    background: #fff5f0;
}

.contact-icon-btn.email:hover {
    background: #ff5a00;
    color: #fff;
}

.contact-icon-btn i {
    line-height: 1;
    z-index: 2;
}

/* Hide raw contact text */
.raw-contact-info {
    display: none !important;
}