

@media (min-width: 769px) {
    .mobileonly {
        display: none;
    }
}

/* Hide tablet/mobile elements on large screens */
@media (min-width: 1201px) {
    .tablet-mobile-only {
        display: none !important;
    }

    .desktop-large-only {
        display: block;
    }
}

/* Tablet and small desktop styles (769px to 1200px) */
@media (min-width: 769px) and (max-width: 1200px) {
    .desktop-large-only {
        display: none !important;
    }

    .tablet-mobile-only {
        display: block !important;
    }

    .product-image-top {
        margin-bottom: 15px;
        width: 100%;
    }

    .ProductCard-cardcontainer {
        flex-direction: column;
        align-items: center;
    }

    .productCard-Card {
        margin-left: auto !important;
        margin-right: auto !important;
        max-width: 90% !important;
    }
}

/* Mobile styles (up to 768px) */
@media (max-width: 768px) {
    .desktop-large-only {
        display: none !important;
    }

    .tablet-mobile-only {
        display: block !important;
    }

    .product-image-top {
        margin-bottom: -30px;
        position: relative;
        z-index: 2;
    }

        .product-image-top img {
            max-width: 100%;
            height: auto;
            border-radius: 26px;
        }

    .ProductCard-cardcontainer {
        flex-direction: column;
    }
}

/* Ensure images fit their containers */
.ProductCard-cardImage img {
    width: 100%;
    height: auto;
    display: block;
}


/* Ensure consistent height between product card and images in desktop view */
@media (min-width: 1201px) {
    .ProductCard-cardcontainer {
        display: flex;
        align-items: stretch;
    }

    .productCard-Card {
        height: 100%;
        margin-bottom: 0px !important;
    }
    .desktop-large-only .productCard-Card {
        height: 100%;
    }

        .desktop-large-only .ProductCard-cardImage img {
            object-fit: cover;
            height: 100%;
            width: 100%;
        }
}

/* Tablet and small desktop styles (769px to 1200px) */
@media (min-width: 769px) and (max-width: 1200px) {
    .desktop-large-only {
        display: none !important;
    }

    .tablet-mobile-only {
        display: block !important;
    }

    .product-image-top {
        margin-bottom: 15px;
        width: 100%;
    }

    .ProductCard-cardcontainer {
        flex-direction: column;
        align-items: center;
    }

    .productCard-Card {
        margin-left: auto !important;
        margin-right: auto !important;
        max-width: 90% !important;
    }
}

/* Mobile styles (up to 768px) */
@media (max-width: 768px) {
    .desktop-large-only {
        display: none !important;
    }

    .tablet-mobile-only {
        display: block !important;
    }

    .product-image-top {
        margin-bottom: -30px;
        position: relative;
        z-index: 2;
    }

        .product-image-top img {
            max-width: 100%;
            height: auto;
            border-radius: 26px;
        }

    .ProductCard-cardcontainer {
        flex-direction: column;
    }
}

/* Ensure images fit their containers */
.ProductCard-cardImage img {
    width: 100%;
    display: block;
}

/* Base styles for all screen sizes */
.ProductCard-cardcontainer {
    display: flex;
    flex-direction: row;
    gap: 0px;
    margin: 30px 0px 0px 0px;
    margin-bottom: 50px;
    width: 100%;
    align-items: stretch;
}

