html {
  scroll-behavior: smooth;
}

html.dropdown-open {
  overflow: hidden;
}

body.popup-open {
  overflow: hidden;
  position: fixed;
  width: 100%;
}

* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

:root {
  --theme-font: "Montserrat", sans-serif;
  --transition: all 300ms ease-in-out;
  --white: #ffffff;
  --black: #000000;
  --brown: #2a2725;
  --orange: #e8731a;
  --cream: #f4f3f0;
  --body-text-color: #5e5855;
}

*,
:after,
:before {
  box-sizing: border-box;
}

body {
  font-family: var(--theme-font);
  font-weight: 400;
  font-size: 16px;
  line-height: 28px;
  color: var(--body-text-color);
  background-color: var(--white);
}

/* Links
--------------------------------------------- */
a {
  color: var(--body-text-color);
  text-decoration: none;
  outline: none;
  -webkit-transition: var(--transition);
  -moz-transition: var(--transition);
  -o-transition: var(--transition);
  transition: var(--transition);
}

a:visited {
  outline: none;
}

a:hover,
a:focus,
a:active {
  outline: none;
}

a:focus {
  outline: none;
}

a:hover,
a:active {
  outline: 0;
  outline: none;
}

/* Headings
--------------------------------------------- */

h1,
.h1 {
  font-weight: 700;
  font-size: 44px;
  line-height: 58px;
}

h2,
.h2 {
  font-weight: 700;
  font-size: 36px;
  line-height: 50px;
  color: var(--brown);
}

h2>span,
.h2>span {
  color: var(--orange);
}

h3,
.h3 {
  font-weight: 700;
  font-size: 32px;
  line-height: 32px;
}

h4,
.h4 {
  font-weight: 700;
  font-size: 20px;
  line-height: 22px;
}

h5,
.h5 {
  font-weight: 600;
  font-size: 18px;
  line-height: 20px;
}

h6,
.h6 {
  font-weight: 700;
  font-size: 18px;
  line-height: 20px;
  text-transform: uppercase;
}

