/*  GENERAL */

:root {
    --green: #5fea47;
    --teal: #033d4f;
    --red: #f50a0a;
    --CTA-Button: #5fb4fa;
    --text-color1: #1a2534;
    --text-color2: #323c49;
    --text-color3: #6f767f;
    --bs-heading-color: var(--text-color2);
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 400;
    margin-top: 0;
    /* margin-bottom: 0; */
}

body {
    color: var(--text-color3);
}

.iqit-megamenu-container {
    background-color: var(--green);
}

.btn {
    font-weight: bold;
    font-size: 13px;
    border-radius: 6px;
}

.btn.add-to-cart:active,
.btn.add-to-cart:focus {
    box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    background-color: var(--CTA-Button);
    color: black;
}

.btn-text {
    color: black!important;
    font-weight: bold;
    font-size: 14px;
}

/* BACK TO TOP BUTTON */

#back-to-top {
    width: 35px;
    height: 35px;
    border-radius: 35px;
    box-shadow: 0 2px 3px rgba(0, 0, 0, 0.5);
    font-size: 24px;
    line-height: 35px;
}

/* COOKIE BANNER */

#iqitcookielaw {
    position: fixed;
    bottom: 10px;
    left: 10px;
    padding: 15px;
    width: 100%;
    max-width: 250px;
    font-weight: 400;
    font-size: 12px;
    line-height: 1.6;
    border-radius: 4px;
    opacity: 1;
    backdrop-filter: blur(6px);
    box-shadow: 1px 2px 8px 0 rgb(0 0 0 / 35%);
    z-index: 999999999999;
}

#iqitcookielaw p {
    overflow: auto;
    max-height: 55px;
    line-height: 1.6;
}

#iqitcookielaw p.opened {
    overflow: hidden;
    max-height: 100%;
}

#iqitcookielaw p::-webkit-scrollbar {
    width: 4px;
}

#iqitcookielaw p::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.2);
    -webkit-border-radius: 10px;
    border-radius: 10px;
}

#iqitcookielaw p::-webkit-scrollbar-thumb {
    -webkit-border-radius: 10px;
    border-radius: 10px;
    background: #888;
}

#iqitcookielaw a {
    color: white;
    font-weight: bold;
    text-decoration: underline;
}

#iqitcookielaw .btn {
    font-weight: bold;
    border-radius: 10px;
}

#iqitcookielaw .cookie-show-more-less-wrapper {
    display: flex;
    justify-content: end;
}

#iqitcookielaw .show-more-less-button {
    font-weight: bold;
    font-size: 12px;
    color: white;
    background: none;
    outline: none;
    border: none;
    text-decoration: underline;
    margin-bottom: .8rem;
}

#iqitcookielaw .cookie-text > p {
    max-height: 60px;        /* collapsed height */
    transition: max-height .35s ease;
}

#iqitcookielaw .cookie-text > p.expanded {
    max-height: 500px;       /* or none; */
}


@media (max-width:500px) {
    #iqitcookielaw {
        left: 0;
        bottom: 0;
        border-bottom-left-radius: 0;
        border-bottom-right-radius: 0;
        max-width: 100%;
    }
}

/*  HEADER  */

header #desktop_logo .logo {
    max-width: 200px;
}

header #desktop-header-container .col-header-center {
    justify-items: center;
}

header #lenik-meilisearch-search-box #lenik-search-input {
    border: 1px solid #b5b5b5;
    font-size: 16px;
}

header #lenik-meilisearch-search-box .lenik-search-icon {
    /* top: 0; */
    right: 0 !important;
    /* height: 100% !important; */
    /* width: 50px !important; */
    position: relative;
    margin: 2px;
}
#lenik-meilisearch-autocomplete-results select {
    background-image: unset;
}
#lenik-meilisearch-autocomplete-results .lenik-add-to-cart-wrapper {
    margin: 0;
    padding: 10px;
}

#lenik-meilisearch-autocomplete-results .autocomplete-products-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 10px 0;
}

#lenik-meilisearch-autocomplete-results .autocomplete-products-list .autocomplete-product-card {
  display: flex;
  gap: 12px;
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  padding: 10px;
  transition: all 0.2s;
}

#lenik-meilisearch-autocomplete-results .autocomplete-products-list .autocomplete-product-card:hover {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

#lenik-meilisearch-autocomplete-results .autocomplete-products-list .autocomplete-product-card .autocomplete-product-link {
  display: flex;
  gap: 12px;
  width: 100%;
}

#lenik-meilisearch-autocomplete-results .autocomplete-products-list .autocomplete-product-card .autocomplete-product-image {
  width: 80px;
  height: 80px;
  flex-shrink: 0;
  aspect-ratio: 1;
  border-radius: 4px;
}

#lenik-meilisearch-autocomplete-results .autocomplete-products-list .autocomplete-product-card .autocomplete-product-info {
  flex: 1;
  padding: 4px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

#lenik-meilisearch-autocomplete-results .autocomplete-products-list .autocomplete-product-card .autocomplete-product-name {
  -webkit-line-clamp: 1;
}

#lenik-meilisearch-autocomplete-results .autocomplete-results-area {
    width: 100%;
}

@media (max-width: 768px) {
    #lenik-meilisearch-autocomplete-results .autocomplete-right-header {
        gap: 15px !important;
    }
    #lenik-meilisearch-autocomplete-results .autocomplete-sort-dropdown {
        flex-wrap: wrap;
        row-gap: 4px;
    }
    #lenik-meilisearch-autocomplete-results .autocomplete-sort-dropdown::before {
        display: none !important;
    }
}

/* View All Link */
.autocomplete-view-all-link {
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid #e0e0e0;
  text-align: right;
}

#_mobile_meilisearch-container .lenik-meilisearch-autocomplete-results.dropdown-mode {
    top: calc(100% - .5rem) !important;

    max-height: calc(100vh - 200px);
    min-height: unset;
    gap: 0;
    width: calc(100% - 30px);
}
#search-widget-mobile:has(#lenik-meilisearch-autocomplete-results[style*='display: block']) {
    transform: scale(1, 1) !important;
    opacity: 1;
    visibility: visible;
    /* top: 100% !important; */
}
#_mobile_meilisearch-container .autocomplete-mobile-filters-header {
    background: linear-gradient(135deg, var(--lenik-dropdown-accent-color, #2fb5d2) 0%, #1a8ca0 100%) !important;
    padding: 12px 16px;
}
#_mobile_meilisearch-container .autocomplete-mobile-filters-content .autocomplete-filter-list {
    padding: 10px !important;
}
#_mobile_meilisearch-container .autocomplete-mobile-filters-content .autocomplete-filter-item {
    padding: 0 !important;
}
#_mobile_meilisearch-container .autocomplete-mobile-filters-content .autocomplete-filter-title {
    margin-bottom: 5px !important;
}
#_mobile_meilisearch-container .autocomplete-filter-toggle {
    padding: 4px 10px;
}
#_mobile_meilisearch-container .autocomplete-panes-container {
    padding: 10px;
}
body:not(:has(#lenik-meilisearch-search-box)) #mobile-btn-search {
    display: none;
}

#header .lenik-search-wrapper .dropdown-suggestions-section {
    margin-bottom: 10px;
}

