@media screen and (min-width: 0px) and (max-width: 576px) {
    .hidden-on-mobile { display: none; }  
    .hidden-on-desktop { display: block; }
    .mobile-menu-item{
        transition: transform 0.3 ease;
    }
    
    .mobile-menu-item:hover{
        transform: scale(1.03);
        background-color: bisque;
        border-radius: 5%;
    }
}

@media screen and (min-width: 577px) {
    .hidden-on-mobile  { display: block; }   
    .hidden-on-desktop { display: none; }
}

/* Add this CSS to your stylesheet */
.product-id {
    position: relative;
}

.badge {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    /* background-color: red; */
    color: white;
    padding: 0.25rem 0.75rem;
    font-size: 1rem;
    font-weight: bold;
    border-radius: 0.25rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    white-space: nowrap;
}

.text-hidden-overflow {
    display: -webkit-box;
    -webkit-line-clamp: 3; /* Number of lines before truncation */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 50ch; /* Adjust as needed */
}

#box-widget-icon {
    bottom: 30px !important; /* Moves the widget up */
}

.i-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Smooth transition for scaling and shadow */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2); /* Adjust shadow properties as needed */
}

.i-card:hover {
    transform: scale(1.03); /* Scale the card on hover */
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3); /* Change shadow on hover for effect */
}