ul,
ol {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

li {
  list-style-type: none;
}

p {
  margin-bottom: 10px;
}

p:last-child {
  margin-bottom: 0px;
}

strong {}

p:has(> strong:only-child) {
  margin-bottom: 24px;
}

.container {
  margin: 0 auto;
  padding-left: 15px;
  padding-right: 15px;
  width: 100%;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin-left: -15px;
  margin-right: -15px;
}

.row>* {
  padding-left: 15px;
  padding-right: 15px;
}

section {
  clear: both;
  overflow: hidden;
  position: relative;
}

.tag {
  font-weight: 500;
  font-size: 16px;
  line-height: 30px;
  color: var(--orange);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 5px 20px;
  background: rgba(232, 115, 26, 0.1);
  border-bottom: 1px solid #e8731a;
  border-radius: 50px;
  margin-bottom: 20px;
  width: fit-content;
}

a.btn,
input[type="submit"],
.forminator-ui.forminator-custom-form[data-design="default"] .forminator-button {
  font-weight: 600;
  font-size: 14px;
  line-height: 16px;
  padding: 17px 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  outline: none;
  border: none;
  gap: 8px;
  -webkit-transition: var(--transition);
  -moz-transition: var(--transition);
  -o-transition: var(--transition);
  transition: var(--transition);
  cursor: pointer;
  background-color: var(--orange);
  color: var(--white);
  border: 1px solid var(--orange);
  border-radius: 40px;
  width: max-content;
  text-transform: uppercase;
}

a.btn:hover,
.forminator-ui.forminator-custom-form[data-design="default"] .forminator-button:hover {
  background-color: transparent;
  color: var(--orange);
}

a.btn.white:not(:hover) {
  background-color: var(--white);
  border-color: var(--white);
  color: var(--brown);
}

a.btn.green:not(:hover) {
  background-color: #189310;
  border-color: #189310;
}

.slick-arrows {
  display: flex;
  margin-inline-start: -5px;
  margin-inline-end: 5px;
}

.slick-arrow {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 45px;
  height: 45px;
  background-color: var(--cream);
  border-radius: 50%;
  margin: 0px 5px;
  cursor: pointer;
}

.slick-arrow:hover {
  background-color: var(--brown);
}

.slick-arrow:hover svg path {
  stroke: var(--white);
}

svg path {
  -webkit-transition: var(--transition);
  -moz-transition: var(--transition);
  -o-transition: var(--transition);
  transition: var(--transition);
}

.section_header {
  width: 100%;
  position: relative;
  text-align: center;
  margin-bottom: 30px;
}

.section_header h2 {
  margin-bottom: 5px;
}

.section_header p {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

/*- Header Start -*/

.site-header {
  display: flex;
  align-items: start;
  justify-content: center;
  background: var(--brown);
  z-index: 99;
}

.site-header:not(.sticky):has(+ .hero-banner-section),
.site-header:not(.sticky):has(+ .landing_section) {
  position: absolute;
  width: 100%;
  background: transparent;
}

.site-header .row {
  justify-content: space-between;
  align-items: center;
}

.site-header .header-right {
  display: flex;
  align-items: center;
}

.site-branding {
  margin: 15px 0px;
}

.site-header .site-branding img {
  max-width: 133px;
}

.site-branding,
.site-branding a {
  display: flex;
}

.main-navigation ul li a {
  color: var(--white);
  -webkit-transition: var(--transition);
  -moz-transition: var(--transition);
  -o-transition: var(--transition);
  transition: var(--transition);
}

.main-navigation ul li.current_page_item>a,
.main-navigation ul li a:hover {
  color: var(--orange);
}

.site-header.sticky .site-branding {
  margin: 15px 0px;
}

.main-navigation .menu-toggle+div>ul {
  display: flex;
  align-items: center;
}

.main-navigation .menu-toggle+div>ul>li:not(:last-child) {
  margin-right: 24px;
}

.main-navigation .menu-toggle+div>ul>li>ul.sub-menu {
  position: absolute;
  display: none;
  background: var(--white);
  margin: 0;
  padding: 15px 20px;
  border-radius: 15px;
  min-width: 250px;
  top: 50px;
  z-index: 9;
}

.main-navigation .menu-toggle+div>ul>li>ul.sub-menu li {
  line-height: 1;
}

.main-navigation .menu-toggle+div>ul>li>ul.sub-menu li:not(:last-child) {
  margin-bottom: 12px;
}

.main-navigation .menu-toggle+div>ul>li>ul.sub-menu a {
  color: var(--body-text-color);
  line-height: 1.2;
}

.main-navigation .menu-toggle+div>ul>li {
  position: relative;
  padding: 10px 0px;
}

.main-navigation .menu-toggle+div>ul>li.menu-item-has-children {
  padding-right: 20px;
}

.main-navigation .menu-toggle+div>ul>li.menu-item-has-children .icon {
  font-size: 23px;
  color: var(--white);
  position: absolute;
  right: 0;
  -webkit-transition: var(--transition);
  -moz-transition: var(--transition);
  -o-transition: var(--transition);
  transition: var(--transition);
  top: 10px;
  bottom: auto;
  cursor: pointer;
  z-index: 1;
}

.site-header.background-light .main-navigation .menu-toggle+div>ul>li.menu-item-has-children .icon {
  color: var(--orange);
}

.site-header.background-light .menu-icon .line {
  background-color: var(--white);
}

.main-navigation .menu-toggle+div>ul>li.menu-item-has-children .icon:hover,
.main-navigation .menu-toggle+div>ul>li.menu-item-has-children.open .icon {
  color: var(--orange);
}

.site-header.sticky {
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  transition: 0.4s;
  width: 100%;
  z-index: 999;
  box-shadow: 0 0 10px rgb(0 0 0 / 25%);
  -webkit-font-smoothing: antialiased;
  animation: 0.9s ease 0s normal both 1 running fixedAnim;
}

body.admin-bar .site-header.sticky {
  top: 32px;
}

small {
  font-weight: 600;
  font-size: 12px;
  line-height: 15px;
}

@-webkit-keyframes fixedAnim {
  0% {
    transform: translateY(-100%);
  }

  100% {
    transform: translateY(0%);
  }
}

@-moz-keyframes fixedAnim {
  0% {
    transform: translateY(-100%);
  }

  100% {
    transform: translateY(0%);
  }
}

@keyframes fixedAnim {
  0% {
    transform: translateY(-100%);
  }

  100% {
    transform: translateY(0%);
  }
}

/*----------Menu-------*/
.menu {
  display: flex;
  justify-content: center;
  align-items: center;
}

.menu a {
  font-weight: 500;
  font-size: 15px;
  line-height: 24px;
}

.menu .btn a {
  line-height: 14px;
  padding: 7px 22px;
}

.menu-icon .line {
  width: 25px;
  height: 2px;
  background-color: var(--white);
  border-radius: 1.89389px;
  display: block;
  margin: 6px auto;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  position: relative;
  border-radius: 50px;
}

.menu-toggle .menu-icon {
  overflow: hidden;
  cursor: pointer;
  width: 25px;
}

.menu-toggle span.line:nth-child(1) {
  rotate: 0deg;
  top: 0;
}

.menu-toggle.active span.line:nth-child(1) {
  top: 8px;
  -ms-transform: rotateZ(45deg);
  -webkit-transform: rotateZ(45deg);
  -moz-transform: rotateZ(45deg);
  -o-transform: rotateZ(45deg);
  transform: rotateZ(45deg);
}

.menu-toggle span.line:nth-child(2) {
  transform: translateX(0%);
}

.menu-toggle.active span.line:nth-child(2) {
  transform: translateX(-101%);
}

.menu-toggle span.line:nth-child(3) {
  rotate: 0deg;
  top: 0;
}

.menu-toggle.active span.line:nth-child(3) {
  top: -8px;
  -ms-transform: rotateZ(-45deg);
  -webkit-transform: rotateZ(-45deg);
  -moz-transform: rotateZ(-45deg);
  -o-transform: rotateZ(-45deg);
  transform: rotateZ(-45deg);
}

.menu-toggle.active {
  position: fixed;
  z-index: 999;
  top: 50px;
  right: 20px;
}

.menu-toggle.active .line {
  background: var(--brown);
}

.site-header .header-right .btn-wrapper {
  display: inline-flex;
  margin-inline-start: 30px;
}

.site-header .header-right a.btn {
  padding: 11px 19px;
}

/*--------------------------*/
/*- Header End -*/

/*Footer Start*/
.site-footer {
  background-color: var(--brown);
  color: rgba(255, 255, 255, 0.7);
  border-top: 1px solid;
  border-image-source: linear-gradient(90deg, rgba(232, 115, 26, 0) 0%, #e8731a 50%, rgba(232, 115, 26, 0) 100%);
  border-image-slice: 1;
  position: relative;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.7);
}

.site-footer a:hover,
.site-footer .current_page_item>a {
  color: var(--orange);
}

/*-cta*/

.footer-cta {
  clear: both;
  overflow: hidden;
  position: relative;
}

.footer-cta .footer-cta-image {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.footer-cta .footer-cta-image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.footer-cta .footer-cta-image:before {
  content: "";
  display: flex;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-image: url(../images/footer-cta-overlay.png);
  background-size: 100% 100%;
}

.footer-cta-content {
  position: relative;
  z-index: 1;
  color: var(--white);
  text-align: center;
}

.footer-cta-content .row {
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 90px 0;
}

.footer-cta-content .btn-wrapper {
  display: inline-flex;
  flex-wrap: wrap;
  margin-top: 24px;
  justify-content: center;
}

.footer-cta-content p {
  max-width: 675px;
  opacity: 0.8;
}

.footer-cta-content .btn-wrapper a.btn {
  margin: 7px;
}

.footer-logo {
  max-width: 155px;
  display: inline-flex;
  margin-bottom: 20px;
}

.footer-logo * {
  display: inline-flex;
}

.site-footer .first-column {
  width: 45%;
}

.site-footer .second-column {
  width: 25%;
}

.site-footer .third-column {
  width: 30%;
}

.footer-top {
  padding: 90px 0px;
}

.footer-bottom .row {
  justify-content: space-between;
}

.footer-bottom ul.bottom-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-bottom {
  background-color: var(--orange);
  padding: 24px 0px;
  color: var(--white);
  position: relative;
}

.footer-bottom a {
  color: var(--white);
}

.footer-bottom a:hover {
  color: var(--brown);
}

.footer-bottom ul.bottom-links li {
  padding: 0px 12px;
  position: relative;
}

.footer-bottom ul.bottom-links li:not(:first-child):before {
  content: "•";
  font-size: 31px;
  display: inline-flex;
  color: rgba(255, 255, 255, 0.7);
  position: absolute;
  left: -4px;
  top: -3px;
  margin: auto;
  line-height: 1;
}

.footer-block p {
  max-width: 325px;
  font-size: 15px;
}

.social-block {
  display: flex;
}

.social-block a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
}

.social-block a:not(:last-child) {
  margin-inline-end: 10px;
}

.social-block a:hover {
  background-color: var(--orange);
}

.site-footer .first-column .footer-block {
  margin-bottom: 30px;
}

.site-footer h5 {
  color: var(--white);
  padding-bottom: 15px;
  margin-bottom: 30px;
  position: relative;
}

.site-footer h5:before {
  content: "";
  display: flex;
  width: 15px;
  height: 2px;
  border-radius: 1.5px;
  background: var(--white);
  position: absolute;
  top: auto;
  bottom: 0;
}

.site-footer h5:after {
  content: "";
  display: flex;
  width: 73px;
  height: 2px;
  border-radius: 1.5px;
  background: var(--orange);
  position: absolute;
  top: auto;
  bottom: 0;
  left: 20px;
}

ul.footer-links {
  display: flex;
  flex-direction: column;
}

ul.footer-links li {
  display: inline-flex;
  align-items: center;
  margin-bottom: 10px;
}

ul.footer-links li svg {
  margin-inline-end: 5px;
  opacity: 0.8;
}

.footer-contact .contact-link .icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background: rgba(232, 115, 26, 0.1);
  border-radius: 8px;
  margin-inline-end: 15px;
  flex-shrink: 0;
}

.footer-contact .contact-link {
  margin-bottom: 10px;
}

.footer-contact a {
  display: flex;
  align-items: start;
}

.footer-contact a>span:not(.icon) {
  margin-top: 5px;
}

.footer-cta-content h2 {
  margin-bottom: 15px;
  color: var(--white);
}

.site-footer ul.footer-links li a,
.footer-contact .contact-link a {
  font-size: 15px;
}

.top-btn {
  position: absolute;
  left: 0;
  right: 0;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  border: 4px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.05);
  border-radius: 43.75px;
  bottom: auto;
  width: 60px;
  height: 60px;
  margin: 0 auto;
  top: -40px;
  background-color: var(--orange);
  cursor: pointer;
}

