/*
Theme Name: Flatsome Child
Description: This is a child theme for Flatsome Theme
Author: UX Themes
Template: flatsome
Version: 3.0
*/
@font-face {
  font-family: 'Cuprum-Regular';
  src: url("assets/fonts/Cuprum-Regular.woff") format("woff"),
       url("assets/fonts/Cuprum-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'Cuprum-Bold';
  src: url("assets/fonts/Cuprum-Bold.woff") format("woff"),
       url("assets/fonts/Cuprum-Bold.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

:root {
  --color-primary: #86bc42;      
  --color-primary-dark: #6e9d34; 
  --color-secondary: #333333;    
  --color-text-light: #666666;   
  --color-accent-orange: #f15a24;
  --color-accent-yellow: #f39200;
  --color-bg-light: #f9f9f9;     
  --font-family-sans: 'Cuprum-Regular', "Outfit", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --transition-smooth: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  --shadow-premium: 0 8px 30px rgba(0, 0, 0, 0.05);
  --shadow-premium-hover: 0 15px 35px rgba(134, 188, 66, 0.15);
}

body {
  font-family: 'Cuprum-Regular', "Outfit", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: #333333;
  line-height: 1.6;
}

svg:not(:root).svg-inline--fa { overflow: visible; }
.svg-inline--fa {
  display: inline-block;
  font-size: inherit;
  height: 1em;
  overflow: visible;
  vertical-align: -.125em;
}
.svg-inline--fa.fa-w-12 { width: .75em; }
.svg-inline--fa.fa-w-14 { width: .875em; }
.svg-inline--fa.fa-w-16 { width: 1em; }

h1, h2, h3, h4, h5, h6, .nav > li > a {
  font-family: 'Cuprum-Regular', "Outfit", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif !important;
  font-weight: 700 !important;
}

.about-circle, .review-circle, .back-circle {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.about-circle .circle, .review-circle .circle, .back-circle .circle {
  position: absolute;
  border: 1px solid rgba(134, 188, 66, 0.25);
  border-radius: 50%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  transform-origin: center;
  animation: ecobaCirclePulse 6s infinite ease-in-out;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.about-circle .circle:nth-child(1), .review-circle .circle:nth-child(1), .back-circle .circle:nth-child(1) {
  width: 100%;
  height: 100%;
  animation-delay: 0s;
}
.about-circle .circle:nth-child(2), .review-circle .circle:nth-child(2), .back-circle .circle:nth-child(2) {
  width: 85%;
  height: 85%;
  animation-delay: 1.5s;
  border-color: rgba(134, 188, 66, 0.4);
}
.about-circle .circle:nth-child(3), .review-circle .circle:nth-child(3), .back-circle .circle:nth-child(3) {
  width: 70%;
  height: 70%;
  animation-delay: 3s;
  border-color: rgba(134, 188, 66, 0.55);
}
.about-circle .circle:nth-child(4), .review-circle .circle:nth-child(4), .back-circle .circle:nth-child(4) {
  width: 55%;
  height: 55%;
  animation-delay: 4.5s;
  border-color: rgba(134, 188, 66, 0.7);
}

@keyframes ecobaCirclePulse {
  0% {
    transform: rotate(0deg) scale(0.96);
    opacity: 0.4;
  }
  50% {
    transform: rotate(180deg) scale(1.04);
    opacity: 0.95;
  }
  100% {
    transform: rotate(360deg) scale(0.96);
    opacity: 0.4;
  }
}

.about-item:hover .about-circle .circle,
.review-item:hover .review-circle .circle,
#back-to-top:hover .back-circle .circle {
  border-color: #86bc42;
  animation-duration: 3s; 
  box-shadow: 0 0 10px rgba(134, 188, 66, 0.2);
}

#header.transparent {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  background-color: transparent !important;
}

.header-wrapper {
  background-color: transparent !important;
}

#top-bar {
  background-color: transparent !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3) !important;
  padding: 10px 0 !important;
  min-height: auto;
}

#top-bar .nav-divided > li + li > a::after {
  border-left-color: rgba(255, 255, 255, 0.2) !important;
}

#header-contact > li > a {
  color: #e3e3e3 !important;
  font-family: 'Cuprum-Regular', 'Cuprum-Regular', "Outfit", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif !important;
  font-size: 14px !important;
  font-weight: normal !important;
  text-transform: none !important;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 0;
}

#header-contact > li > a i,
#header-contact > li > a svg {
  color: #86bc42 !important;
  font-size: 16px !important;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

#header-contact > li > a:hover {
  color: #86bc42 !important;
}

#top-bar .nav-right > li > a,
#top-bar .account-item > a {
  color: #e3e3e3 !important;
  font-family: 'Cuprum-Regular', 'Cuprum-Regular', "Outfit", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif !important;
  font-size: 14px !important;
  font-weight: normal !important;
  text-transform: none !important;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  padding: 5px 0;
}

#top-bar .nav-right > li > a:hover,
#top-bar .account-item:hover > a {
  color: #86bc42 !important;
}

#top-bar .cart-item.has-icon > a {
  position: relative;
  padding-left: 8px;
}

#top-bar .cart-item.has-icon > a i {
  font-size: 18px;
  color: #e3e3e3 !important;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

#top-bar .cart-item.has-icon:hover > a i {
  color: #86bc42 !important;
}

#top-bar .cart-item.has-icon > a i::after {
  display: none !important; 
}

#top-bar .cart-item.has-icon > a .icon-shopping-cart::after,
#top-bar .cart-item.has-icon > a [data-icon-label]::after {
  content: attr(data-icon-label) !important;
  position: absolute !important;
  top: -6px !important;
  right: -8px !important;
  background-color: #86bc42 !important;
  color: #ffffff !important;
  font-size: 10px !important;
  font-weight: 700 !important;
  width: 16px !important;
  height: 16px !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  box-shadow: 0 2px 5px rgba(134, 188, 66, 0.3) !important;
  z-index: 10 !important;
}

#masthead {
  background-color: transparent !important;
  padding: 15px 0;
  border-bottom: none !important;
}

#logo img {
  max-height: 60px !important;
  width: auto;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.header-wrapper.stuck #logo img {
  max-height: 45px !important;
}

.header-nav-main > li {
  margin: 0 15px !important;
}

.header-nav-main > li > a {
  font-family: "Cuprum-Bold", 'Cuprum-Regular', "Outfit", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif !important;
  font-size: 15px !important;
  color: #e3e3e3 !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.03em !important;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
  padding: 18px 0 !important;
  position: relative;
}

.header-nav-main > li:hover > a {
  color: #86bc42 !important;
}

.header-nav-main > li.active > a,
.header-nav-main > li.current-menu-item > a {
  color: #86bc42 !important;
}

.header-search > a i {
  color: #e3e3e3 !important;
  font-size: 16px;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.header-search:hover > a i {
  color: #86bc42 !important;
}

#ux-search-dropdown {
  width: 450px !important;
  min-width: 450px !important;
  border-radius: 8px !important;
  padding: 15px !important;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.15) !important;
  border: 1px solid rgba(0, 0, 0, 0.05) !important;
  animation: slide-up 0.4s ease-out !important;
  right: -15px !important;
  left: auto !important;
}

.searchform-wrapper.ux-search-box {
  background-color: transparent !important;
}

.searchform-wrapper.ux-search-box input[type="search"] {
  border: 1px solid #ededed !important;
  border-radius: 4px 0 0 4px !important;
  height: 40px !important;
  padding: 0 15px !important;
  font-size: 14px !important;
  background-color: #ffffff !important;
  color: #333333 !important;
  width: 100% !important;
  box-shadow: none !important;
}

.searchform-wrapper.ux-search-box input[type="search"]:focus {
  border-color: #86bc42 !important;
}

.searchform-wrapper.ux-search-box .ux-search-submit {
  height: 40px !important;
  width: 45px !important;
  background-color: #86bc42 !important;
  border: 1px solid #86bc42 !important;
  border-radius: 0 4px 4px 0 !important;
  color: #ffffff !important;
  padding: 0 !important;
  margin: 0 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
  box-shadow: none !important;
}

.searchform-wrapper.ux-search-box .ux-search-submit:hover {
  background-color: #6e9d34 !important;
  border-color: #6e9d34 !important;
}

.searchform-wrapper.ux-search-box .ux-search-submit i {
  color: #ffffff !important;
  font-size: 16px !important;
}

@media (max-width: 849px) {

  .medium-logo-center .flex-left { display: none !important; }
  .medium-logo-center .logo { order: 1 !important; text-align: left !important; margin: 0 !important; flex: 1 1 auto !important; }
  .medium-logo-center .logo img { margin: 0 !important; }
  .medium-logo-center .flex-right { order: 2 !important; flex: 0 1 auto !important; }

  #header {
    position: absolute !important;
    top: 0; left: 0; width: 100%;
    z-index: 999;
    background-color: transparent !important;
  }

  .header-bg-container, 
  .header-bg-color {
    background-color: transparent !important;
  }

  .header-main {
    background-color: transparent !important;
    padding: 10px 0 !important;
  }

  .mobile-nav.nav-right { display: flex !important; align-items: center; justify-content: flex-end; }
  .mobile-nav.nav-right .cart-item { order: 1 !important; margin: 0 20px 0 0 !important; }
  .mobile-nav.nav-right .nav-icon { order: 2 !important; margin: 0 !important; }

  .mobile-nav a {
    color: #e3e3e3 !important;
    font-size: 24px !important;
    padding: 5px !important;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
    display: flex !important;
    align-items: center;
    gap: 8px;
  }

  .mobile-nav a:hover,
  .mobile-nav a:focus {
    color: #86bc42 !important;
  }

  .mobile-nav .icon-shopping-cart, 
  .mobile-nav .icon-menu {
    font-size: 24px !important;
    position: relative;
    display: inline-block;
  }

  .mobile-nav .menu-title { 
    display: inline-block !important; 
    font-size: 14px !important; 
    text-transform: uppercase; 
    font-family: "Cuprum-Bold", sans-serif; 
    color: #e3e3e3; 
    margin-top: 0 !important; 
    line-height: 1 !important;
  }

  .mobile-nav .icon-menu {
    top: 0 !important;
    line-height: 1 !important;
  }

  .mobile-nav [data-icon-label]::after {
    content: attr(data-icon-label) !important;
    position: absolute !important;
    top: -8px !important;
    right: -10px !important;
    width: 16px !important;
    height: 16px !important;
    line-height: 16px !important;
    text-align: center !important;
    color: #ffffff !important;
    background-color: #86bc42 !important;
    border-radius: 50% !important;
    font-size: 12px !important;
    font-weight: bold !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-shadow: 0 2px 5px rgba(134,188,66,0.3) !important;
  }
}

@font-face {
  font-family: 'Pacifico-Regular';
  src: url("assets/fonts/Pacifico-Regular.woff") format("woff"),
       url("assets/fonts/Pacifico-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

.xc-home-slider .flickity-viewport {
  height: 800px !important;
}

.xc-home-slider .banner {
  height: 800px !important;
  padding-top: 0 !important; 
  background-attachment: fixed !important;
}

.xc-home-slider .banner-bg img {
  object-fit: cover !important;
  object-position: center bottom !important;
}

.xc-home-slider .text-box {
  width: 100% !important;
  max-width: 900px !important;
  padding: 0 !important;
  background: none !important;
  border: none !important;
  box-shadow: none !important;
}

.xc-home-slider .text-box-content {
  background: none !important;
  box-shadow: none !important;
  border: none !important;
}

.xc-home-slider .text-inner h3 {
  font-family: 'Pacifico-Regular', cursive, 'Cuprum-Regular', "Outfit", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif !important;
  font-size: 60px !important;
  line-height: 65px !important;
  color: #ffffff !important;
  margin-bottom: 35px !important;
  text-transform: none !important; 
  letter-spacing: 2px !important;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.4) !important;
  font-weight: normal !important;
}

.xc-home-slider .text-inner p {
  font-family: 'Cuprum-Bold', 'Cuprum-Regular', "Outfit", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif !important;
  font-size: 22px !important;
  font-weight: 700 !important;
  color: #ffffff !important;
  text-transform: uppercase !important;
  letter-spacing: 4px !important;
  margin-bottom: 45px !important;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4) !important;
}

