﻿/*
Theme Name: VESA
Theme URI: Sorin Uptrust
Author: Sorin Uptrust
Author URI: https://www.uptrust.eu
Version: 1.0
Text Domain: www.uptrust.eu
*/

:root {
    --red: #556e8c;
    --red-hover: #3c5873;
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

a{
    text-decoration: none;
    color: black;
}

html {
    font-size: 62.5%;
}

body {
    font-size: 1.6rem;
    font-family: "Poppins", sans-serif;
    background: #fdfdfd;
    color: black;
}

h1 {
    font-size: 4.7rem;
    margin: 0;
    padding: 0;
}

h2 {
    font-size: 3.2rem;
    margin: 0;
    padding: 0;
}

h3 {
    font-size: 3rem;
    margin: 0;
    padding: 0;
}

h4 {
    font-size: 2.5rem;
    margin: 0;
    padding: 0;
}

h5 {
    font-size: 1.8rem;
    margin: 0;
    padding: 0;
}

p {
    font-size: 1.8rem;
    line-height: 26px;
    margin: 0;
    padding: 0;
}

dl, ol, ul {
    margin-bottom: 0;
}

ul {
    font-size: 1.8rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 1200px;
    padding: 0 15px;
}

img{
    width: 100%;
    height: auto;
}

/* Dividers */

.mt-70{
   margin-top: 70px;
}

.mb-70{
    margin-bottom: 70px;
}

/* Grids */

.grid-2{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.main_button {
    padding: 20px 40px;
    background-color: #FFFFFF;
    font-size: 1.8rem;
    font-weight: 500;
    border-width: 0;
    border-radius: 0;
    color: #000000;
    transition: 0.3s;
}

.main_button:hover {
    background-color: #E9E9E9 !important;
    color: #000000;
}

.dark_button{
    padding: 18px 42px;
    background-color: black;
    color: white;
}

/* Top bar */

/* Header */

.main-logo {
    display: flex;
    align-items: center;
    gap: 40px;
}

.main-logo .header_logo {
    max-width: 200px;
    height: 75px;
}

.navbar__menu {
    position: sticky;
    top: 0;
    z-index: 9997;
    background: #FFF;
    margin-bottom: 50px;
}

.navbar__menu .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
}

.navbar__menu__items {
    max-width: 1520px;
    margin: 0 auto;
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 40px;
}

.navbar__menu__items ul {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    list-style: none;
    margin-bottom: 0;
}

.navbar__menu__items ul li a {
    font-size: 1.6rem;
    color: black;
    font-weight: 500;
    text-decoration: none;
    text-transform: uppercase;
}

.navbar__menu__items ul li {
    position: relative;
}

.navbar__menu__items ul li > a::after {
    content: "";
    position: absolute;
    bottom: 12px;
    left: 0;
    height: 2px;
    width: 100%;
    background-color: black;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.navbar__menu__items ul li > a:hover {
    color: #ffffff;
}

.navbar__menu__items ul li > a:hover::after {
    transform: scaleX(1);
}

.menu-item-has-children > .sub-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #ffffff;
    padding: 15px;
    z-index: 1000;
    min-width: 260px;
}

.menu-item-has-children:hover > .sub-menu {
    display: block;
}

.sub-menu li a {
    color: black;
    font-size: 1.4rem;
    padding: 10px 15px;
    transition: background-color 0.3s, color 0.3s;
}

.sub-menu li a:hover {
    color: #D67D12;
    background-color: rgba(255, 255, 255, 0.4);
}

.navbar__menu__items ul > li > a {
    position: relative;
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #000000;
    font-size: 1.6rem;
    font-weight: 500;
    line-height: 24px;
    padding: 15px 0;
    transition: color 0.3s;
}

.navbar__menu__items ul li ul li.current_page_item > a::before,
.navbar__menu__items ul li ul li.current-menu-item > a::before,
.navbar__menu__items ul li ul li.current-menu-ancestor > a::before {
    content: none !important;
    border-top: none !important;
    top: 0;
}

.navbar__menu__items ul > li.current_page_item > a {
    color: black;
}

.navbar__menu__items ul li a:hover {
    color: black;
}

.navbar__menu__items ul li ul {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
    z-index: 1000;
    min-width: 150px;
}

.navbar__menu__items ul li ul li {
    display: block;
}

.navbar__menu__items ul li ul li a {
    padding: 10px 20px;
    font-size: 1.6rem;
    color: #666;
    transition: background-color 0.3s, color 0.3s;
}

.navbar__menu__items ul li ul li a::after{
   display: none;
}

.navbar__menu__items ul li ul li a:hover {
    background: #ececec;
    color: black;
}

.navbar__menu__items ul li:hover > ul {
    display: block;
}

.choose-city svg {
    margin-right: 5px;
}

.choose-city span {
    display: inline;
    font-weight: 500;
    line-height: 24px;
    border-bottom: 1px solid #B5B5B5;
}

.delivery_info {
    width: 30%;
    display: flex;
    gap: 20px;
}

.phone_number a {
    color: black;
    font-weight: 500;
    display: inline;
    line-height: 24px;
}

.shopping-cart .count__cart {
    position: absolute;
    top: -6px;
    right: 0;
    flex-shrink: 0;
    background-color: #f57c20;
    color: white;
    font-size: 12px;
    font-weight: bold;
    padding: 2px 6px;
    border-radius: 50%;
    min-width: 20px;
    text-align: center;
}

.shopping-cart img{
    margin-right: 10px;
}

/* End Header */

/* Hero Section */

.hero_section .hero_slider{
    position: relative;
}

.hero_section .hero_slider img{
    width: 100%;
    height: auto;
}

.hero_slider .hero_content{
    position: absolute;
    top: 50%;
    left: 26%;
    transform: translate(-50%, -50%);
    color: white;
    padding: 20px;
}

.hero_slider .hero_content h2{
    font-size: 4.7rem;
    margin-bottom: 30px;
}

.hero_slider .hero_content p{
    margin-bottom: 30px;
}

.new_products_left p{
    margin-block: 30px;
}

.new_products_right{
    padding-left: 40px;
}

.explore_section h1{
    margin-bottom: 30px;
}

.explore_section .explore_item h3{
    margin-top: 20px;
}

.explore_section .explore_item p{
    font-size: 1.6rem;
    margin-block: 20px;
}

.explore_section a{
    display: flex;
    align-items: center;
    gap: 10px;
    color: #214AF1;
    font-size: 1.6rem;
    font-weight: 500;
    transition: 0.3s;
}

.explore_section svg{
    height: 1em;
    width: auto;
}

.explore_section svg path{
    fill: #214AF1;
}

.explore_section a:hover{
    text-decoration: underline;
}

.single_product h1{
    font-size: 3.6rem;
}

/* Filter Woocommerce */

.vesa-woo-filters-wrapper {
    position: relative;
    display: flex;
    background-color: #fff;
    border-top: 1px solid #eaeaea;
    border-bottom: 1px solid #eaeaea;
    margin-bottom: 64px;
    min-height: 64px;
    z-index:1;
    justify-content: center;
}

.vesa-woo-filters-holder {
    position: relative;
    display: flex;
}

.filter-mobile-window,
.vesa-woo-filters {
    position: relative;
    z-index: 1000;
    display: flex;
    width: 100%;
    max-width: 1200px;
    min-height: 64px;
    justify-content: flex-start;
}
.filter-mobile-window .mega-indicator,
.vesa-woo-filters .mega-indicator {
    position: relative;
}
.filter-mobile-window .mega-indicator:after,
.vesa-woo-filters .mega-indicator:after {
    margin-left: 12px;
    font-size: 12px;
    display: flex;
    content: "ď¸";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    transition: all 0.3s ease;
}
.filter-mobile-window .vesa-filters-group,
.vesa-woo-filters .vesa-filters-group {
    display: flex;
    justify-content: flex-start;
}
.filter-mobile-window .vesa-filter-type,
.vesa-woo-filters .vesa-filter-type {
    position: relative;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    min-width: 184px;
    cursor: pointer;
}
.filter-mobile-window .vesa-filter-type.sizes-filter,
.vesa-woo-filters .vesa-filter-type.sizes-filter {
    min-width: 234px;
}
.filter-mobile-window .vesa-filter-type.material-filter,
.vesa-woo-filters .vesa-filter-type.material-filter {
    min-width: 210px;
}
.filter-mobile-window .vesa-filter-type.price-filter,
.vesa-woo-filters .vesa-filter-type.price-filter {
    min-width: 174px;
}
.filter-mobile-window .vesa-filter-type.recommended-filter,
.vesa-woo-filters .vesa-filter-type.recommended-filter {
    justify-content: flex-end;
}
.filter-mobile-window .vesa-filter-type .filter-header,
.vesa-woo-filters .vesa-filter-type .filter-header {
    display: flex;
    align-items: center;
}
.filter-mobile-window .vesa-filter-type .filter-header .label,
.vesa-woo-filters .vesa-filter-type .filter-header .label {
    font-size: 14px;
    line-height: 26px;
}
.filter-mobile-window .vesa-filter-type:not(.mobile):hover .filter-header .mega-indicator:after,
.vesa-woo-filters .vesa-filter-type:not(.mobile):hover .filter-header .mega-indicator:after {
    transform: rotate(180deg);
}
.filter-mobile-window .vesa-filter-type.mobile:hover .filter-header .mega-indicator:after,
.vesa-woo-filters .vesa-filter-type.mobile:hover .filter-header .mega-indicator:after {
    transform: rotate(-90deg);
    margin-left: 18px;
}
.filter-mobile-window .vesa-filter-type .filter-options,
.vesa-woo-filters .vesa-filter-type .filter-options {
    display: none;
    position: absolute;
    top: 65px;
    left: 0px;
    padding: 36px;
    background-color: #ffffff;
    box-shadow: 0px 11px 30px 1px rgba(0, 0, 0, 0.1);
    cursor: default;
}
.filter-mobile-window .vesa-filter-type .filter-options.categories,
.vesa-woo-filters .vesa-filter-type .filter-options.categories {
    min-width: 400px;
}
.filter-mobile-window .vesa-filter-type .filter-options.recommended,
.vesa-woo-filters .vesa-filter-type .filter-options.recommended {
    min-width: 240px;
}
.filter-mobile-window .vesa-filter-type .filter-options.sizes,
.vesa-woo-filters .vesa-filter-type .filter-options.sizes {
    min-width: 350px;
}
.filter-mobile-window .vesa-filter-type .filter-options.material,
.vesa-woo-filters .vesa-filter-type .filter-options.material {
    min-width: 370px;
}
.filter-mobile-window .vesa-filter-type .filter-options.prices,
.vesa-woo-filters .vesa-filter-type .filter-options.prices {
    min-width: 360px;
}
.filter-mobile-window .vesa-filter-type .filter-options .filter,
.vesa-woo-filters .vesa-filter-type .filter-options .filter {
    padding: 8px 4px;
    cursor: pointer;
    transition: all 0.3s;
}
.filter-mobile-window .vesa-filter-type .filter-options .filter:hover,
.vesa-woo-filters .vesa-filter-type .filter-options .filter:hover {
    color: #0a5beb;
}
.filter-mobile-window .vesa-filter-type .filter-options .box-select-wrapper,
.vesa-woo-filters .vesa-filter-type .filter-options .box-select-wrapper {
    display: flex;
    flex-wrap: wrap;
    /*margin-bottom: 40px;*/
}
.filter-mobile-window .vesa-filter-type .filter-options .box-select-wrapper .box-attr-term,
.vesa-woo-filters .vesa-filter-type .filter-options .box-select-wrapper .box-attr-term {
    position: relative;
    justify-content: center;
    min-width: 43px;
    font-size: 14px;
    display: flex;
    margin: 0 12px 12px 0;
    padding: 6px 12px;
    border: 1px solid #eaeaea;
    transition: all 0.3s;
    cursor: pointer;
}
.filter-mobile-window .vesa-filter-type .filter-options .dropdown-filter-option:hover, .filter-mobile-window .vesa-filter-type .filter-options .dropdown-filter-option.selected,
.vesa-woo-filters .vesa-filter-type .filter-options .dropdown-filter-option:hover,
.vesa-woo-filters .vesa-filter-type .filter-options .dropdown-filter-option.selected {
    color: #0a5beb;
    border-color: #0a5beb;
}
.filter-mobile-window .vesa-filter-type .filter-options .prices-range-slider.dropdown-filter-option,
.vesa-woo-filters .vesa-filter-type .filter-options .prices-range-slider.dropdown-filter-option {
    border-color: #ffffff;
}
.filter-mobile-window .vesa-filter-type .filter-options .prices-range-slider.dropdown-filter-option.selected,
.vesa-woo-filters .vesa-filter-type .filter-options .prices-range-slider.dropdown-filter-option.selected {
    border-color: #0a5beb;
}
.filter-mobile-window .vesa-filter-type .filter-options.prices .box-attr-term,
.vesa-woo-filters .vesa-filter-type .filter-options.prices .box-attr-term {
    min-width: 120px;
    justify-content: center;
}
.filter-mobile-window .vesa-filter-type .filter-options .sizes-select,
.filter-mobile-window .vesa-filter-type .filter-options .price-range-select,
.vesa-woo-filters .vesa-filter-type .filter-options .sizes-select,
.vesa-woo-filters .vesa-filter-type .filter-options .price-range-select {
    position: relative;
    display: flex;
    cursor: pointer;
    color: #0a5beb;
    font-size: 18px;
    font-weight: 500;
    line-height: 30px;
}
.filter-mobile-window .vesa-filter-type .filter-options .sizes-select .mega-indicator:after,
.filter-mobile-window .vesa-filter-type .filter-options .price-range-select .mega-indicator:after,
.vesa-woo-filters .vesa-filter-type .filter-options .sizes-select .mega-indicator:after,
.vesa-woo-filters .vesa-filter-type .filter-options .price-range-select .mega-indicator:after {
    margin-left: 6px;
    transform: rotate(-90deg);
}
.filter-mobile-window .vesa-filter-type .filter-options.recommended,
.vesa-woo-filters .vesa-filter-type .filter-options.recommended {
    left: auto;
    right: 0px;
}
.filter-mobile-window .vesa-filter-type .filter-options.recommended .filter,
.vesa-woo-filters .vesa-filter-type .filter-options.recommended .filter {
    text-align: right;
}
.filter-mobile-window .vesa-filter-type.filter-reset,
.vesa-woo-filters .vesa-filter-type.filter-reset {
    display: none;
}
.filter-mobile-window .vesa-filter-type.filter-reset.active,
.vesa-woo-filters .vesa-filter-type.filter-reset.active {
    display: flex;
}
@media all and (max-width: 990px) {
    .filter-mobile-window .vesa-filter-type.filter-reset.active,
    .vesa-woo-filters .vesa-filter-type.filter-reset.active {
        display: none;
    }
}
.filter-mobile-window .vesa-filter-type.mobile,
.vesa-woo-filters .vesa-filter-type.mobile {
    display: none;
}
@media all and (max-width: 990px) {
    .filter-mobile-window .vesa-filter-type.mobile,
    .vesa-woo-filters .vesa-filter-type.mobile {
        display: flex;
    }
}
.filter-mobile-window .vesa-filters-group > :first-child,
.vesa-woo-filters .vesa-filters-group > :first-child {
    border-top: 1px solid #eaeaea;
    border-bottom: 1px solid #eaeaea;
}
/*.filter-mobile-window .vesa-filters-group > :not(:first-child),
.vesa-woo-filters .vesa-filters-group > :not(:first-child) {
  border-bottom: 1px solid #eaeaea;
}*/
.filter-mobile-window .vesa-filters-group > *,
.vesa-woo-filters .vesa-filters-group > * {
    padding: 16px 0px;
}
.filter-mobile-window .vesa-filters-group .group-header,
.vesa-woo-filters .vesa-filters-group .group-header {
    display: none;
    align-items: center;
    justify-content: space-between;
}
.filter-mobile-window .vesa-filters-group .group-header .label,
.vesa-woo-filters .vesa-filters-group .group-header .label {
    font-size: 28px;
    font-weight: 500;
    line-height: 38px;
}
.filter-mobile-window .vesa-filters-group .group-header .close-indicator,
.vesa-woo-filters .vesa-filters-group .group-header .close-indicator {
    position: relative;
    display: flex;
    width: 20px;
    height: 20px;
    background-image: url("../../../understrap/icons/close-icon.svg");
    background-repeat: no-repeat;
    background-position: center;
    transition: all 0.3s;
}
.filter-mobile-window .vesa-filters-group .group-header .close-indicator:hover,
.vesa-woo-filters .vesa-filters-group .group-header .close-indicator:hover {
    transform: rotate(180deg);
}
@media all and (min-width: 991px) {
    .filter-mobile-window .vesa-filters-group .group-filters-mobile,
    .vesa-woo-filters .vesa-filters-group .group-filters-mobile {
        display: none;
    }
}
.filter-mobile-window .vesa-filters-group .group-filters-mobile.empty,
.vesa-woo-filters .vesa-filters-group .group-filters-mobile.empty {
    display: none;
}
.filter-mobile-window .vesa-filters-group .group-filters-mobile .box-select-wrapper,
.vesa-woo-filters .vesa-filters-group .group-filters-mobile .box-select-wrapper {
    display: flex;
    flex-wrap: wrap;
}
.filter-mobile-window .vesa-filters-group .group-filters-mobile .box-select-wrapper .box-attr-term,
.vesa-woo-filters .vesa-filters-group .group-filters-mobile .box-select-wrapper .box-attr-term {
    position: relative;
    justify-content: center;
    align-items: center;
    min-width: 43px;
    font-size: 14px;
    display: flex;
    margin: 0 12px 12px 0;
    padding: 6px 12px;
    border: 1px solid #eaeaea;
    transition: all 0.3s;
    cursor: pointer;
}
.filter-mobile-window .vesa-filters-group .group-filters-mobile .box-select-wrapper.empty,
.vesa-woo-filters .vesa-filters-group .group-filters-mobile .box-select-wrapper.empty {
    display: none;
}
.filter-mobile-window .vesa-filters-group .group-filters-mobile .remove-filter-term,
.vesa-woo-filters .vesa-filters-group .group-filters-mobile .remove-filter-term {
    position: relative;
    padding-right: 20px;
}
.filter-mobile-window .vesa-filters-group .group-filters-mobile .remove-filter-term:hover, .filter-mobile-window .vesa-filters-group .group-filters-mobile .remove-filter-term.selected,
.vesa-woo-filters .vesa-filters-group .group-filters-mobile .remove-filter-term:hover,
.vesa-woo-filters .vesa-filters-group .group-filters-mobile .remove-filter-term.selected {
    color: #0a5beb;
    border-color: #0a5beb;
}
.filter-mobile-window .vesa-filters-group .group-filters-mobile .remove-filter-term.all,
.vesa-woo-filters .vesa-filters-group .group-filters-mobile .remove-filter-term.all {
    border: none;
    color: #9f0c0c;
    font-weight: 500;
}
.filter-mobile-window .vesa-filters-group .group-filters-mobile .remove-filter-term .icon-remove,
.vesa-woo-filters .vesa-filters-group .group-filters-mobile .remove-filter-term .icon-remove {
    position: relative;
    margin-left: 8px;
    display: flex;
    width: 10px;
    height: 10px;
    background-image: url("../../../understrap/icons/close-icon.svg");
    background-repeat: no-repeat;
    background-position: center;
    transition: all 0.3s;
}
.filter-mobile-window .vesa-filters-group .group-filters-mobile .remove-filter-term .icon-remove:hover,
.vesa-woo-filters .vesa-filters-group .group-filters-mobile .remove-filter-term .icon-remove:hover {
    transform: rotate(180deg);
}
.filter-mobile-window .vesa-filters-group .apply-filters,
.vesa-woo-filters .vesa-filters-group .apply-filters {
    display: flex;
    color: #0a5beb;
    font-size: 18px;
    font-weight: 500;
    align-items: center;
    cursor: pointer;
}
.filter-mobile-window .vesa-filters-group .apply-filters .mega-indicator:after,
.vesa-woo-filters .vesa-filters-group .apply-filters .mega-indicator:after {
    margin-left: 6px;
    transform: rotate(-90deg);
}
.filter-mobile-window .vesa-filters-group .filters-actions .close-indicator,
.vesa-woo-filters .vesa-filters-group .filters-actions .close-indicator {
    cursor: pointer;
}
.filter-mobile-window .vesa-filters-group .filters-actions[data-active-filters=false] .apply-filters,
.vesa-woo-filters .vesa-filters-group .filters-actions[data-active-filters=false] .apply-filters {
    display: none;
}
.filter-mobile-window .vesa-filters-group .filters-actions[data-active-filters=true] .close-indicator,
.vesa-woo-filters .vesa-filters-group .filters-actions[data-active-filters=true] .close-indicator {
    display: none;
}
@media all and (max-width: 990px) {
    .filter-mobile-window .vesa-filters-group,
    .vesa-woo-filters .vesa-filters-group {
        display: none;
    }
    .filter-mobile-window .vesa-filters-group .filter-header,
    .vesa-woo-filters .vesa-filters-group .filter-header {
        justify-content: space-between;
        width: 100%;
    }
    .filter-mobile-window .vesa-filters-group .filter-header .label,
    .vesa-woo-filters .vesa-filters-group .filter-header .label {
        line-height: 34px;
        font-size: 24px;
        font-weight: 500;
        transition: all 0.3s;
    }
    .filter-mobile-window .vesa-filters-group.active,
    .vesa-woo-filters .vesa-filters-group.active {
        top: -1px;
        position: absolute;
        display: flex;
        flex-direction: column;
        background-color: #fff;
        width: calc(100% + 90px);
        z-index: 2;
        margin-left: -40px;
    }
    .filter-mobile-window .vesa-filters-group .group-header,
    .vesa-woo-filters .vesa-filters-group .group-header {
        display: flex;
    }
    .filter-mobile-window .vesa-filters-group .vesa-filter-type:not(.mobile),
    .vesa-woo-filters .vesa-filters-group .vesa-filter-type:not(.mobile) {
        flex-direction: column;
        align-items: flex-start;
    }
    .filter-mobile-window .vesa-filters-group .vesa-filter-type:not(.mobile) .filter-options,
    .vesa-woo-filters .vesa-filters-group .vesa-filter-type:not(.mobile) .filter-options {
        position: relative;
        top: 0;
        left: 0;
        padding: 18px 0px 18px 0px;
        background-color: #fff;
        box-shadow: none;
    }
    .filter-mobile-window .vesa-filters-group .vesa-filter-type:not(.mobile) .filter-options .box-select-wrapper,
    .vesa-woo-filters .vesa-filters-group .vesa-filter-type:not(.mobile) .filter-options .box-select-wrapper {
        width: 100%;
    }
    .filter-mobile-window .vesa-filters-group .vesa-filter-type:not(.mobile).active .filter-options,
    .vesa-woo-filters .vesa-filters-group .vesa-filter-type:not(.mobile).active .filter-options {
        display: flex;
    }
    .filter-mobile-window .vesa-filters-group .vesa-filter-type:not(.mobile):hover .filter-header .mega-indicator:after,
    .vesa-woo-filters .vesa-filters-group .vesa-filter-type:not(.mobile):hover .filter-header .mega-indicator:after {
        color: #0a5beb;
        transform: rotate(0deg);
    }
    .filter-mobile-window .vesa-filters-group .vesa-filter-type:not(.mobile):hover .filter-header .label,
    .vesa-woo-filters .vesa-filters-group .vesa-filter-type:not(.mobile):hover .filter-header .label {
        color: #0a5beb;
    }
}
.filter-mobile-window .prices-range-slider,
.vesa-woo-filters .prices-range-slider {
    margin-bottom: 16px;
    margin-top: 12px;
}
.filter-mobile-window .slider-wrapper,
.vesa-woo-filters .slider-wrapper {
    margin-bottom: 24px;
}
.filter-mobile-window .slider-wrapper .irs-min,
.filter-mobile-window .slider-wrapper .irs-max,
.filter-mobile-window .slider-wrapper .irs-from,
.filter-mobile-window .slider-wrapper .irs-to,
.vesa-woo-filters .slider-wrapper .irs-min,
.vesa-woo-filters .slider-wrapper .irs-max,
.vesa-woo-filters .slider-wrapper .irs-from,
.vesa-woo-filters .slider-wrapper .irs-to {
    display: none;
}
.filter-mobile-window .slider-wrapper .irs-handle.from,
.filter-mobile-window .slider-wrapper .irs-handle.to,
.vesa-woo-filters .slider-wrapper .irs-handle.from,
.vesa-woo-filters .slider-wrapper .irs-handle.to {
    top: 13px;
    width: 12px;
    height: 12px;
    border: none;
    box-shadow: 0 0 0 1px #0a5beb;
    background-color: #0a5beb;
    transition: box-shadow 0.3s;
}
.filter-mobile-window .slider-wrapper .irs-handle.from:hover,
.filter-mobile-window .slider-wrapper .irs-handle.to:hover,
.vesa-woo-filters .slider-wrapper .irs-handle.from:hover,
.vesa-woo-filters .slider-wrapper .irs-handle.to:hover {
    box-shadow: 0 0 0 3px #0a5beb;
}
.filter-mobile-window .slider-wrapper .irs-line,
.filter-mobile-window .slider-wrapper .irs-bar,
.vesa-woo-filters .slider-wrapper .irs-line,
.vesa-woo-filters .slider-wrapper .irs-bar {
    top: 18px;
    height: 2px;
}
.filter-mobile-window .slider-wrapper .extra-controls,
.vesa-woo-filters .slider-wrapper .extra-controls {
    display: flex;
    justify-content: space-between;
}
.filter-mobile-window .slider-wrapper .extra-controls > *,
.vesa-woo-filters .slider-wrapper .extra-controls > * {
    border: 1px solid #eaeaea;
    text-align: center;
    width: 120px;
}
.filter-mobile-window .vesa-ajax-progress,
.vesa-woo-filters .vesa-ajax-progress {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: white;
    z-index: 3;
}
.filter-mobile-window .vesa-ajax-progress .v-ajax-loader,
.vesa-woo-filters .vesa-ajax-progress .v-ajax-loader {
    width: 20px;
    height: 20px;
    border: 1px solid rgba(104, 86, 51, 0.3);
    border-top: 3px solid #214af1;
    border-radius: 100%;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    animation: spin 1s infinite linear;
}
@keyframes v-ajax-loader {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.filter-sticky-navigation {
    position: fixed;
    top: 76px;
    display: flex;
    width: 100%;
    justify-content: center;
    background-color: #fff;
    z-index: 1110;
}
.filter-sticky-navigation.active-sticky {
    border-top: 1px solid #eaeaea;
    border-bottom: 1px solid #eaeaea;
}
.filter-sticky-navigation > :first-child {
    padding: 0 15px;
    max-width: 1200px;
}

.isMobileSize .filter-sticky-navigation {
    border: none;
}

.filter-mobile-window {
    height: 100vh;
}

.logged-in .filter-sticky-navigation {
    top: 108px;
}

.filter-mobile-window {
    position: fixed;
    display: flex;
    width: 100%;
    top: 0;
    left: -100%;
    z-index: 9999999;
    background-color: #fff;
    overflow-y: auto;
    transition: all 0.3s;
}
.filter-mobile-window .vesa-filters-group {
    width: 100%;
    display: block;
}
.filter-mobile-window .vesa-filters-group > * {
    padding-left: 20px;
    padding-right: 20px;
}
.filter-mobile-window.active {
    left: 0%;
}
.filter-mobile-window .mega-indicator::after {
    font-size: 18px;
}
.filter-mobile-window .vesa-filters-group .vesa-filter-type.active .filter-header .mega-indicator:after,
.filter-mobile-window .vesa-filters-group .vesa-filter-type.active:hover .filter-header .mega-indicator:after {
    transform: rotate(180deg);
}

/* SVG Icon Styles for Filter */
.filter-mobile-window .mega-indicator,
.vesa-woo-filters .mega-indicator {
    display: inline-flex;
    align-items: center;
    margin-left: 12px;
}
.filter-mobile-window .mega-indicator svg,
.vesa-woo-filters .mega-indicator svg {
    width: 12px;
    height: 12px;
    transition: all 0.3s ease;
}
.filter-mobile-window .mega-indicator:after,
.vesa-woo-filters .mega-indicator:after {
    content: none;
}
.filter-mobile-window .vesa-filter-type:not(.mobile):hover .mega-indicator svg,
.vesa-woo-filters .vesa-filter-type:not(.mobile):hover .mega-indicator svg {
    transform: rotate(180deg);
}
.filter-mobile-window .vesa-filter-type.mobile:hover .mega-indicator svg,
.vesa-woo-filters .vesa-filter-type.mobile:hover .mega-indicator svg {
    transform: rotate(-90deg);
}
.filter-mobile-window .mega-indicator svg {
    width: 18px;
    height: 18px;
}
.filter-mobile-window .vesa-filters-group .vesa-filter-type.active .mega-indicator svg,
.filter-mobile-window .vesa-filters-group .vesa-filter-type.active:hover .mega-indicator svg {
    transform: rotate(180deg);
}
/* End SVG Icon Styles */

/* End Filter Woocommerce */

/* Woocommerce Products */

/* Product image hover swap */
.woocommerce ul.products li.product .woocommerce-LoopProduct-link {
    position: relative;
    display: block;
    overflow: hidden;
}

.woocommerce ul.products li.product .wvs-archive-product-image {
    transition: opacity 0.4s ease;
    width: 100%;
    height: auto;
}

.woocommerce ul.products li.product .wvs-hover-image {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
}

.woocommerce ul.products li.product:hover .wvs-archive-product-image:not(.wvs-hover-image) {
    opacity: 0;
}

.woocommerce ul.products li.product:hover .wvs-hover-image {
    opacity: 1;
}
/* End Product image hover swap */

body.archive .site-main {
    max-width: 1200px;
    margin: 0 auto;
}

body.product-template-default .site-main {
    max-width: 1200px;
    margin: 0 auto;
}

.woocommerce-loop-product__title {
    font-size: 16px!important;
    line-height: 26px!important;
    font-weight: 400!important;
    padding-top: 0!important;
    color: #000!important
}

.woocommerce ul.products li.product .price del {
    color: inherit;
    opacity: .5;
    display: inline-block
}

body.woocommerce .attr_price_box .price del {
    font-size: 14px;
    font-weight: 500
}

body.woocommerce .attr_price_box .price {
    display: flex;
}

body.woocommerce ul.products li.product .price ins {
    font-weight: 500!important;
    display: inline-block!important;
    text-decoration: none!important;
    font-size: 18px!important;
    margin-left: 5px!important
}

.woocommerce ul.products li.product .button {
    display: none !important;
}

.price {
    font-size: 18px!important;
    line-height: 30px!important;
    font-weight: 500!important;
    color: #000!important;
    margin-top: auto!important
}

/* Wishlist button on PRODUCT CARDS only (archive pages).
   Scoped to .product (or .products) to avoid overlaying the single-product summary. */
.products .tinvwl_add_to_wishlist_button,
.product .image-wrap .tinvwl_add_to_wishlist_button,
li.product .tinvwl_add_to_wishlist_button {
    position: absolute;
    top: 5px;
    right: 5px;
    color: #214af1;
    margin-top: 0;
    transition: all .3s ease;
    z-index: 2;
}

/* Term Description Section */
.term-description {
    display: block !important;
    max-width: 900px;
    margin: 0 auto 40px;
    padding: 0 15px;
    font-size: 1.6rem;
    line-height: 1.7;
    color: #333;
}

.term-description p {
    font-size: 1.6rem;
    line-height: 1.7;
    color: #444;
    margin-bottom: 15px;
}

.term-description a {
    color: #000;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 0.3s ease;
}

.term-description a:hover {
    color: #555;
}

.term-description h2 {
    font-size: 2.4rem;
    font-weight: 600;
    color: #000;
    margin: 35px 0 15px;
}

.term-description h3 {
    font-size: 2rem;
    font-weight: 600;
    color: #000;
    margin: 30px 0 12px;
}

.term-description #more {
    display: none;
}

.term-description #more.show {
    display: block;
}