/*Footer End*/

input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  color: #5e5855;
  opacity: 1;
}

input::-moz-placeholder,
textarea::-moz-placeholder {
  color: #5e5855;
  opacity: 1;
}

input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
  color: #5e5855;
  opacity: 1;
}

input::placeholder,
textarea::placeholder {
  color: #5e5855;
  opacity: 1;
}

/*-*/

section.defualt-content {
  margin: 80px 0px;
}

blockquote {
  padding: 24px 30px;
  background: rgba(232, 115, 26, 0.05);
  border-left: 3px solid var(--orange);
  border-radius: 15px;
  margin: 15px 0px;
}

section.defualt-content ul,
section.defualt-content ol {
  margin: 10px 0px 10px 20px;
}

section.defualt-content ul,
section.defualt-content ul li {
  list-style: disc;
}

section.defualt-content ol,
section.defualt-content ol li {
  list-style: auto;
}
section.defualt-content p a:hover{
  color: var(--orange);
}
/*-*/

ul.page-numbers {
  display: flex;
  flex-wrap: wrap;
  align-items: start;
  justify-content: center;
}

ul.page-numbers>li {
  padding: 0px 5px;
}

ul.page-numbers>li>* {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 8px 11px;
  width: auto;
  height: 40px;
  background: #f4f3f0;
  border-radius: 8px;
  min-width: 40px;
  font-weight: 400;
  font-size: 15px;
  line-height: 24px;
  color: var(--brown);
  -webkit-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
}

