/*------------------------------------------------
CSS STRUCTURE:

1. VARIABLES
2. GENERAL TYPOGRAPHY

--------------------------------------------------------------*/
html, body { overflow-x: hidden; }

html {
  font-size: 16px;
}

/* Global site font */
body {
  font-family: "Montserrat", sans-serif;
}
body {
  --heading-font: "Montserrat", sans-serif;
  --heading-font-weight: 400;
  --heading-color: #111;
  --heading-line-height: 1.24;

  --swiper-theme-color: #8C907E;

  /* bootstrap */
  --bs-body-font-family: "Jost", Roboto, sans-serif;
  --bs-body-font-size: 16px;
  --bs-body-font-weight: 400;
  --bs-body-line-height: 1.5;
  --bs-body-color: #8f8f8f;
  --bs-body-color-rgb: 143, 143, 143;

  --bs-primary: #8C907E;
  --bs-secondary: #6c757d;
  --bs-black: #111;
  --bs-light: #F1F1F0;
  --bs-dark: #212529;
  --bs-gray: #9aa1a7;
  --bs-gray-dark: #51565b;

  --bs-primary-rgb: 140, 144, 126;
  --bs-secondary-rgb: 108, 117, 125;
  --bs-black-rgb: 17, 17, 17;
  --bs-light-rgb: 241, 241, 240;
  --bs-dark-rgb: 33, 37, 41;

  --bs-link-color: #111;
  --bs-link-color-rgb: 17, 17, 17;
  --bs-link-decoration: underline;
  --bs-link-hover-color: #111;
  --bs-link-hover-color-rgb: 17, 17, 17;
}

body {
  letter-spacing: 0.03rem;
}

p {
  font-family: "Montserrat", sans-serif;
}


h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
  font-family: var(--heading-font);
  font-weight: var(--heading-font-weight);
  color: var(--heading-color);
  line-height: var(--heading-line-height);
}

h1.light,
.h1,
h2.light,
.h2,
h3.light,
.h3,
h4.light,
.h4,
h5.light,
.h5,
h6.light,
.h6 {
  color: var(--light-color);
}

h1,
h2,
h3 {
  margin: 25px 0;
}

h5,
h6 {
  letter-spacing: 1px;
}

h1,
.h1 {
  font-size: 4.5rem;
}

h2,
.h2 {
  font-size: 3rem;
}

h3,
.h3 {
  font-size: 2.2rem;
}

h4,
.h4 {
  font-size: 1.8rem;
}

h5,
.h5 {
  font-size: 1.4rem;
}

h6,
.h6 {
  font-size: 1rem;
}

a {
  text-decoration: none;
}

/* container fluid */
.container-fluid {
  /* width: 98%; */
  max-width: 1800px;
}

/* Keep SVG sprite available for <use>, but not visible */
.svg-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
  line-height: 0;
}


/* Dropdown */
.dropdown-menu {
  --bs-dropdown-border-radius: 0;
  --bs-dropdown-border-width: 0;
}

.dropdown-item {
  --bs-dropdown-item-padding-y: 0.25rem;
  --bs-dropdown-item-padding-x: 1rem;
  --bs-dropdown-link-color: var(--bs-black);
  --bs-dropdown-item-border-radius: 0;
}

.dropdown-item.active,
.dropdown-item:active {
  --bs-dropdown-link-active-color: var(--bs-light);
  --bs-dropdown-link-active-bg: var(--bs-black);
}

/* list group */
.list-group-item {
  --bs-list-group-item-padding-x: 0;
  --bs-list-group-border-width: 0;
}

/* btn */
.btn {
  --bs-btn-border-radius: 0;
}

.btn-primary {
  --bs-btn-color: #fff;
  --bs-btn-bg: #8C907E;
  --bs-btn-border-color: #8C907E;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #5e624e;
  --bs-btn-hover-border-color: #5e624e;
  --bs-btn-focus-shadow-rgb: 49, 132, 253;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #5e624e;
  --bs-btn-active-border-color: #5e624e;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: #8C907E;
  --bs-btn-disabled-border-color: #8C907E;
}

.btn-outline-primary {
  --bs-btn-color: var(--bs-primary);
  --bs-btn-border-color: var(--bs-primary);
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: var(--bs-primary);
  --bs-btn-hover-border-color: var(--bs-primary);
  --bs-btn-focus-shadow-rgb: 13,110,253;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: var(--bs-primary);
  --bs-btn-active-border-color: var(--bs-primary);
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: var(--bs-primary);
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: var(--bs-primary);
  --bs-gradient: none;
}

.pagination {
  --bs-pagination-active-bg: var(--bs-black);
  --bs-pagination-border-width: 0;
  --bs-pagination-border-radius: 0;
}

/* breadcrumb */
.breadcrumb {
  --bs-breadcrumb-item-padding-x: 1em;
}

/* text white */
.text-white {
  --heading-color: var(--bs-light);
  --bs-breadcrumb-item-active-color: var(--bs-light);
  --bs-breadcrumb-divider-color: var(--bs-light);
  --bs-link-color-rgb: var(--bs-light-rgb);
  --bs-link-hover-color-rgb: var(--bs-light-rgb);
}

.text-white .nav-link {
  --bs-nav-link-color: var(--bs-light);
  --bs-nav-link-hover-color: var(--bs-light);
  --bs-nav-link-active-color: var(--bs-light);
  --bs-navbar-active-color: var(--bs-light);
}

/* accordion */
.accordion {
  --bs-accordion-border-width: 0;
  --bs-accordion-border-radius: 0;
  --bs-accordion-inner-border-radius: 0;
  --bs-accordion-btn-padding-x: 0;
  --bs-accordion-btn-padding-y: 0.1rem;
  --bs-accordion-btn-color: var(--bs-dark);
  --bs-accordion-btn-bg: transparent;
  --bs-accordion-btn-focus-border-color: var(--bs-dark);
  --bs-accordion-btn-focus-box-shadow: none;
  --bs-accordion-body-padding-x: 0;
  --bs-accordion-body-padding-y: 0.1rem;
  --bs-accordion-active-color: transparent;
  --bs-accordion-active-bg: transparent;
}

/* form control */
.form-control:focus {
  border-color: #ccc;
  box-shadow: 0 0 0 0.25rem rgba(200, 200, 200, .25);
}

/* dark theme */
[data-bs-theme=dark] body {
  color-scheme: dark;

  --heading-color: #fff;
  --bs-link-color: #fff;
  --bs-link-hover-color: #fff;
  --bs-link-color-rgb: 255, 255, 255;
  --bs-link-hover-color-rgb: 255, 255, 255;
  --bs-body-color: #d1d1d1;
  --bs-body-bg: #111;
  --bs-body-bg-rgb: 17, 17, 41;
}

[data-bs-theme=dark] .dropdown-item {
  --bs-dropdown-link-color: var(--bs-light);
  --bs-dropdown-link-hover-color: var(--bs-white);
}

[data-bs-theme=dark] .bg-white,
[data-bs-theme=dark] .bg-light {
  --bs-bg-opacity: 0.1;
}

[data-bs-theme=dark] .btn-link,
[data-bs-theme=dark] a {
  --bs-link-color: #fff;
  --bs-link-hover-color: #fff;
  --bs-link-color-rgb: 255, 255, 255;
  --bs-link-hover-color-rgb: 255, 255, 255;
}

