@charset "UTF-8";
/*
Theme Name: Optimized MK Ecommerce Theme

WooCommerce styles override
*/
@font-face {
  font-family: "Bookman Old Style";
  src: url("/wp-content/themes/optimized/assets/fonts/bookmanoldstyle.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: block;
}
@font-face {
  font-family: "Bookman Old Style";
  src: url("/wp-content/themes/optimized/assets/fonts/bookmanoldstyle_bold.woff2") format("woff2");
  font-weight: 900;
  font-style: normal;
  font-display: block;
}
/**
 * Products
 */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px 24px;
}
@media (max-width: 1024px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .product-grid {
    grid-template-columns: 1fr;
  }
}

.product-card {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.product-card.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.product-card__media {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  aspect-ratio: 1/1;
  background: #f6f6f6;
}
.product-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.product-card__img--hover {
  position: absolute;
  inset: 0;
  opacity: 0;
}
.product-card:not(.product-card--no-hover):hover .product-card__img--hover {
  opacity: 1;
  transform: scale(1.04);
}
.product-card:not(.product-card--no-hover):hover .product-card__img--main {
  opacity: 0;
}
.product-card:hover .product-card__quick {
  opacity: 1;
  transform: translateY(0);
}
.product-card__badges {
  position: absolute;
  top: 14px;
  left: 14px;
  display: flex;
  justify-content: space-between;
  gap: 6px;
  width: 100%;
}
.product-card__badge {
  font-size: 12px;
  padding: 5px 8px;
  background: #86704d;
  color: #fff;
  letter-spacing: 0.08em;
}
.product-card__swatches {
  position: absolute;
  bottom: 60px;
  left: 14px;
  display: flex;
  gap: 6px;
}
.product-card__swatch {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 1px solid #ddd;
  cursor: pointer;
  transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.product-card__swatch:hover {
  transform: scale(1.2);
}
.product-card__quick {
  position: absolute;
  bottom: 0px;
  left: 0px;
  width: 100%;
  opacity: 0;
  transform: translateY(12px);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.product-card__quick .button {
  width: 100%;
  background: #86704d;
  color: #fff;
  padding: 13px;
  font-size: 14px;
  position: relative;
  text-decoration: none;
  display: block;
  text-align: center;
}
.product-card__quick .button.loading {
  color: transparent;
}
.product-card__quick .button.loading::after {
  content: "";
  width: 18px;
  height: 18px;
  border: 2px solid #fff;
  border-top-color: transparent;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: spin 0.6s linear infinite;
}
.product-card__info {
  padding-top: 14px;
}
.product-card__title {
  font-size: 15px;
  font-weight: 700;
  color: #333;
  line-height: 1.3;
  text-decoration: none;
}
.product-card__desc {
  font-size: 13px;
  color: #333;
  line-height: 1.4;
  margin: 4px 0 8px;
}
.product-card__price {
  font-weight: 700;
  font-size: 14px;
}

.added_to_cart {
  display: none !important;
}

.quick-view {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s ease;
}
.quick-view.open {
  opacity: 1;
  pointer-events: auto;
}
.quick-view__content {
  background: #fff;
  padding: 30px;
  max-width: 900px;
  width: 100%;
  transform: translateY(-20px);
  transition: transform 0.3s ease;
}
.quick-view.open .quick-view__content {
  transform: translateY(0);
}

@keyframes spin {
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
.free-shipping-wrapper {
  margin-top: 14px;
}

.free-shipping-bar {
  height: 6px;
  background: #eee;
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 8px;
}

.free-shipping-progress {
  height: 100%;
  background: #86704d;
  width: 0;
  transition: width 0.35s ease;
}

.free-shipping-text {
  font-size: 14px;
}
.free-shipping-text strong {
  font-weight: 700;
}

/**
 * Archive / filters
 */
.cat-nav {
  margin: 50px auto;
}
.cat-nav__back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: #333;
  text-decoration: none;
  margin-bottom: 20px;
  transition: color 0.2s;
}
.cat-nav__back:hover {
  color: #86704d;
}
.cat-nav__back svg {
  flex-shrink: 0;
}
.cat-nav__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}
.cat-nav__grid .cat-card {
  width: 140px;
}

.cat-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.cat-card__media {
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  border: 2px solid transparent;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.cat-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.cat-card:hover .cat-card__media {
  border-color: #86704d;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}
.cat-card:hover .cat-card__media img {
  transform: scale(1.05);
}
.cat-card__name {
  font-size: 13px;
  font-weight: 600;
  color: #333;
  text-align: center;
  line-height: 1.3;
  transition: color 0.2s;
}
.cat-card:hover .cat-card__name {
  color: #86704d;
}

.archive-main {
  min-width: 0;
  margin-top: 50px;
}

.archive-filters {
  position: fixed;
  inset: 0 auto 0 0;
  width: 320px;
  max-width: 90vw;
  background: #fff;
  border-right: 1px solid #e8e8e8;
  overflow-y: auto;
  z-index: 500;
  transform: translateX(-110%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  padding: 150px 24px 24px;
}
@media (max-width: 768px) {
  .archive-filters {
    padding: 100px 24px 24px;
  }
}
.archive-filters.is-open {
  transform: translateX(0);
}
.archive-filters__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.archive-filters__title {
  font-size: 16px;
  font-weight: 700;
  color: #333;
}
.archive-filters__header-right {
  display: flex;
  align-items: center;
  gap: 12px;
}
.archive-filters__clear {
  background: none;
  border: none;
  font-size: 12px;
  color: #86704d;
  cursor: pointer;
  padding: 0;
  text-decoration: underline;
}
.archive-filters__clear:hover {
  opacity: 0.7;
}
.archive-filters__close {
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  width: 30px;
  height: 30px;
  cursor: pointer;
  color: #333;
  transition: border-color 0.2s, color 0.2s;
}
.archive-filters__close:hover {
  border-color: #86704d;
  color: #86704d;
}
.archive-filters__apply {
  display: block;
  width: 100%;
  margin-top: 24px;
  padding: 12px;
  background: #86704d;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}
.archive-filters__apply:hover {
  background: #6b4f41;
}

.filters-overlay {
  display: block;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 499;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.filters-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

body.filters-open {
  overflow: hidden;
}

.filter-group {
  border-bottom: 1px solid #f0f0f0;
  padding: 16px 0;
}
.filter-group:first-of-type {
  padding-top: 0;
}
.filter-group:last-of-type {
  border-bottom: none;
}
.filter-group__toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: none;
  border: none;
  padding: 0;
  font-size: 13px;
  font-weight: 600;
  color: #333;
  cursor: pointer;
  text-align: left;
}
.filter-group__toggle:hover {
  color: #86704d;
}
.filter-group__chevron {
  width: 8px;
  height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  transition: transform 0.2s ease;
  flex-shrink: 0;
  margin-top: -4px;
}
.filter-group__toggle[aria-expanded=false] .filter-group__chevron {
  transform: rotate(-45deg);
  margin-top: 4px;
}
.filter-group__body {
  padding-top: 14px;
}

.filter-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.filter-checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  user-select: none;
}
.filter-checkbox input[type=checkbox] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.filter-checkbox__box {
  width: 18px;
  height: 18px;
  border: 2px solid #d0d0d0;
  border-radius: 4px;
  flex-shrink: 0;
  position: relative;
  transition: border-color 0.15s, background 0.15s;
}
.filter-checkbox__box::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 5px;
  width: 5px;
  height: 9px;
  border: 2px solid #fff;
  border-top: none;
  border-left: none;
  transform: rotate(45deg);
  opacity: 0;
  transition: opacity 0.15s;
}
input:checked ~ .filter-checkbox__box {
  background: #86704d;
  border-color: #86704d;
}
input:checked ~ .filter-checkbox__box::after {
  opacity: 1;
}
.filter-checkbox:hover .filter-checkbox__box {
  border-color: #86704d;
}
.filter-checkbox__label {
  font-size: 13px;
  color: #333;
  flex: 1;
}
.filter-checkbox__count {
  font-size: 12px;
  color: #999;
}

.archive-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  gap: 12px;
}
.archive-toolbar__count {
  font-size: 13px;
  color: #888;
}
.archive-toolbar__count .woocommerce-result-count {
  margin: 0;
}
.archive-toolbar__right {
  display: flex;
  align-items: center;
  gap: 12px;
}
.archive-toolbar__filter-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 600;
  color: #333;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
  position: relative;
}
.archive-toolbar__filter-btn:hover {
  border-color: #86704d;
  color: #86704d;
}
.archive-toolbar__filter-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 18px;
  height: 18px;
  padding: 0 4px;
  background: #86704d;
  color: #fff;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
}

.sort-select {
  position: relative;
  display: flex;
  align-items: center;
}
.sort-select__input {
  appearance: none;
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 8px 36px 8px 14px;
  font-size: 13px;
  color: #333;
  cursor: pointer;
  outline: none;
  transition: border-color 0.2s;
}
.sort-select__input:hover, .sort-select__input:focus {
  border-color: #86704d;
}
.sort-select__chevron {
  position: absolute;
  right: 12px;
  width: 8px;
  height: 8px;
  border-right: 2px solid #888;
  border-bottom: 2px solid #888;
  transform: rotate(45deg) translateY(-3px);
  pointer-events: none;
}

.active-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}
.active-filters__chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(134, 112, 77, 0.08);
  border: 1px solid rgba(134, 112, 77, 0.25);
  color: #86704d;
  border-radius: 100px;
  padding: 4px 12px;
  font-size: 12px;
  font-weight: 600;
}
.active-filters__remove {
  color: #86704d;
  text-decoration: none;
  font-size: 16px;
  line-height: 1;
  opacity: 0.6;
  transition: opacity 0.15s;
}
.active-filters__remove:hover {
  opacity: 1;
}