.xc-home-slider .text-inner .button,
.xc-home-slider .text-inner a.button,
.xc-home-slider .slider-button a,
.xc-home-slider .btn-outline,
.slider-button a,
.slider-button .btn,
.slider-button .button,
#main-slider .button,
#main-slider a.button,
#main-slider .slider-button a,
.button.white.is-outline,
a.button.white.is-outline {
  display: inline-block !important;
  background-color: transparent !important;
  border: 2px solid #ffffff !important;
  color: #ffffff !important;
  font-family: 'Cuprum-Bold', 'Cuprum-Regular', "Outfit", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  padding: 0 40px !important;
  height: 42px !important;
  line-height: 38px !important; 
  border-radius: 25px !important;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
  box-shadow: none !important;
}

.xc-home-slider .text-inner .button span,
.xc-home-slider .text-inner a.button span,
.xc-home-slider .slider-button a span,
.slider-button a span,
.slider-button .btn span,
.slider-button .button span,
#main-slider .button span,
#main-slider a.button span,
.button.white.is-outline span,
a.button.white.is-outline span {
  color: inherit !important;
}

.xc-home-slider .text-inner .button:hover,
.xc-home-slider .text-inner a.button:hover,
.xc-home-slider .slider-button a:hover,
.xc-home-slider .btn-outline:hover,
.slider-button a:hover,
.slider-button .btn:hover,
.slider-button .button:hover,
#main-slider .button:hover,
#main-slider a.button:hover,
.button.white.is-outline:hover,
a.button.white.is-outline:hover {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #86bc42 !important; 
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3) !important;
  transform: translateY(-3px) !important;
}

.xc-home-slider .text-inner .button:hover span,
.xc-home-slider .text-inner a.button:hover span,
.xc-home-slider .slider-button a:hover span,
.slider-button a:hover span,
.slider-button .btn:hover span,
.slider-button .button:hover span,
#main-slider .button:hover span,
#main-slider a.button:hover span,
.button.white.is-outline:hover span,
a.button.white.is-outline:hover span {
  color: #86bc42 !important; 
}

.xc-home-slider .flickity-page-dots {
  bottom: 30px !important;
}

.xc-home-slider .flickity-page-dots .dot {
  width: 14px !important;
  height: 14px !important;
  background-color: rgba(255, 255, 255, 0.7) !important;
  opacity: 1 !important;
  border: none !important;
  border-radius: 50% !important;
  margin: 0 6px !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 1px 3px rgba(0,0,0,0.15) !important;
}

.xc-home-slider .flickity-page-dots .dot:hover,
.xc-home-slider .flickity-page-dots .dot.is-selected {
  background-color: #86bc42 !important;
  opacity: 1 !important;
}

.xc-home-slider .flickity-prev-next-button {
  background-color: rgba(0, 0, 0, 0.15) !important;
  border-radius: 50% !important;
  width: 44px !important;
  height: 44px !important;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
}

.xc-home-slider .flickity-prev-next-button:hover {
  background-color: #86bc42 !important;
  color: #ffffff !important;
}

.xc-home-slider .flickity-prev-next-button svg {
  padding: 25% !important;
  color: #ffffff !important;
}

@media (max-width: 849px) {
  .xc-home-slider .flickity-viewport,
  .xc-home-slider .banner {
    height: 800px !important;
  }

  .xc-home-slider .text-inner {
    width: 90% !important;
    margin: 0 auto;
  }

  .xc-home-slider .text-inner h3 {
    font-size: 40px !important;
    line-height: 45px !important;
    margin-bottom: 30px !important;
    letter-spacing: 5px !important;
  }

  .xc-home-slider .text-inner p {
    font-size: 18px !important;
    letter-spacing: 1px !important;
    margin-bottom: 50px !important;
  }

  .xc-home-slider .text-inner .button,
  .xc-home-slider .text-inner a.button {
    width: 130px !important;
    height: 38px !important;
    line-height: 35px !important;
    padding: 0 !important;
    font-size: 13px !important;
    border-radius: 20px !important;
    text-align: center !important;
  }
}

.xc-section-title {
  margin-bottom: 70px !important;
}

.xc-section-title .section-title-main {
  font-family: 'Pacifico-Regular', cursive, 'Cuprum-Regular', "Outfit", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif !important;
  font-size: 60px !important;
  text-transform: capitalize !important;
  color: #000000 !important;
  font-weight: normal !important;
  line-height: normal !important;
}

.xc-section-title h2.section-title b {
  display: none !important;
}

.xc-section-title h2.section-title {
  justify-content: center !important;
}

.xc-home-strength {
  padding: 100px 0 !important;
  background-color: #ffffff !important;
}

.xc-home-strength .box-strength {
  text-align: center !important;
  margin-bottom: 60px !important;
  box-shadow: none !important;
  border: none !important;
  background: none !important;
}

.xc-home-strength .box-strength .box-image {
  position: relative !important;
  overflow: visible !important;
  width: 70px !important;
  height: 70px !important;
  margin: 0 auto !important;
}

.xc-home-strength .box-strength .box-image > div {
  position: relative !important;
  z-index: 2 !important;
}

.xc-home-strength .box-strength .box-image img {
  width: 70px !important;
  height: 70px !important;
  max-width: 70px !important;
  object-fit: contain !important;
}

.xc-home-strength .box-strength .box-image::before,
.xc-home-strength .box-strength .box-image::after,
.xc-home-strength .box-strength .box-image > div::before,
.xc-home-strength .box-strength .box-image > div::after {
  content: '' !important;
  position: absolute !important;
  top: 50% !important;
  left: 50% !important;
  width: 80px !important;
  height: 80px !important;
  border: 1px solid #c7c7c7 !important;
  border-radius: 92% 110% 132% 88% !important;
  box-sizing: border-box !important;
  pointer-events: none !important;
  z-index: 1 !important;
}

.xc-home-strength .box-strength .box-image::before {
  animation: xc-spin1 6s linear infinite !important;
}

.xc-home-strength .box-strength .box-image::after {
  animation: xc-spin2 6s linear infinite !important;
}

.xc-home-strength .box-strength .box-image > div::before {
  animation: xc-spin3 6s linear infinite !important;
}

.xc-home-strength .box-strength .box-image > div::after {
  animation: xc-spin4 6s linear infinite !important;
}

