@charset "UTF-8";
/* Shop archive and single product */
.shop-archive {
  padding-bottom: 60px;
}
.shop-archive__header {
  margin-bottom: 18px;
}
.shop-archive__title {
  font-size: 28px;
  font-weight: 600;
  color: #7b4d34;
}
.shop-archive__body {
  display: grid;
  grid-template-columns: 330px minmax(0, 1fr);
  gap: 28px;
}
.shop-archive__filters {
  position: sticky;
  align-self: start;
}
.shop-archive__products {
  min-height: 240px;
}
.shop-archive__pagination {
  margin-top: 24px;
}
.shop-archive__description {
  margin-top: 36px;
  color: #6b5b55;
  line-height: 1.6;
}
.shop-archive__description-content h2, .shop-archive__description-content h3 {
  color: #7b4d34;
}

.shop-category-tabs {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  margin: 18px 0 24px;
}
@media screen and (min-width: 1101px) {
  .shop-category-tabs {
    grid-template-columns: repeat(5, 1fr);
  }
}
@media screen and (min-width: 768px) and (max-width: 1100px) {
  .shop-category-tabs {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (max-width: 767px) {
  .shop-category-tabs {
    grid-template-columns: repeat(1, 1fr);
  }
}

.shop-category-tabs__item {
  position: relative;
  cursor: pointer;
}
.shop-category-tabs__item input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.shop-category-tabs__item span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 10px 16px;
  background-color: transparent;
  color: #6D715B;
  font-size: 18px;
  transition: background-color 0.2s ease, border-color 0.2s ease;
  border-radius: 4px;
  border: 1px solid #BDBDBD;
}
.shop-category-tabs__item:hover span {
  color: #302F2D;
  background-color: #DEBC85;
  border: 1px solid #DEBC85;
}
.shop-category-tabs__item input:checked + span {
  background: #d9b272;
  border-color: #d9b272;
  color: #4f4f4f;
  font-weight: 500;
}

.filter-card {
  overflow: hidden;
  padding: 16px;
  /* hide native arrow */
}
.filter-card .filter-block__title {
  font-variant-numeric: lining-nums proportional-nums;
  font-family: "Cormorant Infant", sans-serif;
  font-size: 28px;
  font-style: italic;
  font-weight: 400;
  padding-bottom: 8px;
  border-bottom: 1px solid #BDBDBD;
  color: red;
  background: linear-gradient(270deg, #A18F6A 0%, #BFA16D 46.63%, #C09F6D 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.filter-card .filter-block__title::-webkit-details-marker {
  display: none;
}
.filter-card .filter-block__title {
  list-style: none;
}

.filter-block__title {
  font-size: 14px;
  font-weight: 600;
  color: #5b4a44;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.filter-block__title::-webkit-details-marker {
  display: none;
}
.filter-block__title::after {
  content: "⌄";
  font-size: 14px;
  color: #c4a091;
  transform: translateY(-1px);
}
.filter-block__content {
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.filter-block__title::after {
  content: "";
  width: 20px;
  height: 20px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 18 18'%3E%3Cpath d='M2.81252 6.18753C2.81252 6.04368 2.8675 5.89968 2.97733 5.78985C3.19713 5.57005 3.55305 5.57005 3.77271 5.78985L9.00002 11.0172L14.2273 5.78985C14.4471 5.57005 14.803 5.57005 15.0227 5.78985C15.2424 6.00964 15.2425 6.36557 15.0227 6.58522L9.39771 12.2102C9.17791 12.43 8.82199 12.43 8.60233 12.2102L2.97733 6.58522Z' fill='black'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  transition: transform 0.25s ease;
}

/* rotate only */
details[open] > .filter-block__title::after {
  transform: rotate(180deg);
}

.filter-block__title::after {
  transform-origin: center;
  transition: transform 0.3s ease;
}

.filter-block[open] .filter-block__title::after {
  transform: rotate(180deg);
}

.filter-item,
.filter-item-secondary {
  display: flex;
  align-items: center;
  color: #6b5b55;
}
.filter-item input,
.filter-item-secondary input {
  width: 16px;
  height: 16px;
}

.filter-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #6b5b55;
  cursor: pointer;
  position: relative;
}

.filter-item input[type=checkbox] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.filter-item span {
  position: relative;
  padding-left: 26px;
  color: #4F4F4F;
  font-family: "Sybilla Pro", sans-serif;
  font-size: 16px;
}

.filter-item span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  border-radius: 4px;
  border: 1.5px solid #D5D5D5;
  background: #fff;
  transition: background 0.2s ease, border-color 0.2s ease;
  padding: 8px;
}

/* Checked state: red background */
.filter-item input[type=checkbox]:checked + span::before {
  background: #C59D7A;
  border-color: #C59D7A;
}

/* SVG arrow (your exact icon) */
.filter-item input[type=checkbox]:checked + span::after {
  content: "";
  position: absolute;
  left: 3px;
  top: 5px;
  width: 14px;
  height: 14px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='10' viewBox='0 0 14 10' fill='none'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M13.2932 0.232891C13.5788 0.532907 13.5671 1.00764 13.2671 1.29323L4.60045 9.54323C4.45245 9.68412 4.25337 9.75852 4.04925 9.74923C3.84512 9.73994 3.65362 9.64776 3.51903 9.49401L0.185695 5.68632C-0.0871404 5.37466 -0.0556652 4.90083 0.255997 4.62799C0.56766 4.35516 1.04149 4.38663 1.31432 4.6983L4.1326 7.91764L12.2329 0.206774C12.5329 -0.0788187 13.0076 -0.0671259 13.2932 0.232891Z' fill='white'/%3E%3C/svg%3E");
}

.price-filter .slider-container {
  margin-top: 14px;
  margin-bottom: 16px;
  position: relative;
  height: 18px;
}
.price-filter .slider-container .slider-track {
  position: absolute;
  width: 100%;
  height: 3px;
  background: #BDBDBD;
  border-radius: 999px;
  top: 50%;
  transform: translateY(-50%);
}
.price-filter .slider-container .slider-range {
  position: absolute;
  height: 3px;
  background: #4F4F4F;
  border-radius: 999px;
  top: 50%;
  transform: translateY(-50%);
}
.price-filter .slider-container .slider-input {
  position: absolute;
  width: 100%;
  height: 18px;
  pointer-events: none;
  appearance: none;
  background: transparent;
  top: 0;
  border: none;
}
.price-filter .slider-container .slider-input::-webkit-slider-thumb {
  appearance: none;
  width: 18px;
  height: 18px;
  background: #DEBC85;
  border: 2px solid #DEBC85;
  border-radius: 50%;
  cursor: pointer;
  pointer-events: auto;
  position: relative;
  z-index: 3;
}
.price-filter .slider-container .slider-input::-webkit-slider-thumb:hover {
  background: #A18F6A;
  border: 1px solid #A18F6A;
}
.price-filter .slider-container .slider-input::-moz-range-thumb {
  width: 18px;
  height: 18px;
  background: #DEBC85;
  border: 2px solid #DEBC85;
  border-radius: 50%;
  cursor: pointer;
  pointer-events: auto;
}
.price-filter .slider-container .slider-input::-moz-range-thumb:hover {
  background: #A18F6A;
  border: 1px solid #A18F6A;
}
.price-filter .price-inputs {
  display: flex;
  justify-content: space-between;
  gap: 16px;
}
.price-filter .price-inputs .price-box {
  flex: 0 0 auto;
  position: relative;
}
.price-filter .price-inputs .price-box .price-input {
  padding: 9px 10px;
  outline: none;
  transition: border-color 0.3s;
  border-radius: 4px;
  border: 1px solid #BDBDBD;
  background-color: #FFF;
  color: #6D715B;
  font-size: 16px;
  font-weight: 500;
  width: 86px;
  min-height: 46px;
  text-align: center;
  line-height: 1;
}
.price-filter .price-inputs .price-box .price-input:focus {
  border-color: #8d6345;
}

.filter-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  padding-bottom: 16px;
  border-bottom: 1px solid #e0e0e0;
}

