/* COMPLETE FIXED VERSION */
.whatsapp-vertical-slider {
    position: fixed;
    right: -10px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 9999;
}

/* FIXED GREEN BUTTON */
.whatsapp-slider-toggle {
    width: 60px !important;
    height: 60px !important;
    background: linear-gradient(135deg, #25d366 0%, #128C7E 100%) !important;
    border-radius: 50% 0 50% 50% !important;
    position: relative !important;
    cursor: pointer !important;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4) !important;
    transition: all 0.3s ease !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-decoration: none !important;
    color: white !important;
    animation: float 3s ease-in-out infinite !important;
}

.whatsapp-slider-toggle i {
    color: white !important;
    font-size: 28px !important;
    text-shadow: 0 1px 2px rgba(0,0,0,0.2) !important;
}

.whatsapp-slider-toggle:hover {
    transform: scale(1.05) !important;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.6) !important;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.whatsapp-slider-panel {
    position: absolute;
    right: 70px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 200px;
    background: linear-gradient(135deg, #7833e3 0%, #5a24a3 100%);
    border-radius: 20px 0 0 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: -10px 0 30px rgba(120, 51, 227, 0.4);
    opacity: 0;
}

.whatsapp-slider-panel.active {
    width: 320px;
    opacity: 1;
}

.slider-header {
    padding: 20px 25px;
    color: white;
    text-align: center;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.slider-header h4 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 1px;
}

.contact-item {
    display: flex;
    align-items: center;
    padding: 15px 25px;
    color: white;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: rgba(255,255,255,0.15);
    transform: translateX(-5px);
}

.contact-item:last-child {
    border-bottom: none;
}

.contact-item i {
    font-size: 20px;
    width: 40px;
    text-align: center;
    margin-right: 15px;
}

.contact-item span {
    flex: 1;
    font-size: 15px;
    font-weight: 500;
}

.action-text {
    font-size: 13px;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 20px;
    background: rgba(255,255,255,0.2);
}

.whatsapp-direct .action-text {
    background: rgba(37, 211, 102, 0.3);
    color: #25d366;
    font-weight: 700;
}