header #cbp-hrmenu-tab-1 .fa-grid-2::before {
    content: "\e196";
}

header #mobile-header,
header #mobile-header #mobile-header-sticky {
    background: white;
}

#mobile-header .m-nav-btn {
    color: var(--teal);
}

body#index>#main-page-content>#wrapper {
    padding-top: 0;
}


#mobile-header .m-nav-btn>i {
    font-size: 21px
}
#mobile-header .m-nav-btn .fa-bars {
    font-size: 25px
}



#mobile-header .mobile-menu__column-title {
    font-size: 14px;
    color: black!important;
}

.mobile-menu__column-categories:not(:last-child) {
    margin-bottom: 10px;
}

#_mobile_iqitmegamenu-mobile.dropdown-menu.show {
    width: 100%!important;
    background-color: rgba(0, 0, 0, 0.5)!important;
}

#_mobile_iqitmegamenu-mobile #iqitmegamenu-mobile {
    width: 75%;
}

#_mobile_iqitmegamenu-mobile .mobile-menu__column-categories:has(.mobile-menu__category-image) {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row-reverse;
    gap: 20px;
}
#_mobile_iqitmegamenu-mobile .mobile-menu__column-categories:has(.mobile-menu__category-image):not(:last-child) {
    border-bottom: 1px solid;
}
#_mobile_iqitmegamenu-mobile .mobile-menu__column-categories .mobile-menu__category-image {
    width: 80px;
}
#_mobile_iqitmegamenu-mobile .mobile-menu__column-categories:has(.mobile-menu__category-image) .mobile-menu__column-title {
    flex-grow: 1;
    width: calc(100% - 100px);
}
#_mobile_iqitmegamenu-mobile .mobile-menu__column-categories:has(.mobile-menu__category-image) > .mobile-menu__links-list {
    width: 100%;
}
#_mobile_iqitmegamenu-mobile .mobile-menu__footer {
    font-weight: bold;
    color: #007bff;
}

.ps-shoppingcart .cart-products-count-btn {
    left: -10px;
    top: -10px;
    right: auto;
    min-width: 17px;
    height: 17px;
}

#blockcart-content .cart-products .block-cart-product-quantity {
    height: auto;
}

#blockcart-content .cart-totals {
    font-size: 1.125rem;
    font-weight: 600;
    color: #e84141;
}

#header:not(:has(.sticky-desktop-wrapper[style*=height])) {
    box-shadow: none;
}
#header i.icon {
    width: auto;
}
#header i.icon:before {
    -webkit-text-stroke: #033d4f;
    -webkit-text-stroke-width: 1.5px;
    color: white;
    font-size: 21px;
}
#header a:has(> i.icon):hover i.icon:before {
    -webkit-text-stroke-width: 0;
    color: inherit;
}
#header .header-btn-w {
    padding: 0;
}
#header .header-buttons-container {
    gap: 15px;
}

/*  INDEX/HOME  */

.swiper-button.elementor-swiper-button {
    border-radius: 50%;
    box-shadow: 0 2px 7px -2px rgb(0 0 0 / 30%);
    text-shadow: 0 0 12px rgba(0, 0, 0, 0.1882352941);
    padding: 0;
    width: 40px;
    height: 40px;
}

body#index .homepage-banner .swiper-pagination-bullet,
body#index .homepage-brand-carousel .swiper-pagination-bullet {
    border: 1px solid #e84141;
    width: 12px;
    height: 12px;
}

body#index .homepage-banner .swiper-pagination-bullet:not(.swiper-pagination-bullet-active),
body#index .homepage-brand-carousel .swiper-pagination-bullet:not(.swiper-pagination-bullet-active) {
    background: white;
    opacity: 1;
}

.swiper-button-next:after, .swiper-button-prev:after {
    font-weight: 300;
    font-size: 20px;
}

.swiper-button:not(.swiper-button-disabled):hover {
    background-color: var(--teal)!important;
    color: white!important;
}

.home-custom-reassurance-wrapper > .elementor-container > .elementor-row {
    flex-wrap: nowrap;
    overflow: auto;
    gap: 15px;

    -ms-overflow-style: none;
    scrollbar-width: none;
}

.home-custom-reassurance {
    display: flex;
    align-items: center;
    justify-content: center;
    gap:15px;
}

.home-custom-reassurance img {
    min-width: 45px;
}

.home-custom-reassurance strong {
    text-transform: uppercase;
    color: var(--text-color2);
}

.home-custom-reassurance span {
    white-space: nowrap;
}

.home-custom-reassurance:hover {
    text-decoration: underline;
}
@media (max-width: 767px) {
    .home-custom-reassurance {
        gap: 8px;
    }
    .home-custom-reassurance-wrapper > .elementor-container > .elementor-row {
        gap: 18px;
    }
}

.elementor-widget-wrap:has(.home-category-card) {
    display: flex;
    flex-direction: column;
}
.home-category-card {
    margin: 15px;
    min-width: 300px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    flex-grow: 1;
    transition: transform .2s;
}
.home-category-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
}

/* .home-category-card .elementor-row {
    padding-block: 20px;
} */

.home-category-card .elementor-row > .elementor-column:first-child {
    background: #f9f9f9;
}

.home-category-card .elementor-widget-wrap:has(.elementor-links) {
    display: flex;
    /* align-items: center; */
}

.home-category-card .elementor-links .elementor-block-title {
    margin-bottom: 20px;
}
.home-category-card .elementor-links:has(.subtitle) .elementor-block-title {
    margin-bottom: 10px;
}
.home-category-card .elementor-links .subtitle {
    color: #666;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 15px;
    cursor: pointer;
}
.home-category-card .elementor-links {
    padding: 5px;
}

.home-category-card .block-links ul > li a:hover {
    text-decoration: underline;
}