.filter-title {
  font-size: 32px;
  font-weight: 400;
  color: #333;
}

.dropdown-icon {
  font-size: 28px;
  color: #333;
}

.filter-item--tab {
  position: relative;
  cursor: pointer;
  padding: 8px;
  font-size: 14px;
}
.filter-item--tab:not(:last-child) {
  border-bottom: 1px solid #E0E0E0;
}
.filter-item--tab input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.filter-item--tab span {
  display: block;
  width: 100%;
  padding: 8px 0;
  border-radius: 10px;
  border: 1px solid transparent;
  background: #fff;
  color: #5b4a44;
}
.filter-item--tab input:checked + span {
  color: #7b4d34;
  font-weight: 600;
}

.filter-category-accordion {
  width: 100%;
}

.filter-category-accordion__row {
  display: grid;
  grid-template-columns: 1fr 24px;
  align-items: center;
  gap: 6px;
  border-bottom: 1px solid #e0e0e0;
}

.filter-category-accordion__row .filter-item--tab {
  order: 1;
}

.filter-category-accordion__row .filter-category-accordion__toggle {
  order: 2;
}

.filter-category-accordion__toggle {
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: 0;
}

.filter-category-accordion__icon {
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  line-height: 1;
  color: #7b4d34;
  transition: transform 0.2s ease;
}

.filter-category-accordion__icon::before {
  content: "+";
}

.filter-category-accordion.is-open > .filter-category-accordion__row .filter-category-accordion__icon::before {
  content: "-";
}

.filter-category-accordion__content {
  display: none;
  gap: 6px;
  padding-left: 24px;
}

.filter-category-accordion.is-open > .filter-category-accordion__content {
  display: grid;
}

.filter-item--child {
  border-bottom: 0;
}

.filter-clear {
  margin-top: 12px;
  display: block;
  text-align: center;
  text-decoration: none;
  font-weight: 300;
  color: #4F4F4F;
}
.filter-clear::before {
  content: "✕";
  font-size: 18px;
  margin-right: 5px;
  color: #DEBC85;
}

.product-accordion {
  margin-top: 18px;
  display: grid;
  gap: 10px;
}

.product-accordion__item {
  border-bottom: 1px solid #eee4dd;
  padding: 8px 0;
}

.product-accordion__title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 16px;
  font-weight: 600;
  color: #5b4a44;
  cursor: pointer;
  list-style: none;
}

.product-accordion__title::-webkit-details-marker {
  display: none;
}

.product-accordion__title::after {
  content: "⌄";
  font-size: 16px;
  color: #a48a7a;
  transition: transform 0.2s ease;
}

.product-accordion__item[open] .product-accordion__title::after {
  transform: rotate(180deg);
}

.product-accordion__content {
  padding: 12px 0 4px;
  color: #6b5b55;
  line-height: 1.6;
}

.shop-toolbar {
  margin-bottom: 16px;
}
@media screen and (min-width: 700px) {
  .shop-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
  }
}
.shop-toolbar__count {
  font-size: 14px;
  color: #6b5b55;
  margin-bottom: 20px;
}
@media screen and (min-width: 700px) {
  .shop-toolbar__controls {
    display: flex;
    align-items: center;
    gap: 12px;
  }
}
.shop-toolbar__label {
  font-size: 12px;
  color: #6b5b55;
  display: block;
  margin-bottom: 20px;
}
@media screen and (min-width: 700px) {
  .shop-toolbar__label {
    display: flex;
    align-items: center;
    gap: 8px;
  }
}
.shop-toolbar__label > span {
  display: block;
  min-width: max-content;
}
.shop-toolbar__select {
  border-radius: 9999px;
  padding: 6px 12px;
  border: 1px solid #eadfd6;
  /* =========================
     FILTER CARDS
  ========================= */
  /* =========================
     FILTER ITEMS
  ========================= */
}
.shop-toolbar__select .shop-archive {
  padding-bottom: 60px;
}
.shop-toolbar__select .shop-archive__header {
  margin-bottom: 18px;
}
.shop-toolbar__select .shop-archive__title {
  font-size: 28px;
  font-weight: 600;
  color: #7b4d34;
}
.shop-toolbar__select .shop-archive__body {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 28px;
}
.shop-toolbar__select .shop-archive__filters {
  position: sticky;
  top: 24px;
  align-self: start;
  display: grid;
  gap: 16px;
}
.shop-toolbar__select .shop-archive__pagination {
  margin-top: 24px;
}
.shop-toolbar__select .shop-archive__description {
  margin-top: 36px;
  color: #6b5b55;
  line-height: 1.6;
}
.shop-toolbar__select .shop-archive__description-content h2,
.shop-toolbar__select .shop-archive__description-content h3 {
  color: #7b4d34;
}
.shop-toolbar__select .filter-card {
  background: #fff;
  border: 1px solid #e7e7e7;
  border-radius: 8px;
  padding: 16px;
}
.shop-toolbar__select .filter-block {
  display: block;
}
.shop-toolbar__select .filter-block__title {
  font-size: 15px;
  font-weight: 600;
  color: #5b4a44;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-right: 26px;
  position: relative;
}
.shop-toolbar__select .filter-block__title::-webkit-details-marker {
  display: none;
}
.shop-toolbar__select .filter-block__title::after {
  content: "";
  width: 18px;
  height: 18px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 18 18'%3E%3Cpath d='M2.8 6.2c0-.15.06-.29.18-.41a.57.57 0 0 1 .8 0L9 11l5.2-5.2a.57.57 0 0 1 .8.8L9.4 12.2a.57.57 0 0 1-.8 0L3 6.6a.58.58 0 0 1-.2-.4Z'/%3E%3C/svg%3E") no-repeat center/contain;
  transition: transform 0.25s ease;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.shop-toolbar__select details[open] > .filter-block__title::after {
  transform: translateY(-50%) rotate(180deg);
}
.shop-toolbar__select .filter-block__content {
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 10px !important;
}
.shop-toolbar__select .filter-item,
.shop-toolbar__select .filter-item-secondary {
  display: flex;
  align-items: center;
  color: #6b5b55;
  cursor: pointer;
}
.shop-toolbar__select .filter-item {
  position: relative;
}
.shop-toolbar__select .filter-item input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.shop-toolbar__select .filter-item span {
  padding-left: 26px;
  position: relative;
}
.shop-toolbar__select .filter-item span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  border-radius: 4px;
  border: 1.5px solid #c59d7a;
  background: #fff;
}
.shop-toolbar__select .filter-item input:checked + span::before {
  background: #c59d7a;
}
.shop-toolbar__select .filter-item input:checked + span::after {
  content: "";
  position: absolute;
  left: 3px;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 8px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='10'%3E%3Cpath fill='white' d='M13.3.2a.7.7 0 0 1 0 1L4.6 9.5a.7.7 0 0 1-1-.1L.2 5.7a.7.7 0 0 1 1-1l3 3.4L12.3.2a.7.7 0 0 1 1 0Z'/%3E%3C/svg%3E") no-repeat center/contain;
}

