@import url('https://fonts.googleapis.com/css2?family=Onest:wght@100..900&display=swap');

:root {
    --oneset: "Onest", sans-serif;
    --red-light: #EC407A;
    --primaryColor: #41B0B1;
    --whiteColor: #fff;
    --blackColor: #000;
    --brand: #EF3B7D;
}

html {
    scroll-behavior: smooth;
}

body {	
    font-family: var(--oneset);
    font-size: 18px;
    font-weight: 400;    
	background: var(--whiteColor);
	color: #6F6F6F;	
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    font-weight: 700;
    color: var(--blackColor);
}

p,
figure,
label {
    margin: 0;
}

img {
    max-width: 100%;
    vertical-align: middle;
}

small {
    font-size: inherit;
}

a {
    display: inline-block;
    text-decoration: none;
    color: inherit;
    transition: 0.2s all ease;
    -webkit-transition: 0.2s all ease;
}

a:hover,
a:active,
a:visited,
a:focus {
    text-decoration: none;
}

ul {
    list-style-type: none;
    padding: 0; 
    margin: 0;
}

input,
button {
    background-color: transparent;
    border: 1px solid transparent;
    outline: none;
    transition: 0.2s all ease;
    -webkit-transition: 0.2s all ease;
}

input[type=number] {
    -moz-appearance: textfield;
    -webkit-appearance: textfield;
    appearance: textfield;
}

select {
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url(../images/select-input-arrow.png);
    background-repeat: no-repeat;
    background-size: 15px;
    background-position: calc(100% - 15px) 50%;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    appearance: none;
    margin: 0;
}

[type=radio]:checked,
[type=radio]:not(:checked) {
    position: absolute;
    left: -9999px;
}

[type=radio]:checked+label,
[type=radio]:not(:checked)+label {
    position: relative;
    padding-left: 28px;
    cursor: pointer;
    line-height: 20px;
    display: inline-block;
    color: var(--primaryColor);
}

[type=radio]:checked+label:before,
[type=radio]:not(:checked)+label:before {
    content: "";
    position: absolute;
    left: 0;
    top: 1px;
    width: 17px;
    height: 17px;
    border: 1px solid var(--primaryColor);
    border-radius: 50%;
    background: transparent;
}

[type=radio]:checked+label:after,
[type=radio]:not(:checked)+label:after {
    content: "";
    width: 13px;
    height: 13px;
    border-color: transparent;
    background: var(--primaryColor);
    position: absolute;
    top: 3px;
    left: 2px;
    border-radius: 50%;
    transition: all 0.2s ease;
}

[type=radio]:not(:checked)+label:after {
    opacity: 0;
    transform: scale(0);
}

[type=radio]:checked+label:after {
    opacity: 1;
    transform: scale(1);
}

input[type=checkbox] {
    position: relative;
      border: 2px solid #000;
      border-radius: 4px;
      background: none;
      cursor: pointer;
      line-height: 0;
      outline: 0;
      padding: 0 !important;
      vertical-align: text-top;
      height: 20px;
      width: 20px;
      -webkit-appearance: none;
    opacity: .5;
  }
  
  input[type=checkbox]:hover {
    opacity: 1;
  }
  
  input[type=checkbox]:checked {
    background-color: #000;
    opacity: 1;
  }
  
  input[type=checkbox]:before {
    content: '';
    position: absolute;
    right: 37%;
    top: 50%;
    width: 6px;
    height: 10px;
    border: solid #FFF;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg) translate(-50%, -50%);
    z-index: 2;
  }

::selection {
    color: var(--whiteColor);
    background: var(--primaryColor);
}

::-webkit-selection {
    color: var(--whiteColor); 
    background: var(--primaryColor);
}

::-moz-selection {
    color: var(--whiteColor); 
    background: var(--primaryColor);
}

.scrolltotop {
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 50%;
    background: var(--primaryColor); 
    text-align: center; 
    font-size: 22px;
    color: #ffffff;
    position: fixed;
    right: 30px;
    bottom: 25px;
    display: none;
    animation: lab_top_up 5s linear infinite;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease;  
    z-index: 1;    
}

.scrolltotop i {
    color: var(--whiteColor);
}

@keyframes lab_top_up {
    0% {
        transform: translateY(-15px);
    }
    50% {
        transform: translateY(0px);
    }
    100% {
        transform: translateY(-15px);
    }
}

.pluse,
.pluse2 {
    position: relative;
    top: 10px;
    left: -8px;
    z-index: -1;
}

.pluse::before,
.pluse2::before {
  width: 40px;
  height: 40px;
}

.pluse::after,
.pluse::before,
.pluse2::after,
.pluse2::before {
  background: var(--primaryColor); 
  border-radius: 50%;
  left: 50%;
  top: 50%;
  display: block;
  content: '';
  position: absolute;
  top: 2px;
  left: 0;
}

.pluse::after,
.pluse2::after {
  width: 30px;
  height: 30px;
  background: transparent;
  margin-left: -15px;
  margin-top: -15px;
}

.pluse::before {
    -webkit-animation: pluse_animate 2.5s infinite linear;
    animation: pluse_animate 2.5s infinite linear;
}

.pluse2::before {
  -webkit-animation: pluse_animate 3s infinite linear;
  animation: pluse_animate 3s infinite linear; 
}

@keyframes pluse_animate {
    0% {
        opacity: 1;
        -webkit-transform: translate(-50%, -50%) scale(0.3);
        transform: translate(-50%, -50%) scale(0.3);
    }
    100% {
        opacity: 0;
        -webkit-transform: translate(-50%, -50%) scale(2);
        transform: translate(-50%, -50%) scale(2);
    }
}

/*======= header-area design =======*/
.header-nav.menu-sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    box-shadow: rgba(17, 12, 46, 0.15) 0px 48px 100px 0px;
    z-index: 2;
    animation: slideDown 0.35s ease-out;
    background-color: rgba(255, 255, 255, 0.815);
    backdrop-filter: blur(8px);
    padding: 18px 0;
    z-index: 99;
}

@keyframes slideDown {
    from {
      transform: translateY(-100%);
    }
    to {
      transform: translateY(0);
    }
}

.header-nav {
    padding: 0 0 25px 0;
}

.nav-inner {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: center;
}

.main-menu ul {
    display: flex;
    gap: 30px;
}

.main-menu ul li a {
    text-transform: uppercase;
    font-size: 16px;
    color: var(--blackColor);
    position: relative;
    text-decoration: none;
}

.main-menu ul li a:after {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    background-color: var(--blackColor);
    position: absolute;
    left: 0;
    bottom: -3px;
    transition: 0.3s;
    opacity: 0;
    visibility: hidden;
    transform: translateY(4px);
}

.main-menu ul li a:hover:after,
.main-menu ul li.active a:after {
    opacity: 1;
    visibility: visible;
    transform: translateY(0px);
}

/*.head-searchbar .input {*/
/*    background: #F3F3F3;*/
/*    padding: 5px;*/
/*    padding-left: 20px;*/
/*    border-radius: 10px;*/
/*    display: flex;*/
/*    justify-content: space-between;*/
/*    align-items: center;*/
/*}*/

/*.head-searchbar .input i {*/
/*    height: 30px;*/
/*    width: 30px;*/
/*    flex: 0 0 30px;*/
/*    border-radius: 6px;*/
/*    background-color: #b6b6b6;*/
/*    color: var(--whiteColor);*/
/*    font-size: 15px;*/
/*    text-align: center;*/
/*    line-height: 30px;*/
/*}*/

/*.head-searchbar .input input {*/
/*    font-size: 16px;*/
/*    width: 100%;*/
/*}*/
.head-searchbar {

}
.head-searchbar .left{

}
.head-searchbar .left img {

}
.head-searchbar .right{

}
.right .top-block{
    width: 100%;
    height: 20px;
}
.header-phone-number, .header-phone-number a, .header-phone-number a:hover {
    color: black;
}
.top-block .showroom-label {
    font-size: 12px;
}
.right .bottom-block {
    width: 100%;

}
.right .bottom-block a{
    color: #000000;
    font-size: 16px;
    text-decoration: none;
}

.header-right-comp ul {
    display: flex;
    align-items: center;
    gap: 38px;
}

.time-sedule {
    position: relative;
    cursor: pointer;
}
.header-right-comp ul li:nth-child(2) a {
    /*font-size: 20px;*/
    font-weight: 500;
    color: var(--blackColor);
}
.schedule-dropdown {
    position: absolute;
    width: 200px;
    background-color: #f3f3f3;
    border-radius: 12px;
    padding: 20px;
    border: 1px solid #D9D9D9;
    z-index: 2;
    visibility: hidden;
    opacity: 0;
    transform: translateY(55px);
    transition: 0.3s;
}

.time-sedule:hover .schedule-dropdown {
    visibility: visible;
    opacity: 1;
    transform: translateY(45px);
}

.schedule-dropdown h4 {
    font-size: 16px;
    font-weight: 500;
    padding-bottom: 15px;
    margin-top: -5px;
}

.schedule-dropdown ul {
    display: flex;
    flex-direction: column;
    gap: 8px !important;
}

.schedule-dropdown ul li {
    width: 100%;
}

.schedule-dropdown ul li a,
.header-right-comp .schedule-dropdown  ul li:nth-child(2) a {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    font-weight: 400;
    color: #000;
    background-color: transparent;
}