@media (max-width: 767px) {
    .elementor-element.elementor-element-3nh6xts {
        margin-bottom: 0 !important;
    }
}

@media (min-width: 480px) {
    .home-category-card .elementor-links .block-links .elementor-block-title {
        cursor: pointer;
    }
    .home-category-card .elementor-links .block-links .elementor-block-title::after {
        content: "▼";
        display: inline-block; 
        transition: all 0.3s ease;
        font-size: 12px;
        position: relative;
        top: -1px;
        margin-left: 5px;
    }
    .home-category-card .elementor-links .block-links.opened .elementor-block-title::after {
        transition: all 0.3s ease;
        transform: rotate(180deg);
    }
    .home-category-card .elementor-links .block-links .block-content {
        max-height: 500px; /* must be larger than content height */
        overflow: hidden;
        opacity: 1;
        transition: max-height 0.35s ease, opacity 0.25s ease;
    }
    /* When opened */
    .home-category-card .elementor-links .block-links.opened .block-content {
        max-height: 0;
        opacity: 0;
    }
    .home-category-card .elementor-row {
        align-items: start;
    }
}

@media (max-width: 479px) {
    .home-category-card .elementor-row {
        /* flex-direction: column; */
        flex-direction: row;
        /* align-items: center; */
        flex-wrap: nowrap;
        padding-block: 0; 
    }
    /* .home-category-card .elementor-links {
        padding: 12px 20px 0;
    } */
    .home-category-card .elementor-row > .elementor-column:first-child {
        flex: 0 0 30%;
        display: flex;
        align-items: baseline;
        padding: 15px 10px;
    }
    .home-category-card .elementor-row > .elementor-column:last-child {
        flex: 1 0 0;
        padding: 15px 10px;
    }
    .home-category-card .elementor-links .subtitle {
        font-size: 12px;
        font-weight: 600;
    }
    .home-category-card .elementor-links .elementor-block-title {
        cursor: pointer;
        display: inline-block;
        margin-bottom: 10px;
    }
    .home-category-card .elementor-links .block-links .elementor-block-title::after {
        content: "▼";
        display: inline-block; 
        transition: all 0.3s ease;
        font-size: 12px;
        position: relative;
        top: -1px;
        margin-left: 5px;
    }
    .home-category-card .elementor-links .block-links.opened .elementor-block-title::after {
        transition: all 0.3s ease;
        transform: rotate(180deg);
    }
    .home-category-card .elementor-links .block-links .block-content {
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        transition: max-height 0.35s ease, opacity 0.25s ease;
    }
    /* When opened */
    .home-category-card .elementor-links .block-links.opened .block-content {
        max-height: 500px; /* must be larger than content height */
        opacity: 1;
    }
}

/* NU AI CONT? MODAL */

#iqitpopup .iqitpopup-content {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

#iqitpopup .iqitpopup-content .fidelizare-si-cont {
    background-color: #5d5e5e;
    color: white;
    padding: 10px 20px;
    font-weight: bold;
}

#iqitpopup .iqitpopup-content .decline-cont {
    color: #033d4f;
    font-weight: bold;
    font-size: 13px;
}

#iqitpopup .iqitpopup-content .decline-cont.cross::before {
    content: "";
}

/*  BREADCRUMBS */

nav.breadcrumb ol li > span {
    color: var(--text-color2);
}

/*  HOMEPAGE  */

body#index .elementor-widget-image-box .elementor-image-box-title {
    margin-bottom: 25px;
    font-weight: 600;
    font-size: 1.5rem;
}
.brands-title .elementor-heading-title {
    font-weight: 400;
    color: #1a2534;
}
@media (max-width: 767px) {
    body#index .elementor-widget-image-box .elementor-image-box-title {
        font-size: 1.85rem;
    }
    .brands-title .elementor-heading-title {
        font-size: 1.85rem;
        line-height: initial;
    }
}
.elementor-row .elementor-element .elementor-element-populated:has(.homepage-bottom-card) .elementor-widget-wrap {
    background: #f5f5f5;
    color: var(--bs-body-color);
    padding: 20px;
    border-radius: 12px;
    transition: background 0.3s, color 0.3s;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    font-size: 14px;
    font-weight: 500;
    color: #6f767f;
}
body#index .elementor-section:has(.elementor-widget-image-box) {
    max-width: 90%;
    margin: auto;
}

.elementor-row .elementor-element .elementor-element-populated:has(.homepage-bottom-card):hover .elementor-widget-wrap {
    background: #5FEA47;
    /* color: white; */
    color: var(--bs-body-color);
}

/* .elementor-row .elementor-element .elementor-element-populated:has(.homepage-bottom-card) .elementor-widget-wrap a {
    color: var(--bs-body-color);
} */
.elementor-row .elementor-element .elementor-element-populated:has(.homepage-bottom-card) .elementor-widget-wrap a:hover {
    text-decoration: underline;
}
.elementor-row .elementor-element .elementor-element-populated:has(.homepage-bottom-card):hover .elementor-widget-wrap a {
    /* color: white; */
    color: var(--bs-body-color);
}

.elementor-brands a {
    display: flex;
    min-height: 90px;
    align-items: center;
}

.homepage-testimonial .swiper-wrapper {
    align-items: center;
}

/*  PRODUCT MINIATURES  */
#js-product-list .pagination {
    margin-top: 1rem;
}
#products #facets-loader-icon {
    text-align: center;
}
#products.-facets-loading {
    position: relative;
}
#products.-facets-loading #facets-loader-icon {
    inset: 0;
    background: rgb(230 230 230 / 30%);
}
#products .active_filters .active-filter-title {
    color: #033d4f;
    font-weight: 500;
}