@keyframes xc-spin1 {
  0%   { transform: translate(-50%, -50%) rotate(0deg); }
  100% { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes xc-spin2 {
  0%   { transform: translate(-50%, -50%) rotate(72deg); }
  100% { transform: translate(-50%, -50%) rotate(-288deg); }
}

@keyframes xc-spin3 {
  0%   { transform: translate(-50%, -50%) rotate(-144deg); }
  100% { transform: translate(-50%, -50%) rotate(216deg); }
}

@keyframes xc-spin4 {
  0%   { transform: translate(-50%, -50%) rotate(216deg); }
  100% { transform: translate(-50%, -50%) rotate(-144deg); }
}

.xc-home-strength .box-strength .box-text {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.xc-home-strength .box-strength .box-text h4 {
  font-family: 'Cuprum-Bold', 'Cuprum-Regular', "Outfit", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif !important;
  font-size: 20px !important;
  color: #000000 !important;
  margin: 20px 0 10px !important;
  font-weight: normal !important;
  line-height: normal !important;
}

.xc-home-strength .box-strength .box-text p {
  font-family: 'Cuprum-Regular', 'Cuprum-Regular', "Outfit", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif !important;
  color: #666666 !important;
  font-size: 14px !important;
  line-height: 1.5 !important;
  margin: 0 !important;
}

.xc-home-strength .img-center img {
  max-width: 100% !important;
  height: auto !important;
}

.xc-home-strength .col.large-4:first-child .box-strength {
  animation: xc-slideInLeft 0.8s ease-out both !important;
}

.xc-home-strength .col.large-4:first-child .box-strength:nth-child(2) {
  animation-delay: 0.4s !important;
}

.xc-home-strength .col.large-4:nth-child(2) .img-center {
  animation: xc-zoomIn 0.8s ease-out both !important;
  animation-delay: 0.3s !important;
}

.xc-home-strength .col.large-4:last-child .box-strength {
  animation: xc-slideInRight 0.8s ease-out both !important;
}

.xc-home-strength .col.large-4:last-child .box-strength:nth-child(2) {
  animation-delay: 0.4s !important;
}

@keyframes xc-slideInLeft {
  0%   { opacity: 0; transform: translateX(-80px); }
  100% { opacity: 1; transform: translateX(0); }
}

@keyframes xc-slideInRight {
  0%   { opacity: 0; transform: translateX(80px); }
  100% { opacity: 1; transform: translateX(0); }
}

@keyframes xc-zoomIn {
  0%   { opacity: 0; transform: scale(0.3); }
  50%  { opacity: 1; }
  100% { opacity: 1; transform: scale(1); }
}

@media (max-width: 480px) {
  .xc-home-strength {
    padding: 60px 0 0 !important;
  }

  .xc-section-title .section-title-main {
    font-size: 30px !important;
  }

  .xc-section-title {
    margin-bottom: 40px !important;
  }

  .xc-home-strength .box-strength {
    padding: 0 40px !important;
    margin-bottom: 30px !important;
  }

  .xc-home-strength .img-center {
    margin-bottom: 70px !important;
  }
}

.xc-home-nature {
  padding: 0 !important;
  overflow: hidden !important;
}

.xc-home-nature .banner {
  background-color: transparent !important;
}

.xc-home-nature .banner-inner {
  background: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  border: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  padding: 0 !important;
}

.xc-home-nature .text-box {
  width: 100% !important;
}

.xc-home-nature .text-box-content {
  text-align: center !important;
  border: 5px solid #d7e3d0 !important;
  padding: 60px !important;
  background: none !important;
  box-shadow: none !important;
}

.xc-home-nature .text-inner h3 {
  font-family: 'Pacifico-Regular', cursive, 'Cuprum-Regular', "Outfit", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif !important;
  font-size: 80px !important;
  letter-spacing: 4px !important;
  color: #ffffff !important;
  text-transform: capitalize !important;
  margin: 10px 0 !important;
  font-weight: normal !important;
  line-height: normal !important;
}

.xc-home-nature .text-inner p {
  font-family: 'Cuprum-Regular', 'Cuprum-Regular', "Outfit", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif !important;
  font-size: 20px !important;
  text-transform: uppercase !important;
  letter-spacing: 1px !important;
  color: #ffffff !important;
  margin-bottom: 30px !important;
}

.xc-home-nature .text-inner .button {
  display: inline-block !important;
  border-radius: 20px !important;
  border: 1px solid #86bc42 !important;
  background-color: #86bc42 !important;
  color: #ffffff !important;
  line-height: 35px !important;
  width: 150px !important;
  padding: 0 !important;
  text-transform: none !important;
  font-family: 'Cuprum-Regular', 'Cuprum-Regular', "Outfit", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif !important;
  font-size: 14px !important;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
  margin: 0 !important;
  min-height: auto !important;
}

.xc-home-nature .text-inner .button:hover {
  background-color: transparent !important;
  color: #86bc42 !important;
  box-shadow: none !important;
}

@media (max-width: 480px) {
  .xc-home-nature {
    padding: 60px 0 !important;
  }

  .xc-home-nature .text-box-content {
    padding: 30px 10px !important;
  }

  .xc-home-nature .text-inner h3 {
    font-size: 36px !important;
    line-height: 45px !important;
  }

  .xc-home-nature .text-inner p {
    font-size: 14px !important;
    margin-bottom: 15px !important;
  }

  .xc-home-nature .text-inner .button {
    width: 130px !important;
  }
}

.xc-home-gallery {
  background: #fbfbfb !important;
  padding: 60px 0 !important;
  position: relative !important;
}

.xc-home-gallery::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  bottom: 0;
  background: #ffffff;
  z-index: 0;
}

.xc-home-gallery .section-content {
  z-index: 1;
}

.xc-home-gallery .slider-nav-reveal {
  overflow: visible !important;
}

.xc-home-gallery .flickity-prev-next-button {
  width: 40px !important;
  height: 40px !important;
  border: 1px solid #4d4d4d !important;
  border-radius: 50% !important;
  background: transparent !important;
  box-shadow: none !important;
  top: 50% !important;
  bottom: auto !important;
  transform: translateY(-50%) !important;
  opacity: 1 !important;
  transition: all 0.3s ease !important;
  padding: 0 !important;
  margin: 0 !important;
}

.xc-home-gallery .flickity-prev-next-button.previous {
  left: -55px !important;
  right: auto !important;
}

.xc-home-gallery .flickity-prev-next-button.next {
  right: -55px !important;
  left: auto !important;
}

.xc-home-gallery .flickity-prev-next-button svg {
  fill: #4d4d4d !important;
  transition: all 0.3s ease !important;
}

.xc-home-gallery .flickity-prev-next-button:hover {
  border-color: transparent !important;
  background: #ffffff !important;
  box-shadow: 0px 1px 4px rgba(0, 0, 0, 0.1) !important;
  transform: translateY(-50%) !important;
}

.xc-home-gallery .flickity-prev-next-button:hover svg {
  fill: #86bc42 !important;
}

.xc-home-products {
  padding: 100px 0 !important;
}

.xc-home-products .nav {
  margin: 0 auto 20px !important;
  text-align: center !important;
  display: table !important;
  border-bottom: 1px solid #ededed !important;
}

.xc-home-products .nav li {
  display: inline-block !important;
}

.xc-home-products .nav li a {
  font-family: 'Cuprum-Bold', 'Cuprum-Regular', "Outfit", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif !important;
  font-size: 16px !important;
  text-transform: uppercase !important;
  padding: 5px 15px !important;
  margin: 0 10px !important;
  position: relative !important;
  color: #333 !important;
  transition: all 0.3s ease !important;
}

.xc-home-products .nav li a::after {
  content: '' !important;
  position: absolute !important;
  left: 0 !important;
  bottom: 0 !important;
  width: 0 !important;
  height: 3px !important;
  background: #86bc42 !important;
  transition: all 0.3s ease !important;
}

.xc-home-products .nav li.active a,
.xc-home-products .nav li a:hover {
  color: #86bc42 !important;
}

.xc-home-products .nav li.active a::after,
.xc-home-products .nav li a:hover::after {
  width: 100% !important;
}

.xc-home-products .nav-line-bottom > li > a::before {
  display: none !important;
}

.xc-home-products .panel {
  animation: xc-fadeEffect 1s ease !important;
}

@keyframes xc-fadeEffect {
  from { opacity: 0; }
  to { opacity: 1; }
}

.xc-home-products .product-small .box {
  border: 1px solid #ededed !important;
  overflow: hidden !important;
  margin-bottom: 30px !important;
  transition: all 0.3s ease !important;
  border-radius: 0 !important;
}

.xc-home-products .product-small .box:hover {
  box-shadow: 3.5px 6px 25px 0 rgba(0, 0, 0, 0.1) !important;
  transform: translateY(-5px) !important;
}

.xc-home-products .box-text-products {
  text-align: center !important;
  background: #fafafa !important;
  padding: 10px !important;
  transition: all 0.3s ease !important;
}

.xc-home-products .product-small .box:hover .box-text-products {
  background: #86bc42 !important;
}

.xc-home-products .product-title a {
  text-transform: uppercase !important;
  font-size: 18px !important;
  color: #000 !important;
  transition: all 0.3s ease !important;
}

.xc-home-products .product-small .box:hover .product-title a {
  color: #fff !important;
}

.xc-home-products .price del {
  font-size: 14px !important;
  color: #999 !important;
}

.xc-home-products .price ins {
  font-family: 'Cuprum-Bold', 'Cuprum-Regular', "Outfit", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif !important;
  font-size: 18px !important;
  color: #86bc42 !important;
  text-decoration: none !important;
}

.xc-home-products .product-small .box:hover .price del,
.xc-home-products .product-small .box:hover .price ins,
.xc-home-products .product-small .box:hover .price span {
  color: #fff !important;
}

.xc-home-products .badge-inner.on-sale {
  background: #86bc42 !important;
}

.xc-home-products .badge-circle .badge-inner {
  border-radius: 50% !important;
  width: 40px !important;
  height: 40px !important;
  line-height: 40px !important;
  font-size: 14px !important;
}

.xc-home-products .slider-nav-reveal {
  overflow: visible !important;
}

.box-text-products {
  transform: translateY(50px) !important;
}

.product-small .box:hover .box-text-products {
  transform: translateY(0) !important;
}

.image-tools.grid-tools {
  display: none !important;
}

.xc-product-actions {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 5px !important;
  margin-top: 10px !important;
  padding: 0 !important;
}

.added_to_cart {
  display: none !important;
}

.xc-btn-cart,
.xc-btn-qv {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 35px !important;
  height: 35px !important;
  border-radius: 50% !important;
  border: 1px solid rgba(255, 255, 255, 0.3) !important;
  color: rgba(255, 255, 255, 0.3) !important;
  background: none !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  font-size: 14px !important;
  line-height: 35px !important;
  text-decoration: none !important;
  padding: 0 !important;
  margin: 0 !important;
  min-height: auto !important;
}

.xc-btn-cart:hover,
.xc-btn-qv:hover {
  color: #fff !important;
  border-color: #fff !important;
}

.xc-btn-cart i,
.xc-btn-qv i {
  font-size: 14px !important;
  line-height: 1 !important;
}

.xc-btn-buynow {
  display: inline-block !important;
  height: 35px !important;
  line-height: 35px !important;
  padding: 0 10px !important;
  border-radius: 20px !important;
  border: 1px solid rgba(255, 255, 255, 0.3) !important;
  color: rgba(255, 255, 255, 0.3) !important;
  background: none !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  text-decoration: none !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  margin: 0 !important;
  min-height: auto !important;
}

.xc-btn-buynow:hover {
  color: #fff !important;
  border-color: #fff !important;
}

.xc-btn-disabled {
  cursor: not-allowed !important;
  opacity: 0.5 !important;
}

@media (max-width: 480px) {
  .xc-home-products {
    padding: 60px 0 !important;
  }

  .xc-home-products .nav {
    display: block !important;
    border-bottom: none !important;
  }

  .xc-home-products .nav li {
    display: block !important;
    text-align: left !important;
  }

  .xc-home-products .nav li a {
    display: block !important;
    width: 80% !important;
    margin: 0 auto 10px !important;
    line-height: 30px !important;
    border: 1px solid #86bc42 !important;
    border-radius: 20px !important;
    text-align: left !important;
    padding: 5px 15px !important;
  }

  .xc-home-products .nav li a::after {
    display: none !important;
  }

  .xc-home-products .nav li.active a {
    background: #86bc42 !important;
    color: #fff !important;
  }

  .xc-home-products .product-title a {
    font-size: 14px !important;
  }

  .xc-home-products .price ins {
    font-size: 16px !important;
  }

  .xc-home-products .price del {
    font-size: 12px !important;
  }

  .box-text-products {
    transform: translateY(0) !important;
  }

  .xc-product-actions {
    display: none !important;
  }
}

@media (max-width: 768px) {
  .box-text-products {
    transform: translateY(0) !important;
  }
}

#home-gallery {
  padding: 50px 0;
  background-color: #ffffff;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
}

.gallery-item img {
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.gallery-item:hover img {
  transform: scale(1.08) rotate(1deg);
}

.gallery-item .overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-color: rgba(134, 188, 66, 0.15);
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.gallery-item:hover .overlay {
  opacity: 1;
}

#home-testimonials {
  padding: 80px 0;
  background-color: #f7faf2;
}

.reviews-slider {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}

.review-item {
  background-color: #ffffff;
  border-radius: 20px;
  padding: 40px 30px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
  position: relative;
  max-width: 350px;
  flex: 1 1 300px;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  border: 1px solid rgba(0,0,0,0.02);
  margin-top: 40px;
}

.review-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(134, 188, 66, 0.15);
  border-color: rgba(134, 188, 66, 0.1);
}

.review-item .review-circle {
  width: 80px;
  height: 80px;
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}

.review-content {
  position: relative;
  z-index: 2;
  margin-top: 15px;
}

.review-icon {
  font-family: Georgia, serif;
  font-size: 80px;
  line-height: 1;
  color: rgba(134, 188, 66, 0.12);
  position: absolute;
  top: -20px;
  left: 10px;
  z-index: -1;
  pointer-events: none;
}

.review-user {
  font-size: 16px;
  font-weight: 700;
  color: #333333;
  margin-bottom: 12px;
  text-transform: uppercase;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.review-item:hover .review-user {
  color: #86bc42;
}

.review-desc p {
  font-size: 14.5px;
  color: #666666;
  font-style: italic;
  line-height: 1.6;
}

#home-articles {
  padding: 80px 0;
  background-color: #ffffff;
}

.article-featured {
  background-color: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  height: 100%;
  border: 1px solid rgba(0,0,0,0.02);
}

.article-featured:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(134, 188, 66, 0.15);
}

.article-img {
  position: relative;
  overflow: hidden;
}

.article-img img {
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.article-featured:hover .article-img img,
.article-item:hover .article-img img {
  transform: scale(1.06);
}

.article-img .overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0) 50%, rgba(0,0,0,0.1) 100%);
}

.article-info {
  padding: 25px;
}