.header-right-comp .schedule-dropdown ul li:last-child span {
    all: unset;
}
.schedule-dropdown ul li.active a {
    font-weight: 700;
    font-size: 12px;
}




.header-right-comp ul a:hover {
    opacity: 0.7;
}

.header-right-comp ul li:nth-child(2) {
    display: flex;
    gap: 12px;
}

.header-right-comp ul li:nth-child(2) p {
    font-size: 12px;
}

.header-right-comp ul li:nth-child(2) h5 {
    font-size: 16px;
    font-weight: 400;
}

.header-right-comp ul li:nth-child(4) {
    display: flex;
    gap: 10px;
    font-size: 16px;
    font-weight: 400;
}

.header-right-comp ul li:nth-child(4) span:first-child {
    color: var(--blackColor);
}

.header-right-comp ul li:last-child span {
    height: 40px;
    width: 40px;
    display: block;
    background-color: var(--blackColor);
    border-radius: 8px;
    line-height: 40px;
    text-align: center;
    position: relative;
    transition: 0.2s;
}

.header-right-comp ul li:last-child a {
    opacity: 1 !important;
}

.header-right-comp ul li:last-child span:hover {
    background-color: #f3f3f3;
}

.header-right-comp ul li:last-child span:hover svg path {
    fill: #000;
}

.header-right-comp ul li:last-child span small {
    position: absolute;
    width: 20px;
    height: 20px;
    top: -10px;
    left: -10px;
    line-height: 20px;
    text-align: center;
    border-radius: 50%;
    background-color: var(--red-light);
    display: inline-block;
    font-size: 15px;
    color: var(--whiteColor);
}


.chartbox-wp {
    position: relative;
}

.chartbox-dropdown {
    position: absolute;
    right: 0;
    width: 320px;
    border: 1px solid #E6E6E6;
    background-color: #f3f3f3;
    border-radius: 10px;
    padding: 10px 10px 20px 10px;
    transform: translateY(25px);
    z-index: 2;
    visibility: hidden;
    opacity: 0;
    transition: 0.3s;
}

.chartbox-dropdown .product-list {
    max-height: 350px;
    overflow-y: auto;
    scrollbar-color: var(--primaryColor) #f3f3f3;
}
#cart-count:empty {
    display: none;
}

.chartbox-wp:has(#cart-count:not(:empty)):hover .chartbox-dropdown {
    visibility: visible;
    opacity: 1;
    transform: translateY(10px);
}
.chartbox-wp:has(#cart-count:empty),.chartbox-wp:has(#cart-count:empty):hover {
    opacity: 1;
    visibility: visible;
}
.chartbox-wp:has(#cart-count:empty) a {

}
.schedule-dropdown ul li.active span {
    font-weight: 700;
}
.chartbox-dropdown .single-product {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
    padding-bottom: 10px;
    margin-bottom: 10px;
    border-bottom: 1px solid #E6E6E6;
}

.chartbox-dropdown .single-product .img {
    width: 90px;
    height: 90px;
    flex: 0 0 90px;
    text-align: center;
    line-height: 90px;
    background-color: #fff;
    border-radius: 10px;
}

.chartbox-dropdown .single-product img {
    width: 95%;
    height: 95%;
    object-fit: cover;
}

.chartbox-dropdown .single-product .content h4 {
    font-size: 16px;
    font-weight: 500;
    padding-bottom: 10px;
    color: #000;
}

.chartbox-dropdown .single-product .content div * {
    all: unset;
}

.chartbox-dropdown .single-product .content .previos-price {
    font-size: 14px;
    font-weight: 500;
    color: #6F6F6F;
}

.chartbox-dropdown .single-product .content .site-price-range {
    font-size: 16px;
    font-weight: 500;
    color: #000;
}

.chartbox-dropdown .cancel-product {
    position: absolute;
    right: 0px;
    top: 25%;
}

.chartbox-dropdown .cancel-product button:hover {
    opacity: 0.8;
}

.button-group ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    padding-top: 8px;
}

.button-group ul li a {
    height: 100%;
    width: 100%;
    background-color: #000;
    padding: 8px 15px;
    border-radius: 10px;
    color: #fff !important;
    font-size: 16px !important;
    text-align: center;
    border: 1px solid transparent;
}

.button-group ul li a:hover {
    background-color: transparent;
    border-color: #B6B6B6;
    color: #6F6F6F !important;
}

.button-group ul li:first-child a {
    background-color: transparent;
    border-color: #B6B6B6;
    color: #6F6F6F !important;
}

.button-group ul li:first-child a:hover {
    color: #fff !important;
    border-color: #000;
    background-color: #000;
}

.humberger-menu {
    height: 22px;
    width: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
}

.humberger-menu span {
	height: 3px;
	width: 100%;
	background-color: #000;
}

.offcanvas-body {
    padding: 1rem 0rem !important;
}

.offcanvas {
    max-width: 312px;
}

.offcanvas-body {
    padding: 5px 20px !important;
}

.offcanvas-body .mobile-menu li a {
    padding: 15px 0;
    font-size: 16px;
    display: block;
    width: 100%;
    border-left: 2px solid transparent;
    border-bottom: 1px solid #C0C0C0 !important;
    color: var(--blackColor);
    text-transform: uppercase;
    position: relative;
}

.offcanvas-body .mobile-menu li a:after {
    content: '\f061';
    font-family: FONTAWESOME;
    font-weight: 300;
    display: block;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    position: absolute;
}

.offcanvas-body ,.mobile-menu li a:hover {
    padding-left: 3px;
    color: var(--primaryColor);
}

.offcanvas-backdrop.show {
	opacity: 0.7;
}

.offcanvas-header {
    padding: 22px 20px;
}

.offcanvas-header ul li a {
    font-size: 16px;
    color: #6F6F6F;
}

.offcanvas-header ul li span:first-child a {
    color: var(--blackColor);
}

.offcanvas-header .btn-close {
    margin-right: auto !important;
    margin-left: 0 !important;
    background-image: none;
    display: flex;
    gap: 9px;
    align-items: center;
    font-size: 14px;
    box-shadow: none !important;
}

.offcanvas-body {
    white-space: nowrap;
}

.offcanvas-body .header-right-comp {
    padding-top: 38px;
}

.offcanvas-body .header-right-comp p {
    color: #6F6F6F;
}

.close-offcanvas {
    position: absolute;
    right: -78px;
    top: 50%;
    transform: translateY(-50%);
}

/* hero-area */
.hero-area {
    padding-top: 30px;
    padding-bottom: 0px;
}

.hero-left-col {
    position: relative;
}

.hero-left-col h1 {
    font-weight: 700;
    font-size: 214px;
    line-height: 100%;
    vertical-align: middle;
    text-transform: uppercase;
    padding-bottom: 85px;
}

.hero-left-col h1 svg {
    margin-top: -70px;
    display: inline-block;
    margin-left: 10px;
    margin-right: 10px;
    height: auto;
}

.hero-left-col h3 {
    font-weight: 500;
    font-size: 60px;
    text-transform: uppercase;
    padding-bottom: 37px;
}

.custo-split-right .price-box-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-grow: 1;
    text-align: justify;
    /*max-width: 320px;*/
}
.custo-split-left .price-box-wrap {
    display: flex;
    justify-content:space-between;
    align-items: flex-end;
    /*max-width: 320px;*/
}
.custo-split-left .delivery-box-wrap {
    background-color: #EC407A;
    border-radius: 16px;
    display: flex;
    padding: 6px 16px;
    gap: 10px;
    align-items: center;
    margin-top: auto;
}
.custo-split-left .delivery-box-wrap h6 {
    color:#fff;
    margin: 0;
    text-align: left;
    font-size: 14px;
    font-weight: unset;
}
.custo-split-left .delivery-more {
    color: #fff;
    font-size: 14px;
    text-decoration: none;
    font-weight: 700;
    display: flex;
    align-items: center;
}

.custo-split-left .delivery-more:hover {
    text-decoration: underline; /* opțional */
}
.custo-left-slide-product {
    height: 100%;
    padding: 0 0px 8px !important;
}

.custo-left-slide-product .custo-split-left {
    display: flex;
    flex-direction: column;
    height: 100%;
}
.bg-red-light {
    background-color: var(--red-light) !important;
}

.badge-new-product {
    background-color: var(--primaryColor) !important;
}
.badge-super-price {
    background-color: var(--red-light) !important;
}
.badge-popular-product {
    background-color: rgb(255, 204, 51) !important;
    color: var(--bs-black) !important;
}
.badge-low-stock {
    background-color: var(--bs-red) !important;
}



.site-price-range {
    padding: 5px 15px;
    border-radius: 63px;
    font-size: 12px;
    color: var(--whiteColor);
}

.price-box .previos-price {
    font-weight: 500;
    font-size: 16px;
    text-decoration: line-through;
}
/*.product-buy-button img {*/
/*    width: 20px !important;*/
/*    height: 20px !important;*/
/*    flex-shrink: 0;*/
/*}*/
/*.product-buy-button a {*/
/*    display: inline-flex;*/
/*    !*gap: 20px;*!*/
/*    align-items: center;*/
/*    font-size: 16px;*/
/*    color: var(--whiteColor);*/
/*    background-color: #ec407a;*/
/*    padding: 14px 17px;*/
/*    border-radius: 12px;*/
/*}*/
/*.product-buy-button a:hover {*/
/*    background-color: #41b0b1;*/
/*}*/
/*img[src$="online-shopping.svg"] {*/
/*    width: 20px;*/
/*    height: 20px;*/
/*}*/

