body {
font-family: 'Roboto', sans-serif;
margin: 0;
padding: 0;
background-color: var(--background-color);
color: var(--text-color);
padding-top: 120px;
}
.mobile-contact {
display: none;
}
.header {
background-color: white;
box-shadow: 0 2px 4px rgba(0,0,0,0.1);
position: fixed;
width: 100%;
top: 0;
left: 0;
z-index: 1000;
transition: transform 0.3s ease;
}
.header.hidden {
transform: translateY(-100%);
}
.container {
max-width: 1200px;
margin: 0 auto;
padding: 0 1rem;
}
.header-top {
display: flex;
justify-content: space-between;
align-items: center;
padding: 0.5rem 0;
font-size: 0.9rem;
}
.header-contact a, span.contact-span {
color: #4baa5b;
text-decoration: none;
margin-right: 1rem;
font-size: 18px;
font-weight: bolder;
}
.header-contact a:hover, span.contact-span:hover {
color: #389b3c;
text-decoration:underline;
}
.header-main {
display: flex;
justify-content: space-between;
align-items: center;
padding: 2rem 0 1rem 0;
}
.header-cart {
display: flex;
flex-direction: column;
align-items: center;
margin-left: 50px;
margin-top: -10px;
}
.cart-icon {
position: relative;
font-size: 24px;
color: #4baa5b;
text-decoration: none;
}
.cart-count {
position: absolute;
top: -10px;
right: -10px;
background-color: #ff6b6b;
color: white;
border-radius: 50%;
width: 20px;
height: 20px;
display: flex;
align-items: center;
justify-content: center;
font-size: 12px;
font-weight: bold;
}
.cart-total {
margin-top: 5px;
padding: 3px 8px;
background-color: #4baa5b;
border-radius: 3px;
font-size: 14px;
font-weight: bold;
color: #333;
}
.logo {
font-size: 1.5rem;
font-weight: 700;
color: var(--primary-color);
text-decoration: none;
}
.main-nav {
    background-color: #ffffff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    padding: 0;
}

.main-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
}

.main-nav li {
    margin: 0 15px;
    position: relative;
}

.main-nav a {
    text-decoration: none;
    color: #333333;
    font-size: 18px;
    font-weight: 500;
    padding: 10px 5px;
    transition: all 0.3s ease;
    position: relative;
    font-weight: bolder;
    display: block;
}