.article-title {
  display: block;
  font-size: 20px;
  font-weight: 700;
  color: #333333;
  margin-bottom: 12px;
  line-height: 1.4;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.article-title:hover {
  color: #86bc42;
}

.article-author {
  font-size: 13px;
  color: #666666;
  margin-bottom: 15px;
}
.article-author span {
  font-weight: 700;
  color: #86bc42;
}

.article-desc {
  font-size: 14px;
  color: #666666;
  line-height: 1.6;
  margin-bottom: 20px;
}

.article-readmore {
  font-size: 14px;
  font-weight: 700;
  color: #86bc42;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.article-readmore:hover {
  color: #6e9d34;
  transform: translateX(5px);
}

.article-info-relate {
  display: flex;
  gap: 20px;
  margin-top: 20px;
  padding-top: 15px;
  border-top: 1px solid rgba(0,0,0,0.06);
  font-size: 12px;
  color: #a0a0a0;
}
.article-info-relate i {
  color: #86bc42;
  margin-right: 5px;
}

.article-list {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.article-list .article-item {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0,0,0,0.02);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.article-list .article-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(134, 188, 66, 0.15);
}

.article-list .article-info {
  padding: 15px 20px;
}

.article-list .article-title {
  font-size: 16px;
  margin-bottom: 8px;
}

.article-list .article-desc {
  font-size: 13.5px;
  margin-bottom: 10px;
}

.article-viewmore {
  display: inline-block;
  margin-top: 40px;
  background-color: transparent;
  color: #86bc42;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 10px 35px;
  border-radius: 30px;
  border: 2px solid #86bc42;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.article-viewmore:hover {
  background-color: #86bc42;
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(134, 188, 66, 0.3);
  transform: translateY(-2px);
}

.xc-footer,
.xc-footer .section-bg {
  background: url("assets/images/ft_bg_img.png") no-repeat center center !important;
  background-size: cover !important;
}

.xc-footer {
  padding-top: 150px !important; 
  padding-bottom: 50px !important;
  position: relative !important;
  margin-top: 100px !important;
  overflow: visible !important; 
}

.tooltipster-base,
.tooltipster-default,
.tooltipster-fall,
.tooltipster-popup,
.tooltipster-grow,
.tooltipster-slide,
.tooltipster-fade {
  display: none !important;
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

.xc-footer .section-content {
  position: static !important;
}

.xc-footer .row-contact-form {
  position: absolute !important;
  top: 0 !important;
  left: 50% !important;
  transform: translate(-50%, -50%) !important;
  width: calc(100% - 30px) !important;
  max-width: 1080px !important;
  background-color: #86bc42 !important; 
  border-radius: 0 !important;
  box-shadow: none !important;
  padding: 30px 40px !important;
  z-index: 10 !important;
  box-sizing: border-box !important;
  margin: 0 !important;
}

.xc-footer .row-contact-form .col {
  padding-bottom: 0 !important;
}

.xc-footer-form {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: wrap !important;
  align-items: center !important;
  justify-content: space-between !important;
  width: 100% !important;
  gap: 20px !important;
  box-sizing: border-box !important;
}

.xc-footer-form__info {
  flex: 1 1 450px !important;
  text-align: left !important;
}

.xc-footer-form__title {
  font-family: 'Cuprum-Regular', 'Cuprum-Regular', "Outfit", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif !important;
  font-size: 24px !important;
  color: #ffffff !important;
  margin: 0 0 5px 0 !important;
  font-weight: normal !important;
  text-transform: uppercase !important;
  letter-spacing: 1px !important;
  line-height: normal !important;
}

.xc-footer-form__subtitle {
  font-family: 'Cuprum-Regular', 'Cuprum-Regular', "Outfit", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif !important;
  font-size: 15px !important;
  color: rgba(255, 255, 255, 0.75) !important;
  display: block !important;
  line-height: 1.3 !important;
}

.xc-footer-form__input-group {
  display: flex !important;
  align-items: center !important;
  flex: 0 1 450px !important;
  width: 100% !important;
  margin-left: 50px !important;
  border-bottom: 1px solid #ededed !important;
  box-sizing: border-box !important;
}

.xc-footer-form__input-group p {
  display: flex !important;
  align-items: center !important;
  margin: 0 !important;
  padding: 0 !important;
  width: 100% !important;
}

.xc-footer-form__input-group br {
  display: none !important;
}

.xc-footer-form__input-group .wpcf7-form-control-wrap {
  flex-grow: 1 !important;
  display: block !important;
}

.xc-footer-form__input {
  background: none !important;
  border: 0 !important;
  outline: none !important;
  color: #ffffff !important;
  padding: 8px 10px !important;
  height: 38px !important;
  font-family: 'Cuprum-Regular', 'Cuprum-Regular', "Outfit", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif !important;
  font-size: 16px !important;
  box-shadow: none !important;
  width: 100% !important;
  box-sizing: border-box !important;
}

.xc-footer-form__input::placeholder {
  color: rgba(255, 255, 255, 0.6) !important;
}

.xc-footer-form__submit {
  background: none !important;
  border: none !important;
  outline: none !important;
  cursor: pointer !important;
  color: #ffffff !important;
  padding: 0 10px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
  box-shadow: none !important;
  height: 38px !important;
}

.xc-footer-form__submit svg {
  width: 16px !important;
  height: 16px !important;
  fill: currentColor !important;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
}

.xc-footer-form__submit:hover svg {
  transform: translateX(4px) !important;
}

.xc-footer .wpcf7-form {
  display: block !important;
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
}

.xc-footer .wpcf7-not-valid-tip {
  color: #ffffff !important;
  background-color: #f15a24 !important;
  font-size: 12px !important;
  padding: 4px 10px !important;
  border-radius: 4px !important;
  margin-top: 5px !important;
  display: block !important;
  font-family: 'Cuprum-Regular', 'Cuprum-Regular', "Outfit", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif !important;
}

.xc-footer .wpcf7-response-output {
  border: 2px solid #ffffff !important;
  background-color: rgba(255, 255, 255, 0.15) !important;
  color: #ffffff !important;
  border-radius: 8px !important;
  font-family: 'Cuprum-Bold', 'Cuprum-Regular', "Outfit", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif !important;
  font-size: 15px !important;
  padding: 12px 20px !important;
  margin: 15px 0 0 0 !important;
  text-align: center !important;
  width: 100% !important;
  box-sizing: border-box !important;
}

.xc-footer .wpcf7-spinner {
  margin: 0 0 0 10px !important;
  vertical-align: middle !important;
  background-color: #ffffff !important;
}

.xc-footer .row-logo {
  margin-bottom: 50px !important;
}

.xc-footer .row-logo .col-inner {
  text-align: center !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
}

.xc-footer .logo-footer {
  max-width: 126px !important;
  margin: 0 auto 20px auto !important;
}

.xc-footer .logo-footer img {
  max-height: 60px !important;
  width: auto !important;
  display: inline-block !important;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
}

.xc-footer .logo-footer:hover img {
  transform: scale(1.05) !important;
}

.xc-footer .social-icons {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 0 !important;
  margin-top: 20px !important;
}

.xc-footer .social-icons a {
  width: 40px !important;
  height: 40px !important;
  line-height: 40px !important;
  border: none !important;
  border-radius: 0 !important;
  background-color: transparent !important;
  color: #969c9e !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 24px !important;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
  margin: 0 !important;
  padding: 0 !important;
  box-shadow: none !important;
}

.xc-footer .social-icons a i {
  font-size: 24px !important;
  margin: 0 !important;
  color: inherit !important;
}

.xc-footer .social-icons a:hover {
  transform: none !important;
  background-color: transparent !important;
  box-shadow: none !important;
}

.xc-footer .social-icons a.facebook:hover,
.xc-footer .social-icons .facebook:hover {
  color: #3b5998 !important;
  background-color: transparent !important;
  border-color: transparent !important;
  box-shadow: none !important;
}

.xc-footer .social-icons a.youtube:hover,
.xc-footer .social-icons .youtube:hover {
  color: #ff0000 !important;
  background-color: transparent !important;
  border-color: transparent !important;
  box-shadow: none !important;
}

.xc-footer .widget-title {
  font-family: 'Cuprum-Regular', 'Cuprum-Regular', "Outfit", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif !important;
  font-size: 1.375em !important;
  color: #ffffff !important;
  text-transform: uppercase !important;
  letter-spacing: 1px !important;
  margin-bottom: 30px !important;
  padding-bottom: 0 !important;
  position: relative !important;
  font-weight: 700 !important;
}

.xc-footer .widget-title::after {
  display: none !important;
}

.xc-footer .ux-menu {
  padding: 0 !important;
  list-style: none !important;
}

.xc-footer .ux-menu-link {
  margin-bottom: 12px !important;
}

.xc-footer .ux-menu-link__link {
  font-family: 'Cuprum-Regular', 'Cuprum-Regular', "Outfit", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif !important;
  font-size: 14.5px !important;
  color: #969c9e !important;
  border-bottom: none !important;
  padding: 0 !important;
  min-height: auto !important;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
  display: inline-flex !important;
  align-items: flex-start !important;
}

.xc-footer .ux-menu-link__link:hover {
  color: #ffffff !important;
  transform: none !important;
  background: transparent !important;
}

.xc-footer .footer-menu-contact .ux-menu-link__link:hover {
  transform: none !important;
}

.xc-footer .ux-menu-link__icon {
  color: #969c9e !important;
  font-size: 16px !important;
  margin-right: 12px !important;
  margin-top: 3px !important;
  width: auto !important;
  height: auto !important;
  flex-shrink: 0 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
}

.xc-footer .ux-menu-link__link:hover .ux-menu-link__icon {
  color: #ffffff !important;
}

.xc-footer .ux-menu-link__text {
  line-height: 1.5 !important;
}

.xc-footer .gallery-col {
  margin-bottom: 0 !important;
  padding: 0 6px 12px 6px !important;
}

.xc-footer .gallery-wrapper.row-small {
  margin-left: -6px !important;
  margin-right: -6px !important;
}

.xc-footer .gallery-box {
  border-radius: 0 !important;
  overflow: hidden !important;
  position: relative !important;
  box-shadow: none !important;
  border: none !important;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
}

.xc-footer .gallery-box .box-image {
  aspect-ratio: 1 / 1 !important;
  width: 100% !important;
  height: 100% !important;
  background: none !important;
  overflow: hidden !important;
}

.xc-footer .gallery-box .box-image img {
  object-fit: cover !important;
  width: 100% !important;
  height: 100% !important;
  transition: none !important;
}

.xc-footer .gallery-box:hover .box-image img {
  transform: none !important;
}

.xc-footer .gallery-box .overlay {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  background-color: rgba(0, 0, 0, 0.4) !important;
  opacity: 0 !important;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
  pointer-events: none !important;
}

.xc-footer .gallery-box:hover .overlay {
  opacity: 1 !important;
}

@media (max-width: 849px) {
  .xc-footer {
    padding-top: 100px !important;
    margin-top: 60px !important;
  }

  .xc-footer .row-contact-form {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    transform: none !important;
    width: 100% !important;
    margin: -110px auto 40px auto !important;
    padding: 20px !important;
  }

  .xc-footer-form {
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 15px !important;
    max-width: 100% !important;
    margin: 0 !important;
  }

  .xc-footer-form__info {
    flex: 1 1 100% !important;
    text-align: center !important;
  }

  .xc-footer-form__title {
    font-size: 18px !important;
    margin-bottom: 10px !important;
  }

  .xc-footer-form__input-group {
    flex: 1 1 100% !important;
    max-width: 100% !important;
    margin-left: 0 !important;
    margin-top: 5px !important;
  }

  .xc-footer .row-logo {
    margin-bottom: 30px !important;
  }
}

.absolute-footer,
.footer-copyright {
  background-color: #000000 !important;
  color: #969c9e !important;
  padding: 15px 0 !important;
  font-size: 13.5px !important;
  font-family: 'Cuprum-Regular', 'Cuprum-Regular', "Outfit", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif !important;
  text-align: center !important;
  border-top: 1px solid rgba(255, 255, 255, 0.05) !important;
}

@media only screen and (max-width: 48em) {
  body {
    font-size: 14px;
    padding-bottom: 60px; 
  }

  .large--one-half, .large--one-third, .large--one-quarter, 
  .large--three-twelfths, .large--six-twelfths, .large--ten-twelfths {
    width: 100% !important;
    float: none !important;
  }

  .medium--one-half {
    width: 50% !important;
  }

  .medium--one-whole {
    width: 100% !important;
  }

  .small--one-half {
    width: 50% !important;
  }

  .small--one-whole {
    width: 100% !important;
  }

  .slider-text-bold {
    font-size: 28px;
  }
  .slider-text-nor {
    font-size: 16px;
  }
  .main-slide {
    height: 380px;
  }

  .about-left .about-item,
  .about-right .about-item {
    text-align: center;
    flex-direction: column;
    align-items: center;
    margin-bottom: 30px;
  }

  .about-icon {
    margin: 0 0 15px 0;
  }

  #home-banner1 {
    padding: 60px 0;
    text-align: center;
  }
  .banner-content {
    max-width: 100%;
  }
  .banner-inner {
    padding: 25px;
  }

  #home-collections .tablinks {
    font-size: 14px;
    margin: 0 5px;
  }

  #back-to-top {
    bottom: 75px;
    right: 15px;
    width: 42px;
    height: 42px;
  }
}

.xc-cart-popup {
  display: none;
  position: fixed;
  z-index: 9999999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  padding-top: 5%;
}

.xc-cart-popup__content {
  position: relative;
  margin: auto;
  padding: 0;
  width: 80%;
  max-width: 850px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2), 0 6px 20px rgba(0,0,0,0.19);
  animation: xcCartSlideDown 0.4s ease;
  border-radius: 8px;
  overflow: visible;
}

.xc-cart-popup__content--show {
  display: block;
}

@keyframes xcCartSlideDown {
  from { transform: translateY(-80px); opacity: 0; }
  to   { transform: translateY(0);     opacity: 1; }
}

.xc-cart-popup__close {
  width: 30px;
  height: 30px;
  line-height: 30px;
  border-radius: 50%;
  display: inline-block;
  text-align: center;
  background: #86bc42;
  color: #fff;
  font-size: 14px;
  position: absolute;
  top: -15px;
  right: -15px;
  z-index: 99;
  cursor: pointer;
  transition: all 0.3s ease;
}

.xc-cart-popup__close:hover {
  background: #6fa032;
}

.xc-cart-popup__close i {
  color: #fff !important;
}

.xc-cart-popup__body {
  background: #fff;
  border: 1px solid #ededed;
  border-radius: 8px;
  overflow: hidden;
}

.xc-cart-popup__header {
  border-bottom: 1px solid #ededed;
}

.xc-cart-popup__title {
  color: #86bc42;
  margin: 0;
  padding: 15px;
  font-family: 'Cuprum-Bold', sans-serif;
  font-size: 16px;
  text-transform: uppercase;
  font-weight: normal;
  line-height: normal;
}

.xc-cart-popup__empty {
  padding: 40px;
  text-align: center;
  color: #999;
}

.xc-cart-popup__table-wrap {
  max-height: 250px;
  overflow-y: auto;
}