.product-miniature.product-miniature-layout-1 {
    /* background: linear-gradient(180deg, #f2f2f2, transparent); */
    background: linear-gradient(180deg, #f2f2f2 0%, transparent 50%);
    border-radius: 8px;
    border: 1px solid #eee;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 2px 12px;
}

.product-miniature.product-miniature-layout-1 .product-flag.discount {
    font-size: 1.56rem;
    border-radius: 4px;
}
.product-miniature.product-miniature-layout-1 .product-flag {
    font-size: 1.5rem;
}

.product-miniature.product-miniature-layout-1 .product-functional-buttons-bottom {
    transform: translate(0, 0);
    opacity: 1;
    margin: 0;
    top: 0;
}

.product-miniature.product-miniature-layout-1 .product-functional-buttons a {
    box-shadow: 0 4px 12px -3px #00000015;
}

.product-miniature.product-miniature-layout-1 .product-functional-buttons a:hover {
    opacity: 1;
}

.product-miniature.product-miniature-layout-1 .product-functional-buttons-bottom .btn-iqitwishlist-add {
    font-size: 19px;
    color: #e84141;
    margin: 0;
}

.product-miniature.product-miniature-layout-1 .product-functional-buttons-bottom .btn-iqitwishlist-add .fa {
    font-size: 19px;
}

.product-miniature.product-miniature-layout-1 .product-functional-buttons-bottom .btn-iqitwishlist-add:hover .fa {
    font-weight: 700;
}

.product-miniature.product-miniature-layout-1 .product-functional-buttons-bottom .btn-iqitcompare-add,
.product-miniature.product-miniature-layout-1 .product-functional-buttons-bottom .js-quick-view-iqit {
    display: none;
}

.product-miniature.product-miniature-layout-1 .quantity-and-add-to-cart__wrapper {
    margin: auto 0 0 0;
}

.product-miniature.product-miniature-layout-1 .quantity-and-add-to-cart__wrapper .product-add-cart {
    margin: 0;
}

.product-miniature.product-miniature-layout-1 .miniature-product-availability {
    margin-bottom: 10px;
}

.product-miniature.product-miniature-layout-1 .miniature-product-availability.available {
    font-size: 1.25rem;
    color: #11a717;
}

.product-miniature.product-miniature-layout-1 .miniature-product-availability.on-order {
    color: #22a7f0;
    font-size: 14px;
    font-weight: 400;
    text-transform: uppercase;
}

.product-miniature.product-miniature-layout-1 .miniature-product-availability.unavailable {
    color: var(--red);
    font-size: 14px;
    font-weight: 400;
}

.product-miniature.product-miniature-layout-1 .product-title a {
    font-weight: bold;
    color: black;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-miniature.product-miniature-layout-1 .product-brand a {
    color: #00008B;
    font-size: 14px;
    font-weight: bold;
}

.product-miniature.product-miniature-layout-1 .js-quick-view-iqit {
    color: #fff!important;
    text-align: center;
    background: #000;
    text-transform: uppercase;
    font-size: 15px;
    padding: 5px 15px;
    position: absolute;
    top: 50%;
    left: 50%;
    width: auto;
    margin-left: -50px;
    z-index: 1;
    font-weight: bold;
    text-decoration: none!important;
    display: none;
}

.product-miniature.product-miniature-layout-1 .js-quick-view-iqit:hover {
    text-decoration: underline;
}

.product-miniature.product-miniature-layout-1:hover .js-quick-view-iqit {
    display: block;
}
.product-miniature.product-miniature-layout-1 .regular-price {
    font-size: 1rem;
}
/* .cart-item .custom-unit-price, */
.product-miniature.product-miniature-layout-1 .custom-unit-price {
    color: #1a2534;
    font-size: 15px;
}
.cart-item .custom-unit-price {
    font-size: small;
}
.cart-item .unit-price .value {
    font-weight: 600;
    color: #494949;
    display: block;
}
.cart-item .discount {
    padding: 1px 6px;
}
.product-miniature.product-miniature-layout-1 .product-thumbnail {
    background-color: white;
}
.product-miniature.product-miniature-layout-1 .tax-shipping-delivery-label {
    font-size: small;
    font-weight: 500 !important;
    color: #033d4f;
    margin-bottom: 5px;
}
@media (max-width: 479px) {
    .product-miniature.product-miniature-layout-1 .btn-product-list {
        padding: 5px;
    }
    .product-miniature.product-miniature-layout-1 .miniature-product-availability.available {
        font-size: 14px;
    }
}



/* Wishlist */
#module-iqitwishlist-view #iqitwishlist-user-products .input-group-add-cart {
    gap: 10px;
    margin-block: 10px;
}

/*  CATEGORY    */

body#category .category-description,
body#category .category-description .show-more-less__buttons,
body#category .category-description .show-more-less__buttons button {
    margin: 0;
}

body#category .category-description .show-more-less__buttons button {
    padding: 0;
    color: #00008B;
    font-size: 13px;
    font-weight: 700;
}

body#category .category-description {
    margin-bottom: 5px;
}

body#category .category-description h2 {
    font-size: 1.43rem;
}

body#category .category-description p {
    font-size: 13px;
}

#products #js-product-list-top {
    margin-top: 0;
    border-top: 0;
}

 #products .products-sort-order {
    display: flex;
    align-items: center;
}

 #products .products-sort-order span {
    margin-right: 0.5rem;
}

 #products .products-sort-order .select-title {
    border-radius: 4px;
}

 #products .products-sort-order .select-title span,
 #products .products-sort-order .select-title a {
    color: #333;
    font-size: 13px;
}

 #products .number-and-sort {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

 #products .number-and-sort span {
    font-size: 15px;
}

#products .product-count {
    font-size: 15px;
    display: block;
    text-align: center;
    line-height: 1.5;
    color: var(--bs-body-color);
}

#products #js-active-search-filters:has(>*) {
    border-bottom: 2px solid #eaeaea;
    padding: 5px;
    margin-bottom: 10px;
}

#search_filter_toggler {
    background: #5fb4fa;
    border: 1px solid #5fb4fa;
    color: #23425c;
    border-radius: 6px;
    font-weight: bold;
    font-size: 14px;
}
:is(.js-search-filters-clear-all, .js-search-link.btn-sm) i {
    margin-right: .5em !important;
}


/* QUICK VIEW */

#quickview-modal-product-content .product_header_container .page-title a {
    color: #1a2534!important;
    font-size: 1.7857142857rem;
    font-style: normal;
    font-weight: normal;
    text-transform: none;
    text-decoration: none;
}

#quickview-modal-product-content #js-quickview-next-btn,
#quickview-modal-product-content #js-quickview-prev-btn {
    display: none;
}

/* ADD TO CART MODAL */ 
#blockcart-modal-wrap {
    color: var(--bs-body-color);
}
#blockcart-content .cart-products .bootstrap-touchspin {
    width: 90px;
}
/* #blockcart-modal .cart-content-btn {

} */



/* LEFT COLUMN */

#left-column .block-links .category-top-menu a,
#left-column #facets_search_wrapper #search_filters a {
    color:#033d4f !important;
    font-size: 14px;
    margin-bottom: 3px;
}

#left-column .block-title {
    font-size: 16px;
    color: #333333;
    text-transform: uppercase;
}

/* PRODUCT LISTING PAGES */

