.gcw-btn {
    position: fixed;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 28px;
    z-index: 9999;
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    bottom: 30px;
}
.gcw-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}
.gcw-call {
    left: 30px;
    background: #4CAF50;
}
.gcw-whatsapp {
    right: 30px;
    background: #25D366;
}
@media (max-width: 768px) {
    .gcw-btn {
        width: 50px;
        height: 50px;
        font-size: 24px;
        bottom: 20px;
    }
    .gcw-call { left: 15px; }
    .gcw-whatsapp { right: 15px; }
}
.gcw-saved-box {
    margin: 20px 0;
    padding: 10px;
    background-color: #d4edda;
    border-left: 5px solid #28a745;
    color: #155724;
    font-weight: bold;
    border-radius: 5px;
    animation: fadeIn 0.6s ease-out;
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}