.gogclass {
    margin-top: 24px;
}

.gogbtn {
    display: inline-block;
    margin: 8px auto 0;
    padding: 12px 28px;
    background: transparent;
    color: #1a1a1a;
    border: 1px solid #1a1a1a;
    border-radius: 2px;
    font-family: inherit;
    font-size: 13px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: .08em;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    box-shadow: none;
    -webkit-appearance: none;
            appearance: none;
    transition: background .18s ease, color .18s ease, border-color .18s ease;
}

.gogbtn:hover,
.gogbtn:focus {
    background: #1a1a1a;
    color: #fff;
    text-decoration: none;
    outline: none;
}
/* End Term Description Section */

.woocommerce-products-header{
    margin-top: 50px;
}

.woocommerce-products-header__title{
    font-size: 36px;
    text-align: center;
    margin-bottom: 24px;
}


/* ═══════════════════════════════════════════════════════════
   SINGLE PRODUCT PAGE
   ═══════════════════════════════════════════════════════════ */

/* Size chart (ghid marimi) */
.ghid_marimi thead tr th:first-child {
  font-weight: 400!important;
  font-size: 14px!important;
  text-align: left!important;
  line-height: 26px!important;
  vertical-align: top!important;
}

@media(max-width: 768px){
    .ghid_marimi thead tr th:first-child {
  text-align: center!important;
}
}

