#breadcrumbs {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
}

.productTitleRow {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
}

/* main product section */
.productMain {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
}

.leftProductColumn {
    display: flex;
    flex-direction: column;
    position: relative;
    width: 50%;
}

.mainProductImage {
    width: 100%;
    height: auto;
    border: 1px solid rgb(230, 230, 230);
    border-radius: 4px;
}

/*

.productImageCollectionRow {
    margin-top: 30px;
    width: 100%;
    display: flex;
    position: relative;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    box-sizing: border-box;
}

.collectionImage {
    height: 50px;
    width: auto;
    border-radius: 4px;
    border: 1px solid rgb(230, 230, 230);
    margin-left: 2px;
    margin-right: 2px;
}

.leftArrow {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: 50px;
    height: 60px;
    width: 60px;
    border-radius: 50%;
    box-shadow:
        0 2px 4px rgba(0, 0, 0, 0.2),
        0 8px 12px rgba(0, 0, 0, 0.4);
    padding: 0px;
    box-sizing: border-box;
    padding-bottom: 6px;
    text-align: center;
    cursor: pointer;
}

.productImageCollection {
    width: calc(100%-100px);
}
*/

/* PRODUCT THUMBNAIL COLLECTION */
.productImageCollectionRow {
    margin-top: 30px;
    width: 100%;
    display: flex;
    align-items: center;
    box-sizing: border-box;
}

/* Arrow buttons: fixed size so they don’t squish */
.leftArrow,
.rightArrow {
    flex: 0 0 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 50px;
    height: 60px;
    width: 60px;
    border-radius: 50%;
    box-shadow:
        0 2px 4px rgba(0, 0, 0, 0.2),
        0 8px 12px rgba(0, 0, 0, 0.4);
    cursor: pointer;
    padding-bottom:6px;
}

.leftArrow{
    padding-right:4px;
}

.rightArrow{
    padding-left:4px;
}

/* Wrapper to mask overflow and provide the 16px gap */
.productImageCollectionWrapper {
    flex: 1;
    overflow: hidden;
    padding: 0 16px;
    box-sizing: border-box;
}

/* The actual image container: a horizontally scrollable flex container */
.productImageCollection {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;

    /* Hide scrollbar for IE, Edge */
    -ms-overflow-style: none;
    /* Hide scrollbar for Firefox */
    scrollbar-width: none;
}

/* Individual images */
.collectionImage {
    height: 50px;
    width: auto;
    border-radius: 4px;
    border: 1px solid rgb(230, 230, 230);
    margin: 0 2px;
}

/* Hide scrollbar for Chrome, Safari, and Opera */
.productImageCollection::-webkit-scrollbar {
    display: none;
}


/* PRODUCT DESCRIPTION BLOCK */
.productDescriptionBlock {
    width: 100%;
    font-family: Inter;
    font-size: 1em;
    margin-top: 40px;
    padding-left: 12px;
    box-sizing: border-box;
}

.productDescriptionBlock p {
    margin-top: 1.5em;
    padding-right: 60px;
    box-sizing: border-box;
}

#readMoreButton {
    padding: 12px;
    padding-left: 16px;
    padding-right: 16px;
    font-family: Inter;
    color: white;
    background: black;
    border-radius: 8px;
    cursor: pointer;
    margin-top: 50px;
    letter-spacing: 1.1px;
}

/* mobile product description block */

.mobileProductDescriptionBlock{
    display:none;
}

/*
.rightArrow {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: 50px;
    height: 60px;
    width: 60px;
    border-radius: 50%;
    box-shadow:
        0 2px 4px rgba(0, 0, 0, 0.2),
        0 8px 12px rgba(0, 0, 0, 0.4);
    padding: 0px;
    margin: 0px;
    box-sizing: border-box;
    padding-bottom: 6px;
    text-align: center;
    cursor: pointer;
}
    */