ul.page-numbers>li>*:hover,
ul.page-numbers>li>.current {
  background-color: var(--brown);
  color: var(--white);
}
ul.page-numbers li a.next,
ul.page-numbers li a.prev{
  background-color: transparent;
}
body.search.search-no-results .no-results.not-found {
  width: 100%;
  margin: 80px 0px;
}

body.error404 .site-main {
  background-color: #e8731a0d;
  text-align: center;
  padding: 80px 0px;
}

body.error404 .site-main .row {
  justify-content: center;
}

body.error404 .site-main h1 {
  color: var(--brown);
  margin-bottom: 30px;
}

body.error404 .site-main h1 svg {
  height: 100%;
}

body.error404 .site-main a.btn {
  margin: auto;
}

/* Container base */
#products-container {
  position: relative;
}

/* Loader state */
#products-container.loading {
  pointer-events: none;
  opacity: 0.3;
}

/* Loader overlay */
#products-container.loading::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 40px;
  height: 40px;
  border: 4px solid #ccc;
  border-top: 4px solid #000;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: spin 0.8s linear infinite;
  z-index: 10;
}

.product-lightbox-close {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

/* =========================
   OVERLAY
========================= */

.product-lightbox-overlay {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.82);
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 25px;
  box-sizing: border-box;
  overflow-y: auto;
}

