.rating {
    display: flex;
    justify-content: center;
    direction: rtl;
}

.rating input {
    display: none;
}

.rating label {
    font-size: 2rem;
    color: #ddd;
    cursor: pointer;
    transition: color 0.2s ease-in-out;
}

.rating input:checked ~ label {
    color: #f55870;
}

.rating label:hover,
.rating label:hover ~ label {
    color: #f55870;
}

#search{
    background-color: white;
}

.social-media-bar {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 1000;
}

.social-media-bar .social-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
    font-size: 20px;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.social-media-bar .social-icon.instagram {
    background-color: #E4405F; /* Instagram color */
}

.social-media-bar .social-icon.whatsapp {
    background-color: #25D366; /* WhatsApp color */
}

.social-media-bar .social-icon.youtube {
    background-color: #FF0000; /* YouTube color */
}

.social-media-bar .social-icon.facebook {
    background-color: #3b5998; /* Facebook color */
}

.social-media-bar .social-icon.contact {
    background-color: #007bff; /* Contact Us color */
}

.social-media-bar .social-icon:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.social-icon.call {
    background-color: black;
    color: white; /* Optional: make the icon visible */
}

.tooltip {
    position: absolute;
    background-color: rgba(0, 0, 0, 0.8);
    color: #fff;
    font-size: 12px;
    padding: 5px 10px;
    border-radius: 4px;
    white-space: nowrap;
    z-index: 1000;
    pointer-events: none;
    opacity: 0;
    animation: fadeIn 0.3s forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.social-icons.hidden {
    display: none;
}
.social-media-bar .toggle-button {
    background-color: #000000;
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.social-media-bar .toggle-button:hover {
    transform: scale(1.1);
}

.social-media-bar.collapsed .toggle-button i {
    transform: rotate(180deg);
}

.coupon{
    margin-left: 1.9rem;
}