.gga{
    display:flex!important;
    justify-content: space-between!important;
    padding: 0 50px!important;
}

.ghid_marimi thead tr th {
  border: 0!important;
  border-bottom: 1px solid #bcbcbc!important;
  font-size: 20px!important;
  font-weight: 400!important;
  line-height: 30px!important;
  text-align: center!important;
  vertical-align: top!important;
}

.ghid_marimi td{
    text-align:center!important;
}

.ghid_marimi th{
    text-align:left!important;
}

.ghid_marimi tbody tr td{
    border:0!important;
}

.ghid_marimi tbody tr th{
    border:0!important;
}

.ghid_marimi thead tr .colth {
  font-weight: 400!important;
  font-size: 14px!important;
  text-align: center!important;
}

/* Core layout */
.woocommerce-product-gallery__trigger, .product_meta{
    display:none!important;
}

.woocommerce-tabs ul.tabs {
  list-style: none;
  padding: 0 0 0 1em;
  margin: 0 0 1.618em;
  overflow: hidden;
  position: relative;
  display: none!important;
}

.card button{
 display:none!important;
}

.woocommerce-breadcrumb {
  font-size: 12px!important;
}

.product_title{
    font-size:22px!important;
}

.wish-btn-singleproduct{
  position: relative !important;
  width: 18px!important;
  height: 18px!important;
  vertical-align: sub!important;
}