[data-bs-theme=dark] h1,
[data-bs-theme=dark] h2,
[data-bs-theme=dark] h3,
[data-bs-theme=dark] h4,
[data-bs-theme=dark] h5,
[data-bs-theme=dark] h6 {
  --heading-color: #fff;
}

@media (max-width: 768px) {

h1,
.h1 {
  font-size: 45px;
}
h2,
.h2 {
  font-size: 30px;
}
	
	
}

/* end of Bootstrap Color Theme */

/* preloader */
.preloader{
  position: fixed;
  z-index: 9999;
  background: #111;

  /* key fix: use inset instead of 100vw/100vh */
  inset: 0;

  display: flex;
  align-items: center;
  justify-content: center;

  /* keep your animation behavior */
  transition: height 0.8s cubic-bezier(0.075, 0.82, 0.165, 1);
}

.preloader.loaded{
  height: 0;
}

/*--------------------------------------------------------------
/** TOP CONTACT BAR
--------------------------------------------------------------*/

.top-contact-bar {
  position: relative;
  z-index: 1101;
  width: 100%;
  height: 40px;
  background-color: #3e9a2c;
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  display: flex;
  align-items: center;
}

.top-contact-bar .container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.top-contact-items {
  display: flex;
  align-items: center;
}

.contact-item {
  display: flex;
  align-items: center;
  padding: 0 14px;
}

/* separators */
.contact-item:not(:last-child)::after {
  content: "|";
  margin-left: 14px;
  opacity: 0.7;
}

.top-contact-bar a {
  color: #fff;
  text-decoration: none;
}

.top-contact-bar a:hover {
  text-decoration: underline;
}

.top-contact-bar i {
  color: #fff;
  margin-right: 6px;
  font-size: 14px;
}

/* mobile */
@media (max-width: 768px) {

  .top-contact-bar {
    padding: 3px 0;
    font-size: 10px;
    height: auto;
  }

  .top-contact-items {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
    gap: 10px;
  }

  .contact-item {
    white-space: nowrap;
    padding: 0 6px;
  }

  /* hide mission + challenge */
  .top-contact-items .contact-item:nth-child(1),
  .top-contact-items .contact-item:nth-child(4) {
    display: none;
  }

  /* remove separators */
  .contact-item::after {
    display: none;
  }

  .top-contact-bar i {
    margin-right: 4px;
    font-size: 12px;
  }
}

.top-contact-items,
.top-contact-bar .container,
.top-contact-bar .contact-item {
  position: relative;
  z-index: 1102;
}

.top-contact-bar .lightbox-trigger {
  display: inline-block;
  color: #fff;
  text-decoration: none;
  cursor: pointer;
  pointer-events: auto;
}

.top-contact-bar .lightbox-trigger:hover {
  text-decoration: underline'
  color: #fff;
  opacity: 0.9;
}


/*--------------------------------------------------------------
/** NAV LOGO BLEED / OVERHANG + COMPACT NAV (works + offcanvas on top)
--------------------------------------------------------------*/

/* IMPORTANT: Offcanvas must be above your header */
.offcanvas { z-index: 1200; }
.offcanvas-backdrop { z-index: 1190; }

/* Allow bleed to show */
nav.navbar,
nav.navbar .container-fluid,
nav.navbar .row {
  overflow: visible !important;
}

/* Compact navbar (remove the "tall" feel) */
nav.navbar.nav-compact {
  height: 100px;
  padding-top: 2px;
  padding-bottom: 2px;
  background: #fff;
  /*box-shadow:
  0 12px 20px -10px rgba(0,0,0,.35),
  0 4px 6px rgba(0,0,0,.15);*/
  position: relative;
  z-index: 10;
}
/* Tighten link vertical padding */
nav.navbar.nav-compact .nav-link {
  padding-top: 4px;
  padding-bottom: 4px;
}

/* Toggler compact */
nav.navbar.nav-compact .navbar-toggler {
  padding-top: 2px;
  padding-bottom: 2px;
}

.navbar-brand-bleed{
  display: inline-block;
  background: #fff;
  padding: 10px 12px 16px;
  border-radius: 10px;
  line-height: 0;
  position: relative;
  top: 94px;          
  z-index: -1; 
}


.logo-bleed{
  width: 375px;   /* big */
  height: auto;
  display: block;
}

nav.navbar .nav-link{
  font-size:16px;
  letter-spacing:.4px;
}

@media (min-width: 992px){
  .nav-logo-slot{
    width: 470px;
    flex: 0 0 470px;
  }
}

@media (max-width: 991.98px){

  nav.navbar.nav-compact{
    height:auto;
    padding:10px 0;
  }

  .navbar-brand-bleed{
    top:0;
    padding:0;
    box-shadow:none;
    background:transparent;
  }

  .logo-bleed{
    width:150px;
  }

  .nav-logo-slot{
    width:auto;
    flex:initial;
  }

}





/* navbar */
.navbar.fixed-top {
  transition: background-color 0.6s ease-out;
}

#billboard {
  position: relative;
  margin: 0;
  padding: 250px 0 100px 0;
  overflow: hidden; /* important: crop video */
  background: #000; /* fallback while video loads */
}

/* Full-bleed background video */
#billboard .billboard-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;      /* fills area nicely */
  object-position: center;
  z-index: 0;
}

/* Optional overlay so text is readable */
#billboard .billboard-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(0, 0, 0, 0.25); /* lighten video like your gradient feel */
}

/* Ensure your content sits above video + overlay */
#billboard .container {
  position: relative;
  z-index: 2;
}


#billboard::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 40px;
  pointer-events: none;
  z-index: 3;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.12),
    rgba(0, 0, 0, 0.06),
    rgba(0, 0, 0, 0)
  );
}

#billboard .banner-content h2,
#billboard .banner-content p {
  color: #ffffff;
}

#billboard .banner-content .btn-outline-dark {
  color: #ffffff;
  border-color: #3e9a2c;
}

#billboard .banner-content .btn-outline-dark:hover {
  background-color: #3e9a2c;
  color: #000;
}

#billboard .display-2{
  font-size:3rem;
}

/* mobile */
@media (max-width: 768px) {
	
#billboard {
  padding: 50px 0 50px 0;
}
#billboard .image-holder{
  padding: 0 18px;
}	
.billboard-video{
  transform: scale(1.0);
  transform-origin: center;
  }
}

/* slideshow */
.slideshow {
  overflow: hidden;
}

/* .slideshow .swiper-slide {
  background-position-x: -300px;
  transition: background-position-x 1.6s ease-out;
  background-repeat: no-repeat;background-size: cover;
}
.slideshow .swiper-slide.swiper-slide-active {
  background-position-x: 0px;
} */
.slideshow .swiper-slide {
  /* background-size: 100%; */
  background-position: center;
  background-origin: padding-box;
  background-repeat: no-repeat;
  background-size: cover;
  transition: background-size 1s ease-in-out;
}

/* .slideshow .swiper-slide.swiper-slide-active {
  background-size: 120%;
} */

/* fade in */
.slideshow.fade-in .swiper-slide .banner-content {
  opacity: 0;
  transition: opacity 0.3s ease-out;
  transition-delay: 600ms;
}

.slideshow.fade-in .swiper-slide.swiper-slide-active .banner-content {
  opacity: 1;
}

