@charset "UTF-8";
.site-header {
  display: flex;
  flex-direction: column;
  width: 100%;
  background-color: white;
}
.site-header .menu-bar {
  background-color: #faf8f8;
  width: 100%;
  padding: 0.4em 6vw 0.4em 6vw;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  margin: 0 auto;
}
.site-header .menu-bar .menu-bar-inner {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  gap: 1em;
  max-width: 1920px;
  width: 100%;
  margin: 0 auto;
  padding: 0em 6vw 0em 6vw;
}
.site-header .menu-bar .wcml-dropdown.product.wcml_currency_switcher {
  position: relative;
}
.site-header .menu-bar .wcml-dropdown.product.wcml_currency_switcher ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.site-header .menu-bar .wcml-dropdown.product.wcml_currency_switcher ul li.wcml-cs-active-currency {
  position: relative;
}
.site-header .menu-bar .wcml-dropdown.product.wcml_currency_switcher ul li.wcml-cs-active-currency a.wcml-cs-item-toggle {
  display: flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  padding: 5px 8px;
  transition: all 0.3s ease;
  font-size: 0.9em;
  color: #666666;
  text-decoration: none;
  text-transform: uppercase;
}
.site-header .menu-bar .wcml-dropdown.product.wcml_currency_switcher ul li.wcml-cs-active-currency a.wcml-cs-item-toggle:after {
  content: "";
  display: inline-block;
  width: 10px;
  height: 6px;
  background-image: url("../../images/arrow-lang.svg");
  background-size: contain;
  background-repeat: no-repeat;
  transition: transform 0.3s ease;
  margin-left: 5px;
}
.site-header .menu-bar .wcml-dropdown.product.wcml_currency_switcher ul li.wcml-cs-active-currency:hover a.wcml-cs-item-toggle:after {
  transform: rotate(180deg);
}
.site-header .menu-bar .wcml-dropdown.product.wcml_currency_switcher ul li.wcml-cs-active-currency:hover .wcml-cs-submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.site-header .menu-bar .wcml-dropdown.product.wcml_currency_switcher ul li.wcml-cs-active-currency .wcml-cs-submenu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 60px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 4px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  margin-top: 2px;
  z-index: 99999999;
  padding: 0;
}
.site-header .menu-bar .wcml-dropdown.product.wcml_currency_switcher ul li.wcml-cs-active-currency .wcml-cs-submenu li {
  list-style: none;
}
.site-header .menu-bar .wcml-dropdown.product.wcml_currency_switcher ul li.wcml-cs-active-currency .wcml-cs-submenu li a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  text-decoration: none;
  color: #666666;
  font-size: 0.8em;
  transition: background 0.2s ease;
  text-transform: uppercase;
}
.site-header .menu-bar .wcml-dropdown.product.wcml_currency_switcher ul li.wcml-cs-active-currency .wcml-cs-submenu li a:hover {
  background: #f5f5f5;
  color: #333;
}
.site-header .menu-bar .currency-switcher {
  position: relative;
}
.site-header .menu-bar .currency-switcher .currency-dropdown {
  position: relative;
}
.site-header .menu-bar .currency-switcher .currency-dropdown .current-currency {
  display: flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  padding: 5px 8px;
  transition: all 0.3s ease;
  font-size: 0.9em;
}
.site-header .menu-bar .currency-switcher .currency-dropdown .current-currency .currency-code {
  font-size: 0.9em;
  color: #666666;
  text-transform: uppercase;
}
.site-header .menu-bar .currency-switcher .currency-dropdown .current-currency .dropdown-arrow {
  font-size: 10px;
  color: #666666;
  transition: transform 0.3s ease;
}
.site-header .menu-bar .currency-switcher .currency-dropdown:hover .dropdown-arrow {
  transform: rotate(180deg);
}
.site-header .menu-bar .currency-switcher .currency-dropdown:hover .currency-list {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.site-header .menu-bar .currency-switcher .currency-dropdown .currency-list {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 60px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 4px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  margin-top: 2px;
  z-index: 99999999;
}
.site-header .menu-bar .currency-switcher .currency-dropdown .currency-list .currency-option {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  text-decoration: none;
  color: #666666;
  font-size: 0.8em;
  transition: background 0.2s ease;
}
.site-header .menu-bar .currency-switcher .currency-dropdown .currency-list .currency-option:hover {
  background: #f5f5f5;
  color: #333;
}
.site-header .menu-bar .currency-switcher .currency-dropdown .currency-list .currency-option.active {
  font-weight: bold;
  background: #f0f0f0;
}
.site-header .menu-bar .currency-switcher .currency-dropdown .currency-list .currency-option .currency-code {
  font-size: 0.9em;
  text-transform: uppercase;
}
.site-header .menu-bar .language-switcher {
  position: relative;
}
.site-header .menu-bar .language-switcher .language-dropdown {
  position: relative;
}
.site-header .menu-bar .language-switcher .language-dropdown .current-language {
  display: flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  padding: 5px 8px;
  transition: all 0.3s ease;
  font-size: 0.9em;
}
.site-header .menu-bar .language-switcher .language-dropdown .current-language .lang-code {
  font-size: 0.9em;
  color: #666666;
  text-transform: uppercase;
}
.site-header .menu-bar .language-switcher .language-dropdown .current-language .dropdown-arrow {
  font-size: 10px;
  color: #666666;
  transition: transform 0.3s ease;
}
.site-header .menu-bar .language-switcher .language-dropdown:hover .dropdown-arrow {
  transform: rotate(180deg);
}
.site-header .menu-bar .language-switcher .language-dropdown:hover .language-list {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.site-header .menu-bar .language-switcher .language-dropdown .language-list {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 60px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 4px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  margin-top: 2px;
  z-index: 99999999;
}
.site-header .menu-bar .language-switcher .language-dropdown .language-list .language-option {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  text-decoration: none;
  color: #666666;
  font-size: 0.8em;
  transition: background 0.2s ease;
}
.site-header .menu-bar .language-switcher .language-dropdown .language-list .language-option:hover {
  background: #f5f5f5;
  color: #333;
}
.site-header .menu-bar .language-switcher .language-dropdown .language-list .language-option .lang-code {
  font-size: 0.9em;
  text-transform: uppercase;
}
.site-header .menu-bar p,
.site-header .menu-bar a {
  font-size: 0.8em;
  color: #666666;
  text-decoration: none;
  transition: color 0.3s ease;
}
.site-header .menu-bar p:hover,
.site-header .menu-bar a:hover {
  color: #333;
}
.site-header .menu-up {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  background-color: white;
  width: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 999;
}
.site-header .menu-up .menu-up-inner {
  display: flex;
  flex-direction: row;
  align-items: center;
  background-color: white;
  justify-content: space-between;
  max-width: 1920px;
  width: 100%;
  margin: 0 auto;
  padding: 0.5em 6vw 0.5em 6vw;
  position: relative;
}
.site-header .menu-up.sticky-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background-color: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}
.site-header .menu-up .header-search .dgwt-wcas-search-wrapp {
  max-width: 600px;
  min-width: 380px;
}
@media (min-width: 1400px) {
  .site-header .menu-up .header-search .dgwt-wcas-search-wrapp {
    min-width: 430px;
  }
}
.site-header .menu-up .header-search .dgwt-wcas-style-pirx .dgwt-wcas-sf-wrapp input[type=search].dgwt-wcas-search-input {
  padding: 13px 20px 13px 20px;
  line-height: 24px;
  font-size: 1em;
  border: 1px solid #bebebe;
  border-radius: 30px;
  height: auto;
  font-family: "Poppins", sans-serif;
  background-color: white;
}
.site-header .menu-up .header-search .dgwt-wcas-style-pirx .dgwt-wcas-sf-wrapp button.dgwt-wcas-search-submit {
  left: auto;
  right: -53px;
  top: 10px;
  border-radius: 50%;
  background-color: rgb(167, 143, 131);
  padding: 0.5em;
  height: 50px;
  width: 50px;
}
.site-header .menu-up .header-actions {
  display: flex;
  flex-direction: row;
  gap: 1em;
  align-items: center;
}
.site-header .menu-up .header-actions .wishlist {
  position: relative;
}
.site-header .menu-up .header-actions .wishlist .wishlist-icon-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
}
.site-header .menu-up .header-actions .wishlist .wishlist-icon-wrapper .wishlist-count {
  position: absolute;
  top: -8px;
  right: -10px;
  background-color: #9c6a36;
  color: white;
  font-size: 11px;
  font-weight: bold;
  height: 16px;
  width: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
.site-header .menu-up .header-actions .compare {
  position: relative;
}
.site-header .menu-up .header-actions .compare .compare-icon-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
}
.site-header .menu-up .header-actions .compare .compare-icon-wrapper .compare-count {
  position: absolute;
  top: -8px;
  right: -12px;
  background-color: #9c6a36;
  color: white;
  font-size: 11px;
  font-weight: bold;
  height: 16px;
  width: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
.site-header .menu-up .header-actions .compare a,
.site-header .menu-up .header-actions .wishlist a {
  display: flex;
  flex-direction: column;
  gap: 0.2em;
  border: 1px solid rgb(219, 219, 219);
  border-radius: 50%;
  padding: 0.5em;
}
.site-header .menu-up .header-actions .compare a img,
.site-header .menu-up .header-actions .wishlist a img {
  height: 23px;
  width: auto;
}
.site-header .menu-up .header-actions .compare a span,
.site-header .menu-up .header-actions .wishlist a span {
  font-size: 0.8em;
}
.site-header .menu-up .header-actions .cart-link {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 1em;
  border-left: 1px solid rgb(204, 204, 204);
  padding-left: 1em;
}
.site-header .menu-up .header-actions .cart-link .cart-total-wrapper {
  display: flex;
  flex-direction: column;
  gap: 0em;
}
.site-header .menu-up .header-actions .cart-link .cart-total-wrapper .text-cart {
  color: rgb(56, 48, 34);
  font-size: 0.8em;
}
.site-header .menu-up .header-actions .cart-link .cart-total-wrapper .cart-total span {
  font-weight: 700;
  color: rgb(56, 48, 34);
  font-size: 0.9em !important;
}
.site-header hr {
  width: 100%;
}
.site-header .main-navigation {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  max-width: 1920px;
  width: 100%;
  margin: 0 auto;
  padding: 0em 6vw 1em 6vw;
}
.site-header .main-navigation .main-menu ul {
  display: flex;
  flex-direction: row;
  gap: 1.5em;
}
.site-header .main-navigation .main-menu ul li {
  list-style: none;
}
.site-header .main-navigation .main-menu ul li a {
  text-decoration: none;
  color: rgb(56, 48, 34);
}
.site-header .main-navigation .b2b-account {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1em;
}
.site-header .main-navigation .b2b-account img {
  height: 45px;
  width: auto;
}
.site-header .main-navigation .b2b-account .b2b-text {
  display: flex;
  flex-direction: column;
  gap: 0em;
}
.site-header .main-navigation .b2b-account .b2b-text span {
  font-size: 0.9em;
  font-weight: 700;
}
.site-header .main-navigation .b2b-account .b2b-text a {
  font-size: 0.9em;
  transition: all 0.3s ease;
}
.site-header .main-navigation .b2b-account .b2b-text a:hover {
  color: #9c6a36;
}
@media (max-width: 1300px) {
  .site-header .main-navigation {
    display: none;
  }
}

.breadcrumbs {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  margin: 0 auto;
  background-color: rgb(251, 251, 251);
}
.breadcrumbs .breadcrumbs-inner {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  padding: 1em 6vw 0em 6vw;
}
.breadcrumbs .aioseo-breadcrumbs .aioseo-breadcrumb a {
  color: rgb(56, 48, 34);
  text-decoration: none;
}
.breadcrumbs .aioseo-breadcrumbs .aioseo-breadcrumb:last-of-type {
  font-weight: 600 !important;
  color: #9c6a36;
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 27px;
  height: 18px;
  z-index: 10000;
  cursor: pointer;
}
.mobile-menu-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background-color: rgb(56, 48, 34);
  transition: all 0.3s ease;
}
.mobile-menu-toggle.active span:first-child {
  transform: none;
}
.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 1;
}
.mobile-menu-toggle.active span:last-child {
  transform: none;
}

.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.mobile-menu-header .mobile-logo img {
  max-height: 50px;
  width: auto;
}
.mobile-menu-header .mobile-menu-close {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background-color: rgba(0, 0, 0, 0.05);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  position: relative;
  transition: background-color 0.3s ease;
  padding: 0;
}
.mobile-menu-header .mobile-menu-close:hover {
  background-color: rgba(0, 0, 0, 0.1);
}
.mobile-menu-header .mobile-menu-close span {
  position: absolute;
  width: 20px;
  height: 2px;
  background-color: rgb(56, 48, 34);
  transition: all 0.3s ease;
}
.mobile-menu-header .mobile-menu-close span:first-child {
  transform: rotate(45deg);
}
.mobile-menu-header .mobile-menu-close span:last-child {
  transform: rotate(-45deg);
}

