/* @import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;500;600;700;800&family=Marcellus:wght@400&family=Poppins:wght@300;400;500;600;700;800&family=Montserrat:wght@300;400;500;600;700;800&display=swap'); */
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,300;1,400;1,500;1,600;1,700;1,800&family=Marcellus:wght@400&family=Poppins:wght@300;400;500;600;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
body {
  font-family: 'Poppins', sans-serif;
}

/* Example usage */
h1 {
  font-family: 'Marcellus', serif;
}

p {
  font-family: "Roboto Condensed", sans-serif;
}

/* Fonts */
:root {
  --default-font: "Open Sans", "Roboto Condensed" system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Poppins",  sans-serif;
  --nav-font: "poppins", sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root { 
  --background-color: #ffffff; /* Background color for the entire website, including individual sections */
  --default-color: #141415; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #ffffff; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #5db84c; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: #212529;  /* The default color of the main navmenu links */
  --nav-hover-color: #5db84c; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #212529; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #5db84c; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
  --background-color: #f9f9f9;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #060606;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --accent-color: #2ea359;
  --surface-color: #252525;
  --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
  font-weight: 600;
}
.btn-success{
  background-color: #5db84c!important;
  border-color: #5db84c!important;
  outline-color:#5db84c!important;
}
.btn-success:hover{
  background-color: #5db84c!important;
}
/* PHP Email Form Messages
------------------------------*/
.php-email-form .error-message {
  display: none;
  background: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .sent-message {
  display: none;
  color: #ffffff;
  background: #61ba50;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .loading {
  display: none;
  background: var(--surface-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--accent-color);
  border-top-color: var(--surface-color);
  animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/* Pulsating Play Button
------------------------------*/
.pulsating-play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(var(--accent-color) 50%, color-mix(in srgb, var(--accent-color), transparent 75%) 52%);
  border-radius: 50%;
  display: block;
  position: relative;
  overflow: hidden;
}

.pulsating-play-btn:before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  animation-delay: 0s;
  animation: pulsate-play-btn 2s;
  animation-direction: forwards;
  animation-iteration-count: infinite;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid color-mix(in srgb, var(--accent-color), transparent 30%);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}

.pulsating-play-btn:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 100;
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.pulsating-play-btn:hover:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border: none;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 200;
  animation: none;
  border-radius: 0;
}

.pulsating-play-btn:hover:after {
  border-left: 15px solid var(--accent-color);
  transform: scale(20);
}

@keyframes pulsate-play-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }

  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 20px 0;
  transition: all 0.5s;
  z-index: 997;
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  max-height: 35px;
  margin-right: 8px;
}

.header .logo h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 700;
  color: var(--heading-color);
}

.scrolled .header {
  box-shadow: 0px 0 18px color-mix(in srgb, var(--default-color), transparent 85%);
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
    margin-right: auto;
    margin-left: 20px;
  }
  .header .header-grid{
      margin: 0px 50px;  
  }
  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
    color: #595e63;
    padding: 12px 10px;
    font-size: 14px;
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu li:last-child a {
    padding-right: 0;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-hover-color);
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px color-mix(in srgb, var(--default-color), transparent 85%);
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}

/* Navmenu - Mobile */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 0px;
    cursor: pointer;
    transition: color 0.3s;
    margin-left: auto;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px color-mix(in srgb, var(--default-color), transparent 90%);
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 15px;
    font-family: var(--nav-font);
    font-size: 12px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

      .navmenu a i, .navmenu a:focus i {
        font-size: 16px;
        line-height: 0;
        margin-left: 5px;
        width: 35px;
        height: 35px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        transition: 0.3s;
        background-color: color-mix(in srgb, var(--accent-color), transparent 10%);
        color: #ffffff;
    }
  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
}
.header .icon-btn {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: #f7f7f7;
  margin-left: 10px;
  position: relative;
}
.header .cart-badge {
  position: absolute;
  top: -5px;
  right: -5px;
  background-color: blue;
  color: white;
  font-size: 12px;
  font-weight: bold;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
.header .dropdown-menu{
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
  border: none!important;
}
@media (min-width: 991px) {
  /* .header .dropdown-menu {
      display: none;
  }
  .header .dropdown-menu.show {
      display: block;
  } */
  .header .dropdown-menu {
    min-width: 300px;
    right: 0!important;
    left: auto!important;
    
  }
  .header .navmenu .dropdown-menu {
    min-width: 300px;
    right: 0!important;
    left: auto!important;
    width: 100% !important;
  }
.header .navmenu .Custom-Order-dropdown .dropdown-menu{
	width:auto!important;
    min-width:250px!important;
	left:unset!important;
	right:unset!important;
}
  .header .dropdown:hover .dropdown-menu {
    display: block;
  }
  .header .dropdown-menu.show{
    transform: translate(0px, 40px)!important;
  }
  .navmenu .dropdown-menu .col-lg-3{
    position: relative;
  }
  .navmenu .dropdown-menu .col-lg-3::after {
    content: "";
    position: absolute;
    width: 1px;
    height: 70%;
    right: 20px;
    top: 18%;
    background-color: #bab8b8;
  }
  .navmenu .dropdown-menu .col-lg-3:last-child::after {
    display: none!important;
  }
}

.navmenu h6{
  color: #515151;
  text-transform: uppercase;
  font-size: 25px;
  margin-bottom: 10px;
}
.dropdown-menu .dropdown-item{
  padding: 6px 15px!important;
  transition: 0.3s;
}
.dropdown-menu .dropdown-item:hover{
  background-color: transparent!important;
  font-weight: 600!important;
  margin-left: 5px!important;
}
.dropdown-menu .dropdown-item:focus{
  background-color: transparent!important;
}
.dropdown-menu .dropdown-item .menu-product-item{
  display: flex;
  justify-content: center;
  flex-direction: column;
  width: 85%;
  background-color: #f6f6f6;
  padding: 15px;
  border-radius: 10px;
  text-align: center;
}
.dropdown-menu .dropdown-item .menu-product-item img{
  width: 50%;
  margin: auto;
  margin-bottom: 10px;
}
.dropdown-menu .dropdown-item .menu-product-item h6{
  font-size: 16px;
  margin-bottom: 0px;
}
.dropdown-menu .dropdown-item .menu-product-item span{
  margin-bottom: 10px;
}
.dropdown-menu .dropdown-item .menu-product-item .cart-button{
  border: none;
  padding: 3px;
  font-size: 13px;
  background-color: #ffffff;
  border-radius: 5px;
}
.navmenu a .fire-icon{
  width: 20px;
  margin-left: 3px;
}

.cart-dropdown .cart-item{
  background-color: #61ba5013;
  margin-bottom: 5px;
  padding: 4px 10px;
  border-radius: 6px;
}
.cart-dropdown .cart-item .delete-item{
  cursor: pointer;
}
.cart-dropdown .cart-item .cart-item-name{
  font-size: 14px!important;
}
.cart-dropdown .cart-item .cart-item-text small{
  font-size: 12px!important;
}

.user-dropdown .dropdown-item{
  margin-bottom: 5px;
}
.user-dropdown .dropdown-item i{
  margin-right: 3px;
}
.user-dropdown .dropdown-item:hover{
  background-color: #61ba50!important;
  border-radius: 4px;
  color: #ffffff;
  margin-left: 0px!important;
}
.search-dropdown .icon-btn{
  background-color: #eee0ed;
  color: #b074af;
}
.header-call .icon-btn{
  background-color: #ebf3ed;
  color: #388d4e;
}
.user-dropdown .icon-btn{
  background-color: #fff2ce;
  color: #d59c02;
}
/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: var(--default-color);
  background-color: var(--background-color);
  font-size: 14px;
  position: relative;
}
.footer-logo-grid{
   display: flex;
   align-items: center;
   margin-bottom: 25px;
}
.footer-logo-grid img{
  width: 25%;
  align-items: center;
  margin-bottom: 0px;
}
.footer-logo-grid p{
  font-size: 20px;
  font-weight: 500;
  margin-left: 10px;
  padding-left: 10px;
  margin-bottom: 0px;
  height: 100%;
  border-left: 1px solid #ffffff;
}
.footer .footer-top {
  background-color: color-mix(in srgb, var(--background-color), white 5%);
  padding-top: 50px;
}

.footer .footer-about .logo {
  line-height: 1;
  margin-bottom: 25px;
}

.footer .footer-about .logo img {
  max-height: 40px;
  margin-right: 6px;
}

.footer .footer-about .logo span {
  color: var(--heading-color);
  font-family: var(--heading-font);
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 1px;
}

.footer .footer-about p {
  font-size: 14px;
  font-family: var(--heading-font);
  color: #808291;
}
.footer .footer-about p a{
  color: #808291;
}
.footer .footer-about p strong{
  color: #ffffff;
}

.footer h4 {
  font-size: 18px;
  font-weight: 600;
  position: relative;
  padding-bottom: 12px;
  margin-bottom: 15px;
  text-transform: uppercase;
  color: #ffffff;
}

.footer h4::after {
  content: "";
  position: absolute;
  display: block;
  width: 20px;
  height: 2px;
  background: var(--accent-color);
  bottom: 0;
  left: 0;
}

.footer .footer-links {
  margin-bottom: 30px;
}

.footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-links ul i {
  padding-right: 2px;
  font-size: 12px;
  line-height: 0;
}

.footer .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
  font-family: "Poppins", sans-serif;
}

.footer .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-links ul a {
  color: #808291;
  display: inline-block;
  line-height: 1;
  font-family: "Poppins", sans-serif;
}

.footer .footer-links ul a:hover {
  color: var(--accent-color);
}

.footer .footer-contact p {
  margin-bottom: 5px;
  font-family: "Poppins", sans-serif;
}

.footer .copyright {
  padding: 15px 0;
  color: #808291;
  font-family: "Poppins", sans-serif;
}


.footer .copyright p {
  margin-bottom: 0;
  color: #808291;
  font-family: "Poppins", sans-serif;
}

.footer .credits {
  margin-top: 5px;
  font-size: 13px;
}

.footer .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #61ba50;
  color: #ffffff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 4px;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
  font-family: var(--nav-font);
}

.footer .social-links a:hover {
  color: var(--contrast-color);
  background: var(--accent-color);
  text-decoration: none;
}
.footer .newsletter button{
  background-color: #61ba50;
  color: #ffffff;
  border: none!important;
  padding: 8px 15px;
  line-height: normal;
  border-radius: 5px;
}
.footer-newsletter{
  padding-left: 30px;
}

.footer-newsletter h5{
    color: #ffffff;
}
.footer-newsletter-contact-info{
   display: flex;
   align-items: center;
   justify-content: space-between;
   margin-top: 20px;
}
.footer-newsletter-contact-info p{
  width: 48%;
}
.footer-newsletter-contact-info p strong{
  display: block;
  font-size: 18px!important;
  margin-bottom: 10px;
  font-weight: 500!important;
}
/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: var(--background-color);
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #ffffff;
  border-color: var(--accent-color) transparent var(--accent-color) transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1.5s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  left: 15px;
  bottom: 100px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background-color: #ebf3ed;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 50px 0;
  text-align: center;
  position: relative;
}