.archive-pagination {
  margin-top: 48px;
  display: flex;
  justify-content: center;
}
.archive-pagination .woocommerce-pagination ul.page-numbers {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.archive-pagination .woocommerce-pagination li {
  display: flex;
}
.archive-pagination .woocommerce-pagination .page-numbers {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 8px;
  font-size: 14px;
  font-weight: 600;
  color: #333;
  text-decoration: none;
  background: #f6f6f6;
}
.archive-pagination .woocommerce-pagination .page-numbers li {
  border: 1px solid #e8e8e8;
  border-radius: 8px;
  transition: border-color 0.2s, background 0.2s, color 0.2s;
  overflow: hidden;
}
.archive-pagination .woocommerce-pagination .page-numbers li:hover {
  border-color: #86704d;
  color: #86704d;
}
.archive-pagination .woocommerce-pagination .page-numbers.current {
  background: #86704d;
  border-color: #86704d;
  color: #fff;
}
.archive-pagination .woocommerce-pagination .page-numbers.dots {
  border-color: transparent;
  background: transparent;
  cursor: default;
  font-weight: 400;
  color: #aaa;
}
.archive-pagination .woocommerce-pagination .page-numbers.prev, .archive-pagination .woocommerce-pagination .page-numbers.next {
  font-size: 18px;
  font-weight: 400;
}

/**
 * Single product
 */
.product-page {
  background: #f5f1eb;
  min-height: 100vh;
  color: #333;
}

.product-container .breadcrumb {
  padding: 20px 0;
  font-size: 13px;
  color: #6b6b6b;
}
.product-container .breadcrumb a {
  color: #6b6b6b;
  text-decoration: none;
  transition: color 0.2s;
}
.product-container .breadcrumb a:hover {
  color: #333;
}
.product-container .breadcrumb span {
  margin: 0 8px;
  color: #d4cfc7;
}
.product-container .breadcrumb .breadcrumb_last {
  color: #333;
}
.product-container .product-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  padding-bottom: 80px;
}
@media (max-width: 768px) {
  .product-container .product-layout {
    display: flex;
    flex-direction: column;
    gap: 32px;
  }
}
.product-container .product-gallery__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
@media (max-width: 768px) {
  .product-container .product-gallery__grid {
    display: none;
  }
}
.product-container .product-gallery__swiper {
  width: 100%;
  display: none;
  position: relative;
}
@media (max-width: 768px) {
  .product-container .product-gallery__swiper {
    display: block;
  }
}
.product-container .product-gallery__swiper .swiper-slide {
  width: auto;
}
.product-container .product-gallery__swiper .swiper-button-next,
.product-container .product-gallery__swiper .swiper-button-prev {
  position: absolute;
  top: 40%;
  width: 50px !important;
  height: 50px !important;
  border: 1px solid #86704d;
  border-radius: 50%;
  cursor: pointer;
  background: #fff;
  z-index: 10;
  transition: all 0.4s ease;
}
.product-container .product-gallery__swiper .swiper-button-next:after,
.product-container .product-gallery__swiper .swiper-button-prev:after {
  font-size: 14px !important;
  color: #86704d;
}
.product-container .product-gallery__swiper .swiper-button-next:hover,
.product-container .product-gallery__swiper .swiper-button-prev:hover {
  background: #86704d;
}
.product-container .product-gallery__swiper .swiper-button-next:hover:after,
.product-container .product-gallery__swiper .swiper-button-prev:hover:after {
  color: #fff !important;
}
.product-container .product-gallery__swiper .swiper-button-prev {
  left: 0px;
}
.product-container .product-gallery__swiper .swiper-button-next {
  right: 0px;
}
.product-container .product-gallery__swiper .swiper-pagination-bullet {
  background: #86704d;
  opacity: 0.3;
}
.product-container .product-gallery__swiper .swiper-pagination-bullet-active {
  opacity: 1;
}
.product-container .product-gallery__image {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  cursor: zoom-in;
  transition: opacity 0.3s;
  background: #e8e2d8;
}
@media (max-width: 768px) {
  .product-container .product-gallery__image {
    aspect-ratio: unset;
  }
}
.product-container .product-gallery__image:hover {
  opacity: 0.9;
}
.product-container .product-gallery__image--wide {
  grid-column: 1/-1;
}
.product-container .product-info {
  position: sticky;
  top: 100px;
  align-self: start;
}
@media (max-width: 768px) {
  .product-container .product-info {
    position: static;
  }
}
.product-container .product-title {
  font-size: 40px;
  font-weight: 700;
  margin: 0 0 16px;
  line-height: 1.2;
}
.product-container .product-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
.product-container .product-price {
  font-size: 18px;
}
.product-container .product-price .amount {
  font-weight: 700;
  font-size: 22px;
}
.product-container .product-rating {
  display: flex;
  align-items: center;
  font-size: 14px;
  margin-bottom: 14px;
}
.product-container .product-rating__stars {
  display: flex;
  gap: 2px;
  margin-right: 6px;
}
.product-container .product-rating__count {
  color: #6b6b6b;
}
.product-container .product-colors {
  margin-bottom: 28px;
}
.product-container .product-colors__label {
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 12px;
  color: #6b6b6b;
}
.product-container .product-colors__swatches {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.product-container .color-swatch {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
}
.product-container .color-swatch--tan {
  background: #c8a278;
}
.product-container .color-swatch--chocolate {
  background: #5c3d2e;
}
.product-container .color-swatch--olive {
  background: #4a5c3a;
}
.product-container .color-swatch--black {
  background: #1a1a1a;
}
.product-container .color-swatch--active {
  border-color: #333;
}
.product-container .color-swatch--active::after {
  content: "✓";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 14px;
}
.product-container .color-swatch img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-container .color-swatch:hover, .product-container .color-swatch.is-active {
  border-color: #86704d;
}
.product-container .color-swatch.is-oos {
  opacity: 0.55;
}
.product-container .color-swatch__oos {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.product-container .color-swatch__oos::before, .product-container .color-swatch__oos::after {
  content: "";
  position: absolute;
  width: 60%;
  height: 2px;
  background: #e53935;
  border-radius: 2px;
}
.product-container .color-swatch__oos::before {
  transform: rotate(45deg);
}
.product-container .color-swatch__oos::after {
  transform: rotate(-45deg);
}
.product-container .product-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.product-container .quantity-wrapper {
  display: flex;
  align-items: center;
  border: 1px solid #ddd;
}
.product-container .quantity-wrapper input.qty {
  width: 40px;
  text-align: center;
  border: none;
  outline: none;
}
.product-container .quantity-wrapper input.qty::-webkit-outer-spin-button, .product-container .quantity-wrapper input.qty::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.product-container .quantity-wrapper .qty-btn {
  width: 36px;
  height: 46px;
  border: none;
  background: transparent;
  cursor: pointer;
  font-size: 18px;
}
.product-container .quantity-wrapper .qty-btn:hover {
  color: #000;
}
.product-container .btn-add-to-cart {
  padding: 10px 20px;
  cursor: pointer;
}
.product-container .btn-buy-now {
  flex: 1;
  padding: 16px 32px;
  background: #5a31f4;
  color: white;
  border: none;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 4px;
  transition: opacity 0.3s;
}
.product-container .btn-buy-now:hover {
  opacity: 0.9;
}
.product-container .stock {
  margin-top: 0;
}
.product-container .stock.in-stock {
  color: #00b30f;
}
.product-container .stock.in-stock::before {
  content: "✓";
  margin-right: 5px;
}
.product-container .stock.out-of-stock {
  color: red;
}
.product-container .product-description {
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 32px;
  margin-top: 0;
  padding-bottom: 32px;
  border-bottom: 1px solid #d4cfc7;
}

.product-accordion {
  border-bottom: 1px solid #d4cfc7;
}
.product-accordion__item {
  border-top: 1px solid #d4cfc7;
}
.product-accordion__item:first-child {
  border-top: none;
}
.product-accordion__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  text-transform: uppercase;
  font-weight: 700;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 16px;
  text-align: left;
}
.product-accordion__trigger:hover {
  opacity: 0.7;
}
.product-accordion__trigger .icon {
  font-size: 20px;
  transition: transform 0.3s;
  color: #6b6b6b;
}
.product-accordion__trigger--open .icon {
  transform: rotate(45deg);
}
.product-accordion__content {
  padding: 0 0 18px;
  line-height: 1.7;
  color: #6b6b6b;
  animation: slideDown 0.3s ease;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.stock-popup {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 9999;
  align-items: center;
  justify-content: center;
}
.stock-popup.active {
  display: flex;
}
.stock-popup__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
}
.stock-popup__content {
  position: relative;
  max-width: 500px;
  width: 90%;
  background: #fff;
  padding: 40px 40px 20px;
  z-index: 2;
}
.stock-popup__close {
  position: absolute;
  top: 12px;
  right: 12px;
  border: none;
  background: none;
  font-size: 24px;
  cursor: pointer;
}

.sj-related-products .sj-related-header {
  margin-bottom: 50px;
}

/* Swiper */
.sj-related-swiper {
  position: relative;
}
.sj-related-swiper .swiper-slide {
  width: auto;
}
.sj-related-swiper .swiper-button-next,
.sj-related-swiper .swiper-button-prev {
  position: absolute;
  top: 40%;
  width: 50px !important;
  height: 50px !important;
  border: 1px solid #86704d;
  border-radius: 50%;
  cursor: pointer;
  background: #fff;
  z-index: 10;
  transition: all 0.4s ease;
}
.sj-related-swiper .swiper-button-next:after,
.sj-related-swiper .swiper-button-prev:after {
  font-size: 14px !important;
  color: #86704d;
}
.sj-related-swiper .swiper-button-next:hover,
.sj-related-swiper .swiper-button-prev:hover {
  background: #86704d;
}
.sj-related-swiper .swiper-button-next:hover:after,
.sj-related-swiper .swiper-button-prev:hover:after {
  color: #fff !important;
}
.sj-related-swiper .swiper-button-prev {
  left: 0px;
}
.sj-related-swiper .swiper-button-next {
  right: 0px;
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: zoom-out;
  animation: fadeIn 0.2s ease;
}
.lightbox__image {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
}
.lightbox__close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  color: white;
  font-size: 24px;
  cursor: pointer;
}
.lightbox__close:hover {
  opacity: 0.7;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.fbt-section__title {
  font-size: 20px;
  font-weight: 700;
  color: #333;
  margin-bottom: 24px;
}

/**
 * Checkout
 */
/* Main cart wrapper */
.cart-wrap {
  padding: 50px 20px;
}
.cart-wrap .cart-container {
  max-width: 1200px;
  margin: 0 auto;
}
.cart-wrap .cart-container .woocommerce {
  display: flex;
  gap: 20px;
}
.cart-wrap .cart-container .woocommerce .woocommerce-cart-form {
  background: #f6f6f6;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  width: 70%;
}
.cart-wrap .cart-container .woocommerce table.shop_table {
  width: 100%;
  border-collapse: collapse;
}
.cart-wrap .cart-container .woocommerce table.shop_table th, .cart-wrap .cart-container .woocommerce table.shop_table td {
  padding: 15px;
  vertical-align: middle;
  text-align: left;
}
.cart-wrap .cart-container .woocommerce table.shop_table th {
  font-weight: 700;
  border-bottom: 1px solid #eee;
}
.cart-wrap .cart-container .woocommerce table.shop_table td {
  border-bottom: 1px solid #f0f0f0;
}
.cart-wrap .cart-container .woocommerce table.shop_table .product-thumbnail img {
  max-width: 80px;
  border-radius: 5px;
}
.cart-wrap .cart-container .woocommerce table.shop_table .product-remove a {
  font-size: 20px;
  color: #888;
  transition: color 0.3s;
}
.cart-wrap .cart-container .woocommerce table.shop_table .product-remove a:hover {
  color: #ff5c5c;
}
.cart-wrap .cart-container .woocommerce table.shop_table input.qty {
  width: 60px;
  padding: 5px 10px;
  border: 1px solid #ddd;
  border-radius: 5px;
  text-align: center;
}
.cart-wrap .cart-container .woocommerce {
  /* Cart totals / shipping / order summary */
}
.cart-wrap .cart-container .woocommerce .cart-collaterals {
  width: 30%;
  background: #f6f6f6;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}
.cart-wrap .cart-container .woocommerce .cart-collaterals .woocommerce-shipping-calculator {
  display: none;
}
.cart-wrap .cart-container .woocommerce .cart_totals,
.cart-wrap .cart-container .woocommerce .shop_table.shop_table_responsive {
  padding: 20px;
}
.cart-wrap .cart-container .woocommerce .cart_totals h2,
.cart-wrap .cart-container .woocommerce .shop_table.shop_table_responsive h2 {
  font-size: 22px;
  margin-bottom: 15px;
}
.cart-wrap .cart-container .woocommerce .cart_totals table,
.cart-wrap .cart-container .woocommerce .shop_table.shop_table_responsive table {
  width: 100%;
}
.cart-wrap .cart-container .woocommerce .cart_totals table th, .cart-wrap .cart-container .woocommerce .cart_totals table td,
.cart-wrap .cart-container .woocommerce .shop_table.shop_table_responsive table th,
.cart-wrap .cart-container .woocommerce .shop_table.shop_table_responsive table td {
  padding: 10px 0;
  text-align: left;
}
.cart-wrap .cart-container .woocommerce .cart_totals .shipping-wraps label,
.cart-wrap .cart-container .woocommerce .shop_table.shop_table_responsive .shipping-wraps label {
  margin-left: 10px;
  font-weight: 400;
}
.cart-wrap .cart-container .woocommerce .cart_totals .shipping-note a,
.cart-wrap .cart-container .woocommerce .shop_table.shop_table_responsive .shipping-note a {
  color: #1a73e8;
  text-decoration: underline;
}
.cart-wrap .cart-container .woocommerce {
  /* Responsive adjustments */
}
@media (max-width: 992px) {
  .cart-wrap .cart-container .woocommerce table.shop_table,
  .cart-wrap .cart-container .woocommerce .cart_totals table {
    font-size: 14px;
  }
  .cart-wrap .cart-container .woocommerce .product-thumbnail img {
    max-width: 60px;
  }
}
.cart-wrap .woocommerce-cart-form button[name=update_cart] {
  display: none !important;
}

.woocommerce-billing-fields #billing_country_field {
  display: none;
}

.checkout-wrap form.checkout {
  display: flex;
  flex-direction: row;
}
@media (max-width: 768px) {
  .checkout-wrap form.checkout {
    flex-direction: column-reverse;
  }
}
.checkout-wrap .checkout-right,
.checkout-wrap .left-wrap {
  flex: 1;
  padding: 38px;
}
@media (max-width: 768px) {
  .checkout-wrap .checkout-right,
  .checkout-wrap .left-wrap {
    padding: 24px 12px;
  }
}
.checkout-wrap input[type=text],
.checkout-wrap input[type=number],
.checkout-wrap input[type=email],
.checkout-wrap input[type=tel],
.checkout-wrap textarea {
  width: 100%;
  padding: 11px;
}
.checkout-wrap .checkout-left {
  margin-left: auto;
  max-width: 500px;
}
.checkout-wrap .checkout-left h3 {
  font-size: 1.25rem;
  margin-bottom: 16px;
  color: #333;
}
.checkout-wrap .checkout-left p.form-row {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin: 0 0 16px 0;
  position: relative;
}
.checkout-wrap .checkout-left p.form-row#woo_ml_subscribe_field .checkbox {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 5px;
}
.checkout-wrap .checkout-left #billing_first_name_field,
.checkout-wrap .checkout-left #billing_last_name_field,
.checkout-wrap .checkout-left #billing_city_field,
.checkout-wrap .checkout-left #billing_postcode_field {
  width: 48%;
  display: inline-flex;
}
.checkout-wrap .checkout-left #billing_last_name_field,
.checkout-wrap .checkout-left #billing_postcode_field {
  margin-left: 4%;
}
.checkout-wrap .checkout-left .wc_payment_methods {
  border: 1px solid #DEDEDE;
}
.checkout-wrap .checkout-left .wc_payment_methods .payments-wrap {
  padding: 14px;
}
.checkout-wrap .checkout-left .wc_payment_methods .payments-wrap.chosen {
  background-color: #86704d;
  display: inline-block;
  width: 100%;
  border: 1px solid #86704d;
  color: #fff;
}
.checkout-wrap .checkout-left .wc_payment_methods .payment_box {
  text-align: center;
  background-color: #f4f4f4;
}
.checkout-wrap .checkout-left .wc_payment_methods .payment_box p {
  margin: 0;
  padding: 14px;
}
.checkout-wrap .checkout-left .woocommerce-shipping-methods {
  border: 1px solid #DEDEDE;
}
.checkout-wrap .checkout-left .woocommerce-shipping-methods li.chosen {
  width: 100%;
}
.checkout-wrap .checkout-left .woocommerce-shipping-methods li.chosen .shipping-wraps {
  background-color: #86704d;
  border: 1px solid #86704d;
  color: #fff;
}
.checkout-wrap .checkout-left .woocommerce-shipping-methods li .shipping-wraps {
  padding: 14px;
  display: flex;
  flex-direction: row;
}
.checkout-wrap .checkout-left .woocommerce-shipping-methods li .shipping-wraps label {
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin-left: 5px;
}
.checkout-wrap .checkout-left .woocommerce-shipping-methods li .shipping-note {
  margin: 0;
  padding: 14px;
  text-align: center;
  background-color: #f4f4f4;
}
.checkout-wrap .checkout-left .woocommerce-privacy-policy-text {
  font-size: 12px;
}
.checkout-wrap .checkout-right {
  background-color: #f5f5f5;
  border-left: 1px solid #DEDEDE;
}
.checkout-wrap .checkout-right .woocommerce-checkout-review-order {
  max-width: 400px;
  position: sticky;
  height: fit-content;
  top: 20px;
}
.checkout-wrap .checkout-right .woocommerce-checkout-review-order tr.cart_item {
  border-bottom: 1px solid #DEDEDE;
}
.checkout-wrap .checkout-right .woocommerce-checkout-review-order tr:last-child {
  border-bottom: none;
}
.checkout-wrap .checkout-right .woocommerce-checkout-review-order tr td.product-name {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.checkout-wrap .checkout-right .woocommerce-checkout-review-order tr td.product-name .image-info-wrap {
  position: relative;
  width: 70px;
}
.checkout-wrap .checkout-right .woocommerce-checkout-review-order tr td.product-name .image-info-wrap img {
  border: 2px solid #fff;
  border-radius: 8px;
  width: 70px;
  height: 70px;
  box-shadow: 0 1px 1.75px 0 rgba(0, 0, 0, 0.12), 0 -0.5px 1.5px 0 rgba(0, 0, 0, 0.09), 0 3px 4px 0 rgba(0, 0, 0, 0.03);
}
.checkout-wrap .checkout-right .woocommerce-checkout-review-order tr td.product-name .image-info-wrap .product-quantity {
  position: absolute;
  top: -7px;
  right: -7px;
  z-index: 2;
  padding: 0 5px;
  background-color: #000;
  border: 2px solid #fff;
  color: #fff;
  border-radius: 8px;
  font-size: 12px;
}
.checkout-wrap .checkout-right .woocommerce-checkout-review-order tr td.product-name .name-info-wrap {
  margin-left: 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #000;
  width: calc(100% - 70px);
}
.checkout-wrap .checkout-right .woocommerce-checkout-review-order tr td.product-name .name-info-wrap .product-variation {
  font-size: 12px;
  color: #888;
}
.checkout-wrap .checkout-right .woocommerce-checkout-review-order tr .product-total {
  text-align: right;
  color: #000;
}
.checkout-wrap .checkout-right .woocommerce-checkout-review-order tfoot {
  text-align: left;
}
.checkout-wrap .checkout-right .woocommerce-checkout-review-order tfoot td {
  text-align: right;
  color: #000;
}
.checkout-wrap .checkout-right .checkout_coupon {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.checkout-wrap #place_order {
  width: 100%;
  padding: 14px;
  background-color: #86704d;
  color: #fff;
}
.checkout-wrap .checkout-inline-error-message {
  color: red;
}
.checkout-wrap .support-menu {
  font-size: 14px;
}
.checkout-wrap .support-menu .support-nav {
  margin: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
}
.checkout-wrap .support-menu .support-nav li {
  margin-right: 10px;
}

/**
 * General WooCommerce components
 */
/**
 * Star rating
 */
.star-rating {
  overflow: hidden;
  position: relative;
  height: 1.618em;
  line-height: 1.618;
  width: 5.3em;
  font-family: star;
  font-weight: 400;
}
.star-rating::before {
  content: "SSSSS";
  opacity: 0.25;
  float: left;
  top: 0;
  left: 0;
  position: absolute;
}
.star-rating span {
  overflow: hidden;
  float: left;
  top: 0;
  left: 0;
  position: absolute;
  padding-top: 1.5em;
}
.star-rating span::before {
  content: "SSSSS";
  top: 0;
  position: absolute;
  left: 0;
  color: #4169e1;
}

p.stars a {
  position: relative;
  height: 1em;
  width: 1em;
  text-indent: -999em;
  display: inline-block;
  text-decoration: none;
  margin-right: 1px;
  font-weight: 400;
}
p.stars a::before {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 1em;
  height: 1em;
  line-height: 1;
  font-family: star;
  content: "S";
  color: #404040;
  text-indent: 0;
  opacity: 0.25;
}
p.stars a:hover ~ a::before {
  content: "S";
  color: #404040;
  opacity: 0.25;
}
p.stars:hover a::before {
  content: "S";
  color: #4169e1;
  opacity: 1;
}
p.stars.selected a.active::before {
  content: "S";
  color: #4169e1;
  opacity: 1;
}
p.stars.selected a.active ~ a::before {
  content: "S";
  color: #404040;
  opacity: 0.25;
}
p.stars.selected a:not(.active)::before {
  content: "S";
  color: #4169e1;
  opacity: 1;
}

/**
 * Tabs
 */
.woocommerce-tabs ul.tabs {
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: left;
}
.woocommerce-tabs ul.tabs li {
  display: block;
  margin: 0;
  position: relative;
}
.woocommerce-tabs ul.tabs li a {
  padding: 1em 0;
  display: block;
}
.woocommerce-tabs .panel h2:first-of-type {
  margin-bottom: 1em;
}

/**
 * Password strength meter
 */
.woocommerce-password-strength {
  text-align: right;
}
.woocommerce-password-strength.strong {
  color: #0f834d;
}
.woocommerce-password-strength.short {
  color: #e2401c;
}
.woocommerce-password-strength.bad {
  color: #e2401c;
}
.woocommerce-password-strength.good {
  color: #3d9cd2;
}

/**
 * Forms
 */
.form-row.woocommerce-validated input.input-text {
  box-shadow: inset 2px 0 0 #0f834d;
}
.form-row.woocommerce-invalid input.input-text {
  box-shadow: inset 2px 0 0 #e2401c;
}

.required {
  color: #f00;
}

/**
 * Notices
 */
.woocommerce-message,
.woocommerce-info,
.woocommerce-error,
.woocommerce-noreviews,
p.no-comments {
  background-color: #0f834d;
  clear: both;
}

.woocommerce-info,
.woocommerce-noreviews,
p.no-comments {
  background-color: #3d9cd2;
}

.woocommerce-error {
  background-color: #e2401c;
}

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