.mobile-menu-container {
  display: block;
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: white;
  z-index: 9998;
  overflow-y: auto;
  padding: 20px 6vw 30px;
  transform: translateX(100%);
  visibility: hidden;
  transition: transform 0.3s ease, visibility 0.3s ease;
}
.mobile-menu-container.active {
  transform: translateX(0);
  visibility: visible;
}
.mobile-menu-container .mobile-menu-inner {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.mobile-menu-container .mobile-search {
  margin-bottom: 10px;
}
.mobile-menu-container .mobile-search .dgwt-wcas-search-wrapp {
  max-width: 100%;
  min-width: auto !important;
  width: 100%;
}
.mobile-menu-container .mobile-search .dgwt-wcas-style-pirx .dgwt-wcas-sf-wrapp input[type=search].dgwt-wcas-search-input {
  padding: 9px 20px 9px 20px;
  line-height: 24px;
  font-size: 1em;
  border: 1px solid #bebebe;
  border-radius: 0px;
  height: auto;
  font-family: "Poppins", sans-serif;
  background-color: white;
  width: 100%;
}
.mobile-menu-container .mobile-search .dgwt-wcas-style-pirx .dgwt-wcas-sf-wrapp button.dgwt-wcas-search-submit {
  left: auto;
  right: 23px;
  top: 16px;
}
@media (min-width: 1400px) {
  .mobile-menu-container .mobile-search .dgwt-wcas-search-wrapp {
    min-width: 530px;
  }
}
.mobile-menu-container .mobile-navigation ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.mobile-menu-container .mobile-navigation ul li {
  padding: 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.mobile-menu-container .mobile-navigation ul li a {
  display: block;
  padding: 12px 0;
  color: rgb(56, 48, 34);
  text-decoration: none;
  font-size: 16px;
  font-family: "Poppins", sans-serif;
}
.mobile-menu-container .mobile-navigation ul li.menu-item-has-children > a {
  position: relative;
  padding-right: 40px;
}
.mobile-menu-container .mobile-navigation ul li.menu-item-has-children > a::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  background-image: url("../../images/arrow-down.svg");
  background-size: 12px;
  background-repeat: no-repeat;
  background-position: center;
  cursor: pointer;
  background-color: rgba(0, 0, 0, 0.03);
  border-radius: 4px;
}
.mobile-menu-container .mobile-navigation ul li.menu-item-has-children.active > a::after {
  transform: translateY(-50%) rotate(180deg);
}
.mobile-menu-container .mobile-navigation ul li .sub-menu {
  display: none;
  padding-left: 20px;
}
.mobile-menu-container .mobile-navigation ul li .sub-menu li {
  border-bottom: none;
}
.mobile-menu-container .mobile-navigation ul li .sub-menu li a {
  padding: 8px 0;
  font-size: 14px;
  color: rgb(56, 48, 34);
}
.mobile-menu-container .mobile-navigation ul li.active > .sub-menu {
  display: block;
}
.mobile-menu-container .mobile-navigation .mm-content-depth1 > a {
  padding-left: 20px;
}
.mobile-menu-container .mobile-navigation .mm-content-depth2 > a {
  padding-left: 35px;
}
.mobile-menu-container .mobile-navigation .mm-content-depth3 > a {
  padding-left: 50px;
}
.mobile-menu-container .mobile-actions {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 20px;
}
.mobile-menu-container .mobile-actions .wishlist {
  position: relative;
}
.mobile-menu-container .mobile-actions .wishlist .wishlist-icon-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
}
.mobile-menu-container .mobile-actions .wishlist .wishlist-icon-wrapper .wishlist-count {
  position: absolute;
  top: -8px;
  right: 8px;
  background-color: #9c6a36;
  color: white;
  font-size: 11px;
  font-weight: bold;
  height: 16px;
  width: 16px;
  padding-top: 2.1px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
.mobile-menu-container .mobile-actions > div a {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: rgb(56, 48, 34);
  font-family: "Poppins", sans-serif;
  padding: 12px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.mobile-menu-container .mobile-actions > div a img {
  height: 20px;
  width: auto;
  margin-right: 15px;
}
.mobile-menu-container .mobile-actions > div a span {
  font-size: 16px;
}
.mobile-menu-container .mobile-actions .cart a {
  background-color: #9c6a36;
  padding: 15px 20px;
  border-radius: 5px;
  color: #ffffff;
  border-bottom: none;
}
.mobile-menu-container .mobile-actions .cart a span {
  color: #ffffff;
  font-weight: 700;
}
.mobile-menu-container .mobile-meta {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.mobile-menu-container .mobile-meta .wcml-dropdown.product.wcml_currency_switcher {
  display: flex;
  justify-content: center;
  margin-bottom: 15px;
}
.mobile-menu-container .mobile-meta .wcml-dropdown.product.wcml_currency_switcher ul {
  width: 100%;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}
.mobile-menu-container .mobile-meta .wcml-dropdown.product.wcml_currency_switcher ul li.wcml-cs-active-currency {
  position: static;
}
.mobile-menu-container .mobile-meta .wcml-dropdown.product.wcml_currency_switcher ul li.wcml-cs-active-currency a.wcml-cs-item-toggle {
  display: none;
}
.mobile-menu-container .mobile-meta .wcml-dropdown.product.wcml_currency_switcher ul li.wcml-cs-active-currency .wcml-cs-submenu {
  position: static;
  display: flex;
  opacity: 1;
  visibility: visible;
  transform: none;
  background: transparent;
  border: none;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}
.mobile-menu-container .mobile-meta .wcml-dropdown.product.wcml_currency_switcher ul li.wcml-cs-active-currency .wcml-cs-submenu li a {
  padding: 10px 15px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 14px;
  font-weight: bold;
  text-decoration: none;
  color: rgb(56, 48, 34);
}
.mobile-menu-container .mobile-meta .wcml-dropdown.product.wcml_currency_switcher ul li.wcml-cs-active-currency .wcml-cs-submenu li a:hover {
  background-color: #9c6a36;
  color: #ffffff;
}
.mobile-menu-container .mobile-meta .mobile-currency-switcher {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 15px;
}
.mobile-menu-container .mobile-meta .mobile-currency-switcher .currency-option {
  padding: 10px 15px;
  border: 1px solid #ddd;
  border-radius: 5px;
  text-decoration: none;
  color: rgb(56, 48, 34);
  font-family: "Poppins", sans-serif;
}
.mobile-menu-container .mobile-meta .mobile-currency-switcher .currency-option:hover {
  background-color: #9c6a36;
  color: #ffffff;
}
.mobile-menu-container .mobile-meta .mobile-currency-switcher .currency-option.active {
  background-color: #9c6a36;
  color: #ffffff;
  font-weight: 700;
}
.mobile-menu-container .mobile-meta .mobile-currency-switcher .currency-option .currency-code {
  font-size: 14px;
  font-weight: 700;
}
.mobile-menu-container .mobile-meta .b2b-account {
  border: 1px solid #9c6a36;
  padding: 15px;
  text-align: center;
  border-radius: 5px;
}
.mobile-menu-container .mobile-meta .b2b-account a {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: rgb(56, 48, 34);
  font-family: "Poppins", sans-serif;
}
.mobile-menu-container .mobile-meta .b2b-account a img {
  height: 20px;
  width: auto;
  margin-right: 10px;
}
.mobile-menu-container .mobile-meta .b2b-account a span {
  font-weight: 700;
  font-size: 14px;
}
.mobile-menu-container .mobile-meta .language-switcher {
  display: flex;
  justify-content: center;
  gap: 20px;
}
.mobile-menu-container .mobile-meta .language-switcher .language-option {
  padding: 10px 15px;
  border: 1px solid #ddd;
  border-radius: 5px;
  text-decoration: none;
  color: rgb(56, 48, 34);
  font-family: "Poppins", sans-serif;
}
.mobile-menu-container .mobile-meta .language-switcher .language-option:hover {
  background-color: #9c6a36;
  color: #ffffff;
}
.mobile-menu-container .mobile-meta .language-switcher .language-option .lang-code {
  font-size: 14px;
  font-weight: 700;
}

.mobile-menu-overlay {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 9997;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

@media (max-width: 1300px) {
  .site-header .header-wrapper .menu-up .menu-up-inner {
    justify-content: space-between;
  }
  .site-header .header-wrapper .menu-up .header-container {
    order: 1;
  }
  .site-header .header-wrapper .menu-up .header-container img {
    height: 60px;
    width: auto;
  }
  .site-header .header-wrapper .menu-up .header-search {
    display: none;
  }
  .site-header .header-wrapper .menu-up .header-actions {
    display: none;
  }
  .site-header .header-wrapper .main-navigation {
    display: none;
  }
  .site-header .header-wrapper hr {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
    order: 2;
  }
  body.mobile-menu-open {
    overflow: hidden;
  }
}
@media (max-width: 724px) {
  .site-header .header-wrapper .menu-up .header-container img {
    height: 50px;
    width: auto;
  }
  .mobile-menu-container {
    padding: 20px 4vw 20px;
  }
  .mobile-menu-container .mobile-search .dgwt-wcas-search-wrapp {
    min-width: auto !important;
    width: 100%;
  }
}
@media (max-width: 524px) {
  .site-header .menu-bar {
    padding: 0.4em 4vw;
  }
  .site-header .header-wrapper .menu-up .menu-up-inner {
    padding: 0.5em 4vw;
  }
  .mobile-menu-container {
    padding: 20px 4vw 20px;
  }
}
.wcml-dropdown {
  width: 3.8em !important;
}

.wcml-dropdown li {
  list-style-type: none;
  padding: 0;
  margin: 0;
  border: none !important;
  background-color: transparent !important;
  display: block;
}

.wcml-dropdown a.wcml-cs-item-toggle:after {
  content: "";
  vertical-align: middle;
  display: inline-block;
  border: none !important;
  border-top: none !important;
}

.site-footer {
  display: flex;
  flex-direction: column;
  width: 100%;
  background-color: #383022;
}
.site-footer .site-footer-inner {
  display: flex;
  flex-direction: column;
  max-width: 1920px;
  width: 100%;
  margin: 0 auto;
  padding: 5em 0vw 3em 6vw;
  gap: 6em;
}
.site-footer .footer-down {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  padding-right: 6vw;
  gap: 1em;
}
.site-footer .footer-down p {
  color: #808080;
}
.site-footer .footer-down p a {
  color: #808080;
  text-decoration: underline;
}
.site-footer .footer-top {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 3em;
  padding-right: 6vw;
}
.site-footer .footer-top .footer-top-inner {
  display: flex;
  flex-direction: column;
  gap: 0.5em;
  max-width: 200px;
}
.site-footer .footer-top .footer-top-inner .footer-subtittle {
  color: white;
  text-transform: uppercase;
  font-weight: 500;
}
.site-footer .footer-top .footer-top-inner .contact-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.5em;
}
.site-footer .footer-top .footer-top-inner .contact-item a {
  color: #808080;
}
.site-footer .footer-top .footer-top-inner p {
  color: #808080;
}
.site-footer .footer-top .footer-top-inner a {
  color: rgba(255, 255, 255, 0.658);
}

.mega-menu-wrapper {
  position: absolute;
  top: 220px;
  left: 0;
  right: 0;
  width: 90%;
  margin-left: auto;
  margin-right: auto;
  background-color: #ffffff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  border-radius: 15px;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
  transform: translateY(10px);
  max-width: 1650px;
}
.mega-menu-wrapper.is-active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.main-navigation .menu-item-has-children:not(.mm-content) .menu-icon-dropdown {
  display: none !important;
}

.main-navigation .menu-item-has-children[data-depth="0"] > a .menu-icon-dropdown {
  margin-left: 8px;
}

.mega-menu-container {
  max-width: 1920px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: stretch;
}

.mega-menu-content {
  display: flex;
  flex: 1;
  position: relative;
  overflow: visible;
}

.mega-menu-header {
  margin-bottom: 16px;
  padding-bottom: 8px;
}
.mega-menu-header .mega-menu-title {
  font-size: 16px;
  font-weight: 500;
  color: rgb(56, 48, 34);
  margin: 0;
  font-family: "Poppins", sans-serif;
}
.mega-menu-header .mega-menu-title .brand-name {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 400;
  font-style: italic;
}

.mega-menu-primary {
  display: flex;
  flex-direction: column;
  background-color: #f3f3f3;
  border-radius: 15px;
  padding: 2em;
  min-width: 270px;
  flex-shrink: 0;
}
.mega-menu-primary .sub-menu {
  flex-direction: column !important;
  gap: 0.5em !important;
  list-style: none;
  padding: 0;
  margin: 0;
}
.mega-menu-primary .sub-menu.level-1 {
  display: flex;
  flex-direction: column;
  gap: 15px;
  width: 100%;
}
.mega-menu-primary .sub-menu.level-1 > li {
  margin-bottom: 0;
  list-style: none;
  list-style-type: none;
  width: 100%;
}
.mega-menu-primary .sub-menu.level-1 > li::marker {
  display: none;
  content: "";
}
.mega-menu-primary .sub-menu.level-1 > li:not(.mm-content-depth1) .menu-chevron-right {
  display: none !important;
}

.mega-menu-submenu-container {
  padding: 15px;
  display: none;
  align-items: flex-start;
  justify-content: flex-start;
  min-width: 200px;
  max-width: 400px;
  flex: 1 0 auto;
}
.mega-menu-submenu-container[data-depth="2"] {
  min-height: 140px;
}
.mega-menu-submenu-container[data-depth="3"] {
  min-height: 110px;
}
.mega-menu-submenu-container[data-depth="4"] {
  min-height: 80px;
}
.mega-menu-submenu-container[data-depth="5"] {
  min-height: 50px;
}
.mega-menu-submenu-container.fade-in {
  display: flex;
  animation: fadeIn 0.25s ease forwards;
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.mega-menu-submenu-container-content {
  max-height: 100%;
  overflow: hidden;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  height: 100%;
  width: 100%;
  background-color: transparent !important;
}
.mega-menu-submenu-container-content .submenu-items-list {
  list-style: none !important;
  list-style-type: none !important;
  flex-direction: column !important;
  padding: 0 !important;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5em !important;
  width: 100%;
}
.mega-menu-submenu-container-content .submenu-items-list li {
  margin-bottom: 0;
  list-style: none !important;
  list-style-type: none !important;
  display: block;
  padding-left: 0 !important;
  width: 100%;
}
.mega-menu-submenu-container-content .submenu-items-list li::marker {
  display: none !important;
  content: "" !important;
}
.mega-menu-submenu-container-content .submenu-items-list li::before {
  display: none !important;
  content: none !important;
}
.mega-menu-submenu-container-content .submenu-items-list li:not(.has-nested-menu) .menu-chevron-right {
  display: none !important;
}

.mega-menu-primary .sub-menu.level-1 > li > a,
.mega-menu-submenu-container .submenu-items-list li > a {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  padding: 8px 10px !important;
  background-color: transparent !important;
  border-radius: 15px !important;
  font-family: "Poppins", sans-serif !important;
  font-size: 15px !important;
  font-weight: 500 !important;
  color: rgb(56, 48, 34) !important;
  text-decoration: none !important;
  transition: color 0.3s ease !important;
  position: relative !important;
  text-align: left !important;
  width: 100% !important;
  white-space: normal !important;
  word-wrap: break-word !important;
}
.mega-menu-primary .sub-menu.level-1 > li > a::after,
.mega-menu-submenu-container .submenu-items-list li > a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #9c6a36;
  transition: width 0.3s ease;
}
.mega-menu-primary .sub-menu.level-1 > li > a .menu-chevron-right,
.mega-menu-submenu-container .submenu-items-list li > a .menu-chevron-right {
  margin-left: 10px !important;
  transition: transform 0.3s ease !important;
  width: 14px !important;
  height: 14px !important;
  display: inline-block !important;
  flex-shrink: 0 !important;
}
.mega-menu-primary .sub-menu.level-1 > li > a .menu-icon-dropdown,
.mega-menu-submenu-container .submenu-items-list li > a .menu-icon-dropdown {
  display: none !important;
}

.mega-menu-primary .sub-menu.level-1 > li > a:hover,
.mega-menu-primary .sub-menu.level-1 > li > a:focus,
.mega-menu-submenu-container .submenu-items-list li > a:hover,
.mega-menu-submenu-container .submenu-items-list li > a:focus {
  color: #9c6a36 !important;
}
.mega-menu-primary .sub-menu.level-1 > li > a:hover::after,
.mega-menu-primary .sub-menu.level-1 > li > a:focus::after,
.mega-menu-submenu-container .submenu-items-list li > a:hover::after,
.mega-menu-submenu-container .submenu-items-list li > a:focus::after {
  width: 100% !important;
}
.mega-menu-primary .sub-menu.level-1 > li > a:hover .menu-chevron-right,
.mega-menu-primary .sub-menu.level-1 > li > a:focus .menu-chevron-right,
.mega-menu-submenu-container .submenu-items-list li > a:hover .menu-chevron-right,
.mega-menu-submenu-container .submenu-items-list li > a:focus .menu-chevron-right {
  transform: translateX(3px) !important;
  filter: grayscale(1) opacity(0.7) !important;
}

.mega-menu-primary .sub-menu.level-1 > li.active > a,
.mega-menu-primary .sub-menu.level-1 > li:hover > a,
.mega-menu-primary .sub-menu.level-1 > li:focus-within > a,
.mega-menu-submenu-container .submenu-items-list li.active > a,
.mega-menu-submenu-container .submenu-items-list li:hover > a,
.mega-menu-submenu-container .submenu-items-list li:focus-within > a {
  color: #9c6a36 !important;
}
.mega-menu-primary .sub-menu.level-1 > li.active > a::after,
.mega-menu-primary .sub-menu.level-1 > li:hover > a::after,
.mega-menu-primary .sub-menu.level-1 > li:focus-within > a::after,
.mega-menu-submenu-container .submenu-items-list li.active > a::after,
.mega-menu-submenu-container .submenu-items-list li:hover > a::after,
.mega-menu-submenu-container .submenu-items-list li:focus-within > a::after {
  width: 100% !important;
}
.mega-menu-primary .sub-menu.level-1 > li.active > a .menu-chevron-right,
.mega-menu-primary .sub-menu.level-1 > li:hover > a .menu-chevron-right,
.mega-menu-primary .sub-menu.level-1 > li:focus-within > a .menu-chevron-right,
.mega-menu-submenu-container .submenu-items-list li.active > a .menu-chevron-right,
.mega-menu-submenu-container .submenu-items-list li:hover > a .menu-chevron-right,
.mega-menu-submenu-container .submenu-items-list li:focus-within > a .menu-chevron-right {
  transform: translateX(3px) !important;
  color: #9c6a36 !important;
}

.mega-menu-content {
  display: flex;
  flex-wrap: nowrap;
  gap: 10px;
}
.mega-menu-content .mega-menu-primary {
  min-width: 270px;
  max-width: 350px;
  flex: 0 1 auto;
}
.mega-menu-content .mega-menu-submenu-container {
  min-width: 180px;
  flex: 1 1 auto;
  position: relative;
  margin-right: 0;
  overflow: visible;
}

.mega-menu-primary .sub-menu.level-2,
.mega-menu-primary .sub-menu.level-3,
.mega-menu-primary .sub-menu.level-4,
.mega-menu-primary .sub-menu.level-5 {
  display: none !important;
}

.submenu-items-list {
  padding-inline-start: 0 !important;
  -moz-padding-start: 0 !important;
  margin-block-start: 0 !important;
  margin-block-end: 0 !important;
  width: 100%;
}
.submenu-items-list li {
  width: 100% !important;
  margin-left: 0 !important;
  padding-left: 0 !important;
}

.mega-menu-submenu-container ul,
.mega-menu-submenu-container li,
.mega-menu-primary ul,
.mega-menu-primary li,
.submenu-items-list,
.submenu-items-list li {
  list-style: none !important;
  list-style-type: none !important;
  padding-left: 0 !important;
  margin-left: 0 !important;
}
.mega-menu-submenu-container ul::marker, .mega-menu-submenu-container ul::before,
.mega-menu-submenu-container li::marker,
.mega-menu-submenu-container li::before,
.mega-menu-primary ul::marker,
.mega-menu-primary ul::before,
.mega-menu-primary li::marker,
.mega-menu-primary li::before,
.submenu-items-list::marker,
.submenu-items-list::before,
.submenu-items-list li::marker,
.submenu-items-list li::before {
  display: none !important;
  content: none !important;
}

.mega-menu-promo {
  min-width: 350px;
  max-width: 420px;
  flex: 0 0 auto;
  overflow: hidden;
  padding: 10px;
  display: flex;
  flex-direction: row;
  align-items: center;
}
.mega-menu-promo-content {
  flex: 1;
  background-image: url("../images/menu-bg.svg");
  background-position: center;
  background-size: cover;
  border-radius: 15px;
  overflow: hidden;
  color: #ffffff;
  margin-left: 32px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  height: 100%;
  align-items: flex-start;
  gap: 10px;
}
.mega-menu-promo-content-heading {
  font-size: 22px;
  color: #ffffff;
  word-wrap: break-word;
  max-width: 100%;
}
.mega-menu-promo-content-text {
  font-size: 14px;
  line-height: 1.5;
  max-width: 100%;
}
.mega-menu-promo-content-text p {
  margin: 0 0 8px 0;
  color: #ffffff;
  word-wrap: break-word;
}
.mega-menu-promo-content-text p:last-child {
  margin-bottom: 0;
}
.mega-menu-promo-image {
  flex: 1;
  aspect-ratio: 3/4;
  overflow: hidden;
}
.mega-menu-promo-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
}

.main-navigation .menu-item-has-children[data-depth="0"]:hover > a, .main-navigation .menu-item-has-children[data-depth="0"]:focus-within > a {
  color: #9c6a36;
  position: relative;
}
.main-navigation .menu-item-has-children[data-depth="0"]:hover > a::after, .main-navigation .menu-item-has-children[data-depth="0"]:focus-within > a::after {
  display: none;
}

.mega-menu-secondary {
  display: none;
}

.mobile-nav .menu-item img:not(.mobile-menu-icon-dropdown),
.mobile-nav .menu-item > svg {
  display: none;
}
.mobile-nav .sub-menu[hidden] {
  display: none;
}
.mobile-nav .sub-menu:not([hidden]) {
  display: block;
}

/* ==========================================
   USUNIĘCIE NIECHCIANYCH STRZAŁEK Z MENU MOBILNEGO
   ========================================== */
/* Ukrycie WSZYSTKICH strzałek, które nie są częścią przycisku .mobile-submenu-toggle */
.mobile-nav .menu-item img:not(.mobile-menu-icon-dropdown),
.mobile-nav .menu-item svg:not(.mobile-menu-icon-dropdown) {
  display: none !important;
}

/* Ukrycie strzałek pod pozycjami menu - te czerwone z twojego screenshota */
.mobile-nav .menu-item > a:after,
.mobile-nav .menu-item > a::before,
.mobile-nav .menu-item > a img,
.mobile-nav .menu-item > a svg {
  display: none !important;
}

/* Naprawienie pozycjonowania przycisku toggle */
.mobile-nav .menu-item {
  position: relative;
}

.mobile-nav .mobile-submenu-toggle {
  position: absolute;
  right: 0;
  top: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  padding: 0;
  z-index: 10;
}

@media (max-width: 1024px) {
  .mega-menu-wrapper {
    display: none;
  }
}
@media (max-width: 1600px) and (min-width: 1024px) {
  .mega-menu-promo {
    min-width: 300px;
  }
  .mega-menu-primary {
    min-width: 250px;
  }
  .mega-menu-submenu-container {
    min-width: 160px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .mega-menu-wrapper,
  .menu-chevron-right,
  .mega-menu-promo-image img,
  .main-navigation .menu-item-has-children[data-depth="0"] > a::after,
  .mega-menu-submenu-container,
  .mega-menu-primary .sub-menu.level-1 > li > a::after,
  .mega-menu-submenu-container .submenu-items-list li a::after {
    transition: none;
    transform: none;
    animation: none;
  }
}
@media (prefers-contrast: high) {
  .mega-menu-wrapper {
    border: 1px solid rgb(56, 48, 34);
  }
  .mega-menu-primary .sub-menu.level-1 > li > a {
    border: 1px solid rgb(56, 48, 34);
  }
  .mega-menu-submenu-container {
    border: 1px solid rgb(56, 48, 34);
  }
  .mega-menu-submenu-container .submenu-items-list li a {
    border: 1px solid rgb(56, 48, 34);
  }
  .mega-menu-promo {
    border: 1px solid #ffffff;
  }
  .main-navigation .menu-item-has-children[data-depth="0"]:hover > a::after,
  .main-navigation .menu-item-has-children[data-depth="0"]:focus-within > a::after {
    background-color: rgb(56, 48, 34);
  }
}
@media print {
  .mega-menu-wrapper {
    display: none !important;
  }
}
.hero-section {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background-image: url("../images/hero-bg.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 100%;
  margin: 0 auto;
  padding: 5em 0vw 0em 0vw;
}
.hero-section-inner {
  width: 100%;
}
.hero-section .hero-slider {
  width: 100%;
  height: 100%;
  position: relative;
  height: 50vh;
  max-width: 1920px;
  margin: 0 auto;
  padding: 0em 6vw 0em 6vw;
}
@media (max-width: 768px) {
  .hero-section .hero-slider {
    height: auto;
    padding: 0em;
  }
}
.hero-section .hero-swiper {
  width: 100%;
  height: 100%;
}
.hero-section .swiper-slide {
  width: 100%;
  height: 100%;
  display: flex !important;
  flex-direction: row !important;
  gap: 2em !important;
  align-items: center;
  padding-bottom: 4em !important;
}
.hero-section .swiper-slide .slide-image {
  height: 100%;
  display: flex;
  flex-direction: row;
  gap: 1em;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  width: 50%;
  background-size: cover;
  background-position: center;
}
.hero-section .swiper-slide .slide-image .slide-image-inner {
  height: 100%;
  border-radius: 15px;
  position: relative;
}
.hero-section .swiper-slide .slide-image .slide-image-inner img {
  height: 100%;
  width: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
.hero-section .swiper-slide .slide-image > .slide-image-inner {
  flex: 1 1 0;
}
.hero-section .swiper-slide .slide-image:has(.slide-image-inner:nth-child(1):nth-last-child(1)) > .slide-image-inner {
  flex: 0 0 100%;
}
.hero-section .swiper-slide .slide-image:has(.slide-image-inner:nth-child(2):nth-last-child(1)) > .slide-image-inner {
  flex: 0 0 calc(50% - 0.5em);
}
.hero-section .swiper-slide .slide-image:has(.slide-image-inner:nth-child(3):nth-last-child(1)) > .slide-image-inner {
  flex: 0 0 calc(33.33% - 0.67em);
}
@media (max-width: 768px) {
  .hero-section .swiper-slide .slide-image {
    flex-direction: row !important;
    align-items: flex-start;
    width: 100%;
    position: relative;
  }
}
.hero-section .swiper-slide .slide-image .product-hotspot {
  position: absolute;
  cursor: pointer;
}
.hero-section .swiper-slide .slide-image .product-hotspot .hotspot-dot {
  width: 40px;
  height: 40px;
  display: flex;
  position: relative;
}
.hero-section .swiper-slide .slide-image .product-hotspot .hotspot-dot .dot-inner {
  width: 40px;
  height: 40px;
  display: flex;
  background-color: hsla(0, 0%, 100%, 0.3);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}
.hero-section .swiper-slide .slide-image .product-hotspot .hotspot-dot .dot-inner-2 {
  width: 25px;
  height: 25px;
  display: flex;
  background-color: hsla(0, 0%, 100%, 0.3);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}
.hero-section .swiper-slide .slide-image .product-hotspot .hotspot-dot .dot {
  width: 8px;
  height: 8px;
  display: flex;
  background-color: white;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}
.hero-section .swiper-slide .slide-image .product-hotspot .hotspot-popup {
  display: none;
  flex-direction: column;
  background-color: #fff;
  padding: 1em;
  position: absolute;
  top: 20px;
  left: -250px;
  width: 300px;
  max-width: 350px;
  flex-direction: row;
  gap: 1em;
  border-radius: 15px;
  z-index: 99;
}
.hero-section .swiper-slide .slide-image .product-hotspot .hotspot-popup img {
  width: 20%;
  height: auto;
  display: block;
  margin-bottom: 0.5em;
}
.hero-section .swiper-slide .slide-image .product-hotspot .hotspot-popup h4,
.hero-section .swiper-slide .slide-image .product-hotspot .hotspot-popup p {
  margin: 0;
  font-size: 0.9em;
  color: #000;
}
.hero-section .swiper-slide .slide-image .product-hotspot:hover .hotspot-popup {
  display: flex;
}
@media (max-width: 768px) {
  .hero-section .swiper-slide .slide-image .product-hotspot {
    display: none;
  }
}
.hero-section .swiper-slide .slide-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1em;
  width: 50%;
  align-items: flex-start;
}
.hero-section .swiper-slide .slide-content .main-button {
  margin-top: 1em;
}
@media (max-width: 768px) {
  .hero-section .swiper-slide .slide-content {
    width: 100%;
    justify-content: flex-start;
    text-align: left;
  }
}
@media (max-width: 768px) {
  .hero-section .swiper-slide {
    flex-direction: column !important;
    align-items: flex-start;
    width: 100%;
  }
}
.hero-section .swiper-pagination {
  bottom: 0px !important;
  text-align: center;
}
.hero-section .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: rgb(143, 131, 107) !important;
  opacity: 1;
  margin: 0 6px;
  transition: all 0.3s ease;
}
.hero-section .swiper-pagination-bullet-active {
  background: rgb(192, 146, 81) !important;
  transform: scale(1.2);
  width: 15px !important;
  border-radius: 5px !important;
}

@media (max-width: 768px) {
  .hero-section {
    padding: 20px;
  }
  .slide {
    flex-direction: column;
    text-align: center;
  }
  .slide-image {
    flex: 0 0 250px;
    margin-right: 0;
    margin-bottom: 30px;
    width: 100%;
  }
  .slide-content {
    flex: 1;
    padding: 20px 0;
  }
  .slide p {
    font-size: 1rem;
    max-width: 100%;
  }
}
@media (max-width: 480px) {
  .hero-section {
    padding: 15px;
  }
  .slide-image {
    flex: 0 0 200px;
  }
}
.client-slider {
  background: white;
  width: 100%;
  margin-top: 40px;
}
.client-slider .client-slider-wrapper {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 0em 0vw 0em 6vw;
  gap: 1em;
  max-width: 1920px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .client-slider .client-slider-wrapper {
    flex-direction: column;
    padding: 0;
    text-align: center;
    padding-top: 2em;
  }
}
.client-slider p {
  font-weight: 500;
  min-width: 200px;
}
.client-slider .client-swiper {
  width: 100%;
  padding: 20px 0;
}
.client-slider .client-swiper .swiper-slide {
  display: flex !important;
  align-items: center;
  justify-content: center;
  padding: 10px;
  padding-bottom: 0 !important;
}

.description-section {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  max-width: 1920px;
  background-image: url("../images/description-bg.png");
  background-repeat: no-repeat;
  background-size: auto;
  background-position: left;
  margin: 0 auto;
  padding: 5em 6vw 0em 6vw;
  width: 100%;
  gap: 5em;
}
.description-section .description-left {
  width: 50%;
  padding: 2em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1em;
}
.description-section .left-column {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  width: 50%;
  gap: 1em;
}
.description-section .left-column .image-1 {
  border-radius: 8px;
  width: 70%;
  height: 300px;
}
@media (max-width: 768px) {
  .description-section .left-column .image-1 {
    height: 200px;
  }
}
.description-section .left-column .image-2 {
  background: #9c6a36;
  border-radius: 8px;
  width: 100%;
  height: 200px;
}
@media (max-width: 768px) {
  .description-section .left-column .image-2 {
    height: 100px;
  }
}
.description-section .image-3 {
  background: #9c6a36;
  border-radius: 8px;
  width: 50%;
  height: 400px;
}
@media (max-width: 768px) {
  .description-section .image-3 {
    height: 300px;
  }
}
.description-section .description-right {
  width: 50%;
  padding: 2em;
  display: flex;
  flex-direction: column;
  gap: 1em;
}
.description-section .description-right .points {
  display: flex;
  flex-direction: column;
  gap: 1.5em;
  margin-top: 1em;
}
.description-section .description-right .points .point {
  display: flex;
  flex-direction: row;
  gap: 0.5em;
  align-items: flex-start;
}
.description-section .slide-image-inner {
  height: 100%;
  border-radius: 15px;
  position: relative;
}
.description-section .slide-image-inner img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 15px;
}
@media (max-width: 768px) {
  .description-section {
    align-items: flex-start;
    width: 100%;
    position: relative;
  }
}
.description-section .product-hotspot {
  position: absolute;
  cursor: pointer;
}
.description-section .product-hotspot .hotspot-dot {
  width: 40px;
  height: 40px;
  display: flex;
  position: relative;
}
.description-section .product-hotspot .hotspot-dot .dot-inner {
  width: 40px;
  height: 40px;
  display: flex;
  background-color: hsla(0, 0%, 100%, 0.3);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}
.description-section .product-hotspot .hotspot-dot .dot-inner-2 {
  width: 25px;
  height: 25px;
  display: flex;
  background-color: hsla(0, 0%, 100%, 0.3);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}
.description-section .product-hotspot .hotspot-dot .dot {
  width: 8px;
  height: 8px;
  display: flex;
  background-color: white;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}
.description-section .product-hotspot .hotspot-popup {
  display: none;
  flex-direction: column;
  background-color: #fff;
  padding: 1em;
  position: absolute;
  top: -30px;
  left: -50px;
  width: 300px;
  max-width: 350px;
  flex-direction: row;
  gap: 1em;
  border-radius: 15px;
  z-index: 99;
}
.description-section .product-hotspot .hotspot-popup img {
  width: 20%;
  height: auto;
  display: block;
  margin-bottom: 0.5em;
}
.description-section .product-hotspot .hotspot-popup h4,
.description-section .product-hotspot .hotspot-popup p {
  margin: 0;
  font-size: 0.9em;
  color: #000;
}
.description-section .product-hotspot:hover .hotspot-popup {
  display: flex;
}
@media (max-width: 768px) {
  .description-section .product-hotspot {
    display: none;
  }
}

@media (max-width: 1024px) {
  .description-section {
    flex-direction: column;
    padding: 3em 4vw;
    gap: 2em;
  }
  .description-section .description-left,
  .description-section .description-right {
    width: 100%;
    padding: 1em 0;
  }
  .description-section .description-left {
    height: 400px;
    margin-bottom: 2em;
  }
}
.bestseller-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-image: url("../images/hero-bg.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  max-width: 1920px;
  padding: 7em 0vw 5em 6vw;
  width: 100%;
  margin: 0 auto;
  gap: 3em;
  overflow: hidden;
}
.bestseller-section .bestseller-header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding: 0em 6vw 0em 0vw;
  width: 100%;
}
@media (max-width: 768px) {
  .bestseller-section .bestseller-header {
    flex-direction: column;
    gap: 2em;
    justify-content: flex-start;
  }
}
.bestseller-section .bestseller-swiper {
  width: 100%;
  position: relative;
  overflow: hidden !important;
}
.bestseller-section .bestseller-swiper .swiper-wrapper {
  padding: 2em 0;
}
.bestseller-section .bestseller-swiper .swiper-slide {
  flex-shrink: 0;
  height: auto;
  position: relative;
}
.bestseller-section .bestseller-swiper .swiper-button-prev,
.bestseller-section .bestseller-swiper .swiper-button-next {
  color: #333;
}
@media (max-width: 768px) {
  .bestseller-section .bestseller-swiper {
    padding: 0em 6vw 0em 0vw;
  }
}

.info-section {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  background-color: #383022;
  color: white;
  width: 100%;
  gap: 5em;
  background-image: url("../images/info-bg.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
@media (max-width: 1024px) {
  .info-section {
    gap: 3em;
  }
}
@media (max-width: 724px) {
  .info-section {
    gap: 2em;
  }
}
.info-section .info-section-inner {
  max-width: 1920px;
  margin: 0 auto;
  padding: 8em 6vw 8em 6vw;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 4em;
}
@media (max-width: 1024px) {
  .info-section .info-section-inner {
    gap: 3em;
  }
}
@media (max-width: 724px) {
  .info-section .info-section-inner {
    gap: 2em;
  }
}
.info-section .info-section-inner .info-up {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
@media (max-width: 724px) {
  .info-section .info-section-inner .info-up {
    flex-direction: column;
    align-items: flex-start;
    gap: 1em;
  }
}
.info-section .info-section-inner .info-up .info-up-inner {
  display: flex;
  flex-direction: column;
  gap: 1em;
  width: 100%;
}
.info-section .info-section-inner .info-down {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: center;
  width: 100%;
  gap: 2em;
}
@media (max-width: 1300px) {
  .info-section .info-section-inner .info-down {
    gap: 1.5em;
  }
}
@media (max-width: 724px) {
  .info-section .info-section-inner .info-down {
    gap: 2em;
  }
}
.info-section .info-section-inner .info-down .info-item {
  display: flex;
  flex-direction: column;
  gap: 1em;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
  background-color: white;
  padding: 2em;
  position: relative;
  overflow: hidden;
  min-height: 530px;
  width: calc(20% - 1.6em);
}
@media (max-width: 1300px) {
  .info-section .info-section-inner .info-down .info-item {
    width: calc(33.333% - 1em);
  }
}
@media (max-width: 724px) {
  .info-section .info-section-inner .info-down .info-item {
    width: 100%;
  }
}
.info-section .info-section-inner .info-down .info-item h3 {
  color: rgb(56, 48, 34);
}
.info-section .info-section-inner .info-down .info-item p {
  color: rgb(56, 48, 34);
}
.info-section .info-section-inner .info-down .info-item img {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 90%;
  height: auto;
}
.info-section .info-section-inner .info-down .info-item:nth-child(2n) {
  background-color: #383022;
}
.info-section .info-section-inner .info-down .info-item:nth-child(2n) h3 {
  color: #ffffff;
}
.info-section .info-section-inner .info-down .info-item:nth-child(2n) p {
  color: #ffffff;
}

.products-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 1920px;
  padding: 7em 0vw 5em 6vw;
  width: 100%;
  margin: 0 auto;
  gap: 3em;
  overflow: hidden;
}
.products-section .products-container {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 4em;
  min-height: 80vh;
}
@media (max-width: 768px) {
  .products-section .products-container {
    gap: 2em;
  }
}
.products-section .products-header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  width: 100%;
  padding: 0em 6vw 0em 0vw;
}
@media (max-width: 768px) {
  .products-section .products-header {
    flex-direction: column;
    gap: 2em;
    justify-content: flex-start;
  }
}
.products-section .products-content {
  display: flex;
  flex-direction: row;
  gap: 2em;
  overflow: hidden;
}
.products-section .products-content .filter-categories {
  display: flex;
  flex-direction: column;
  gap: 1em;
  width: 30%;
  margin-top: 1em;
}
@media (max-width: 724px) {
  .products-section .products-content .filter-categories {
    flex-direction: row;
    overflow-x: auto;
    gap: 0.5em;
    padding-bottom: 0.5em;
  }
  .products-section .products-content .filter-categories::-webkit-scrollbar {
    height: 4px;
  }
  .products-section .products-content .filter-categories::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
  }
  .products-section .products-content .filter-categories::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 4px;
  }
}
.products-section .products-content .filter-categories .filter-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  text-decoration: none;
  transition: all 0.3s ease;
}
@media (max-width: 724px) {
  .products-section .products-content .filter-categories .filter-category {
    white-space: nowrap;
    min-width: -moz-fit-content;
    min-width: fit-content;
  }
}
@media (max-width: 768px) {
  .products-section .products-content .filter-categories {
    width: 100%;
  }
}
.products-section .products-content .products-loader {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 3rem;
  width: 100%;
  height: 100%;
  min-height: 300px;
  position: relative;
}
.products-section .products-content .products-loader .spinner {
  border: 4px solid #f3f3f3;
  border-top: 4px solid #007cba;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  animation: spin 1s linear infinite;
  margin-bottom: 1rem;
}
.products-section .products-content .products-loader p {
  margin: 0;
  color: #666;
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.products-section .products-content .no-products {
  text-align: center;
  padding: 3rem;
  color: #666;
  font-style: italic;
}
.products-section .products-content .error-message {
  text-align: center;
  padding: 2rem;
  color: #d32f2f;
  background-color: #ffebee;
  border-radius: 4px;
  margin: 1rem 0;
}
.products-section .products-content .products-swiper {
  width: 100%;
  position: relative;
  overflow: hidden !important;
}
.products-section .products-content .products-swiper .swiper-wrapper {
  padding: 0em 0;
  position: relative;
  min-height: 200px;
}
.products-section .products-content .products-swiper .swiper-slide {
  flex-shrink: 0;
  height: auto;
  position: relative;
}
.products-section .products-content .products-swiper .swiper-button-prev,
.products-section .products-content .products-swiper .swiper-button-next {
  color: #333;
}
@media (max-width: 768px) {
  .products-section .products-content {
    flex-direction: column;
    gap: 2em;
    justify-content: flex-start;
    width: 100%;
    padding: 0em 6vw 0em 0vw;
  }
}
.products-section .loading {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 300px;
  font-style: italic;
  color: #666;
}
.products-section .error {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 200px;
  color: #d32f2f;
  background-color: #ffebee;
  border-radius: 4px;
  padding: 1rem;
  text-align: center;
}

.reviews {
  width: 100%;
  margin: 0 auto;
  background-color: #383022;
  /* Reviews Header with Navigation */
  /* Swiper Navigation Arrows */
}
.reviews .reviews-inner {
  max-width: 1920px;
  width: 100%;
  padding: 5em 0vw 3em 6vw;
  display: flex;
  flex-direction: column;
  margin: 0 auto;
  gap: 3em;
}
.reviews h2,
.reviews p {
  color: white;
}
.reviews .reviews-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  margin-right: 6vw;
}
.reviews .reviews-navigation {
  display: flex;
  gap: 2em;
}
.reviews .reviews-prev,
.reviews .reviews-next {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  border: none;
  background-size: 20px 20px;
  background-repeat: no-repeat;
  background-position: center;
}
.reviews .reviews-prev {
  background-color: #9c6a36;
  background-image: url("../images/arrow-right.svg");
  transform: rotate(180deg);
}
.reviews .reviews-prev:hover {
  background-color: #9c6a36;
  transform: rotate(180deg) scale(1.1);
}
.reviews .reviews-next {
  background-color: #9c6a36;
  background-image: url("../images/arrow-right.svg");
}
.reviews .reviews-next:hover {
  background-color: rgba(156, 106, 54, 0.8);
  transform: scale(1.1);
}
.reviews .reviews-prev.swiper-button-disabled,
.reviews .reviews-next.swiper-button-disabled {
  background-color: white;
  opacity: 1;
  cursor: not-allowed;
  background-image: url("../images/arrow-right-black.svg");
}
.reviews .reviews-prev::after,
.reviews .reviews-next::after {
  display: none;
}
.reviews .reviews-prev::before,
.reviews .reviews-next::before {
  display: none;
}
@media (max-width: 768px) {
  .reviews .reviews-header {
    flex-direction: column;
    gap: 2em;
    align-items: flex-start;
    margin-right: 4vw;
  }
  .reviews .reviews-prev,
  .reviews .reviews-next {
    width: 40px;
    height: 40px;
    background-size: 16px 16px;
  }
}
.reviews .reviews-swiper {
  width: 100%;
  position: relative;
  overflow: hidden !important;
}
.reviews .reviews-swiper .swiper-wrapper {
  padding: 0em 0;
}
.reviews .reviews-swiper .swiper-slide {
  flex-shrink: 0;
  height: auto;
  position: relative;
}
.reviews .reviews-swiper .swiper-button-prev,
.reviews .reviews-swiper .swiper-button-next {
  color: #333;
}
.reviews .reviews-swiper .review-item {
  display: flex;
  flex-direction: column;
  gap: 2em;
  padding: 2em;
  background-color: white;
  border-radius: 15px;
  justify-content: flex-start;
}
.reviews .reviews-swiper .review-item .review-icon {
  height: auto;
  width: 35px;
}
.reviews .reviews-swiper .review-item p {
  color: rgb(56, 48, 34);
}
.reviews .reviews-swiper .review-item .review-item-down {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.reviews .reviews-swiper .review-item .client-info {
  display: flex;
  flex-direction: row;
  gap: 1em;
  align-items: center;
}
.reviews .reviews-swiper .review-item .client-info .name {
  font-weight: 500;
}
.reviews .reviews-swiper .review-item .client-info img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}
.reviews .reviews-swiper .review-item .stars {
  color: #9c6a36;
  font-size: 1.2em;
}
@media (max-width: 768px) {
  .reviews .reviews-swiper {
    padding: 0em 6vw 0em 0vw;
  }
}