.single_add_to_cart_button{
  background-color: #000 !important;
  display: inline-block !important;
  font-size: 18px !important;
  font-weight: 500 !important;
  line-height: 20px !important;
  color: #fff !important;
  text-align: center;
  padding: 18px 42px !important;
  border: 0 !important;
  height: auto !important;
  width: auto !important;
  box-shadow: 0 16px 30px rgba(0,0,0,.1);
  transition: all .3s ease !important;
  border-radius: 0 !important;
}

.single_add_to_cart_button:hover{
    color: #000 !important;
  background-color: #e9e9e9 !important;
  box-shadow: none !important;
}

.price {
  font-size: 20px!important;
  line-height: 30px!important;
  font-weight: 500!important;
  color: #000!important;
  margin-top: auto!important;
}

/* Additional details layout (3 columns) */
.detalii_aditionale_section{
    display:flex!important;
    justify-content:center!important;
    border-bottom: 1px solid #e9e9e9!important;
    border-top: 1px solid #e9e9e9!important;
}

.detalii_aditionale_section h4{
    font-size:28px!important;
    font-weight:500!important;
}

.mobile_collapse_info{
    display:none!important;
}

.csm_ul{
    list-style-type: none!important;
    margin: 0!important;
    padding: 0!important;
}

.csm_ul li{
 display:flex!important;
 align-items:center!important;
 margin-bottom: 10px!important;
}

