.swiper.swiperThumb {
    min-width: 60px;
    display: none;
}

.swiper__image,
.swiper__thumb-image,
.swiper-image {
    width: 100%;
    object-fit: contain;
}

.swiper-slide-thumb-active {
    outline: -webkit-focus-ring-color 1px auto;
} 

.swiperMain .swiper-slide {
    margin: auto;
}

.product__name {
    font-size: 2rem;
    line-height: 1;
    margin-bottom: 5px;
}

.product__code {
    color: var(--color-text-gray);
    margin-bottom: 12px;
}

.product__price {
    margin-bottom: 12px;
    color: var(--color-text-gray);
    font-size: 1.45rem;
    font-weight: 300;
}

.product__actions {
    display: flex;
    gap: 15px;
    margin: 30px 0;
}

.product__actions-wrapper {
    margin-bottom: 20px;
}

.product__wrapper {
    margin-bottom: 100px;
}

.field input.product__count-input {
    border: 1px solid #a1a1aa;
    padding: 10px;
    width: 100px;
}

.product__description-long,
.product__description {
    font-size: .8rem;
    color: var(--color-text-gray);
}

.product__description {
    margin-bottom: 20px;
}

.product__stock {
    margin-bottom: 30px;
}

.product__stock td {
    min-width: 150px;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: .05rem;
}

.product__stock-qty {
    text-align: center;
}

.product__question {
    margin-bottom: 30px;
}

.product__actions .field {
    margin-bottom: 0;
}

.button--sendEmail {
    margin-top: 15px;
}

.swiperMain--fullscreen {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%; /* Ensure the container takes full height */
    width: 100%; /* Ensure the container takes full width */
    background-color: #fff; /* Optional: Set background for better visibility */
}

.swiperMain--fullscreen .swiper-wrapper {
    display: flex;
    /* justify-content: center; */
    align-items: center;
    height: 100%; /* Match container height */
}

.swiper.swiperMain--fullscreen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    z-index: 9999;
    display: flex;
    padding: 85px 0;
}

.js__swiper-close {
    display: none;
}

.swiperMain--fullscreen .js__swiper-close {
    display: block;
    position: absolute;
    text-align: end;
    cursor: pointer;
    top: 15px;
    right: 15px;
    z-index: 100;
}

.swiperMain--fullscreen .swiper-slide {
    /* margin: 0 !important; */
    max-height: 1000px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.swiperMain--fullscreen .swiper__image {
    object-fit: contain;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    margin: auto; /* Ensures the image centers properly */
}

.swiperMain--fullscreen .swiper-button-next {
    right: 25px;
}

.swiperMain--fullscreen .swiper-button-prev {
    left: 25px;
}

.out-of-stock {
    color: #dc3545;
}

.in-stock {
    color: #38b151;
}

.swiperThumb.hidden {
    display: none !important;
}

.swiper__heading {
    margin: 3rem 0
}

.swiper__heading h2 {
    font-size: 32px;
    text-align: center;
}

@media(max-width:992px) {
    .swiper__heading h2 {
        font-size: 24px;
    }
}

.mySwiper {
    margin-bottom: 3rem;
}

.mySwiper .swiper-slide {
    height: auto;
}

.button.desktop {
    display: none;
}

@media(min-width:992px) {
    .product__gallery {
        max-width: 50%;
        display: flex;
        flex-direction: row-reverse;
        gap: 20px;
        height: fit-content;
        width: 100%;
        margin-top: 50px;
    }

    .product__wrapper {
        margin-bottom: 250px;
    }

    .button.desktop {
        display: block;
    }

    .product__content {
        flex-basis: 50%;
    }

    .swiper.swiperThumb {
        display: block;
    }

    .swiperThumb .swiper-slide {
        max-width: 60px;
        max-height: 60px;
        width: 100% !important;
    }

    .swiperThumb .swiper-slide img {
        display: block;
        width: 100%;
        object-fit: contain;
        height: 100%;
        aspect-ratio: 1 / 1;
    }

    .product__wrapper {
        /* display: grid;
        grid-template-columns: 1fr 1fr; */
        display: flex;
        gap: 3rem;
    }
}

.fullscreen-slider {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    background-color: #fff;
    padding: 20px;
}

.fullscreen-slider .swiper-wrapper {
    display: flex;
    align-items: center;
}

.fullscreen-slider .swiper-container {
    width: 100%;
    height: 100%;
    display: flex;
}

.fullscreen-slider .swiper-slide {
    text-align: center;
    font-size: 18px;
    background: transparent;
    max-height: 1000px;
}

.fullscreen-slider .close-fullscreen {
    position: absolute;
    text-align: end;
    cursor: pointer;
    top: 15px;
    right: 15px;
    z-index: 100;
}

.fullscreen-slider .swiper-image {
    max-width: 90%; /* Limit the maximum width to avoid oversizing */
    max-height: 90%; /* Limit the maximum height similarly */
    object-fit: contain;
}

.product-options {
    margin: 30px 0;
}

.option-wrap button.option-selected {
    background-color: var(--color-text-accent);
    color: #fff;
}

.option-wrap button {
    transition-property: all;
    transition-timing-function: cubic-bezier(.4, 0, .2, 1);
    transition-duration: .2s;
    font-size: .75rem;
    line-height: 1rem;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    border: 1px solid rgb(228, 228, 228);
    background-color: #fff;
    margin: 0 10px 10px 0;
    height: 40px;
    border-radius: 25px;
    cursor: pointer;
    color: #000;
}

.option-wrap button:hover {
    background-color: var(--color-text-accent);
    color: #fff;
}

.option-wrap button:disabled {
    background-color: #e0e0e0; /* A light grey color for the background */
    color: #a0a0a0; /* A darker grey color for the text */
    border: 1px solid #d0d0d0; /* A matching grey border */
    cursor: not-allowed; /* Changes the cursor to indicate that the button is disabled */
    opacity: 0.6; /* Slightly transparent to indicate it's not active */
}

.option-wrap h5 {
    text-transform: uppercase;
    font-size: 10px;
    line-height: 1.4;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
    font-family: 'gotham_roundedbook', serif;
}

.recommendation {
    display: flex;
    align-items: center;
    gap: 20px;
    border: 1px solid #e4e4e4;
    padding: 15px 25px;
    margin-bottom: 30px;
}

.recommendation__photo img {
    height: 66px;
    width: 66px;
    object-fit: cover;
    border-radius: 100%;
}

.recommendation p {
    font-size: .8rem;
}

.recommendation h5 {
    font-size: 1rem;
}

.product__montonio-hire-purchase-block {
    color: var(--color-text-gray);
    font-size: .8rem;
    margin-bottom: 30px;
}

#product-sse-container {
    display: flex;
    flex-direction: column;
}

.product__question .field:nth-of-type(4),
.product__question .field:nth-of-type(5) {
  display: none;
}