@media (max-width: 575.98px) {
    #js-product-list-top .facated-toggler,
    #js-product-list-top .number-and-sort,
    #js-product-list-top .number-and-sort .products-sort-order.dropdown {
        flex-grow: 1;
    }

    #js-product-list-top .number-and-sort .products-sort-order.dropdown .select-title.expand-more.form-control {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 6px 15px;
    }
}

/*  PRODUCT PAGE    */

@media (min-width: 768px) {
    body#product #main-product-wrapper.product-container .product-info-row {
        border-radius: 4px;
        border: 1px solid #eee;
        padding: 15px 15px 0;
        margin-bottom: 0;
    }
}

body#product #main-product-wrapper .product-description {
    /* color: black; */
    font-size: 15px;
    line-height: 24px;
}

body#product .product-flags .product-flag {
    border-radius: 4px;
}

body#product .product-cover:hover .product-flags {
    opacity: 1;
    visibility: visible;
}

body#product .product-manufacturer img {
    max-width: 90px;
}

body#product #main-product-wrapper .product_header_container {
    border: 0;
    padding: 0;
}

body#product .product-availability {
    margin-bottom: 10px;
}

body#product .product-availability.available {
    font-size: 1.25rem;
    color: #11a717;
}
body#product .product-availability.last-items {
    font-size: 16px;
    color: #ea9900;
}

body#product .product-availability.on-order {
    color: #22a7f0;
    font-size: 15px;
    font-weight: 400;
    text-transform: uppercase;
}

body#product .product-availability.unavailable {
    color: var(--red);
    font-size: 15px;
    font-weight: 400;
}

body#product .col-product-info .has-discount .product-discount .regular-price {
    padding-left: 0;
    font-size: 16px;
}

body#product .col-product-info .tax-shipping-delivery-label,
body#product .col-product-info .discount-value {
    color: #e84141;
    font-size: 21px;
    font-weight: bold;
    margin: 0;
}
body#product .col-product-info .tax-shipping-delivery-label {
    font-size: small;
    font-weight: 500;
    color: #033d4f;
}

body#product .product-quantity .add-to-cart:disabled {
    opacity: 0.75;
}

body#product .product-information .add-to-cart {
    font-size: 16px;
}
body#product .product-information .add-to-cart:hover {
    background: #b2ddff;
    border-color: #b2ddff;
}

body#product .qty .btn-touchspin:hover {
    color: #fff;
    background: var(--text-color3);
}

body#product .product-assistance {
    color: #333;
    font-size: 15px;
    line-height: 1.5;
}

body#product .product-assistance a {
    color: #033d4f;
}

body#product .product-assistance .product-reference {
    line-height: 1.5;
}

body#product .product-additional-info {
    gap: 10px 15px;
    margin: 0;
}
body#product .product-additional-info > [class*="col"] {
    text-align: center;
    width: auto;
    flex: 0 0 auto;
    padding: 0;
}
body#product .product-additional-info .btn {
    font-size: 14px;
}
body#product .product-actions button.btn.btn-iqitwishlist-add {
    background-color: white;
    font-weight: bold;
    font-size: 14px;
    padding: 0;
}
body#product .product-actions :is(.btn, a):hover {
    text-decoration: underline;
}
@media (max-width: 767px) {
        body#product .product-additional-info {
        gap: 10px 5px;
    }
}

body#product .product-discounts,
body#category .product-discounts {
    background: #f0fdf4;
    padding: 10px;
    border-radius: 8px;
}
body#product .product-discounts:empty,
body#category .product-discounts:empty {
    display: none;
}
body#product .product-discounts .table-product-discounts,
body#category .product-discounts .table-product-discounts {
    border-collapse: separate;
    border-spacing: 0px 3px;
}
body#product .product-discounts thead,
body#category .product-discounts thead {
    --bs-table-bg: transparent;
    font-weight: 500;
    --bs-table-color-state: #033d4f;
}
body#product .product-discounts thead th,
body#category .product-discounts thead th {
    font-weight: inherit;
    padding: .25rem;
    --bs-border-width: 0;
}
body#product .product-discounts td,
body#category .product-discounts td {
    background: white;
    border: 1px solid #bbf7d0;
    border-radius: 6px;
    align-content: center;
}
body#product .product-discounts tr.active td,
body#category .product-discounts tr.active td {
    background: #dcfce7;
    border-color: #16a34a;
    border-width: 3px;
}
body#product .product-discounts td:first-child:not(:last-child),
body#category .product-discounts td:first-child:not(:last-child) {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    border-right: 0;
}
body#product .product-discounts td:last-child:not(:first-child),
body#category .product-discounts td:last-child:not(:first-child) {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    border-left: 0;
}
body#product .product-discounts td:not(:first-child):not(:last-child),
body#category .product-discounts td:not(:first-child):not(:last-child) {
    border-radius: 0;
    border-left: 0;
    border-right: 0;
}
body#product .product-discounts td.unit-price-amount,
body#category .product-discounts td.unit-price-amount {
    color: #e84141;
}
body#product .product-discounts .unit-bundle-price-amount,
body#category .product-discounts .unit-bundle-price-amount {
    font-weight: 800;
    font-size: 1.1rem;
}

body#product .custom-reassurance {
    display: flex;
    margin-block: 25px;
    gap: 25px;
    overflow: auto;
    scrollbar-width: none;
    white-space: nowrap;
}

body#product .custom-reassurance .reassurance-box {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-color3);
    font-size: 12px;
    text-align: center;
}

body#product .custom-reassurance .reassurance-box strong {
    color: var(--text-color2);
    font-size: 13px;
    text-transform: uppercase;
}

body#product #productdaas-accordion .card .title a {
    font-size: 26px;
    color: black;
    padding: 15px 0;
}
@media (max-width: 767px) {
    body#product #productdaas-accordion .card .title a {
        font-size: 1.5rem;
        padding: 8px 0;
    }
}

body#product #productdaas-accordion h1 {
    color: #2E8B57;
    font-size: 22px;
}

body#product #productdaas-accordion .product-info > * {
    margin-bottom: 15px;
}

body#product #productdaas-accordion .product-info tr:nth-of-type(odd),
body#product #productdaas-accordion .product-features dt:nth-of-type(odd),
body#product #productdaas-accordion .product-features dd:nth-of-type(odd) {
    background-color: #f2f2f2;
}

body#product #productdaas-accordion .product-info tr th,
body#product #productdaas-accordion .product-info tr td,
body#product #productdaas-accordion .product-features dd,
body#product #productdaas-accordion .product-features dt {
    border: 1px solid #ddd;
    padding: 10px;
    margin: 0;
}