.csm_ul li img{
 width: 24px !important;
 height: 24px !important;
}

.csm_ul li p{
  margin-block-start: initial!important;
  margin-block-end: initial!important;
  margin-left: 8px!important;
}

.description_section {
  padding: 30px 30px 30px 0!important;
  border-right: 1px solid #e9e9e9!important;
}

.compozitie_section {
  padding: 30px!important;
  border-bottom: 1px solid #e9e9e9!important;
}

.ingrijiri_section{
    padding:30px!important;
}

.woocommerce-tabs .detalii_aditionale_section .last_section .informatii_utile_section {
  padding: 30px!important;
  border-bottom: 1px solid #e9e9e9 !important;
}

.last_section{
    flex-basis:33.33%;
}

.woocommerce-tabs .detalii_aditionale_section .description_section{
    flex-basis:33.33%!important;
    overflow-y:scroll;
    height:517px;
}

.middle_section {
  border-right: 1px solid #e9e9e9!important;
}

.middle_section{
    flex-basis: 33.33%;
}

.detalii_aditionale_section .middle_section .ingrijiri_section ul li:first-child img {
  width: 18px!important;
  height: 18px!important;
}

/* Product gallery layout (2 columns) */
.woocommerce-product-gallery__wrapper{
    display:flex!important;
    flex-wrap:wrap!important;
}

.woocommerce-product-gallery__image{
  position: relative;
  overflow: hidden;
  flex: 50%;
  margin: 0 0 10px;
  cursor: pointer;
  width: 50%;
  max-width: 50%;
  padding: 0 5px;
}

.woocommerce-page div.product div.summary {
  width: 35% !important;
  padding-left: 40px;
}

.woocommerce-page div.product div.images {
  width: 65%!important;
}

.woocommerce-product-rating {
  display: flex !important;
  flex-direction: column!important;
}


/* Variations layout — stack label ABOVE value (no side-by-side default).
   Uses display:block so the DOM hierarchy stays intact (jQuery selectors like
   closest('tr') / find('td.value') still work). Unlike display:flex on cells,
   this doesn't change box-rendering enough to break WVS Pro click detection. */
.woocommerce div.product form.cart .variations,
.woocommerce div.product form.cart .variations tbody,
.woocommerce div.product form.cart .variations tr,
.woocommerce div.product form.cart .variations th,
.woocommerce div.product form.cart .variations td {
    display: block;
    width: 100%;
    border: 0;
    padding: 0;
    margin: 0;
    vertical-align: top;
}

.woocommerce div.product form.cart .variations tr {
    margin-bottom: 20px;
}

.woocommerce div.product form.cart .variations tr:last-child {
    margin-bottom: 0;
}

/* Extra breathing room around the Sizes row */
.woocommerce div.product form.cart .variations tr:has(label[for="pa_sizes"]) {
    margin-top: 24px;
    margin-bottom: 28px;
}

.woocommerce div.product form.cart .variations th.label {
    padding: 0 0 8px;
    line-height: 1.3;
}

.woocommerce div.product form.cart .variations th.label label {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .04em;
    color: #1a1a1a;
    margin: 0;
}

.woocommerce div.product form.cart .variations td.value {
    padding: 0 0 4px;
    line-height: 1.5;
}

.summary .woocommerce-product-rating .woocommerce-review-link {
  font-size: 14px;
  line-height: 26px;
  color: #214af1;
}

.reset_variations {
  color: #214af1!important;
}

.woocommerce-variation-add-to-cart .tinv-wraper .tinvwl_add_to_wishlist_button{
  width: 56px !important;
  height: 56px !important;
  background: #fff;
  background-color: rgb(255, 255, 255);
  box-shadow: 0 16px 30px rgba(0,0,0,.1);
  top: 0 !important;
  right: 0 !important;
  color: #214af1 !important;
  margin-left: 10px!important;
  margin-top: 0 !important;
  padding:0!important;
  transition: all .3s ease !important;
  display: flex;
  justify-content: center;
  align-items: center;
}

.woocommerce-variation-add-to-cart{
    display:flex!important;
}

.tinv-wishlist .tinvwl_add_to_wishlist_button.tinvwl-icon-heart::before{
    margin-right:0!important;
}

.tinvwl_add_to_wishlist-text{
    display:none;
}

.woocommerce div.product form.cart .button {
  width: 100% !important;
  background-color: #000;
  display: inline-block;
  font-size: 18px;
  font-weight: 500;
  line-height: 20px;
  color: #fff;
  padding: 18px 75px;
  box-shadow: 0 16px 30px rgba(0,0,0,.1);
  transition: all .3s ease;
  border-radius: 0;
}

.woocommerce div.product form.cart .variations label {
  font-weight: 400!important;
  width: 100%!important;
  font-size: 14px!important;
  line-height: 26px!important;
  margin-bottom: 0!important;
}

.stars span a{
    color: #214af1!important;
}

.tinvwl_add_to_wishlist_button.tinvwl-icon-heart.no-txt::before{
    position:initial!important;
}

.description_section p a{
    color:#214af1!important;
}

.woocommerce-noreviews{
    display:none!important;
}

span.price{
    width:20%;
    float:left;
}

.attr_count{
  font-size: 12px!important;
  float:right;
  color:#bcbcbc;
  top: 6px !important;
  position: relative;
}

.includes_tax{
    display:none!important;
}

.size_guide_photos_product{
    text-align:center;
}


/* Size guide modal trigger */
#openmodalunique{
    width:100%;
}

button#openmodalunique{
    border:0;
    color:blue;
    text-align: left;
    padding: 0;
    font-size:14px;
    font-weight:400;
}

button#openmodalunique:hover{
    background-color:transparent;
}

button#openmodalunique:focus{
    background-color:transparent;
}

/* Sale badge */
.woocommerce span.onsale {
  font-weight: 500!important;
  background-color: #000!important;
  right: auto!important;
  left: 0!important;
  min-height: 35px!important;
  min-width: 70px!important;
  padding: 5px 10px!important;
  line-height: 25px!important;
  margin: 0!important;
  border-radius: 0!important;
  text-transform: uppercase!important;
  letter-spacing: 1px!important;
  font-size: 12px!important;
}

.woocommerce ul.products li.product .onsale {
  top: 0!important;
  left: 0!important;
  right: initial!important;
  margin: 0!important;
}

/* Reviews form */
.woocommerce-Tabs-panel--reviews{
    display:block!important;
}

#review_form_wrapper{
    border: 1px solid #d3d3d3;
}

#review_form_wrapper #review_form .comment-respond .comment-form .comment-form-rating {
  padding: 25px!important;
  border-bottom: 1px solid #d3d3d3!important;
}

.comment-form p:nth-child(3){
    text-align:right!important;
}

.comment-form-comment textarea{
    border:none;
    border-radius:0;
}

.comment_container img{
    display:none;
}

.woocommerce #reviews #comments ol.commentlist li .comment-text{
    border-radius:0!important;
    margin: 0!important;
}

.commentlist{
    padding:0!important;
}

.comment-form-comment label{
    display:none;
}

.comment-reply-title{
    padding-left:25px;
}

.woocommerce #review_form #respond .form-submit input {
  background: 0 0;
  border-radius: 0;
  color: #214af1;
  font-size: 18px;
  font-weight: 500;
}

.woocommerce #review_form #respond .form-submit input:hover{
    background-color:transparent;
}

.label{
    padding-left:0!important;
    display: flex!important;
    flex-direction: row!important;
}

#review_form_wrapper #review_form .comment-respond .comment-form .comment_section .inner_comment_section .comment-form-author label {
  display: none;
}

#review_form_wrapper #review_form .comment-respond .comment-form .comment_section .inner_comment_section .comment-form-email label {
  display: none;
}

.comment-form-cookies-consent{
  display:none;
}

#review_form_wrapper #review_form .comment-respond .comment-form .comment_section .inner_comment_section {
  display: flex;
  border-top: 1px solid #d3d3d3;
  justify-content: end;
}

#review_form_wrapper #review_form .comment-respond .comment-form .comment_section .inner_comment_section .comment-form-author {
  margin: 0;
  order: 1;
  flex-basis: 39.5%;
}

#review_form_wrapper #review_form .comment-respond .comment-form .comment_section .inner_comment_section .comment-form-email {
  margin: 0;
  order: 2;
  flex-basis: 39%;
}

#review_form_wrapper #review_form .comment-respond .comment-form .comment_section .inner_comment_section .form-submit {
  order: 3;
  margin: 0;
  text-align: center;
  border-left: 1px solid #d3d3d3;
  flex-basis: 22%;
  align-items: center;
  justify-content: center;
}