/* =========================
   MAIN CONTAINER
========================= */

.product-lightbox-container {
  position: relative;
  width: 100%;
  max-width: 1180px;
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  box-shadow: 0 15px 60px rgba(0, 0, 0, 0.35);
  cursor: default;
}

/* =========================
   LEFT IMAGE SECTION
========================= */

.product-lightbox-image-section {
  position: relative;
  width: 52%;
  min-height: 650px;
  background: #f7f7f7;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 50px;
  overflow: hidden;
}

/* PRODUCT IMAGE */

.product-lightbox-img {
  width: 100%;
  max-width: 430px;
  max-height: 520px;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}

/* =========================
   RIGHT DETAILS SECTION
========================= */

.product-lightbox-details-section {
  width: 48%;
  padding: 65px 40px 42px 40px;
  overflow-y: auto;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

/* PRODUCT TITLE */

.lightbox-product-name {
  font-size: 30px;
  line-height: 1.15;
  font-weight: 700;
  color: #000000 !important;
  margin: 0 0 30px;
  width: 100%;
  display: block;
}

/* =========================
   INFO ROW
========================= */

.lightbox-info-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-bottom: 16px;
  margin-bottom: 16px;
  border-bottom: 1px solid #e5e5e5;
}

/* LAST ROW */

.lightbox-desc-row {
  border-bottom: 0;
  margin-bottom: 0;
  padding-bottom: 0;
}

/* LABEL */

.lightbox-label {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: #000;
  line-height: 1.2;
}

/* VALUE */

.lightbox-value {
  font-size: 15px;
  line-height: 1.6;
  color: #2b2b2b;
  font-weight: 400;
}

/* =========================
   CLOSE BUTTON
========================= */

.product-lightbox-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #f1f1f1;
  color: #111111;
  font-size: 28px;
  font-weight: 400;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 20;
  transition: all 0.3s ease;
}

.product-lightbox-close:hover {
  background: #111111;
  color: #ffffff;
}

/* =========================
   NAVIGATION BUTTONS
========================= */

.product-lightbox-prev,
.product-lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 0;
  background: #ffffff;
  color: #111111;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
  transition: all 0.3s ease;
}

.product-lightbox-prev {
  left: 22px;
}

.product-lightbox-next {
  right: 22px;
}

.product-lightbox-prev:hover,
.product-lightbox-next:hover {
  background: #111111;
  color: #ffffff;
  transform: translateY(-50%) scale(1.06);
}

/* DISABLED */

.product-lightbox-prev:disabled,
.product-lightbox-next:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.product-lightbox-prev:disabled:hover,
.product-lightbox-next:disabled:hover {
  background: #ffffff;
  color: #111111;
  transform: translateY(-50%);
}