/* =========================
       PAGINATION
    ========================= */
.woocommerce nav.woocommerce-pagination {
  text-align: center;
}
.woocommerce nav.woocommerce-pagination .page-numbers {
  display: inline-flex;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
  border: none;
  margin-top: auto;
}
.woocommerce nav.woocommerce-pagination .page-numbers button {
  width: 36px;
  height: 36px;
  border-radius: 9999px;
  border: 1px solid #eadfd6;
  background: #fff;
  color: #5b4a44;
  cursor: pointer;
}
.woocommerce nav.woocommerce-pagination .page-numbers li {
  margin: 0;
  border-right: unset;
}
.woocommerce nav.woocommerce-pagination .page-numbers a,
.woocommerce nav.woocommerce-pagination .page-numbers .current {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid #eadfd6;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
}
.woocommerce nav.woocommerce-pagination .page-numbers a {
  border-radius: 9999px;
  border: 1px solid #BDBDBD;
  background: #fff;
  color: #32383E;
}
.woocommerce nav.woocommerce-pagination .page-numbers a:hover, .woocommerce nav.woocommerce-pagination .page-numbers a:focus {
  border: 1px solid #7b4d34;
  background: #fff;
  color: #7b4d34;
}
.woocommerce nav.woocommerce-pagination .page-numbers.current {
  background: #7b4d34;
  color: #fff;
  border-color: transparent;
}

.shop-archive.is-loading {
  opacity: 0.6;
  pointer-events: none;
}

@media (max-width: 1000px) {
  .shop-archive__body {
    grid-template-columns: 1fr;
  }
  .shop-archive__filters {
    position: static;
  }
}
.woocommerce ul.products::before {
  display: none;
}

.woocommerce-page ul.products li.product {
  width: unset;
  float: unset;
  margin: 0;
}

.shop-toolbar__select {
  border-radius: 7px !important;
  border: 1px solid #E0E0E0 !important;
  background: #FFF !important;
  outline: none !important;
  padding: 12px 12px;
  font-size: 16px;
}

/* Chrome, Edge, Safari */
.filter-block__title::-webkit-details-marker {
  display: none;
}

/* Firefox */
.filter-block__title {
  list-style: none;
}

.filter-block__title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  position: relative;
  padding-right: 28px;
}

.filter-block__title::after {
  content: "";
  width: 18px;
  height: 18px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 18 18' fill='none'%3E%3Cpath d='M2.81252 6.18753C2.81252 6.04368 2.8675 5.89968 2.97733 5.78985C3.19713 5.57005 3.55305 5.57005 3.77271 5.78985L9.00002 11.0172L14.2273 5.78985C14.4471 5.57005 14.803 5.57005 15.0227 5.78985C15.2424 6.00964 15.2425 6.36557 15.0227 6.58522L9.39771 12.2102C9.17791 12.43 8.82199 12.43 8.60233 12.2102L2.97733 6.58522C2.8675 6.47539 2.81252 6.33139 2.81252 6.18753Z' fill='black'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  right: 0;
  transition: transform 0.25s ease;
}

/* Container */
.product-accordion {
  width: 100%;
  margin-top: 32px;
}

/* Each dropdown row */
.product-accordion .filter-block {
  border-bottom: 1px solid #E0E0E0;
  margin: 0;
  padding: 0;
}

/* Summary (title row) */
.product-accordion .filter-block__title {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-size: 18px;
  font-weight: 600;
  padding: 20px 0;
  color: #5C5C5C;
  list-style: none;
  background: none;
  outline: none;
  letter-spacing: 0.36px;
  line-height: 118%;
}

.product-accordion .filter-block__title::-webkit-details-marker {
  display: none;
}

.product-accordion .filter-block__title::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 18px;
  height: 18px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 18 18' fill='none'%3E%3Cpath d='M2.81252 6.18747C2.81252 6.04361 2.8675 5.89961 2.97733 5.78979C3.19713 5.56999 3.55305 5.56999 3.77271 5.78979L9.00002 11.0171L14.2273 5.78979C14.4471 5.56999 14.803 5.56999 15.0227 5.78979C15.2424 6.00958 15.2425 6.36551 15.0227 6.58516L9.39771 12.2102C9.17791 12.43 8.82199 12.43 8.60233 12.2102L2.97733 6.58516C2.8675 6.47533 2.81252 6.33133 2.81252 6.18747Z' fill='black'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  transform: translateY(-50%) rotate(0deg);
  transform-origin: 50% 50%;
  transition: transform 0.25s ease;
}

.product-accordion .filter-block[open] .filter-block__title::after {
  transform: translateY(-50%) rotate(180deg);
}

/* Content */
.product-accordion .filter-block__content {
  padding: 0 0 16px;
  font-size: 14px;
  line-height: 1.7;
  color: #4F4F4F;
}

/* WYSIWYG / Gutenberg fixes */
.product-accordion .filter-block__content p:last-child {
  margin-bottom: 0;
}

.product-accordion .filter-block__content ul,
.product-accordion .filter-block__content ol {
  padding-left: 18px;
  margin: 0 0 12px;
}

.product-accordion .filter-block__content li {
  margin-bottom: 6px;
}