.o-nas-hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-image: url("../images/about-us-bg.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top;
  margin: 0 auto;
  width: 100%;
  gap: 5em;
}
.o-nas-hero-section .o-nas-hero-section-inner {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  padding: 0em 6vw 0em 6vw;
  max-width: 1920px;
  width: 100%;
  gap: 8em;
}
.o-nas-hero-section .o-nas-hero-left {
  display: flex;
  flex-direction: column;
  gap: 1em;
  width: 100%;
}
.o-nas-hero-section .o-nas-hero-left p {
  color: rgba(56, 48, 34, 0.5960784314);
}
.o-nas-hero-section .o-nas-hero-right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 1em;
  width: 100%;
}
.o-nas-hero-section .o-nas-hero-right .image {
  background-color: #9c6a36;
  border-radius: 15px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.o-nas-hero-section .o-nas-hero-right .image-1 {
  grid-column: 1;
  grid-row: 1;
  height: 350px;
  align-self: end;
}
.o-nas-hero-section .o-nas-hero-right .image-2 {
  grid-column: 2;
  grid-row: 1;
  height: 400px;
}
.o-nas-hero-section .o-nas-hero-right .image-3 {
  grid-column: 1;
  grid-row: 2;
  height: 200px;
}
.o-nas-hero-section .o-nas-hero-right .image-4 {
  grid-column: 2;
  grid-row: 2;
  height: 300px;
}

@media (max-width: 768px) {
  .o-nas-hero-section {
    flex-direction: column;
    gap: 10em;
  }
  .o-nas-hero-section .o-nas-hero-section-inner {
    flex-direction: column;
    gap: 12em;
  }
  .o-nas-hero-section .o-nas-hero-right {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(2, 200px);
    height: auto;
  }
  .o-nas-hero-section .o-nas-hero-right .image-1,
  .o-nas-hero-section .o-nas-hero-right .image-2,
  .o-nas-hero-section .o-nas-hero-right .image-3,
  .o-nas-hero-section .o-nas-hero-right .image-4 {
    grid-column: 1;
  }
  .o-nas-hero-section .o-nas-hero-right .image-1 {
    grid-row: 1;
  }
  .o-nas-hero-section .o-nas-hero-right .image-2 {
    grid-row: 2;
  }
  .o-nas-hero-section .o-nas-hero-right .image-3 {
    display: none;
  }
  .o-nas-hero-section .o-nas-hero-right .image-4 {
    display: none;
  }
}
.o-nas-description-section {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  max-width: 1920px;
  margin: 0 auto;
  width: 100%;
  gap: 10em;
  padding: 8em 6vw 8em 6vw;
}
.o-nas-description-section .o-nas-description-right {
  display: flex;
  flex-direction: column;
  gap: 1em;
  width: 100%;
}
.o-nas-description-section .o-nas-description-right p {
  color: rgba(56, 48, 34, 0.5960784314);
}
.o-nas-description-section .o-nas-description-right ul {
  margin-left: 30px;
}
.o-nas-description-section .o-nas-description-left {
  display: flex;
  flex-direction: column;
  gap: 1em;
  width: 100%;
}
.o-nas-description-section .o-nas-description-left .image {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  height: 200px;
  width: 100%;
  border-radius: 15px;
}
@media (max-width: 1024px) {
  .o-nas-description-section {
    display: flex;
    flex-direction: column-reverse;
    gap: 5em;
  }
}

.o-nas-work-section {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  width: 100%;
  background: url("../images/work-bg.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.o-nas-work-section .o-nas-work-inner {
  padding: 8em 6vw 8em 6vw;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  max-width: 1920px;
  width: 100%;
  gap: 10em;
}
.o-nas-work-section .o-nas-work-inner .o-nas-work-inner-left {
  display: flex;
  flex-direction: column;
  gap: 1em;
  width: 100%;
}
.o-nas-work-section .o-nas-work-inner .o-nas-work-inner-left h2 {
  color: white;
}
.o-nas-work-section .o-nas-work-inner .o-nas-work-inner-left p {
  color: rgba(255, 255, 255, 0.692);
}
.o-nas-work-section .o-nas-work-inner .o-nas-work-inner-right {
  display: flex;
  flex-direction: row;
  gap: 1em;
  width: 100%;
}
.o-nas-work-section .o-nas-work-inner .o-nas-work-inner-right .image {
  width: 100%;
  height: 500px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  border-radius: 15px;
}
.o-nas-work-section .o-nas-work-inner .o-nas-work-inner-right .image:nth-child(1) {
  width: 40%;
}
@media (max-width: 1024px) {
  .o-nas-work-section .o-nas-work-inner .o-nas-work-inner-right .image:nth-child(1) {
    width: 100%;
  }
}
.o-nas-work-section .o-nas-work-inner .o-nas-work-inner-right .image:nth-child(2) {
  width: 60%;
}
@media (max-width: 1024px) {
  .o-nas-work-section .o-nas-work-inner .o-nas-work-inner-right .image:nth-child(2) {
    width: 100%;
  }
}
@media (max-width: 1024px) {
  .o-nas-work-section .o-nas-work-inner .o-nas-work-inner-right {
    flex-direction: column;
  }
}
@media (max-width: 1024px) {
  .o-nas-work-section .o-nas-work-inner {
    display: flex;
    flex-direction: column;
    gap: 5em;
  }
}

.o-nas-b2b-section {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  max-width: 1920px;
  margin: 0 auto;
  width: 100%;
  gap: 10em;
  padding: 8em 6vw 8em 6vw;
}
.o-nas-b2b-section .o-nas-b2b-right {
  display: flex;
  flex-direction: column;
  gap: 1em;
  width: 100%;
}
.o-nas-b2b-section .o-nas-b2b-right p {
  color: rgba(56, 48, 34, 0.5960784314);
}
.o-nas-b2b-section .o-nas-b2b-right ul {
  margin-left: 30px;
}
.o-nas-b2b-section .o-nas-b2b-left {
  display: flex;
  flex-direction: column;
  gap: 1em;
  width: 100%;
}
.o-nas-b2b-section .o-nas-b2b-left .image {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  height: 400px;
  width: 100%;
  border-radius: 15px;
}
@media (max-width: 1024px) {
  .o-nas-b2b-section {
    display: flex;
    flex-direction: column-reverse;
    gap: 5em;
  }
}

.kontakt-hero-section {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  max-width: 1920px;
  margin: 0 auto;
  background-image: url("../images/kontakt-bg.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top;
  width: 100%;
  gap: 5em;
  padding: 0em 6vw 5em 6vw;
}
.kontakt-hero-section .kontakt-hero-left {
  display: flex;
  flex-direction: column;
  gap: 1em;
  width: 40%;
}
@media (max-width: 1024px) {
  .kontakt-hero-section .kontakt-hero-left {
    width: 100%;
  }
}
.kontakt-hero-section .kontakt-hero-right {
  display: flex;
  flex-direction: row;
  gap: 1em;
  width: 70%;
  height: 100%;
  align-items: stretch;
}
@media (max-width: 1024px) {
  .kontakt-hero-section .kontakt-hero-right {
    width: 100%;
    flex-direction: column;
  }
}
.kontakt-hero-section .info-card-warpper {
  width: 25%;
  display: flex;
  flex-direction: column;
  gap: 1em;
  align-self: stretch;
}
@media (max-width: 1024px) {
  .kontakt-hero-section .info-card-warpper {
    width: 100%;
  }
}
.kontakt-hero-section .info-card-warpper .info-card {
  display: flex;
  flex-direction: column;
  gap: 1em;
  background: white;
  padding: 2em;
  border-radius: 20px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  align-items: center;
}
.kontakt-hero-section .info-card-warpper .info-card a {
  color: rgb(56, 48, 34);
  font-weight: 600;
  font-size: 1em;
  text-decoration: underline;
}
.kontakt-hero-section .info-card-warpper .info-card p {
  text-align: center;
}
.kontakt-hero-section .info-card-warpper .info-card img {
  width: auto;
  height: 40px;
}
@media (max-width: 1024px) {
  .kontakt-hero-section {
    flex-direction: column;
    gap: 5em;
    padding: 3em 6vw;
  }
  .kontakt-hero-section .kontakt-hero-left {
    text-align: center;
  }
  .kontakt-hero-section .kontakt-hero-left h1 {
    font-size: 2.5rem;
  }
}
@media (max-width: 768px) {
  .kontakt-hero-section {
    gap: 3em;
    padding: 2em 4vw;
  }
  .kontakt-hero-section .kontakt-hero-left h1 {
    font-size: 2rem;
  }
  .kontakt-hero-section .kontakt-hero-left p {
    font-size: 1rem;
  }
}

.wpcf7 {
  width: 75%;
}
@media (max-width: 1024px) {
  .wpcf7 {
    width: 100%;
  }
}

.wpcf7-form {
  background: white;
  padding: 3em;
  border-radius: 20px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  width: 100%;
}
.wpcf7-form p {
  width: 100%;
}
.wpcf7-form br {
  display: none;
}
.wpcf7-form .form-header {
  text-align: center;
  margin-bottom: 2.5em;
}
.wpcf7-form .form-header h2 {
  font-size: 2rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 0.5em;
}
.wpcf7-form .form-header p {
  color: #666;
  font-size: 1rem;
  margin: 0;
}
.wpcf7-form .form-field {
  margin-bottom: 1.5em;
}
.wpcf7-form .form-field label {
  display: block;
  font-weight: 500;
  color: #333;
  margin-bottom: 0.5em;
  font-size: 0.95rem;
}
.wpcf7-form .form-field label .required {
  color: #e74c3c;
  margin-left: 2px;
}
.wpcf7-form .form-field input[type=text],
.wpcf7-form .form-field input[type=email],
.wpcf7-form .form-field textarea {
  width: 100%;
  padding: 1em 1.2em;
  border: 2px solid #d6d6d6;
  border-radius: 10px;
  font-size: 1rem;
  font-family: inherit;
  background: #ffffff;
  transition: all 0.3s ease;
  box-sizing: border-box;
}
.wpcf7-form .form-field input[type=text]:focus,
.wpcf7-form .form-field input[type=email]:focus,
.wpcf7-form .form-field textarea:focus {
  outline: none;
  border-color: #a0846f;
  background: white;
  box-shadow: 0 0 0 3px rgba(160, 132, 111, 0.1);
}
.wpcf7-form .form-field input[type=text]::-moz-placeholder, .wpcf7-form .form-field input[type=email]::-moz-placeholder, .wpcf7-form .form-field textarea::-moz-placeholder {
  color: #aaa;
}
.wpcf7-form .form-field input[type=text]::placeholder,
.wpcf7-form .form-field input[type=email]::placeholder,
.wpcf7-form .form-field textarea::placeholder {
  color: #aaa;
}
.wpcf7-form .form-field textarea {
  height: 120px;
  resize: vertical;
}
.wpcf7-form .form-row {
  display: flex;
  gap: 1.5em;
  margin-bottom: 1.5em;
}
.wpcf7-form .form-row .form-field {
  margin-bottom: 0;
  flex: 1;
}
.wpcf7-form .form-row .form-field.half-width {
  width: 50%;
}
.wpcf7-form .full-width {
  width: 100%;
}
.wpcf7-form .checkbox-field {
  margin-bottom: 2em;
}
.wpcf7-form .checkbox-field .wpcf7-list-item {
  margin: 0;
}
.wpcf7-form .checkbox-field .wpcf7-list-item label {
  display: flex;
  align-items: flex-start;
  gap: 0.8em;
  font-weight: 400;
  font-size: 0.9rem;
  line-height: 1.4;
  cursor: pointer;
}
.wpcf7-form .checkbox-field .wpcf7-list-item input[type=checkbox] {
  width: 18px;
  height: 18px;
  margin: 0;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: #a0846f;
  cursor: pointer;
}
.wpcf7-form .checkbox-field a {
  color: #a0846f;
  text-decoration: underline;
}
.wpcf7-form .checkbox-field a:hover {
  color: #8a6f5c;
}
.wpcf7-form .main-button {
  background-color: #9c6a36 !important;
  padding: 15px 40px !important;
  text-decoration: none !important;
  color: white !important;
  transition: background-color 0.3s ease, color 0.3s ease;
  border: 1px solid #9c6a36 !important;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  border-radius: 30px !important;
  width: 100%;
  background-image: url("../images/button-arrow.svg");
  background-repeat: no-repeat;
  background-position: calc(100% - 20px) center;
  background-size: 16px 16px;
  font-weight: 600;
}
.wpcf7-form .main-button span {
  color: white;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.wpcf7-form .wpcf7-not-valid-tip {
  color: #e74c3c;
  font-size: 0.85rem;
  margin-top: 0.5em;
}
.wpcf7-form .wpcf7-response-output {
  padding: 1em;
  border-radius: 8px;
  margin-top: 1em;
  font-size: 0.95rem;
}
.wpcf7-form .wpcf7-response-output.wpcf7-mail-sent-ok {
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}
.wpcf7-form .wpcf7-response-output.wpcf7-validation-errors {
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}
@media (max-width: 768px) {
  .wpcf7-form {
    padding: 2em 1.5em;
  }
  .wpcf7-form .form-row {
    flex-direction: column;
    gap: 1em;
  }
  .wpcf7-form .form-row .form-field.half-width {
    width: 100%;
  }
  .wpcf7-form .form-header h2 {
    font-size: 1.5rem;
  }
}

.kontakt-map-section {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  max-width: 1920px;
  margin: 0 auto;
  width: 100%;
  gap: 5em;
  padding: 0em 6vw 5em 6vw;
}
.kontakt-map-section iframe {
  overflow: hidden;
  border-radius: 15px;
}

.faq-section {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 1920px;
  width: 100%;
  margin: 0 auto;
  padding: 3em 6vw 10em 6vw;
}
.faq-section h1 {
  margin-bottom: 1.5em;
}
.faq-section .inner-faq-section {
  width: 100%;
}
.faq-section .inner-faq-section .faq-item {
  border-bottom: 1px solid #e5e5e5;
  margin-bottom: 0.5em;
  margin-top: 1.5em;
}
.faq-section .inner-faq-section .faq-item .faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2em 0;
  cursor: pointer;
}
.faq-section .inner-faq-section .faq-item .faq-question h2 {
  font-size: 1.5rem;
  font-weight: 500;
  margin: 0;
  flex: 1;
  padding-right: 15px;
}
.faq-section .inner-faq-section .faq-item .faq-question .faq-arrow {
  width: 15px;
  height: 15px;
  min-width: 15px;
  transition: transform 0.3s ease;
  flex: 0 0 auto;
}
.faq-section .inner-faq-section .faq-item .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 0;
}
.faq-section .inner-faq-section .faq-item.active .faq-arrow {
  transform: rotate(45deg);
}
.faq-section .inner-faq-section .faq-item.active .faq-answer {
  max-height: 500px;
  padding-bottom: 1.5em;
}

@media (max-width: 768px) {
  .faq-section .inner-faq-section .faq-item .faq-question h2 {
    font-size: 1.2rem;
  }
  .faq-section .inner-faq-section .faq-item .faq-question .faq-arrow {
    width: 12px;
    height: 12px;
    min-width: 12px;
  }
}
.filter-categories-section {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 1920px;
  width: 100%;
  margin: 0 auto;
  padding: 3em 6vw 8em 6vw;
  gap: 2em;
}

.blog-description {
  display: flex;
  flex-direction: column;
  gap: 1em;
  padding: 4em;
  border-radius: 15px;
  background-image: url("../images/blog-bg.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
}
.blog-description h1 {
  font-weight: 600;
  font-size: 1.7rem;
  margin: 0;
  padding: 0;
}
@media (min-width: 724px) {
  .blog-description h1 {
    font-size: 1.8rem;
  }
}
.blog-description h1 span {
  font-weight: 600;
  font-size: 1.7rem;
  margin: 0;
  padding: 0;
}
@media (min-width: 724px) {
  .blog-description h1 span {
    font-size: 1.8rem;
  }
}
.blog-description p {
  width: 50%;
}
@media (max-width: 1024px) {
  .blog-description p {
    width: 100%;
  }
}
@media (max-width: 1024px) {
  .blog-description {
    padding: 2em;
  }
}

.filter-categories-inner {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  margin-top: 4em;
  width: 100%;
  gap: 2em;
}
@media (max-width: 1024px) {
  .filter-categories-inner {
    flex-direction: column;
  }
}

.category-filter-container {
  display: flex;
  flex-direction: column;
  width: 35%;
  gap: 1em;
  background-color: rgb(255, 255, 255);
  border-radius: 15px;
  padding: 2em;
}
@media (max-width: 1024px) {
  .category-filter-container {
    width: 100%;
  }
}

.category-filter-inner {
  display: flex;
  flex-direction: column;
  gap: 1em;
}

.category-filter-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  color: rgb(56, 48, 34);
  font-size: 14px;
  font-weight: 500;
  position: relative;
}
.category-filter-btn::before {
  content: "";
  width: 20px;
  height: 20px;
  border: 2px solid #ddd;
  border-radius: 4px;
  background: white;
  transition: all 0.3s ease;
  position: relative;
  flex-shrink: 0;
}
.category-filter-btn::after {
  content: "✓";
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: white;
  font-size: 12px;
  font-weight: bold;
  opacity: 0;
  transition: all 0.3s ease;
}
.category-filter-btn:hover::before {
  border-color: #c9a96e;
}
.category-filter-btn.active::before {
  background: #c9a96e;
  border-color: #c9a96e;
}
.category-filter-btn.active::after {
  opacity: 1;
}

.main-grid {
  display: flex;
  flex-direction: column;
  gap: 2em;
  width: 100%;
}

.sort-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  padding: 1em 2em;
  background: white;
  border-radius: 8px;
}

.posts-count p {
  margin: 0;
  color: blac;
}

#current-count {
  color: black;
  font-weight: 600;
}

