/* home-page */
.home_product_grid .product_grid_item img, .category_product_grid .product_grid_item img{
    width: 180px;
    height: 270px;
    object-fit: cover;
}

@media (max-width: 560px) {
    .home_product_grid .product_grid_item img, .category_product_grid .product_grid_item img{
        width: 120px;
        max-height: 150px;
        object-fit: cover;
    }
}

.home_product_grid .product_grid_item, .category_product_grid .product_grid_item {
    text-align: center;
}

#notification-bar {
    display: none;
    position: fixed;
    top: 0;
    width: 100%;
    background-color: green;
    color: white;
    text-align: center;
    padding: 10px;
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

#notification-bar.show {
    display: block;
    opacity: 1;
}

/*video player*/

.video-player {
    width: 100%;
    height: auto;
    max-width: 100%;
    border-radius: 8px;
}

.story-video{
    height: 500px;
}

/* Ensure the product grid items are styled correctly */
.product-wrapper {
    text-align: center;
    margin-bottom: 20px;
}