.xc-cart-popup__table-wrap::-webkit-scrollbar { width: 6px; background: #fff; }
.xc-cart-popup__table-wrap::-webkit-scrollbar-thumb { background: #86bc42; }
.xc-cart-popup__table-wrap::-webkit-scrollbar-track { background: #fff; }

.xc-cart-popup__table {
  width: 100%;
  border-collapse: collapse;
}

.xc-cart-popup__table th {
  padding: 5px !important;
  color: #333;
  font-weight: normal;
  font-size: 12px;
  min-width: 100px;
  border-bottom: 1px solid #ededed;
}

.xc-cart-popup__table td {
  padding: 5px !important;
  border-bottom: 1px solid #ededed;
  border-left: none;
  border-right: none;
  border-top: none;
}

.xc-cart-popup__cell--img {
  text-align: center;
  width: 100px;
}

.xc-cart-popup__cell--img img {
  max-width: 100px;
  vertical-align: middle;
}

.xc-cart-popup__cell--title a {
  color: #333;
  font-family: 'Cuprum-Bold', sans-serif;
  font-size: 12px;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s ease;
}

.xc-cart-popup__cell--title a:hover {
  color: #86bc42;
}

.xc-cart-popup__cell--price {
  min-width: 110px;
}
.xc-cart-popup__cell--price span {
  display: block;
  font-family: 'Cuprum-Bold', sans-serif;
  font-size: 12px;
  white-space: nowrap;
}

.xc-cart-popup__price--current {
  color: #86bc42;
}

.xc-cart-popup__price--original {
  color: #bebebe;
}

.xc-cart-popup__price--sale {
  display: inline-block !important;
  text-align: center;
  padding: 2px 3px;
  color: #fff !important;
  background: #86bc42;
  font-size: 12px !important;
}

.xc-qty-wrapper {
  display: inline-flex;
  align-items: center;
  border: 1px solid #ededed;
  border-radius: 3px;
  overflow: hidden;
}

.xc-qty-btn {
  background: #f9f9f9;
  border: none;
  width: 25px;
  height: 30px;
  line-height: 30px;
  cursor: pointer;
  font-size: 16px;
  color: #333;
  padding: 0;
  margin: 0;
}

.xc-qty-btn:hover {
  background: #eee;
}

.xc-cart-popup__qty-input {
  width: 40px !important;
  height: 30px !important;
  text-align: center;
  border: none !important;
  border-left: 1px solid #ededed !important;
  border-right: 1px solid #ededed !important;
  border-radius: 0 !important;
  padding: 0 !important;
  font-size: 14px;
  -moz-appearance: textfield;
}

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

.xc-cart-popup__cell--total {
  color: #86bc42;
  font-family: 'Cuprum-Bold', sans-serif;
  font-size: 12px;
  white-space: nowrap;
}

.xc-cart-popup__cell--remove a {
  color: #333;
  font-size: 18px;
  transition: all 0.3s ease;
}

.xc-cart-popup__cell--remove a:hover {
  color: #86bc42;
}

.xc-cart-popup__mobile-list {
  display: none;
}

.xc-cart-popup__mobile-list ul {
  margin: 0;
  padding: 15px;
  list-style: none;
  max-height: 350px;
  overflow-y: auto;
}

.xc-cart-popup__mobile-list ul::-webkit-scrollbar { width: 4px; background: #fff; }
.xc-cart-popup__mobile-list ul::-webkit-scrollbar-thumb { background: #86bc42; }

.xc-cart-popup__mobile-item {
  display: flex;
  gap: 10px;
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid #ededed;
}

.xc-cart-popup__mobile-img {
  width: 33%;
  flex-shrink: 0;
}

.xc-cart-popup__mobile-img img {
  width: 100%;
  vertical-align: middle;
}

.xc-cart-popup__mobile-info {
  position: relative;
  padding-right: 35px;
  flex: 1;
}

.xc-cart-popup__mobile-title {
  margin-bottom: 15px;
}

.xc-cart-popup__mobile-title a {
  color: #333;
  font-family: 'Cuprum-Bold', sans-serif;
  font-size: 12px;
  text-transform: uppercase;
  text-decoration: none;
}

.xc-cart-popup__mobile-title a:hover {
  color: #86bc42;
}

.xc-cart-popup__mobile-price {
  margin-bottom: 15px;
}

.xc-cart-popup__mobile-price span {
  font-size: 12px;
}

.xc-cart-popup__mobile-qty {
  font-size: 12px;
  color: #666;
}

.xc-cart-popup__mobile-remove {
  position: absolute;
  top: 0;
  right: 0;
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
}

.xc-cart-popup__mobile-remove a {
  display: block;
  background: #f8f8f8;
  color: #b4b4b6;
}

.xc-cart-popup__footer {
  display: flex;
  padding: 15px;
  border-top: 1px solid #ededed;
}

.xc-cart-popup__footer-left {
  width: 50%;
}

.xc-cart-popup__footer-right {
  width: 50%;
  text-align: right;
}

.xc-cart-popup__notes textarea {
  width: 100%;
  min-height: 60px;
  border: 1px solid #ededed;
  border-radius: 3px;
  padding: 8px 10px;
  font-size: 13px;
  resize: vertical;
}

.xc-cart-popup__continue a {
  color: #333;
  font-size: 13px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.xc-cart-popup__continue a:hover {
  color: #86bc42;
}

.xc-cart-popup__summary h3 {
  color: #333;
  margin: 0;
  padding: 0;
  font-family: 'Cuprum-Bold', sans-serif;
  font-size: 14px;
  font-weight: normal;
  line-height: normal;
}

.xc-cart-popup__summary h3 span {
  color: #86bc42;
}

.xc-cart-popup__savings {
  font-size: 12px;
  color: #86bc42;
  margin: 5px 0 0;
}

.xc-cart-popup__actions {
  margin-top: 15px;
}

.xc-cart-popup__btn--update,
.xc-cart-popup__btn--checkout {
  display: inline-block;
  padding: 0 15px;
  height: 38px;
  line-height: 38px;
  font-family: 'Cuprum-Bold', sans-serif;
  font-size: 12px;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  margin-bottom: 0;
}

.xc-cart-popup__btn--update {
  background: #e6e6e6;
  color: #333;
  margin-right: 5px;
}

.xc-cart-popup__btn--update:hover {
  background: #d4d4d4;
}

.xc-cart-popup__btn--checkout {
  background: #86bc42;
  color: #fff;
}

.xc-cart-popup__btn--checkout:hover {
  background: #6fa032;
  color: #fff;
}

@media (max-width: 768px) {
  .xc-cart-popup__content {
    width: 95%;
  }

  .xc-cart-popup__table-wrap {
    display: none;
  }

  .xc-cart-popup__mobile-list {
    display: block;
  }

  .xc-cart-popup__footer {
    flex-direction: column;
  }

  .xc-cart-popup__footer-left {
    display: none;
  }

  .xc-cart-popup__footer-right {
    width: 100%;
  }

  .xc-cart-popup__close {
    top: 5px;
    right: 5px;
  }
}

.product-quick-view .product-title {
  font-size: 18px !important;
  color: #333333 !important;
  margin: 0 0 5px !important;
  font-family: 'Cuprum-Bold', 'Cuprum-Regular', "Outfit", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif !important;
  text-transform: uppercase !important;
}

.product-quick-view .price {
  font-size: 20px !important;
  color: #86bc42 !important;
  font-family: 'Cuprum-Bold', 'Cuprum-Regular', "Outfit", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif !important;
}

.product-quick-view .price del {
  color: #bebebe !important;
  font-size: 16px !important;
  margin-left: 10px;
}

.product-quick-view .single_add_to_cart_button {
  background: #86bc42 !important;
  color: #fff !important;
  font-family: 'Cuprum-Bold', 'Cuprum-Regular', "Outfit", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif !important;
  text-transform: uppercase !important;
  border-radius: 3px !important;
}

.product-quick-view .single_add_to_cart_button:hover {
  background: #79a93b !important;
}

.breadcrumb-w-img {
  position: relative;
  background-image: url('https://theme.hstatic.net/1000336536/1000456148/14/breadcrumb_bg.jpg?v=287');
  background-size: cover;
  background-position: center;
  padding: 60px 0;
  margin-bottom: 40px;
  text-align: center;
  color: #fff;
}
.breadcrumb-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.5);
}
.breadcrumb-content {
  position: relative;
  z-index: 2;
}
.breadcrumb-big h2 {
  color: #fff;
  font-family: 'Cuprum-Regular', "Outfit", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif !important;
  font-size: 32px;
  margin-bottom: 15px;
  text-transform: uppercase;
}
.breadcrumb-small {
  font-size: 14px;
}
.breadcrumb-small a {
  color: #86bc42;
  text-decoration: none;
}
.breadcrumb-small a:hover {
  text-decoration: underline;
}
.breadcrumb-small span {
  margin: 0 10px;
  color: #fff;
}

.pro-content-head {
  border-bottom: 1px solid #ededed;
  padding-bottom: 15px;
  margin-bottom: 15px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #666;
}
.pro-content-head > span {
  color: #ddd;
}
.pro-content-head .title {
  color: #333;
  font-weight: 600;
}
.pro-content-head a {
  color: #86bc42;
}
.product-title {
  font-family: 'Cuprum-Regular', "Outfit", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif !important;
  font-size: 26px !important;
  margin-bottom: 15px;
  color: #333;
}

div.product-info .price,
div.product-summary .price {
  font-family: 'Cuprum-Regular', "Outfit", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif !important;
  display: flex !important;
  flex-wrap: wrap !important;
  align-items: center !important;
  gap: 10px !important;
  margin-bottom: 20px !important;
}

div.product-info .price ins,
div.product-summary .price ins,
div.product-info .price ins .amount,
div.product-summary .price ins .amount,
div.product-info .price > .amount,
div.product-summary .price > .amount,
#wrapper div.product-info .price .amount {
  text-decoration: none !important;
  background: transparent !important;
  font-size: 26px !important;
  font-weight: bold !important;
  color: #86bc42 !important;
}

div.product-info .price del,
div.product-summary .price del,
div.product-info .price del .amount,
div.product-summary .price del .amount {
  font-size: 18px !important;
  color: #bebebe !important;
  opacity: 1 !important;
  font-weight: normal !important;
}

div.product-info .price .PriceSaving,
div.product-summary .price .PriceSaving {
  font-size: 14px !important;
  color: #333 !important;
  font-weight: normal !important;
}

div.product-summary .price .price-wrapper .saved-badge {
  display: none !important;
}

.product-variants-wrapper {
  margin-bottom: 20px;
}
.product-hotline {
  font-size: 14px;
  color: #333;
}
.product-hotline a {
  color: #86bc42;
  font-weight: 700;
  font-size: 16px;
}
.qty-addcart .quantity {
  margin-right: 0 !important;
}
.product-actions {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}
.single_add_to_cart_button {
  background-color: #f7941d !important;
  border: none !important;
  color: #fff !important;
  border-radius: 99px !important;
  font-family: 'Cuprum-Regular', "Outfit", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif !important;
  font-weight: 700 !important;
  font-size: 14px !important;
  text-transform: uppercase !important;
  padding: 10px 30px !important;
  transition: all 0.3s ease !important;
  margin-right: 10px !important;
  min-height: 45px !important;
}
.single_add_to_cart_button:hover {
  background-color: #e08316 !important;
  color: #fff !important;
}

.ux-buy-now-button {
  background-color: #86bc42 !important;
  border: none !important;
  color: #fff !important;
  border-radius: 99px !important;
  font-family: 'Cuprum-Regular', "Outfit", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif !important;
  font-weight: 700 !important;
  font-size: 14px !important;
  text-transform: uppercase !important;
  padding: 10px 30px !important;
  transition: all 0.3s ease !important;
  min-height: 45px !important;
}
.ux-buy-now-button:hover {
  background-color: #75a439 !important;
  color: #fff !important;
}

.pro-content-info {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px dashed #ededed;
}
.pro-tag {
  margin-top: 10px !important;
}
body .pro-tag ul.product-tags {
  display: block !important;
  margin: 0 !important;
  padding: 0 !important;
}
body .pro-tag ul.product-tags li {
  display: inline-block !important;
  list-style: none !important;
  list-style-type: none !important;
  margin: 0 !important;
  padding: 0 !important;
}
body .pro-tag ul.product-tags li.title {
  margin-right: 10px !important;
}
body .pro-tag ul.product-tags li.tag a {
  font-size: 12px !important;
  color: #999 !important;
  border: 1px dashed #ededed !important;
  padding: 3px 8px !important;
  border-radius: 3px !important;
  display: inline-block !important;
  transition: all 0.3s ease !important;
  background: transparent !important;
  margin: 3px !important;
  text-transform: lowercase !important;
}
body .pro-tag ul.product-tags li.tag a:hover {
  color: #86bc42 !important;
  border-color: #86bc42 !important;
}

body ul.product-tabs {
  border-bottom: 1px solid #ededed !important;
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 30px !important;
  margin-bottom: 20px !important;
  border-top: none !important;
  border-left: none !important;
  border-right: none !important;
  padding: 0 !important;
}
body ul.product-tabs li {
  border: none !important;
  background: transparent !important;
  padding: 0 !important;
  margin: 0 !important;
}
body ul.product-tabs li a {
  font-family: 'Cuprum-Regular', "Outfit", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif !important;
  font-weight: 700 !important;
  font-size: 15px !important;
  color: #333 !important;
  text-transform: uppercase !important;
  padding: 10px 0 !important;
  border: none !important;
  border-bottom: 2px solid transparent !important;
  background: transparent !important;
  box-shadow: none !important;
}
body ul.product-tabs li.active a,
body ul.product-tabs li a:hover {
  color: #86bc42 !important;
  border-bottom-color: #86bc42 !important;
  background: transparent !important;
}

.product-quick-view .product-lightbox-inner {
  border-radius: 8px !important;
  overflow: hidden !important;
}

.product-page-title.featured-title {
  padding-top: 150px !important;
  padding-bottom: 80px !important;
}

.shop-page-title.featured-title .page-title-bg,
.shop-page-title.featured-title .title-bg {
  background-image: url('/wp-content/themes/flatsome-child/images/breadcrumb_bg1.png') !important;
  background-size: cover !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
}

.product-page-title.featured-title .title-overlay {
  background-color: rgba(0, 0, 0, 0.4) !important;
}

.product-page-title.featured-title .product-title {
  font-size: 32px !important;
  text-transform: uppercase !important;
  font-weight: bold !important;
  margin-bottom: 15px !important;
}

.vertical-thumbnails {
  position: relative !important;
  display: flex !important;
  flex-direction: column;
  align-items: center;
}

.vertical-thumbnails-wrapper {
  scroll-behavior: smooth;
  flex: 1;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.vertical-thumbnails-wrapper .product-thumbnails {
  position: relative !important;
  height: auto !important;
  min-height: 100% !important;
}

.woocommerce-product-gallery__image img {
  border: 1px solid #ededed !important;
  border-radius: 3px !important;
}
.product-gallery .badge-container,
.product-gallery .image-tools {
  display: none !important;
}

.quantity {
  display: flex !important;
  align-items: center !important;
}
.quantity input.qty {
  border-radius: 99px !important;
  margin: 0 5px !important;
  height: 45px !important;
  width: 50px !important;
}
.quantity input[type="button"] {
  border-radius: 50% !important;
  width: 45px !important;
  height: 45px !important;
  padding: 0 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  border: 1px solid #ddd !important;
  background: transparent !important;
  font-size: 18px !important;
}
.quantity input[type="button"]:hover {
  background: #f7941d !important;
  color: #fff !important;
  border-color: #f7941d !important;
}

.product-small.box .box-text-products {
  text-align: center !important;
}
.box-text-products .title-wrapper .product-title {
  font-size: 14px !important;
  font-weight: normal !important;
  text-transform: none !important;
  margin-bottom: 5px !important;
}
.box-text-products .price-wrapper {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
}
.box-text-products .price {
  margin-bottom: 10px !important;
}
.box-text-products .price ins {
  font-size: 16px !important;
  color: #86bc42 !important;
  font-weight: bold !important;
  background: transparent !important;
  text-decoration: none !important;
}
.box-text-products .price del {
  font-size: 14px !important;
  color: #999 !important;
  text-decoration: line-through !important;
}
.box-text-products .price .PriceSaving {
  display: block;
  font-size: 12px !important;
  color: #666 !important;
  margin-top: 5px !important;
}

.xc-product-actions {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 10px !important;
  margin-top: 10px !important;
  width: 100% !important;
}
.xc-btn-cart, .xc-btn-qv {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 35px !important;
  height: 35px !important;
  border-radius: 50% !important;
  background-color: #f1f1f1 !important;
  color: #333 !important;
  transition: all 0.3s ease !important;
}
.xc-btn-cart i, .xc-btn-qv i {
  font-size: 16px !important;
}
.xc-btn-cart:hover, .xc-btn-qv:hover {
  background-color: #86bc42 !important;
  color: #fff !important;
}
.xc-btn-buynow {
  background-color: #86bc42 !important;
  color: #fff !important;
  font-size: 14px !important;
  font-weight: bold !important;
  padding: 6px 15px !important;
  border-radius: 99px !important;
  text-transform: uppercase !important;
  transition: all 0.3s ease !important;
}
.xc-btn-buynow:hover {
  background-color: #f7941d !important;
  color: #fff !important;
}
.product-small.box .badge-container {
  display: none !important;
}

.btn-thumb-up,
.btn-thumb-down {
  width: 30px !important;
  height: 30px !important;
  background: #86bc42 !important;
  border: none !important;
  border-radius: 3px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  margin: 5px auto !important;
  padding: 0 !important;
  outline: none !important;
  box-shadow: none !important;
}

.btn-thumb-up:hover,
.btn-thumb-down:hover {
  background: #75a439 !important;
}

.btn-thumb-up svg,
.btn-thumb-down svg {
  fill: #fff !important;
  width: 14px !important;
  height: 14px !important;
}

.vertical-thumbnails .flickity-prev-next-button {
  display: none !important;
}

.vertical-thumbnails-wrapper {
  scroll-behavior: smooth;
}

@font-face {
    font-family: 'Cuprum-Regular';
    src: url("https://theme.hstatic.net/1000336536/1000456148/14/Cuprum-Regular.woff?v=287") format("woff");
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'Cuprum-Bold';
    src: url("https://theme.hstatic.net/1000336536/1000456148/14/Cuprum-Bold.woff?v=287") format("woff");
    font-weight: normal;
    font-style: normal;
}

.header-top {
    background-color: transparent !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    padding: 10px 0;
}

.header-top a,
.header-top span {
    color: #e3e3e3 !important;
    font-size: 14px;
    font-family: 'Cuprum-Regular', sans-serif;
    transition: all 0.3s ease;
}

.header-top a:hover,
.header-top a:hover span,
.header-top a:hover i {
    color: #86be4c !important;
}

#header-contact {
    display: flex;
    align-items: center;
}
#header-contact > li {
    display: inline-block;
    margin-right: 15px;
}
#header-contact > li > a {
    display: flex;
    align-items: center;
    gap: 8px;
}
#header-contact > li > a i {
    font-size: 16px;
    margin: 0;
}

