@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
body {
  font-family: "Poppins", sans-serif;
}

h1 {
  font-weight: 700;
}

.text-primary {
  color: #bb9a5e !important;
}

a {
  color: #bb9a5e;
}

.hero {
  background-repeat: no-repeat;
  background-size: cover;
}
.hero.subpage {
  height: auto;
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.1) 100%), var(--hero-bg-image);
}
.hero.subpage .hero-content {
  padding-top: 70px;
  padding-bottom: 70px;
}
.hero .hero-content {
  color: white;
}
.hero .hero-content .subtitle {
  font-size: 18px;
}
.hero header {
  padding-bottom: 0;
}
.hero header a {
  color: white;
}

section:not(.woocommerce section) {
  padding-top: 3rem;
  padding-bottom: 3rem;
}
@media (min-width: 768px) {
  section:not(.woocommerce section) {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
}
section:not(.woocommerce section).bg-light {
  background: #f8f8f8;
}
section:not(.woocommerce section) .title h2 {
  font-size: 28px;
}
section:not(.woocommerce section) .title .lead {
  color: #5b5b5b;
}
section:not(.woocommerce section).parallax-image {
  min-height: 400px;
  /* Full height */
  height: 100%;
  /* Create the parallax scrolling effect */
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  filter: brightness(90%);
}

.image-box {
  position: relative;
  display: inline-block;
  text-align: center;
  color: white;
  overflow: hidden;
}
.image-box:hover img {
  transform: scale(1.1);
}
.image-box .image-wrapper {
  overflow: hidden;
  border-radius: 5px;
}
.image-box .image-wrapper img {
  display: block;
  width: 100%;
  filter: brightness(80%);
  transition: transform 0.3s ease-in-out;
}
.image-box .content {
  position: absolute;
  bottom: 10%;
  left: 5%;
  white-space: nowrap;
  text-align: start;
}
.image-box .content .title {
  font-weight: bold;
  font-size: 18px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.features-block .icon {
  color: #bb9a5e;
  font-size: 42px;
}
.features-block .title {
  color: #bb9a5e;
  font-size: 20px;
  font-weight: 400;
}
.features-block p {
  color: #5b5b5b;
}

.category-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.category-pills a {
  color: black;
  border: 1px solid #e1e1e1;
  text-decoration: none;
  padding: 5px 10px;
  border-radius: 25px;
  font-size: 15px;
  transition: background-color 0.25s, border-color 0.25s;
}
.category-pills a.active {
  background: #bb9a5e;
  border-color: #bb9a5e;
  color: white;
  font-weight: bold;
}
.category-pills a:not(.active):hover {
  border-color: #bb9a5e;
}

.blog-pagination {
  margin-top: 3rem;
}
.blog-pagination .navigation {
  display: flex;
  justify-content: center !important;
}
.blog-pagination .navigation .nav-links {
  display: flex;
  gap: 10px;
}
.blog-pagination .navigation .nav-links .page-numbers {
  border: 1px solid #bb9a5e;
  padding: 5px 15px;
  border-radius: 20px;
  text-decoration: none;
  transition: box-shadow 0.25s;
}
.blog-pagination .navigation .nav-links .page-numbers:hover {
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

header {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
header a {
  text-decoration: none;
  color: black;
  font-weight: 600;
}
header a .cart-icon {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
header a .cart-icon .cart-count {
  background: #bb9a5e;
  color: white;
  padding: 4px 10px;
  border-radius: 10px;
  font-size: 11px;
  font-weight: 600;
}
header .logo {
  width: 100px;
  height: auto;
}
@media (min-width: 992px) {
  header .logo {
    width: 120px;
  }
}
header .menu-burger {
  color: white;
  display: flex;
  gap: 0.5rem;
  background: #bb9a5e;
  padding: 0.5rem;
  border-radius: 5px;
}
header #menuOffcanvas {
  width: 80vw;
}
header #menuOffcanvas .menu {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}
header #menuOffcanvas .menu a {
  color: #bb9a5e;
  font-size: 18px;
}

footer {
  background-color: #37393A;
  padding-top: 3rem;
  padding-bottom: 3rem;
}
footer .footer-logo {
  width: 100px;
  height: auto;
  margin-top: -6rem;
}
footer .column-content {
  color: white;
}
footer .column-title {
  font-size: 20px;
  font-weight: bold;
  color: white;
  margin-bottom: 0.5rem;
}
footer .menu-items {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
footer .menu-items a {
  color: white;
  text-decoration: none;
}
footer .menu-items a:hover {
  opacity: 0.9;
}
footer .social-icons {
  display: flex;
  gap: 0.5rem;
}
footer .social-icons img {
  width: 35px;
  height: auto;
  filter: brightness(0) invert(1);
}
footer .social-icons img:hover {
  opacity: 0.9;
}

.locations-map {
  height: 450px;
}
@media (min-width: 768px) {
  .locations-map {
    height: 600px;
  }
}

.splide__arrow {
  background: #bb9a5e !important;
}
.splide__arrow svg {
  filter: invert(94%) sepia(12%) saturate(3%) hue-rotate(262deg) brightness(118%) contrast(100%);
}

.border-radius-5 {
  border-radius: 5px;
}

.woocommerce-pagination .page-numbers {
  display: flex;
  justify-content: center;
  list-style-type: none;
  gap: 1rem;
}
.woocommerce-pagination .page-numbers .page-numbers {
  border: 1px solid #bb9a5e;
  padding: 5px 15px;
  border-radius: 20px;
  text-decoration: none;
  transition: box-shadow 0.25s;
}
.woocommerce-pagination .page-numbers .page-numbers:hover {
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.woocommerce-ordering {
  max-width: 300px;
}

.add-to-cart-input {
  border: none;
}

.yith-wcan-filters {
  margin-top: 30px;
  background: none !important;
}
.yith-wcan-filters .filter-title {
  font-weight: bold;
  font-size: 18px;
  color: black !important;
}

.wc-block-components-button {
  border-radius: 20px;
  padding: 0.5rem 1rem;
  font-weight: 500;
  display: flex;
  gap: 10px;
  text-decoration: none;
  background: #bb9a5e;
  border-color: #bb9a5e;
  color: white;
}
.wc-block-components-button:hover {
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}
.wc-block-components-button .wc-block-components-button__text {
  opacity: 1 !important;
}

.wc-block-checkout__guest-checkout-notice {
  display: none;
}

.woocommerce-order .woocommerce-thankyou-order-received {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 2rem;
  color: #bb9a5e;
}
.woocommerce-order .woocommerce-thankyou-order-details {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-left: 0;
  padding-left: 0;
}
.woocommerce-order .woocommerce-thankyou-order-details::before {
  content: none !important;
}
.woocommerce-order .woocommerce-bacs-bank-details .wc-bacs-bank-details-heading {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 1rem;
  color: #bb9a5e;
}
.woocommerce-order .woocommerce-bacs-bank-details .wc-bacs-bank-details-account-name {
  font-size: 16px;
}
.woocommerce-order .woocommerce-bacs-bank-details .wc-bacs-bank-details {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  padding-left: 0;
}
.woocommerce-order .woocommerce-bacs-bank-details .wc-bacs-bank-details::before {
  content: none !important;
}
.woocommerce-order .woocommerce-order-details .woocommerce-order-details__title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 1rem;
  color: #bb9a5e;
}
.woocommerce-order .woocommerce-customer-details .woocommerce-column__title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 1rem;
  color: #bb9a5e;
}

.wc-block-cart__empty-cart__title.with-empty-cart-icon:before {
  background: #bb9a5e !important;
}

/* replace .wc-block-components-button with the exact selector for that button */
.wc-block-components-button {
  border: 0;
}

.page-homepage .hero.homepage {
  min-height: 500px;
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.1) 100%), var(--hero-bg-image);
}
.page-homepage .hero.homepage .hero-content {
  padding-top: 100px;
}

.page-blog.single-article .featured-img {
  width: 100%;
  height: 250px;
  border-radius: 5px;
  object-fit: cover;
}
@media (min-width: 768px) {
  .page-blog.single-article .featured-img {
    height: 450px;
  }
}

.page-shop .sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.page-shop .sidebar h5 {
  font-size: 18px;
  color: black;
}
.page-shop .sidebar .shop-categories {
  display: flex;
  flex-direction: column;
}
.page-shop .sidebar .shop-categories .list {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.page-shop .sidebar .shop-categories .list a {
  font-size: 15px;
  text-decoration: none;
  color: initial;
}
.page-shop .sidebar .shop-categories .list a.active {
  color: #bb9a5e;
  font-weight: bold;
}
.page-shop .sidebar .shop-categories .list a:hover {
  opacity: 0.75;
}
.page-shop .shop-intro {
  background: white;
  padding: 2rem;
  border-radius: 5px;
  margin-bottom: 1rem;
}
.page-shop.single-product .product-gallery .splide__slide {
  border-radius: 5px;
}
.page-shop.single-product .product-gallery .splide__slide.is-active {
  border-color: #bb9a5e;
  border-width: 2px;
}
.page-shop.single-product .product-gallery .splide__slide:not(.is-active) {
  border: 2px solid transparent;
}
.page-shop.single-product .product-overview {
  background: #f5f5f5;
  padding: 2rem;
  border-radius: 5px;
  font-size: 15px;
}
.page-shop.single-product .product-overview .product_title {
  font-size: 24px;
}
.page-shop.single-product .product-overview .price {
  font-weight: 600;
  color: #bb9a5e;
}
.page-shop.single-product .product-overview .price-kg {
  font-size: 14px;
  color: #8d8d8d;
}
.page-shop.single-product .product-attributes {
  background-color: white;
  padding: 1.5rem;
  border-radius: 5px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.page-shop.single-product .product-attributes .attribute {
  flex: 0 0 100%;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-top: 5px;
}
@media (min-width: 768px) {
  .page-shop.single-product .product-attributes .attribute {
    flex: 0 0 calc(50% - 5px);
  }
}
.page-shop.single-product .product-attributes .attribute .label {
  color: #bb9a5e;
  font-weight: 500;
}
.page-shop.single-product .product-attributes .attribute .value {
  font-size: 15px;
}
.page-shop.single-product .product-long-description h3 {
  color: #bb9a5e;
  font-size: 16px;
  font-weight: bold;
}

.page-contact .contact-details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.page-contact .contact-details .section-title {
  display: flex;
  gap: 0.5rem;
  font-size: 18px;
  margin-bottom: 0.5rem;
}
.page-contact .contact-details .contact-info {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.page-contact .contact-form {
  background: white;
  padding: 2rem;
  border-radius: 5px;
}

.blog-card {
  border: 1px solid #e1e1e1;
  border-radius: 5px;
  position: relative;
}
.blog-card a {
  text-decoration: none;
  color: initial;
}
.blog-card .date {
  position: absolute;
  top: 0;
  left: 10px;
  background: #bb9a5e;
  color: white;
  text-align: center;
  padding: 0.5rem;
  display: flex;
  align-items: center;
  gap: 5px;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}
.blog-card .date .day {
  font-size: 22px;
  font-weight: bold;
}
.blog-card .date .month-year {
  font-size: 14px;
}
.blog-card .thumbnail {
  overflow: hidden;
  height: 240px;
  width: 100%;
  margin-bottom: 0.5rem;
}
.blog-card .thumbnail img {
  height: 100%;
  width: 100%;
  overflow: hidden;
  object-fit: cover;
  transition: transform 0.3s ease-in-out;
}
.blog-card .content {
  padding: 0.75rem;
}
.blog-card .content .title {
  color: #bb9a5e;
  font-weight: 600;
  font-size: 20px;
}
.blog-card:hover .thumbnail img {
  transform: scale(1.1);
}

.product-card {
  background: white;
  border-radius: 5px;
}
.product-card a {
  text-decoration: none;
  color: initial;
}
.product-card .thumbnail {
  position: relative;
  overflow: hidden;
  height: 200px;
  width: 100%;
  margin-bottom: 0.5rem;
}
.product-card .thumbnail img {
  height: 100%;
  width: 100%;
  overflow: hidden;
  object-fit: cover;
  transition: transform 0.3s ease-in-out;
}
.product-card .thumbnail .product-badge {
  position: absolute;
  top: 0px;
  right: 10px;
  font-size: 12px;
  font-weight: bold;
  padding: 3px 10px;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
  display: flex;
  gap: 5px;
  align-items: center;
}
.product-card .thumbnail .product-badge.red {
  background: #C33149;
  color: white;
}
.product-card .thumbnail .product-badge.green {
  background: #4F772D;
  color: white;
}
.product-card .thumbnail .product-badge .icon {
  font-size: 20px;
}
.product-card .content {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 0.75rem;
}
.product-card .content .title {
  font-size: 18px;
  color: #bb9a5e;
  font-weight: 600;
}
.product-card .content .price {
  font-weight: 600;
  color: black;
}
.product-card .content .price-kg {
  font-size: 14px;
  color: #8d8d8d;
}
.product-card:hover .thumbnail img {
  transform: scale(1.1);
}

.location-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: white;
  padding: 1rem;
  border-radius: 5px;
}
.location-card .name {
  font-size: 18px;
  font-weight: bold;
}
.location-card .information p {
  margin-bottom: 0;
}

.team-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.team-card img {
  border-radius: 50%;
  width: 50%;
}
@media (min-width: 992px) {
  .team-card img {
    width: 75%;
  }
}
.team-card .details {
  text-align: center;
}
.team-card .details .name {
  font-weight: bold;
  font-size: 18px;
}

.btn {
  border-radius: 20px;
  padding: 0.5rem 1rem;
  font-weight: 500;
  display: flex;
  gap: 10px;
}
.btn.btn-primary {
  background: #bb9a5e;
  border-color: #bb9a5e;
}
.btn.btn-primary:active, .btn.btn-primary:hover, .btn.btn-primary:focus {
  background: #bb9a5e;
  border-color: #bb9a5e;
}
.btn.btn-outline-primary {
  background: transparent;
  border-color: #bb9a5e;
  color: #bb9a5e !important;
}
.btn.btn-outline-primary:active, .btn.btn-outline-primary:hover, .btn.btn-outline-primary:focus {
  background: transparent;
  border-color: #bb9a5e;
}
.btn.btn-secondary {
  background: white;
  border-color: white;
  color: black !important;
}
.btn.btn-secondary:active, .btn.btn-secondary:hover, .btn.btn-secondary:focus {
  background: white;
  border-color: white;
}
.btn:hover {
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.offcanvas {
  width: 70vw !important;
}

/*# sourceMappingURL=style.css.map */