/* slide in */
.slide-in .swiper-slide .banner-content h2,
.slide-in .swiper-slide .banner-content p,
.slide-in .swiper-slide .banner-content .btn {
  display: inline-block;
  opacity: 0;
  transform: translate3d(0, 50px, 0);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.slide-in .swiper-slide .banner-content h2 {
  transition-delay: 600ms;
}

.slide-in .swiper-slide .banner-content p {
  transition-delay: 800ms;
}

.slide-in .swiper-slide .banner-content .btn {
  transition-delay: 1000ms;
}

.slide-in .swiper-slide.swiper-slide-active .banner-content h2,
.slide-in .swiper-slide.swiper-slide-active .banner-content p,
.slide-in .swiper-slide.swiper-slide-active .banner-content .btn {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

/* swiper slide-clip */
.slide-clip .swiper-slide .image-holder img {
  transform: scale(1.2);
  transition: transform 1s ease-in-out;
  border-radius: 30px;
}

.slide-clip .swiper-slide.swiper-slide-active .image-holder img {
  transform: scale(1);
}

.slide-clip .swiper-slide .image-holder {
  clip-path: inset(100% 0 0 0);
  display: block;
}

.slide-clip .swiper-slide.swiper-slide-active .image-holder {
  animation: 1s slide-clip forwards;
}

.slide-clip .swiper-slide.swiper-slide-prev .image-holder,
.slide-clip .swiper-slide.swiper-slide-next .image-holder {
  animation: 1s slide-down;
}

/* works on sections with images wrapped with image-holder */
.aos-animate.slide-clip-animation .image-holder {
  animation: 1s slide-clip forwards;
}

.slide-clip-animation .image-holder {
  clip-path: inset(100% 0 0 0);
}

@keyframes slide-clip {
  0% {
    clip-path: inset(100% 0 0 0);
  }

  100% {
    clip-path: inset(0 0 0 0);
  }
}

@keyframes slide-down {
  0% {
    clip-path: inset(0 0 0 0);
  }

  100% {
    clip-path: inset(100% 0 0 0);
  }
}


/* swipe animation */
.swipe-up {
  clip-path: inset(0 0 100% 0);
  display: block;
}

.aos-animate .swipe-up {
  animation: 1s swipe-up forwards;
}

/*.down-leave-active { animation: 1s down-leave; }*/
@keyframes swipe-up {
  0% {
    clip-path: inset(0 0 100% 0);
  }

  100% {
    clip-path: inset(0);
  }
}

/* polygon */
.polygon {
  clip-path: polygon(0 0, 100% 0, 100% 20%, 100% 100%, 80% 100%, 20% 100%, 0 100%, 0% 20%);
}

.aos-animate .polygon {
  animation: 1s polygon forwards;
}

@keyframes polygon {
  0% {
    clip-path: polygon(0 0, 100% 0, 100% 20%, 100% 100%, 80% 100%, 20% 100%, 0 100%, 0% 20%);
  }

  100% {
    clip-path: polygon(20% 0%, 80% 0%, 100% 20%, 100% 80%, 80% 100%, 20% 100%, 0% 80%, 0% 20%);
  }
}

/* open-up */
.open-up {
  clip-path: inset(48% 34% 36% 35%);
}

.aos-animate.open-up {
  animation: 1s open-up forwards;
}

@keyframes open-up {
  0% {
    clip-path: inset(48% 34% 36% 35%);
  }

  100% {
    clip-path: inset(0% 0% 0% 0%);
  }
}

/*@keyframes down-leave {
  0% { clip-path: inset(0); }
  100% { clip-path: inset(100% 0 0 0); }
}*/
.swipe-up {
  --delay: 0.05s;
}

.swipe-up {
  animation-delay: 1s;
  /* animation-delay: data(swipe-delay); */
}

/* Text Effects */
.txt-fx {
  overflow: hidden;
  line-height: 1;
}
.txt-fx.zoom {
  overflow: visible;
}

.txt-fx .word {
  overflow: hidden;
  transform-origin: 0 100%;
  display: inline-block;
  line-height: 1em;
}
.txt-fx .letter {
  transform-origin: 0 100%;
  display: inline-block;
  line-height: 1em;
}

.txt-fx {
  --delay: 50ms;
  --easing: cubic-bezier(.5, 0, .53, 1);
}

/* fade right */
.txt-fx.fade-right .letter {
  transform: translate3d(-50px, 0, 0);
  opacity: 0;
  transition: transform 0.6s var(--easing), opacity 0.6s var(--easing);
}

.aos-animate .txt-fx.fade-right .letter {
  transform: translate3d(0, 0, 0);
  opacity: 1;
}

/* slide up */
.txt-fx.slide-up .letter {
  transform: translate3d(0, 1.2em, 0);
  transition: transform 0.9s var(--easing);
}

.swiper-slide-active .txt-fx.slide-up .letter,
.aos-animate .txt-fx.slide-up .letter {
  transform: translate3d(0, 0, 0);
}

/* domino */
.txt-fx.domino .letter {
  transform-origin: 50% 0;
  transform: rotateY(90deg);
  transition: transform 0.9s var(--easing);
}

.swiper-slide-active .txt-fx.domino .letter,
.aos-animate .txt-fx.domino .letter {
  transform: rotateY(0);
}

/* zoom */
.txt-fx.zoom .letter {
  transform-origin: 50% 0;
  transform: scale(3);
  transition: transform 0.9s var(--easing);
}

.swiper-slide-active .txt-fx.zoom .letter,
.aos-animate .txt-fx.zoom .letter {
  transform: scale(1);
}

/** Search Popup
--------------------------------------------------------------*/
.search-popup {
  background-color: #fff;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  z-index: 9999;
  -webkit-transition: opacity 0.3s 0s, visibility 0s 0.3s;
  -moz-transition: opacity 0.3s 0s, visibility 0s 0.3s;
  transition: opacity 0.3s 0s, visibility 0s 0.3s;
}
.search-popup.is-visible {
  opacity: 1;
  visibility: visible;
  cursor: -webkit-image-set(url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20'%3E%3Cpath fill='%23FFF' d='M20 1l-1-1-9 9-9-9-1 1 9 9-9 9 1 1 9-9 9 9 1-1-9-9'/%3E%3C/svg%3E") 1x, url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20'%3E%3Cpath fill='%23000' d='M20 1l-1-1-9 9-9-9-1 1 9 9-9 9 1 1 9-9 9 9 1-1-9-9'/%3E%3C/svg%3E") 2x), pointer;
  cursor: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20'%3E%3Cpath fill='%23000' d='M20 1l-1-1-9 9-9-9-1 1 9 9-9 9 1 1 9-9 9 9 1-1-9-9'/%3E%3C/svg%3E"), pointer;
  -webkit-transition: opacity 0.3s 0s, visibility 0s 0s;
  -moz-transition: opacity 0.3s 0s, visibility 0s 0s;
  transition: opacity 0.3s 0s, visibility 0s 0s;
}
.search-popup-container {
  background-color: transparent;
  position: relative;
  top: 50%;
  margin: 0 auto;
  padding: 0;
  width: 90%;
  max-width: 800px;
  text-align: center;
  box-shadow: none;
  cursor: default;
  -webkit-transform: translateY(-40px);
  transform: translateY(-40px);
  -webkit-backface-visibility: hidden;
  -webkit-transition-property: -webkit-transform;
  transition-property: transform;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
}
.is-visible .search-popup-container {
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.search-popup-form {
  position: relative;
  margin: 0 0 3em 0;
}
.search-popup-form .form-control {
  padding: 0 0 .375em 0;
  font-size: 2em;
}
.search-popup-form #search-popup-submit {
  display: none;
}
.search-popup .search-popup-close {
  display: block;
  position: absolute;
  top: 2em;
  right: 2em;
  margin: -0.5em;
  padding: 0.5em;
  line-height: 0;
}
.search-popup .search-popup-close:hover {
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}
.search-popup .search-popup-close i {
  display: block;
  position: relative;
  width: 1em;
  height: 1em;
  fill: rgba(0,0,0,0.5);
}
.search-popup .search-popup-close:hover i {
  fill: rgba(0,0,0,1);
}
.search-popup .cat-list-title {
  margin-top: 40px;
  margin-bottom: 10px;
  font-size: 0.6em;
  font-weight: normal;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.search-popup .cat-list {
  margin: 0;
  list-style-type: none;
}
.search-popup .cat-list-item {
  display: inline-block;
  margin-bottom: 0;
  letter-spacing: 0.015em;
  font-size: 2em;
}
.search-popup .cat-list-item a {
  position: relative;
}
.search-popup .cat-list-item a::after {
  background: none repeat scroll 0 0 #fff;
  content: "";
  height: 1px;
  border-bottom: 1px solid #ff9697;
  left: 0;
  opacity: 0;
  position: absolute;
  top: 100%;
  width: 100%;
  -webkit-transition: height 0.3s,opacity 0.3s,-webkit-transform 0.3s;
  transition: height 0.3s,opacity 0.3s,transform 0.3s;
  -webkit-transform: translateY(-5px);
  transform: translateY(-5px);
}
.search-popup .cat-list-item a:hover::after {
  height: 1px;
  opacity: 1;
  -webkit-transform: translateY(2px);
  transform: translateY(2px);
}
.search-popup .cat-list-item::after {
  content: "/";
  padding: 0 5px;
  line-height: 1;
  color: rgba(0, 0, 0, 0.5);
  vertical-align: text-top;
}
.search-popup .cat-list-item:last-child::after {
  display: none;
}

@media only screen and (max-width: 991px) {
  .search-popup .cat-list-item,
  .search-popup-form .form-control {
    font-size: 1.425em;
  }
}
@media only screen and (max-width: 767px) {
.search-popup .search-popup-close {
    top: 1em;
    right: 1em;
  }
}
@media only screen and (max-width: 575px) {
  .search-popup .cat-list-item,
  .search-popup-form .form-control {
    font-size: 1.125em;
  }
  .search-popup .search-popup-close {
    top: 1em;
    right: 1em;
  }
}

.search-popup input[type="search"] {
  font-size: 24px;
  height: 60px;
  padding: 26px;
}
.search-popup .search-form button {
  top: 12px;
  right: 15px;
}
.search-popup .search-form button svg {
  height: 28px;
  width: 28px;
}


/* Swiper */
/* - Swiper Slide Arrows 1
------------------------------------------------------------- */
.icon-arrow {
  position: absolute;
  top: 50%;
  font-size: 2em;
  color: var(--bs-dark);
  z-index: 8;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  border: 1px solid var(--bs-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0.2;
  transition: all 0.3s ease-out;
}

.icon-arrow:hover {
  opacity: 1;
  background: var(--bs-black);
  color: var(--bs-white);
}

.icon-arrow.icon-arrow-left {
  left: 30px;
}

.icon-arrow.icon-arrow-right {
  right: 30px;
}

@media (max-width: 991px) {
  .icon-arrow.icon-arrow-left,
  .icon-arrow.icon-arrow-right {
    display: none;
  }
  .swiper-pagination {
    position: relative;
  }
}

/** Swiper Slide Arrows 2
--------------------------------------------------------------*/
.icon-arrow.no-outline {
  top: 40%;
  font-size: 1.7em;
  color: var(--grey-color);
  border: none;
}

.icon-arrow.no-outline:hover {
  background: none;
  color: var(--bs-dark);
}

.icon-arrow.light-arrow.no-outline {
  color: var(--light-color);
  opacity: 0.7;
}

.icon-arrow.light-arrow.no-outline:hover {
  opacity: 1;
}

.swiper-button-normal {
  background: transparent;
}

.swiper-button-normal .icon {
  font-size: 1.6em;
  color: var(--bs-dark);
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}

/** Swiper Slide Arrows with background 3
--------------------------------------------------------------*/
.icon-arrow {
  width: 90px;
  height: 90px;
  border-radius: 50%;
}

/*--- Image hover Effects
-----------------------------------------------*/
.image-zoom-effect {
  display: flex;
  flex-wrap: wrap;
}

.image-zoom-effect .image-holder {
  width: 100%;
  height: auto;
  overflow: hidden;
  transform: scale(1);
  transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.image-zoom-effect:hover .image-holder {
  transform: scale(0.95);
}

.image-zoom-effect img {
  transform: scale(1);
  will-change: transform;
  transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 0;
}

.image-zoom-effect:hover img {
  transform: scale(1.1);
}


/* - Border Hover Effects
------------------------------------------------------------- */
.border-animation a,
.border-animation a:after,
.border-animation a:before {
  transition: all .5s;
}

.border-animation a {
  position: relative;
}

.border-animation a:after {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 0;
  content: '.';
  color: transparent;
  background: var(--bs-primary);
  height: 2px;
}

.border-animation a:hover:after {
  width: 100%;
}

.content-light .border-animation a:hover:after,
.content-light .border-animation li.active a:after {
  background: var(--bs-primary);
}

/* - Border Hover No Effects
------------------------------------------------------------- */
.border-animation .no-effect a:after {
  background: none;
}

/* - Border Hover Effects 2
------------------------------------------------------------- */
.border-animation-left .item-anchor {
  position: relative;
  margin-bottom: 20px;
}

.border-animation-left .item-anchor:after {
  content: "";
  position: absolute;
  width: 0;
  height: 1px;
  left: 0;
  bottom: 0;
  z-index: 9;
  background: var(--bs-dark);
  transition: all 0.5s ease;
}

.border-animation-left.light-border .item-anchor:after,
.border-animation-left .item-anchor:after {
  background: var(--bs-dark);
}

.border-animation-left .item-anchor:hover:after,
.border-animation-left .item-anchor:focus:after {
  width: 100%;
}

/* background */
.background {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  width: 100%;
  height: 600px;
}

.background.pattern-bg {
  background: url(../images/pattern-bg.png) no-repeat;
}

.background.normal-bg {
  background: url(../images/newsletter-image.jpg) no-repeat;
}

/* large text */
.title-xlarge {
  font-size: calc(2rem + 10vw);
  /* 10.4em; */
  font-family: var(--heading-font);
  color: var(--bs-gray-300);
  position: absolute;
  top: -40px;
  left: 0;
  z-index: 0;
}


.collection.bg-light {
  background-color: #f1f1f0 !important;
  background-image: url(../images/az-subtle.png) !important;
  background-repeat: repeat;
}

/* mobile spacing for text sections */
@media (max-width: 768px){

  .collection .col-md-8{
    padding: 30px;
  }

}

/*--------------------------------------------------------------
/** 7.8 Video Section
--------------------------------------------------------------*/
.video .video-content {
  position: relative;
}

.video .video-player {
  position: absolute;
}

.video .video-player {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video .video-player a {
  position: relative;
}

.video .video-player svg {
  color: #fff;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}

@media (max-width: 768px) {

  .video .video-content {
    min-height: 300px;
    height: 300px;
    position: relative;
    overflow: hidden;
  }

  .video .video-bg,
  .video .video-bg .video-image {
    width: 100%;
    height: 100%;
  }

  .video .video-bg .video-image {
    object-fit: cover;
    display: block;
  }

}

@media (max-width: 600px) {
  .video .video-player img.text-pattern {
    width: 60%;
    display: flex;
    margin: 0 auto;
  }
}

/*--------------------------------------------------------------
/** 7.9 Testimonial Slider
--------------------------------------------------------------*/
.testimonials .section-title {
  font-size: 24px;
  font-weight: 600;
  line-height: 3;
  color: #8C907E;
  text-transform: uppercase;
}

.testimonial-swiper .testimonial-item blockquote {
  font-size: 22px;
}

.testimonial-swiper .testimonial-item blockquote>p {
  margin: 0;
  font-family: "Fjalla One", sans-serif !important;
  word-spacing: 2px;

	
}

.testimonials .review-title {
  font-size: 14px;
  padding-top: 10px;
}

.testimonial-swiper .swiper-slide {
  opacity: 0.2;
  width: 42% !important;
}

.testimonial-swiper.swiper-3d .swiper-slide-shadow-left,
.testimonial-swiper.swiper-3d .swiper-slide-shadow-right {
  background-image: none;
}

.testimonial-swiper .swiper-slide-active {
  opacity: 1;
}

.testimonials .swiper-pagination {
  left: 0;
  right: 0;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background: #8C907E;
}

.swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  margin-right: 10px;
}

@media only screen and (max-width: 1199px) {
  .testimonial-swiper .testimonial-item blockquote {
    font-size: 1.8em;
  }
}

@media only screen and (max-width: 999px) {
  .testimonial-swiper .testimonial-item blockquote {
    font-size: 1.2em;
  }
}


/** Partner Logos*/

.logo-bar .section-title {
  font-size: 24px;
  font-weight: 600;
  line-height: 3;
  color: #8C907E;
  text-transform: uppercase;
}


.customer-logos{
  display:flex;
  flex-wrap:wrap;
  gap:28px;
  align-items:center;
  justify-content:center;
  padding: 20px 0;
}

.customer-logos .client-logo{
  max-height: 125px;       /* tweak */
  width: auto;
  height: auto;
  object-fit: contain;

  /* make everything consistent “gray” */
  filter: grayscale(100%) brightness(0.35) contrast(1.1);
  opacity: 0.55;

  transition: filter .2s ease, opacity .2s ease;
}

.customer-logos .client-logo:hover{
  filter: grayscale(0%) brightness(1) contrast(1);
  opacity: 1;
}



/** About Us
--------------------------------------------------------------*/
.about-gallery a {
  position: relative;
  display: block;
  overflow: hidden;
}

.about-gallery a::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.about-gallery img {
  transition: transform 0.4s ease;
  display: block;
}

.about-gallery a:hover::after {
  opacity: 1;
}

.about-gallery a:hover img {
  transform: scale(1.05);
}

/* About/inner page hero banner */
.hero-section {
  position: relative;
  overflow: hidden;
  min-height: 420px;
}

.hero-section .hero-banner-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

.hero-section > div {
  position: relative;
  z-index: 1;
}

@media (max-width: 768px) {

  .hero-section {
    min-height: 280px;
    height: 280px;
    position: relative;
    overflow: hidden;
  }

  .hero-section > .py-5 {
    height: 100%;
    display: flex;
    align-items: center;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  .hero-section .container,
  .hero-section .row,
  .hero-section .d-flex {
    height: 100%;
  }

  .hero-section .d-flex {
    justify-content: center !important;
    align-items: center !important;
    text-align: center;
  }

  .hero-section .py-5,
  .hero-section .my-5 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }

  .hero-section .page-title {
    font-size: 2.2rem;
    margin: 0 0 6px 0;
  }

  .hero-section .breadcrumb {
    margin-bottom: 0;
  }
}

/*------------------------------------------------------------- */
.link-effect a {
  position: relative;
  padding: 0;
  overflow: hidden;
  transition: transform 0.5s;
  display: block;
}

.link-effect a::after {
  content: attr(data-after);
  display: inline-block;
  transform: translateY(100%);
  position: absolute;
  left: 0;
  font-size: 1rem;
  text-align: inherit;
  text-transform: uppercase;
  transition: inherit;
}

.link-effect a>span {
  display: inline-block;
  transform: translateY(0%);
  transition: inherit;
}

.link-effect:hover a>span {
  transform: translateY(-100%);
}

.link-effect:hover a::after {
  transform: translateY(0%);
}


/*--------------------------------------------------------------
/** CONTACT US FORM
--------------------------------------------------------------*/


/* Ensure forms match site typography */
input,
textarea,
select,
button {
  font-family: "Montserrat", sans-serif !important;
}

/* Placeholder text */
input::placeholder,
textarea::placeholder {
  font-family: "Montserrat", sans-serif;
  opacity: 1; /* optional: improves consistency across browsers */
}

/* Bootstrap button override */
.btn {
  font-family: "Montserrat", sans-serif !important;
}



/* product item */
.product-item .btn-wishlist {
  display: block;
  z-index: 111;
  position: absolute;
  top: 5px;
  padding: 10px;
  color: var(--bs-black);
  background: var(--bs-white);
  right: 5px;
  opacity: 0;
  transition: opacity 0.3s ease-in;
}

.product-item:hover .btn-wishlist {
  opacity: 1;
}

/* rotating text */
.text-rotate {
  animation: rotation 50s infinite linear;
}

@keyframes rotation {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(359deg);
  }
}

/* single product */

.main-content{
  padding-top:150px;
}

@media (max-width:768px){

  .main-content{
    padding-top:0;
  }

}


/* product-thumbnail-slider */
.product-thumbnail-slider {
  height: 790px;
}
@media screen and (max-width:992px) {
  .product-thumbnail-slider {
    margin-top: 20px;
    height: auto;
  }
}
@media screen and (min-width:992px) {
  .product-thumbnail-slider {
    height: 590px;
  }
}
@media screen and (min-width:1200px) {
  .product-thumbnail-slider {
    height: 790px;
  }
}
/* 
.product-thumbnail-slider .swiper-slide {
  height: 200px;
} */


/*--------------------------------------------------------------
/** STATIC PRODUCTS PAGE
--------------------------------------------------------------*/

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.feature-item {
  display: flex;
  align-items: center;
  padding: 12px 14px;
  background: #f7f7f7;
  border-radius: 6px;
  transition: all .2s ease;
}

.feature-item i {
  width: 28px;
  font-size: 18px;
  color: #2c7a3f;
  margin-right: 10px;
}

.feature-item:hover {
  background: #e9f3ec;
}

.feature-item a {
  color: inherit;
  text-decoration: none;
  display: inline-block;
  width: 100%;
}

.feature-item a:hover {
  text-decoration: underline;
}

/*--------------------------------------------------------------
/** STATIC SINGLE PRODUCT PAGE
--------------------------------------------------------------*/

.open-product-description {
  margin-top: 18px;
  line-height: 1.7;
}

.open-product-description p:last-child {
  margin-bottom: 0;
}

.product-meta span {
  font-family: "Montserrat", sans-serif;
  color: #555;
}

/*--------------------------------------------------------------
/** CLIENT PRODUCTS PAGE
--------------------------------------------------------------*/


/* Products page typography consistency */
.results-text,
.product-content a,
.product-content span,
.product-quickadd,
.product-price {
  font-family: "Montserrat", sans-serif !important;
}

/* Amazon-style row layout for client products */
.client-product-row {
  border: 1px solid #e5e5e5;
  background: #fff;
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.client-product-row:hover {
  border-color: #d6d6d6;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
}

.client-product-row__inner {
  display: flex;
  gap: 24px;
  padding: 22px;
  align-items: flex-start;   
}

.client-product-row__image {
  flex: 0 0 220px;
  max-width: 220px;
  height: 220px;
  display: block;
  align-self: flex-start;
}

.client-product-row__image a {
  width: 100%;
  height: 100%;
  display: block;
  /*background: #f3f3f3;*/
  border: 1px solid #e5e5e5;
  overflow: hidden;
  padding: 0;
}

.client-product-row__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.client-product-row__content {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;          /* nice consistent spacing */
  min-width: 0;
  align-self: flex-start;
}

.client-product-row__title {
  font-family: "Montserrat", sans-serif;
  font-size: 1.45rem;
  line-height: 1.3;
  margin: 0 0 10px;
}

.client-product-row__title a {
  color: #111;
  text-decoration: none;
}

.client-product-row__title a:hover {
  color: #3e9a2c;
  text-decoration: underline;
}

.client-product-row__meta {
  font-size: 0.95rem;
  color: #666;
  margin-bottom: 12px;
  font-family: "Montserrat", sans-serif;
}

.client-product-row__desc {
  font-size: 0.98rem;
  line-height: 1.7;
  color: #444;
  font-family: "Montserrat", sans-serif;	
}

.client-product-row__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-top: 8px;     /* reduced */
  padding-top: 12px;   /* tighter */
  border-top: 1px solid #f1f1f1;
}

.client-product-row__price-wrap {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.client-product-row__price {
  font-family: "Montserrat", sans-serif;
  font-size: 2rem;
  line-height: 1;
  font-weight: 700;
  color: #111;
}

.client-product-row__sku {
  font-size: 0.9rem;
  color: #777;
  font-family: "Montserrat", sans-serif;
}

.client-product-row__uom {
  font-size: 0.9rem;
  color: #777;
  font-family: "Montserrat", sans-serif;
}

.client-product-row__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.client-product-row__actions .btn {
  min-width: 150px;
  font-family: "Montserrat", sans-serif !important;
}

/* results/sort spacing */
#sortSelect {
  font-family: "Montserrat", sans-serif;
}


.results-text {
  display: inline-block;
  padding-top: 10px;
  color: #555;
}

/* Tablet */
@media (max-width: 991px) {
  .client-product-row__inner {
    gap: 18px;
    padding: 18px;
  }

  .client-product-row__image {
    flex: 0 0 180px;
    max-width: 180px;
  }

  .client-product-row__image a {
    min-height: 180px;
  }

  .client-product-row__title {
    font-size: 1.25rem;
  }

  .client-product-row__price {
    font-size: 1.7rem;
  }
}

/* Mobile */
@media (max-width: 767px) {
  .client-product-row__inner {
    flex-direction: column;
    gap: 16px;
  }

  .client-product-row__image {
    max-width: 100%;
    flex: 0 0 auto;
  }

  .client-product-row__image a {
    min-height: 240px;
  }

  .client-product-row__bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .client-product-row__actions {
    width: 100%;
  }

  .client-product-row__actions .btn {
    width: 100%;
  }

  .client-product-row__price {
    font-size: 1.6rem;
  }
}



/* ------ Quantity ------*/
.product-quantity .qty-number {
  margin-right: 20px;
}
.product-quantity .input-group .btn {
  height: 48px;
  border: 1px solid #ccc;
}
.qty-number .quntity-button {
  min-width: 40px;
  height: 40px;
  font-size: 1.8em;
  line-height: 1.5;
  text-align: center;
  cursor: pointer;
  background-color: var(--accent-dim-color);
  transition: .5s all ease-in-out;
}

.qty-number .quntity-button:hover {
  background-color: var(--accent-lit-color);
}

.qty-number input {
  font-size: 1.4em;
  width: 50px;
  height: 40px;
  text-align: center;
  border-radius: 0;
  border: 1px solid var(--bs-dark);
}

.qty-field .regular-price {
  display: none;
}

/*--------------------------------------------------------------
/** Single Product
--------------------------------------------------------------*/
.single-product-template .breadcrumbs li {
  font-size: 1.5em;
  padding-right: 15px;
}

.single-product-template .breadcrumbs span {
  padding-left: 15px;
}

.product-preview .swiper-slide {
  padding-bottom: 15px;
}

/*---- Single Product Information ----------*/
.rating-container .rating {
  color: var(--bs-yellow);
  font-size: 1.4em;
}

.product-info .product-price strong {
  font-size: 1.6em;
  color: var(--accent-color);
  padding-right: 10px;
}

.product-info .product-price del {
  color: var(--accent-color);
}

.product-info .color-product-options .color-item {
  display: inline-block;
  vertical-align: top;
  width: 25px;
  height: 25px;
  cursor: pointer;
  border: 1px solid var(--bs-gray);
  padding: 1px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  margin: 0 3px;
}

.product-info .color-product-options .color-item span {
  border: 1px solid var(--bs-dark);
  display: block;
  width: 100%;
  height: 100%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
}

.product-info .color-product-options .color-item:hover {
  border: 1px dotted var(--bs-gray-300);
}

.product-info .item-title {
  width: 100%;
}

.swatch-element .swatch-label {
  font-weight: 400;
  line-height: 32px;
  text-align: center;
  display: inline-block;
  margin-right: 10px;
  min-width: 50px;
  height: 50px;
  border: 2px solid var(--bs-gray-300);
  transition: all 0.3s;
  cursor: pointer;
  padding: 8px;
}
.swatch-element .swatch-input {
  display: none;
}
.swatch-element .swatch-input:checked+.swatch-label {
  border: 2px solid var(--bs-gray);
}

/*---- Single Product Accordion ----------*/
.review-style1 .review-item .rating-container .rating {
  font-size: 1em;
}

.review-style1 .review-item span.author-name {
  font-weight: 600;
}

/* button */
.btn-link {
  font-size: 0.875rem;
  font-family: var(--bs-body-font-family);
  letter-spacing: 0.0875rem;
  text-transform: uppercase;
  text-decoration: none;
}

a.btn-link,
a.btn-link:after {
  transition: all .5s;
}

a.btn-link {
  position: relative;
}

a.btn-link:before,
a.btn-link:after {
  content: '';
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  background-color: var(--bs-dark);
  height: 1px;
}

[data-bs-theme=dark] a.btn-link:after {
  background-color: var(--bs-white);
}

a.btn-link:before {
  background-color: var(--bs-gray);
  width: 100%;
}

a.btn-link.is-checked:after,
a.btn-link:hover:after {
  width: 100%;
}

a.btn-link.text-white:after {
  background-color: var(--bs-white);
}

a.btn-link.text-light:after {
  background-color: var(--bs-light);
}

/* color options */
.form-check {
  padding: 0;
}

.form-check-label {
  display: block;
  position: relative;
  padding-left: 35px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Hide the browser's default radio button */
.form-check-label input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

/* Create a custom radio button */
.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #eee;
  border: 1px solid #111;
  border-radius: 50%;
}

/* On mouse-over, add a grey background color */
.form-check-label:hover input~.checkmark {
  background-color: #ccc;
}

/* When the radio button is checked, add a blue background */
.form-check-label input:checked~.checkmark {
  background-color: #A226F3;
}

/* Create the indicator (the dot/circle - hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the indicator (dot/circle) when checked */
.form-check-label input:checked~.checkmark:after {
  display: block;
}

/* Style the indicator (dot/circle) */
.form-check-label .checkmark:after {
  top: 8px;
  left: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #444;
}

.form-check-label.red input~.checkmark {
  background-color: #CA7A7A;
}

.form-check-label.brown input~.checkmark {
  background-color: #D5BB96;
}

.form-check-label.green input~.checkmark {
  background-color: #A5BC73;
}

.form-check-label.aqua input~.checkmark {
  background-color: #779B9D;
}

/* sidebar accordion */
.product-info .accordion {
  --bs-accordion-btn-icon: url('data:image/svg+xml,%3Csvg xmlns="http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg" width="24" height="24" viewBox="0 0 24 24"%3E%3Cpath fill="currentColor" d="M19 11h-6V5a1 1 0 0 0-2 0v6H5a1 1 0 0 0 0 2h6v6a1 1 0 0 0 2 0v-6h6a1 1 0 0 0 0-2Z"%2F%3E%3C%2Fsvg%3E');
  --bs-accordion-btn-active-icon: url('data:image/svg+xml,%3Csvg xmlns="http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg" width="24" height="24" viewBox="0 0 24 24"%3E%3Cpath fill="currentColor" d="M19 11H5a1 1 0 0 0 0 2h14a1 1 0 0 0 0-2Z"%2F%3E%3C%2Fsvg%3E');
}
.product-filter .accordion {
  --bs-accordion-btn-color: var(--bs-body-color);
  --bs-accordion-btn-bg: var(--bs-accordion-bg);
  --bs-accordion-btn-icon: url('data:image/svg+xml,%3Csvg xmlns="http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg" width="24" height="24" viewBox="0 0 24 24"%3E%3Cpath fill="currentColor" d="M19 11h-6V5a1 1 0 0 0-2 0v6H5a1 1 0 0 0 0 2h6v6a1 1 0 0 0 2 0v-6h6a1 1 0 0 0 0-2Z"%2F%3E%3C%2Fsvg%3E');
  --bs-accordion-btn-active-icon: url('data:image/svg+xml,%3Csvg xmlns="http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg" width="24" height="24" viewBox="0 0 24 24"%3E%3Cpath fill="currentColor" d="M19 11H5a1 1 0 0 0 0 2h14a1 1 0 0 0 0-2Z"%2F%3E%3C%2Fsvg%3E');
  --bs-accordion-body-padding-x: 0;
  --bs-accordion-body-padding-y: 0;
  --bs-accordion-active-color: #8C907E;
}

.product-filter .accordion-body>div,
.product-filter .accordion-body a {
  display: block;
  padding: 10px;
  margin-bottom: 1.25rem;
  border: 1px solid #EBEBEA;
}

.product-filter .accordion-body a:hover {
  border: 1px solid #999;
}

/* image zoom */
.image-zoom {
  position: relative;
  float: left;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.photo {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  transition: transform .3s ease-out;
}

/* .swiper-pagination */
.swiper-pagination {
  position: relative;
  margin-top: 30px;
}

/* NAV FONT ONLY (top nav + dropdowns) */
#site-nav nav.navbar .nav-link,
#site-nav nav.navbar .dropdown-item {
  font-family: "Fjalla One", sans-serif;
  font-size: 20px;
  text-transform: none;
}

/* Cart (0) font in header */
#site-nav nav.navbar a[data-bs-target="#offcanvasCart"],
#site-nav nav.navbar a[aria-controls="offcanvasCart"],
#site-nav nav.navbar .cart-count {
  font-family: "Fjalla One", sans-serif !important;
  font-size: 18px;
}

.public-page .portal-cart-only {
  display: none !important;
}

/* ===== Cart Attention Jiggle ===== */

@keyframes cartJiggle {
  0%   { transform: rotate(0deg); }
  20%  { transform: rotate(-6deg); }
  40%  { transform: rotate(6deg); }
  60%  { transform: rotate(-4deg); }
  80%  { transform: rotate(4deg); }
  100% { transform: rotate(0deg); }
}

.cart-jiggle {
  display: inline-block;
  animation: cartJiggle 0.6s ease-in-out;
}


/*


footer .menu-list .menu-item,
footer .menu-list .menu-item a {
  font-family: "Montserrat", sans-serif;
}

.breadcrumb,
.breadcrumb a,
.breadcrumb-item,
.breadcrumb-item.active {
  font-family: "Montserrat", sans-serif !important;
}

.product-info .product-meta,
.product-info .product-meta * ,
.product-info .item-title,
.product-info .cate-links,
.product-info .cate-links * {
  font-family: "Montserrat", sans-serif !important;
}


#offcanvasCart,
#offcanvasCart * {
  font-family: "Montserrat", sans-serif !important;
}

#offcanvasCart .list-group-item,
#offcanvasCart .list-group-item span,
#offcanvasCart .list-group-item strong,
#offcanvasCart .list-group-item small,
#offcanvasCart h4,
#offcanvasCart a,
#offcanvasCart button {
  font-family: "Montserrat", sans-serif !important;
}


.cart-page,
.cart-page * {
  font-family: "Montserrat", sans-serif !important;
}


#cart,
#cart *,
.cart-total,
.cart-total *,
.cart-item,
.cart-item *,
.cart-summary,
.cart-summary * {
  font-family: "Montserrat", sans-serif !important;
}

.total-price table,
.total-price table th,
.total-price table td,
.total-price .price-amount,
.total-price .amount,
.total-price bdi,
#cartSubtotalPage,
#cartTotalPage {
  font-family: "Montserrat", sans-serif !important;
}
*/

/* =========================
   TOP BAR LIGHTBOX
========================= */
.site-lightbox {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 9999;
}

.site-lightbox.active {
  display: block;
}

.site-lightbox-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
}

.site-lightbox-dialog {
  position: relative;
  width: min(700px, calc(100% - 30px));
  margin: 80px auto;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
  z-index: 2;
  overflow: hidden;
  animation: lightboxFadeIn 0.2s ease;
}

.site-lightbox-content {
  padding: 30px 28px;
}

.site-lightbox-content h3 {
  margin: 0 0 15px;
  font-size: 28px;
  line-height: 1.2;
}

.site-lightbox-content p:last-child {
  margin-bottom: 0;
}

.site-lightbox-close {
  position: absolute;
  top: 10px;
  right: 14px;
  background: none;
  border: 0;
  font-size: 34px;
  line-height: 1;
  cursor: pointer;
  color: #333;
}

.site-lightbox-close:hover {
  color: #000;
}

body.lightbox-open {
  overflow: hidden;
}

@keyframes lightboxFadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 767px) {
  .site-lightbox-dialog {
    width: calc(100% - 20px);
    margin: 50px auto;
  }

  .site-lightbox-content {
    padding: 24px 20px;
  }

  .site-lightbox-content h3 {
    font-size: 24px;
  }
}

/*--------------------------------------------------------------
/** CUSTOMER DASHBOARD
--------------------------------------------------------------*/

.dashboard-top-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.dashboard-brand-logo {
  max-height: 60px;
  width: auto;
}

.dashboard-customer-logo {
  max-height: 60px;
  width: auto;
}

@media (max-width: 767px) {
  .dashboard-top-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .dashboard-customer-logo {
    align-self: flex-end;
    max-height: 50px;
  }
}
.dashboard-hero {
  background: linear-gradient(135deg, #f7faf7 0%, #eef7ec 100%);
  border: 1px solid #d9e8d5;
  border-left: 6px solid #3e9a2c;
  border-radius: 16px;
  padding: 2rem;
  margin-bottom: 2rem;
}

.dashboard-brand-logo {
  max-height: 120px;
  width: auto;
}

.dashboard-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0,0,0,.08);
  padding: 1.5rem;
  height: 100%;
  border-top: 4px solid #3e9a2c;
}

.dashboard-logo {
  max-height: 72px;
  width: auto;
}

.dashboard-subtext {
  color: #5f6b66;
}

/* Billing checkbox spacing (checkout + profile pages) */
.checkout-card .form-check {
  padding-left: 25px;
  margin-bottom: 12px;
}

.checkout-card .form-check-input {
  margin-top: 0.25rem;
}

th.sortable {
  cursor: pointer;
  user-select: none;
}

.sort-indicator {
  font-size: 0.8em;
  color: #6c757d;
}

@media (max-width: 767px) {
  .dashboard-hero {
    padding: 1.5rem;
  }

  .dashboard-brand-logo {
    max-height: 44px;
  }

  .dashboard-logo {
    max-height: 56px;
  }
}


/*--------------------------------------------------------------
/** ADMIN DASHBOARD
--------------------------------------------------------------*/

.admin-shell {
  min-height: 100vh;
  background: #f3f4f6;
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.admin-topbar {
  background: linear-gradient(135deg, #3e9a2c, #2f7d21);
  padding: 0.35rem 0.6rem;
  border-radius: 16px;
  color: #fff;
}

.admin-logo-wrap {
  background: #fff;
  border: 2px solid #3e9a2c; 
  border-radius: 14px;
  padding: 10px 10px;        /* bigger white space */
  /*min-width: 220px;*/          /* wider box */
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.admin-logo {
  max-height: 100px;
  width: auto;
  display: block;
}

.admin-page-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
}

.admin-page-subtitle {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.9);
}

.admin-page-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
}

.admin-page-subtitle {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.9);
}

.admin-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  padding: 1.5rem;
  border-top: 4px solid #3e9a2c;
}