.top-bar-nav {
    display: flex;
    align-items: center;
}
.top-bar-nav .account-item,
.top-bar-nav .cart-item {
    border-left: 1px solid #ededed;
    padding-left: 10px;
    margin-left: 10px;
}

.top-bar-nav .account-item > a,
.top-bar-nav .cart-item > a {
    text-transform: uppercase;
    font-family: 'Cuprum-Bold', sans-serif;
}

.cart-item > a .cart-icon strong, 
.cart-item > a .image-icon strong {
    position: absolute;
    top: -5px;
    right: -10px;
    display: inline-block;
    width: 16px;
    height: 16px;
    line-height: 16px;
    text-align: center;
    color: #fff !important;
    background: #86be4c;
    margin-bottom: 10px;
}

.widget_shopping_cart .cart_list li a:not(.remove) {
    color: #333333 !important;
    transition: all 0.3s ease;
    font-family: 'Cuprum-Regular', sans-serif;
}

.widget_shopping_cart .cart_list li a:hover {
    color: #86bc42 !important;
}

.widget_shopping_cart .cart_list li .remove {
    color: #86bc42 !important;
}

.widget_shopping_cart .total {
    background: #f7f7f7;
    border-radius: 8px;
    padding: 10px;
    color: #333333;
    font-family: 'Cuprum-Bold', sans-serif;
}

.widget_shopping_cart .total .amount {
    color: #86bc42;
}

.widget_shopping_cart .buttons {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
}

.widget_shopping_cart .buttons a {
    border-radius: 8px;
    width: 48%;
    text-align: center;
    padding: 8px 10px;
    font-family: "Cuprum-Bold", sans-serif;
    text-transform: uppercase;
    font-size: 12px;
    margin: 0;
}

.widget_shopping_cart .buttons .button:not(.checkout) {
    color: #86bc42 !important;
    border: 1px solid #86bc42;
    background: transparent;
}

.widget_shopping_cart .buttons .checkout {
    color: #fff !important;
    border: 1px solid #86bc42;
    background: #86bc42;
}

.header-wrapper.stuck {
    background: #000 !important; 
    animation: slide-down 0.5s;
}

.header-wrapper.stuck .header-top {
    display: none; 
}

.header-nav > li > a {
    padding: 25px 20px;
    color: #e3e3e3;
    font-family: "Cuprum-Bold", sans-serif;
    text-transform: uppercase;
    font-size: 14px;
    transition: all 0.3s ease;
}

.header-nav > li > a:hover,
.header-nav > li.active > a,
.header-nav > li.current-menu-item > a {
    color: #86be4c;
}

.xc-home-testimonial {
    background: url("https://theme.hstatic.net/1000336536/1000456148/14/htesti_bg_img.png?v=287") center bottom / cover no-repeat fixed !important;
    padding: 100px 0 !important;
    color: #fff !important;
}

.xc-home-testimonial .xc-section-title {
    margin-bottom: 70px !important;
}
.xc-home-testimonial .xc-section-title .section-title-main {
    color: #ffffff !important;
}

.xc-home-testimonial .row-xc-slider {
    padding: 40px 0;
}

.xc-home-testimonial .box-testimonial {
    position: relative;
    padding: 30px !important;
    text-align: center !important;
    z-index: 2;
    min-height: 270px; 
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 320px;
    margin: 0 auto;
}

.xc-home-testimonial .box-testimonial .icon-box-text {
    position: relative;
    z-index: 3;
}

.xc-home-testimonial .box-testimonial .icon-box-text::before {
    content: '"';
    display: block;
    font-family: 'Pacifico-Regular', cursive;
    font-size: 40px;
    font-weight: bold;
    font-style: italic;
    color: #ffffff;
    line-height: 1;
    margin-bottom: 10px;
}

.xc-home-testimonial .box-testimonial h3 {
    font-family: 'Cuprum-Bold', sans-serif !important;
    font-size: 18px !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    color: #ffffff !important;
    margin-bottom: 10px !important;
}

.xc-home-testimonial .box-testimonial p {
    color: #ffffff !important;
    font-size: 16px !important;
    font-family: 'Cuprum-Regular', sans-serif !important;
    margin-bottom: 0 !important;
}

.xc-home-testimonial .row-xc-slider .box-testimonial::before,
.xc-home-testimonial .row-xc-slider .box-testimonial::after,
.xc-home-testimonial .row-xc-slider .col-inner::before,
.xc-home-testimonial .row-xc-slider .col-inner::after {
    content: '' !important;
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    width: 270px !important;
    height: 270px !important;
    border: 2px solid #ffffff !important;
    border-radius: 92% 110% 132% 88% !important;
    box-sizing: border-box !important;
    pointer-events: none !important;
    z-index: 1 !important;
}

.xc-home-testimonial .row-xc-slider .box-testimonial::before {
    animation: xc-spin1 6s linear infinite !important;
}
.xc-home-testimonial .row-xc-slider .box-testimonial::after {
    animation: xc-spin2 6s linear infinite !important;
}
.xc-home-testimonial .row-xc-slider .col-inner::before {
    animation: xc-spin3 6s linear infinite !important;
}
.xc-home-testimonial .row-xc-slider .col-inner::after {
    animation: xc-spin4 6s linear infinite !important;
}

@media (max-width: 480px) {
    .xc-home-testimonial {
        padding: 60px 0 !important;
    }

    .xc-home-testimonial .row-xc-slider .box-testimonial::before,
    .xc-home-testimonial .row-xc-slider .box-testimonial::after,
    .xc-home-testimonial .row-xc-slider .col-inner::before,
    .xc-home-testimonial .row-xc-slider .col-inner::after {
        width: 250px !important;
        height: 250px !important;
    }
}
@media (max-width: 768px) {
    .xc-home-testimonial {
        background-attachment: scroll !important;
    }
}

.xc-home-ship {
    padding: 0 !important;
}

.xc-home-ship .banner {
    height: auto !important;
    min-height: 600px !important;
    padding: 100px 0 !important;
}