/* Links inside content */
.product-accordion .filter-block__content a {
  color: #4F4F4F;
}
.product-accordion .filter-block__content a:hover {
  color: #4F4F4F !important;
}

.product-accordion .filter-block__content a:hover {
  color: #000000;
}

/* Mobile spacing tweak */
@media (max-width: 768px) {
  .product-accordion .filter-block__title {
    padding: 14px 0;
  }
  .product-accordion .filter-block__content {
    font-size: 14px;
  }
}
/* ================================
   PRODUCT IMAGE WITH OVERLAY
   ================================ */
@media screen and (min-width: 820px) {
  .product-image-wrapper h1,
  .product-image-wrapper .woocommerce-breadcrumb {
    display: none;
  }
}
.product-image-wrapper h1 {
  color: #6D715B;
  font-variant-numeric: lining-nums proportional-nums;
  font-family: "Cormorant Infant", sans-serif;
  font-size: 32px;
  font-weight: 400;
  margin: 32px 0;
  text-transform: unset;
}
.product-image-wrapper .woocommerce-product-gallery {
  float: none !important;
  width: 100% !important;
}
.product-image-wrapper .woocommerce-product-gallery img {
  aspect-ratio: 1/1;
  object-fit: cover;
}
.product-image-wrapper .woocommerce-product-gallery .flex-control-nav.flex-control-thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-top: 30px !important;
}
.product-image-wrapper .woocommerce-product-gallery .flex-control-nav.flex-control-thumbs li {
  width: 100% !important;
}

.single-product-wrapper {
  margin-top: 60px;
}
@media screen and (min-width: 820px) {
  .single-product-wrapper {
    display: grid;
    grid-template-columns: repeat(9, 1fr);
    gap: 70px;
    margin-bottom: 30px;
  }
}
@media screen and (min-width: 820px) {
  .single-product-wrapper {
    margin-bottom: 100px;
  }
}
.single-product-wrapper .product-image-wrapper {
  grid-column: span 4;
}
.single-product-wrapper .product-summary {
  grid-column: span 5;
}

/* Swiper */
.swiper-wrapper.products,
.single-product-related .swiper-wrapper {
  align-items: stretch;
}

/* Price */
.sfc-price {
  margin-top: auto;
  padding-bottom: 10px;
}
.sfc-price .price {
  color: #07070A;
  font-size: 15px;
  font-weight: 700;
}
.sfc-price del {
  color: #BDBDBD;
}
.sfc-price ins {
  display: block;
  text-decoration: none;
}

.post-type-archive-product .price,
.tax-product_cat .price {
  color: #07070A !important;
  font-size: 15px !important;
  font-weight: 700 !important;
}
.post-type-archive-product del,
.tax-product_cat del {
  color: #BDBDBD !important;
  display: block !important;
}
.post-type-archive-product ins,
.tax-product_cat ins {
  display: block;
  text-decoration: none;
}

.single-product .onsale {
  display: none !important;
}

.post-type-archive-product .woocommerce-breadcrumb,
.tax-product_cat .woocommerce-breadcrumb,
.single-product .woocommerce-breadcrumb {
  margin: 20px 0 22px;
  color: #4F4F4F;
  font-family: "Sybilla Pro", sans-serif;
  font-size: 18px;
  font-style: italic;
  font-weight: 300;
  line-height: 1.3;
  letter-spacing: 0.02em;
}
.post-type-archive-product .woocommerce-breadcrumb a,
.tax-product_cat .woocommerce-breadcrumb a,
.single-product .woocommerce-breadcrumb a {
  color: #B98D5A;
  text-decoration: none;
}
.post-type-archive-product .woocommerce-breadcrumb a:hover, .post-type-archive-product .woocommerce-breadcrumb a:focus,
.tax-product_cat .woocommerce-breadcrumb a:hover,
.tax-product_cat .woocommerce-breadcrumb a:focus,
.single-product .woocommerce-breadcrumb a:hover,
.single-product .woocommerce-breadcrumb a:focus {
  color: #B98D5A;
}