.sort-dropdown select {
  padding: 0.5rem 1rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  background: white;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.sort-dropdown select:focus {
  outline: none;
  border-color: #007cba;
  box-shadow: 0 0 0 2px rgba(0, 124, 186, 0.1);
}

.sort-dropdown select:hover {
  border-color: #007cba;
}

.post-meta {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
  font-size: 0.875rem;
  color: #666;
}

.post-meta span {
  display: flex;
  align-items: center;
}

.posts-grid {
  transition: all 0.3s ease;
}

.post-card {
  transition: all 0.3s ease;
}

@media (max-width: 768px) {
  .sort-container {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  .sort-dropdown select {
    width: 100%;
    max-width: 200px;
  }
}
.posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  width: 100%;
}

.post-card {
  display: flex;
  flex-direction: column;
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
  background: white;
}
.post-card:hover {
  transform: translateY(-5px);
}
.post-card .post-image {
  height: 200px;
  overflow: hidden;
}
.post-card .post-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.3s ease;
}
.post-card .post-content {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 2em;
  padding: 2em;
}
.post-card .post-content .post-content-inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1em;
  width: 80%;
}
.post-card .post-content .category-tag {
  color: #9c6a36;
  font-weight: 500;
}
.post-card .post-content .post-title {
  color: rgb(56, 48, 34);
  font-weight: 500;
  font-size: 1.4rem;
  margin: 0;
  padding: 0;
}
@media (min-width: 724px) {
  .post-card .post-content .post-title {
    font-size: 1.5rem;
  }
}
.post-card .post-content .post-title span {
  font-weight: 500;
  font-size: 1.4rem;
  margin: 0;
  padding: 0;
}
@media (min-width: 724px) {
  .post-card .post-content .post-title span {
    font-size: 1.5rem;
  }
}
.post-card .post-content .post-excerpt {
  color: #555555;
  flex-grow: 1;
  margin-bottom: 1em;
}
.post-card .post-content .arrow-button {
  background-color: #f2f2f2;
  padding: 0.8em;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 50px;
  width: 50px;
}
.post-card .post-content .arrow-button img {
  height: 50px;
  width: 50px;
}