.xc-home-ship .text-box {
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    right: auto !important;
    width: 90% !important;
    max-width: 100% !important;
    transform: translate(-50%, -50%) !important;
    margin: 0 !important;
    text-align: center !important;
}

.xc-home-ship .text-inner h3 {
    font-family: 'Pacifico-Regular', cursive, sans-serif !important;
    font-size: 45px !important;
    color: #ffffff !important;
    margin-bottom: 15px !important;
    text-transform: none !important; 
    font-weight: normal !important;
    letter-spacing: normal !important;
}
.xc-home-ship .text-inner h3 strong {
    font-weight: normal !important;
}

.xc-home-ship .text-inner p:nth-of-type(1) {
    font-size: 36px !important;
    margin-bottom: 20px !important;
    text-transform: uppercase !important;
    color: #ffffff !important;
    font-family: 'Cuprum-Regular', sans-serif !important;
}

.xc-home-ship .text-inner p:nth-of-type(2) {
    font-size: 22px !important;
    letter-spacing: 2px !important;
    color: #ffffff !important;
    font-family: 'Cuprum-Regular', sans-serif !important;
    text-transform: uppercase !important;
    margin-bottom: 0 !important;
}

.xc-home-ship .text-inner p:nth-of-type(3) {
    font-size: 80px !important;
    margin: 50px 0px !important;
    font-family: 'Cuprum-Bold', sans-serif !important;
    color: #ffffff !important;
    line-height: 1 !important;
}

.xc-home-ship .text-inner a.button {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 20px !important;
    width: 150px !important;
    height: 35px !important;
    border: 1px solid #86bc42 !important;
    line-height: normal !important;
    color: #ffffff !important;
    background: #86bc42 !important;
    text-transform: uppercase !important;
    font-family: 'Cuprum-Regular', sans-serif !important;
    transition: all 0.3s ease !important;
    padding: 0 !important;
    min-height: 35px !important;
}

.xc-home-ship .text-inner a.button span {
    line-height: normal !important;
}

.xc-home-ship .text-inner a.button:hover {
    background: transparent !important;
    color: #86bc42 !important;
    box-shadow: none !important;
}

@media (max-width: 480px) {
    .xc-home-ship .banner {
        height: auto !important;
        min-height: 450px !important;
    }

    .xc-home-ship .text-box {
        width: 90% !important;
        left: 50% !important;
        right: auto !important;
        transform: translate(-50%, -50%) !important;
        text-align: center !important;
    }

    .xc-home-ship .text-inner h3 {
        font-size: 36px !important;
        line-height: 50px !important;
        margin-bottom: 30px !important;
    }

    .xc-home-ship .text-inner p:nth-of-type(1) {
        font-size: 24px !important;
    }

    .xc-home-ship .text-inner p:nth-of-type(2) {
        font-size: 18px !important;
    }

    .xc-home-ship .text-inner a.button {
        width: 130px !important;
    }
}

.xc-home-news {
    padding: 100px 0 !important;
    background-color: #ffffff !important;
}

.xc-home-news .post-item .box-blog-post {
    background: #fbfbfb !important;
    margin-bottom: 30px !important;
    transition: all 0.3s ease !important;
    border: none !important;
    box-shadow: none !important;
}
.xc-home-news .post-item .box-blog-post:hover {
    background: #ffffff !important;
    box-shadow: 3.5px 6px 18px 0 rgba(0, 0, 0, 0.1) !important;
}

.xc-home-news .post-item .box-image {
    position: relative;
    overflow: hidden;
}
.xc-home-news .post-item .box-image::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    opacity: 0;
    transition: all 0.3s ease;
    pointer-events: none;
    z-index: 1;
}
.xc-home-news .post-item .box-blog-post:hover .box-image::after {
    opacity: 1;
}

.xc-home-news .box-normal .box-text {
    padding: 20px 30px !important;
    text-align: left !important;
}
.xc-home-news .box-normal .post-title a {
    font-family: 'Cuprum-Bold', sans-serif !important;
    font-size: 30px !important;
    color: #333333 !important;
    text-transform: none !important;
}

.xc-home-news .box-vertical {
    display: flex !important;
    flex-direction: row !important;
    align-items: stretch !important;
}
.xc-home-news .box-vertical .box-image {
    width: 33.333% !important;
    flex-shrink: 0;
}

.xc-home-news .box-vertical .box-image .image-cover {
    height: auto !important;
    padding-top: 112% !important;
}
.xc-home-news .box-vertical .box-text {
    width: 66.666% !important;
    padding: 15px 30px !important;
    text-align: left !important;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.xc-home-news .box-vertical .post-title a {
    font-family: 'Cuprum-Bold', sans-serif !important;
    font-size: 20px !important;
    color: #333333 !important;
    text-transform: none !important;
}
.xc-home-news .box-vertical .from_the_blog_excerpt {
    display: block !important;
}

.xc-home-news .post-title a:hover {
    color: #86bc42 !important;
}
.xc-home-news .is-divider {
    display: none !important; 
}
.xc-home-news .from_the_blog_excerpt {
    color: #4d4d4d !important;
    font-family: 'Cuprum-Regular', sans-serif !important;
    font-size: 16px !important;
    margin-top: 10px !important;
}

.xc-home-news .box-text .button {
    background: transparent !important;
    color: #333333 !important;
    border: none !important;
    padding: 0 !important;
    text-transform: none !important;
    font-family: 'Cuprum-Regular', sans-serif !important;
    font-size: 16px !important;
    justify-content: flex-start !important;
    margin-top: 10px !important;
    box-shadow: none !important;
}
.xc-home-news .box-text .button:hover {
    color: #86bc42 !important;
}

.xc-home-news .box-text .button::after {
    content: ' \2192'; 
    font-size: 18px;
    margin-left: 5px;
}

.xc-home-news > .section-content > .row:last-child {
    text-align: center !important;
    margin-top: 30px !important;
    justify-content: center !important;
}
.xc-home-news > .section-content > .row:last-child .col-inner {
    display: flex;
    justify-content: center;
}
.xc-home-news > .section-content > .row:last-child .button {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: transparent !important;
    border: 1px solid #999999 !important;
    color: #999999 !important;
    width: 150px !important;
    height: 35px !important;
    line-height: 35px !important;
    border-radius: 20px !important;
    text-transform: uppercase !important;
    font-family: 'Cuprum-Regular', sans-serif !important;
    transition: all 0.3s ease !important;
    padding: 0 !important;
    min-height: 35px !important;
    margin: 0 auto;
}
.xc-home-news > .section-content > .row:last-child .button:hover {
    color: #86bc42 !important;
    border-color: #86bc42 !important;
    background: transparent !important;
    box-shadow: none !important;
}

@media (max-width: 768px) {
    .xc-home-news .box-vertical .box-image {
        width: 40% !important;
    }
    .xc-home-news .box-vertical .box-text {
        width: 60% !important;
        padding: 15px !important;
    }
}
@media (max-width: 480px) {
    .xc-home-news {
        padding: 60px 0 !important;
    }
    .xc-home-news .box-normal .box-text {
        padding: 20px 10px !important;
    }
    .xc-home-news .box-normal .post-title a {
        font-size: 20px !important;
    }
    .xc-home-news .box-vertical {
        flex-direction: row !important; 
    }
    .xc-home-news .box-vertical .box-image {
        width: 50% !important;
    }
    .xc-home-news .box-vertical .box-image .image-cover {
        padding-top: 90% !important;
    }
    .xc-home-news .box-vertical .box-text {
        width: 50% !important;
        padding: 10px !important;
    }
    .xc-home-news .box-vertical .post-title a {
        font-size: 16px !important;
    }
    .xc-home-news .box-vertical .from_the_blog_excerpt {
        display: none !important; 
    }
}

.nav-dropdown.nav-dropdown-default {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 1px 7px 0 rgba(0, 0, 0, 0.35);
    background: #fff;
    padding: 5px;
    border: none;
    width: 280px;
}
.nav-dropdown.nav-dropdown-default li {
    margin-left: 0 !important;
}
.nav-dropdown.nav-dropdown-default li a {
    color: #333333 !important;
}

.widget_shopping_cart .cart_list li {
    border-bottom: 1px dashed #DDD;
    padding-bottom: 10px;
    margin-bottom: 10px;
}

.entry-content {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

.widget_shopping_cart .buttons {
    display: flex !important;
    gap: 10px !important;
    justify-content: space-between !important;
}
.widget_shopping_cart .buttons a {
    width: 100% !important;
    margin: 0 !important;
}

.header-top a,
.header-top span {
    color: #ffffff !important;
}

.top-bar-nav .account-item,
.top-bar-nav .cart-item {
    border-left: none !important;
    padding-left: 0 !important;
    margin-left: 0 !important;
}

.widget_shopping_cart .cart_list li .quantity,
.widget_shopping_cart .cart_list li .quantity .amount,
.widget_shopping_cart .total .amount {
    color: #000000 !important;
}

#top-link {
    display: none !important;
}

.xc-back-to-top {
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: 60px;
    height: 60px;
    color: #86bc42;
    cursor: pointer;
    font-size: 24px;
    text-align: center;
    line-height: 60px;
    transition: all 0.3s ease;
    z-index: 999; 
    opacity: 0;
    visibility: hidden;
    background-color: transparent !important;
    background: none !important;
    border: none !important;
    box-shadow: none !important;
}

.xc-back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.xc-back-to-top__circles {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 50px;
    height: 50px;
    margin: 0 auto;
    transform: translate3d(-50%, -50%, 0);
}

.xc-back-to-top__circle {
    position: absolute;
    top: 0;
    left: 0;
    box-sizing: border-box;
    width: 100%;
    height: 100%;
    border: 1px solid #86bc42 !important;
    border-radius: 92% 110% 132% 88%;
    transition: all 0.5s ease;
}

.xc-back-to-top__circle:nth-child(1) {
    transform-origin: 50% 50%;
    animation: xc-btt-spin1 6s linear infinite;
}
.xc-back-to-top__circle:nth-child(2) {
    transform-origin: 50% 50%;
    animation: xc-btt-spin2 6s linear infinite;
}
.xc-back-to-top__circle:nth-child(3) {
    transform-origin: 50% 50%;
    animation: xc-btt-spin3 6s linear infinite;
}
.xc-back-to-top__circle:nth-child(4) {
    transform-origin: 50% 50%;
    animation: xc-btt-spin4 6s linear infinite;
}

.xc-back-to-top__link {
    display: block;
    line-height: 60px;
    color: #86bc42 !important;
    text-decoration: none;
    position: relative;
    z-index: 2;
}
.xc-back-to-top__link:hover,
.xc-back-to-top__link:focus {
    color: #aad07a !important;
}

@keyframes xc-btt-spin1 {
    0% { transform: rotate(0); }
    100% { transform: rotate(360deg); }
}
@keyframes xc-btt-spin2 {
    0% { transform: rotate(72deg); }
    100% { transform: rotate(-288deg); }
}
@keyframes xc-btt-spin3 {
    0% { transform: rotate(-144deg); }
    100% { transform: rotate(216deg); }
}
@keyframes xc-btt-spin4 {
    0% { transform: rotate(216deg); }
    100% { transform: rotate(-144deg); }
}

@media only screen and (max-width: 768px) {
    .xc-back-to-top {
        bottom: 20px;
        right: 20px;
    }
}

.product-small.box {
  position: relative !important;
  border: 1px solid #ededed !important;
  overflow: hidden !important;
  margin-bottom: 30px !important;
  transition: all 0.3s ease !important;
  border-radius: 0 !important;
}

.product-small.box:hover {
  box-shadow: 3.5px 6px 25px 0 rgba(0, 0, 0, 0.1) !important;
  transform: translateY(-5px) !important;
}

.product-small.box .box-image {
  position: relative !important;
}

.product-small.box .badge-container .badge-inner.on-sale {
  height: 40px !important;
  width: 40px !important;
  line-height: 40px !important;
  border-radius: 50% !important;
  color: #fff !important;
  background: #86bc42 !important;
  font-size: 14px !important;
  padding: 0 !important;
  text-align: center !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.product-small.box .box-text {
  text-align: center !important;
  background: #fafafa !important;
  padding: 10px !important;
  transform: translateY(45px) !important;
  transition: all 0.3s ease !important;
}

.product-small.box:hover .box-text {
  transform: translateY(0px) !important;
  background: #86bc42 !important;
}

.product-small.box .box-text .name a {
  color: #000 !important;
  font-size: 18px !important;
  text-transform: uppercase !important;
  transition: all 0.3s ease !important;
}

.product-small.box:hover .box-text .name a {
  color: #fff !important;
}

.product-small.box .box-text .price-wrapper {
  margin: 5px 0 10px !important;
  transition: all 0.3s ease !important;
}

.product-small.box .box-text .price .amount {
  color: #86bc42 !important;
  font-family: "Cuprum-Bold", sans-serif !important;
  font-size: 18px !important;
  transition: all 0.3s ease !important;
  font-weight: normal !important;
}

.product-small.box .box-text .price del .amount {
  color: #999999 !important;
  margin-left: 10px !important;
  font-size: 14px !important;
}

.product-small.box:hover .box-text .price .amount,
.product-small.box:hover .box-text .price del .amount {
  color: #fff !important;
}

.xc-product-actions {
  text-align: center !important;
  margin-top: 5px !important;
  transition: all 0.3s ease !important;
}

.xc-product-actions a {
  display: inline-block !important;
  height: 35px !important;
  margin: 0px 5px !important;
  color: rgba(255, 255, 255, 0.7) !important;
  border: 1px solid rgba(255, 255, 255, 0.5) !important;
  line-height: 33px !important;
  transition: all 0.3s ease !important;
  background: transparent !important;
}

.xc-product-actions a:hover {
  color: #fff !important;
  border-color: #fff !important;
  background: rgba(255, 255, 255, 0.1) !important;
}

.xc-product-actions .xc-btn-cart,
.xc-product-actions .xc-btn-qv {
  width: 35px !important;
  border-radius: 50% !important;
  padding: 0 !important;
}

.xc-product-actions .xc-btn-buynow {
  border-radius: 20px !important;
  padding: 0px 15px !important;
  text-transform: uppercase !important;
  font-size: 12px !important;
}

.xc-product-actions .added_to_cart {
  display: none !important;
}

@media (max-width: 849px) {
  .xc-product-actions {
    display: none !important;
  }

  .product-small.box .box-text {
    transform: translateY(0px) !important;
  }

  .product-small.box .box-text .name a {
    font-size: 14px !important;
  }

  .product-small.box .box-text .price .amount {
    font-size: 16px !important;
  }

  .product-small.box .box-text .price del .amount {
    font-size: 12px !important;
  }
}

@media (max-width: 849px) {
  .xc-mobile-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 99999;
    background: #86bc42;
    border-top: 1px solid #ededed;
    display: block;
  }

  .xc-mobile-bar__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0;
    padding: 0;
  }

  .xc-mobile-bar__item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 67px;
    color: #fff !important;
    position: relative;
    text-decoration: none;
    transition: background 0.3s ease;
  }

  .xc-mobile-bar__item:hover,
  .xc-mobile-bar__item:active {
    background: rgba(0, 0, 0, 0.1);
    color: #fff !important;
  }

  .xc-mobile-bar__icon {
    font-size: 20px;
    margin-bottom: 5px;
    line-height: 1;
  }

  .xc-mobile-bar__text {
    font-size: 12px;
    line-height: 1;
    font-family: Arial, Helvetica, sans-serif; 
  }

  .xc-mobile-bar__badge {
    position: absolute;
    top: 6px;
    right: 50%;
    margin-right: -22px;
    height: 20px;
    min-width: 20px;
    line-height: 20px;
    border-radius: 10px;
    text-align: center;
    font-size: 13px;
    font-weight: bold;
    color: #86bc42;
    background: #ffffff;
    padding: 0 5px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.15);
  }

  body {
    padding-bottom: 67px !important;
  }
}

