@charset "UTF-8";
/*--------------------------------------------------------------
/** Colors & Fonts
--------------------------------------------------------------*/
:root {
  --primary-color: #C58C6E;
  --secondary-color: #B8B7A3;
  --tertiary-color: #DDBEA9;
  --quartenary-color: #f0E3D3;
  --black-color: #1A1A1A;
  --dark-color: #353535;
  --primary-color-200: #E8F0F1;
  --primary-color-400: #c4e9ed;
  --gray-color: #777F81;
  --light-color: #fdfdfd;
  --background-light: #f8f8f8;
  --bs-dark-rgb: 80, 80, 80;
  --bs-gray-100: #EAE5DD;
  --bs-gray-300: #DCDCDC;
  --bs-light-rgb: rgba(255, 255, 255, 1);
  --bs-body-color-rgb: 53, 53, 53;
  --bs-primary-rgb: 209, 104, 6;
  --bs-secondary-rgb: 249, 246, 243;
  --heading-font: "Lora", serif;
  --body-font: "Sora", sans-serif;
}

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

html {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  font-family: var(--body-font);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.64;
  letter-spacing: 0.32px;
  color: var(--dark-color);
  margin: 0;
}

p {
  color: var(--dark-color);
}

a {
  color: inherit;
  text-decoration: none;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
a:hover {
  color: var(--primary-color);
}

.text-light {
  color: var(--light-color) !important;
}

.text-primary {
  color: var(--primary-color) !important;
}

.text-black {
  color: var(--black-color) !important;
}

.bg-light {
  background-color: var(--light-color) !important;
}

.bg-primary {
  background-color: var(--primary-color) !important;
}

.bg-gray {
  background-color: var(--bs-gray-100) !important;
}

/*--------------------------------------------------------------
/** Sections
--------------------------------------------------------------*/
.padding-small {
  padding-top: 3em;
  padding-bottom: 3em;
}

.padding-medium {
  padding-top: 8em;
  padding-bottom: 8em;
}

.padding-large {
  padding-top: 8em;
  padding-bottom: 8em;
}

.padding-side {
  padding-left: 6rem;
  padding-right: 6rem;
}
@media (max-width: 1400px) {
  .padding-side {
    padding-left: 5rem;
    padding-right: 5rem;
  }
}
@media (max-width: 1200px) {
  .padding-side {
    padding-left: 4rem;
    padding-right: 4rem;
  }
}
@media (max-width: 992px) {
  .padding-side {
    padding-left: 3rem;
    padding-right: 3rem;
  }
}
@media (max-width: 768px) {
  .padding-side {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
@media (max-width: 576px) {
  .padding-side {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

@media (max-width: 768px) {
  .padding-large {
    padding-top: 15em;
  }
}
@media (max-width: 576px) {
  .padding-large {
    padding-top: 18em;
  }
}

.margin-small {
  margin-top: 8.125em;
  margin-bottom: 8.125em;
}

.margin-medium {
  margin-top: 10em;
  margin-bottom: 10em;
}

.margin-large {
  margin-top: 12em;
  margin-bottom: 12em;
}

/* Section Titles */
h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--black-color);
  font-family: var(--heading-font);
  text-transform: capitalize;
  font-weight: 400;
}

/* Animation */
.animate {
  -webkit-animation-duration: 0.3s;
          animation-duration: 0.3s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}

@-webkit-keyframes slide {
  0% {
    -webkit-transform: translateY(1rem);
            transform: translateY(1rem);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}

@keyframes slide {
  0% {
    -webkit-transform: translateY(1rem);
            transform: translateY(1rem);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}
.slide {
  -webkit-animation-name: slide;
          animation-name: slide;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
}

.buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
}

.button, .wp-element-button, .wpforms-submit, .wp-block-button__link, .wc-block-components-button {
  background: var(--primary-color) !important;
  padding: 10px 15px !important;
  border-radius: 0.5rem !important;
  font-family: var(--heading-font) !important;
  font-size: 20px !important;
  color: var(--background-light) !important;
  border: 1px solid var(--primary-color) !important;
  line-height: normal !important;
  min-height: auto !important;
  font-weight: 500;
}
@media (max-width: 768px) {
  .button, .wp-element-button, .wpforms-submit, .wp-block-button__link, .wc-block-components-button {
    font-size: 16px !important;
  }
}
.button:hover, .wp-element-button:hover, .wpforms-submit:hover, .wp-block-button__link:hover, .wc-block-components-button:hover {
  background: color-mix(in srgb, var(--primary-color) 40%, transparent) !important;
}
.button--primary, .wp-element-button--primary, .wpforms-submit--primary, .wp-block-button__link--primary, .wc-block-components-button--primary {
  background: var(--primary-color);
  border: 1px solid var(--primary-color);
}
.button--primary:hover, .wp-element-button--primary:hover, .wpforms-submit--primary:hover, .wp-block-button__link--primary:hover, .wc-block-components-button--primary:hover {
  background: color-mix(in srgb, var(--primary-color) 40%, transparent);
  color: var(--dark-color) !important;
}
.button--secondary, .wp-element-button--secondary, .wpforms-submit--secondary, .wp-block-button__link--secondary, .wc-block-components-button--secondary {
  background: var(--secondary-color);
  border: 1px solid var(--secondary-color);
}
.button--secondary:hover, .wp-element-button--secondary:hover, .wpforms-submit--secondary:hover, .wp-block-button__link--secondary:hover, .wc-block-components-button--secondary:hover {
  background: color-mix(in srgb, var(--secondary-color) 40%, transparent);
  color: var(--dark-color);
}

.btn {
  --bs-btn-padding-x: 2.4rem;
  --bs-btn-padding-y: 1rem;
  --bs-btn-font-size: 1rem;
  --bs-btn-font-weight: 400;
  text-transform: capitalize;
  border-radius: 10px;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.btn-primary {
  --bs-btn-color: var(--dark-color);
  --bs-btn-bg: var(--secondary-color);
  --bs-btn-border-color: var(--secondary-color);
  --bs-btn-hover-color: var(--dark-color);
  --bs-btn-hover-bg: var(--secondary-color);
  --bs-btn-hover-border-color: var(--secondary-color);
  --bs-btn-focus-shadow-rgb: 49, 132, 253;
  --bs-btn-active-color: var(--dark-color);
  --bs-btn-active-bg: var(--secondary-color);
  --bs-btn-active-border-color: var(--secondary-color);
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: var(--dark-color);
  --bs-btn-disabled-bg: var(--secondary-color);
  --bs-btn-disabled-border-color: var(--secondary-color);
}
.btn-outline-primary {
  --bs-btn-color: var(--secondary-color);
  --bs-btn-border-color: var(--secondary-color);
  --bs-btn-hover-color: var(--dark-color);
  --bs-btn-hover-bg: var(--secondary-color);
  --bs-btn-hover-border-color: var(--secondary-color);
  --bs-btn-focus-shadow-rgb: 13, 110, 253;
  --bs-btn-active-color: var(--dark-color);
  --bs-btn-active-bg: var(--secondary-color);
  --bs-btn-active-border-color: var(--secondary-color);
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: var(--secondary-color);
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: var(--secondary-color);
  --bs-gradient: none;
}
.btn-arrow {
  position: relative;
  -webkit-transition: background-color 300ms ease-out;
  transition: background-color 300ms ease-out;
}
.btn-arrow span {
  display: inline-block;
  position: relative;
  -webkit-transition: all 300ms ease-out;
  transition: all 300ms ease-out;
  will-change: transform;
}
.btn-arrow:hover span {
  -webkit-transform: translate3d(-0.7rem, 0, 0);
          transform: translate3d(-0.7rem, 0, 0);
}
.btn-arrow:hover svg {
  opacity: 1;
  right: -1.6rem;
}
.btn-arrow svg {
  position: absolute;
  right: 0;
  opacity: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: all 300ms ease-out;
  transition: all 300ms ease-out;
  will-change: right, opacity;
}

.dropdown-item {
  color: var(--dark-color);
  text-transform: capitalize;
}
.dropdown-item.active, .dropdown-item:hover, .dropdown-item:active {
  color: var(--dark-color);
  background-color: var(--secondary-color);
}

.form-control:focus,
.form-select:focus {
  border-color: var(--dark-color);
  outline: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
}

input,
select,
textarea {
  border-color: var(--dark-color);
  outline: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
}
input:focus,
select:focus,
textarea:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
}

svg.light-color {
  color: var(--light-color);
}
svg.dark-color {
  color: var(--dark-color);
}
svg.color {
  color: #ECB27B;
}
svg.primary-color {
  color: var(--primary-color);
}
svg.social {
  color: #ECB27B;
}
svg.social:hover {
  color: var(--primary-color);
}

.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 5px;
}

.room-pagination .swiper-pagination-bullet {
  width: 18px;
  height: 18px;
  background-color: var(--primary-color);
}
.room-pagination .swiper-pagination-bullet-active {
  background-color: var(--primary-color);
}

.main-slider-button-next.swiper-button-disabled,
.main-slider-button-prev.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}

.modal-dialog {
  max-width: 800px;
  margin: auto;
  height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.modal-content {
  padding: 0;
  background-color: #f5f3ef;
  border: none;
  border-radius: 0;
}

.preloader {
  width: 100%;
  height: 100vh;
  margin: 0 auto;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 111;
  background: #fff;
}
.preloader .loader {
  display: block;
  position: relative;
  left: 50%;
  top: 50%;
  width: 150px;
  height: 150px;
  margin: -75px 0 0 -75px;
  border-radius: 50%;
  border: 3px solid transparent;
  border-top-color: #D16806;
  -webkit-animation: spin 2s linear infinite;
          animation: spin 2s linear infinite;
}
.preloader .loader:before {
  content: "";
  position: absolute;
  top: 5px;
  left: 5px;
  right: 5px;
  bottom: 5px;
  border-radius: 50%;
  border: 3px solid transparent;
  border-top-color: #ECB27B;
  -webkit-animation: spin 3s linear infinite;
          animation: spin 3s linear infinite;
}
.preloader .loader:after {
  content: "";
  position: absolute;
  top: 15px;
  left: 15px;
  right: 15px;
  bottom: 15px;
  border-radius: 50%;
  border: 3px solid transparent;
  border-top-color: #f7dac1;
  -webkit-animation: spin 1.5s linear infinite;
          animation: spin 1.5s linear infinite;
}

@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
.logo-invert {
  -webkit-filter: invert(1);
          filter: invert(1);
  max-height: 60px;
}
@media (max-width: 768px) {
  .logo-invert {
    max-height: 45px;
  }
}

.container-fluid {
  max-width: 1800px;
}

section.top-bar {
  background: red;
}
section.top-bar li i {
  color: var(--tertiary-color);
}

nav {
  /* 4.1 Header
  /*----------------------------------------------*/
}
nav a.nav-link {
  text-transform: capitalize;
  color: var(--dark-color);
}
nav a.nav-link:focus {
  color: var(--dark-color);
}
nav a.nav-link.active,
nav a.nav-link:hover {
  color: var(--primary-color) !important;
  outline: none;
}
nav #primary-header .dropdown .search::after {
  content: none;
}
nav #primary-header .search-dropdown .dropdown-menu {
  width: 260px;
}
nav #primary-header .search-dropdown .dropdown-menu input {
  min-width: 100%;
}
nav #primary-header .search-dropdown .dropdown-menu button {
  padding: 0 12px;
  min-height: -webkit-fill-available;
  border-radius: 0.25rem;
}
@media (max-width: 991.9px) {
  nav .navbar-nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 1rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  nav .nav-item {
    width: 100%;
    background: var(--background-light);
    padding: 5px;
    border-radius: 5px;
  }
  nav a.nav-link {
    font-size: 20px;
    width: 100%;
  }
}
nav .cart-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--primary-color);
  -webkit-transition: background 0.3s ease;
  transition: background 0.3s ease;
}
nav .cart-icon a {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
nav .cart-icon a i {
  font-size: 20px;
  color: var(--background-light) !important;
}
nav .cart-icon:hover, nav .cart-icon:focus {
  background: color-mix(in srgb, var(--primary-color) 40%, transparent);
}
nav .cart-icon:hover i, nav .cart-icon:focus i {
  color: var(--dark-color);
}

footer i {
  color: var(--tertiary-color);
  font-size: 18px;
}
footer .copyright {
  border-top: 1px solid #e3e3e3;
  padding-top: 10px;
}
footer .copyright a {
  font-weight: 500;
  color: var(--primary-color);
}

section.hero {
  background: var(--quartenary-color);
  overflow: hidden;
}
section.hero .hero-wrapper {
  min-height: 60vh;
}
@media (max-width: 768px) {
  section.hero .hero-wrapper {
    min-height: unset;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
  }
}
section.hero .hero-wrapper .hero-image-wrapper {
  position: relative;
}
section.hero .hero-wrapper .hero-image-wrapper img {
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  position: relative;
  z-index: 2;
}
section.hero .hero-wrapper .hero-image-wrapper::before, section.hero .hero-wrapper .hero-image-wrapper::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  z-index: 1;
}
section.hero .hero-wrapper .hero-image-wrapper::before {
  top: 20%;
  left: 20%;
  width: 110%;
  height: 110%;
  background: var(--primary-color);
  opacity: 0.15;
}
@media (max-width: 768px) {
  section.hero .hero-wrapper .hero-image-wrapper::before {
    opacity: 0.3;
  }
}
section.hero .hero-wrapper .hero-image-wrapper::after {
  bottom: -5%;
  right: -5%;
  width: 120%;
  height: 120%;
  background: var(--secondary-color);
  opacity: 0.15;
}
@media (max-width: 768px) {
  section.hero .hero-wrapper .hero-image-outer-wrapper {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: -1;
  }
  section.hero .hero-wrapper .hero-image-outer-wrapper .hero-image-wrapper {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
  }
  section.hero .hero-wrapper .hero-image-outer-wrapper .hero-image-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    border-radius: 0;
    opacity: 0.2;
    z-index: -1;
  }
}
section.hero h2 {
  margin: 0;
}
section.hero h4 {
  margin-bottom: 2rem;
}
@media (max-width: 768px) {
  section.hero h4 {
    margin-bottom: 1rem;
  }
}
section.usps {
  background: var(--quartenary-color);
  padding: 2rem 0;
}
section.usps .usp {
  border-radius: 50%;
}
section.usps .usp .icon i {
  font-size: 3rem;
  color: var(--primary-color);
}
section.usps .usp h5 {
  margin-top: 1rem;
}
section.discover-products {
  background: var(--background-light);
}
section.discover-products .product-paragraph {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}
section.discover-products .room-item {
  height: 300px;
}
section.discover-products .room-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
section.discover-products .room-item img.post-image {
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition: 0.3s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
section.discover-products .room-item:hover img.post-image {
  opacity: 0.5;
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}
section.discover-products .product-description {
  opacity: 0;
  bottom: -125px;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
section.discover-products .product-description .button:hover, section.discover-products .product-description .button:focus {
  color: #FFF !important;
}
section.discover-products .room-item:hover .product-description {
  opacity: 1;
  bottom: 20px;
}
@media only screen and (min-width: 770px) and (max-width: 1400px) {
  section.discover-products .product-description {
    bottom: -180px;
  }
}
section.discover-products.discover-categories .room-item {
  background: var(--dark-color);
}
section.discover-products.discover-categories .room-item img.post-image {
  -webkit-transform: scale(1);
  transform: scale(1);
  opacity: 0.5;
  -webkit-transition: 0.3s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
section.discover-products.discover-categories .room-item:hover img.post-image {
  -webkit-transform: none;
          transform: none;
}
section.discover-products.discover-categories .product-description {
  bottom: unset;
  opacity: 1;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
section.discover-products.discover-categories .room-item:hover .product-description {
  opacity: 1;
  bottom: unset;
}
@media only screen and (min-width: 770px) and (max-width: 1400px) {
  section.discover-products.discover-categories .product-description {
    bottom: unset;
  }
}
section.about-us img {
  max-height: 400px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 768px) {
  section.about-us img {
    max-height: 300px;
  }
}
section.commercial .video-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 9/16 = 0.5625 → 56.25% */
}
section.commercial .video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 1rem;
}

main.contact-page i {
  color: var(--tertiary-color);
}
main.contact-page .map-wrapper {
  position: relative;
  width: 100%;
}
main.contact-page .map-wrapper iframe {
  width: 100%;
  border-radius: 1rem;
}

form.cart {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1rem;
}
form.cart .quantity {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
form.cart .quantity button {
  background: var(--background-light);
  border: 1px solid #e3e3e3;
  width: 40px;
  height: 40px;
  line-height: 28px;
  text-align: center;
  padding: 0;
  cursor: pointer;
}
form.cart .quantity button.minus {
  border-radius: 5px 0 0 5px;
}
form.cart .quantity button.plus {
  border-radius: 0 5px 5px 0;
}
form.cart .quantity input.qty {
  width: 50px;
  height: 40px;
  border: 1px solid #e3e3e3;
  text-align: center;
}
form.cart .add-to-cart-button {
  height: 40px;
  width: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 5px;
}
form.cart .add-to-cart-button i {
  font-size: 20px;
}

.products a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.products .product {
  list-style: none;
  max-width: 400px;
  border: 1px solid #e6e6e6;
  padding-bottom: 1rem;
  border-radius: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
}
.products .product .product-details {
  margin: 0 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
.products .product .product-details > a {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
.products .product .product-image {
  width: 100%;
  aspect-ratio: 3/2;
  border-radius: 1rem 1rem 0 0;
  overflow: hidden;
}
.products .product .product-image img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.products .product .product-title {
  margin: 1rem 0 0 0;
}
.products .product .product-title h2 {
  margin: 0;
}
.products .product .product-price {
  margin-bottom: 0.5rem;
}
.products .product:hover .product-image img, .products .product:focus .product-image img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.products .product .add_to_cart_button {
  margin-top: auto;
}
.products .product .add_to_cart_button.product_type_variable {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 5px 10px !important;
}

.variations .value select {
  border: 1px solid #e3e3e3;
  padding: 10px 15px;
  border-radius: 5px;
}
.variations .value .reset_variations {
  border: 1px solid #bb2d3b;
  margin-left: 5px;
  color: #bb2d3b;
  padding: 10px 15px;
  border-radius: 5px;
}

.woocommerce-variation-add-to-cart {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
}

.shop-sidebar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
}
.shop-sidebar h2 {
  border-bottom: 1px solid #e3e3e3;
}
.shop-sidebar h3 {
  font-size: 1.25rem;
}
.shop-sidebar .wc-block-product-filter-price-slider input {
  border: 1px solid #e3e3e3 !important;
}
.shop-sidebar .wp-block-woocommerce-product-filter-status {
  display: none;
}
.shop-sidebar .categories-wrapper, .shop-sidebar .wp-block-woocommerce-product-filter-price {
  background: var(--background-light);
  padding: 1rem;
  border-radius: 10px;
  border: 1px solid var(--tertiary-color);
}
.shop-sidebar .product-categories {
  list-style: none;
  margin: 0;
  padding: 0;
}
.shop-sidebar .product-categories li {
  padding: 0.5rem 0;
}
.shop-sidebar .product-categories li a {
  color: var(--dark-color);
  text-decoration: none;
  -webkit-transition: color 0.2s ease;
  transition: color 0.2s ease;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.shop-sidebar .product-categories li a::before {
  content: "\f0c8";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  margin-right: 0.5rem;
  margin-top: -2px;
  font-size: 0.6rem;
  color: #e3e3e3;
}
.shop-sidebar .product-categories li a:hover {
  color: var(--primary-color);
}
.shop-sidebar .product-categories li a:hover::before {
  color: var(--primary-color);
}
.shop-sidebar .product-categories li.active a {
  color: var(--primary-color);
  font-weight: 600;
}
.shop-sidebar .product-categories li.active a::before {
  color: var(--primary-color);
}

section.archive-shop .result-options {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}
section.archive-shop .result-options .woocommerce-notices-wrapper {
  width: 100%;
}
section.archive-shop .result-options .woocommerce-notices-wrapper .woocommerce-message {
  margin: 0;
}
section.archive-shop .result-options .woocommerce-result-count {
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 576px) {
  section.archive-shop .result-options .woocommerce-result-count {
    display: none;
  }
}
section.archive-shop .result-options .woocommerce-ordering {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
section.archive-shop .result-options .woocommerce-ordering select {
  border: 1px solid #e6e6e6;
  border-radius: 5px;
  padding: 10px 5px;
}
@media (max-width: 576px) {
  section.archive-shop .result-options .woocommerce-ordering select {
    width: 100%;
  }
}
section.archive-shop .products {
  display: -ms-grid;
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  padding: 0;
}
@media (max-width: 992px) {
  section.archive-shop .products {
    -ms-grid-columns: 2fr;
    grid-template-columns: 2fr;
  }
}
@media (max-width: 576px) {
  section.archive-shop .products {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}

section.single-product .woocommerce-product-gallery {
  position: relative;
}
section.single-product .woocommerce-product-gallery .woocommerce-product-gallery__trigger {
  position: absolute;
  width: 30px;
  height: 30px;
  background: var(--primary-color);
  border-radius: 5px;
  top: 10px;
  right: 10px;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: background 0.3s ease;
  transition: background 0.3s ease;
}
section.single-product .woocommerce-product-gallery .woocommerce-product-gallery__trigger span {
  display: none;
}
section.single-product .woocommerce-product-gallery .woocommerce-product-gallery__trigger:after {
  content: "\f065"; /* fa-search unicode */
  font-family: "Font Awesome 5 Free";
  font-weight: 900; /* solid style */
  position: absolute;
  left: 8px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  font-size: 16px;
  color: #333;
}
section.single-product .woocommerce-product-gallery .woocommerce-product-gallery__trigger:hover, section.single-product .woocommerce-product-gallery .woocommerce-product-gallery__trigger:focus {
  background: var(--tertiary-color);
}
section.single-product .woocommerce-product-gallery .woocommerce-product-gallery__wrapper .woocommerce-product-gallery__image {
  border-radius: 1rem;
  overflow: hidden;
}
section.single-product .woocommerce-product-gallery .woocommerce-product-gallery__wrapper .woocommerce-product-gallery__image img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  max-height: 600px;
}
section.single-product .woocommerce-product-gallery .flex-control-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow-x: auto;
  gap: 8px;
  -ms-scroll-snap-type: x mandatory;
      scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 0;
  margin-top: 20px;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  scroll-behavior: smooth;
}
section.single-product .woocommerce-product-gallery .flex-control-nav li {
  list-style: none;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100px;
          flex: 0 0 100px;
  scroll-snap-align: start;
  max-width: 100px;
}
section.single-product .woocommerce-product-gallery .flex-control-nav li img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0.6;
  border-radius: 10px;
}
section.single-product .woocommerce-product-gallery .flex-control-nav li img.flex-active {
  opacity: 1;
  border: 2px solid #e3e3e3;
}
section.single-product .summary .price span {
  font-size: 22px;
}
section.single-product .summary form.cart {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
section.single-product .summary form.cart .single_add_to_cart_button {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.woocommerce-tabs {
  width: 100%;
}
.woocommerce-tabs ul.wc-tabs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-bottom: 1px solid #e3e3e3;
  padding-left: 0;
  list-style: none;
  margin-bottom: 1.5rem;
}
.woocommerce-tabs ul.wc-tabs li {
  margin-right: 2rem;
  position: relative;
}
.woocommerce-tabs ul.wc-tabs li a {
  display: inline-block;
  padding: 0.5rem 0;
  font-weight: 600;
  font-size: 1.1rem;
  text-decoration: none;
  border-bottom: 3px solid transparent;
  -webkit-transition: color 0.3s ease, border-color 0.3s ease;
  transition: color 0.3s ease, border-color 0.3s ease;
}
.woocommerce-tabs ul.wc-tabs li a:hover, .woocommerce-tabs ul.wc-tabs li a:focus {
  outline: none;
  border-color: var(--primary-color);
}
.woocommerce-tabs ul.wc-tabs li.active a {
  border-color: var(--primary-color);
  cursor: default;
}
.woocommerce-tabs .woocommerce-Tabs-panel {
  background: #fafafa;
  padding: 1.5rem 2rem;
  border-radius: 0 6px 6px 6px;
  -webkit-box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
          box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}
.woocommerce-tabs .woocommerce-product-attributes-item__value p {
  margin: 0;
}

.related {
  border-top: 1px solid #e3e3e3;
  margin-top: 2rem;
}
.related h2:first-of-type {
  margin: 2rem 0;
}
.related .products {
  display: -ms-grid;
  display: grid;
  gap: 2rem; /* adjust spacing between items */
  -ms-grid-columns: 1fr 2rem 1fr 2rem 1fr 2rem 1fr;
  grid-template-columns: repeat(4, 1fr);
  padding: 0;
}
@media (max-width: 1200px) {
  .related .products {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .related .products {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}

.wp-block-woocommerce-cart .wc-block-cart-item__image {
  padding-left: 0;
}
.wp-block-woocommerce-cart .wc-block-cart-item__image img {
  border-radius: 5px;
}