body#product #productdaas-accordion .product-info a {
    color: #00008B;
    font-weight: bold;
}

body#product [class*="-products"] .section-title {
    font-weight: 400;
    font-size: 26px;
    color: var(--text-color1);
    border: 0;
    margin-bottom: 0;
    margin-top: 40px;
}

#productdaas-accordion-description .product-description a:not(.btn) {
    color: #3388eb;
}
#productdaas-accordion-description .product-description a:not(.btn):hover {
    text-decoration: underline;
}
/* --------------------------------------------------- */
/* clasele pentru descriere produs mare */
#productdaas-accordion-description .product-description .product-specs-sectiontitle {
    font-size: 1.5rem;
    color: #2E8B57;
    margin-top: 2rem;
    margin-bottom: 1rem;
}
#productdaas-accordion-description .product-description .product-container {
    display: flex;
    flex-wrap: wrap;
}
#productdaas-accordion-description .product-description .product-info {
    flex: 1 1 100%;
}
#productdaas-accordion-description .product-description .product-info table,
#productdaas-accordion-description .product-description .product-dimensions table,
#productdaas-accordion-description .product-description .product-package table,
#productdaas-accordion-description .product-description .product-characteristics {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}
#productdaas-accordion-description .product-description .product-info th,
#productdaas-accordion-description .product-description .product-info td,
#productdaas-accordion-description .product-description .product-dimensions th,
#productdaas-accordion-description .product-description .product-dimensions td,
#productdaas-accordion-description .product-description .product-package th,
#productdaas-accordion-description .product-description .product-package td,
#productdaas-accordion-description .product-description .product-characteristics th,
#productdaas-accordion-description .product-description .product-characteristics td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: left;
}
#productdaas-accordion-description .product-description .product-info th,
#productdaas-accordion-description .product-description .product-dimensions th,
#productdaas-accordion-description .product-description .product-package th,
#productdaas-accordion-description .product-description .product-characteristics th {
    background-color: #f2f2f2;
}
#productdaas-accordion-description .product-description .product-links p {
    margin: 5px 0;
}
#productdaas-accordion-description .product-description .product-links a {
    color: #00008B;
    text-decoration: none;
    font-weight: bold;
    display: inline-flex;
    align-items: center;
}
#productdaas-accordion-description .product-description .product-links a:hover {
    text-decoration: underline;
}
#productdaas-accordion-description .product-description .img-editor {
    max-width: 568px;
    height: 568px;
    border-radius: 4px;
}
/* --------------------------------------------------- */

[id^="product-description-short-"] .container {
    padding: 15px;
    border: 2px solid #d9534f;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
[id^="product-description-short-"] .replacement {
    font-weight: bold;
    color: #0275d8 !important;
    text-decoration: none;
}
[id^="product-description-short-"] .replacement:hover {
    text-decoration: underline;
}
[id^="product-description-short-"] :is(.h1, h1) {
    font-size: 1.6rem;
    font-weight: 500;
}
[id^="product-description-short-"] img {
    margin-bottom: 8px;
}

/* --------------------------------------------------- */
/* sectia depreciate */
[id^="product-description-short-"] .deprecated {
    background: white;
    padding: 25px 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    max-width: 90%;
    margin: auto;
    border: 2px solid #d9534f;
}

/* informatii text */
[id^="product-description-short-"] .text-info {
    color: #d9534f;
}

/* sectia lichidare stoc */
[id^="product-description-short-"] .lichidat {
    background: white;
    padding: 25px 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    max-width: 90%;
    margin: auto;
    border: 2px solid #ffb300;
}
[id^="product-description-short-"] .text-info-lichidare {
    color: #ffb300;
}

/* sectia nota produs */
[id^="product-description-short-"] .nota {
    background: white;
    padding: 25px 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    max-width: 90%;
    margin: auto;
    border: 2px solid #5FEA47;
}

/* sectia avertisment */
[id^="product-description-short-"] .avert {
    background: white;
    padding: 25px 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    max-width: 90%;
    margin: auto;
    border: 2px solid #d9534f;
}
/* --------------------------------------------------- */

.ap-alternatives-section .ap-carousel-wrap .ap-carousel-btn {
    position: absolute;
    z-index: 3;
}
.ap-alternatives-section .ap-carousel-wrap .ap-carousel-next {
    right: 0;
}
.ap-alternatives-section .ap-carousel-wrap .ap-carousel-viewport {
    padding: 10px 5px;
}
@media (max-width: 767px) {
    .ap-alternatives-section .ap-carousel-wrap .ap-carousel-viewport {
        padding: 10px 10px 25px;
    }
}
.ap-alternatives-section .product-category-name {
    margin: 10px 0;
}

@media (min-width: 768px) {
    body#product .col-product-image {
        padding-right: 20px;
    }

    body#product .col-product-info {
        padding-left: 20px;
    }
}

.js-product-prices .product-price {
    line-height: initial;
}
.js-product-prices .product-price:not(:has(.bundle-price)) {
    font-size: 1.85rem;
}
.js-product-prices .product-price .custom-unit-price {
    color: #1a2534;
    font-size: 17px;
}
.js-product-prices .product-price .bundle-price  {
    font-size: 1.85rem;
}

body#product .product-actions {
    margin-top: 35px;
}

body#product .bootstrap-touchspin .input-group-btn-vertical>.btn {
    padding: 12px;
}

body#product .bootstrap-touchspin .input-group-btn-vertical i {
    font-size: 13px;
}

body#product .product-description table {
    max-width: 100%;
}

body#product .pack-product-container .pack-product-quantity {
    font-weight: 600;
    color: var(--bs-body-color);
}
body#product .pack-product-container .pack-product-price {
    color: #e84141;
}
#product-details .label {
    margin-right: 3px;
    line-height: 1.75;
}
#product-details .label:after {
    content: ":";
}

body#product .product-prices {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}
body#product .product-prices .product-prices-content {
    background: rgb(240, 247, 240);
    border-left: 4px solid rgb(40, 167, 69);
    padding: 12px 16px;
    border-radius: 6px;
    /* margin: 10px 0px 15px; */
    
    /* flex: 1 0 35%; */
    flex: 1 0 auto;
}
body#product .product-prices .product-availability-content {
    /* flex: 2 0 60%; */
    flex: 2 0 auto;
    display: flex;
    flex-direction: column;
    align-items: baseline;
    gap: 5px;
}
body#product .product-prices .product-availability-content > * {
    margin-bottom: 0;
}
.material-icons {
    overflow: hidden;
    flex-shrink: 0;
}


