/* Floating Button container */
.dealership-cta-floating-4faa543f {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 99999;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

/* Adjust for logged in admin bar */
body.admin-bar .dealership-cta-floating-4faa543f {
    margin-bottom: 0;
}

/* Main red floating trigger button */
.dealership-cta-btn-4faa543f {
    background-color: #e2231a;
    color: #ffffff;
    border: none;
    border-radius: 50px;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(226, 35, 26, 0.4);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.dealership-cta-btn-4faa543f:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(226, 35, 26, 0.6);
    background-color: #c91a13;
}

/* The Popup panel */
.dealership-cta-popup-4faa543f {
    display: none;
    position: absolute;
    bottom: 70px;
    right: 0;
    width: 360px;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    animation: dealershipFadeIn4faa543f 0.3s ease forwards;
    z-index: 100000;
}

.dealership-cta-popup-4faa543f.active-4faa543f {
    display: block;
}

@keyframes dealershipFadeIn4faa543f {
    from {
        opacity: 0;
        transform: translateY(15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Header */
.dealership-cta-header-4faa543f {
    background-color: #0b1528;
    color: #ffffff;
    padding: 24px 20px;
    position: relative;
    display: flex;
    align-items: center;
    gap: 15px;
}

.dealership-cta-avatar-4faa543f {
    position: relative;
    width: 48px;
    height: 48px;
    background: #1c273c;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #a0aec0;
}

.active-dot-4faa543f {
    position: absolute;
    bottom: 2px;
    right: 2px;
    width: 10px;
    height: 10px;
    background-color: #48bb78;
    border: 2px solid #0b1528;
    border-radius: 50%;
}

.dealership-cta-header-4faa543f h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
}

.dealership-cta-header-4faa543f p {
    margin: 4px 0 0 0;
    font-size: 13px;
    color: #cbd5e0;
}

.dealership-cta-close-4faa543f {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    color: #cbd5e0;
    font-size: 16px;
    cursor: pointer;
    padding: 5px;
}

.dealership-cta-close-4faa543f:hover {
    color: #ffffff;
}

/* Body Options list */
.dealership-cta-body-4faa543f {
    padding: 15px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.dealership-cta-item-4faa543f {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 14px;
    border-radius: 12px;
    background: #f7fafc;
    text-decoration: none;
    color: #2d3748;
    transition: all 0.2s ease;
    border: 1px solid #edf2f7;
}

.dealership-cta-item-4faa543f:hover {
    background: #edf2f7;
    transform: translateX(3px);
}

.cta-icon-4faa543f {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.whatsapp-4faa543f .cta-icon-4faa543f {
    background: #e6fffa;
    color: #38a169;
}

.call-4faa543f .cta-icon-4faa543f {
    background: #ebf8ff;
    color: #3182ce;
}

.sms-4faa543f .cta-icon-4faa543f {
    background: #fff5f5;
    color: #e53e3e;
}

.dealership-cta-item-4faa543f strong {
    display: block;
    font-size: 15px;
    font-weight: 700;
}

.dealership-cta-item-4faa543f p {
    margin: 2px 0 0 0;
    font-size: 12px;
    color: #718096;
}

/* Footer note */
.dealership-cta-footer-4faa543f {
    text-align: center;
    padding: 10px;
    background: #f7fafc;
    border-top: 1px solid #edf2f7;
}

.dealership-cta-footer-4faa543f p {
    margin: 0;
    font-size: 12px;
    color: #a0aec0;
}
