.mainContainer{
    padding-bottom:0 !important;
}

p:empty{
    display:none;
}

.productOmschrijvingSection p{
    color: var(--themePrimaryDark);
    font-size:20px;
    margin:0;
}
.productImage{
    aspect-ratio: 1;
    border: 3px solid var(--themeBorderColorDark);
    box-shadow: 13px 12px 0 0px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    background-color:white;
}

.productDetails h1{
    font-size: 60px;
    margin-bottom:0;
}

.productTotals{
    --overlap: 50px;
    position: sticky;
    width:calc(100% + var(--overlap));
    min-height:300px;
    margin-left: calc(-1 * var(--overlap));
    background-color:white;
    border: 2px solid var(--themeBorderColor);
    padding: 0;
    top: 1rem;
}

p.subtitel{
    color:white;
}

.itemPrice{
    color:var(--themePrimary);
    font-size: 34px;
    font-weight: 300;
}

.productDetails .productImage{
    width: 100%;
    /* margin: auto; */
    /* max-width: 900px; */
}
.productDetails .itemBarcode{
    font-size:13px;
    margin:0;
    color:#ddd;
}
.productDetails .productImage .mainImage{aspect-ratio: 4 / 3;}
.productDetails .productImage .mainImage img {
    object-fit: contain;
}

.productDetails .productImage .miniImageHolder{
    height: 110px;
    display: flex;
    overflow: hidden;
    gap: 10px;
}
.productDetails .productImage .miniImageHolder .miniImage{
    aspect-ratio: 4/3;
    flex: none;
    width: auto;
    min-width: calc(20% - 8px);
}

.viewsHolder{
    border: var(--themeBorder);
}
.viewsHolder .viewsHolder-tabs .tab{
    position:relative;
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    padding: 20px;
    border-right: var(--themeBorder);
    border-bottom: var(--themeBorder);
    cursor:pointer;
    box-sizing: border-box;
    text-transform:uppercase;
}
.viewsHolder .viewsHolder-tabs .tab:hover::after,
.viewsHolder .viewsHolder-tabs .tab.active::after{
    content:'';
    height:6px;
    width:100%;
    position:absolute;
    background-color:var(--themePrimary);
    bottom:0;
    left:0;
}
.viewsHolder .view{
    width:100%;
    padding: 2rem 0rem;
    min-height: 100px;
    line-height: 1.8em;
}
.viewsHolder .view ul{
    list-style:none;
    margin: 0;
    padding: 0 5px;
}  
.viewsHolder .view li{
    display:inline-flex;
    width:100%;
    align-items: center;
    font-size: 20px;
    color: var(--themePrimary);
    padding-left: 0px;
    padding: 4px 0;
}
.viewsHolder .view li::before{
    content:'';
    display: inline-block;
    width: 20px;
    height: 20px;
    background-image:url(/images/icons/list-item.svg);
    background-size:cover;
    background-position:center;
    transform: translateX(-10px);
    flex: none;
}

.products-extraInfo{
    width: 100%;
}
.products-extraInfo tr{}
.products-extraInfo tr:nth-of-type(odd){
    background-color: var(--themeGreyLight2);
}
.products-extraInfo th{
    display:block;
    min-width:100px;
}
.products-extraInfo td{

}
.goBack{
    color: var(--themeText);
}
.goBack svg{
    height:1.0em;
    width:1.0em;
}

.products-extraInfo th span,
.products-extraInfo td span{
    padding:8px 5px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    width:100%;
}


/* Product Totals Card */
.product-totals-card {
    background-color: white;
    overflow: hidden;
}

.product-totals-card .totals-title {
    font-size: 28px;
    font-weight: 400;
    margin: 0;
    padding: 2rem 2rem 1.5rem 2rem;
    /* border-bottom: 2px solid var(--themeBorderColor); */
}

.product-totals-card .totals-section {
    padding: 0rem 2rem 1rem;
    border-bottom: 1px solid var(--themeBorderColor);
}

.product-totals-card .totals-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* margin-bottom: 1.5rem; */
}

.product-totals-card .totals-row:last-child {
    margin-bottom: 0;
}

.product-totals-card .totals-row-highlight {
    font-weight: 600;
}

.product-totals-card .totals-label {
    font-size: 20px;
    color: var(--themePrimaryDark);
}

.product-totals-card .totals-value {
    font-size: 22px;
    font-weight: 300;
    color: var(--themePrimaryDark);
}

.product-totals-card .totals-row-highlight .totals-value {
    font-weight: 500;
}

.product-totals-card .totals-delivery {
    padding: 1rem 2rem;
    background-color: white;
    border-bottom: 0px solid var(--themeBorderColor);
}

.product-totals-card .delivery-label {
    font-size: 18px;
    color: var(--themePrimaryDark);
    /* margin-bottom: 0.5rem; */
}

.product-totals-card .delivery-date {
    font-size: 24px;
    font-weight: 500;
    color: var(--themePrimaryDark);
    margin-bottom: 0.5rem;
}

.product-totals-card .delivery-note {
    font-size: 14px;
    color: #666;
    font-style: italic;
}

.product-totals-card .checkout-button {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 1rem 2rem;
    background-color: var(--themePrimary, #E8C547);
    border: none;
    text-decoration: none;
    color: var(--themePrimaryDark);
    font-size: 24px;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.3s ease;
}

.product-totals-card .checkout-button:hover {
    background-color: #000;
    color: white !important;
}

.product-totals-card .checkout-arrow {
    width: 40px;
    height: 40px;
    stroke: currentColor;
}
.omschrijvingSection{
    margin-top: calc(70px + 3rem) !important;
}
.viewsHolder-tabs{
    margin-top: -70px;
}

@media screen and (max-width:1300px){

}
@media screen and (max-width:769px){
    .productDetails h1 {
        font-size: 40px;
        margin-bottom: 1rem;
    }

    .product-totals-card .totals-title {
        font-size: 24px;
        padding: 1.5rem;
    }

    .product-totals-card .totals-section,
    .product-totals-card .totals-delivery,
    .product-totals-card .checkout-button {
        padding: 1.5rem;
    }

    .product-totals-card .totals-label {
        font-size: 18px;
    }

    .product-totals-card .totals-value {
        font-size: 22px;
    }

    .product-totals-card .checkout-button {
        font-size: 20px;
    }
}