@media (max-width: 819px) {
  .post-type-archive-product .woocommerce-breadcrumb,
  .tax-product_cat .woocommerce-breadcrumb,
  .single-product .woocommerce-breadcrumb {
    margin: 12px 0 14px;
    font-size: 18px;
    line-height: 1.3;
  }
}
.single-product .product-summary h1 {
  display: none;
}
@media screen and (min-width: 820px) {
  .single-product .product-summary h1 {
    color: #6D715B;
    font-variant-numeric: lining-nums proportional-nums;
    font-family: "Cormorant Infant", sans-serif;
    font-size: 42px;
    font-weight: 400;
    margin-top: 32px;
    text-transform: unset;
    display: block;
  }
}
.single-product .product-summary .woocommerce-breadcrumb {
  display: none;
}
@media screen and (min-width: 820px) {
  .single-product .product-summary .woocommerce-breadcrumb {
    display: block;
  }
}
.single-product .product-summary .sfc-price {
  padding-bottom: 10px;
  margin-top: 32px;
}
.single-product .product-summary .sfc-price .price {
  margin-bottom: 0;
  font-variant-numeric: lining-nums proportional-nums;
  font-family: "Sybilla Pro", sans-serif;
  font-size: 28px;
  font-weight: 200;
  background: linear-gradient(270deg, #A18F6A 0%, #BFA16D 46.63%, #C09F6D 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.single-product .product-summary .sfc-price .price del {
  display: block !important;
  margin-bottom: 2px;
  color: #DEBC85 !important;
  white-space: nowrap;
  text-decoration: none;
}
.single-product .product-summary .sfc-price .price del bdi,
.single-product .product-summary .sfc-price .price del span {
  color: #DEBC85 !important;
  font-size: 20px !important;
  font-weight: 300 !important;
  text-decoration-line: line-through;
  text-decoration-color: #DEBC85;
  text-decoration-thickness: 1px;
  text-decoration-skip-ink: none;
}
.single-product .product-summary .sfc-price .price ins {
  display: block;
  text-decoration: none;
}
.single-product .product-summary .sfc-price .price ins bdi,
.single-product .product-summary .sfc-price .price ins span {
  color: #DEBC85;
  font-size: 28px;
  font-weight: 300;
}
.single-product .product-summary .product-box-add-to-cart {
  display: flex;
  flex-wrap: wrap;
  justify-content: start;
  gap: 8px;
}
.single-product .product-summary .sfc-single-short-description {
  margin-top: 16px;
  color: #4F4F4F;
  font-size: 16px;
  line-height: 1.55;
}
.single-product .product-summary .sfc-single-short-description p {
  margin: 0 0 8px;
}
.single-product .product-summary .sfc-single-short-description p:last-child {
  margin-bottom: 0;
}
.single-product .product-summary .sfc-product-short-meta {
  display: flex;
  flex-wrap: wrap;
  padding-top: 32px;
  padding-bottom: 32px;
}
.single-product .product-summary .sfc-product-short-meta .sfc-product-short-meta__item {
  display: flex;
}
.single-product .product-summary .sfc-product-short-meta .sfc-product-short-meta__item > span:first-child {
  font-size: 16px;
  background: linear-gradient(270deg, #A18F6A 0%, #BFA16D 46.63%, #C09F6D 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.single-product .product-summary .sfc-product-short-meta .sfc-product-short-meta__item > span:last-child {
  color: #4F4F4F;
  font-size: 16px;
}
.single-product .product-summary .sfc-product-short-meta .sfc-product-short-meta__item:not(:last-child)::after {
  content: "|";
  margin: 0 10px;
  color: #D0C2AE;
}
.single-product .product-summary .sfc-product-short-meta__label {
  margin-right: 4px;
  color: #B98D5A;
}
.single-product .product-summary .sfc-product-short-meta__value {
  color: #4F4F4F;
}

.price-old {
  font-size: 15px;
  color: #828282;
  text-decoration: line-through;
}

.price-new {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.4;
}

.yith-wcwl-add-to-wishlist-button__label {
  display: none;
}

.mostSoldProducts .product,
.discountProducts .product,
.products .product {
  display: flex;
  flex-direction: column;
}
.mostSoldProducts .product .yith-wcwl-add-to-wishlist-button span,
.discountProducts .product .yith-wcwl-add-to-wishlist-button span,
.products .product .yith-wcwl-add-to-wishlist-button span {
  display: none !important;
}
.mostSoldProducts .product img,
.discountProducts .product img,
.products .product img {
  background: #FCFBF7;
  overflow: hidden;
}

.yith-wcwl-add-to-wishlist-button {
  color: #BDBDBD;
  text-align: center;
  font-size: 16px;
  font-weight: 400;
}
.yith-wcwl-add-to-wishlist-button svg {
  color: #BDBDBD !important;
}

.yith-wcwl-add-to-wishlist-button--added svg {
  color: #F6C4A3 !important;
}

.single-wishlist-white .yith-wcwl-add-to-wishlist-button {
  color: white;
  text-align: center;
  font-size: 16px;
  font-weight: 400;
}
.single-wishlist-white .yith-wcwl-add-to-wishlist-button svg {
  color: white !important;
}

.single-product-related-swiper .sfc-price .price {
  color: #07070A !important;
  font-size: 15px !important;
  font-weight: 700 !important;
}

.sfc-product-tabs {
  margin-top: 30px;
}

.sfc-product-tabs__nav {
  display: flex;
  align-items: center;
  gap: 24px;
  border-bottom: 1px solid #d6d3cf;
  margin-bottom: 20px;
}

.sfc-product-tabs__btn {
  position: relative;
  background: transparent;
  border: 0;
  padding: 10px 32px;
  font-weight: 300;
  color: #BDBDBD;
  cursor: pointer;
  font-size: 18px;
}

.sfc-product-tabs__btn.is-active {
  background: linear-gradient(270deg, #A18F6A 0%, #BFA16D 46.63%, #C09F6D 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.sfc-product-tabs__btn.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 2px;
  background: #d0a06b;
}

.sfc-product-tabs__panel {
  display: none;
}

.sfc-product-tabs__panel.is-active {
  display: block;
}

.sfc-characteristics__description {
  margin-bottom: 18px;
  color: #5f5f5f;
  font-size: 16px;
  line-height: 1.6;
}

.sfc-characteristics__description p:last-child {
  margin-bottom: 0;
}

.sfc-characteristics-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.sfc-characteristics-grid__item {
  display: flex;
  align-items: center;
  gap: 16px;
  border-radius: 4px;
  background: #FFFFFF;
  padding: 16px 24px;
}

.sfc-characteristics-grid__icon-wrap {
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sfc-characteristics-grid__icon {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.sfc-characteristics-grid__body {
  flex: 1;
  min-width: 0;
}

.sfc-characteristics-grid__title {
  margin: 0 0 8px;
  padding-bottom: 8px;
  border-bottom: 1px solid #BDBDBD;
  color: #d0a06b;
  font-variant-numeric: lining-nums tabular-nums;
  font-family: "Cormorant Infant", sans-serif;
  font-size: 24px;
  font-style: italic;
  font-weight: 400;
  opacity: 0.9;
  background: linear-gradient(270deg, #A18F6A 0%, #BFA16D 46.63%, #C09F6D 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.sfc-characteristics-grid__text {
  color: #888682;
  font-variant-numeric: lining-nums proportional-nums;
  font-family: "Sybilla Pro", sans-serif;
  font-size: 18px;
  font-style: italic;
  font-weight: 300;
}
.sfc-characteristics-grid__text p:last-child {
  margin-bottom: 0;
}

@media (min-width: 992px) {
  .sfc-characteristics-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 767px) {
  .sfc-product-tabs__btn {
    font-size: 22px;
  }
  .sfc-characteristics-grid__title {
    font-size: 22px;
  }
}
.sfc-reviews .sfc-reviews-form__title {
  margin: 0 0 10px;
  font-variant-numeric: lining-nums proportional-nums;
  font-family: "Cormorant Infant", sans-serif;
  font-size: 32px;
  font-style: italic;
  font-weight: 400;
  opacity: 0.9;
  background: linear-gradient(270deg, #A18F6A 0%, #BFA16D 46.63%, #C09F6D 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.sfc-reviews .sfc-reviews-form__note {
  margin-bottom: 18px;
}

.sfc-reviews .sfc-reviews-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.sfc-reviews .sfc-reviews-form .sfc-reviews-form__field.stars-wrapper {
  display: flex;
  gap: 11px;
  align-items: center;
}
.sfc-reviews .sfc-reviews-form .sfc-reviews-form__field.stars-wrapper label {
  font-weight: 300;
  background: linear-gradient(270deg, #A18F6A 0%, #BFA16D 46.63%, #C09F6D 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.sfc-reviews .sfc-reviews-form .sfc-reviews-form__field:not(.stars-wrapper) label {
  display: block;
  color: #888682;
  font-weight: 300;
  margin-bottom: 10px;
}
.sfc-reviews .sfc-reviews-form .sfc-reviews-form__field label .required {
  color: #EB5757;
  font-weight: 300;
}
.sfc-reviews .sfc-reviews-form .sfc-reviews-form__field .sfc-rating-input {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.sfc-reviews .sfc-reviews-form input[type=text],
.sfc-reviews .sfc-reviews-form input[type=email],
.sfc-reviews .sfc-reviews-form textarea {
  width: 100%;
  border: 1px solid #d9d9d9;
  border-radius: 2px;
  padding: 10px 12px;
  font-size: 16px;
  color: #4f4f4f;
  background: #fff;
}
.sfc-reviews .sfc-reviews-form textarea {
  resize: vertical;
  min-height: 160px;
}
.sfc-reviews .sfc-reviews-form .sfc-reviews-form__submit {
  max-width: max-content;
}
.sfc-reviews .sfc-reviews-results .sfc-review-item__author {
  font-variant-numeric: lining-nums proportional-nums;
  font-family: "Cormorant Infant", sans-serif;
  font-size: 24px;
  font-style: italic;
  font-weight: 400;
  opacity: 0.9;
  background: linear-gradient(270deg, #A18F6A 0%, #BFA16D 46.63%, #C09F6D 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.sfc-reviews .sfc-reviews-results .sfc-review-item {
  padding-top: 10px;
  border-bottom: 1px solid #D5D5D5;
  margin-bottom: 20px;
}
.sfc-reviews .sfc-reviews-results .sfc-review-item .sfc-review-item__content {
  margin-top: 8px;
  color: #4f4f4f;
  margin-bottom: 0;
}

.sfc-rating-input__star {
  border: 0;
  background: transparent;
  padding: 0;
  color: #d0d0d0;
  font-size: 22px;
  cursor: pointer;
  line-height: 1;
}

.sfc-rating-input__star.is-active {
  color: #e3aa2d;
}

.sfc-reviews-form__check {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: #6a6a6a;
}

.sfc-reviews-form__submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.sfc-reviews-form__error {
  color: #d34444;
  font-size: 14px;
  margin-top: 6px;
}

.sfc-reviews-form__flash {
  margin-top: 8px;
}

.sfc-reviews-form__flash.is-error {
  color: #d34444;
}

.sfc-reviews-form__flash.is-success {
  color: #297a3c;
}

.sfc-review-item__head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
}

.sfc-review-item__date {
  color: #9a9a9a;
  margin-top: 2px;
}

.sfc-review-stars {
  display: inline-flex;
  align-items: center;
  gap: 3px;
}
.sfc-review-stars .sfc-review-stars__star {
  color: #d0d0d0;
  font-size: 22px;
  line-height: 1;
}
.sfc-review-stars .sfc-review-stars__star.is-filled {
  color: #FAC12E;
}

.sfc-reviews-pagination {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 10px;
  padding-top: 18px;
}

.sfc-reviews-pagination__edge {
  border: 0;
  background: transparent;
  color: #8d8d8d;
  font-size: 30px;
  font-style: italic;
  cursor: pointer;
}

.sfc-reviews-pagination__edge[disabled] {
  opacity: 0.4;
  cursor: default;
}

.sfc-reviews-pagination__edge:first-child {
  justify-self: start;
}

.sfc-reviews-pagination__edge:last-child {
  justify-self: end;
}

.sfc-reviews-pagination__pages {
  display: flex;
  align-items: center;
  gap: 20px;
}

.sfc-reviews-pagination__num {
  border: 0;
  background: transparent;
  color: #a4a4a4;
  font-size: 30px;
  font-style: italic;
  cursor: pointer;
}

.sfc-reviews-pagination__num.is-active {
  color: #d0a06b;
}

@media (max-width: 767px) {
  .sfc-review-item__author,
  .sfc-reviews-pagination__edge,
  .sfc-reviews-pagination__num {
    font-size: 24px;
  }
  .sfc-reviews-pagination {
    grid-template-columns: 1fr;
  }
  .sfc-reviews-pagination__pages {
    justify-content: center;
  }
  .sfc-reviews-pagination__edge:first-child,
  .sfc-reviews-pagination__edge:last-child {
    justify-self: center;
  }
}
/* Single Product Responsive */
@media (min-width: 820px) {
  .single-product .product-image-wrapper .woocommerce-breadcrumb,
  .single-product .product-image-wrapper h1 {
    display: none;
  }
}
@media (min-width: 820px) and (max-width: 1199px) {
  .single-product-wrapper {
    grid-template-columns: repeat(8, 1fr);
    gap: 32px;
  }
  .single-product-wrapper .product-image-wrapper {
    grid-column: span 4;
  }
  .single-product-wrapper .product-summary {
    grid-column: span 4;
  }
  .single-product .product-summary h1 {
    font-size: 34px;
  }
  .single-product .product-summary .sfc-price .price {
    font-size: 24px;
  }
}
@media (max-width: 819px) {
  .single-product-wrapper {
    margin-top: 16px;
  }
  .single-product .product-image-wrapper .woocommerce-breadcrumb {
    display: block;
    margin: 0 0 12px;
  }
  .single-product .product-image-wrapper h1 {
    display: block;
    margin: 0 0 16px;
    color: #6D715B;
    font-family: "Cormorant Infant", sans-serif;
    font-size: 34px;
    font-weight: 400;
    line-height: 1.1;
    text-transform: unset;
  }
  .single-product .product-image-wrapper .woocommerce-product-gallery .flex-control-nav.flex-control-thumbs {
    gap: 12px;
    margin-top: 14px !important;
  }
  .single-product .product-summary {
    margin-top: 20px;
  }
  .single-product .product-summary .sfc-price {
    margin-top: 16px;
  }
  .single-product .product-summary .sfc-price .price {
    font-size: 24px;
  }
  .single-product .product-summary .sfc-price .price del bdi,
  .single-product .product-summary .sfc-price .price del span {
    font-size: 17px !important;
  }
  .single-product .product-summary .sfc-price .price ins bdi,
  .single-product .product-summary .sfc-price .price ins span {
    font-size: 24px;
  }
  .single-product .product-summary .sfc-product-short-meta {
    gap: 8px;
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .single-product .product-summary .sfc-product-short-meta .sfc-product-short-meta__item {
    width: 100%;
  }
  .single-product .product-summary .sfc-product-short-meta .sfc-product-short-meta__item:not(:last-child)::after {
    display: none;
  }
  .single-product .product-summary .product-box-add-to-cart {
    gap: 12px;
  }
  .single-product .quantity-wrapper {
    width: 100%;
    max-width: none;
    margin-right: 0;
    justify-content: space-between;
  }
  .single-product .quantity-wrapper .qty-input {
    width: 100%;
  }
  .single-product .product-box-add-to-cart .btn-primary {
    width: 100%;
    text-align: center;
  }
  .sfc-product-tabs__nav {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    overflow: visible;
    white-space: normal;
    padding-bottom: 6px;
    border-bottom: 0;
  }
  .sfc-product-tabs__btn {
    width: 100%;
    padding: 10px 14px;
    font-size: 16px;
    text-align: left;
    border-bottom: 1px solid #d6d3cf;
  }
  .sfc-product-tabs__btn.is-active {
    border-bottom-color: transparent;
  }
  .sfc-characteristics-grid__item {
    padding: 14px 16px;
    gap: 12px;
  }
}
@media (max-width: 990px) {
  .shop-archive__filters {
    position: fixed;
    top: 0;
    left: 0;
    width: 90%;
    max-width: 350px;
    height: 100%;
    background: #fff;
    box-shadow: 2px 0 8px rgba(0, 0, 0, 0.2);
    overflow-y: auto;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    z-index: 999;
  }
  .shop-archive__filters.active {
    transform: translateX(0);
  }
  #filterOverlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
    display: none;
  }
  #filterOverlay.active {
    display: block;
  }
}
@media (max-width: 990px) and (min-width: 991px) {
  #filterOverlay.active {
    display: none;
  }
}
@media (max-width: 990px) {
  body.mobile-filter-open {
    overflow: hidden;
  }
}
#mobileFilterBtn {
  max-width: max-content;
  margin: 0 auto;
  padding: 10px 30px;
  border-radius: 4px;
  background: #DEBC85;
}
@media (min-width: 991px) {
  #mobileFilterBtn {
    display: none;
  }
}

@media (min-width: 991px) {
  .shop-archive__filters {
    transform: none;
    box-shadow: none;
    width: 100%;
    top: 30px;
  }
}
.products-wrapper:after {
  display: none !important;
}
@media screen and (min-width: 540px) {
  .products-wrapper:not(.swiper-wrapper) {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 900px) {
  .products-wrapper:not(.swiper-wrapper) {
    grid-template-columns: repeat(3, 1fr);
  }
}
.products-wrapper:not(.swiper-wrapper) .product-box {
  width: unset !important;
  float: none !important;
}
.products-wrapper .product-box {
  border-radius: 4px;
  background: white;
  margin: 0 0 20px 0 !important;
  text-align: center;
  overflow: hidden;
  padding: 0 !important;
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 540px) {
  .products-wrapper .product-box {
    margin: 0 !important;
  }
}
.products-wrapper .product-box .yith-wcwl-add-button a span {
  display: none;
}
.products-wrapper .product-box .product-box-image-wrapper {
  background-color: transparent;
  position: relative;
  height: 348px;
  overflow: hidden;
}
.products-wrapper .product-box .product-box-image-wrapper .product-box-top {
  display: flex;
  justify-content: space-between;
  padding: 20px 18px;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 2;
}
.products-wrapper .product-box .product-box-image-wrapper img {
  transition: transform 0.4s ease;
  transform-origin: center center;
  margin-bottom: 0 !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: contain;
  object-position: center center;
}
.products-wrapper .product-box .woocommerce-loop-product__title {
  color: #6D715B;
  text-align: center;
  font-variant-numeric: lining-nums proportional-nums;
  font-family: "Sybilla Pro", sans-serif;
  font-size: 18px !important;
  font-weight: 200;
  letter-spacing: 0.36px;
  padding-top: 16px !important;
  padding-bottom: 41px !important;
}
.products-wrapper .product-box .product-box-content {
  padding: 16px;
  border-top: 1px solid #BDBDBD;
  margin-top: auto;
  padding-top: 30px;
}
.products-wrapper .product-box .product-box-content .product-card__actions {
  opacity: 0;
  transform: scale(0.6);
  transform-origin: center center;
  transition: opacity 0.35s ease, transform 0.35s ease;
  pointer-events: none;
}
.products-wrapper .product-box .product-box-content .price {
  display: block !important;
  text-align: center;
  font-variant-numeric: lining-nums proportional-nums;
  font-family: "Sybilla Pro", sans-serif;
  color: #DEBC85 !important;
  font-size: 21px !important;
  font-weight: 300 !important;
  line-height: 1.3;
  background: none;
  -webkit-text-fill-color: currentColor;
}
.products-wrapper .product-box .product-box-content .price del {
  display: block !important;
  margin-bottom: 2px;
  color: #DEBC85 !important;
  white-space: nowrap;
  text-decoration: none;
}
.products-wrapper .product-box .product-box-content .price del bdi,
.products-wrapper .product-box .product-box-content .price del span {
  color: #DEBC85 !important;
  font-size: 16px !important;
  font-weight: 300 !important;
  text-decoration-line: line-through;
  text-decoration-color: #DEBC85;
  text-decoration-thickness: 1px;
  text-decoration-skip-ink: none;
}
.products-wrapper .product-box .product-box-content .price ins {
  display: block;
  text-decoration: none;
}
.products-wrapper .product-box .product-box-content .price ins bdi,
.products-wrapper .product-box .product-box-content .price ins span {
  color: #DEBC85 !important;
  font-size: 21px !important;
  font-weight: 300 !important;
}
.products-wrapper .product-box .product-box-content .price > bdi,
.products-wrapper .product-box .product-box-content .price > span {
  font-size: 21px !important;
  font-weight: 300 !important;
}
.products-wrapper .product-box:hover .product-box-image-wrapper img {
  transform: scale(1.15);
}
.products-wrapper .product-box:hover .product-card__actions {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}

/* NEW */
/* GLOBALS */
.single-product .quantity-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  border: 1px solid #E0E0E0;
  padding: 0 15px;
  border-radius: 4px;
  background: #ffffff;
  max-width: max-content;
  margin-right: 8px;
}
.single-product .quantity-wrapper .qty-input {
  width: 164px;
  -moz-appearance: textfield;
}
.single-product .quantity-wrapper .qty-input::-webkit-inner-spin-button, .single-product .quantity-wrapper .qty-input::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.single-product .quantity-wrapper > * {
  color: #333333;
}

.woocommerce-cart .quantity .quantity-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  border: 1px solid #E0E0E0;
  padding: 0 15px;
  border-radius: 4px;
  background: #ffffff;
  max-width: max-content;
}
.woocommerce-cart .quantity .quantity-wrapper .quantity__button {
  padding: 0;
  cursor: pointer;
  color: #333;
  text-align: center;
  font-size: 18px;
}
.woocommerce-cart .quantity .quantity-wrapper .qty {
  font-size: 18px;
  text-align: center;
  color: #939598;
  background-color: transparent;
  padding: 0;
  margin: 0;
  border: none;
  -webkit-appearance: none;
  -moz-appearance: textfield;
}
.woocommerce-cart .quantity .quantity-wrapper .quantity__button {
  padding: 5px;
  height: 100%;
  color: black;
  display: flex;
  align-items: center;
  width: 45px;
  justify-content: center;
}
.woocommerce-cart .quantity .quantity-wrapper .quantity__button a {
  color: black;
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.woocommerce-cart .quantity .quantity-wrapper .quantity__button a:hover {
  color: black;
}

/* Archive page: stable card grid + proper product image framing */
.shop-archive .shop-archive__body {
  align-items: start;
}
.shop-archive .shop-archive__content {
  min-width: 0;
}
.shop-archive .shop-archive__products .products-wrapper {
  margin: 0;
  padding: 0;
  list-style: none;
}
.shop-archive .products-wrapper:not(.swiper-wrapper) {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
@media screen and (max-width: 1100px) {
  .shop-archive .products-wrapper:not(.swiper-wrapper) {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media screen and (max-width: 640px) {
  .shop-archive .products-wrapper:not(.swiper-wrapper) {
    grid-template-columns: 1fr;
  }
}
.shop-archive .products-wrapper:not(.swiper-wrapper) .product-box {
  margin: 0 !important;
  width: auto !important;
  float: none !important;
}
.shop-archive .products-wrapper:not(.swiper-wrapper) .product-box .product-box-image-wrapper {
  height: 280px;
  background-color: #f7f5f0;
}
.shop-archive .products-wrapper:not(.swiper-wrapper) .product-box .product-box-image-wrapper img {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain;
  object-position: center center;
  padding: 22px;
}
.shop-archive .product-box .product-box-image-wrapper .product-box-top .product-card__wish {
  margin-left: auto;
}

@media (max-width: 767px) {
  .shop-archive {
    padding-bottom: 28px;
  }
  .shop-archive .shop-archive__body {
    display: block;
    gap: 0;
  }
  .shop-archive .shop-archive__content {
    width: 100%;
  }
  .shop-archive .shop-toolbar {
    margin-bottom: 12px;
  }
  .shop-archive .shop-toolbar__count {
    margin-bottom: 10px;
  }
  .shop-archive .shop-toolbar__controls {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .shop-archive .shop-toolbar__label {
    margin-bottom: 0;
  }
  .shop-archive .shop-toolbar__label > span {
    margin-bottom: 6px;
  }
  .shop-archive .shop-toolbar__select {
    width: 100%;
    border-radius: 8px;
    padding: 10px 12px;
    min-height: 44px;
  }
  .shop-archive #mobileFilterBtn {
    width: 100%;
    max-width: none;
    margin: 0 0 14px;
    min-height: 44px;
  }
  .shop-archive .shop-archive__products {
    margin-top: 8px;
  }
  .shop-archive .products-wrapper:not(.swiper-wrapper) {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .shop-archive .products-wrapper:not(.swiper-wrapper) .product-box .product-box-image-wrapper {
    height: 230px;
  }
  .shop-archive .products-wrapper:not(.swiper-wrapper) .product-box .product-box-image-wrapper img {
    padding: 14px;
  }
  .shop-archive .products-wrapper .product-box .product-box-content .price {
    font-size: 19px !important;
  }
  .shop-archive .products-wrapper .product-box .product-box-content .price ins {
    font-size: 19px !important;
  }
}
/* Single Product Responsive (final overrides) */
@media (max-width: 819px) {
  .single-product-wrapper {
    margin-top: 16px;
    margin-bottom: 24px;
  }
  .single-product .product-image-wrapper .woocommerce-breadcrumb {
    display: block;
    margin: 0 0 12px;
  }
  .single-product .product-image-wrapper h1 {
    display: block;
    margin: 0 0 16px;
    color: #6D715B;
    font-family: "Cormorant Infant", sans-serif;
    font-size: 34px;
    font-weight: 400;
    line-height: 1.1;
    text-transform: unset;
  }
  .single-product .product-image-wrapper .woocommerce-product-gallery .flex-control-nav.flex-control-thumbs {
    gap: 12px;
    margin-top: 14px !important;
  }
  .single-product .product-summary {
    margin-top: 20px;
  }
  .single-product .product-summary .sfc-price {
    margin-top: 16px;
  }
  .single-product .product-summary .sfc-price .price {
    font-size: 24px;
  }
  .single-product .product-summary .sfc-price .price del bdi,
  .single-product .product-summary .sfc-price .price del span {
    font-size: 17px !important;
  }
  .single-product .product-summary .sfc-price .price ins bdi,
  .single-product .product-summary .sfc-price .price ins span {
    font-size: 24px;
  }
  .single-product .product-summary .sfc-product-short-meta {
    gap: 8px;
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .single-product .product-summary .sfc-product-short-meta .sfc-product-short-meta__item {
    width: 100%;
  }
  .single-product .product-summary .sfc-product-short-meta .sfc-product-short-meta__item:not(:last-child)::after {
    display: none;
  }
  .single-product .product-summary .product-box-add-to-cart {
    gap: 12px;
  }
  .single-product .quantity-wrapper {
    width: 100%;
    max-width: none;
    margin-right: 0;
    justify-content: space-between;
  }
  .single-product .quantity-wrapper .qty-input {
    width: 100%;
  }
  .single-product .product-box-add-to-cart .btn-primary {
    width: 100%;
    text-align: center;
  }
  .sfc-product-tabs__nav {
    gap: 8px;
    overflow-x: auto;
    white-space: nowrap;
    padding-bottom: 6px;
  }
  .sfc-product-tabs__btn {
    padding: 10px 14px;
    font-size: 16px;
  }
  .sfc-characteristics-grid__item {
    padding: 14px 16px;
    gap: 12px;
  }
}
@media (min-width: 820px) and (max-width: 1199px) {
  .single-product-wrapper {
    grid-template-columns: repeat(8, 1fr);
    gap: 32px;
  }
  .single-product-wrapper .product-image-wrapper {
    grid-column: span 4;
  }
  .single-product-wrapper .product-summary {
    grid-column: span 4;
  }
  .single-product .product-summary h1 {
    font-size: 34px;
  }
  .single-product .product-summary .sfc-price .price {
    font-size: 24px;
  }
}
.product-sale-badge {
  display: flex;
  align-items: center;
  background: #DEBC85;
  border-radius: 8px !important;
}

.woocommerce-order .thankyou-title-text {
  font-family: "Cormorant Infant", sans-serif;
  font-size: 24px;
  font-style: italic;
  line-height: 125%;
  font-weight: 400;
  background: linear-gradient(270deg, #A18F6A 0%, #BFA16D 46.63%, #C09F6D 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-transform: none;
  padding-bottom: 6px;
}
.woocommerce-order .thankyou-value-text {
  color: #888682;
  font-weight: 300 !important;
  line-height: normal;
  font-size: 16px;
  margin-bottom: 0;
}

.woocommerce-order-details .box-primary .content p {
  margin-bottom: 0 !important;
  color: #888682;
  font-size: 16px;
  line-height: normal;
  font-weight: 300;
}

.woocommerce-order-overview li {
  border: none !important;
}

.single-product-wrapper {
  margin-bottom: 80px;
}

/*# sourceMappingURL=archive-and-single-product.css.map */
