@charset "UTF-8";

/* =================================================================
   GLOBAL STYLES - Used across ALL HTML files
   ================================================================= */

/* Fonts */
@import url("https://fonts.googleapis.com/css2?family=Roboto+Slab:wght@300;400;500;600;700;800;900&display=swap");
@font-face {
  font-family: "Muli";
  src: url(../fonts/Muli.ttf) format("truetype");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: "Muli";
  font-style: normal;
  font-weight: 500;
  src: local("Muli Regular"), url("../fonts/text-font/Muli-Regular.woff") format("woff");
}
@font-face {
  font-family: "Muli";
  font-style: normal;
  font-weight: 600;
  src: local("Muli SemiBold"), url("../fonts/text-font/Muli-SemiBold.woff") format("woff");
}
@font-face {
  font-family: "Muli";
  font-style: normal;
  font-weight: 700;
  src: local("Muli Bold"), url("../fonts/text-font/Muli-Bold.woff") format("woff");
}

/* CSS Variables */
:root {
  --primary-teal: #008080;
  --secondary-teal: #5dc4b8;
  --light-teal: #47bcae;
  --dark-teal: #225c55;
  --light-teal-bg: #e6fffd;
  --primary-orange: #ef5f34;
  --light-orange: #ff8c66;
  --accent-orange: #fda085;
  --light-orange-bg: #fef8f6;
  --dark-text: #4f555a;
  --light-bg: #f8fafc;
  scroll-behavior: unset;
}

/* Base Reset */
html {
  font-size: 15px;
}

body {
  font-family: "Muli", sans-serif !important; /* FIXED: Added !important and fallback */
  color: #4f555a;
  background-color: #fff;
  font-size: 15px;
  font-size: 1rem;
  overflow-x: hidden;
}
@media (max-width: 767px) {
  body {
    font-size: 14px;
  }
}

p {
  font-size: 16px;
  color: #4f555a;
  line-height: 1.8em;
}

h1, h2, h3, h4, h5, h6 {
  color: var(--dark-teal);
  font-family: "Roboto Slab", serif !important; /* FIXED: Added !important */
}

ul {
  padding-left: 0;
  margin: 0;
}

a {
  text-decoration: none !important; /* FIXED: Added !important to remove underlinings */
  transition: all 0.2s;
}

a:hover {
  text-decoration: none !important; /* FIXED: Added !important */
}

h2.hidden {
  display: none;
}

.sr-only {
  display: none !important;
  opacity: 0;
  visibility: hidden;
}

/* Global Elements */
.page-wrapper {
  position: relative;
  overflow: hidden;
}

.wow {
  visibility: hidden;
}

.fi:before {
  margin: 0;
}

.section-padding {
  padding: 120px 0;
}
@media (max-width: 767px) {
  .section-padding {
    padding: 80px 0;
  }
}

/* Global Buttons */
.theme-btn, .view-cart-btn, .theme-btn-s3, .theme-btn-s4, .theme-btn-s2 {
  background: var(--dark-teal) !important;
  background: linear-gradient(to left, rgba(239, 95, 52, 0.75), #e34212);
  color: #fff;
  display: inline-block;
  font-weight: 500;
  padding: 10px 25px;
  border: 0;
  border-radius: 6px;
  text-transform: capitalize;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
  position: relative;
  font-size: 20px;
  font-size: 1.3333333333rem;
}

.theme-btn:after, .view-cart-btn:after, .theme-btn-s3:after, .theme-btn-s4:after, .theme-btn-s2:after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 6px;
  background: linear-gradient(to left, #0db341, rgba(7, 71, 14, 0.75));
  transition: opacity 0.5s ease-out;
  opacity: 0;
  z-index: -1;
}

.theme-btn:hover, .view-cart-btn:hover, .theme-btn-s3:hover, .theme-btn-s4:hover,
.theme-btn:focus, .view-cart-btn:focus, .theme-btn-s3:focus, .theme-btn-s4:focus,
.theme-btn:active, .view-cart-btn:active, .theme-btn-s3:active, .theme-btn-s4:active,
.theme-btn-s2:hover, .theme-btn-s2:focus, .theme-btn-s2:active {
  color: #fff;
}

.theme-btn:hover:after, .view-cart-btn:hover:after, .theme-btn-s3:hover:after, .theme-btn-s4:hover:after, .theme-btn-s2:hover:after {
  opacity: 1;
}

@media (max-width: 991px) {
  .theme-btn, .view-cart-btn, .theme-btn-s3, .theme-btn-s4, .theme-btn-s2 {
    font-size: 18px;
    font-size: 1.2rem;
  }
}

@media (max-width: 767px) {
  .theme-btn, .view-cart-btn, .theme-btn-s3, .theme-btn-s4, .theme-btn-s2 {
    padding: 12px 18px;
    font-size: 14px;
  }
}

/* Global Section Titles */
.wpo-section-title {
  text-align: center;
  margin-bottom: 60px;
}
@media (max-width: 767px) {
  .wpo-section-title {
    margin-bottom: 40px;
  }
}
.wpo-section-title span {
  font-size: 18px;
  font-size: 1.2rem;
  color: var(--primary-teal);
  font-family: "Roboto Slab", serif !important;
}
.wpo-section-title h2 {
  font-size: 40px;
  font-size: 2.6666666667rem;
  margin: 0;
  position: relative;
  text-transform: capitalize;
  font-family: "Roboto Slab", serif !important;
  margin: 15px 0 20px;
}
@media (max-width: 1200px) {
  .wpo-section-title h2 {
    font-size: 35px;
    font-size: 2.3333333333rem;
  }
}
@media (max-width: 767px) {
  .wpo-section-title h2 {
    font-size: 32px;
  }
}
@media (max-width: 575px) {
  .wpo-section-title h2 {
    font-size: 22px;
  }
}
.wpo-section-title p {
  max-width: 580px;
  font-size: 18px;
}

/* Global Animations */
@-webkit-keyframes rotating {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
@keyframes rotating {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.rotating {
  -webkit-animation: rotating 5s alternate infinite;
  animation: rotating 5s alternate infinite;
}

/* Back to Top */
.back-to-top {
  background-color: rgba(239, 95, 52, 0.7);
  width: 45px;
  height: 45px;
  line-height: 45px;
  border: 2px solid var(--primary-orange);
  border-radius: 45px;
  text-align: center;
  display: none;
  position: fixed;
  z-index: 999;
  right: 15px;
  bottom: 15px;
  transition: all 0.2s;
}
@media (max-width: 991px) {
  .back-to-top {
    width: 35px;
    height: 35px;
    line-height: 35px;
  }
}
.back-to-top:hover {
  background-color: var(--primary-orange);
}
.back-to-top i {
  font-size: 18px;
  font-size: 1.2rem;
  color: #fff;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