/* right column elements */
.rightProductColumn {
    display: flex;
    flex-direction: column;
    position: relative;
    width: 40%;
    align-items: flex-end;
    justify-content: flex-start;
}

.productRentalDetails {
    border-radius: 8px;
    border: 1px solid rgb(230, 230, 230);
    width: 80%;
    box-sizing: border-box;
    padding: 0px;
}

.rentalPrice {
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 12px;
    padding-bottom: 12px;
    font-weight: bold;
    font-size: 1.2em;
}

.availabilityStatus {
    border-top: 1px solid rgb(230, 230, 230);
    border-bottom: 1px solid rgb(230, 230, 230);
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 12px;
    padding-bottom: 12px;

}

.dateFromRow {
    width: 100%;
    border-top: 1px solid rgb(230, 230, 230);
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 12px;
    padding-bottom: 12px;
}

.dateFromTitle {
    font-family: Inter;
    width: 100%;
}

.dateFromSelectButton {
    width: 100%;
    box-sizing: border-box;
    border: 2px solid rgb(230, 230, 230);
    border-radius: 8px;
    text-align: center;
    padding-top: 8px;
    padding-bottom: 8px;
    background: white;
    color: black;
    font-family: Inter;
    margin-top: 8px;
    cursor: pointer;
}

.dateToRow {
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 12px;
    padding-bottom: 12px;
}

.dateToTitle {
    font-family: Inter;
    width: 100%;
}

.dateToSelectButton {
    width: 100%;
    box-sizing: border-box;
    border: 2px solid rgb(230, 230, 230);
    border-radius: 8px;
    text-align: center;
    padding-top: 8px;
    padding-bottom: 8px;
    background: white;
    color: black;
    font-family: Inter;
    margin-top: 8px;
    cursor: pointer;
}

#totalPriceRow {
    width: 100%;
    margin-top: 12px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding-left: 20px;
    padding-right: 20px;
    box-sizing: border-box;
}

#totalPriceTitle {
    font-family: Inter;
}

#totalPrice {
    font-family: Inter;
}

#bookNowButtonRow {
    display: flex;
    flex-direction: row;
    padding-left: 20px;
    padding-right: 20px;
    margin-bottom: 30px;
    margin-top: 20px;
}

#bookNowButton {
    width: 100%;
    color: white;
    background: black;
    padding-top: 8px;
    padding-bottom: 8px;
    padding-left: 16px;
    padding-right: 16px;
    text-align: center;
    font-family: Inter;
    border-radius: 8px;
}

/* cart qty*/
/* Cart controls */
.adjustCartQuantity {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5em;
    margin: 1em 0;
}

.adjustCartQuantity button {
    background-color: #000;
    color: #fff;
    border: none;
    padding: 0.5em;
    font-size: 1.2rem;
    cursor: pointer;
    border-radius: 8px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.2s ease;
}

.adjustCartQuantity button:hover {
    opacity: 0.8;
}

.adjustCartQuantity .itemQuantity {
    width: 60px;
    text-align: center;
    font-size: 1rem;
    padding: 0.5em;
    border: 1px solid #ccc;
    border-radius: 8px;
    background-color: #fff;
    color: #333;
    outline: none;
}

.adjustCartQuantity .itemQuantity:focus {
    border-color: #000;
}

.adjustCartQuantity .spacer {
    width: 10px;
}

/*product add-ons*/

.productAddOnButtons {
    width: 80%;
    display: flex;
    flex-direction: column;
    margin-top: 100px;
}

#topButton {
    width: 100%;
    border-radius: 8px;
    background: white;
    color: black;
    font-size: 1.1em;
    border: 1px solid rgb(230, 230, 230);
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    padding-left: 5%;
    box-sizing: border-box;
    font-weight: bold;
    letter-spacing: 1.1px;
    min-height: 90px;
}