/* Animation */
@keyframes spin {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@media only screen and (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}

@media only screen and (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}

@media only screen and (min-width: 992px) {
  .container {
    max-width: 960px;
  }

  .site-header .menu-toggle {
    display: none;
  }

  body.error404 .site-main h1 {
    font-size: 5vw;
  }

  body.error404 .site-main h1 svg {
    width: 4vw;
  }
}

@media only screen and (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}

@media only screen and (min-width: 1341px) {
  .container {
    max-width: 1310px;
  }
}

/* =========================
   LARGE DESKTOP
========================= */

@media (max-width: 1340px) {

  .product-lightbox-container {
    max-width: 1080px;
  }

  .product-lightbox-image-section {
    min-height: 600px;
    padding: 45px;
  }

  .product-lightbox-img {
    max-width: 390px;
    max-height: 480px;
  }

  .lightbox-product-name {
    font-size: 34px;
  }
}

@media (max-width: 1199px) {

  h1,
  .h1 {
    font-size: 38px;
    line-height: 51px;
  }

  .footer-bottom .row {
    justify-content: center;
  }

  .footer-bottom .bottom-left {
    margin-bottom: 10px;
    text-align: center;
  }

  .site-footer .first-column {
    width: 40%;
  }

  .site-footer .third-column {
    width: 35%;
  }

  .product-lightbox-container {
    max-width: 960px;
  }

  .product-lightbox-image-section {
    min-height: 560px;
    padding: 40px;
  }

  .product-lightbox-img {
    max-width: 340px;
    max-height: 420px;
  }

  .product-lightbox-details-section {
    padding: 36px 34px;
  }

  .lightbox-product-name {
    font-size: 30px;
    margin-bottom: 18px;
  }

  .lightbox-value {
    font-size: 16px;
  }
}

@media (max-width: 991px) {

  h1,
  .h1 {
    font-size: 35px;
    line-height: 45px;
  }

  h2,
  .h2 {
    font-size: 32px;
    line-height: 42px;
  }

  h3,
  .h3 {
    font-size: 30px;
    line-height: 32px;
  }

  .menu-toggle+div:has(> #primary-menu) {
    padding: 16px;
    position: fixed;
    right: 0;
    left: auto;
    height: calc(var(--vh, 1vh) * 100);
    top: 0;
    width: 320px;
    bottom: 0;
    z-index: 99;
    min-width: 320px;
    transform: translateX(110%);
    transition: all 0.2s;
    background: var(--white);
    padding-right: 10px;
    padding-top: 100px;
  }

  .menu-toggle+div:has(> #primary-menu).open {
    transform: translateX(0%);
    transition: all 0.8s;
  }

  .main-navigation .menu-toggle+div ul.menu {
    flex-direction: column;
    height: 100%;
    overflow-x: auto;
    align-items: start;
    justify-content: start;
  }

  .main-navigation .menu-toggle+div ul.menu::-webkit-scrollbar {
    width: 6px;
    border-radius: 10px;
  }

  .main-navigation .menu-toggle+div ul.menu::-webkit-scrollbar-thumb {
    border-radius: 10px;
  }

  .main-navigation .menu-toggle+div>ul>li.menu-item-has-children.open {
    margin: 0;
    padding: 15px 20px;
    border-radius: 15px;
    text-align: center;
    max-width: 345px;
    width: 100%;
  }

  .main-navigation .menu-toggle+div>ul>li.menu-item-has-children.open>a {
    color: var(--body-text-color);
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .main-navigation ul li a:not(.btn) {
    color: var(--body-text-color);
  }

  .main-navigation .menu-toggle+div>ul>li.menu-item-has-children {
    padding-right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
  }

  .main-navigation .menu-toggle+div>ul>li.menu-item-has-children .icon {
    font-size: 30px;
    position: static;
    display: inline-flex;
    margin-left: 10px;
  }

  .main-navigation .menu-toggle+div>ul>li {
    padding: 0px;
    width: 100%;
    margin-bottom: 10px;
  }

  .main-navigation .menu-toggle+div>ul>li:not(:last-child) {
    margin-right: 0;
  }

  .main-navigation .menu-toggle+div>ul>li>ul.sub-menu {
    width: 100%;
  }

  .site-footer .first-column,
  .site-footer .second-column,
  .site-footer .third-column {
    width: 100%;
  }

  .footer-top {
    padding: 50px 0px;
  }

  .site-footer .first-column .footer-block {
    margin-bottom: 15px;
  }

  .site-footer .first-column,
  .site-footer .second-column {
    margin-bottom: 30px;
  }

  .site-footer h5 {
    margin-bottom: 15px;
  }

  .footer-cta-content .row {
    padding: 50px 0;
  }

  .footer-cta-content .btn-wrapper {
    margin-top: 10px;
  }

  .site-header .header-right .btn-wrapper {
    display: none;
  }

  .site-header .header-right:has(.menu-toggle.active):after {
    content: "";
    display: flex;
    background: var(--black);
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    opacity: 50%;
    z-index: -1;
  }

  body.error404 .site-main h1 {
    font-size: 50px;
  }

  body.error404 .site-main h1 svg {
    width: 40px;
  }

  /* =========================
     PRODUCT LIGHTBOX
  ========================= */

  .product-lightbox-overlay {
    padding: 10px;
    align-items: center;
    justify-content: center;
    overflow-y: auto;
  }

  .product-lightbox-container {
    flex-direction: column;
    width: 100%;
    max-width: 720px;
    max-height: calc(100vh - 20px);
    overflow-y: auto;
    margin: 0 auto;
    border-radius: 12px;
  }

  .product-lightbox-image-section {
    width: 100%;
    min-height: auto;
    padding: 45px 20px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .product-lightbox-img {
    max-width: 260px;
    max-height: 320px;
    margin: 0 auto;
    display: block;
  }

  .product-lightbox-details-section {
    width: 100%;
    padding: 24px 24px 28px;
    overflow: visible;
  }

  .lightbox-product-name {
    font-size: 28px;
    line-height: 1.25;
    margin-bottom: 16px;
    color: #000000 !important;
  }

  .lightbox-info-row {
    gap: 5px;
    padding-bottom: 14px;
    margin-bottom: 14px;
  }

  .lightbox-label {
    font-size: 13px;
  }

  .lightbox-value {
    font-size: 15px;
    line-height: 1.55;
  }

  .product-lightbox-prev,
  .product-lightbox-next {
    width: 38px;
    height: 38px;
    font-size: 13px;
    top: 50%;
  }

  .product-lightbox-prev {
    left: 15px;
  }

  .product-lightbox-next {
    right: 15px;
  }

  .product-lightbox-close {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 50;
  }
}

@media (max-width: 782px) {

  .forminator-row:has(.forminator-col-6) {
    margin-left: -12px;
    margin-right: -12px;
  }
}

@media (max-width: 767px) {

  h2,
  .h2 {
    font-size: 30px;
    line-height: 40px;
  }

  h3,
  .h3 {
    font-size: 28px;
    line-height: 30px;
  }

  blockquote {
    padding: 15px 25px;
  }

  .product-lightbox-overlay {
    padding: 10px;
  }

  .product-lightbox-container {
    width: 100%;
    border-radius: 10px;
  }

  .product-lightbox-image-section {
    width: 100%;
    padding: 45px 45px 18px;
  }

  .product-lightbox-img {
    max-width: 210px;
    max-height: 250px;
  }

  .product-lightbox-details-section {
    padding: 20px 18px 22px;
  }

  .lightbox-product-name {
    font-size: 22px;
    line-height: 1.3;
    color: #000000 !important;
  }

  .lightbox-info-row {
    gap: 4px;
    padding-bottom: 12px;
    margin-bottom: 12px;
  }

  .lightbox-label {
    font-size: 12px;
    letter-spacing: 0.5px;
  }

  .lightbox-value {
    font-size: 14px;
    line-height: 1.5;
  }

  .product-lightbox-prev,
  .product-lightbox-next {
    width: 32px;
    height: 32px;
    font-size: 11px;
    top: 50% !important;
    transform: none;
    background: #ccc !important;
    color: #000 !important;
  }

  .product-lightbox-next {
    right: 10px !important;
  }

  .product-lightbox-prev {
    left: 10px !important;
  }

  .product-lightbox-close {
    width: 34px;
    height: 34px;
    font-size: 22px;
    top: 10px;
    right: 10px;
  }

  .product-lightbox-prev:hover,
  .product-lightbox-next:hover {
    transform: unset;
  }
}

@media (max-width: 575px) {

  h1,
  .h1 {
    font-size: 30px;
    line-height: 40px;
  }

  h2,
  .h2 {
    font-size: 25px;
    line-height: 35px;
  }

  h3,
  .h3 {
    font-size: 22px;
    line-height: 26px;
  }

  h4,
  .h4 {
    font-size: 17px;
    line-height: 20px;
  }

  blockquote {
    padding: 10px 20px;
  }

  body.search.search-no-results .no-results.not-found {
    margin: 50px 0px;
  }
}

@media only screen and (max-width: 480px) {

  .product-lightbox-next,
  .product-lightbox-prev {
    background: #ccc !important;
    color: #000 !important;
  }

  .product-lightbox-prev:disabled,
  .product-lightbox-next:disabled {
    opacity: 0.5 !important;
  }

  .product-lightbox-overlay {
    padding: 8px;
  }

  .product-lightbox-image-section {
    padding: 42px 40px 15px;
  }

  .product-lightbox-img {
    max-width: 180px;
    max-height: 220px;
  }

  .product-lightbox-details-section {
    padding: 18px 15px 20px;
  }

  .lightbox-product-name {
    font-size: 20px;
  }

  .lightbox-info-row {
    padding-bottom: 10px;
    margin-bottom: 10px;
  }

  .lightbox-value {
    font-size: 13px;
    line-height: 1.45;
  }

  .product-lightbox-prev,
  .product-lightbox-next {
    width: 30px;
    height: 30px;
    font-size: 10px;
  }

  .product-lightbox-container {
    margin: 15px 0;
  }
}