@media (max-width: 768px) {
    .mb-md {
        margin-bottom: 1rem;
    }
}

@media (min-width: 576px) {
    .text-end-sm {
        text-align: end;
    }
}

@media (max-width: 575px) {
    .hide-sm {
        display: none;
    }
}


/* Set the height of the hero container */

.hero-container {
    height: 70vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    max-width: 100% !important;
    background-repeat: no-repeat;
}

@media (max-width: 1440px) {
    .hero-container {
        height: 48vh;
    }
}

@media (max-width: 1024px) {
    .hero-container {
        height: 24vh;
    }
}

@media (max-width: 431px) {
    .hero-container {
        height: 17vh;
    }
}

@media (max-width: 376px) {
    .hero-container {
        height: 20vh;
    }
}

@media (max-width: 361px) {
    .hero-container {
        height: 17vh;
    }
}

.custom-container {
    display: flex;
    justify-content: center;
}

@media (max-width: 992px) {
    .mb-md {
        margin-bottom: 20px;
    }
}

@media (max-width: 767px) {
    .py-5-md {
        padding-top: 1rem !important;
        padding-bottom: 1rem !important;
    }
    .px-5-md {
        padding-right: 1rem !important;
        padding-left: 1rem !important;
    }
}


/* Style the hero content (centered in the container) */

.ui-datepicker-header.ui-widget-header.ui-helper-clearfix.ui-corner-all {
    border: none;
    border-radius: 0px;
    background: #fd552e;
    font-family: "Manrope";
    font-size: 18px;
    letter-spacing: 1px;
    font-weight: 600;
}

.ui-widget.ui-widget-content {
    border: 1px solid #ffffff;
}

.ui-corner-all,
.ui-corner-bottom,
.ui-corner-right,
.ui-corner-br {
    border-radius: none !important;
}

.ui-datepicker {
    padding: 0;
}

table.ui-datepicker-calendar {
    font-family: "Manrope";
    font-size: 18px;
}

.ui-datepicker .ui-datepicker-calendar .ui-state-highlight a {
    background: #fd552e none;
    color: white;
}

.ui-datepicker .ui-datepicker-prev,
.ui-datepicker .ui-datepicker-next {
    top: 3px;
}

.default-product-image {
    overflow: hidden;
}

#zoom-default-image {
    width: 75%;
    height: 75%;
    transition: transform 0.3s ease;
    /* Smooth transition for zoom effect */
    transform-origin: 75% 75%;
    /* Zoom center at the middle of the image */
}

.default-product-image:hover #zoom-default-image {
    transform: scale(2);
    /* Adjust the zoom level as needed */
}