.admin-card .form-check {
  padding-left: 12px;
  margin-top: 10px;
}

.btn-admin,
.btn-admin-outline,
.btn-admin-danger {
  padding: 10px 22px;
  font-size: 0.95rem;
  border-radius: 24px;
  font-weight: 600;
}

.admin-card-danger {
  border-top: 4px solid #b42318;
  background: #fff5f5;
}

.btn-admin {
  background-color: #3e9a2c;
  border-color: #3e9a2c;
  color: #fff;
}

.btn-admin:hover,
.btn-admin:focus {
  background-color: #347f24;
  border-color: #347f24;
  color: #fff;
}

.btn-admin-outline {
  background: #fff;
  border: 1px solid #d7e7d2;
  color: #2f7d21;
}

.btn-admin-outline:hover,
.btn-admin-outline:focus {
  background: #eef7eb;
  border-color: #3e9a2c;
  color: #2f7d21;
}

.btn-admin-danger {
  background-color: #b42318;
  border-color: #b42318;
  color: #fff;
}

.btn-admin-danger:hover,
.btn-admin-danger:focus {
  background-color: #912018;
  border-color: #912018;
  color: #fff;
}

.admin-topbar .btn {
  margin-left: 4px;
}

.badge {
  font-size: 0.85rem;
  padding: 6px 10px;
  border-radius: 20px;
}