/* .page-title:before {
  content: "";
  position: absolute;
  inset: 0;
} */

.page-title h1 {
  font-size: 42px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #000000;
  text-transform: capitalize;
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  justify-content: center;
  padding: 0;
  margin: 0;
  font-size: 16px;
  font-weight: 400;
}

.page-title .breadcrumbs ol li+li {
  padding-left: 10px;
}

.page-title .breadcrumbs ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 45px 0;
  scroll-margin-top: 100px;
  overflow: clip;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 66px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 40px;
  position: relative;
}

.section-title h2 {
  font-size: 40px;
  font-weight: 600;
  margin-bottom: 10px;
}

.section-title p {
  margin-bottom: 0;
  font-family: var(--heading-font);
  font-size: 32px;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  padding: 0;
  overflow: hidden;
}

.hero .carousel {
  width: 100%;
  min-height: calc(85vh - 100px);
  padding: 0;
  margin: 0;
  background-color: #4daa3c;
  position: relative;
  background-image: url('data:image/svg+xml;charset=utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 500 500"><circle cx="250" cy="250" r="50" fill="none" stroke="white" stroke-opacity="0.1" stroke-width="1"/><circle cx="250" cy="250" r="100" fill="none" stroke="white" stroke-opacity="0.1" stroke-width="1"/><circle cx="250" cy="250" r="150" fill="none" stroke="white" stroke-opacity="0.1" stroke-width="1"/><circle cx="250" cy="250" r="200" fill="none" stroke="white" stroke-opacity="0.1" stroke-width="1"/><circle cx="250" cy="250" r="250" fill="none" stroke="white" stroke-opacity="0.1" stroke-width="1"/></svg>');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  overflow: hidden;
}

.hero img {
  inset: 0;
  display: block;
  width: 100%!important;
  height: 100%!important;
  object-fit: cover;
  z-index: 1;
}

.hero .carousel-item {
  /* position: absolute; */
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}
.hero .carousel-item.active{
  overflow: hidden;
}
.hero .carousel-item .col-sm-12{
  height: 100%!important;
}
/* .hero .carousel-item:before {
  content: "";
  background: color-mix(in srgb, var(--background-color), transparent 60%);
  position: absolute;
  inset: 0;
  z-index: 2;
} */

.hero .carousel-container {
  position: absolute;
  inset: 90px 64px 64px 64px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  z-index: 3;
}
.banner-img{
  height: 100%;
}
.bg-green .banner-content{
  height: 100%;
  /* background-color: #4daa3c; */
  width: 100%;
 
}
.banner-content {
   align-items: center;
   height: 100%;
   width: 100%;
   padding: 40px 60px;
   
}
.banner-content h3 {
  font-size: 35px;
  font-weight: 600;
  color: var(--contrast-color);
  /* animation: fadeInDown 1s both; */
  text-decoration: underline;
  margin-bottom: 30px;
  text-transform: capitalize;
}
.banner-content span {
  font-size: 28px;
  font-weight: 400;
  color: var(--contrast-color);
  /* animation: fadeInDown 1s both; */
  
}


.banner-content span b {
    width: 40px;
    height: 3px;
    background-color: #ffffff;
    display: inline-block;
    margin-bottom: 10px!important;
    margin: auto;
}
.banner-content .banner-button-group{
  margin-top: 45px;
}
.banner-content .banner-button-group{
  margin-top: 45px;
}
.banner-content .all-btn{
  padding: 15px 25px;
  border-radius: 25px;
  line-height: normal;
  margin-right: 15px;
}
.discover-btn{
background-color: #ffffff;
color: #000000;
border: 1px solid #ffffff;
font-weight: 600;
}
.discover-btn:hover{
  background-color: #ffffff;
  color: #61ba50;
  font-weight: 600;
  border: 1px solid #ffffff;
}
.view-product-btn{
  border: 1px solid #ffffff;
  color: #ffffff;
}
.view-product-btn:hover{
  background-color: #ffffff;
  color: #61ba50;
  font-weight: 500;
}
.banner-content .all-btn i{
 margin-right: 10px;
}
.banner-content .all-btn:hover{
 background-color: #fff;
 color: #61ba50;
}
.hero h1 {
  margin-bottom: 30px;
  font-size: 42px;
  /* animation: fadeInDown 1s both; */
}
.hero h2 {
  margin-bottom: 30px;
  font-size: 50px;
  font-weight: 700;
  /* animation: fadeInDown 1s both; */
}

@media (max-width: 768px) {
  .hero h2 {
    font-size: 30px;
  }
}

.hero p {
  /* animation: fadeInDown 1s both 0.2s; */
}

@media (min-width: 1024px) {

  .hero h2,
  .hero p {
    max-width: 60%;
  }
}

.hero .btn-get-started {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 32px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px;
  /* animation: fadeInUp 1s both 0.4s; */
}

.hero .btn-get-started:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.hero .carousel-control-prev,
.hero .carousel-control-next {
  width: 10%;
  transition: 0.3s;
  opacity: 0.5;
}

.hero .carousel-control-prev:focus,
.hero .carousel-control-next:focus {
  opacity: 0.5;
}

.hero .carousel-control-prev:hover,
.hero .carousel-control-next:hover {
  opacity: 0.9;
}

@media (min-width: 1024px) {

  .hero .carousel-control-prev,
  .hero .carousel-control-next {
    width: 5%;
  }
}

.hero .carousel-control-next-icon,
.hero .carousel-control-prev-icon {
  background: none;
  font-size: 32px;
  line-height: 1;
}

.hero .carousel-indicators {
  list-style: none;
  justify-content: start;
  margin-left: 4%!important;
  margin-bottom: 40px;
  text-indent:unset!important;
}

.hero .carousel-indicators li {
  cursor: pointer;
  text-indent:unset!important;
  background-color: transparent;
  font-size: 15px;
  font-weight: 500;
  font-family: var(--nav-font);
}
.hero .carousel-indicators li.active{
  background-color: transparent;
  color: #ffffff!important;
  font-weight: 700;
}
.carousel-indicators li {
  width: auto;
  height: auto;
  background: none;
  color: white;
  font-size: 1.2rem;
  padding: 5px 10px;
  border: 1px solid white;
  border-radius: 5px;
  margin: 0 5px;
  cursor: pointer;
}

.carousel-indicators .active {
  background: white;
  color: black;
}

/* Default state - Hide elements initially */
.banner-content h3, 
.banner-content h1, 
.banner-content span, 
.banner-button-group {
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s ease-in-out;
}

/* Active Slide Animation */
.carousel-item.active .banner-content h3 {
    opacity: 1;
    transform: translateY(0);
    animation: fadeInDown 1s ease-in-out;
}

.carousel-item.active .banner-content h1 {
    opacity: 1;
    transform: translateY(0);
    animation: flipInX 1.2s ease-in-out;
}

.carousel-item.active .banner-content span {
    opacity: 1;
    transform: translateY(0);
    animation: zoomIn 1.5s ease-in-out;
}

.carousel-item.active .banner-button-group {
    opacity: 1;
    transform: translateY(0);
    animation: fadeInUp 1.2s ease-in-out;
}

/* Keyframe Animations */
@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes flipInX {
    from { opacity: 0; transform: rotateX(90deg); }
    to { opacity: 1; transform: rotateX(0); }
}

@keyframes zoomIn {
    from { opacity: 0; transform: scale(0.8); }
    to { opacity: 1; transform: scale(1); }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* 
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
} */



/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .section-title h2 {
  color: var(--accent-color);
  font-size: 20px;
}

.services .content .service-item {
  background-color: var(--surface-color);
  padding: 25px 15px;
  position: relative;
  text-align: center;
}

.services .content .service-item .number {
  position: absolute;
  right: 10px;
  top: 10px;
  font-weight: 400;
  color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.services .content .service-item .service-item-icon {
  position: relative;
  margin-bottom: 20px;
  color: var(--accent-color);
}
.services .content .service-item .service-item-icon i{
  font-size: 50px;
}
.services .content .service-item .service-item-icon img {
  width: 80px;
}

.services .content .service-item .service-item-icon:before {
  position: absolute;
  content: "";
  transform: rotate(45deg);
  z-index: -1;
  left: -20px;
  border-top: 40px solid transparent;
  border-bottom: 40px solid transparent;
  border-right: 40px solid var(--accent-color);
  display: none;
}

.services .content .service-item .service-item-icon>span {
  color: var(--default-color);
  font-size: 4rem;
}

.services .content .service-item .service-item-content .service-heading {
  font-size: 24px;
  color: var(--default-color);
  font-weight: 500;
}

.services .content .service-item .service-item-content p {
  font-size: 16px;
}
.gif-video{
  width: 100%;
  height: 100%;
}
.gif-video img{
  width: 100%;
  height: 100%;
}


/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .section-title {
  margin-bottom: 60px;
}

.about .content {
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 7rem 0;
}

.about .content .img-overlap {
  margin-top: -150px;
}
.about h6{
  color: #2ea359;
}
.about h3{
  font-size: 40px;
  font-weight: 600;
  margin-bottom: 20px;
  font-family: "Poppins", sans-serif;
  color: #2a2a2a;
}
.about h3 span{
  color: #2ea359;
  font-family: "Poppins", sans-serif;
}
.about p {
  color: #555;
  font-family: "Poppins", sans-serif;
  margin-bottom: 5px;
}

.about .content-title {
  color: var(--contrast-color);
  font-weight: 300;
  text-align: left;
}

.about .content-title strong {
  font-weight: 700;
}

.about .content-subtitle {
  font-weight: 300;
  color: var(--contrast-color);
  text-transform: uppercase;
  font-size: 1.3rem;
}
.about .about-us-btn{
   background-color: #2ea359;
   padding: 10px 40px;
    color: #ffffff;
    line-height: normal;
    font-family: "Poppins", sans-serif;
    text-transform: capitalize;
    border-radius: 50px;
}

/*--------------------------------------------------------------
# Services 2 Section
--------------------------------------------------------------*/
.services-2 {
  overflow: visible;
  margin-bottom: 200px;
}

.services-2 .section-title {
  text-align: left;
}

.services-2 .section-title h2 {
  color: color-mix(in srgb, var(--contrast-color), transparent 50%);
  text-transform: uppercase;
  font-size: 20px;
}

.services-2 .section-title p {
  color: var(--contrast-color);
}

.services-2 .services-carousel-wrap {
  position: relative;
  margin-bottom: -200px;
}

.services-2 .swiper-wrapper {
  height: auto;
}

.services-2 .service-item {
  position: relative;
  overflow: hidden;
}

.services-2 .service-item:before {
  content: "";
  background-color: color-mix(in srgb, var(--background-color), transparent 50%);
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  position: absolute;
  opacity: 0;
  visibility: hidden;
  z-index: 1;
  transition: 0.3s all ease;
}

.services-2 .service-item img {
  transition: 0.5s all ease;
  transform: scale(1);
}

.services-2 .service-item .service-item-contents {
  z-index: 9;
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  transition: 0.3s all ease;
  transform: translateY(100%);
  opacity: 0;
  visibility: hidden;
}

.services-2 .service-item .service-item-contents .service-item-category {
  color: var(--accent-color);
  text-transform: uppercase;
}

.services-2 .service-item .service-item-contents .service-item-title {
  color: var(--contrast-color);
  margin-bottom: 0;
}

.services-2 .service-item:hover:before {
  opacity: 1;
  visibility: visible;
}

.services-2 .service-item:hover .service-item-contents {
  transform: translateY(0%);
  opacity: 1;
  visibility: visible;
}

.services-2 .service-item:hover img {
  transform: scale(1.2);
}

.services-2 .navigation-prev,
.services-2 .navigation-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 9;
  width: 46px;
  height: 46px;
  background: var(--contrast-color);
  background-color: none;
  border: none;
  transition: 0.3s all ease;
}

