/* Product Gallery Carousel Styling */
.product-gallery-carousel {
    width: 100%;
    height: auto;
    aspect-ratio: 1;
    margin-bottom: 1rem;
}

.product-gallery-carousel .f-carousel__slide {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
}

.product-gallery-carousel .f-carousel__slide img {
    max-width: 100%;
    max-height: 100%;
    height: auto;
    object-fit: contain;
    cursor: pointer;
}

/* Carousel Navigation Arrows */
.product-gallery-carousel .f-carousel__nav {
    --f-carousel-button-width: 40px;
    --f-carousel-button-height: 40px;
    --f-carousel-button-svg-width: 20px;
    --f-carousel-button-svg-height: 20px;
    --f-carousel-button-svg-stroke-width: 2px;
    --f-carousel-button-bg: rgba(255, 255, 255, 0.75);
    --f-carousel-button-hover-bg: rgba(255, 255, 255, 1);
    --f-carousel-button-color: #333;
    --f-carousel-button-border-radius: 50%;
}

/* Thumbnail Navigation */
.f-thumbs {
    margin-top: 0.5rem;
}

.f-thumbs__slide {
    cursor: pointer;
    opacity: 0.6;
    transition: opacity 0.3s;
    padding: 0;
    border: 2px solid transparent;
}

.f-thumbs__slide:hover,
.f-thumbs__slide.is-nav-selected {
    opacity: 1;
    border-color: #333;
}

.f-thumbs__slide img {
    width: 100px;
    height: 100px;
    object-fit: cover;
}

.product-title{
    margin: 0 0 1.5rem;
    font-family: 'Montserrat', sans-serif;
    font-size:40px;
    font-weight:400;
    letter-spacing:1.5px;
    line-height:40px;
    text-transform: uppercase;
    word-break: break-word;
}

.product-price{
    /* background-color: var(--themeGreyDark); */
    /* padding: 10px 0; */
}
.product-price-current{
    font-family: 'Roboto', sans-serif;
    font-size:20px;
    font-weight:400;
    height:30px;
    letter-spacing: 1px;
    line-height:30px;
}

.product-gallery-thumbs .img-thumbnail{
    padding:0;
    border-radius:0;
    border:none;
}
.breadcrumb-nav{
    justify-content: start;
}
.product-omschrijving p:empty{
    display:none;
}
.uspList .uspItem {
    display: inline-flex;
    gap: 0.7rem;
    align-items: center;
    width: 100%;
}
.uspList .uspItem p{
    margin:0;
}

.buttonTitle{
    display:inline-block;
    width:100%;
}
.buttonTitle p{
    font-size:18px;
    margin-bottom: 4px;
}

.tintedText p{
	color: #bdd5e0;
}
.productButtonHolder{
    gap:10px;
    max-width: 440px;
    width:100%;
    padding-top: 1rem;
}
.productButtonHolder .btn{
    padding-top: 15px;
    padding-bottom: 15px;
    margin:0 !important;
}
.productButtonHolder .btn svg{
    height:1.4em;
}

.product-belto-link{
    display:inline-block;
    width:100%;
    text-align: left;
    max-width: 440px;
    padding: 10px 0;
    color: #95acb7;
    text-decoration: underline;
    text-underline-offset: 5px;
}
.product-belto-link:hover{
    text-decoration: underline !important;
    color: #fff;
}
.product-belto-link svg{
    transform: translateY(-2px);
}

/* -- options -- */

.product-options {
    padding: 0.5rem 0 0.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-left: none;
    border-right: none;
    margin: 0.5rem 0;
}

.product-options select {
    background-color: rgba(0,0,0,0.1);
    border:1px solid rgba(255,255,255,0.2);
    padding: 1rem;
    height: auto;
    color: #ffffffdb;
    border-radius: 0;
}

.product-add-to-cart{
    overflow:hidden;
}
.product-add-to-cart svg {
    transition:all .2s ease-in-out;
    transform: translateX(0%);
}

.product-add-to-cart.animated svg {
    transform: translateX(180%);
}
/* ------------- */



@media screen and (max-width:1024px){
    h3 {
        font-size:35px;
    }
    .product-title{
        word-wrap:break-word;
        margin-bottom:10px;
    }
    .product-title.small{
        font-size:25px;
        line-height:1.1em;
    }
}
@media screen and (max-width:769px){
    .productButtonHolder{
        flex-wrap: wrap;
    }
    .productButtonHolder .btn{
        width:100%;
    }
}