#middleButton {
    width: 100%;
    border-radius: 8px;
    background: white;
    color: black;
    font-size: 1.1em;
    margin-top: 8px;
    border: 1px solid rgb(230, 230, 230);
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    padding-left: 5%;
    box-sizing: border-box;
    font-weight: bold;
    letter-spacing: 1.1px;
    min-height: 90px;
}

#bottomButton {
    width: 100%;
    border-radius: 8px;
    background: white;
    color: black;
    font-size: 1.2em;
    margin-top: 8px;
    border: 1px solid rgb(230, 230, 230);
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    padding-left: 5%;
    box-sizing: border-box;
    font-weight: bold;
    letter-spacing: 1.1px;
    min-height: 90px;
}

#topButton div,
#middleButton div,
#bottomButton div {
    margin-left: 22%;
}

#buttonImage1,
#buttonImage2,
#buttonImage3 {
    height: auto;
    width: 20%;
}

/* flat picker override css */

.centered-flatpickr {
    position: fixed !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    z-index: 9999 !important;
    /* Above the overlay */
}



/*similar items section */

#similarItemsSection {
    width: 100%;
    padding: 4rem 2%;
    margin-top: 40px;
}

#similarItemsSectionTitleHolder {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

#similarItemsSection h2 {
    text-align: left;
    font-size: 2rem;
}

/* PRODUCT CARDS */

#productsGrid {
    display: flex;
    flex-wrap: nowrap;
    /* Prevent wrapping to a new line */
    gap: 2rem;
    /* Keep your spacing between cards */
    overflow-x: auto;
    /* Allow horizontal scrolling */

    /* Hide scrollbar in Firefox */
    scrollbar-width: none;
    -ms-overflow-style: none;
    /* IE and Edge */
    user-select: none;
    /* Standard */
    -webkit-user-select: none;
    /* Safari */
    -moz-user-select: none;
    /* Firefox */
    -ms-user-select: none;
    /* IE/Edge */
    touch-action: pan-y;
}

img {
    -webkit-user-drag: none;
    /* Prevent image dragging in WebKit browsers */
    /*user-drag: none;*/
}

/* Hide scrollbar in Chrome, Safari, Opera */
#productsGrid::-webkit-scrollbar {
    display: none;
}

@media only screen and (max-width: 999px) {
    .productMain {
        display: flex;
        flex-direction: column;
        width: 100%;
        padding-left: 20px;
        padding-right: 20px;
        box-sizing: border-box;
        justify-content: center;
        align-items: center;
        margin-top: 40px;
    }

    .leftProductColumn {
        width: 60%;
    }

    .productDescriptionBlock {
        display: none;
    }

    .mobileProductDescriptionBlock {
        display:block;
        width: 100%;
        font-family: Inter;
        font-size: 1em;
        margin-top: 40px;
        padding-left: 12px;
        box-sizing: border-box;
    }

    .rightProductColumn {
        margin-top: 40px;
        width: 60%;
        align-items: center;
    }

    .productRentalDetails {
        width: 100%;
    }

    .productAddOnButtons {
        width: 100%;
        margin-top: 40px;
    }

    #topButton {
        margin-top: 16px;
    }

    #middleButton {
        margin-top: 16px;
    }

    #bottomButton {
        margin-top: 16px;
    }
}

@media only screen and (max-width: 660px) {
    .productMain {
        display: flex;
        flex-direction: column;
        width: 100%;
        padding-left: 20px;
        padding-right: 20px;
        box-sizing: border-box;
        justify-content: center;
        align-items: center;
        margin-top: 40px;
    }

    .leftProductColumn {
        width: 100%;
    }

    .productDescriptionBlock {
        display: none;
    }

    .rightProductColumn {
        margin-top: 40px;
        width: 100%;
        align-items: center;
    }

    .productRentalDetails {
        width: 100%;
    }

    .productAddOnButtons {
        width: 100%;
        margin-top: 40px;
    }

    #topButton {
        margin-top: 16px;
    }

    #middleButton {
        margin-top: 16px;
    }

    #bottomButton {
        margin-top: 16px;
    }
}