#review_form_wrapper #review_form .comment-respond .comment-form .comment_section .inner_comment_section .form-submit #submit {
  background: 0 0;
  border-radius: 0;
  color: #214af1;
  font-size: 18px;
  font-weight: 500;
  padding: 13px 7px 13px 13px;
  line-height: 30px;
}

.comment_section .inner_comment_section .comment-form-author input {
  border-width: 0 1px 0 0;
  border-style: solid;
  border-color: #d3d3d3;
  padding: 15px;
  width: 100%;
}

.comment_section .inner_comment_section .comment-form-author input:focus-visible {
  border-left:none;
}

.comment_section .inner_comment_section .comment-form-email input {
  border: 0;
  width: 100%;
  padding: 15px;
}

#review_form_wrapper #review_form .comment-respond #reply-title {
  padding: 25px 25px 0;
  font-size: 20px;
  line-height: 30px;
  font-weight: 600;
  text-transform: uppercase;
  display: block;
}

#review_form_wrapper #review_form .comment-respond .comment-form .comment-notes {
  padding: 0 25px;
}

/* Variation color swatches (WooCommerce Variation Swatches plugin) */
.woo-variation-swatches .wvs-style-squared.variable-items-wrapper .variable-item:not(.radio-variable-item) {
  border-radius: 0!important;
}

.button-variable-item-black .variable-item-contents {
  background-color: black!important;
  color:white!important;
}

.button-variable-item-negru .variable-item-contents {
  background-color: black!important;
  color:white!important;
}

/* Gallery swatches (woo-variation-gallery) */
.woo-variation-product-gallery,
.woo-variation-gallery-wrapper,
.woo-variation-gallery-container {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
}

.woo-variation-gallery-thumbnail-position-right-bottom .woo-variation-gallery-container .woo-variation-gallery-slider-wrapper {
    width: 80%;
}

.woo-variation-gallery-thumbnail-wrapper {
  width: 100% !important;
}

.woo-variation-gallery-thumbnail-slider {
  display: flex;
  flex-wrap: wrap;
}

.woo-variation-gallery-wrapper .wvg-gallery-thumbnail-image{
  opacity: 1!important;
}

.wvg-gallery-thumbnail-image img {
  width: 100% !important;
}

.wvg-gallery-thumbnail-image {
  padding: 10px!important;
}

.woo-variation-gallery-thumbnail-wrapper .wvg-gallery-thumbnail-image {
  width: 50%;
}

.woo-variation-gallery-thumbnail-position-right-bottom .woo-variation-gallery-container {
    -webkit-box-orient: initial!important;
    -webkit-box-direction: initial!important;
    display: initial!important;
    -ms-flex-direction:initial!important;
    flex-direction: initial!important;
}

/* Always-visible swatch labels (color/material). CRITICAL: pointer-events: none
   so the ::before pseudo doesn't swallow clicks meant for the variable-item. */
.mixed-variable-items-wrapper [data-wvstooltip]::before,
.image-variable-items-wrapper [data-wvstooltip]::before {
    content: attr(data-wvstooltip) " " attr(data-wvstooltip-out-of-stock);
    opacity: 1 !important;
    display: block !important;
    visibility: visible !important;
    text-align: center !important;
    top: 130px !important;
    background: transparent !important;
    color: #000 !important;
    box-shadow: none !important;
    pointer-events: none !important;
}

/* DEFENSIVE: ensure every variation swatch is clickable above any tooltip overlay,
   wishlist button absolute positioning, or stacking-context quirk. */
.woocommerce .variations .variable-item,
.woocommerce .variations_form .variable-item,
.variations_form .variable-items-wrapper .variable-item {
    position: relative;
    z-index: 5;
    pointer-events: auto !important;
}

.woocommerce .variations .variable-item *,
.woocommerce .variations_form .variable-item * {
    pointer-events: auto;
}


.single-product-variable-items li.image-variable-item:nth-child(4){
    margin-top:50px!important;
}

.single-product-variable-items li.image-variable-item:nth-child(5){
    margin-top:50px!important;
}

.single-product-variable-items li.image-variable-item:nth-child(6){
    margin-top:50px!important;
}

/* Price box (sticky summary) */
.attr_price_box .price{
 display: flex !important;
}

body.woocommerce ul.products li.product .price ins {
  font-weight: 700 !important;
  font-size: 18px !important;
}

/* Breadcrumb inside summary */
.breadcrumbsg nav{
    display:block!important;
}

@media(min-width:500px){
.woocommerce-breadcrumb{
    display:none;
}
}

/* Accordion (mobile collapsible product details) */
.cardy .card-header h3 button {
  font-size: 24px!important;
  font-weight: 500!important;
  line-height: 34px!important;
  display: flex!important;
  justify-content: space-between!important;
  align-items: center!important;
  width: 100%!important;
  padding-left: 0!important;
  padding-right: 0!important;
  color: #000!important;
  border: none !important;
  background-color:transparent!important;
}

.cardy .card-header h3 button:hover {
 background-color:transparent!important;
}

.card-body p a{
    color:#214AF1!important;
}

.collapse {
max-height: 0;
overflow: hidden;
transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}

.collapse.show {
max-height: 500px;
transition: max-height 0.3s ease-in, padding 0.3s ease-in;
}

.card-header h3{
    font-size:20px!important;
}

#accordion .cardy {
  border-width: 0 0 1px 0!important;
  border-style: solid!important;
  border-color: #dfdfdf!important;
  padding: 10px 0!important;
  border-radius: 0!important;
}

#accordion .cardy p{
  font-size: 16px!important;
  font-weight: 400!important;
  color: #000!important;
}

/* Responsive: 991px gallery fullwidth */
@media (max-width: 991px) {
 .woocommerce-page div.product div.images {
  width: 100% !important;
}
}

/* Responsive: 992px summary full width and non-sticky */
@media(max-width:992px){
.woocommerce-page div.product div.summary {
  width: 100%!important;
}

.summary.entry-summary{
    position:relative!important;
    margin-top:0!important;
}

span.price {
  width: 100%!important;
  float: none!important;
}

.attr_count {
  float: none!important;
}

.detalii_aditionale_section {
  display: none !important;
}

.mobile_collapse_info{
    display:initial!important;
}

.card button{
    display:initial!important;
}

.btn-link {
  font-weight: 400!important;
  color: #214af1!important;
  text-decoration: none;
  border:none!important;
}

.btn-link:hover {
  color: #0c2eba!important;
  text-decoration: underline!important;
  background-color:transparent!important;
}

.btn-link:focus{
    background-color:transparent!important;
}

.woocommerce div.product form.cart .button{
    width:initial!important;
}
}

@media(max-width:564px){
    .cardy .card-header h3 button {
        text-align:left;
        white-space: wrap!important;
        font-size:20px!important;
        padding-left: initial!important;
         padding-right: initial!important;
    }
}

/* Responsive: 900px (tablet) gallery stack + flex-control-nav dots */
@media(max-width:900px){
    .woocommerce-product-gallery__wrapper{
    display:inline-block!important;
    flex-wrap:initial!important;
}

.woocommerce-product-gallery__image {
  position: relative!important;
  flex: initial!important;
}

.woocommerce-page div.product div.summary {
  width: 100%!important;
}

.woocommerce-page div.product div.images {
  width: 100%!important;
}

.flex-control-nav {
    display: flex !important;
    justify-content: center !important;
    padding-top: 10px !important;
}

.flex-control-nav li {
    position: relative;
    width: 13px !important;
    height: 13px !important;
    margin: 0 3px !important;
}

.flex-control-nav li img {
    display: inline-block !important;
    border-radius: 50% !important;
    width: 13px !important;
    height: 13px !important;
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
}

.flex-control-nav li::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background-color: #dfdfdf;
    z-index: 1;
}

.flex-active{
    margin-top:-1px!important;
    margin-left:-1px!important;
    background-color:#214AF1!important;
    width: 20px !important;
    height: 20px !important;
    padding: 7px !important;
    border-radius: 50% !important;
    z-index:99999;
}

.flex-control-nav li img.flex-active::after {
    background-color: blue !important;
}
}

/* Responsive: 500px (mobile) gallery + summary full */
@media(max-width:500px){
    .woocommerce-product-gallery__wrapper{
    display:inline-block!important;
    flex-wrap:initial!important;
}

.woocommerce-product-gallery__image {
  position: relative!important;
  flex: initial!important;
  padding:0;
  max-width:100%;
  width:100%;
}

.woocommerce-page div.product div.summary {
  width: 100%!important;
  padding-left: 0;
}

.woocommerce-page div.product div.images {
  width: 100%!important;
}

.woocommerce-product-rating {
  margin-bottom: 0;
}

.woocommerce-review-link{
    display:none;
}

.breadcrumbsg nav {
  display: none !important;
}

.breadcrumbsg{
    padding-top:20px;
}

.woocommerce div.product div.images.woocommerce-product-gallery {
  text-align: center!important;
}
}

/* Responsive: 440px image variable items */
@media(max-width:440px){
.single-product-variable-items li.image-variable-item:nth-child(4){
    margin-top:50px!important;
}
}