@media (max-width: 1024px) {
  .posts-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .category-filter-btn {
    font-size: 13px;
    padding: 10px 16px;
  }
  .category-filter-btn::before {
    width: 18px;
    height: 18px;
  }
  .category-filter-btn::after {
    left: 22px;
    font-size: 11px;
  }
}
@media (max-width: 724px) {
  .posts-grid {
    grid-template-columns: 1fr;
  }
  .filter-categories-section {
    padding: 2em 4vw;
  }
}
.posts-content {
  display: flex;
  flex-direction: column;
  width: 70%;
  gap: 3em;
}

/* Style dla paginacji - rozciągnięta na cały grid */
.woocommerce-pagination {
  margin: 40px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  /* Rozciągnięcie na wszystkie kolumny gridu */
  grid-column: 1/-1; /* lub grid-column: span 3; */
  width: 100%;
}

.woocommerce-pagination ul.page-numbers {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.woocommerce-pagination ul.page-numbers li {
  margin: 0;
  padding: 0;
}

/* Style dla numerów stron */
.page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 48px;
  height: 48px;
  padding: 0 16px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

/* Zwykłe numery stron */
ul.page-numbers li .page-numbers:not(.current):not(.next):not(.prev) {
  color: #4a5568;
}

.page-numbers.current {
  background-color: #c09251;
  color: white;
  border-color: #c09251;
  cursor: default;
}

.page-numbers.next,
.page-numbers.prev {
  background-color: white;
  color: #4a5568;
  border: 2px solid #e2e8f0;
  border-radius: 50%;
  min-width: 48px;
  width: 48px;
  height: 48px;
  font-size: 18px;
  margin-left: 16px;
}

.page-numbers.prev {
  margin-left: 0;
  margin-right: 16px;
}

.page-numbers.dots {
  background: none;
  border: none;
  color: #a0aec0;
  cursor: default;
  min-width: auto;
  padding: 0 8px;
}

/* Responsive - dostosowanie do 2 kolumn */
@media (max-width: 1024px) {
  .woocommerce-pagination {
    grid-column: 1/-1; /* Rozciągnięcie na wszystkie kolumny (2 kolumny) */
  }
  .page-numbers {
    min-width: 40px;
    height: 40px;
    font-size: 14px;
    padding: 0 12px;
  }
  .page-numbers.next,
  .page-numbers.prev {
    width: 40px;
    height: 40px;
    min-width: 40px;
    font-size: 16px;
    margin-left: 12px;
  }
  .page-numbers.prev {
    margin-left: 0;
    margin-right: 12px;
  }
  .woocommerce-pagination ul.page-numbers {
    gap: 6px;
  }
}
/* Responsive - dostosowanie do 1 kolumny */
@media (max-width: 724px) {
  .woocommerce-pagination {
    grid-column: 1; /* Jedna kolumna - nie ma potrzeby span */
  }
  .page-numbers {
    min-width: 40px;
    height: 40px;
    font-size: 14px;
    padding: 0 12px;
  }
  .page-numbers.next,
  .page-numbers.prev {
    width: 40px;
    height: 40px;
    min-width: 40px;
    font-size: 16px;
    margin-left: 12px;
  }
  .page-numbers.prev {
    margin-left: 0;
    margin-right: 12px;
  }
  .woocommerce-pagination ul.page-numbers {
    gap: 6px;
  }
}
/* Focus styles dla dostępności */
.page-numbers:focus {
  outline: 2px solid #9c6a36;
  outline-offset: 2px;
}

.page-numbers:not(.current):not(.dots):hover::before {
  left: 100%;
}

.single-blog-hero-section {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 1920px;
  width: 100%;
  margin: 0 auto;
  padding: 3em 6vw 8em 6vw;
  gap: 2em;
}
.single-blog-hero-section .post-featured-image-hero,
.single-blog-hero-section .featured-image-container {
  max-height: 300px;
  width: 100%;
  overflow: hidden;
  border-radius: 15px;
}
.single-blog-hero-section .post-featured-image-hero img,
.single-blog-hero-section .featured-image-container img {
  max-height: 300px;
  width: auto;
  -o-object-fit: cover;
     object-fit: cover;
  min-width: 100%;
}
.single-blog-hero-section .category-tag-hero {
  font-weight: 600;
  color: #9c6a36;
  font-size: 1.2em;
}
.single-blog-hero-section .post-navigation-hero {
  margin-top: 3rem;
  padding: 0;
  width: 100%;
}
.single-blog-hero-section .nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 100%;
  gap: 2rem;
}
.single-blog-hero-section .nav-item {
  flex: 1;
  display: flex;
}
.single-blog-hero-section .nav-item.prev-post {
  justify-content: flex-start;
}
.single-blog-hero-section .nav-item.all-posts {
  justify-content: center;
}
.single-blog-hero-section .nav-item.next-post {
  justify-content: flex-end;
}
.single-blog-hero-section .nav-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: #333;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.3s ease;
  padding: 0.5rem 0;
}
.single-blog-hero-section .nav-link:hover {
  color: #c09251;
}
.single-blog-hero-section .nav-link.disabled {
  color: #ccc;
  cursor: not-allowed;
  pointer-events: none;
}
.single-blog-hero-section .nav-link.all-posts-link {
  border: 1px solid #ddd;
  border-radius: 25px;
  padding: 0.75rem 1.5rem;
  background: white;
  color: #333;
  font-weight: 500;
}
.single-blog-hero-section .nav-link.all-posts-link:hover {
  border-color: #c09251;
  background: #c09251;
  color: white;
}
.single-blog-hero-section .nav-icon {
  display: none;
}
.single-blog-hero-section .nav-label {
  display: none;
}
.single-blog-hero-section .nav-content {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.single-blog-hero-section .nav-title {
  font-size: 0.9rem;
  font-weight: 500;
  color: inherit;
  margin: 0;
}
.single-blog-hero-section .prev-post .nav-link:not(.disabled)::before {
  content: "<";
  margin-right: 0.5rem;
  font-weight: bold;
}
.single-blog-hero-section .next-post .nav-link:not(.disabled)::after {
  content: ">";
  margin-left: 0.5rem;
  font-weight: bold;
}
@media (max-width: 768px) {
  .single-blog-hero-section .nav-container {
    flex-direction: column;
    gap: 1rem;
  }
  .single-blog-hero-section .nav-item {
    width: 100%;
  }
  .single-blog-hero-section .nav-item.prev-post, .single-blog-hero-section .nav-item.next-post {
    justify-content: center;
  }
  .single-blog-hero-section .nav-link {
    justify-content: center;
    text-align: center;
  }
  .single-blog-hero-section .nav-link.all-posts-link {
    padding: 1rem 2rem;
  }
}

.product-card {
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  min-height: 800px;
  padding: 1.5em;
  display: flex;
  width: 100%;
  flex-direction: column;
}
@media (max-width: 768px) {
  .product-card {
    min-height: 700px;
  }
}

.priority-product .product-card {
  background-color: #383022;
  color: #ffffff;
}
.priority-product .product-card .product-title {
  color: #ffffff;
}
.priority-product .product-card .product-category {
  color: rgba(255, 255, 255, 0.9);
}
.priority-product .product-card .attribute-item {
  color: rgba(255, 255, 255, 0.8);
}
.priority-product .product-card .price-gross {
  color: #ffffff;
}
.priority-product .product-card .price-gross span {
  color: #ffffff;
}
.priority-product .product-card .price-net {
  color: rgba(255, 255, 255, 0.7);
}
.priority-product .product-card .price-net span {
  color: rgba(255, 255, 255, 0.7);
}
.priority-product .product-card .tax-label {
  color: rgba(255, 255, 255, 0.8);
}
.priority-product .product-card .add-to-cart-button {
  background-color: white;
}
.priority-product .product-card .add-to-cart-button:hover {
  background-color: rgba(255, 255, 255, 0.8);
}
.priority-product .product-card .add-to-cart-button .cart-icon {
  color: #ffffff;
}
.priority-product .product-card .product-link {
  color: #ffffff !important;
}
.priority-product .product-card .product-subtitle {
  color: #ffffff !important;
}

.product-link {
  display: block;
  text-decoration: none !important;
  color: rgb(56, 48, 34);
  color: inherit;
}

.badge {
  display: inline-block;
  padding: 4px 8px;
  font-size: 0.8em;
  border-radius: 4px;
  margin-bottom: 0.3em;
}

.badge-tag,
.badge-sale {
  background-color: #a78f83;
  color: white;
}

.product-image {
  text-align: center;
  margin-bottom: 15px;
}

.product-image img {
  max-width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  width: 100%;
}

.fav-ivon {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 1;
  background-color: #fff;
  border: 2px solid #f2f2f2;
  border-radius: 50%;
  padding: 5px;
  width: 43px;
  height: 43px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.fav-ivon a {
  line-height: 0;
}

.product-category {
  margin-bottom: 5px;
  font-weight: 500;
}
.product-category p {
  font-size: 1.1em;
  color: #9c6a36;
  font-weight: 500;
}

.product-title {
  font-size: 1.1em;
  font-weight: 700;
  color: #333;
  margin-top: 0;
  margin-bottom: 8px;
  line-height: 1.3;
}

.attribute-item {
  display: flex;
  align-items: center;
  font-size: 13px;
  color: #666;
  margin-bottom: 5px;
}

.attribute-icon {
  margin-right: 8px;
  font-size: 14px;
  width: 20px;
  display: inline-block;
  text-align: center;
}

.product-rating {
  margin-bottom: 12px;
}

.star {
  color: #f7c84c;
  font-size: 16px;
  letter-spacing: 2px;
}

.star-empty {
  color: #ddd;
}

.product-price {
  font-weight: 600;
}

.product-subtitle {
  text-decoration: none !important;
  color: rgb(56, 48, 34) !important;
}

.price-gross {
  font-size: 1.1em;
  line-height: 1.1;
  font-weight: 600;
}
.price-gross span {
  font-size: 1.1em;
  font-weight: 600;
}

.tax-label {
  font-size: 0.8em;
  font-weight: normal;
}

.price-net {
  font-size: 0.9em;
  color: #888;
  margin-top: 0.5em;
}
.price-net span {
  font-size: 0.9em;
  color: #888;
}

.product-info-bottom {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
}
.product-info-bottom .product-price {
  width: 50%;
  display: flex;
  flex-direction: column;
  gap: 0.3em;
}

.add-to-cart-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0.7em;
  background-color: rgb(242, 242, 242);
  border-radius: 50%;
  text-decoration: none;
  transition: background-color 0.2s ease;
}

.add-to-cart-button:hover {
  background-color: #9c6a36;
}

.cart-icon {
  font-size: 18px;
}

.compare-button {
  position: absolute;
  bottom: 10px;
  right: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  width: auto;
  height: auto;
  padding: 0.5em;
  background-color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-left: 0;
  font-size: 0.85rem;
  gap: 0.5em;
  opacity: 0;
  transform: translateY(10px);
  z-index: 10;
}
.compare-button::before {
  content: "";
  width: 18px;
  height: 18px;
  border: 2px solid #ccc;
  border-radius: 3px;
  background-color: white;
  transition: all 0.2s ease;
  flex-shrink: 0;
  position: relative;
}
.compare-button.remove-from-compare::before {
  background-color: #9c6a36;
  border-color: #9c6a36;
}
.compare-button.remove-from-compare::after {
  content: "";
  position: absolute;
  left: 13px;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 6px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  border-radius: 0 1px 1px 0;
}
.compare-button span {
  color: rgb(56, 48, 34);
  font-weight: 500;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.product-card {
  position: relative;
}
.product-card:hover .compare-button {
  opacity: 1;
  transform: translateY(0);
}

/* Product Card Layout for specific Polish style */
.polish-style .product-card {
  border: none;
  border-radius: 0;
  box-shadow: none;
  background-color: #f9f9f9;
}

.polish-style .product-image {
  background-color: white;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 15px;
}

.polish-style .product-title {
  font-weight: 700;
  color: #333;
  margin-bottom: 5px;
}

.polish-style .price-gross {
  color: #9c6a36;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .product-link {
    padding: 10px;
  }
  .product-title {
    font-size: 18px;
  }
  .product-price {
    font-size: 16px;
  }
  .attribute-item {
    font-size: 12px;
  }
}
.favorites-page {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  max-width: 1920px;
  margin: 0 auto;
  width: 100%;
  gap: 10em;
  padding: 2em 6vw 5em 6vw;
}

.favorites-page-inner {
  width: 100%;
  display: flex;
  flex-direction: column;
}

.page-header {
  text-align: center;
}

.page-title {
  font-size: 2.5em;
  margin-bottom: 10px;
  color: rgb(56, 48, 34);
  font-family: "Poppins", sans-serif;
  font-weight: 600;
}

.page-description {
  font-size: 1.1em;
  color: rgba(56, 48, 34, 0.5960784314);
  margin: 0;
  font-weight: 400;
}

/* Kontrolki ulubionych */
.favorites-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  padding: 20px;
  border-radius: 8px;
}
.favorites-controls .favorites-count-info {
  font-size: 1.1em;
  color: rgb(56, 48, 34);
  font-weight: 400;
}
.favorites-controls .favorites-count-info .count {
  font-weight: 700;
  color: #9c6a36;
}