/* Asigură dimensiune fixă pentru pictograma SVG */
.product-buy-button img {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    object-fit: contain;
    display: block; /* elimină efecte nedorite de aliniere verticală */
}

/* Setează dimensiuni consistente pentru buton */
.product-buy-button a {
    display: inline-flex;
    gap: 10px; /* poți ajusta, 20px era cam mult pentru butoane mici */
    align-items: center;
    font-size: 16px;
    color: var(--whiteColor);
    background-color: #ec407a;
    padding: 11px 14px; /* un pic mai mic ca să nu taie imaginea */
    border-radius: 12px;
    text-decoration: none;
    line-height: 1; /* previne întinderea verticală */
}

/* Buton hover */
.product-buy-button a:hover {
    background-color: #41b0b1;
}

.product-buy-button figure {
    margin: 0; /* elimină spațiu implicit al figure */
    padding: 0;
    width: 20px;
    height: 20px;
}

.custo-another-btn {
    display: inline-flex;
    gap: 20px;
    align-items: center;
    font-size: 16px;
    color: var(--whiteColor);
    background-color: #000 !important;
    padding: 14px 17px;
    border-radius: 12px;
}
.custo-another-btn:hover {
    background-color: #000 !important;
}

    /*.product-buy-button a:hover {*/
/*    background-color: var(--primaryColor);*/
/*    color: var(--whiteColor);*/
/*}*/

.price-box h4 {
    font-size: 32px;
    padding-top: 10px;
}

.hero-absolute {
    position: absolute;
    bottom: 0;
    right: 0;
    height: fit-content;
}

.hero-absolute img {
    background-color: #dad9d952;
    border-radius: 15px;
    backdrop-filter: blur(5px);
}
/*.general-banner {*/
/*    background: url(../images/general_banner/general_banner_confort.svg);*/
/*    padding-top:220px;*/
/*    background-size: contain; !* Sau "100% auto" pentru control orizontal complet *!*/
/*    background-repeat: no-repeat;*/
/*    !*background-position: left;*/
/*    background-position-y: 0px;*!*/
/*}*/
.general-banner {
    position: relative;
    padding-top: 190px; /* valoare default mai mică */
}

.general-banner-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    max-width: 100%;      /* previne ieșirea în afara containerului */
    height: auto;         /* menține proporțiile SVG-ului */
    object-fit: contain;
    z-index: 0;
    pointer-events: none;
}
/*.general-banner-item {*/
/*    height: fit-content;*/
/*    position: relative; !* Esențial pentru poziționarea absolută a badge-ului *!*/
/*    display: inline-block;*/
/*}*/
.general-banner-item {
    position: relative;
    z-index: 1; /* să fie deasupra SVG-ului */
    margin-top: -80px; /* suprapunere controlată */
}
.general-banner-item img {
    background-color: #dad9d952;
    border-radius: 15px;
    backdrop-filter: blur(5px);
    display: block;
    width: 100%; /* Ajustează după nevoie */
}