@media(min-width:501px){
.slick-slide .slick-cloned{
    display:none!important;
}


.slick-slide .slick-current .slick-active{
    display:block!important;
}

.woo-variation-gallery-thumbnail-wrapper{
    display:none!important;
}


.slick-slide.slick-cloned {
  display: none!important;
}

.slick-track{
    transform:none!important;
    width:initial!important;
    position: static!important;
}


.slick-list{
    height:initial!important;
    position: static!important;
    overflow: visible!important;
}

.woo-variation-gallery-thumbnail-position-right-bottom .woo-variation-gallery-container .woo-variation-gallery-slider-wrapper {
    width: 100%!important;
}

.slick-slide {
  width: 50%!important;
  padding: 10px;
  position: static!important;
  float: left!important;
}

.woo-variation-gallery-wrapper .woo-variation-gallery-trigger{
    width:100%!important;
    height:100%!important;
    position:initial!important;
    display:initial!important;
}

.woo-variation-gallery-trigger .woo-variation-gallery-trigger-position-top-right{
    width:50%!important;
}

.dashicons.dashicons-search {
  display: none!important;
}

.woo-variation-gallery-trigger .slick-cloned{
    display:none!important;
}
}

@media(max-width:500px){
.woo-variation-gallery-thumbnail-wrapper{
        display:block!important;
}

.pswp{
  opacity: 1!important;
  z-index: 9999999999!important;
  top: 0!important;
}

/*.woo-variation-gallery-wrapper .woo-variation-gallery-trigger{*/
/*    width:initial!important;*/
/*    height:initial!important;*/
/*    position:initial!important;*/
/*}*/


.woo-variation-gallery-thumbnail-position-right-bottom .woo-variation-gallery-container .woo-variation-gallery-slider-wrapper {
    width: initial!important;
}
}

.single_variation_wrap .quantity {
    display: none !important;

}

/* ═══════════════════════════════════════════════════════════
   CART PAGE (ported from child-elementor)
   ═══════════════════════════════════════════════════════════ */

.goflex{
    display:flex;
}

.woocommerce .woocommerce-cart-form {
  flex: 0 0 68%;
  order: 2;
  padding-right: 30px;
}

.woocommerce .woocommerce-cart-form .shop_table {
  border: 0;
  margin: 0;
}

.woocommerce table.shop_table {
  border: 1px solid rgba(0,0,0,.1);
  margin: 0 -1px 24px 0;
  text-align: left;
  width: 100%;
  border-collapse: separate;
  border-radius: 5px;
}

.woocommerce table.shop_table tbody:first-child tr:first-child td{
    border:0!important;
}

.woocommerce-cart-form .shop_table .woocommerce-cart-form__cart-item .product-thumbnail {
  padding-bottom: 20px;
  padding-top: 20px;
  border: 0!important;
}

.woocommerce-cart-form .shop_table .woocommerce-cart-form__cart-item .product-thumbnail a img {
  width: 115px;
  height: auto;
}