/* Siatka ulubionych produktów */
.favorites-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 30px;
}
.favorites-grid li {
  list-style: none;
}

/* Stan braku ulubionych */
.no-favorites {
  text-align: center;
  padding: 60px 20px;
  border-radius: 12px;
  margin-top: 40px;
}
.no-favorites-icon {
  margin-bottom: 20px;
}
.no-favorites-icon img {
  width: 80px;
  height: 80px;
  opacity: 0.5;
}
.no-favorites h2 {
  font-size: 1.8em;
  margin-bottom: 15px;
  color: rgb(56, 48, 34);
  font-family: "Poppins", sans-serif;
  font-weight: 600;
}
.no-favorites p {
  font-size: 1.1em;
  color: rgba(56, 48, 34, 0.5960784314);
  margin-bottom: 30px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 400;
  line-height: 1.6;
}
.no-favorites .button {
  display: inline-block;
}

.favorites-count:empty, .favorites-count[style*="display: none"] {
  display: none !important;
}

/* Menu link ulubionych */
.favorites-menu-link {
  position: relative;
}

.menu-item-favorites {
  position: relative;
}

/* Widget ulubionych */
.favorites-widget {
  text-align: center;
}
.favorites-widget-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px;
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}
.favorites-widget-link:hover {
  color: #9c6a36;
}
.favorites-widget img {
  width: 24px;
  height: 24px;
}

