.customer-care {
    position: fixed;
    left: 3%;
    bottom: 45px;
    z-index: 99;
    background: #e6af18;
    /* padding: 15px; */
    border-radius: 30px;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    width: 80px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: .5s;
}

.customer-care:hover {
    background: #e6af18;
    transform: scale(1.05);
}

.customer-care svg {
    fill: #fff;
}

.contact-link {
    display: none;
    color: #fff;
    /* font-family: 'Georgia', serif; */
    font-size: 16px;
    text-align: center;
    margin-left: 10px;
}

.customer-care:hover .contact-link {
    display: inline-block;
}

.customer-care:hover {
    width: 180px;
    height: 60px;
    border-radius: 50px;
}

@media (max-width: 768px) {
    .customer-care {
        padding: 10px;
    }

    .contact-link {
        font-size: 14px;
    }
}