.services-2 .navigation-prev i,
.services-2 .navigation-next i {
  font-size: 2rem;
}

.services-2 .navigation-prev:hover,
.services-2 .navigation-next:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.services-2 .navigation-prev {
  left: 10px;
}

.services-2 .navigation-next {
  right: 10px;
}

.services-2 .swiper {
  padding-bottom: 50px;
}

.services-2 .swiper-pagination {
  bottom: 0px;
}

.services-2 .swiper-pagination .swiper-pagination-bullet {
  border-radius: 0;
  width: 20px;
  height: 4px;
  background-color: color-mix(in srgb, var(--background-color), transparent 80%) !important;
  opacity: 1;
}

.services-2 .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color) !important;
}



/*=============== steps-change css start ============== */
.steps-change{
  padding: 50px 40px;
  margin: 30px 0px;
}
.steps-change-left .steps {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.steps-change-left .step {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 18px;
  font-weight: bold;
  color: #555;
  cursor: pointer;
  transition: color 0.3s ease-in-out;
  padding-bottom: 70px;
  position: relative;
  z-index: 99;
}
.steps-change-left .step:last-child{
  
}
.steps-change-left .step:first-child:before{
 content: "";
  position: absolute;
  top: -100%;
  left: 6%;
  width: 2px;
  height: 100%;
  background-color: #f2f1fc00;
  z-index: 9;
  display: none!important;
}
.steps-change-left .step::before{
 content: "";
  position: absolute;
  top: -77%;
  left: 25px;
  width: 2px;
  height: 77%;
  background-color: #f2f1fc;
  z-index: 9;
}
.steps-change-left .step.active::before {
  background-color: #5db84c;
}

.steps-change-left .step.active {
  color: #5db84c;
}

.steps-change-left .step:hover {
  color: #5db84c;
}
.steps-change-left .step.active span {
  background: #f2f1fc;
  color: #5db84c;
}
.steps-change-left .step span {
  font-weight: bold;
  background: #f2f1fc;
  width: 50px;
  height: 50px;
  padding: 12px 15px;
  border-radius: 50%;
  color: #2c2c2c;
  position: relative;
  z-index: 99;
}
.steps-change-left .step h3{
  font-weight: 600;
  margin-bottom: 0px;
  font-size: 25px;
  color: #2c2c2c;
}
.steps-change-left .step.active h3{
  color: #5db84c;
}
.steps-change-right{
  display: flex;
  gap: 20px;
  justify-content: space-between;
  height: 100%;
}

.steps-change-right .content {
  display: flex;
  flex-direction: column;
  max-width: 100%;
}

.steps-change-right .image-container {
  width: 46%;
  height: 100%;
  background: #222;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  overflow: hidden;
}

.steps-change-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.steps-change-right .text-container {
  margin-top: 20px;
  width: 49%;
  margin-left: auto;
  display: flex;
  flex-direction: column;
}

.steps-change-right h4 {
  color: #5db84c;
  font-size: 16px;
  text-transform: uppercase;
}

.steps-change-right h2 {
  font-size: 36px;
  color: #2c2c2c;
  font-weight: 600;
  padding-bottom: 20px;
  margin-bottom: 20px;
  position: relative;
}
.steps-change-right h2::after{
  content: "";
  position: absolute;
  height: 2px;
  width: 40%;
  background-color: #2a2a2a;
  left: 0;
  bottom: 0px;
}
.steps-change-right p {
  color: #2a2a2a;
  font-size: 16px;
  margin-bottom: 50px;
  font-weight: 500;
}

.change-stape-btn{
  margin-top: auto;
}
.change-stape-btn .btn{
  background-color: #5db84c;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 25px;
  line-height: normal;
  color: #ffffff;
  margin-right: 10px;
}
/*=============== steps-change css start ============== */

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials .testimonial img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin-bottom: 20px;
}
.testimonials-title{
  display: flex;
  justify-content: space-between;
}
.section-title-left{
  display: flex;
  align-items: center;
}
.section-title-left img{
  border-radius: 70px;
}
.testimonial-header {
  font-weight: bold;
    color: #494949;
    font-size: 30px;
    width: 50%;
    text-transform: capitalize;
    line-height: normal;
    text-align: left;
    padding-left: 20px;
    font-family: "Poppins", sans-serif;
}
.testimonial-header span{
  color: #be73ae!important;
  font-size: 40px;
}
.section-title-right img{
    width: 70%;
    border-radius: 20px;
}
.testimonials .testimonial blockquote p {
  font-size: 20px;
  color: var(--default-color);
  font-weight: 500;
}

.testimonials .testimonial .client-name {
  text-transform: uppercase;
  font-size: 1.2rem;
  color: var(--accent-color);
}

.testimonials .swiper-container {
  margin-top: 30px;
  padding: 20px;
  overflow: hidden;
  font-family: "Poppins", sans-serif;
}

.testimonial-content{
  background-color: #ffffff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  text-align: center;
  font-family: var(--default-font);
  position: relative;
  font-family: "Poppins", sans-serif;
}
.testimonial-content::after{
  content: "";
  position: absolute;
  bottom: -15px;
  left: 40px;
  height:0px;
  width:0px;
  border:none;
  border-top:15px solid #ffffff;
  border-left:15px solid rgba(255, 255, 255, 0);
  border-right:15px solid rgba(255, 255, 255, 0);
  
}
.testimonial-text {
  font-size: 16px;
  color: #555;
  margin-bottom: 15px;
  text-align: left;
  font-family: "Poppins", sans-serif;
}
.testimonial-profile {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 10px;
  margin-top: 40px;
  margin-left: 20px;
}
.testimonial-profile img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
}
.testimonial-name {
  font-weight: bold;
  font-size: 16px;
}
.swiper-pagination {
  margin-top: 10px;
}
/*--------------------------------------------------------------
# Recent Posts Section
--------------------------------------------------------------*/
.recent-posts{
  padding: 50px 0px !important;
}
.recent-posts .section-title h2{
  color: #2a2a2a!important;
}
.recent-posts .post-item {
  background: var(--surface-color);
  box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.1);
  transition: 0.3s;
  border-radius: 8px;
  overflow: hidden;
}

.recent-posts .post-item .post-img img {
  transition: 0.5s;
}
.recent-posts .blog-bg{
   padding: 50px 0px;
   border-radius: 10px;
}
.recent-posts .post-item .post-date {
  position: absolute;
  right: 15px;
  bottom: 80%;
  background-color: #ffffff;
  color: #000000;
  text-transform: uppercase;
  font-size: 15px;
  padding: 6px 12px;
  font-weight: 500;
  border-radius: 5px;
}

.recent-posts .post-item .post-content {
  padding: 20px;
  font-weight: 500;
}

.recent-posts .post-item .post-title {
  color: #242e45;
  font-size: 18px;
  font-weight: 500;
  transition: 0.3s;
  margin-bottom: 15px;
  
}
.recent-posts .post-item p{
  color: #6d6d6d;
}
.recent-posts .post-item .meta{
  justify-content: space-between;
  color: #2a2a2a;
}
.recent-posts .post-item .meta i {
  font-size: 16px;
  color: #5db84c;
}

.recent-posts .post-item .meta span {
  font-size: 15px;
  color: #2a2a2a;
}

.recent-posts .post-item hr {
  color: color-mix(in srgb, var(--default-color), transparent 80%);
  margin: 20px 0;
}

.recent-posts .post-item .readmore {
  display: flex;
  align-items: center;
  font-weight: 600;
  line-height: 1;
  transition: 0.3s;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.recent-posts .post-item .readmore i {
  line-height: 0;
  margin-left: 6px;
  font-size: 16px;
}

.recent-posts .post-item:hover .post-title,
.recent-posts .post-item:hover .readmore {
  color: var(--accent-color);
}

.recent-posts .post-item:hover .post-img img {
  transform: scale(1.1);
}

/*--------------------------------------------------------------
# Call To Action Section
--------------------------------------------------------------*/
.call-to-action{
  min-height:100%;
  background:linear-gradient(0deg, rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.341)), url(../img/call-to-action-banner.jpg) no-repeat center center;
  /* background-attachment:fixed; */
  background-size:cover;
}
.call-to-action .content {
  padding:5px 0;
}

.call-to-action .content h3 {
  font-weight: 500;
  text-transform: capitalize;
  font-size: 40px;
}

.call-to-action .content p{
  width: 80%;
  color: #e5e5e5;
  margin: 20px auto;
}
.call-to-action .wholesaler-apply-btn{
  display: flex;
  align-items: center;
  height: 90px;
  justify-content: center;
}
.call-to-action  .content .btn-cta {
  text-transform: capitalize;
  font-size: 16px;
  padding: 15px 30px;
  border: 1px solid #5db84c;
  border-radius: 50px;
  font-weight: 500;
  color: #ffffff;
  transition: all 0.5s;
}
.call-to-action .content .btn-cta:hover {
  background-color: #5db84c;
  color: var(--contrast-color);
  padding: 12px 25px;
  font-size: 15px;

}



/*=============== Browse Category css start ============== */


.category-section {
  padding: 70px 0px;
  margin: 30px 0px;
  text-align: center;
  background-color: #b074af;
  color: #ffffff;
  position: relative;
}