/* Powiadomienia */
.favorite-notification {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 9999;
  max-width: 300px;
}

/* Animacje */
.favorite-product {
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.favorite-product.removing {
  opacity: 0;
  transform: scale(0.9);
}

/* Responsive */
@media (max-width: 724px) {
  .favorites-grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
  }
  .favorites-controls {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
  .page-title {
    font-size: 2em;
  }
  .no-favorites {
    padding: 40px 15px;
  }
  .favorite-notification {
    left: 20px;
    right: 20px;
    max-width: none;
  }
}
@media (max-width: 524px) {
  .favorites-page {
    padding: 20px 0;
  }
  .page-title {
    font-size: 1.8em;
  }
  .favorites-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .clear-all-favorites {
    padding: 12px 24px;
    font-size: 16px;
  }
}
.porownywarka-table-layout {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 1920px;
  margin: 0 auto;
  width: 100%;
  gap: 5em;
  padding: 5em 6vw 5em 6vw;
}
@media (max-width: 1024px) {
  .porownywarka-table-layout {
    padding: 3em 4vw;
    gap: 3em;
  }
}
@media (max-width: 724px) {
  .porownywarka-table-layout {
    padding: 2em 3vw;
    gap: 2em;
  }
}

.porownywarka-header {
  display: flex;
  flex-direction: column;
  gap: 1em;
}

.empty-compare-state {
  display: flex;
  flex-direction: column;
  gap: 1em;
  justify-content: flex-start;
  align-items: flex-start;
  background-color: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  padding: 4em 8em;
  width: 100%;
}
@media (max-width: 724px) {
  .empty-compare-state {
    padding: 2em 3em;
  }
}
@media (max-width: 524px) {
  .empty-compare-state {
    padding: 1.5em 2em;
  }
}

.compare-table {
  overflow-x: auto;
  overflow-y: visible;
  width: 100%;
  min-width: 100%;
  scrollbar-width: thin;
  scrollbar-color: #c1c1c1 #f1f1f1;
}
.compare-table::-webkit-scrollbar {
  height: 8px;
}
.compare-table::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 4px;
}
.compare-table::-webkit-scrollbar-thumb {
  background: #c1c1c1;
  border-radius: 4px;
}
.compare-table::-webkit-scrollbar-thumb:hover {
  background: #a8a8a8;
}

.products-table-row,
.attribute-table-row {
  display: grid;
  grid-template-columns: 400px repeat(3, 1fr);
  gap: 1em;
  min-width: 800px;
}
@media (max-width: 1024px) {
  .products-table-row,
  .attribute-table-row {
    grid-template-columns: 300px repeat(3, 200px);
    min-width: 900px;
  }
}

.products-table-row {
  margin-bottom: 2em;
}
.products-table-row .row-label-cell {
  padding: 2em 1.5em;
  background: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-direction: column;
  border-radius: 5px;
}
@media (max-width: 724px) {
  .products-table-row .row-label-cell {
    padding: 1.5em 1em;
  }
}
@media (max-width: 524px) {
  .products-table-row .row-label-cell {
    padding: 1em 0.8em;
  }
}
.products-table-row .row-label-cell .compare-differents {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.5em;
}
.products-table-row .row-label-cell .compare-differents .point {
  width: 15px;
  height: 15px;
  background-color: #9c6a36;
  border-radius: 50%;
}
@media (max-width: 524px) {
  .products-table-row .row-label-cell .compare-differents .point {
    width: 12px;
    height: 12px;
  }
}
@media (max-width: 524px) {
  .products-table-row .row-label-cell .compare-differents p {
    font-size: 0.85rem;
  }
}
.products-table-row .row-label-cell h2 {
  font-size: 1.3em;
}
@media (max-width: 724px) {
  .products-table-row .row-label-cell h2 {
    font-size: 1.1em;
  }
}
@media (max-width: 524px) {
  .products-table-row .row-label-cell h2 {
    font-size: 1em;
  }
}
.products-table-row .row-label-cell span {
  font-weight: 700;
  color: #9c6a36;
  font-size: 1.1rem;
}
@media (max-width: 724px) {
  .products-table-row .row-label-cell span {
    font-size: 1rem;
  }
}
@media (max-width: 524px) {
  .products-table-row .row-label-cell span {
    font-size: 0.9rem;
  }
}

.product-table-cell {
  border-right: 1px solid white;
  background: white;
  position: relative;
  border-radius: 5px;
}
.product-table-cell:last-child {
  border-right: none;
}

.add-product-placeholder {
  padding: 2em 1em;
  text-align: center;
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 724px) {
  .add-product-placeholder {
    padding: 1.5em 0.8em;
    min-height: 150px;
  }
}
@media (max-width: 524px) {
  .add-product-placeholder {
    padding: 1em 0.5em;
    min-height: 120px;
  }
}
.add-product-placeholder .add-product-large {
  background: none;
  border: none;
  cursor: pointer;
  color: #4a4a4a;
  transition: color 0.3s ease;
  text-decoration: none;
  display: block;
}
.add-product-placeholder .add-product-large:hover .plus-icon {
  transform: scale(1.1);
}
.add-product-placeholder .add-product-large .plus-icon {
  width: 50px;
  height: 50px;
  border: 2px solid currentColor;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5em;
  margin: 0 auto 0.8em;
  transition: all 0.3s ease;
  color: #4a4a4a;
}
@media (max-width: 524px) {
  .add-product-placeholder .add-product-large .plus-icon {
    width: 40px;
    height: 40px;
    font-size: 1.2em;
  }
}
.add-product-placeholder .add-product-large span {
  font-weight: 500;
  color: inherit;
  font-size: 0.85rem;
}
@media (max-width: 524px) {
  .add-product-placeholder .add-product-large span {
    font-size: 0.75rem;
  }
}

.product-header-compare {
  position: relative;
}
.product-header-compare .compare-specific-actions {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 1;
  border: 2px solid #f2f2f2;
  border-radius: 50%;
  padding: 8px;
  width: 43px;
  height: 43px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: transparent;
}
@media (max-width: 524px) {
  .product-header-compare .compare-specific-actions {
    top: 15px;
    right: 15px;
    width: 35px;
    height: 35px;
    padding: 6px;
  }
}
.product-header-compare .compare-specific-actions a {
  line-height: 0;
}
.product-header-compare .fav-ivon {
  top: 80px;
}
@media (max-width: 524px) {
  .product-header-compare .fav-ivon {
    top: 60px;
  }
}
.product-header-compare .compare-button {
  display: none;
}

.attribute-table-row {
  transition: background-color 0.2s ease;
}
.attribute-table-row:hover {
  background-color: rgba(156, 106, 54, 0.02);
}
.attribute-table-row.has-differences .attribute-value.different {
  color: #9c6a36;
  font-weight: 700;
  padding: 0.4em 0.8em;
}
@media (max-width: 524px) {
  .attribute-table-row.has-differences .attribute-value.different {
    padding: 0.3em 0.5em;
  }
}

.row-label-cell {
  padding: 1.2em 1.5em;
  background: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
}
@media (max-width: 724px) {
  .row-label-cell {
    padding: 1em 1.2em;
  }
}
@media (max-width: 524px) {
  .row-label-cell {
    padding: 0.8em 1em;
  }
}
.row-label-cell .attribute-name {
  font-weight: 600;
  color: rgb(56, 48, 34);
  font-size: 0.9rem;
  line-height: 1.4;
}
@media (max-width: 724px) {
  .row-label-cell .attribute-name {
    font-size: 0.85rem;
  }
}
@media (max-width: 524px) {
  .row-label-cell .attribute-name {
    font-size: 0.8rem;
  }
}

.attribute-value-cell {
  padding: 1.2em 1em;
  background: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 60px;
}
@media (max-width: 724px) {
  .attribute-value-cell {
    padding: 1em 0.8em;
    min-height: 50px;
  }
}
@media (max-width: 524px) {
  .attribute-value-cell {
    padding: 0.8em 0.6em;
    min-height: 45px;
  }
}
.attribute-value-cell .attribute-value {
  font-size: 0.85rem;
  line-height: 1.4;
  color: rgb(56, 48, 34);
  word-break: break-word;
}
@media (max-width: 724px) {
  .attribute-value-cell .attribute-value {
    font-size: 0.8rem;
  }
}
@media (max-width: 524px) {
  .attribute-value-cell .attribute-value {
    font-size: 0.75rem;
  }
}
.attribute-value-cell .attribute-value:empty::before {
  content: "—";
  color: rgba(56, 48, 34, 0.3);
}

.loading {
  opacity: 0.6;
  pointer-events: none;
  position: relative;
}
.loading::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 24px;
  height: 24px;
  margin: -12px 0 0 -12px;
  border: 3px solid #f3f3f3;
  border-top: 3px solid #9c6a36;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  z-index: 1000;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.porownywarka-table-layout {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 1920px;
  margin: 0 auto;
  width: 100%;
  gap: 5em;
  padding: 5em 6vw 5em 6vw;
}
@media (max-width: 1024px) {
  .porownywarka-table-layout {
    padding: 3em 4vw;
    gap: 3em;
  }
}
@media (max-width: 724px) {
  .porownywarka-table-layout {
    padding: 2em 3vw;
    gap: 2em;
  }
}

.porownywarka-header {
  display: flex;
  flex-direction: column;
  gap: 1em;
}
@media (max-width: 524px) {
  .porownywarka-header h1 {
    font-size: 24px;
  }
}
@media (max-width: 524px) {
  .porownywarka-header p {
    font-size: 14px;
  }
}