#btn_tbiro {
    max-width: min(100%, 400px);
}

/* ORDER HISTORY */
@media (min-width: 576px) {
    body#order-detail #order-history .table.hidden-xs-down {
        display: table !important;
    }
}


/* CMS PAGE */
#main .page-content.page-cms {
    line-height: 1.4;
}
hr {
    opacity: 1;
    border-top: 1px solid #eee;
}
#main .page-content.page-cms hr {
    margin: 16px 0;
}
#main .page-content.page-cms img {
    margin-bottom: 20px;
    height: auto !important;
}
#main .page-content.page-cms table {
    border: none;
}
#main .page-content.page-cms table tr:nth-child(2n) {
    background-color: #f2f2f2;
}
#main .page-content.page-cms table tr td {
    padding: 10px;
    text-align: center;
}
#main .page-content.page-cms :is(ol, ul) {
    list-style: initial;
    padding-left: 20px;
    margin: 10px 0;
}
#main .page-content.page-cms h2 {
    margin-bottom: 15px;
}
#main .elementor-testimonial-wrapper {
    text-align: left;
}
/* #main .page-content.page-cms .elementor-testimonial-content:before { */
#main .elementor-testimonial-content:before {
    content: '';
    display: block;
    width: 28px;
    height: 22px;
    margin-bottom: 15px;
    background-image: url(../img/quot.png);
}
#main .elementor-testimonial-content {
    color: #6f767f;
    font-size: 14px;
    font-weight: bold;
    font-style: italic;
    line-height: 1.5em;
}
#main .elementor-testimonial-name {
    color: #323c49;
    font-size: 18px;
}

/* CONTACT PAGE */
body#contact .contact-page-info :is(.contact-rich, .contact-rich + hr) {
    display: none;
}
body#contact ul:is(.company-info, .contact-info, .suport-clienti) li {
    margin-bottom: 3px;
    line-height: 1.5;
    display: flex;
    gap: .5rem;
}
body#contact ul:is(.company-info, .contact-info, .suport-clienti) strong {
    min-width: 125px;
    display: inline-block;
    --bs-body-color-rgb: 50, 60, 73;
}


/* CART PAGE */
#promo-code > form > .input-group .discount-input-wrapper > .btn {
    background-color: #e84141;
    color: white;
}

#promo-code > form > .input-group .discount-input-wrapper > .btn span:active {
    background-color: transparent;
}

#promo-code > form > .input-group .discount-input-wrapper > .btn:hover {
    background: #5fb4fa;
    color: #000000;
}

#promo-code > form > .input-group .discount-input-wrapper > .btn:active {
    background: #5fb4fa;
    color: #000000;
    -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
}

.cart-items .product-line-info a,
#cart-summary-product-list .media-body a {
    font-weight: 600;
    color: #323c49 !important;
}
.cart-items .product-line-info a:hover,
#cart-summary-product-list .media-body a:hover {
    color: #000 !important;
}
#cart-summary-product-list .media-body a .product-name {
    color: inherit;
}
.cart-grid-right .cart-detailed-totals .cart-detailed-subtotals,
.cart-grid-right .cart-summary-subtotals-container {
    font-size: 18px;
    line-height: initial;
}
@media (max-width: 767px) {
    .cart-items .product-line-grid {
        font-size: 1.15rem;
    }
}

/*  FOOTER  */

#footer .ps-emailsubscription-block .newsletter-input-group {
    border-radius: 22px;
}
#footer .ps-emailsubscription-block .text-muted {
    font-size: .9rem;
}
#footer .ps-emailsubscription-block .psgdpr_consent_message .btn {
    font-size: inherit;
}

#footer .ps-emailsubscription-block .newsletter-input-group .btn-subscribe {
    background-color: #033d4f;
    border-radius: 22px;
    color: white;
}

#footer .ps-emailsubscription-block .newsletter-input-group .btn-subscribe:hover {
    opacity: 0.9;
    color: white;
}

#footer .block-newsletter > h5 {
    font-weight: 600;
    font-size: 30px;
}

#footer .block-newsletter > .newsletter-small-text,
#footer .block-title {
    font-size: 17px;
}


@media (max-width: 767px) {
    #footer .block-toggle > .block-title span {
        display: flex;
        justify-content: space-between;
    }
    #footer .block-toggle > .block-content {
        padding-left: 10px;
        font-size: 14px;
        line-height: 20px;
    }
    #footer .block-toggle > .block-content,
    #footer .block-toggle > .block-content a {
        color: #6f767f;
    }
    #footer .block-toggle > .block-content a:hover {
        color: #000000;
    }
    #footer .block-toggle > .block-content :is(ul, .contact-rich),
    #footer .block-toggle > .block-content > p:last-child {
        margin-bottom: 15px;
    }
    #footer-copyrights .copyright-txt {
        order: 1;
        margin-block: 1rem !important;
        margin-bottom: .5rem !important;
        width: 100%;
    }
    #footer-copyrights :has(> .copyright-txt) > *:not(.copyright-txt) {
        order: 2;
        flex-grow: 1;
    }
}

#footer-container-main > .container {
    display: flex;
    flex-wrap: wrap;
}
#footer-container-main > .container > .row:first-child {
    min-width: 100%;
}
#footer-container-main > .container > .row:has(.block-social-links) {
    flex-grow: 1;
    align-items: center;
}
#footer-container-main .show-gdpr-modal {
    font-size: 1rem;
    border-radius: 12px;
    margin-inline: 15px;
}
#footer-container-main .show-gdpr-modal:hover {
    text-decoration: underline;
}


/* ==========================================
   Mobile pinch-to-zoom fix for product page
   ========================================== */