.main-nav a:hover,
.main-nav li.current-menu-item a {
    color: #4baa5b;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.main-nav a:hover,
.main-nav li.current-menu-item a {
    animation: pulse 0.5s ease-in-out;
}

.main-nav .menu-item-has-children {
    position: relative;
}

.main-nav .menu-item-has-children > a {
    position: relative;
}

.main-nav .menu-item-has-children > a::after {
    content: '\f107';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 50%; 
    top: calc(100% - 14px); 
    transform: translateX(-50%); 
    right: auto;
    font-size: 14px; 
    color: #333333;
    transition: transform 0.3s ease, color 0.3s ease;
}

.main-nav .menu-item-has-children:hover > a::after {
    transform: translateX(-50%) rotate(180deg);
    color: #4baa5b;
}

.main-nav a::before {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #4baa5b;
    transition: width 0.3s ease;
}

.main-nav a:hover::before,
.main-nav li.current-menu-item a::before {
    width: 100%;
}

.main-nav .sub-menu {
    display: block;
    position: absolute;
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    min-width: 200px;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
    transform: translateY(10px);
}

.main-nav .menu-item-has-children:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.main-nav .sub-menu li {
    margin: 0;
    position: relative; 
    display: block;
}

.main-nav .sub-menu a {
    padding: 10px 15px;
    font-size: 16px;
    display: block;
    border-bottom: 1px solid #f0f0f0;
    transition: background-color 0.3s ease;
    font-weight: normal; 
}

.main-nav .sub-menu a:hover {
    background-color: #f8f8f8;
}

.main-nav > ul > .menu-item-has-children > .sub-menu {
    top: 100%; 
    left: 0;
    transform: translateY(10px);
}

.main-nav .sub-menu .sub-menu {
    top: 0;
    left: 100%; 
    z-index: 1001;
    transform: none; 
}

.main-nav .sub-menu .menu-item-has-children > a {
    padding-right: 30px; 
}

.main-nav .sub-menu .menu-item-has-children > a::after {
    content: '\f105';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    right: 10px;
    top: 50%;
    left: auto; 
    transform: translateY(-50%); 
    transition: none;
    font-size: 10px;
    color: #333333;
}

.main-nav .sub-menu .menu-item-has-children:hover > a::after {
    transform: translateY(-50%); 
    color: #4baa5b;
}

.search-form {
display: flex;
align-items: center;
}
.search-form input {
border: 1px solid #ddd;
padding: 0.5rem;
border-radius: 4px 0 0 4px;
}
.search-form button {
background-color: var(--primary-color);
color: white;
border: none;
padding: 0.5rem 1rem;
border-radius: 0 4px 4px 0;
cursor: pointer;
transition: background-color 0.3s ease;
}
.search-form button:hover {
background-color: #45a049;
}
.menu-toggle {
display: none;
background: none;
border: none;
font-size: 1.5rem;
cursor: pointer;
color: var(--primary-color);
}
.mobile-search-icon,.header-lang-mobile {
display: none;
}
.mobile-search-form {
display: none;
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: rgba(255, 255, 255, 0.95);
z-index: 1001;
padding: 20px;
box-sizing: border-box;
}
.mobile-search-form.active {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
.mobile-search-close {
position: absolute;
top: 20px;
right: 20px;
background: none;
border: none;
font-size: 1.5rem;
color: var(--text-color);
cursor: pointer;
}
.aws-container .aws-search-form {
height: 40px;
}
.aws-container .aws-search-field {
border: 1px solid #ddd;
border-right: none;
border-radius: 4px 0 0 4px;
padding: 0.5rem;
font-size: 16px;
color: #333;
height: 100%;
}
.aws-container .aws-search-field::placeholder {
color: #888;
}
.aws-container .aws-search-form .aws-form-btn {
background: #4baa5b;
border: none;
border-radius: 0 4px 4px 0;
margin: 0;
cursor: pointer;
}
.aws-container .aws-search-form .aws-search-btn_icon {
color: white;
}
.aws-container .aws-search-form .aws-form-btn:hover {
background: #45a049;
}
.aws-container .aws-search-form .aws-search-btn {
padding: 0;
line-height: 10px;
width: 42px;
}
.aws-container .aws-search-form .aws-search-btn_icon {
display: inline-block;
fill: white;
height: 24px;
line-height: 24px;
position: relative;
width: 42px;
}
.aws-container .aws-search-form .aws-search-btn_icon::before {
content: '\f002';
font-family: 'Font Awesome 5 Free';
font-weight: 900;
font-size: 18px;
}
.aws-container .aws-search-form .aws-search-btn_icon svg {
display: none;
}
.related.products ul.products li.product .add_to_cart_button,.related.products ul.products li.product .my_quantity-full{
    display:none!important;
}
.button.alt.custom-phone-button {
display: block;
    width: 65%;
    background-color: #4CAF50;
    border-color: #4CAF50;
    color: #ffffff;
    margin-top: 15px;
    line-height: 1.5;
    padding: 0.6em 0.1em;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.2s ease-in-out;
    text-decoration: none;
    font-size: 1.3em;
    font-weight: bolder;
    text-align: center;
}

.button.alt.custom-phone-button:hover {
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15); 
    transform: translateY(-1px);
    text-decoration: underline;
}
.button.alt.custom-phone-button .dashicons {
    font-size: 1.2em;
    margin-right: 0.5em; 
    position: relative;
    top: 3px;
}
.button.alt.custom-phone-button:hover .dashicons-phone {
    text-decoration: none !important;
}
.button.alt.custom-phone-button .dashicons-phone::before {
    content: "\f345";
}
.site-header {
display: flex;
align-items: center;
justify-content: space-between;
padding: 10px 20px;
}
.logo img {
max-width: 200px;
height: auto;
}
.menu-toggle {
display: none;
}
.header-lang-mobile, .logo-mobile {
display: none;
}
.rtwpvg-grid-layout .rtwpvg-thumbnail-wrapper .rtwpvg-thumbnail-slider .rtwpvg-thumbnail-image img, .rtwpvg-wrapper .rtwpvg-thumbnail-wrapper .rtwpvg-thumbnail-slider .rtwpvg-thumbnail-image img {
padding-right:5px;
}
p.woocommerce-shipping-destination {
display: none !important;
}
.product-sku {
display: block;
margin-bottom: 15px;
font-size: 0.9em;
color: #666;
}
.rtwpvg-thumbnail-image img,
.rtwpvg-thumbnail-image,
.rtwpvg-thumbnail-slider,
.rtwpvg-thumbnail-wrapper,
.rtwpvg-container {
filter: none !important;
-webkit-filter: none !important;
backdrop-filter: none !important;
-webkit-backdrop-filter: none !important;
opacity: 1 !important;
visibility: visible !important;
}
@media (max-width: 768px) {
.header-top {
display: none;
}
.header-main {
display: flex;
justify-content: space-between;
align-items: center;
padding: 1rem 0;
}
.menu-toggle {
display: block;
background: none;
border: none;
font-size: 1.5rem;
cursor: pointer;
color: var(--primary-color);
}
.site-header {
padding: 10px;
}
.menu-toggle {
display: block;
background: none;
border: none;
font-size: 24px;
color: #333;
padding: 5px;
}
.header-cart {
margin-left: 10px;
}
.cart-icon {
font-size: 20px;
}
.cart-count {
width: 18px;
height: 18px;
font-size: 10px;
}
.cart-total {
font-size: 12px;
}
.logo img {
max-width: 180px;
height: auto;
}
.header-lang-mobile {
display: block;
}
.trp-language-switcher {
width: auto;
min-width: 80px;
max-width: 100px;
margin-top: 0.5rem;
}
.trp-language-switcher > div {
padding: 5px 5px;
background-position: calc(100% - 9px) calc(1em + -5px), calc(100% - 3px) calc(1em + 0px);
}
.trp-language-switcher > div > a {
padding: 2px 4px;
font-size: 12px;
}
.trp-language-switcher > div > a > img {
width: 16px;
height: 11px;
margin-right: 2px;
}
.search-form {
display: none;
}
.main-nav {
display: none;
width: 100%;
position: absolute;
top: 100%;
left: 0;
background-color: white;
box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
.main-nav.active {
display: block;
}
.main-nav ul {
flex-direction: column;
align-items: flex-start;
padding: 1rem;
}
.main-nav li {
margin: 0.5rem 0;
width: 100%;
}
.main-nav a {
display: block;
padding: 10px 15px;
border-bottom: 1px solid #f0f0f0;
}
.main-nav .menu-item-has-children > a {
display: flex;
justify-content: space-between;
align-items: center;
}
.main-nav .menu-item-has-children > a::after {
content: '\f107';
font-family: 'Font Awesome 5 Free';
font-weight: 900;
position: absolute;
right: 15px;
top: 50%;
transform: translateY(-50%);
transition: transform 0.3s ease;
}
.main-nav .menu-item-has-children:hover > a::after {
top: calc(50% + 17px);
left: calc(50% - 40px);
transform: translate(-50%, -50%) rotate(180deg);
text-decoration:none;
}
.main-nav .sub-menu {
display: none;
position: static;
opacity: 1;
visibility: visible;
box-shadow: none;
background-color: #f8f8f8;
padding-left: 15px;
}
.main-nav .menu-item-has-children.active > .sub-menu {
display: block;
}
.main-nav .sub-menu a {
padding: 8px 15px;
font-size: 14px;
}
.mobile-contact {
display: flex;
justify-content: space-around;
padding: 0.5rem 0;
background-color: #f0f0f0;
}
.mobile-contact a {
color: var(--text-color);
text-decoration: none;
font-size: 0.8rem;
display: flex;
flex-direction: column;
align-items: center;
text-align: center;
}
.mobile-contact i {
font-size: 1.2rem;
margin-bottom: 0.2rem;
}
.mobile-search-icon {
display: flex;
flex-direction: column;
align-items: center;
color: var(--text-color);
text-decoration: none;
font-size: 0.8rem;
}
.mobile-search-icon i {
font-size: 1.2rem;
margin-bottom: 0.2rem;
}
}
@media screen and (max-width: 360px) {
.logo img {
max-width: 100px;
}
.trp-language-switcher {
min-width: 70px;
max-width: 90px;
}
.trp-language-switcher > div > a {
font-size: 11px;
}
}