.filter-section {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 1em;
  width: 100%;
}

.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 20px;
}

.filter-item {
  flex: 1;
  min-width: 250px;
}
@media (max-width: 724px) {
  .filter-item {
    min-width: 100%;
  }
}
.filter-item label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
}

.porownywarka-select {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 14px;
  color: #383022;
  background-color: #fff;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="%239c6a36" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M6 9l6 6 6-6"/></svg>');
  background-repeat: no-repeat;
  background-position: right 15px center;
  background-size: 16px;
}

.attribute-comparison-container {
  width: 100%;
  margin-bottom: 2em;
}

.comparison-results {
  width: 100%;
  margin-bottom: 2em;
}

.attribute-comparison-title {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 20px;
  color: rgb(56, 48, 34);
}

.attribute-columns {
  display: grid;
  grid-template-columns: 0.5fr 1fr 1fr 1fr;
  gap: 2em;
  width: 100%;
  background-color: white;
  border-radius: 15px;
  padding: 1.5em;
}
@media (max-width: 724px) {
  .attribute-columns {
    grid-template-columns: 1fr;
    gap: 1em;
  }
}

.attribute-column {
  width: 100%;
  display: flex;
}
@media (max-width: 724px) {
  .attribute-column {
    min-width: 100%;
  }
}
.attribute-column h4 {
  font-weight: 500;
  margin-bottom: 12px;
  color: #9c6a36;
}

.compare-differents {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.5em;
}
.compare-differents .point {
  width: 15px;
  height: 15px;
  background-color: #9c6a36;
  border-radius: 50%;
}
@media (max-width: 524px) {
  .compare-differents .point {
    width: 12px;
    height: 12px;
  }
}
@media (max-width: 524px) {
  .compare-differents p {
    font-size: 0.85rem;
  }
}

.attribute-selects {
  display: flex;
  flex-direction: column;
  gap: 1em;
  background-color: white;
  border-radius: 15px;
  padding: 1.5em;
  width: 100%;
}

.comparison-columns-container {
  overflow-x: auto;
  overflow-y: visible;
  width: 100%;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: #c1c1c1 #f1f1f1;
}
.comparison-columns-container::-webkit-scrollbar {
  height: 8px;
}
.comparison-columns-container::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 4px;
}
.comparison-columns-container::-webkit-scrollbar-thumb {
  background: #c1c1c1;
  border-radius: 4px;
}
.comparison-columns-container::-webkit-scrollbar-thumb:hover {
  background: #a8a8a8;
}

#comparison-content {
  display: grid;
  grid-template-columns: 200px repeat(3, 1fr);
  gap: 1em;
  min-width: 800px;
}
@media (max-width: 1024px) {
  #comparison-content {
    grid-template-columns: 300px repeat(3, 200px);
    min-width: 900px;
  }
}

.comparison-column {
  display: flex;
  flex-direction: column;
  background-color: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  justify-content: space-between;
}
.comparison-column.property-column .property-item {
  font-weight: 500;
  color: rgb(56, 48, 34);
  text-align: left;
}

.property-item {
  padding: 1.2em 1.5em;
  display: flex;
  align-items: center;
  overflow: hidden;
  transition: height 0.2s ease;
  font-size: 0.9rem;
  border-bottom: 1px solid #f2f2f2;
  height: auto;
}
@media (max-width: 724px) {
  .property-item {
    padding: 1em 1.2em;
    font-size: 0.85rem;
  }
}
@media (max-width: 524px) {
  .property-item {
    padding: 0.8em 1em;
    font-size: 0.8rem;
  }
}
.property-item:nth-child(even) {
  background-color: rgb(248, 248, 248);
}

.property-value {
  padding: 1.2em 1em;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  transition: height 0.2s ease;
  font-size: 0.85rem;
  height: auto;
}
@media (max-width: 724px) {
  .property-value {
    padding: 1em 0.8em;
    font-size: 0.8rem;
  }
}
@media (max-width: 524px) {
  .property-value {
    padding: 0.8em 0.6em;
    font-size: 0.75rem;
  }
}
.property-value.difference-highlight {
  color: #9c6a36;
  font-weight: 700;
  position: relative;
}
.property-value:nth-child(even) {
  background-color: rgb(248, 248, 248);
}
.property-value:empty::before {
  content: "—";
  color: rgba(56, 48, 34, 0.3);
}

.no-products-message {
  text-align: center;
  padding: 30px;
  border-radius: 5px;
  background-color: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  width: 100%;
}
.no-products-message p {
  color: rgb(56, 48, 34);
  font-size: 0.9rem;
}
@media (max-width: 524px) {
  .no-products-message p {
    font-size: 0.85rem;
  }
}

.loading-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 30px;
  width: 100%;
}
.loading-indicator p {
  margin-top: 15px;
  color: rgb(56, 48, 34);
  font-size: 0.9rem;
}
@media (max-width: 524px) {
  .loading-indicator p {
    font-size: 0.85rem;
  }
}

.spinner {
  width: 40px;
  height: 40px;
  border: 4px solid rgba(143, 131, 107, 0.3);
  border-radius: 50%;
  border-top-color: #9c6a36;
  animation: spin 1s linear infinite;
}
@media (max-width: 524px) {
  .spinner {
    width: 32px;
    height: 32px;
    border-width: 3px;
  }
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
[data-row] {
  transition: height 0.2s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  font-weight: 400;
  color: rgb(56, 48, 34);
  line-height: 1.3;
  margin: 0;
  padding: 0;
  width: 100%;
  max-width: none;
  margin: 0 auto !important;
  background-color: rgb(251, 251, 251);
}

main {
  margin: 0 auto !important;
  display: block;
}

h1 {
  font-weight: 600;
  font-size: 2.25rem;
  line-height: 1.1;
  margin: 0;
  padding: 0;
}
@media (min-width: 724px) {
  h1 {
    font-size: 2.4rem;
  }
}
@media (min-width: 1024px) {
  h1 {
    font-size: 2.6rem;
  }
}
@media (min-width: 1400px) {
  h1 {
    font-size: 2.8rem;
  }
}
h1 span {
  font-weight: 600;
  font-size: 2.25rem;
  line-height: 1.1;
  color: #9c6a36;
  margin: 0;
  padding: 0;
}
@media (min-width: 724px) {
  h1 span {
    font-size: 2.4rem;
  }
}
@media (min-width: 1024px) {
  h1 span {
    font-size: 2.6rem;
  }
}
@media (min-width: 1400px) {
  h1 span {
    font-size: 2.8rem;
  }
}

h2 {
  font-weight: 600;
  font-size: 2rem;
  line-height: 1.1;
  margin: 0;
  padding: 0;
}
@media (min-width: 724px) {
  h2 {
    font-size: 2.2rem;
  }
}
@media (min-width: 1024px) {
  h2 {
    font-size: 2.6rem;
  }
}
@media (min-width: 1400px) {
  h2 {
    font-size: 2.8rem;
  }
}
h2 span {
  font-weight: 600;
  font-size: 2rem;
  line-height: 1.1;
  color: #9c6a36;
  margin: 0;
  padding: 0;
}
@media (min-width: 724px) {
  h2 span {
    font-size: 2.2rem;
  }
}
@media (min-width: 1024px) {
  h2 span {
    font-size: 2.6rem;
  }
}
@media (min-width: 1400px) {
  h2 span {
    font-size: 2.8rem;
  }
}

h3 {
  font-weight: 500;
  font-size: 1.4rem;
  margin: 0;
  padding: 0;
}
@media (min-width: 724px) {
  h3 {
    font-size: 1.5rem;
  }
}
h3 span {
  font-weight: 500;
  font-size: 1.4rem;
  margin: 0;
  padding: 0;
}
@media (min-width: 724px) {
  h3 span {
    font-size: 1.5rem;
  }
}

.h3-big {
  font-weight: 500;
  font-size: 1.5rem;
  margin: 0;
  padding: 0;
}
@media (min-width: 724px) {
  .h3-big {
    font-size: 1.6rem;
  }
}

a {
  text-decoration: none;
  color: white;
}
a:focus {
  text-decoration: none;
}

ul,
ol {
  margin: 0;
  padding: 0;
}

b,
strong {
  font-weight: 700;
}

p,
li,
span,
a,
select {
  font-size: 0.9rem;
  font-weight: 400;
  margin: 0;
  padding: 0;
  line-height: 1.5;
  color: rgb(56, 48, 34);
}
@media (min-width: 1400px) {
  p,
  li,
  span,
  a,
  select {
    font-size: 1rem;
  }
}

a {
  text-decoration: none;
}
a:hover {
  color: rgb(56, 48, 34);
}

a:hover,
a:focus,
a:active {
  color: transparent;
}

.p-big {
  font-weight: 700;
  font-size: 1.2rem;
}

.main-button {
  background-color: #9c6a36 !important;
  padding: 10px 40px !important;
  text-decoration: none !important;
  color: white !important;
  transition: background-color 0.3s ease, color 0.3s ease;
  border: 1px solid #9c6a36 !important;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  border-radius: 30px !important;
  gap: 2em;
  font-weight: 500;
}
.main-button span {
  color: white;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.main-button::after {
  content: "";
  background-image: url("../images/button-arrow.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 16px;
  height: 16px;
  margin-left: 8px;
  display: inline-block;
  transition: transform 0.3s ease;
}
.main-button:hover::after {
  transform: rotate(90deg);
}

.main-button-white {
  background-color: white !important;
  padding: 10px 40px !important;
  text-decoration: none !important;
  color: black !important;
  transition: background-color 0.3s ease, color 0.3s ease;
  border: 1px solid white !important;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  border-radius: 30px !important;
  gap: 2em;
}
.main-button-white span {
  color: black !important;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.main-button-white::after {
  content: "";
  background-image: url("../images/button-arrow-black.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 16px;
  height: 16px;
  margin-left: 8px;
  display: inline-block;
  transition: transform 0.3s ease;
}
.main-button-white:hover::after {
  transform: rotate(90deg);
}

.main-button-outline {
  background-color: transparent !important;
  padding: 10px 40px !important;
  text-decoration: none !important;
  color: black !important;
  transition: background-color 0.3s ease, color 0.3s ease;
  border: 1px solid black !important;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  border-radius: 30px !important;
  gap: 2em;
}
.main-button-outline span {
  color: white;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.main-button-outline::after {
  content: "";
  background-image: url("../images/button-arrow-black.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 16px;
  height: 16px;
  margin-left: 8px;
  display: inline-block;
  transition: transform 0.3s ease;
}
.main-button-outline:hover::after {
  transform: rotate(90deg);
}

.main-button-outline-white {
  background-color: transparent !important;
  padding: 10px 40px !important;
  text-decoration: none !important;
  color: rgb(255, 255, 255) !important;
  transition: background-color 0.3s ease, color 0.3s ease;
  border: 1px solid rgb(255, 255, 255) !important;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  border-radius: 30px !important;
  gap: 2em;
}
.main-button-outline-white span {
  color: white;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.main-button-outline-white::after {
  content: "";
  background-image: url("../images/button-arrow.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 16px;
  height: 16px;
  margin-left: 8px;
  display: inline-block;
  transition: transform 0.3s ease;
}
.main-button-outline-white:hover::after {
  transform: rotate(90deg);
}

.cart-button {
  background-color: #9c6a36 !important;
  padding: 10px 40px !important;
  text-decoration: none !important;
  color: white !important;
  transition: background-color 0.3s ease, color 0.3s ease;
  border: 1px solid #9c6a36 !important;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  border-radius: 30px !important;
  gap: 2em;
  width: 100% !important;
}
.cart-button span {
  color: white;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.cart-button::after {
  content: "";
  background-image: url("../images/koszyk-white.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 20px;
  height: 20px;
  margin-left: 8px;
  display: inline-block;
  transition: transform 0.3s ease;
}
.cart-button .button-text {
  display: inline-block;
  transition: opacity 0.3s;
  color: white;
}
.cart-button .spinner {
  position: absolute;
  width: 20px;
  height: 20px;
  border: 2px solid #9c6a36;
  border-top-color: rgb(226, 226, 226);
  border-radius: 50%;
  opacity: 0;
  animation: spin 0.8s linear infinite;
}
.cart-button.loading .button-text {
  opacity: 0;
}
.cart-button.loading .spinner {
  opacity: 1;
}

.single-page-section {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 1920px;
  width: 100%;
  margin: 0 auto;
  padding: 3em 6vw 3em 6vw;
  gap: 1em;
}
.single-page-section .data-section {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1em;
}
.single-page-section ol,
.single-page-section ul {
  margin-left: 1.3em;
  display: flex;
  flex-direction: column;
  gap: 0.5em;
}
.single-page-section table {
  width: 100%;
  border-collapse: collapse;
  margin: 15px 0;
}
.single-page-section th,
.single-page-section td {
  border: 1px solid #ddd;
  padding: 8px;
  text-align: left;
}
.single-page-section th {
  background-color: #f2f2f2;
}

.error-404 {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: center;
  max-width: 1920px;
  width: 100%;
  margin: 0 auto;
  gap: 1em;
  padding: 0em 0vw 0em 6vw;
  position: relative;
  overflow: hidden;
}
.error-404 .descriptinon-404 {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  gap: 1em;
  width: 50%;
  padding: 5em 0vw 5em 0vw;
}
@media (max-width: 1024px) {
  .error-404 .descriptinon-404 {
    width: 100%;
  }
}
.error-404 .img-404 {
  width: 60%;
  position: relative;
  height: 70vh;
}
@media (max-width: 1324px) {
  .error-404 .img-404 {
    width: 60%;
  }
}
@media (max-width: 1024px) {
  .error-404 .img-404 {
    display: none;
  }
}
.error-404 .page-title {
  font-size: 15em;
  color: #9c6a36;
  z-index: 2;
  text-align: center;
}
@media (max-width: 1024px) {
  .error-404 .page-title {
    font-size: 10em;
  }
}
.error-404 .buttons-inline {
  display: flex;
  flex-direction: row;
  gap: 1em;
  z-index: 2;
  margin-top: 3em;
}
.error-404 img {
  position: absolute;
  top: -20%;
  right: 0;
  width: auto;
  height: 190%;
  pointer-events: none;
  -o-object-fit: cover;
     object-fit: cover;
}

.tag {
  font-size: 1em;
  font-weight: 500;
  text-transform: uppercase;
  color: rgb(56, 48, 34) !important;
}

.tag-white {
  font-size: 1em;
  font-weight: 500;
  text-transform: uppercase;
  color: white !important;
}

.tag-col {
  font-size: 1em;
  font-weight: 500;
  text-transform: uppercase;
  color: #9c6a36;
}/*# sourceMappingURL=main.css.map */