/*
Cross-sells Carousel, uses tiny-slider.js
========
*/
/* -- Cross-sells -- */
.pdp-complementary-carousel {
    margin-top: calc( var( --main-numeric-val ) * 2);
    background-color: var(--color-green-product-atts);
    padding: var( --main-numeric-val );
}
.pdp-complementary--header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
}
.pdp-complementary--header button {
    margin-left: 0.75rem;
    padding: 0;
    display: inline-flex;
    align-items: center;

}
.pdp-complementary--header svg {
    width: calc( var( --main-numeric-val ) * 2 );
    color: var( --hover-color-2 );
}
.pdp-complementary--header svg:hover{
    color: var( --hover-color-3 );
}
.pdp-complementary--heading {
    font-size: var( --h5-font-size );
    font-weight: 400;
    color: var( --color-main-p );
    margin-bottom: var( --main-numeric-val );
    background: var( --color-strong-monstera );
    background: linear-gradient(0deg, var( --button-add-to-cart-color-act ) 32%, rgba(0,0,0,0) 32%);
    width: max-content;
    padding-right: calc( var( --main-numeric-val) * 3 );
    padding-left: calc( var( --main-numeric-val) * 1 );
    padding-bottom: 0px;
    float: left;
    line-height: .8;
}
.pdp-complementary--nav {
    display: flex;
    flex-shrink: 0;
}
.tns-carousel {
    overflow: hidden;
}
.tns-liveregion {
    display: none;
}
/* Hide navigation if only one cross-sell item present */
.pdp-complementary-carousel:has(.pdp-complementary-item:only-child) .pdp-complementary--nav {
    display: none;
}
.pdp-complementary--container {
    display: flex;
}
.pdp-complementary--container {
    opacity: 0;
}
.pdp-complementary--container.tns-slider {
    opacity: 1;
}
.pdp-complementary-item img {
    max-width: 95px;
    height: auto;
    margin-right: 1.25rem;
    margin-left: 1px;
}
.pdp-complementary--single {
    display: flex;  
    align-items: center;
}
.pdp-complementary--content {
    display: flex;
    flex-direction: column;
}
.pdp-complementary--title {
    font-size: var( --h6-font-size );
    font-weight: 600;
}
.pdp-complementary--title a,
.pdp-complementary--title a:hover {
    color: var( --color-main-dark );
}
.pdp-complementary--content .price {
    font-size: 13px;
}
.pdp-complementary--content .price ins {
    font-weight: bold;
}
/* Button */
.pdp-complementary--add-to-cart {
    display: inline-flex;
    margin-top: 0.35rem;
}
.pdp-complementary--add-to-cart a {
    padding: 5px 14px;
    font-size: var( --const-font-small-size);
    color: var( --hover-color-2 );
    border: 1px solid var( --button-add-to-cart-color-act );
    background: var( --button-add-to-cart-color );
    border-radius: 0px;
    transition: var( --global-transition );
}
.pdp-complementary--add-to-cart a:hover {
    color: var( --hover-color-3 );
    background-color: var( --button-add-to-cart-color-act );
}
.pdp-complementary--add-to-cart:has(.added_to_cart) .added {
    display: none;
}
.pdp-complementary--add-to-cart .ajax_add_to_cart.add_to_cart_button:after {
    border: 1px solid rgba(0, 0, 0, 0.3);
    border-left-color: #fff;
    width: 14px;
    height: 14px;
    margin-top: -7px;
}
/* RTL */
.rtl .pdp-complementary-carousel {
    direction: ltr;
}
.rtl .pdp-complementary--header,
.rtl .pdp-complementary--single {
    flex-flow: row-reverse;
}
.rtl .pdp-complementary-item img {
    margin-left: 1.25rem;
    margin-right: 1px;
}
.rtl .pdp-complementary--header button {
    margin-left: 0;
    margin-right: 0.75rem;
}
.rtl .pdp-complementary--add-to-cart {
    justify-content: flex-end;
}