:root {
  /* Mapping Theme 2 variables to Ported CSS variables */
  --theme-color: var(--primary-color, #046a58);
  --theme-color2: var(--secondary-color, #122f2a);
  --white-color: var(--white, #ffffff);
  --title-color: var(--secondary-color, #122f2a);
  --body-color: var(--template-color, #667471);
  --body-font: var(--template-font, "Nunito", sans-serif);
  --title-font: var(--recoleta, "Recoleta", sans-serif);
}

/* Sidemenu Wrapper */
.sidemenu-wrapper {
  position: fixed;
  z-index: 99999;
  right: 0;
  top: 0;
  height: 100%;
  width: 0;
  background-color: rgba(0, 0, 0, 0.75);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all ease 0.8s;
  transition: all ease 0.8s;
}

.sidemenu-wrapper.show {
  width: 100%;
  opacity: 1;
  visibility: visible;
}

.sidemenu-wrapper.show .sidemenu-content {
  right: 0;
}

.sidemenu-wrapper .info-box_link {
  color: var(--title-color);
}

.sidemenu-wrapper .info-box_link:hover {
  color: var(--theme-color);
}

.sidemenu-wrapper .newsletter-widget .newsletter-form input {
  color: var(--title-color);
}

.sidemenu-wrapper .newsletter-widget .newsletter-form .th-btn:hover {
  color: var(--title-color);
}

.sidemenu-wrapper .th-social a {
  box-shadow: none;
}

.sidemenu-wrapper .closeButton {
  display: inline-block;
  border: 2px solid;
  width: 50px;
  height: 50px;
  line-height: 48px;
  font-size: 24px;
  padding: 0;
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: var(--white-color);
  border-radius: 50%;
  -webkit-transform: rotate(0);
  -ms-transform: rotate(0);
  transform: rotate(0);
  -webkit-transition: all ease 0.4s;
  transition: all ease 0.4s;
}

.sidemenu-wrapper .closeButton:hover {
  color: var(--theme-color);
  border-color: var(--theme-color);
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}

.sidemenu-wrapper .sidemenu-content {
  background-color: var(--white-color);
  width: 450px;
  margin-left: auto;
  padding: 80px 30px;
  height: 100%;
  overflow: scroll;
  position: relative;
  right: -500px;
  cursor: auto;
  -webkit-transition-delay: 1s;
  transition-delay: 1s;
  -webkit-transition: right ease 1s;
  transition: right ease 1s;
}

/* Fix for Product Description Overlap */
.product-tab .content {
    line-height: 1.75 !important;
    display: block !important;
    height: auto !important;
}

.product-tab .content p,
.product-tab .content div,
.product-tab .content span,
.product-tab .content li {
    line-height: 1.75 !important;
    margin-bottom: 10px !important;
        margin-top: 30px;
}

.product-tab .content h1,
.product-tab .content h2,
.product-tab .content h3,
.product-tab .content h4,
.product-tab .content h5,
.product-tab .content h6 {
    margin-bottom: 15px !important;
    line-height: 1.4 !important;
}

/* Fix for Offcanvas/Extra Image at Bottom */
.vl-offcanvas {
    position: fixed;
    top: 0;
    left: -320px;
    width: 320px;
    height: 100vh;
    background-color: #fff;
    z-index: 99999;
    transition: all 0.3s ease;
    visibility: hidden;
    overflow-y: auto;
    box-shadow: 0 0 15px rgba(0,0,0,0.1);
}

.vl-offcanvas.vl-offcanvas-open {
    left: 0;
    visibility: visible;
}

.vl-offcanvas-wrapper {
    padding: 20px;
    height: 100%;
    position: relative;
}

.vl-offcanvas-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 1px solid #f0f0f0;
}

.vl-offcanvas-logo img {
        max-height: 55px;
          width: auto;
}

.vl-offcanvas-close-toggle {
    background: transparent;
    border: none;
    font-size: 24px;
    color: var(--black, #000);
    cursor: pointer;
    transition: all 0.3s;
}

.vl-offcanvas-close-toggle:hover {
    color: var(--theme-color);
    transform: rotate(90deg);
}

.vl-offcanvas-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.6);
    z-index: 99998;
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s ease;
}

.vl-offcanvas-overlay.vl-offcanvas-overlay-open {
    visibility: visible;
    opacity: 1;
}

.vl-offcanvas-toggle {
    border: none;
    background: transparent;
    padding: 8px 6px;
    cursor: pointer;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    z-index: 1000;
}

.vl-offcanvas-toggle .icon-bar {
    display: block;
    width: 25px;
    height: 4px;
    background-color: #000;
    border-radius: 999px;
}

@media (max-width: 1199.98px) {
    .vl-offcanvas-toggle {
        display: flex !important;
    }
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 90px;
    right: 30px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    background-color: #128C7E;
    color: #FFF;
    transform: scale(1.1);
}

.whatsapp-float i {
    margin-top: 0;
}