.table thead th {
  background: #f8faf8;
  border-bottom: 2px solid #dfe8dc;
  color: #1f2937;
}

.form-label {
  font-weight: 600;
  color: #1f2937;
}

th.sortable {
  cursor: pointer;
  user-select: none;
}

.sort-indicator {
  font-size: 0.8em;
  color: #6c757d;
}



@media (max-width: 767px) {
  .admin-topbar {
    padding: 1rem;
  }

  .admin-page-title {
    font-size: 1.4rem;
  }

  .admin-logo {
    max-height: 44px;
  }

  .admin-logo-wrap {
    min-width: 130px;
    padding: 10px 12px;
  }
}

/*--------------------------------------------------------------
/** DASHBOARD MOBILE TABLES
--------------------------------------------------------------*/

@media (max-width: 767px) {

  .mobile-stack-table thead {
    display: none;
  }

  .mobile-stack-table,
  .mobile-stack-table tbody,
  .mobile-stack-table tr,
  .mobile-stack-table td {
    display: block;
    width: 100%;
  }

  .mobile-stack-table tr {
    border-bottom: 1px solid #e5e7eb;
    padding: 14px 14px 10px;
    background: #fff;
  }

  .mobile-stack-table tr:nth-child(even),
  .mobile-stack-table tr:nth-child(odd) {
    background: #fff;
  }

  .mobile-stack-table td {
    border: 0 !important;
    padding: 8px 0;
    text-align: left !important;
  }

  .mobile-stack-table td::before {
    content: attr(data-label);
    display: block;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 3px;
    font-size: 0.82rem;
    text-transform: none;
  }

  .mobile-stack-table td:last-child {
    padding-top: 12px;
  }

  .mobile-stack-table td:last-child .btn {
    width: 100%;
  }

  .mobile-stack-table .badge {
    display: inline-block;
  }

  .table-responsive {
    overflow-x: visible;
  }
}