.category-title {
  font-size: 30px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 40px;
  color: #ffffff;
  text-align: left;
  font-weight: 500;
}
.category-title strong{
  font-style: 700;
}
.category-box {
  padding: 20px;
  position: relative;
  color: #ffffff;
}
 .category-box img{
  width: 50px;
  margin: auto;
  margin-bottom: 10px;
}
.category-box p{
  font-size: 19px;
  color: #ffffff;
}
.category-box i {
  font-size: 40px;
  margin-bottom: 10px;
  color: #ffffff;
}
.top-divider .category-box{
  padding-top: 0px!important;
}
.bottom-divider .category-box{
  padding-bottom: 0px!important;
}
/* Horizontal Divider */
.row-divider {
  border-top: 1px solid white;
  width: 95%;
  margin: 0px auto;
}
.category-section .col-divider{
  position: relative;
}
/* Vertical Divider */
.category-section .col-divider::after {
  content: "";
  position: absolute;
  top: 0%;
  right: 0;
  height: 100%;
  width: 1px;
  background-color: white;
}
/* Remove side dividers for the last column in each row */
/* .col-md-3:nth-child(4n)::after,
.col-6:nth-child(2n)::after {
  display: none;
} */
/* Apply animation on hover */
.category-box:hover{
  animation: shake 0.82s cubic-bezier(.36,.07,.19,.97) both;
  transform: translate3d(0, 0, 0);
  perspective: 1000px;
}

@keyframes shake {
  10%, 90% {
    transform: translate3d(-1px, 0, 0);
  }
  20%, 80% {
    transform: translate3d(2px, 0, 0);
  }
  
  30%, 50%, 70% {
    transform: translate3d(-2px, 0, 0);
  }
  40%, 60% {
    transform: translate3d(2px, 0, 0);
}
}




/*=============== Browse Category css end============== */
/*--------------------------------------------------------------
# About 3 Section
--------------------------------------------------------------*/
.about-3 .content-title {
  color: var(--accent-color);
  margin-bottom: 30px;
}

.about-3 .btn-cta {
  text-transform: uppercase;
  font-size: 14px;
  padding-top: 20px;
  padding-bottom: 20px;
  padding-left: 30px;
  padding-right: 30px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 6px;
}

.about-3 .list-check {
  margin-bottom: 50px;
}

.about-3 .list-check li {
  display: block;
  padding-left: 30px;
  position: relative;
}

.about-3 .list-check li:before {
  content: "\f26e";
  display: inline-block;
  font-family: "bootstrap-icons" !important;
  font-style: normal;
  font-weight: normal !important;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  vertical-align: -0.125em;
  -webkit-font-smoothing: antialiased;
  position: absolute;
  top: 0.1rem;
  font-size: 20px;
  left: 0;
  color: var(--accent-color);
}

.about-3 .pulsating-play-btn {
  position: absolute;
  left: calc(50% - 47px);
  top: calc(50% - 47px);
}

/*--------------------------------------------------------------
# Team Section
--------------------------------------------------------------*/
.team .person {
  position: relative;
}

.team .person figure {
  margin-bottom: 0;
  padding-bottom: 0;
  position: relative;
  overflow: hidden;
  margin-bottom: 30px;
}

.team .person img {
  transition: 0.3s all ease;
}

.team .person .person-contents {
  text-align: center;
}

.team .person .person-contents h3 {
  color: var(--heading-color);
  font-size: 24px;
}

.team .person .person-contents .position {
  color: var(--accent-color);
}

.team .person:hover img {
  transform: scale(1.05);
}

.team .person .social {
  position: absolute;
  bottom: 10px;
  left: 10px;
  z-index: 2;
}

.team .person .social a {
  display: block;
  margin-bottom: 10px;
  width: 40px;
  height: 40px;
  background: var(--contrast-color);
  position: relative;
}

.team .person .social a>span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.team .person .social a:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

/*--------------------------------------------------------------
# Blog Posts 2 Section
--------------------------------------------------------------*/
.blog-posts-2 article {
  background-color: var(--surface-color);
  box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.1);
  transition: 0.3s;
  border-radius: 8px;
  overflow: hidden;
}

.blog-posts-2 .post-img img {
  transition: 0.5s;
}

.blog-posts-2 .post-content {
  padding: 30px;
}

.blog-posts-2 .post-title {
  font-size: 20px;
  line-height: 24px;
  color: var(--heading-color);
  font-weight: 600;
  transition: 0.3s;
  margin-bottom: 20px;
}

.blog-posts-2 .meta {
  position: relative;
  margin-top: -20px;
  padding: 0 30px;
}

.blog-posts-2 .meta i {
  font-size: 16px;
  color: var(--accent-color);
}