@media (min-width: 850px) {
  .xc-mobile-bar {
    display: none !important;
  }
}

.single-post .entry-header {
  display: none !important;
}

.single-post #content {
  padding: 50px 0 !important;
}

.single-post .post-sidebar .widget {
  background: #fff;
  margin-bottom: 30px;
  overflow: hidden;
}
.single-post .post-sidebar .widget-title {
  width: 100%;
  display: block;
  background: #fafafa;
  font-weight: normal;
  border-bottom: 2px solid #ededed;
  text-align: center;
  padding: 10px 15px;
  margin: 0;
  font-size: 18px;
  font-family: "Pacifico-Regular", "Cuprum-Bold", sans-serif;
  text-transform: uppercase;
}
.single-post .post-sidebar .widget-title span {
  display: inline;
}
.single-post .post-sidebar .widget-title::after,
.single-post .post-sidebar .is-divider {
  display: none !important; 
}
.single-post .post-sidebar .widget > ul {
  margin: 0;
  padding: 15px;
  list-style: none;
}
.single-post .post-sidebar .widget > ul > li {
  margin-bottom: 10px;
}
.single-post .post-sidebar .widget > ul > li > a {
  color: #333333;
}
.single-post .post-sidebar .widget > ul > li > a:hover {
  color: #86bc42;
}

.single-post .article-head {
  position: relative;
  width: 100%;
  text-align: left;
  display: block;
  margin-bottom: 30px;
}
.single-post .article-head h1 {
  padding: 0;
  margin: 0 0 5px 0;
  font-family: "Cuprum-Bold", sans-serif !important;
  font-size: 24px;
  text-transform: uppercase;
}
.single-post .article-head .article-date-comment > div {
  display: inline-block;
  margin-right: 15px;
  color: #666;
  font-size: 14px;
}
.single-post .article-head .article-date-comment i {
  color: #86bc42;
}

.single-post .article-tldr {
  padding: 15px 15px 0 15px;
  margin-bottom: 30px;
  background: #e1e1e1;
}

.single-post .related-articles {
  margin-bottom: 30px;
}
.single-post .related-articles-head h3 {
  padding: 0;
  margin: 0 0 5px 0;
  color: #333333;
  text-transform: uppercase;
  font-family: "Cuprum-Bold", sans-serif !important;
  font-size: 18px;
}
.single-post .related-articles-body ul {
  margin: 0;
  list-style: none;
  padding-left: 0;
}
.single-post .related-articles-body ul > li {
  display: block;
  margin-bottom: 10px;
}
.single-post .related-articles-body ul > li > a {
  position: relative;
  display: inline-block;
  padding-left: 15px;
  color: #333333;
  transition: all 0.3s ease;
}
.single-post .related-articles-body ul > li > a:hover {
  color: #86bc42;
}
.single-post .related-articles-body ul > li > a:before {
  content: '\f111';
  font-family: "Font Awesome 5 Free", "FontAwesome";
  font-weight: 900;
  position: absolute;
  top: calc(50% - 3px);
  left: 0;
  font-size: 6px;
  color: #333333;
  line-height: normal;
}
.single-post .social-network-actions-outside {
  padding: 15px 0 15px 15px;
}
.single-post #section-fbcomment {
  margin-bottom: 30px;
}

.single-post .grid {
  display: flex;
  flex-wrap: wrap;
  margin-left: -15px;
}
.single-post .grid__item {
  padding-left: 15px;
  width: 100%;
}
.single-post .large--one-half {
  width: 50%;
}

.single-post #respond,
.single-post #comments {
  display: none !important;
}

.page-title:not(.ecoba-custom-banner):not(.product-page-title),
.shop-page-title:not(.ecoba-custom-banner) {
  display: none !important;
}

.xc-contact-info {
    padding-top: 50px !important;
    padding-bottom: 50px !important;
}

.xc-contact-info .icon-box {
    text-align: center;
    padding: 50px 30px;
    background: #fafafa;
    margin: 50px 0 100px;
    transition: all 0.3s ease;
}

.xc-contact-info .icon-box:hover {
    background: #ffffff;
    box-shadow: 0px 0px 24px 0px rgba(0, 0, 0, 0.2);
    padding-bottom: 45px;
}

.xc-contact-info .icon-box h3 {
    font-size: 18px;
    font-family: "Cuprum-Bold", "Cuprum", sans-serif !important;
    text-transform: uppercase !important;
    color: #333333;
    padding: 0;
    margin: 30px 0 20px;
}

.xc-contact-info .icon-box p {
    color: #333333;
    margin-bottom: 15px;
}

.xc-contact-info .icon-box::before {
    content: "";
    display: block;
    margin: 0 auto 20px;
    width: 36px;
    height: 36px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}
.xc-contact-info .box-address::before {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 384 512" fill="%2386bc42"><path d="M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0z"/></svg>');
}
.xc-contact-info .box-phone::before {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512" fill="%2386bc42"><path d="M493.397 24.615l-104-23.997c-11.314-2.611-22.879 3.252-27.456 13.931l-48 111.997a24 24 0 0 0 6.862 28.029l60.617 49.596c-35.973 76.675-98.938 140.508-177.249 177.248l-49.596-60.616a24 24 0 0 0-28.029-6.862l-111.997 48C3.873 366.516-1.994 378.08.618 389.397l23.997 104C27.109 504.204 36.748 512 48 512c256.087 0 464-207.532 464-464 0-11.176-7.714-20.873-18.603-23.385z"/></svg>');
}
.xc-contact-info .box-email::before {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512" fill="%2386bc42"><path d="M502.3 190.8c3.9-3.1 9.7-.2 9.7 4.7V400c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V195.6c0-5 5.7-7.8 9.7-4.7 22.4 17.4 52.1 39.5 154.1 113.6 21.1 15.4 56.7 47.8 92.2 47.6 35.7.3 72-32.8 92.3-47.6 102-74.1 131.6-96.3 154-113.7zM256 320c23.2.4 56.6-29.2 73.4-41.4 132.7-96.3 142.8-104.7 173.4-128.7 5.8-4.5 9.2-11.5 9.2-18.9v-19c0-26.5-21.5-48-48-48H48C21.5 64 0 85.5 0 112v19c0 7.4 3.4 14.3 9.2 18.9 30.6 23.9 40.7 32.4 173.4 128.7 16.8 12.2 50.2 41.8 73.4 41.4z"/></svg>');
}

.xc-contact-form .section-title-normal span {
    font-family: "Cuprum-Bold", "Cuprum", sans-serif !important;
    font-size: 2.25em;
    text-transform: uppercase;
    color: #333333;
}
.xc-contact-form .section-title-normal {
    border-bottom: 1px solid #ededed;
    padding-bottom: 15px;
    margin-bottom: 30px;
}
.xc-contact-form .section-title-normal b {
    display: none;
}

.xc-contact-form-form {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.xc-contact-form-form .grid__item {
    padding: 0 15px;
    width: 100%;
    margin-bottom: 15px;
}

@media (min-width: 769px) {
    .xc-contact-form-form .large--one-third {
        width: 33.3333%;
    }
}

.xc-contact-form-form .text-center {
    text-align: center;
    width: 100%;
}

.xc-contact-form-form .wpcf7-form-control.wpcf7-text,
.xc-contact-form-form .wpcf7-form-control.wpcf7-textarea,
.xc-contact-form-form .wpcf7-form-control.wpcf7-email,
.xc-contact-form-form .wpcf7-form-control.wpcf7-tel,
.xc-contact-form-form .input-full {
    background: #fafafa;
    border: 0px;
    border-radius: 0px;
    padding: 8px 10px;
    color: #333333;
    font-size: 16px;
    box-shadow: none;
    width: 100%;
    height: auto;
    min-height: 40px;
}

.xc-contact-form-form .wpcf7-form-control.wpcf7-text:focus,
.xc-contact-form-form .wpcf7-form-control.wpcf7-textarea:focus,
.xc-contact-form-form .wpcf7-form-control.wpcf7-email:focus,
.xc-contact-form-form .wpcf7-form-control.wpcf7-tel:focus,
.xc-contact-form-form .input-full:focus {
    background: #ffffff;
    box-shadow: 0px 0px 5px rgba(0,0,0,0.1);
}

.xc-contact-form-form textarea.wpcf7-textarea {
    min-height: 150px;
}

.xc-contact-form-form .btnContactSubmit {
    margin: 15px auto;
    background: #86bc42 !important;
    color: #ffffff !important;
    border: 1px solid #86bc42 !important;
    border-radius: 20px !important;
    width: 120px;
    text-transform: none;
    font-weight: bold;
    padding: 8px 10px;
    transition: all 0.3s ease;
    display: inline-block;
}

.xc-contact-form-form .btnContactSubmit:hover {
    color: #86bc42 !important;
    background: #ffffff !important;
}

.xc-contact-form-form br {
    display: none;
}