.general-banner-item .general-banner-product-name-badge {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    background-color: #37b6b6;
    color: white;
    padding: 5px 15px;
    border-radius: 8px 8px 0 0;
    font-size: 14px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.general-banner-item:hover .general-banner-product-name-badge {
    opacity: 1;
    visibility: visible;
}



.custo-right-img .general-banner-product-name-badge {
    position: relative;
    bottom: -29px;
    height: 25px;
    transform: translateX(-50%);
    background-color: #37b6b6;
    color: white;
    padding: 5px 15px;
    border-radius: 8px 8px 0 0;
    font-size: 14px !important;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    top:unset;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    left: 0%;
}

.custo-right-img:hover .general-banner-product-name-badge {
    opacity: 1;
    visibility: visible;
}
.custo-right-img .general-banner-product-home-list-badge {
    position: relative;
    bottom: 0px;
    height: 25px;
    transform: translateX(-50%);
    background-color: #37b6b6;
    color: white;
    padding: 5px 15px;
    border-radius: 8px 8px 0 0;
    font-size: 14px !important;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    top:unset;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    left: 0%;
}

.custo-right-img:hover .general-banner-product-home-list-badge {
    opacity: 1;
    visibility: visible;
}
@media (max-width: 768px) {
    .general-banner {
        padding-top: 100px; /* mai puțin spațiu sus pe mobil */
    }

    .general-banner-item {
        margin-top: -40px; /* suprapunere mai fină pe mobil */
    }
}
/* Ecrane mari: reduce suprapunerea */
@media (min-width: 500px) {
    .general-banner-item {
        margin-top: -30px; /* mai mică decât -80px */
    }
}
@media (min-width: 534px) {
    .general-banner-item {
        margin-top: -25px; /* mai mică decât -80px */
    }
}
@media (min-width: 548px) {
    .general-banner-item {
        margin-top: -23px; /* mai mică decât -80px */
    }
}
@media (min-width: 560px) {
    .general-banner-item {
        margin-top: -19px; /* mai mică decât -80px */
    }
}
@media (min-width: 575px) {
    .general-banner-item {
        margin-top: -19px; /* mai mică decât -80px */
    }
}
@media (min-width: 769px) {
    .general-banner-item {
        margin-top: -88px; /* mai mică decât -80px */
    }
}
@media (min-width: 990px) {
    .general-banner-item {
        margin-top: -49px; /* mai mică decât -80px */
    }
}
@media (min-width: 1300px) {
    .general-banner-item {
        margin-top: -18px; /* mai mică decât -80px */
    }
}
@media (min-width: 1400px) {
    .general-banner-item {
        margin-top: 24px; /* mai mică decât -80px */
    }
}
.hero-pd-slide-wp{
    position: relative;
}

.hero-pd-slider {
    background-color: #dad9d952;
    border-radius: 15px;
    backdrop-filter: blur(5px);
}

.hero-pd-slide-wp .hero-prev:after,
.hero-pd-slide-wp .hero-next:after {
    display: none;
}

.swiper-slide-controler div {
    width: 85px;
    height: 35px;
    line-height: 35px;
    border-radius: 50px;
    padding: 0 30px;
    background: #F3F3F3;
    position: absolute;
    z-index: 2;
}

.swiper-slide-controler div:last-child {
    background-color: var(--blackColor);
}

.hero-pd-slide-wp .hero-prev,
.hero-pd-slide-wp .hero-next {
    top: 105% !important;
    left: 50% !important;
    transform: translateX(-100%) !important;
}

.hero-pd-slide-wp .hero-next {
    left: 80% !important;
}

.header-right-wp {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.bg-primary-card {
    border-radius: 20px;
    background: var(--primaryColor);
    display: flex;
    padding: 20px;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.bg-primary-card .icon {
    width: 80px;
    flex: 0 0 80px;
}

.bg-primary-card p {
    font-size: 16px;
    color: var(--whiteColor);
}

.head-right-bott p {
    padding-bottom: 40px;
    font-size: 16px;
    color: var(--blackColor);
}

.head-right-bott a {
    display: flex;
    justify-content: space-between;
    font-size: 16px;
    color: var(--blackColor);
    border: 1px solid var(--blackColor);
    border-radius: 10px;
    padding: 15px 30px;
    align-items: center;
}

.head-right-bott a:hover {
    /*background-color: var(--primaryColor);*/
    /*border-color: var(--primaryColor);*/
    /*color: var(--whiteColor);*/
    font-weight: bold;
    text-decoration: underline;
}

.head-right-bott a:hover svg path {
    /*fill: var(--whiteColor);*/
}

/* custo-split-wp */
.custo-split-wp {
    padding-bottom: 80px;
}

.custo-left-slide-wp {
    background-color: #f3f3f3;
    border-radius: 20px;
    padding: 45px 45px;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.bg-yellow {
    background-color: #FFCC33 !important;
}

.custo-left-shape {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    z-index: -1;
}

.custo-left-shape img {
    height: 100%;
}

.custo-split-left h2 {
    font-size: 110px;
    line-height: 100%; 
    text-transform: uppercase;
    padding-top: 12px;
    padding-bottom: 15px;
}

.custo-split-left .price-box-wrap {
    max-width: 445px;
    padding-top: 40px;
}

.custo-split-slide .swiper-slide-controler svg {
    margin-top: -3px;
}

.custo-split-slide .swiper-slide-controler .custo-prev {
    left: 0;
    bottom: 0;
    background-color: var(--whiteColor);
}

.custo-split-slide .swiper-slide-controler .custo-next {
    left: 100px;
    bottom: 0;
}

.custo-product-img img {
    height: 560px;
}

.custo-right-img {
    position: relative;
    background-color: #dad9d952;
    border-radius: 15px;
    backdrop-filter: blur(5px);
    text-align: center;
    padding: 30px 30px;
    flex-shrink: 0;
    cursor: pointer;
}

.custo-right-img img {
    height: 339px;
}

.custo-right-img span {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 3;
    font-size: 12px !important;
}
.custo-split-right {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.last-card {
    margin-top: auto; /* trimite elementul la baza containerului */
    flex-shrink: 0;
}
.custo-split-right .price-box-wrap {
    /*padding-top: 15px;*/
    /*padding-bottom: 30px;*/
}

.custo-split-right .price-box h4 {
    font-size: 20px;
    font-weight: 500;
    padding-bottom: 4px;
}

.custo-split-right .previos-price {
    font-size: 14px;
}

.custo-split-right .site-price-range {
    font-size: 16px;
}
.custo-split-right .price-box .site-price-range {
    color: #ec407a;
    font-weight: bold;
    font-size: 1.1rem;
}

.custo-split-right .product-buy-button a {
	/*padding: 11px 14px;*/
}
.product-desc {
    text-align: justify;
    font-size: clamp(0.75rem, 1vw + 0.2rem, 0.95rem); /* responsive font-size */
    line-height: 1.5;
}
/*@media (min-width: 576px) {*/
/*    .product-desc {*/
/*        font-size: 0.95rem;*/
/*    }*/
/*}*/

/*@media (min-width: 768px) {*/
/*    .product-desc {*/
/*        font-size: 0.95rem;*/
/*    }*/
/*}*/

/*@media (min-width: 1200px) {*/
/*    .product-desc {*/
/*        font-size: 0.95rem;*/
/*    }*/
/*}*/
.new-price-alignment {
    justify-content: space-between;
    align-items: flex-end;
    max-width: 320px;
}


/* custo-houston */
.custo-houston {
    padding-bottom: 80px;
}
.custo-barcelona {
    padding-bottom: 40px;
}

.custo-torino-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    padding-top: 40px;
}

.custo-torino-right {
    max-height: 700px;
    height: 100%;
    overflow: hidden;
}

  .slider .swiper-container {
    width: 100%;
    height: 100%;
  }
  .slider__flex {
    display: flex;
    align-items: flex-start;
    gap: 20px;
  }
  .slider__col {
    display: flex;
    flex-direction: column;
    width: 150px;
  }

 .custo-torino-right .slider__thumbs .swiper-slide {
    height: 134px !important;
    margin-bottom: 18px !important;
    cursor: pointer;
 }

 .custo-torino-controler {
    padding-top: 308px;
    display: flex;
    gap: 15px;
    justify-content: center;
 }

  .slider__prev,
  .slider__next {
    cursor: pointer;
    text-align: center;
    font-size: 14px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
  }

.custo-torino-controler div {
    height: 30px;
    width: 75px;
    border-radius: 50px;
    background-color: #F3F3F3;
}

.custo-torino-controler div:last-child {
    background-color: var(--blackColor);
}

  .slider__prev:focus,
  .slider__next:focus {
    outline: none;
  }
  .slider__thumbs {
    height: calc(400px - 96px);
  }
  .slider__thumbs .slider__image {
    transition: 0.25s;
  }
  .slider__images {
    height: 650px;
  }
  .slider__images .slider__image img {
    transition: 3s;
  }
  .slider__images .slider__image:hover img {
    transform: scale(1.1);
  }
  .slider__image {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    overflow: hidden;
  }
  .slider__image img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
  }

  /* echilibru-sistil-wp */

.echilibru-sistil-wp .custo-houston-left {
    position: relative;
}


.echilibru-sistil-wp .custo-houston-left  h2 {
    position: absolute;
    left: 45px;
    top: 50%;
    transform: translateY(-50%);
    font-weight: 500;
    font-size: 130.7px;
    line-height: 110%;
    letter-spacing: 0%;
    color: var(--whiteColor);
}


  /* echilibru-sistil-wp */

  .bestseller-text h5 {
    text-align: center;
    font-size: 24px;
    text-transform: uppercase;
    padding-bottom: 40px;
  }


.bestseller-wp {
    padding-bottom: 80px;
}

/*.bestseller-inner {*/
/*    background-image: url(../images/bestseller-bg.png);*/
/*    background-repeat: no-repeat;*/
/*    background-size: contain;*/
/*    background-position: center;*/
/*    border-radius: 20px;*/
/*    padding: 70px 45px;*/
/*    background-color: #f3f3f3;*/
/*}*/
.bestseller-inner-belfast,
.bestseller-inner-bergamo,
.bestseller-inner-bergamo-gray,
.bestseller-inner-budapesta,
.bestseller-inner-cordoba,
.bestseller-inner-cordoba-gray,
.bestseller-inner-monza,
.bestseller-inner-palermo,
.bestseller-inner-palermo-black,
.bestseller-inner-paris,
.bestseller-inner-porto,
.bestseller-inner-roma,
.bestseller-inner-roma-white,
.bestseller-inner-sevilla,
.bestseller-inner-tallinn,
.bestseller-inner-vienna,
.bestseller-inner-zaragoza
{
    background-image: url(../images/bestseller/paris/paris-bckg.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    border-radius: 20px;
    padding: 35px 45px;
    background-color: #f3f3f3;
}
.bestseller-inner-paris {
    background-image: url(../images/bestseller/paris/paris-bckg.png);
}
.bestseller-inner-vienna {
    background-image: url(../images/bestseller/vienna/vienna-bckg.png);
}
.bestseller-inner-zaragoza {
    background-image: url(../images/bestseller/zaragoza/zaragoza-bckg.png);
}
.bestseller-inner-sevilla {
    background-image: url(../images/bestseller/sevilla/sevilla-bckg.png);
}
.bestseller-inner-budapesta {
    background-image: url(../images/bestseller/budapesta/budapesta-bckg.png);
}
.bestseller-inner-belfast {
    background-image: url(../images/bestseller/belfast/belfast-bckg.png);
}
.bestseller-inner-bergamo {
    background-image: url(../images/bestseller/bergamo/bergamo-bckg.png);
}
.bestseller-inner-bergamo-gray {
    background-image: url(../images/bestseller/bergamo-gray/bergamo-bckg.png);
}
.bestseller-inner-cordoba {
    background-image: url(../images/bestseller/cordoba/cordoba-bckg.png);
}
.bestseller-inner-cordoba-gray {
    background-image: url(../images/bestseller/cordoba-gray/cordoba-bckg.png);
}
.bestseller-inner-monza {
    background-image: url(../images/bestseller/monza/monza-bckg.png);
}
.bestseller-inner-palermo {
    background-image: url(../images/bestseller/palermo/palermo-bckg.png);
}
.bestseller-inner-palermo-black {
    background-image: url(../images/bestseller/palermo-black/palermo-bckg.png);
}
.bestseller-inner-porto {
    background-image: url(../images/bestseller/porto/porto-bckg.png);
}
.bestseller-inner-roma {
    background-image: url(../images/bestseller/roma/roma-bckg.png);
}
.bestseller-inner-roma-white {
    background-image: url(../images/bestseller/roma-white/roma-bckg.png);
}
.bestseller-inner-tallinn {
    background-image: url(../images/bestseller/tallinn/tallinn-bckg.png);
}

.bestseller-left {
    position: relative;
}

  .flickity-enabled:focus { outline: none; }
  
  .flickity-viewport {
    overflow: hidden;
    position: relative;
    height: 100%;
  }
  
  .flickity-slider {
    position: absolute;
    width: 100%;
    height: 100%;
  }
  
  .flickity-enabled.is-draggable {
    -webkit-tap-highlight-color: transparent;
            tap-highlight-color: transparent;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
  }
  
  .flickity-enabled.is-draggable .flickity-viewport {
    cursor: move;
    cursor: -webkit-grab;
    cursor: grab;
  }
  
  .flickity-enabled.is-draggable .flickity-viewport.is-pointer-down {
    cursor: -webkit-grabbing;
    cursor: grabbing;
  }
  
  .flickity-prev-next-button {
    position: absolute;
    top: 50%;
    width: 44px;
    height: 44px;
    border: none;
    border-radius: 50%;
    background: white;
    background: hsla(0, 0%, 100%, 0.75);
    cursor: pointer;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }

  .flickity-prev-next-button:active {
    opacity: 0.6;
  }
  
  .flickity-prev-next-button.previous { left: 30px; }
  .flickity-prev-next-button.next { right: 30px; }
 
  .flickity-prev-next-button:disabled {
    opacity: 0.3;
    cursor: auto;
  }
  
  .flickity-prev-next-button svg {
    position: absolute;
    left: 20%;
    top: 20%;
    width: 60%;
    height: 60%;
  }
  
  .flickity-prev-next-button .arrow {
    fill: #333;
  }
.big-carousel {

}
  .carousel-main,
  .carousel-paris,
  .carousel-vienna{
    margin-bottom: 8px;
  }
  
  .carousel-cell {
    width: 100%;
    height: 678px;
    margin-right: 8px;
    background: #fff;
    border-radius: 12px;
  }

.carousel-nav .carousel-cell,
.carousel-nav .paris-carousel-cell ,
.carousel-nav .vienna-carousel-cell ,
.carousel-nav .zaragoza-carousel-cell ,
.carousel-nav .sevilla-carousel-cell,
.carousel-nav .budapesta-carousel-cell,
.carousel-nav .belfast-carousel-cell,
.carousel-nav .bergamo-carousel-cell,
.carousel-nav .bergamo-gray-carousel-cell,
.carousel-nav .cordoba-carousel-cell,
.carousel-nav .cordoba-gray-carousel-cell,
.carousel-nav .monza-carousel-cell,
.carousel-nav .palermo-carousel-cell,
.carousel-nav .palermo-black-carousel-cell,
.carousel-nav .porto-carousel-cell,
.carousel-nav .roma-carousel-cell,
.carousel-nav .roma-white-carousel-cell,
.carousel-nav .tallinn-carousel-cell
{
    height: 140px;
    width: 130px;
}

.paris-carousel-cell ,
.vienna-carousel-cell,
.zaragoza-carousel-cell ,
.sevilla-carousel-cell,
.budapesta-carousel-cell,
.belfast-carousel-cell,
.bergamo-carousel-cell,
.bergamo-gray-carousel-cell,
.cordoba-carousel-cell,
.cordoba-gray-carousel-cell,
.monza-carousel-cell,
.palermo-carousel-cell,
.palermo-black-carousel-cell,
.porto-carousel-cell,
.roma-carousel-cell,
.roma-white-carousel-cell,
.tallinn-carousel-cell
{
    width: 100%;
    height: 600px;
    margin-right: 8px;
    background: #fff;
    border-radius: 12px;
}

  .carousel-main img,
  .carousel-paris img,
  .carousel-vienna img,
  .carousel-zaragoza img,
  .carousel-sevilla img,
  .carousel-budapesta,
  .carousel-belfast img,
  .carousel-bergamo img,
  .carousel-bergamo-gray img,
  .carousel-cordoba img,
  .carousel-cordoba-gray img,
  .carousel-monza img,
  .carousel-palermo img,
  .carousel-palermo-black img,
  .carousel-porto img,
  .carousel-roma img,
  .carousel-roma-white img,
  .carousel-tallinn img
  {
      display: block;
      margin: 0 auto;
      height: 100%;
  }

.bestseller-left .carousel-cell ,
.bestseller-left .paris-carousel-cell ,
.bestseller-left .vienna-carousel-cell ,
.bestseller-left .zaragoza-carousel-cell ,
.bestseller-left .sevilla-carousel-cell,
.bestseller-left .budapesta-carousel-cell,
.bestseller-left .belfast-carousel-cell,
.bestseller-left .bergamo-carousel-cell,
.bestseller-left .bergamo-gray-carousel-cell,
.bestseller-left .cordoba-carousel-cell,
.bestseller-left .cordoba-gray-carousel-cell,
.bestseller-left .monza-carousel-cell,
.bestseller-left .palermo-carousel-cell,
.bestseller-left .palermo-black-carousel-cell,
.bestseller-left .porto-carousel-cell,
.bestseller-left .roma-carousel-cell,
.bestseller-left .roma-white-carousel-cell,
.bestseller-left .tallinn-carousel-cell
{
    background: transparent;
}

  .bestseller-right img {
      height: 100%;
      display: block;
      margin: auto;
  }

  .bestseller-right .flickity-prev-next-button.previous ,
  .bestseller-right .flickity-prev-next-button.next {
      display: none !important;
  }

  .bestseller-right .flickity-slider {
      transform: translate(0) !important;
  }

  .bestseller-right h3 {
    font-size: 32px;
    padding-top: 20px;
    padding-bottom: 40px;
    text-transform: uppercase;
  }

.bestseller-right .price-box-wrap {
    display: flex;
    min-width: 100%;
    padding-top: 45px;
    padding-bottom: 50px;
    /*flex-direction: column;*/
    align-items: flex-end;
    gap: 45px;
}
.bestseller-right-cont p {
    min-height: 135px;
}
  .flickity-button.next svg,
  .flickity-button.previous svg {
    display: none;
  }

.flickity-button.previous svg {

}
  .flickity-prev-next-button {
    height: 30px;
    width: 75px;
    border-radius:50px;
    background-color: #fff;
}

.flickity-button.next,
.flickity-button.previous{
    background-color: var(--blackColor);
    /*transform: translateX(915%);*/
}

.flickity-button.next:after {
    content: "";
    display: inline-block;
    width: 25px;
    height: 25px;
    background-image: url('data:image/svg+xml;utf8,<svg width="25" height="25" viewBox="0 0 25 25" fill="none" xmlns="http://www.w3.org/2000/svg"><g clip-path="url(%23clip0_10735_3802)"><path d="M24.7126 11.8039C24.7123 11.8036 24.7121 11.8032 24.7117 11.8029L19.609 6.7248C19.2267 6.34438 18.6084 6.3458 18.2279 6.72812C17.8474 7.1104 17.8489 7.72871 18.2312 8.10918L21.6571 11.5186L0.975585 11.5186C0.43623 11.5186 -0.000977527 11.9558 -0.000977621 12.4951C-0.000977715 13.0345 0.436229 13.4717 0.975585 13.4717L21.6571 13.4717L18.2312 16.8811C17.8489 17.2615 17.8475 17.8798 18.2279 18.2621C18.6084 18.6445 19.2268 18.6458 19.609 18.2654L24.7118 13.1873C24.7121 13.187 24.7123 13.1867 24.7126 13.1864C25.0951 12.8046 25.0939 12.1843 24.7126 11.8039Z" fill="white"/></g><defs><clipPath id="clip0_10735_3802"><rect width="25" height="25" fill="white" transform="translate(0 -0.00488281)"/></clipPath></defs></svg>');
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .flickity-button.previous:before {
    content: "";
    display: inline-block;
    width: 25px;
    height: 25px;
    background-image: url("data:image/svg+xml;utf8,<svg width='25' height='25' viewBox='0 0 25 25' fill='none' xmlns='http://www.w3.org/2000/svg'><g clip-path='url(%23clip0_10735_3797)'><path d='M0.287401 13.1864C0.287694 13.1867 0.287938 13.187 0.28828 13.1873L5.39101 18.2654C5.77329 18.6459 6.3916 18.6444 6.77212 18.2621C7.15259 17.8798 7.15112 17.2615 6.76885 16.8811L3.34287 13.4717L24.0244 13.4717C24.5638 13.4717 25.001 13.0345 25.001 12.4951C25.001 11.9558 24.5638 11.5186 24.0244 11.5186L3.34292 11.5186L6.7688 8.10918C7.15107 7.72871 7.15254 7.1104 6.77207 6.72813C6.39155 6.34575 5.77319 6.34444 5.39097 6.72481L0.288231 11.8029C0.287938 11.8032 0.287694 11.8036 0.287352 11.8039C-0.095119 12.1856 -0.093898 12.8059 0.287401 13.1864Z' fill='white'/></g><defs><clipPath id='clip0_10735_3797'><rect width='25' height='25' fill='white' transform='translate(25 24.9951) rotate(-180)'/></clipPath></defs></svg>");
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

.carousel-nav .carousel-cell ,
.carousel-nav .paris-carousel-cell ,
.carousel-nav .vienna-carousel-cell ,
.carousel-nav .zaragoza-carousel-cell ,
.carousel-nav .sevilla-carousel-cell,
.carousel-nav .budapesta-carousel-cell,
.carousel-nav .belfast-carousel-cell,
.carousel-nav .bergamo-carousel-cell,
.carousel-nav .cordoba-carousel-cell,
.carousel-nav .cordoba-gray-carousel-cell,
.carousel-nav .monza-carousel-cell,
.carousel-nav .palerma-carousel-cell,
.carousel-nav .palermo-black-carousel-cell,
.carousel-nav .porto-carousel-cell,
.carousel-nav .roma-carousel-cell,
.carousel-nav .roma-white-carousel-cell,
.carousel-nav .tallinn-carousel-cell
{
    margin-right: 20px !important;
}
/* product-slider-area  */
.bg-primary {
    background-color: var(--primaryColor) !important;
}

.product-slider-area .custo-right-img img {
    height: auto;
}

.product-slider-area .custo-split-right .price-box-wrap {
	padding-bottom: 40px;
}

/* footer area */
.footer-wrap {
    background-color: var(--primaryColor);
    border-radius: 40px 40px 0 0;
    margin-top: 40px;
}

.main-footer {
    padding: 94px 0;
}

.footer-newsletter {

}

.footer-newsletter ul {
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.footer-newsletter ul li a {
    color: var(--whiteColor);
    font-size: 14px;
}

.footer-newsletter p {
    color: var(--whiteColor);
    font-size: 14px;
    margin-top: -16px;
}

.footer-newsletter .input {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 20px;
    border: 1px solid #FFF;
    padding: 7px 10px 7px 20px;
}

.footer-newsletter .input input {
    width: 100%;
    color: var(--whiteColor);
}

.footer-newsletter button {
    border-radius: 15px;
    background: #FFF;
    padding: 10px 20px;
    font-size: 16px;
    color: var(--primaryColor);
    border: 1px solid #fff;
}

.footer-newsletter button:hover {
    background-color: transparent;
    color: #fff;
}

.main-footer h4 {
    font-size: 16px;
    font-weight: 500;
    padding-bottom: 20px;
    color: var(--whiteColor);
}

.footer-col-three {
    /*padding-left: 60px;*/
}

.footer-col-three ul {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.footer-col-three ul li a {
    color: var(--whiteColor);
    font-size: 14px;
}

.footer-col-three p {
    color: var(--whiteColor);
    font-size: 14px;
    margin-top: -16px;
}
.footer-col-four p {
     color: var(--whiteColor);
     font-size: 14px;
     margin-top: -16px;
 }

.footer-col-four ul {
    display: flex;
    padding-top: 20px;
    gap: 15px;
}

.footer-col-four ul li a {
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    background-color: var(--whiteColor);
    color: var(--primaryColor);
    border-radius: 8px;
    font-size: 14px;
}

.footer-wrap ul li a:hover {
    opacity: 0.8;
}

.footer-copyright {
    padding: 25px 0;
}

.footer-copyright ul {
    display: flex;
    justify-content: space-between;
}

.footer-copyright ul li a,
.footer-copyright ul li {
    color: var(--whiteColor);
    font-size: 14px;
}


/* produs page design */

.produs-brudcamp ul {
    display: flex;
    gap: 10px;
    padding-bottom: 20px;
    padding-top: 20px;
}

.produs-brudcamp ul li,
.produs-brudcamp ul li a {
    font-size: 16px;
    color: #6F6F6F;
}

.produs-brudcamp ul li:last-child {
    color: var(--blackColor);
    font-weight: 500;
}

.produs-brudcamp ul li a:hover {
    color: var(--blackColor);
}

.produs-hero-wp .custo-split-left h2 {
    font-size: 32px;
    padding-top: 20px;
    padding-bottom: 20px;
}

.produs-hero-wp .custo-split-left .idNum {
    font-size: 14px;
    display: block;
    padding-bottom: 30px;
}

.produs-hero-wp .custo-split-left p {
    font-size: 16px;
    padding-bottom: 5px;
}

  .quantity {
    display: flex;
    align-items: center;
    padding: 0;
    border-radius: 60px;
    border: 1px solid #D9D9D9;
    background: #FFF;
    max-width: 100px;
    margin-bottom: 40px;
    padding: 10px 15px;
    justify-content: center;

  }
  .quantity__minus,
  .quantity__plus {
    width: 15px;
    height: 15px;
    text-decoration: none;
    text-align: center;
    line-height: 15px;
    border-radius: 50%;
    padding-left: 1px;
    color: #fff;
}

.quantity__minus {
    background-color: #D9D9D9;
}

.quantity__plus {
    padding-top: 1px;
    background-color: #000;
  }

  .quantity__input {
    width: 32px;
    height: 19px;
    margin: 0;
    padding: 0;
    text-align: center;
    background: #fff;
    color: #000;
    font-size: 16px;
    font-weight: 700;
  }
  .quantity__minus:link,
  .quantity__plus:link {
    color: #fff;
  } 
  .quantity__minus:visited,
  .quantity__plus:visited {
    color: #fff;
  }
  .produs-hero-wp .price-box-wrap {
    max-width: 100%;
    border-radius: 20px;
    background: #F3F3F3;
    padding: 36px;
    margin-top: 24px;
    min-height: 149px;
  }

.produs-hero-wp .bg-primary-card {
    justify-content: space-between;
    padding: 36px;
    margin-top: 35px;
} 

.produs-hero-wp .bg-primary-card h4 {
    font-size: 14px;
    font-weight: 500;
    color: var(--whiteColor);
}

.produs-hero-wp .bg-primary-card h4 span {
    font-size: 24px;
    font-weight: 700;
    line-height: 24px;
}

.produs-hero-wp .bg-primary-card a {
    padding: 10px 40px;
    border-radius: 15px;
    background: #FFF;
    color: var(--primaryColor);
    font-size: 16px;
}

.produs-hero-wp .bg-primary-card a:hover {
    background-color: var(--blackColor);
    color: var(--whiteColor);
}

/*== vezi-detalii here ==*/

.vezi-detalii-section {
    padding-bottom: 60px;
}

.vezi-detalii-items {
    padding: 20px;
    background: #F3F3F3;
    border-radius: 20px;
}

.vezi-detalii-items-inner {
    width: 24px;
    height: 24px;
    line-height: 24px;
    text-align: center;
    background: #41B0B1;
    border-radius: 5px;
    margin-right: 10px;
}

.vezi-detalii-items h6 {
    font-size: 16px;
    font-weight: 500;
    color: #000;
}

.vezi-detalii-items p {
    padding-top: 10px;
    font-size: 14px;
    color: #000;
}

.vezi-detalii-items-btn a {
	font-size: 12px;
	color: var(--blackColor);
}

.vezi-detalii-items-btn {
    padding-top: 30px;
    text-align: end;
}

.vezi-detalii-items-btn a figure {
    display: inline-block;
}

.vezi-detalii-items-btn a figure svg {
    max-width: 18px;
}

.vezi-detalii-items-btn a:hover {
    color: #000000b7;
}

.vezi-detalii-items-btn a:hover svg path {
    fill: #000000b7;
}

/* Dimensions & Materials here */

.rt-dimensions-section {
    padding-bottom: 80px;
}

.rt-dimensions-top h2 {
    font-size: 24px;
    font-weight: 700;
    color: #000000;
}

.rt-dimensions-items {
    padding-top: 40px;
}

.rt-dimensions-items > div {
    padding-top: 20px;
}

.rt-dimensions-items h4 {
    font-size: 16px;
    font-weight: 700;
    color: #41B0B1;
}

.rt-dimensions-items h6 {
    font-size: 12px;
    color: #6F6F6F;
    margin-right: 30px;
}

.rt-dimensions-items p {
    font-size: 16px;
    font-weight: 500;
    color: #000;
}

.rt-bg-populer {
    background: #41B0B1;
}

.rt-bg-bestseller {
    background: #FFCC33;
    color: #000;
}

.rt-bg-blue {
    background: #304BFF;
}

.product-area-top-rt {
    padding-bottom: 40px;
    text-align: center;
}

.product-area-top-rt h2 {
    font-size: 24px;
    font-weight: 700;
    color: #000;
}

.categori-area-btn {
    text-align: center;
}

.categori-area-btn ul li {
    display: inline-block;
}

.categori-area-btn ul {
    padding: 10px;
    display: inline-flex;
    gap: 8px;
    background: #F3F3F3;
    border-radius: 20px;
}

.categori-area-btn ul li a {
    padding: 15px 20px;
    font-size: 16px;
    color: #000;
    border-radius: 16px;
}

.categori-area-btn ul li a.active {
    background: #fff;
}

.categori-area-btn ul li:last-child a {
    margin-left: 5px;
}

.categori-area-btn ul li a:hover {
    background-color: #fff;
}

.categori-tab-area {
    padding-top: 60px;
}

.categori-tab-area ul li {
    display: inline-block;
}

.categori-tab-area ul li button {
    font-size: 16px;
    color: #808080;
    margin-right: 30px;
    position: relative;
}

.categori-tab-area ul li button::after {
    content: "";
    display: block;
    height: 2px;
    width: 100%;
    position: absolute;
    left: 0;
    bottom: -12px;
    background: #000000;
    transform: translateY(6px);
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
}

.categori-tab-area ul li button.skltbs-active::after,
.categori-tab-area ul li button:hover:after {
    transform: translateY(0px);
    opacity: 1;
    visibility: visible;
}

.skltbs-panel-group {
    padding-top: 35px;
}

.categori-tab-area ul li button.skltbs-active {
	font-weight: 500;
    color: #000;
}

.categori-tab-area p {
    display: none;
}

.mobile-tab {
    padding: 10px 55px;
    font-size: 16px;
    color: #000;
    border: 1px solid #000;
    border-radius: 50px;
    display: inline-block;
    cursor: pointer;
}

.mobile-tab img {
    margin-right: 10px;
}

.categori-section .swiper-slide-controler div {
	position: initial;
    margin: 0 10px;
}

.categori-section .swiper-slide-controler .custo-next {
    width: fit-content;
}

.categori-section .swiper-slide-controler .custo-next span {
    font-size: 16px;
    color: #fff;
    margin-right: 40px;
}

.categori-section .swiper-slide-controler {
    display: flex;
    justify-content: center;
}

.categori-section {
    padding-bottom: 40px;
}

/* chart modal design  */
.modal-backdrop.show {
	opacity: 0.7;
}

.site-modal .modal-dialog {
	max-width: 940px;
    padding: 0 15px;
}

.site-modal .modal-content {
    padding: 40px;
    padding-right: 0;
}

.site-modal .modal-body  {
    overflow: auto;
    scrollbar-color: var(--primaryColor) #f3f3f3;
}

.site-modal .modal-content-wp  {
    max-height: 760px;
    padding-right: 40px;
}

.site-modal .modal-header {
    padding-bottom: 20px !important;
    padding-right: 40px !important;
}

.site-modal .modal-header h5 {
    font-size: 24px;
    font-weight: 700;
}

.site-modal .modal-header .btn-close {
    background-image: none;
    box-shadow: none;
}

.selection-products {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.selection-products .single-product {
    background: #F3F3F3;
    padding: 20px;
    border-radius: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.selection-products .product-delet {
    position: absolute;
    right: 10px;
    top: 10px;
}

.selection-products .product-delet button:hover {
    opacity: 0.8;
}

.selection-products .product-col {
    display: flex;
    align-items: center;
    gap: 20px;
}

.selection-products .product-col .img {
    background-color: var(--whiteColor);
    width: 160px;
    flex: 0 0 160px;
    border-radius: 10px;
    text-align: center;
    line-height: 160px;
}

.selection-products .content h3 {
    font-size: 24px;
    font-weight: 700;
    padding-bottom: 20px;
}

.selection-products .content p {
    font-size: 14px;
    color: #6F6F6F;
}

.selection-products .price-box h4 {
	font-size: 24px;
}

.product-gross ul {
    background: #F3F3F3;
    padding: 20px;
    border-radius: 20px;
    display: flex; 
    flex-direction: column;
    gap: 20px;
    margin-top: 20px;
}

.product-gross ul li {
    display: flex; 
    justify-content: space-between;

}

.product-gross ul li span {
    font-size: 14px;
    color: var(--blackColor);
    font-size: 16px;
}

.product-gross ul li:last-child span {
    font-weight: 700;
    color: var(--blackColor);
    font-size: 24px;
}

.information-form {
    background: #F3F3F3;
    padding: 20px;
    border-radius: 20px;
    display: flex; 
    flex-direction: column;
    gap: 20px;
    margin-top: 20px;
}

.form-inputs {
    padding-bottom: 20px;
    border-bottom: 1px solid #E6E6E6;
}

.information-form h4 {
    font-weight: 500;
    font-size: 16px;
    padding-bottom: 20px;
}

.information-form .single-input input,
.information-form .single-input select {
    background-color: var(--whiteColor);
    border-radius: 10px;
    padding: 15px 20px;
    width: 100%;
    display: block;
    margin-bottom: 20px;
    color: #D9D9D9;
    border: 1px solid transparent;
}

.information-form .single-input input:focus,
.information-form .single-input select:focus {
    border-color: var(--primaryColor);
}

.form-checkbox {
    padding-top: 20px;
}

.form-checkbox ul {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    padding-bottom: 20px;
    border-bottom: 1px solid #E6E6E6;
}

.form-checkbox ul li {
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: var(--whiteColor);
    padding: 10px 15px;
    border-radius: 10px;
}

.form-checkbox ul li label {
    font-size: 16px;
    color: var(--blackColor);
}

.input-wp-tow {
    padding-top: 20px;
}

.information-form .form-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 25px;
    gap: 20px;
    flex-wrap: wrap;
}

.information-form .form-footer label {
    color: var(--blackColor);
    font-size: 16px;
}

.information-form .form-footer label a {
    text-decoration: underline;
}

.information-form button {
    padding: 12px 20px;
    border-radius: 10px;
    background-color: var(--blackColor);
    color: var(--whiteColor);
    font-size: 16px;
}

.information-form button:hover {
    background-color: var(--primaryColor);
}

/* chart modal design  */
.credit-cards {
    padding-top: 30px;
    margin-top: 30px;
    border-top: 1px solid #E6E6E6;
}

.credit-cards h4,
.extra-head {
    font-weight: 500;
    font-size: 16px;
    padding-bottom: 20px;
}

.credit-cards .credit-cards-inner {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.credit-cards .single-card {
    background-color: #f3f3f3;
    border-radius: 10px;
    padding: 25px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    position: relative;
    min-width: 260px;
}

.credit-cards .single-card h4 {
    font-weight: 700;
    font-size: 36px;
    padding-bottom: 0;
}

.credit-cards .single-card span {
    font-size: 14px;
    color: var(--blackColor);
    display: block;
}

.credit-cards .single-card .parcentice span {
    position: absolute;
    right: 10px;
    top: 10px;
    padding: 0px 8px;
    background-color: var(--primaryColor);
    color: var(--whiteColor);
    font-size: 14px;
    border-radius: 5px;
    display: inline-block;
    font-weight: 700;
}

.credit-cards .single-card.active {
    background-color: var(--primaryColor);
}

.credit-cards .single-card.active * {
    color: var(--whiteColor) !important;
}

.credit-cards .single-card.active .parcentice span {
    background-color: var(--whiteColor);
    color: var(--primaryColor) !important; 
}


#creditModal .modal-dialog {
	max-width: 1200px;
}

.credit-modal-pr div {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    font-size: 14px;
}

.credit-modal-pr div h3 {
    font-size: 36px;
}
.credit-modal-pr div h3 span {
    font-size: 22px;
}
.credit-cards-toggle {
    display: none;
}

.credit-cards-toggle .single-card {
	padding: 25px 15px;
	min-width: 185px;
    background-color: #fff;
}

.credit-cards-toggle .single-card .parcentice span {

	right: 7px;
	top: 7px;
	padding: 2px 7px;
    line-height: 100%;
}

.modal-content .quantity__plus ,
.modal-content .quantity__minus {
    padding: 0;
}

.modal-content .quantity__minus {
    padding-bottom: 1px;
}

.custo-houston-left {
    position: relative;
}

.custo-houston-left ul li span {
    background: #B2FEFF;
    width: 40px;
    height: 40px;
    opacity: 0.5;
    border-radius: 50%;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    outline: 5px solid #b2feff73;
    cursor: pointer;
}

.custo-houston-left ul li:first-child span {
    left: 64.7%;
    top: 32%;
    
}

.custo-houston-left ul li:nth-child(2) span {
    left: 37.5%;
    top: 63%;  
}

.custo-houston-left ul li:last-child span {
    top: auto;
    left: 65%;
    bottom: 9.8%;
}

.bollet-card {
    position: absolute;
    display: flex;
    gap: 15px;
    align-items: center;
    justify-content: space-between;
    z-index: 0;
    background-color: #fff;
    padding: 10px;
    padding-left: 15px;
    border-radius: 10px;
    transform: scale(0);
    transition: 0.3s;
    opacity: 0;
}

.bollet-card.active {
    transform: scale(1);
    opacity: 1;
}

.bollet-card.card-01 {
    left: 68.7%;
    top: 32%;
}

.bollet-card.card-02 {
    left: 6%;
    top: 63%; 
}

.bollet-card.card-03 {
    top: auto;
    left: 69%;
    bottom: 13.7%;
}

.bollet-card .img {
    height: 95px;
    width: 95px;
    flex: 0 0 95px;
    line-height: 95px;
}

.bollet-card .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.bollet-card .content {
    flex: 1;
}

.bollet-card .content div {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: space-between;
    width: 100%;
    flex: 1;
}

.bollet-card .content small {
    color: #6F6F6F;
    font-size: 12px;
}

.bollet-card .content h5 {
    color: #000;
    font-size: 12px;
    font-weight: 500;
}

[src="images/product-hover.png"] {
    margin-bottom: -1.5px !important;
}

.img-hover-overlay {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.img-hover-overlay img {
    position: relative;
    z-index: 2;
}

/*.img-hover-overlay:after {*/
/*    content: "";*/
/*    display: block;*/
/*    position: absolute;*/
/*    top: 50%;*/
/*    left: 50%;*/
/*    transform: translate(-50%, -50%);*/
/*    height: 384px;*/
/*    width: 384px;*/
/*    background-color: #ececec;*/
/*    border-radius: 50%;*/
/*    z-index: -1;*/
/*    transition: 0.3s;*/
/*}*/

/*.img-hover-overlay:before {*/
/*    content: "";*/
/*    display: block;*/
/*    position: absolute;*/
/*    top: 50%;*/
/*    left: 50%;*/
/*    transform: translate(-50%, -50%);*/
/*    height: 220px;*/
/*    width: 220px;*/
/*    background-color: #fff;*/
/*    border-radius: 50%;*/
/*    z-index: 1;*/
/*}*/

.img-hover-overlay:hover:after {
    /*background-color: var(--primaryColor);*/
}

[src="images/home_product_list/hover-toggle-img.png"] {
    margin-bottom: 44px !important;
    padding: 0px;
}

.swiper .custo-right-img {
	min-height: 450px;
    padding: 0 !important;
}

 .skltbs-panel-group .custo-next svg {
    height: 100%;
    width: 85px;
    line-height: 100%;
    border-radius: 50px;
    margin-right: -30px;
    padding: 2px;
}

.skltbs-panel-group .custo-next svg:hover {
    background-color: #6a6a6a;
}



/*USE CSS for Slider*/
.custo-torino-right-slide {
    padding-left: 30px;
    height: 100%;
}

.vehicle-detail-banner .car-slider-desc {
    max-width: 180px;
    margin: 0 auto;
}

.banner-slider .slider.slider-for {
    max-width: 70%;
    padding-right: 35px;
}

.banner-slider .thumb-wrap {
    max-width: 30%;
    float: left;
}
.banner-slider .thumb-wrap-torino {
    max-width: 30%;
    float: left;
}

.banner-slider .slider.slider-for,
.banner-slider .slider.slider-nav {
    width: 100%;
    float: left;
}

.banner-slider .slider.slider-for-torino,
.banner-slider .slider.slider-nav-torino {
    width: 100%;
    float: left;
}
.slider-for-torino{
    width: min(100%, 449px) !important;   /* setează limita de lățime */
    margin: 0 auto;            /* centrează */
    overflow: hidden;
}
.slider-for-torino .slick-slide > div{
    height: 100%;
    display: flex;                 /* centrează imaginea în slide */
    align-items: center;
    justify-content: center;
}
.banner-slider .slider.slider-nav {
    height: calc(660px - 60px);
    overflow: hidden;
}
.banner-slider .slider.slider-nav-torino {
    height: calc(660px - 60px);
    overflow: hidden;
}

.slider-banner-image {
    height: 660px;
    background: #f3f3f3;
    border-radius: 15px;
    background: url(../images/back_product_details_carusel.png);
    background-repeat: no-repeat;
}

.slider-nav .slick-slide.thumbnail-image .thumbImg{
    max-width: 178px;
    height: 100px;
}

.slider-banner-image img,
.slider-nav .slick-slide.thumbnail-image .thumbImg img {
    object-fit: cover;
    border-radius: 15px;
    height: 100%;
    width: 100%;
}

.slick-arrow {
    width: 100%;
    background-color: transparent;
    border: 0;
    background-position: center;
    background-repeat: no-repeat;
    font-size: 0;
    height: 18px;
    position: absolute;
    left: 0;
    right: 0;
    z-index: 99;
}

/*.thumbImg {*/
/*    height: 180px !important;*/
/*    margin-bottom: 15px;*/
/*    text-align: center;*/
/*    background-color: #f3f3f3;*/
/*    border-radius: 15px;*/
/*}*/

/*.thumbImg img {*/
/*    height: 100%;*/
/*    object-fit: cover;*/
/*    border-radius: 15px;*/
/*    display: block;*/
/*    margin: auto;*/
/*}*/

.custo-torino-right-slide .btn-wrap {
    text-align: center;
    display: inline-flex;
}

.custo-torino-right-slide .btn-wrap button {
    margin-top: 20px;
}

.custo-torino-right-slide .btn-wrap-torino {
    text-align: center;
    display: inline-flex;
}

.custo-torino-right-slide .btn-wrap-torino button {
    margin-top: 20px;
}

.product-buy-button .custo-another-btn {
    border-radius: 35px;
    padding: 11px 40px;
    font-size: 20px;
    font-weight: 500;
}

.top-bar-info {
    background-color: #EF3B7D; /* Roz vibrant */
    color: #fff;
    font-size: 14px;
    padding: 6px 0;
    text-align: center;
    height: 50px;
    align-items: center;
    display: flex;
}
.top-bar-info .container{ width:100%; } /* să preia padding-ul containerului bootstrap */

/*.top-bar-info .top-bar-inner {*/
/*    display: flex;*/
/*    align-items: center;*/
/*    justify-content: center;*/
/*    gap: 8px;*/
/*    flex-wrap: wrap;*/
/*}*/

.top-bar-info .showroom-label {
    font-weight: 500;
    color: #fff;
}

.top-bar-info .showroom-link {
    color: #fff;
    text-decoration: underline;
    font-weight: 500;
}

.top-bar-info .showroom-link:hover {
    text-decoration: none;
}
.top-bar-inner {
    display: grid;
    grid-template-columns:1fr auto 1fr; /* stânga | centru | dreapta */
    align-items: center;
    height: 100%;
}

.tb-center{
    display:flex; align-items:center; gap:8px; justify-self:center; /* centru real */
    text-align:center;
}
.tb-right{
    justify-self:end; display:flex; align-items:center; gap:10px; /* trimite la dreapta */
}

/* link + iconă locație */
.showroom-link{ color:#fff; text-decoration:underline; }
.showroom-link img{ height:18px; width:auto; vertical-align:middle; filter:brightness(0) invert(1); }

/* iconițe rotunde cu fundal alb */
.social-icons a{
    display:inline-flex; align-items:center; justify-content:center;
    width:28px; height:28px; border-radius:50%;
    background:#fff; color:#EF3B7D; font-size:14px;
    transition:transform .15s ease, background .2s, color .2s;
}
.social-icons a:hover{ transform:scale(1.06); background:#ffe6ef;  }

/* mici ajustări responsive (opțional) */
@media (max-width:576px){
    .showroom-label{ display:none; }
    .tb-center{ gap:6px; font-size:12px; width: 85%; padding: 5px }
    .social-icons a{ width:26px; height:26px; font-size:13px; }
}

.lang-switcher{
    position:relative;
    display:inline-block;
    margin-left:12px;
    z-index: 2000;          /* să stea peste header */
}

/* butonul */
.lang-switcher > summary{
    list-style:none;        /* ascunde markerul */
    cursor:pointer;
    /*background:#f4f4f4;*/
    color:#111;
    font-weight:600;
    border-radius:6px;
    padding:4px 10px;
    line-height:1.1;
    display:flex; align-items:center; gap:6px;
    /*border:1px solid #e9e9e9;*/
}
.lang-switcher > summary::-webkit-details-marker{ display:none; }
.lang-switcher > summary:focus-visible{
    outline:2px solid #a3d2ff; outline-offset:2px;
}
.lang-switcher > summary::after{
    content:"\25BE"; /* ▼ */
    font-size:12px;
    transform:translateY(1px);
    transition:transform .2s ease;
}
/* rotește săgeata când are focus sau e deschis */
.lang-switcher:is([open], :focus-within) > summary::after{
    transform:rotate(180deg);
}

/* dropdown-ul */
.lang-switcher .menu{
    position:absolute;
    right:0;                /* lipit de marginea dreaptă a containerului */
    top:calc(100% + 8px);
    background:#fff;
    border:1px solid #e9e9e9;
    border-radius:10px;
    box-shadow:0 8px 20px rgba(0,0,0,.08);
    padding:12px 16px;
    display:flex;           /* pe un singur rând ca în poză */
    gap:24px;
    white-space:nowrap;
    opacity:0;
    visibility:hidden;
    transform:translateY(-4px);
    pointer-events:none;
    transition:opacity .15s ease, transform .15s ease, visibility .15s;
}

/* arată meniul când <details> e deschis ȘI are focus înăuntru */
.lang-switcher[open]:focus-within .menu{
    opacity:1; visibility:visible; transform:translateY(0);
    pointer-events:auto;
}

/* dacă e deschis dar s-a pierdut focusul -> ascunde vizual (click în afară) */
.lang-switcher[open]:not(:focus-within) .menu{
    opacity:0; visibility:hidden; transform:translateY(-4px);
    pointer-events:none;
}

/* link-uri din meniu */
.lang-switcher .menu a{
    color:#111; text-decoration:none; font-weight:600;
}
.lang-switcher .menu a:hover{ text-decoration:underline; }

.banner-slider .slider.slider-for {
    max-width: 70%;
    padding-right: 35px;
}

.banner-slider .slider.slider-for-torino {
    max-width: 70%;
    padding-right: 35px;
}

.banner-slider .thumb-wrap {
    max-width: 30%;
    float: left;
}

.banner-slider .slider.slider-for,
.banner-slider .slider.slider-nav {
    width: 100%;
    float: left;
}

.banner-slider .slider.slider-nav {
    height: calc(660px - 60px);
    overflow: hidden;
}

/*.slider-banner-image {*/
/*    height: 660px;*/
/*    background: #f3f3f3;*/
/*    border-radius: 15px;*/
/*    background: url(../images/custo_turino/turino_bckgr.png);*/
/*}*/

.slider-nav .slick-slide.thumbnail-image .thumbImg{
    max-width: 178px;
    height: 100px;
}

.slider-banner-image img,
.slider-nav .slick-slide.thumbnail-image .thumbImg img {
    object-fit: cover;
    border-radius: 15px;
    height: 100%;
    width: 100%;
}

.slick-arrow {
    width: 100%;
    background-color: transparent;
    border: 0;
    background-position: center;
    background-repeat: no-repeat;
    font-size: 0;
    height: 18px;
    position: absolute;
    left: 0;
    right: 0;
    z-index: 99;
}

.thumbImg {
    height: 140px !important;
    margin-bottom: 15px;
    text-align: center;
    background-color: #f3f3f3;
    border-radius: 15px;
}

.thumbImg img {
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
    display: block;
    margin: auto;
}

.slider-nav-torino .thumbImg
{
    height: 180px !important;
    padding-bottom: 10px;
}

.list-group-item {
    border: none !important;
}

.list-group-item .prod-property {
    font-size: 16px;
    color: #6F6F6F;
    margin-right: 30px;
    display: inline-block;
}
.list-group-item .prod-value {
    font-size: 16px;
    font-weight: 500;
    color: #000;
}

.is-hidden { display: none !important; }

.filter-main-icon-green {
    color: var(--primaryColor);
    font-weight: 400;
}
.no-product-filter {
    text-align: center;
    width: 100%;
}
.no-product-filter img {
    width: 600px;
}
.product-filter-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: flex-start;
}
.product-filter-container .swiper-slide {
    flex: 0 1 calc(25% - 10px);
    box-sizing: border-box;
    padding: 0 10px;
}

#preorder-box .is-invalid { border-color:#dc3545; }
#preorder-box .invalid-feedback { color:#dc3545; font-size:.875rem; margin-top:.25rem; }
#preorder-box .hidden { display:none; }


/*
    Popup Basket
*/
/* Overlay gri deschis */
.order-popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.15);
    display: none; /* ascuns by default */
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

/* Card alb mare */
.order-popup-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 40px 60px;
    max-width: 800px;
    width: 90%;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
    position: relative;
}

/* Buton X sus-dreapta */
.order-popup-close {
    position: absolute;
    top: 16px;
    right: 20px;
    border: none;
    background: transparent;
    font-size: 24px;
    line-height: 1;
    color: #cccccc;
    cursor: pointer;
}
.order-popup-icon-img {
    width: 40px;
    height: 40px;
}
.order-popup-close:hover {
    color: #999999;
}

/* Conținut: icon + text */
.order-popup-content {
    display: flex;
    align-items: center;
    gap: 30px;
}


/* text */
.order-popup-title {
    margin: 0;
    font-size: 20px;
    font-weight: 700;
    color: #111111;
}

.order-popup-desc {
    margin: 8px 0 0;
    font-size: 14px;
    color: #555555;
}


/* Symbol ✓ / ✕ mai centrat */
.order-popup-icon-symbol {
    display: block;
    transform: translateY(-2px);
}

/* Responsiv pe mobil */
@media (max-width: 576px) {
    .order-popup-card {
        padding: 24px 20px;
    }
    .order-popup-content {
        flex-direction: column;
        text-align: center;
    }
}
