
#cocorico-contact-bar {
    position: fixed;
    top: 0;
    width: 100%;
    background: linear-gradient(90deg, #000, #d4af37, #fa8072);
    color: #fff;
    text-align: center;
    padding: 10px;
    z-index: 99999;
    font-family: 'Segoe UI', Arial, sans-serif;
    cursor: pointer;
}

#cocorico-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.7);
    z-index: 100000;
}

.cocorico-modal-content {
    background: #fff;
    max-width: 420px;
    margin: 20% auto;
    display: flex;
    border-radius: 16px;
    overflow: hidden;
    animation: pop 0.3s ease;
}

@keyframes pop {
    from {transform: scale(0.8); opacity:0}
    to {transform: scale(1); opacity:1}
}

.cocorico-option {
    flex: 1;
    text-align: center;
    padding: 30px 20px;
    text-decoration: none;
    color: #000;
}

.cocorico-option img {
    width: 56px;
    margin-bottom: 12px;
}

.cocorico-option.whatsapp {
    background: #25D366;
    color: #fff;
}