.woocommerce-cart-form .shop_table .woocommerce-cart-form__cart-item .product-name {
  position: relative;
  border: 0 !important;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.woocommerce-cart-form .shop_table .woocommerce-cart-form__cart-item .product-name a {
  font-size: 20px;
  line-height: 30px;
  font-weight: 500;
  color: #000;
  text-decoration: none;
  max-width: 65%;
}

.woocommerce-cart-form .shop_table .woocommerce-cart-form__cart-item .product-remove {
  display: flex;
  cursor: pointer;
  position: absolute;
  top: 15px;
  right: 10px;
  z-index: 98;
}

.woocommerce a.remove:hover {
  color: #fff !important;
  background: transparent!important;
}

.cartwishlist{
  height: 30px !important;
  width: 30px !important;
  position: relative !important;
  top: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  margin-top: -10px !important;
}

.woocommerce-cart-form .shop_table .woocommerce-cart-form__cart-item .product-name .quantity_price_block {
  display: flex;
  justify-content: space-between;
  align-items: end;
  padding-top: 37px;
}

.woocommerce-cart-form .shop_table .woocommerce-cart-form__cart-item .product-name .quantity_price_block .product-quantity {
  flex: 0 0 10%;
}

.woocommerce-cart-form .shop_table .woocommerce-cart-form__cart-item .product-name .quantity_price_block .variations_table {
  flex: 0 0 50%!important;
}

.variations_table dl dt{
    display:none!important;
}

.woocommerce-cart-form .shop_table .woocommerce-cart-form__cart-item .product-subtotal .amount {
  font-size: 20px;
  line-height: 30px;
  font-weight: 600;
}

.shop_table .woocommerce-cart-form__cart-item .product-name .quantity_price_block .product-subtotal {
  flex: 0 0 35%;
  text-align: right;
}

/* Quantity input in cart */
.woocommerce-cart-form .product-quantity > label {
  display: block;
  font-size: 12px;
  font-weight: 500;
  line-height: 20px;
  text-transform: uppercase;
  letter-spacing: .5px;
  color: #666;
  margin-bottom: 6px;
}

.woocommerce-cart-form .product-quantity .quantity {
  display: inline-flex;
  align-items: center;
}

.woocommerce-cart-form .product-quantity .quantity label {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.woocommerce-cart-form .product-quantity .quantity .qty,
.woocommerce .quantity .qty {
  width: 64px;
  height: 42px;
  padding: 0 8px;
  font-size: 16px;
  font-weight: 500;
  line-height: 42px;
  text-align: center;
  color: #000;
  background-color: #fff;
  border: 1px solid #dfdfdf !important;
  border-radius: 0 !important;
  box-shadow: none;
  appearance: textfield;
  -moz-appearance: textfield;
  -webkit-appearance: textfield;
  transition: border-color .2s ease;
}

.woocommerce-cart-form .product-quantity .quantity .qty:hover,
.woocommerce .quantity .qty:hover {
  border-color: #000 !important;
}

.woocommerce-cart-form .product-quantity .quantity .qty:focus,
.woocommerce .quantity .qty:focus {
  outline: none;
  border-color: #214af1 !important;
}

.woocommerce-cart-form .product-quantity .quantity .qty::-webkit-outer-spin-button,
.woocommerce-cart-form .product-quantity .quantity .qty::-webkit-inner-spin-button {
  opacity: 1;
  margin-left: 4px;
}

.woocommerce-page table.cart td.actions {
  text-align: right;
  border: 0;
  border-top: 1px solid #dfdfdf;
}

.coupon{
    display:none;
}

/* Cart totals (right column) */
.woocommerce .cart-collaterals {
  flex: 0 0 32%;
  order: 3;
}

.woocommerce .cart-collaterals .cart_totals h2 {
  display: none;
}

.woocommerce .cart-collaterals .cart_totals {
  font-size: 20px;
  line-height: 30px;
  font-weight: 600;
}

.cart_totals {
  float: none!important;
  width: 100%!important;
  padding: 24px!important;
  font-size: 20px!important;
  line-height: 30px!important;
  font-weight: 600!important;
  box-shadow: 0 16px 30px rgba(0,0,0,.1)!important;
}

.cart-collaterals .cart_totals .shop_table {
  border: 0;
}

.cart-collaterals .cart_totals .shop_table td {
  text-align: right!important;
}

.cart-collaterals .cart_totals .shop_table th {
  width: 100%;
  font-size: 20px;
  line-height: 30px;
  font-weight: 600;
  text-transform: uppercase;
}

.cart-collaterals table th { border: 0!important; }
.cart-collaterals table td { border: 0!important; }

.woocommerce-shipping-destination{
    display:none;
}

.woocommerce-shipping-totals.shipping th {
  border-bottom: 1px solid #dfdfdf !important;
}

.woocommerce-shipping-totals.shipping td {
  border-bottom: 1px solid #dfdfdf !important;
}

/* Update cart & checkout buttons */
.tnp-submit {
  font-size: 18px!important;
  line-height: 30px!important;
  font-weight: 500!important;
  background: 0 0!important;
  color: #214af1!important;
  width: auto!important;
  padding: 0 0 3px!important;
  border-radius: 0!important;
  border-width: 0 0 2px 0!important;
  border-style: solid!important;
  border-color: transparent!important;
  margin-bottom: 5px!important;
  display: inline-block!important;
  transition: all .3s ease!important;
}

.update_cart_button:hover {
  border-color: #90a4f8!important;
}

.fa-chevron-right {
  font-size: 16px;
  padding-left: 5px;
  color: #214af1;
  transition: all .3s ease;
}

.btn-bl{
  background-color: #000 !important;
  display: inline-block !important;
  font-size: 18px !important;
  font-weight: 500 !important;
  line-height: 20px !important;
  color: #fff !important;
  text-align: center;
  padding: 18px 42px !important;
  border: 0 !important;
  height: auto !important;
  width: auto !important;
  box-shadow: 0 16px 30px rgba(0,0,0,.1);
  transition: all .3s ease !important;
  border-radius: 0 !important;
}

.btn-bl:hover{
  color: #000 !important;
  background-color: #e9e9e9 !important;
  box-shadow: none !important;
}

/* Empty cart */
.return-to-shop.return_flex {
  text-align: center;
  padding: 40px 0;
}

/* ─── Cart: tablet & below ─── */
@media(max-width:992px){
.woocommerce .woocommerce-cart-form {
  flex: 0 0 100%!important;
  order: 2;
  padding: 0 30px;
}

.woocommerce .cart-collaterals {
  flex: 0 0 100%!important;
  order: 3;
}

.goflex {
  display: flex;
  flex-wrap: wrap;
}
}

/* ─── Cart: mobile ─── */
@media(max-width:500px){
.woocommerce-cart-form .shop_table .woocommerce-cart-form__cart-item .product-name .quantity_price_block .variations_table {
  flex: initial !important;
}

.woocommerce-cart-form .shop_table .woocommerce-cart-form__cart-item .product-name .quantity_price_block .product-quantity {
  flex: 0 0 5%;
}

.woocommerce table.shop_table_responsive tr td::before,
.woocommerce-page table.shop_table_responsive tr td::before {
  display:none!important;
}

.woocommerce table.shop_table_responsive tr:nth-child(2n) td,
.woocommerce-page table.shop_table_responsive tr:nth-child(2n) td {
  background-color: transparent!important;
}

.woocommerce-page table.shop_table_responsive tr {
  display: flex!important;
}

.woocommerce-page table.shop_table_responsive tbody th {
  display: block!important;
}

.woocommerce table.cart .product-thumbnail,
.woocommerce-page #content table.cart .product-thumbnail,
.woocommerce-page table.cart .product-thumbnail {
  display: block!important;
}

.cart-collaterals .cart_totals table th{
    width:100%!important;
}

.woocommerce-page table.cart td.actions {
  width:100%!important;
}

.woocommerce-cart-form .shop_table .woocommerce-cart-form__cart-item .product-subtotal .amount {
  line-height: 0!important;
}

.wc-proceed-to-checkout{
    text-align:center!important;
}
}

.wc-proceed-to-checkout a{
    width: 100% !important;
}


/* ═══════════════════════════════════════════════════════════
   SITE HEADER (replica Elementor header)
   ═══════════════════════════════════════════════════════════ */

.site-header {
    position: sticky;
    top: 0;
    z-index: 9000;
    background: #fff;
}

/* ─── Top strip ─── */
.site-header__top {
    border-bottom: 1px solid #ececec;
    background: #fff;
    font-size: 13px;
    line-height: 1;
}

.site-header__top-inner {
    max-width: 100%;
    margin: 0 auto;
    padding: 10px 50px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 20px;
}

.site-header__top-inner > .site-header__contact {
    justify-self: start;
}

.site-header__top-inner > .site-header__lang {
    justify-self: center;
}

.site-header__top-inner > .site-header__top-right {
    justify-self: end;
}

.site-header__contact {
    display: flex;
    gap: 22px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.site-header__contact a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #000;
    text-decoration: none;
    transition: color .2s ease;
}

.site-header__contact a span{
    font-size: 14px;
    font-weight: 400;
}

.site-header__contact a:hover {
    color: #214af1;
}

.site-header__contact .ico {
    width: 13px;
    height: 13px;
    fill: currentColor;
    flex-shrink: 0;
}

.site-header__top-right {
    display: flex;
    align-items: center;
    gap: 18px;
}

.site-header__lang img {
    width: 18px;
    height: 12px;
    vertical-align: middle;
}

.site-header__lang {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.site-header__lang-item a {
    display: inline-flex;
    align-items: center;
    line-height: 1;
}

.site-header__lang-item.is-active {
    opacity: 0.6;
    pointer-events: none;
}

/* ─── Icons (user, wishlist, cart) ─── */
.site-header__icon {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    color: #000;
    transition: color .2s ease;
}

.site-header__icon:hover {
    color: #214af1;
}

.site-header__icon svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

/* ─── Cart ─── */
.site-header__cart {
    width: auto;
    gap: 8px;
}

.site-header__cart-total {
    font-size: 13px;
    font-weight: 500;
    color: #000;
    white-space: nowrap;
}

.site-header__cart-icon {
    position: relative;
    display: inline-flex;
}

.site-header__cart-icon svg {
    width: 22px;
    height: 22px;
    fill: currentColor;
}

.site-header__cart-count {
    position: absolute;
    top: -6px;
    right: -8px;
    min-width: 16px;
    height: 16px;
    padding: 0 4px;
    font-size: 10px;
    font-weight: 600;
    line-height: 16px;
    text-align: center;
    color: #fff;
    background: #214af1;
    border-radius: 999px;
}

.site-header__cart-count[data-counter="0"] {
    display: none;
}

/* ─── Search ─── */
.site-header__search .dgwt-wcas-search-wrapp {
    max-width: 180px;
}

.site-header__search form {
    display: flex;
}

.site-header__search input[type="search"],
.site-header__search input[type="text"] {
    width: 180px;
    height: 32px;
    padding: 0 32px 0 10px;
    font-size: 13px;
    border: 1px solid #dfdfdf;
    border-radius: 0;
    background: #fff;
}

/* ─── Main bar: logo + menu ─── */
.site-header__main {
    background: #fff;
}

.site-header__main-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 18px 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 18px;
}

.site-header__main-inner .site-header__nav {
    width: 100%;
    display: flex;
    justify-content: center;
}

.site-header__main-inner .site-header__logo {
    display: flex;
    justify-content: center;
}

.site-header__logo img {
    display: block;
    max-height: 71px;
    width: auto;
}

.site-header__nav .site-nav {
    display: flex;
    gap: 28px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.site-header__nav .site-nav a {
    color: #000;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: .5px;
    text-transform: uppercase;
    padding: 8px 0;
    transition: color .2s ease;
}

.site-header__nav .site-nav a:hover {
    color: #214af1;
}

.site-header__nav .sub-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    padding: 12px 0;
    margin: 0;
    list-style: none;
    background: #fff;
    box-shadow: 0 16px 30px rgba(0,0,0,.1);
}

.site-header__nav .site-nav > li {
    position: relative;
}

.site-header__nav .site-nav > li:hover > .sub-menu {
    display: block;
}

.site-header__nav .sub-menu a {
    display: block;
    padding: 8px 20px;
    text-transform: none;
    letter-spacing: 0;
    font-weight: 400;
}

/* ─── Mobile header (hidden on desktop) ─── */
.site-header__mobile {
    display: none;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
    gap: 16px;
    border-top: 1px solid #ececec;
}

.site-header__hamburger {
    background: none;
    border: 0;
    padding: 0;
    cursor: pointer;
    width: 24px;
    height: 24px;
    color: #000;
}

.site-header__hamburger svg {
    width: 100%;
    height: 100%;
    fill: currentColor;
}

.site-header__logo-mobile img {
    max-height: 40px;
    width: auto;
}

.site-header__mobile-actions {
    display: flex;
    align-items: center;
    gap: 14px;
}

/* ─── Mobile overlay menu ─── */
.site-header__mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #fff;
    padding: 80px 24px 40px;
    overflow-y: auto;
    z-index: 9500;
}

.site-header__mobile-menu.is-open {
    display: block;
}

.site-header__mobile-menu .mobile-nav,
.site-header__mobile-menu .mobile-nav__contact {
    list-style: none;
    padding: 0;
    margin: 0 0 30px;
}

.site-header__mobile-menu .mobile-nav a,
.site-header__mobile-menu .mobile-nav__contact a {
    display: block;
    padding: 14px 0;
    color: #000;
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    border-bottom: 1px solid #ececec;
}

.site-header__mobile-menu .sub-menu {
    list-style: none;
    padding: 0 0 0 16px;
    margin: 0;
}

.site-header__mobile-menu .sub-menu a {
    font-size: 14px;
    font-weight: 400;
    text-transform: none;
}

/* ─── Responsive switch ─── */
@media (max-width: 1024px) {
    .site-header__top,
    .site-header__main {
        display: none;
    }
    .site-header__mobile {
        display: flex;
    }
}

@media (min-width: 1025px) {
    .site-header__mobile,
    .site-header__mobile-menu {
        display: none !important;
    }
}

body.menu-open {
    overflow: hidden;
}

.related h2{
    margin-bottom: 30px;
}

/* Hide PayPal Smart Buttons only on single product page.
   Cart / checkout still need them as valid payment options. */
.single-product .buttons-container,
.single-product #ppc-button-ppcp-gateway,
.single-product #ppc-button-WC_Gateway_PPCP-gateway,
.single-product #ppc-button-ppcp-gateway-single-product,
.single-product .ppc-button-wrapper,
.single-product .ppcp-button-apm,
.single-product .ppcp-messages-apm,
.single-product .ppcp-smart-button,
.single-product .paypal-buttons,
.single-product .paypal-button-container,
.single-product .paypal-button,
.single-product iframe[src*="paypal.com"],
.single-product iframe[name*="paypal_button"],
.single-product iframe[title*="PayPal"]{
    display: none !important;
}

.shipping_options_checkout{
    margin-top: 20px;
}