@media (max-width: 768px) {
    /* Product page: allow pinch gesture on image area */
    .product-cover,
    .product-cover .swiper-container,
    .product-cover .swiper,
    .product-cover .swiper-wrapper,
    .product-cover .swiper-slide,
    .images-container,
    .images-container .swiper-container,
    .images-container .swiper {
        touch-action: manipulation !important;
    }

    /* Product modal: make image fill viewport properly */
    #product-modal .modal-dialog {
        max-width: 100vw !important;
        margin: 0 !important;
        height: 100% !important;
    }
    #product-modal .modal-content {
        height: 100% !important;
        border-radius: 0 !important;
    }
    #product-modal .modal-body {
        display: flex !important;
        flex-direction: column !important;
        overflow: hidden !important;
        padding: 0 !important;
        flex: 1 !important;
    }
    #product-modal .modal-header {
        flex-shrink: 0;
        padding: 8px 15px;
    }
    #product-modal .modal-header .modal-title {
        font-size: 1rem;
    }

    /* EasyZoom container: let image fill available space */
    #product-modal .easyzoom {
        flex: 1 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        overflow: hidden !important;
        min-height: 0 !important;
    }
    #product-modal .easyzoom > a {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        width: 100% !important;
        height: 100% !important;
    }
    #product-modal .easyzoom img {
        max-width: 100% !important;
        max-height: 100% !important;
        width: auto !important;
        height: auto !important;
        object-fit: contain !important;
    }

    /* Hide EasyZoom flyout on mobile - use native pinch instead */
    #product-modal .easyzoom-flyout {
        display: none !important;
    }

    /* Allow pinch-to-zoom in modal */
    #product-modal .easyzoom,
    #product-modal .easyzoom > a,
    #product-modal .easyzoom img,
    #product-modal .modal-body {
        touch-action: manipulation !important;
    }

    /* Thumbnails: compact at bottom */
    #product-modal #thumbnails {
        flex-shrink: 0;
        padding: 5px;
    }

    /* Change "Tap to zoom" to "Pinch to zoom" on mobile */
    #product-modal .modal-title {
        font-size: 0 !important;
    }
    #product-modal .modal-title::after {
        content: 'Pinch to zoom';
        font-size: 1rem;
    }
}


/* ========================
   STICKY PRODUCT IMAGE
   ======================== */
@media (min-width: 768px) {
    .product-info-row {
        align-items: flex-start;
    }
    .col-product-image {
        position: sticky;
        top: 120px;
        z-index: 10;
    }
    /* Reassurance bar inside right column - horizontal layout */
    .custom-reassurance-inline {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        padding: 15px 0;
        margin: 15px 0;
        border-top: 1px solid #eee;
        border-bottom: 1px solid #eee;
    }
    body#product .custom-reassurance-inline {
        white-space: normal;
        gap: 8px;
    }
    body#product .custom-reassurance-inline .reassurance-box {
        flex: 0 0 calc(33.333% - 6px);
        min-width: 0;
        white-space: normal;
    }
}
body#product .product-prices .current-price-value {
    color: #e65100;
}
/* Mobile: no sticky */
@media (max-width: 767px) {
    .col-product-image {
        position: relative;
    }

    /* Keep description images responsive inside right column */

    /* Description images: reset inline dimensions, keep responsive */
    body#product .tab-content img,

    /* Override inline width/height on description images */
    body#product .tab-content img[width],

    /* Override inline width/height on description images */
    #col-product-info img[style*="width"] {
        /* width: 100% !important; */
        height: auto !important;
        max-width: 100% !important;
    }
    /* Highlight price section on product page */
    /* body#product .product-prices {
        background: #f0f7f0;
        border-left: 4px solid #28a745;
        padding: 12px 16px;
        border-radius: 6px;
        margin: 10px 0 15px;
    } */
    /* body#product .product-prices .current-price-value {
        font-size: 19px;
        font-weight: 700;
    } */
    /* body#product .product-prices .tax-shipping-delivery-label { */
        /* font-size: 14px; */
        /* font-weight: 600; */
        /* color: #28a745; */
    /* } */
    /* body#product .product-prices .regular-price {
        font-size: 16px;
    } */
}

#lenik-category-table-container #category-products-table th, 
#lenik-category-table-container #category-products-table td {
    white-space: initial;
}
#lenik-category-table-container .page-item {
    margin: 0 2px;
}
#lenik-category-table-container .page-item .page-link {
    text-align: center;
}
#lenik-category-table-container .page-item.active .page-link {
    color: #fff !important;
}
#lenik-category-table-container .desktop-card-price-gross {
    color: #e84141;
}
#lenik-category-table-container .estimate-delivery-badge {
    font-size: 12px;
}

@media (min-width: 768px) {
    #lenik-category-table-container {
        display: flex;
        flex-direction: column;
    }
    #lenik-category-table-container .table-controls-bar {
        order: 1;
    }
    #lenik-category-table-container .table-controls-bar .controls-right {
        display: none !important;
    }
    #lenik-category-table-container .mobile-card-view {
        display: flex !important;
        gap: 10px;
        justify-content: space-between;
        flex-wrap: wrap;
        position: sticky;
        z-index: 11;
        padding: 10px;
        top: 0;
        background: white;
        margin-bottom: 10px;
        border: 1px solid #dee2e6;
        border-radius: 8px;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    }
    body:has(#desktop-header.stuck) #lenik-category-table-container .mobile-card-view {
        top: 125px;
    }
    body:has(#_desktop_meilisearch-content-container.stuck) #lenik-category-table-container .mobile-card-view {
        top: 95px;
    }
    #lenik-category-table-container .mobile-card-view > *:not(.mobile-filter-grid):not(.mobile-search-bar) {
        display: none !important;
    }
    #lenik-category-table-container .mobile-card-view .mobile-filter-grid {
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
        flex-grow: 1;
        margin: 0;
    }
    #lenik-category-table-container .mobile-card-view .mobile-card-reset-btn {
        width: 44px;
        padding: 8px;
    }
    #lenik-category-table-container .mobile-card-view .mobile-filter-item {
        display: flex;
    }
    #lenik-category-table-container .mobile-card-view .mobile-filter-item button {
        height: 100%;
    }
    #lenik-category-table-container #category-products-table thead .filter-row {
        display: none;
    }
}
@media (min-width: 768px) and (max-width: 991px) {
    body:has(#desktop-header.stuck) #lenik-category-table-container .mobile-card-view {
        top: 0;
    }
}


@media (max-width: 575px) {
    .category-header-content {
        flex-direction: column;
        align-items: center;
    }
}


/* my account */
.my-account-page-content-wrapper .my-account-side-links .material-icons {
    font-size: 18px;
    width: 17px;
    vertical-align: text-top;
}
.my-account-page-content-wrapper .my-account-side-links>li {
    display: block;
    width: 100%;
    max-width: 100%;
    flex: 0;
    border-bottom: 1px solid rgba(160, 160, 160, .25);
    padding: .6rem;
}
.my-account-page-content-wrapper .my-account-side-links .ets_social_login .icon_svg {
    margin: 0;
    padding: 0 !important;
}
.my-account-page-content-wrapper .my-account-side-links .ets_social_login .icon_svg svg {
    width: 1em;
    height: 1em;
}