.blog-posts-2 .meta span {
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.blog-posts-2 .meta .post-date {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  font-size: 13px;
  padding: 6px 12px;
  text-align: center;
  margin-right: 15px;
  border-radius: 4px;
}

.blog-posts-2 .meta .post-date span {
  display: block;
  color: var(--contrast-color);
  font-weight: 700;
  font-size: 20px;
}

.blog-posts-2 .readmore {
  display: flex;
  align-items: center;
  font-weight: 400;
  line-height: 1;
  transition: 0.3s;
  color: color-mix(in srgb, var(--heading-color), transparent 20%);
}

.blog-posts-2 .readmore i {
  line-height: 0;
  margin-left: 6px;
  font-size: 16px;
}

.blog-posts-2 article:hover .post-title,
.blog-posts-2 article:hover .readmore {
  color: var(--accent-color);
}

.blog-posts-2 article:hover .post-img img {
  transform: scale(1.1);
}
.blog-details .content h3{
  color: #2a2a2a;
}
.blog-details-page .widget-title{
  color: #2a2a2a;
}
/*--------------------------------------------------------------
# Blog Pagination Section
--------------------------------------------------------------*/
.blog-pagination {
  padding-top: 0;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.blog-pagination ul {
  display: flex;
  padding: 0;
  margin: 0;
  list-style: none;
}

.blog-pagination li {
  margin: 0 5px;
  transition: 0.3s;
}

.blog-pagination li a {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  padding: 7px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog-pagination li a.active,
.blog-pagination li a:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.blog-pagination li a.active a,
.blog-pagination li a:hover a {
  color: var(--contrast-color);
}

/*--------------------------------------------------------------
# Blog Details Section
--------------------------------------------------------------*/
.blog-details {
  padding-bottom: 30px;
}

.blog-details .article {
  background-color: var(--surface-color);
  padding: 30px;
}

.blog-details .post-img {
  margin: -30px -30px 20px -30px;
  overflow: hidden;
}

.blog-details .title {
  color: var(--heading-color);
  font-size: 28px;
  font-weight: 700;
  padding: 0;
  margin: 30px 0;
}

.blog-details .content {
  margin-top: 20px;
}

.blog-details .content h3 {
  font-size: 22px;
  margin-top: 30px;
  font-weight: bold;
}

.blog-details .content blockquote {
  overflow: hidden;
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
  padding: 60px;
  position: relative;
  text-align: center;
  margin: 20px 0;
}

.blog-details .content blockquote p {
  color: var(--default-color);
  line-height: 1.6;
  margin-bottom: 0;
  font-style: italic;
  font-weight: 500;
  font-size: 22px;
}

.blog-details .content blockquote:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background-color: var(--accent-color);
  margin-top: 20px;
  margin-bottom: 20px;
}

.blog-details .meta-top {
  margin-top: 20px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.blog-details .meta-top ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  align-items: center;
  padding: 0;
  margin: 0;
}

.blog-details .meta-top ul li+li {
  padding-left: 20px;
}

.blog-details .meta-top i {
  font-size: 16px;
  margin-right: 8px;
  line-height: 0;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.blog-details .meta-top a {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 14px;
  display: inline-block;
  line-height: 1;
}

.blog-details .meta-bottom {
  padding-top: 10px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.blog-details .meta-bottom i {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  display: inline;
}

.blog-details .meta-bottom a {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  transition: 0.3s;
}

.blog-details .meta-bottom a:hover {
  color: var(--accent-color);
}

.blog-details .meta-bottom .cats {
  list-style: none;
  display: inline;
  padding: 0 20px 0 0;
  font-size: 14px;
}

.blog-details .meta-bottom .cats li {
  display: inline-block;
}

.blog-details .meta-bottom .tags {
  list-style: none;
  display: inline;
  padding: 0;
  font-size: 14px;
}

.blog-details .meta-bottom .tags li {
  display: inline-block;
}

.blog-details .meta-bottom .tags li+li::before {
  padding-right: 6px;
  color: var(--default-color);
  content: ",";
}

.blog-details .meta-bottom .share {
  font-size: 16px;
}

.blog-details .meta-bottom .share i {
  padding-left: 5px;
}
.blog-details-page .sidebar .widgets-container{
  box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 5px 0px, rgba(0, 0, 0, 0.1) 0px 0px 1px 0px;
  padding: 20px;
  border-radius: 10px;
}
/*--------------------------------------------------------------
# Blog Comments Section
--------------------------------------------------------------*/
.blog-comments {
  padding: 10px 0;
}

.blog-comments .comments-count {
  font-weight: bold;
}

.blog-comments .comment {
  margin-top: 30px;
  position: relative;
}

.blog-comments .comment .comment-img {
  margin-right: 14px;
}

.blog-comments .comment .comment-img img {
  width: 60px;
}

.blog-comments .comment h5 {
  font-size: 16px;
  margin-bottom: 2px;
}

.blog-comments .comment h5 a {
  font-weight: bold;
  color: var(--default-color);
  transition: 0.3s;
}

.blog-comments .comment h5 a:hover {
  color: var(--accent-color);
}

.blog-comments .comment h5 .reply {
  padding-left: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.blog-comments .comment h5 .reply i {
  font-size: 20px;
}

.blog-comments .comment time {
  display: block;
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 5px;
}

.blog-comments .comment.comment-reply {
  padding-left: 40px;
}

/*--------------------------------------------------------------
# Comment Form Section
--------------------------------------------------------------*/
.comment-form {
  padding-top: 10px;
}

.comment-form form {
  background-color: var(--surface-color);
  margin-top: 30px;
  padding: 30px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.comment-form form h4 {
  font-weight: bold;
  font-size: 22px;
}

.comment-form form p {
  font-size: 14px;
}

.comment-form form input {
  background-color: var(--surface-color);
  color: var(--default-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 70%);
  font-size: 14px;
  border-radius: 4px;
  padding: 10px 10px;
}

.comment-form form input:focus {
  color: var(--default-color);
  background-color: var(--surface-color);
  box-shadow: none;
  border-color: var(--accent-color);
}

.comment-form form input::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.comment-form form textarea {
  background-color: var(--surface-color);
  color: var(--default-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 70%);
  border-radius: 4px;
  padding: 10px 10px;
  font-size: 14px;
  height: 120px;
}

.comment-form form textarea:focus {
  color: var(--default-color);
  box-shadow: none;
  border-color: var(--accent-color);
  background-color: var(--surface-color);
}

.comment-form form textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.comment-form form .form-group {
  margin-bottom: 25px;
}

.comment-form form .btn-primary {
  border-radius: 4px;
  padding: 10px 20px;
  border: 0;
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.comment-form form .btn-primary:hover {
  color: var(--contrast-color);
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact {
  padding-top: 10px;
}

.contact .info {
  background-color: var(--surface-color);
  padding: 40px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  border-radius: 10px;
  height: 100%;
}
.contact-us-main{
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  padding: 30px;
}
.contact .info h3 {
  font-weight: 600;
  font-size: 24px;
  color: #000000;
}

.contact .info p {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 30px;
  font-size: 15px;
}

.contact .info-item+.info-item {
  padding-top: 20px;
  margin-top: 20px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.contact .info-item i {
  font-size: 24px;
  color: var(--accent-color);
  transition: all 0.3s ease-in-out;
  margin-right: 20px;
}

.contact .info-item h4 {
  padding: 0;
  font-size: 18px;
  line-height: 24px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #212529;
}

.contact .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.contact .php-email-form {
  width: 100%;
}

.contact .php-email-form .form-group {
  padding-bottom: 8px;
}

.contact .php-email-form input[type=text],
.contact .php-email-form input[type=email],
.contact .php-email-form textarea {
  color: var(--default-color);
  background-color: var(--surface-color);
  border-radius: 0px;
  box-shadow: none;
  font-size: 14px;
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.contact .php-email-form input[type=text]:focus,
.contact .php-email-form input[type=email]:focus,
.contact .php-email-form textarea:focus {
  border-color: var(--accent-color);
}

.contact .php-email-form input[type=text]::placeholder,
.contact .php-email-form input[type=email]::placeholder,
.contact .php-email-form textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.contact .php-email-form input[type=text],
.contact .php-email-form input[type=email] {
  height: 48px;
  padding: 10px 15px;
}

.contact .php-email-form textarea {
  padding: 10px 12px;
  height: 290px;
}

.contact .php-email-form button[type=submit] {
  background: var(--accent-color);
  color: var(--contrast-color);
  border: 0;
  padding: 13px 50px;
  transition: 0.4s;
  border-radius: 4px;
}

.contact .php-email-form button[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color) 90%, black 15%);
}

/*--------------------------------------------------------------
# Widgets
--------------------------------------------------------------*/
.widgets-container {
  margin: 60px 0 30px 0;
}

.widget-title {
  color: var(--heading-color);
  font-size: 20px;
  font-weight: 600;
  padding: 0 0 10px 0;
  margin: 0 0 20px 0;
  position: relative;
}

.widget-title:before {
  content: "";
  position: absolute;
  display: block;
  height: 2px;
  background: color-mix(in srgb, var(--default-color), transparent 90%);
  left: 0;
  right: 0;
  bottom: 1px;
}

.widget-title:after {
  content: "";
  position: absolute;
  display: block;
  width: 40px;
  height: 2px;
  background: var(--accent-color);
  left: 0;
  bottom: 1px;
}

.widget-item {
  margin-bottom: 40px;
}

.widget-item:last-child {
  margin-bottom: 0;
}

.recent-posts-widget .post-item {
  display: flex;
  margin-bottom: 15px;
}

.recent-posts-widget .post-item:last-child {
  margin-bottom: 0;
}

.recent-posts-widget .post-item img {
  width: 80px;
  margin-right: 15px;
}

.recent-posts-widget .post-item h4 {
  font-size: 15px;
  font-weight: bold;
  margin-bottom: 5px;
}

.recent-posts-widget .post-item h4 a {
  color: var(--default-color);
  transition: 0.3s;
}

.recent-posts-widget .post-item h4 a:hover {
  color: var(--accent-color);
}

.recent-posts-widget .post-item time {
  display: block;
  font-style: italic;
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.categories-widget ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.categories-widget ul li {
  padding-bottom: 10px;
}

.categories-widget ul li:last-child {
  padding-bottom: 0;
}

.categories-widget ul a {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  transition: 0.3s;
}

.categories-widget ul a:hover {
  color: var(--accent-color);
}

.categories-widget ul a span {
  padding-left: 5px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 14px;
}

.blog-author-widget img {
  max-width: 120px;
  margin-right: 20px;
}

.blog-author-widget h4 {
  font-weight: 600;
  font-size: 24px;
  margin-bottom: 0px;
  padding: 0;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.blog-author-widget .social-links {
  margin: 5px 0;
}

.blog-author-widget .social-links a {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
  margin-right: 5px;
  font-size: 18px;
}

.blog-author-widget .social-links a:hover {
  color: var(--accent-color);
}

.blog-author-widget p {
  font-style: italic;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin: 10px 0 0 0;
}

.search-widget form {
  background: var(--background-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 70%);
  padding: 3px 10px;
  position: relative;
  transition: 0.3s;
}

.search-widget form input[type=text] {
  border: 0;
  padding: 4px;
  border-radius: 4px;
  width: calc(100% - 40px);
  background-color: var(--background-color);
  color: var(--default-color);
}

.search-widget form input[type=text]:focus {
  outline: none;
}

.search-widget form button {
  background: var(--accent-color);
  color: var(--contrast-color);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: 0;
  font-size: 16px;
  padding: 0 15px;
  margin: -1px;
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
  line-height: 0;
}

.search-widget form button i {
  line-height: 0;
}

.search-widget form button:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.search-widget form:is(:focus-within) {
  border-color: var(--accent-color);
}

.recent-posts-widget-2 .post-item {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}

.recent-posts-widget-2 .post-item:last-child {
  margin-bottom: 0;
}

.recent-posts-widget-2 .post-item h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 5px;
}

.recent-posts-widget-2 .post-item h4 a {
  color: var(--default-color);
  transition: 0.3s;
}

.recent-posts-widget-2 .post-item h4 a:hover {
  color: var(--accent-color);
}

.recent-posts-widget-2 .post-item time {
  display: block;
  font-style: italic;
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.tags-widget ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.tags-widget ul li {
  display: inline-block;
}

.tags-widget ul a {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 14px;
  padding: 6px 14px;
  margin: 0 6px 8px 0;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 60%);
  display: inline-block;
  transition: 0.3s;
}

.tags-widget ul a:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  border: 1px solid var(--accent-color);
}

.tags-widget ul a span {
  padding-left: 5px;
  color: color-mix(in srgb, var(--default-color), transparent 60%);
  font-size: 14px;
}

@media only screen and (min-width: 1600px) {
  .container-xxl{
    width: 80%;
    max-width: 90%;
    margin: auto;
  }
  
}

@media only screen and (min-width: 1260px) and (max-width: 1500px)  {
  .container-xxl{
    width: 95%;
    max-width: 95%;
    margin: auto;
  }
}


/*========== Protect-From-Punctures ==========*/
.Protect-From-Punctures img{
  width: 100%;
  min-width: 100%;
  max-width: 100%;
}
.Protect-From-Punctures .Protect-Punctures-btn{
  background-color: #5db84c;
  padding: 8px 50px;
  border-radius: 50px;
  border: none!important;
  margin-top: 10px;
}
.Protect-Punctures-content h3{
  font-size: 40px;
  text-transform: capitalize;
  font-weight: 600;
  color: #3c3c3c;
}
.Protect-Punctures-content2 h3{
  font-size: 40px;
  text-transform: capitalize;
  text-align: center;
  font-weight: 600;
  color: #3c3c3c;
}

.Protect-Punctures-content2 h2{
  font-size: 60px;
  text-transform: capitalize;
  text-align: center;
  text-transform: uppercase;
  font-weight: 700;
  color: #3c3c3c;
}
.Protect-Punctures-content2{
  text-align: center;
  width: 100%;
  position: relative;
  z-index: 999;
  height: 100%;
}
.Protect-Punctures-content2{
  padding: 100px  0px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-image: url(../img/5x-img.png);
}

/*========== our product ==========*/
.our-product .category-title{
  color: #2c2c2c!important;
}
.our-product .swiper {
  width: 100%;
  padding: 20px;
}
.our-product .product-card {
  position: relative;
  background: white;
  padding: 15px;
  border-radius: 10px;
  transition: transform 0.3s ease;
  overflow: hidden;
  height: 100%;
}
.our-product .product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.our-product .product-img {
  width: 100%;
  border-radius: 8px;
  position: relative;
}
.our-product .product-image .tag span{
  position: absolute;
  top: 20px;
  background: #be73ae;
  color: aliceblue;
  padding: 6px 20px;
  line-height: normal;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
}
.our-product .product-image .tag img{ 
  position: absolute;
  top: 40px;
  width: 10%;
  left: 0;
}
.our-product .product-info {
  margin-top: 10px;
  position: relative;
  height: 100%;
}
.our-product .product-info .product-details{
  display: flex;
  justify-content: space-between;
  color: #5f5f5f;
}
.product-info .product-details .name{
  font-size: 14px;
}
.product-info .product-details .review-star{
  position: absolute;
  right: 10px;
  top: -25px;
  padding-left: 0px;
  margin-bottom: 0px;
  display: flex;
}
.product-details .review-star{
  list-style-type: none;
  font-size: 12px;
  color: #f9c53d;
  display: inline-block;
  margin-right: 3px;
}
.our-product .product-info .price {
  font-size: 18px;
  font-weight: bold;
  color: #333;
  margin-bottom: 0px;
}
.our-product .product-info .product-add-price{
  display: flex;
    justify-content: space-between;
    align-items: center;
}
.our-product .product-card .hover-icons {
  position: absolute;
  top: 20px;
  right: 15px;
  display: flex;
  flex-direction: column;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}
.our-product .product-card:hover .hover-icons {
  opacity: 1;
}
.our-product .product-card .hover-icons a {
  background: #dedede;
  color: #2a2a2a;
  text-decoration: none;
  padding: 8px;
  margin: 5px 0;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  font-size: 16px;
}
.our-product .product-card .hover-icons a:hover{
  background-color: #2ea359;
  color: #ffffff;
}
.product-card .cart-button {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 10px;
  background-color: transparent;
  color: #000000;
  border: none;
  border-radius: 8px;
  font-size: 15px;
  cursor: pointer;
  transition: width 0.3s ease, background 0.3s ease;
  overflow: hidden;
  width: 40px;
  max-width: auto;
  white-space: nowrap;
  line-height: normal;
}

.product-card .cart-button i {
  font-size: 20px;
  transition: transform 0.3s ease;
}

.product-card .cart-text {
  opacity: 0;
  margin-left: 8px;
  transform: translateX(-10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  display: none;
}

.product-card .cart-button:hover {
  width: 140px;
  background-color: transparent;
  justify-content: flex-start;
  padding: 8px 16px;
}

.product-card .cart-button:hover .cart-text {
  opacity: 1;
  transform: translateX(0);
  display: block;
}

/* Responsive Design */
@media (max-width: 768px) {
  .our-product .product-card .hover-icons {
      opacity: 1; /* Always show on mobile */
  }
  .our-product .product-card .hover-icons a {
      width: 25px;
      height: 25px;
      font-size: 12px;
  }
}

/*========== our product ==========*/

/*========== text-slider-grid start ==========*/
.text-slider{
  padding-top: 0px!important;
}
.text-slider-grid{
  width: 60%;
  margin: 0px auto;
  background-color: #ebf3ed;
  color: #2a2a2a;
  border-radius: 50px;
  padding: 10px 20px;
  overflow: hidden;
}
.text-slider-grid .icon{
  background-color: #ebf3ed;
  padding: 5px;
  color: #59a56b;
  display: inline-block;
}
.text-slider-grid .text-marquee{
 display: inline-block;
  width: 95%;
  align-items: center;
}
.text-slider-grid .text-marquee marquee{
  line-height: normal;
  font-size: 18px;
  font-weight: 600;
  text-transform: capitalize;
  padding-top: 5px;
}

/*=========== form css ============*/
.section-content .form-group {
  margin-bottom: 20px;
  font-family: "Poppins", sans-serif;
}
.section-content .form-group label {
  display: block;
  margin-bottom: 8px;
  font-size: 0.9rem;
  color: var(--heading-color);
  text-align: left;
  font-family: "Poppins", sans-serif;
}

.section-content .form-group .form-control, .section-content .form-group .form-select {
  border: 1px solid 
color-mix(in srgb, var(--default-color), transparent 85%);
  border-radius: 1px;
  padding: 12px 16px;
  font-size: 0.95rem;
  height: auto;
  background-color: var(--surface-color);
  transition: 0.25s;
}
.form-group .form-control:hover, .checkout .checkout-section .section-content .form-group .form-select:hover {
  border-color: 
color-mix(in srgb, var(--accent-color), transparent 60%);
}
.section-content .form-group .form-control:focus, .section-content .form-group .form-select:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 4px 
color-mix(in srgb, var(--accent-color), transparent 85%);
  outline: none;
}

.section-content .form-check.terms-check {
  margin-top: 10px;
  margin-bottom: 20px;
  text-align: left;
}
.section-content .form-check .form-check-input {
  width: 18px;
  height: 18px;
  margin-left: -1.5rem;
  margin-top: 0.2rem;
  border: 2px solid 
color-mix(in srgb, var(--default-color), transparent 70%);
  background-color: var(--surface-color);
  cursor: pointer;
}
.section-content .form-check.terms-check .form-check-label {
  font-size: 0.85rem;
}
.section-content .form-check .form-check-label a {
  color: var(--accent-color);
  text-decoration: none;
  font-weight: 500;
}
.section-content .form-check .form-check-input:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px 
color-mix(in srgb, var(--accent-color), transparent 85%);
}

.section-content .form-check .form-check-input:checked{
  background-color: #2ea359;
}
.file-group{
  position: relative;
}
.file-group .fileup-icon{
  position: absolute;
  right: 2%;
  top: 45px;
}
.file-group .fileup-icon i{
  padding: 8px 12px;
    background-color: #dcdcdc;
    border-radius: 50px;
    font-size: 15px;
  transition: all 0.3s ease-in-out;
}
.form-group:hover .fileup-icon i{
  background-color: #2ea359;
  color: #fff;
  transition: all 0.3s ease-in-out;

}
/*============== wholesale-form css ================*/
.wholesale-form{
  padding: 30px;
  /* border-bottom-right-radius: 15px;
  border-bottom-left-radius: 15px; */
  box-shadow: rgba(0, 0, 0, 0.04) 0px 4px 20px;
}
.wholesale-section .section-title{
  font-size: 30px;
  font-weight: 600;
  color: #2a2a2a;
  text-align: center;
  text-transform: capitalize;
  padding-bottom: 0px;
  background-color: transparent;
  border-top-right-radius: 15px;
  border-top-left-radius: 15px;
  padding: 30px 0px;
  text-align: left;
}
.wholesale-section .section-title p{
  font-size: 18px;
  font-weight: normal;
  text-align: left;
  color: #333;
}
.wholesale-section h2{
  padding: 0px!important;
  font-weight: 500;
  color: #2a2a2a;
  text-align: left;
  font-size: 35px;
}
.form-btn-group .submit-btn{
  background-color: #2ea359;
  padding: 8px 50px;
  border-radius: 10px;
  margin-top: 10px;
  font-size: 16px;
  color: #fff;
  border: 1px solid #2ea359;
  transition: all 0.3s ease-in-out;
  margin-right: 10px;
}
.form-btn-group .save-btn{
  background-color: transparent;
  padding: 8px 50px;
  border-radius: 10px;
  margin-top: 10px;
  font-size: 16px;
  color: #2ea359;
  border: 1px solid #2ea359;
  transition: all 0.3s ease-in-out;
}
.form-btn-group .save-btn:hover{
  background-color: #2ea359;
  color: #fff;
}

/*============== retailers css ================*/
.retailers-section{
  padding-bottom: 0px
}
.retailers-section .section-title{
  font-size: 30px;
  font-weight: 600;
  text-align: center;
  text-transform: capitalize;
  padding-bottom: 0px;
  border-top-right-radius: 15px;
  border-top-left-radius: 15px;
  padding: 30px 0px;
  text-align: left;
  padding-top: 0px!important;
}
.retailers-section .section-title h2{
  text-align: left;
  font-weight: 500;
  font-size: 30px;
}
.retailers-section .section-title p{
  font-size: 16px;
  font-weight: normal;
  text-align: left;
}
.retailers-sidebar{
  background-color: #ffffff;
  padding: 20px 20px;
  margin: 0px 0px 30px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 5px 0px, rgba(0, 0, 0, 0.1) 0px 0px 1px 0px;
  border-radius: 10px;
  position: relative;
}
.retailers-search-bar .search-form{
  text-align: left;
}
.filter-item.search-form .input-group .form-control {
  border-right-width: initial;
  border-right-style: none;
  padding: 0.5rem 1rem;
  font-size: 0.95rem;
  height: 44px;
  color: var(--default-color);
  background-color: var(--surface-color);
  border-color: 
color-mix(in srgb, var(--default-color), transparent 85%);
  border-radius: 8px 0px 0px 8px;
}
.filter-item.search-form .input-group .search-btn {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border: none;
  padding: 0.5rem 1rem;
  transition: 0.3s;
}
.filter-item.search-form .input-group .search-btn i {
  font-size: 1rem;
}
.filter-item.search-form .input-group {
  border-radius: 8px;
  box-shadow: rgba(0, 0, 0, 0.03) 0px 2px 5px;
  overflow: hidden;
}
.filter__items-counter-btns{
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.filter__items-counter-btns a{
  padding: 5px 10px;
  font-size: 13px;
  font-weight: 500;
}
.showall-btns{
  background-color: #2ea359;
  padding: 8px 50px;
  border-radius: 5px;
  margin-top: 10px;
  font-size: 13px;
  color: #fff;
  border: 1px solid #2ea359;
  transition: all 0.3s ease-in-out;
}
.clearall-btns{
  background-color: transparent;
  padding: 8px 50px;
  border-radius: 5px;
  margin-top: 10px;
  font-size: 13px;
  color: #2ea359;
  border: 1px solid #2ea359;
  transition: all 0.3s ease-in-out;
}
.filter__items-counter .near-stores{
  text-transform: capitalize;
  line-height: normal;
  margin-top: 10px;
}

.retailers-item-text span{
 display: block;
  font-size: 16px;
  color: #2a2a2a;
  font-weight: 500;
  text-align: left;
  line-height: normal;
}
.retailers-item-text small{
  color: #333;
}
.retailers-list-item{
  background-color: #f5f5f5;
  border-radius: 10px;
  padding: 10px;
}
.retailers-item-text{
  padding: 10px 0px;
  text-align: left;
}
.retailers-list-item img{
  width: 100%;
  max-width: 100%;
  border-radius: 10px;
  height: 100%;
  max-height: 100%;
}
.retailers-list-item span{

}
.retailers-map-grid{
  height: 650px;
}
.retailers-map-grid img{
  height: 100%;
}
.retailers-search-result{
  height: 450px;
  overflow-y: auto;
}
/*============== retailers css ================*/

/*================ faqs css ================*/
.faq-grid .accordion-button:not(.collapsed) {
  color: var(--default-color);
  background-color: #5db84c;
  color: #ffffff;
  border-color: #5db84c;
}
.accordion-button.collapsed{
  background-color: transparent;
}
.faq-grid .accordion-button{
  font-size: 20px;
  text-transform: capitalize;
  border-bottom: 1px solid #6f6f6f;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}
.faq-grid .accordion-button:focus{
  box-shadow: none;
}
.accordion-button::after{
  display: none!important;
}
.faq-grid .accordion-item{
  margin-bottom: 20px;
  border: none;
}
.accordion-collapse.collapse.show{
  border: 1px solid #5db84c;
  border-top: none;
}


/*========= error message css ===========*/
.error-container {
  text-align: center;
  background: transparent;
  border-radius: 15px;
  backdrop-filter: blur(10px);
}
.error-container .error-code {
  font-size: 10rem;
  font-weight: 700;
  color: #5db84c;
  animation: pulse 1.5s infinite;
  line-height: normal;
}
@keyframes pulse {
  0% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.05); opacity: 0.9; }
  100% { transform: scale(1); opacity: 1; }
}
.error-container .error-icon {
  font-size: 4rem;
  margin-bottom: 10px;
  color: #ffc21f;
}
.error-container .error-text {
  font-size: 20px;
  margin-bottom: 20px;
  font-weight: 500;
}
.error-container .btn-home {
  display: inline-block;
  background: #5db84c;
  color: white;
  padding: 12px 25px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}
.error-container .btn-home:hover {
  background: #2ea359;
  transform: scale(1.05);
}


/*========= Thank you message css ===========*/
.thanks-page .thank-you-container {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  backdrop-filter: blur(10px);
  box-shadow: 0px 0px 20px rgba(255, 255, 255, 0.2);
  animation: fadeIn 1.5s ease-in-out;
}
@keyframes fadeIn {
  0% { opacity: 0; transform: scale(0.9); }
  100% { opacity: 1; transform: scale(1); }
}
.thanks-page .thank-you-icon {
  font-size: 5rem;
  margin-bottom: 20px;
  color: #5db84c;
  animation: bounce 1.5s infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.thanks-page .thank-you-text {
  font-size: 4rem;
  margin-bottom: 20px;
  font-weight: 600;
  color: #5db84c;
}
.thanks-page .btn-home {
  display: inline-block;
  background: #5db84c;
  color: #ffffff;
  padding: 12px 25px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}
.thanks-page .btn-home:hover {
  background: #2ea359;
}


/*======== product-compareModal css ==========*/
.product-compareModal{
  z-index: 9999999;
}
.product-compareModal .modal-dialog {
  max-width: 90%;
  height: 80vh;
  z-index: 9999999;
}
.product-compareModal .modal-header{
  background-color: #be73ae;
  color: #ffffff;
  text-transform: capitalize;
}
.product-compareModal .modal-header h5{
  font-size: 25px;
  font-weight: 600;
  color: #ffffff;
}
.product-compareModal .modal-body{
  display: flex;
  align-items: center;
}
.product-compareModal .modal-content{
  height: 80vh;
}
.product-compareModal .modal-header .btn-close{
  color: #ffffff;
  --bs-btn-close-color: #ffffff!important;
  --bs-btn-close-bg:url(../img/close.png)!important;
  padding-top: 0px!important;
  font-size: 20px;
}

.product-compareModal .compare-table img {
  width: 50%;
  height: auto;
}
.product-compareModal .compare-table th {
  text-align: left;
  vertical-align: middle;
  background-color: #f8f9fa;
  font-weight: bold;
  white-space: nowrap;
}
.product-compareModal .compare-table td {
  vertical-align: middle;
  text-align: left;
  padding: 15px;
}
.product-compareModal .compare-table tbody tr td:first-child {
  text-align: left;
  font-weight: bold;
}
.product-compareModal .star-rating {
  color: #2ea359;
}
.product-compareModal .compare-header {
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 15px;
}
.product-compareModal .table-container {
  overflow-x: auto;
}


/*================= login css strat ================*/
.login-grid{
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #f0f0f0;
  padding-top: 100px;
  padding-bottom: 100px;
}
.login-grid .container{
  display: flex;
  justify-content: center;
  align-items: center;
  
}
.login-main-grid {
  display: flex;
  width: 80%;
  background: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  overflow: hidden;
}
.login-main-grid.Register-grid{
  width: 100%;
}
.login-main-grid .left-side {
  width: 40%;
}
.login-main-grid .right-side {
  width: 60%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 20px;
}
.login-main-grid .login-box {
  width: 90%;
  text-align: left;
}
.login-main-grid .login-box h2 {
  color: #333;
  margin-bottom: 10px;
}
.login-main-grid .login-box p {
  color: #777;
  margin-bottom: 20px;
}
.login-main-grid form {
  display: flex;
  flex-direction: column;
}
.forgot-remember .form-check{
 margin-top: 0px!important;
}
.login-main-grid .remember-forgot {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  margin-bottom: 15px;
}
.login-main-grid .login-btn {
  background: #5db84c;
  color: white;
  padding: 10px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
  width: 100%;
}
.login-main-grid .google-btn {
  background: #b074af;
  margin-top: 10px;
  color: white;
  padding: 10px 30px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
  line-height: normal;
}
.login-main-grid .google-btn i{
  margin-right: 5px;
}
.login-main-grid a {
  color: #5db84c;
  text-align: center;
  text-decoration: none;
}
.login-main-grid .login-alt{
  text-align: center;
  margin-bottom: 20px;
}
.login-main-grid .form-group label{
  color: #000000;
}
.account-Register p{
  text-align: center;
  margin-bottom: 0px!important;
}
@media (max-width: 768px) {
  .login-main-grid {
      flex-direction: column;
      width: 100%;
      height: auto;
  }
  .login-main-grid .left-side {
      height: 300px;
      width: 100%;
  }
  .login-main-grid .right-side {
      padding:15px;
      width: 100%;
  }
  .login-main-grid .login-box {
    width: 100%;
    text-align: left;
}
.login-main-grid a {
  color: #5db84c;
  text-align: center;
  text-decoration: none;
  font-size: 14px;
}
.login-main-grid .login-box p{
  font-size: 14px;
}
.login-main-grid .form-check.terms-check{
  margin-bottom: 10px!important;
}
}

/* ===========Refund-Return-section ============*/
.Refund-Return-section h3{
  font-size: 30px;
  font-weight: 600;
  text-align: center;
  text-transform: capitalize;
  padding-bottom: 0px;
  background-color: #b074af;
  border-radius: 10px;
  padding: 10px 15px;
  line-height: normal;
  text-align: left;
  text-transform: capitalize;
  margin-bottom: 20px;
  margin-top: 20px;
  color: #ffffff;
}
.Refund-Return-section h4{
  font-size: 28px;
  font-weight: 600;
  text-align: left;
  text-transform: capitalize;
  padding-bottom: 0px;
  line-height: normal;
}
.Refund-Return-section h5{
  font-size: 22px;
  text-transform: capitalize;
}
.Refund-Return-section li{
  list-style-type: none;
}
.Refund-Return-section .contact-info li{
  list-style: none;
  padding: 5px 0px;
  font-size: 18px;
  color: #000000;
  
}
.Refund-Return-section .contact-info li i{
  background-color: #5db84c;
  width: 100%;
  border-radius: 30px;
  font-size: 18px;
  width: 40px;
  height: 40px;
  text-align: center;
  padding: 7px;
  display: inline-block;
  color: #ffffff;
}

/* Custom tooltip background and font color */
.tooltip-inner {
  background-color: #5db84c !important;   /* Background color */
  color: #ffffff !important; 
}

/* Optional: Tooltip arrow color (must match background) */
.bs-tooltip-start .tooltip-arrow::before {
  border-left-color: #5db84c !important;
}

.woof_submit_search_form_container .button {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    font-size: 16px;
    border-color: var(--accent-color);
    transition: 0.3s;
    padding: 10px 20px;
    border:none;
    border-radius:10px;
    display: block;
	text-align:center;
    width:100%;
}
.woof_reset_button_2{
	background-color: var(--accent-color);
    color: var(--contrast-color);
    font-size: 16px;
    border-color: var(--accent-color);
    transition: 0.3s;
    padding: 8px 20px!important;
    border:none;
    border-radius:6px;
    display: block;
	text-align:center;
line-height:normal;
}
.filterMenu .woof_price3_search_container{
	margin-bottom:25px!important;
}
.filterMenu .woof_container_inner_productcategories{
	margin-bottom:20px!important;
    margin-Top:20px!important;
}
.filterMenu .woof_price3_search_container{
	margin-bottom:20px!important;
    
}
.filterMenu .woof_reset_search_form{
	margin-right:10px;
}
select {
    color: var
#141415
(--default-color);
    background-color: var(--surface-color);
    font-size: 0.95rem;
    border-color: 
 color-mix(in srgb, var(--default-color), transparent 85%);
    padding: 0.625rem 2.25rem 0.625rem 1rem;
    height: 46px;
    border-radius: 8px;
    box-shadow: rgba(0, 0, 0, 0.03) 0px 2px 5px;
background-image: url(data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%233690e7' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e);
}

select {
   --bs-form-select-bg-img: url(data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%233690e7' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e);
    display: block;
    width: 100%;
    padding: .375rem 2.25rem .375rem .75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: var(--bs-body-color);
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: var(--bs-body-bg);
    background-image: var(--bs-form-select-bg-img), var(--bs-form-select-bg-icon, none);
    background-repeat: no-repeat;
    background-position: right .75rem center;
    background-size: 16px 12px;
    border: var(--bs-border-width) solid var(--bs-border-color);
    border-radius: var(--bs-border-radius);
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}
.filterMenu .chosen-container-multi{
	color: var(--default-color);
    background-color: var(--surface-color);
    font-size: 0.95rem;
    border-color: 
 color-mix(in srgb, var(--default-color), transparent 85%);
    padding: 0rem 2.25rem 0rem 0rem;
    border-radius: 8px;
    box-shadow: rgba(0, 0, 0, 0.03) 0px 2px 5px;
display: block;
    width: 100%;
    padding: .375rem 2.25rem .375rem .75rem
12px
;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: var(--bs-body-color);
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: var(--bs-body-bg);
    background-image: var(--bs-form-select-bg-img), var(--bs-form-select-bg-icon, none);
    background-repeat: no-repeat;
    background-position: right .75rem center;
    background-size: 16px 12px;
    border: var(--bs-border-width) solid var(--bs-border-color);
    border-radius: var(--bs-border-radius);
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}
.woocommerce-ordering .orderby{
	display:inline-block;
	width:auto!important;
}

.filterMenu .woof_block_html_items .chosen-container-single .chosen-single{
	padding:10px 20px!important;
	border-radius:10px;
    font-size:15px;
    height:auto!important;
}

.filter-container .woof_products_top_panel_ul li a{
    display: inline-flex
;
    align-items: center;
    background-color: 
 color-mix(in srgb, var(--accent-color), transparent 90%);
    color: var(--accent-color);
    font-size: 0.875rem;
    padding: 0.35rem 0.85rem;
    border-radius: 50px;
    box-shadow: rgba(0, 0, 0, 0.03) 0px 2px 5px;
    font-weight: 500;
   line-height:normal;
}
.filter-container .woof_products_top_panel li span{
	 padding-right: 25px;
}
.irs--round .irs-bar {
    top: 36px;
    height: 4px;
    background-color: #5db84c!important;
}

.irs--round .irs-handle {
    border: 4px solid #5db84c!important;
}

.irs--round .irs-from, .irs--round .irs-to, .irs--round .irs-single {

    padding: 3px 5px;
    background-color: #5db84c!important;
    color: white;
    
}

.woof_husky_txt-input{
	    display: block;
    width: 100%;
    padding: .375rem .75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: var(--bs-body-color);
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: var(--bs-body-bg);
    background-clip: padding-box;
    border: var(--bs-border-width) solid var(--bs-border-color);
    border-radius: var(--bs-border-radius);
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.chosen-container .chosen-results li.highlighted {
    background-color:#5db84c!important;
    background-image: linear-gradient(#5db84c 20%, #2a7f1b 90%)!important;
    color: #fff;
}
.product-details .name a{
	color:#5f5f5f!important;
}
.product-info .product-actions .add_to_wishlist{
	height:100%;
}

.product-details .product-images .onsale{
	background: #be73ae;
    color: aliceblue;
    padding: 6px 20px;
    line-height: normal;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    position: relative;
    z-index: 99;
}

.cart_totals.calculated_shipping h2{
	font-size: 1.25rem;
    text-transform: capitalize;
    margin-bottom: 15px;
}
.woocommerce-order .woocommerce-thankyou-order-received{
	background: #5db84c;
    padding:10px;
}
.woocommerce-order .woocommerce-thankyou-order-received h2{
	color:#ffffff;
	font-size:18px;
    text-transform:capitalize;
    line-height:normal;
}
.woocommerce-order .btn-primary{
	background: #5db84c;
    padding:10px 25px;
    line-height:normal;
    border:none;
	outline:none;
}
.woocommerce-order h5{
	font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid
 color-mix(in srgb, var(--default-color), transparent 90%);
    position: relative;
  
}

.woocommerce-order h5::after {
    content: "";
    position: absolute;
    bottom: -3%;
    left: 0px;
    width: 3rem;
    height: 2px;
    background-color: var(--accent-color);
    border-radius: 1px;
}


.addresses-grid .address-card .woocommerce-Address-title h2{
	font-size:25px;
    margin-bottom: 20px;
}
.addresses-grid .address-card address{
	margin-top:20px;
}
.addresses-grid .address-card .woocommerce-Address-title a{
	background-color:var(--accent-color);
	padding:6px 15px!important;
    color:#ffffff!important;
    border-radius:50px;
    margin:10px 0px!important;
}

.wishlist-items-wrapper .product-name a{
	color:#444444!important;
}
.wishlist-items-wrapper .add_to_cart{
	background-color:var(--accent-color)!important;
    background:var(--accent-color)!important;
}

.wishlist-items-wrapper .remove_from_wishlist{
	background:red!important;
background-color:red!important;
  color:#ffffff!important;
}
.wishlist-items-wrapper .product-remove a{
	background:red!important;
background-color:red!important;
  color:#ffffff!important;
}

.dashboard-card .card-icon{
	background-color:var(--accent-color);
    color:#ffffff!important;
}
.dashboard-card .card-footer a{
	background-color:var(--accent-color);
    padding:6px 15px!important;
    color:#ffffff!important;
    border-radius:50px;
}
.dashboard-card .badge{
	background: #5db84c42;
}

.woocommerce-EditAccountForm.edit-account {
    background-color: var(--surface-color);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 24px;
}
.woocommerce-EditAccountForm .woocommerce-Button.button {
    height: 40px;
    padding: 0 24px;
    background-color: var(--accent-color);
    color: var(--contrast-color);
    border: none;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

#customer_login{
	padding:40px 0px!important;
}

#customer_login .woocommerce-Button{
	padding: 10px 30px;
    background-color: var(--accent-color);
    color: var(--contrast-color);
    border: none;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s ease;
}

#customer_login .woocommerce-form-login__submit{
	padding: 10px 30px;
    background-color: var(--accent-color);
    color: var(--contrast-color);
    border: none;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s ease;
}
.woocommerce-address-fields{
	background-color: var(--surface-color);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 24px;
}
.woocommerce-address-fields .button{
	padding: 12px 40px!important;
    background-color: var(--accent-color)!important;
    color: var(--contrast-color)!important;
    border: none;
    border-radius: 10px!important;
    font-size: 15px!important;
    font-weight: 500;
    transition: all 0.3s ease;
}
#customer_login a{
	color: var(--accent-color)!important;
}

.contact-us-main .wpcf7-submit{
	background-color: var(--accent-color)!important;
	width:100%;
	border:none;
}

.woocommerce-ResetPassword{
   padding:60px 0px!important;	
}

.woocommerce-ResetPassword .button{
	padding: 12px 40px!important;
    background-color: var(--accent-color)!important;
    color: var(--contrast-color)!important;
    border: none;
    border-radius: 10px!important;
    font-size: 15px!important;
    font-weight: 500;
    transition: all 0.3s ease;
}
.author-widget .author-box{
	align-items:start!important;
}
.author-widget .author-box .author-img{
	margin-right:6px!important;
}
.author-widget .author-box .author-img img{
  width: 35px !important;
  height: 35px !important;
}
.author-widget .author-box p{
	font-size:15px;
}
.search-widget.widget-item .search-form input{
	width:100%;
    border:none;
}
.search-widget form button{
	background:var(--accent-color)!important;
}
.search-widget form button i{
	color:#ffffff;
}

.search-widget form button:hover i{
	color:#ffffff;
}

.sidebar{
 margin-top:40px!important;	
}
.blog-comments .comment-form-comment{
	display:flex;
    flex-direction:column;
}
.blog-comments .commentform p{
	display:flex;
    flex-direction:column;
}
.blog-comments .comment-respond{
	padding:20px;
    border-radius:10px!important;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 5px 0px, rgba(0, 0, 0, 0.1) 0px 0px 1px 0px;
    margin-bottom:20px!important;
}

.blog-comments .logged-in-as a{
	color:var(--accent-color)!important;
}

.blog-comments .comment-respond .form-submit .submit{
	padding: 10px 40px!important;
    background-color: var(--accent-color)!important;
    color: var(--contrast-color)!important;
    border: none!important;
    border-radius: 10px!important;
    font-size: 15px!important;
    font-weight: 500;
    transition: all 0.3s ease;
}
.comment-reply-link{
	padding: 5px 18px;
    background: #5db84c!important;
    color: #ffffff;
    border-radius: 5px;
    margin-right:10px;
}
.blog-comments #commentform p{
	display:flex;
    flex-direction:column;
}
.comment-meta .comment-author.vcard a{
	color:#000000;
}
.comment-meta .comment-author.vcard img{
	width:40px!important;
    height:40px!important;
    margin-right:10px!important;
}
.comment-metadata{
   margin-top: 10px;
    display: flex;
    gap: 10px;	
}
.comment-edit-link{
	 color: #5db84c!important;
}
.comment-reply-title{
	font-size:20px!important;
}

.blog-comments #commentform p input{
    font-family: inherit;
    font-weight: 400;
    letter-spacing: normal;
    padding: .5em;
    display: block;
    background-color: var(--wc-form-color-background, #fff);
    border: var(--wc-form-border-width) solid var(--wc-form-border-color);
    border-radius: var(--wc-form-border-radius);
    color: var(--wc-form-color-text, #000);
    box-sizing: border-box;
    width: 100%;
    margin: 0;
    line-height: normal;
    height: auto;
}
.blog-comments #commentform .comment-form-cookies-consent{
	display:block!important;
}

.blog-comments #commentform .comment-form-cookies-consent input{
	width:auto!important;
    display:inline-block!important;
}

.Related-product .product-card {
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }

.input-text.qty  {
    width: 60px;
    height: 36px;
    text-align: center;
    border-left: none;
    border-right: none;
    color: var(--default-color);
    background-color: var(--surface-color);
    font-size: 14px;
    border-bottom: 1px solid #b3b3b3;
    border-top: 1px solid #b3b3b3;
}

.product-quantity .variations tr{
	padding-bottom: 10px;
    display: block;
    position:relative;
}
.product-quantity .variations .label{
	padding: 7px 10px;
    border-radius: 10px;
    background-color: #d2d2d2;
    border-top-right-radius: 0px;
    border-bottom-right-radius: 0px;
    line-height: normal;
    font-size: 15px;
}
.product-quantity .variations .value{
	width:100%;
}
.product-quantity .variations .value select{
	border-top-left-radius: 0px;
    border-bottom-left-radius: 0px;
    width:100%;
}

.product-quantity .variations .reset_variations{
	position: absolute;
    right: 0;
    margin-top:10px;
    padding:6px 10px;
    color:#fff;
	background-color:red;
	border-radius:5px;
}
.single_variation_wrap .price .woocommerce-Price-amount{
  font-size:22px;
  font-weight:600;
  margin-bottom:10px;
	
}
.single_variation_wrap .woocommerce-variation-price{
	margin-bottom: 10px;
}
.woocommerce-variation-add-to-cart .quantity-selector{
	display:none!important;
}


.product-description .table-container{
	width: 100%;
    margin-bottom: 25px;
}

.product-description .table-container tbody tr td, .product-description .table-container thead tr th {
	border: 1px solid #000;
    border-color: #000000 !important;
    padding: 5px 20px !important;
    font-size:15px;
}

#privacy-policy table{
	margin-bottom:20px;
}
#privacy-policy table tr td{
	padding:5px 10px;
}
#privacy-policy table tr td p{
	margin-bottom:5px;
}
.product-card .product-image{
    width:100%;
	margin:auto;
}

.our-product .product-info .product-details{
	display:block!important;
}
.product-info .product-details .name{
	margin-bottom:5px;
}
.product-info .product-details .loop-sku{
	margin-bottom: 5px;
    background-color: #5db84c;
    display: inline-block;
    padding: 3px 10px;
    line-height: normal;
    font-size: 14px;
    color: #ffffff;
    border-radius: 5px;
}
.loop-sku{
	margin-bottom: 5px;
    background-color: #5db84c;
    display: inline-block;
    padding: 3px 10px;
    line-height: normal;
    font-size: 14px;
    color: #ffffff;
    border-radius: 5px;
}

.product-availability .product-sku{
	margin-bottom: 5px;
    background-color: #5db84c;
    display: inline-block;
    padding: 3px 10px;
    line-height: normal;
    font-size: 14px;
    color: #ffffff;
    border-radius: 5px;
    margin-left:10px;
}

.sidebar {
    margin-top: 0px !important;
}

.our-product .product-card{
	cursor:pointer!important;
}

.glr-loyalty-signup-form{
	background: linear-gradient(135deg, #63dc77 0%, #4ba24e 100%)!important;
}

.glr-benefits{
	    background: rgb(0 72 6 / 34%)!important;
}
#glr-loyalty-form button{
	background: #137429!important;
}

.Customorder-form{
  padding: 30px;
  /* border-bottom-right-radius: 15px;
  border-bottom-left-radius: 15px; */
  box-shadow: rgba(0, 0, 0, 0.19) 0px 4px 20px;
}
.Customorder-section .section-title{
  font-size: 30px;
  font-weight: 600;
  color: #2a2a2a;
  text-align: center;
  text-transform: capitalize;
  padding-bottom: 0px;
  background-color: transparent;
  border-top-right-radius: 15px;
  border-top-left-radius: 15px;
  padding: 30px 0px;
  text-align: left;
}
.Customorder-section .section-title p{
  font-size: 18px;
  font-weight: normal;
  text-align: left;
  color: #333;
}
.Customorder-section h2{
  padding: 0px!important;
  font-weight: 500;
  color: #2a2a2a;
  text-align: left;
  font-size: 35px;
}
.form-info-title{
 background-color: #f2f2f2;
  padding: 8px 15px;
  border-radius: 10px;
  margin-bottom: 20px;
  margin-top: 10px;
  font-size: 18px;
  font-weight: 700;
  color: #2a2a2a;
  line-height: normal;
}
.form-info-title h4{
  margin-bottom: 0px;
  font-size: 20px!important;
}
.Customorder-section p.text-xs{
  font-size: 12px!important;
  text-align: left!important;
}
.CuntomPack-bottom-content{
  text-align: left!important;
}
.CuntomPack-bottom-content p{
  font-size: 14px;
  color: #333;
  margin-bottom: 5px!important;
}
.testimonial-wrap{
	background-image: linear-gradient(#f3f6fd, #f2f5fd)!important;
}
.testimonial-wrap .testimonials-swiper{
	overflow:hidden!important;
}


.compare-btn-wrapper button{
	width: 46px;
    padding: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    height:100%;
    background:transparent;
    border:1px solid #333;
	border-radius:10px;
}
.compare-btn-wrapper button:hover{
	background: var(--accent-color);
    border:1px solid var(--accent-color);
    color:#ffffff;
}
.compare-btn-wrapper button:hover span{
	background: var(--accent-color);
    color:#ffffff;
}
.woosc-area .woosc-inner .woosc-bar .woosc-bar-btn {
	background-color: #137900!important;
}