@media (max-width: 767px) {
  .mobile-stack-table td {
    overflow-wrap: anywhere;
    word-break: break-word;
  }
}

/* =========================
   SUPER ADMIN ORANGE THEME
========================= */

body.super-admin .admin-topbar {
  background: linear-gradient(135deg, #f57c00, #d96a00);
}

body.super-admin .admin-card {
  border-top: 4px solid #f57c00;
}

body.super-admin .btn-admin {
  background-color: #f57c00;
  border-color: #f57c00;
  color: #fff;
}

body.super-admin .btn-admin:hover,
body.super-admin .btn-admin:focus {
  background-color: #d96a00;
  border-color: #d96a00;
  color: #fff;
}

body.super-admin .btn-admin-outline {
  background: #fff;
  border: 1px solid #f57c00;
  color: #c96400;
}

body.super-admin .btn-admin-outline:hover,
body.super-admin .btn-admin-outline:focus {
  background: #fff3e8;
  border-color: #f57c00;
  color: #a95400;
}

body.super-admin .admin-page-title {
  color: #fff;
}

body.super-admin .admin-page-subtitle {
  color: rgba(255,255,255,0.92);
}

body.super-admin .badge.bg-success {
  background-color: #f57c00 !important;
}

body.super-admin .badge.bg-warning {
  background-color: #ffb74d !important;
  color: #111 !important;
}