@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: #A9833A;
}
.shop-archive__body {
  display: grid;
  grid-template-columns: 260px 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;
}

.filter-card {
  border: 1px solid #E7E7E7;
  border-radius: 4px;
  background: #fff;
  overflow: hidden;
  padding: 16px;
  /* hide native arrow */
}
.filter-card .filter-block__title {
  font-size: 16px;
  color: #5C5C5C;
  font-weight: 600;
  line-height: 115%;
}
.filter-card .filter-block__title::-webkit-details-marker {
  display: none;
}
.filter-card .filter-block__title {
  list-style: none;
}

.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 {
  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;
}

.filter-block[open] .filter-block__title::after {
  transform-origin: center;
  transform: rotate(180deg) translateY(1px);
}

.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;
  font-size: 16px;
}

.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 #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: #00745E;
  border-color: #00745E;
}

/* SVG arrow (your exact icon) */
.filter-item input[type=checkbox]:checked + span::after {
  content: "";
  position: absolute;
  left: 1px;
  top: 50%;
  transform: translateY(-50%);
  width: 14px;
  height: 10px;
  background-repeat: no-repeat;
  background-size: 12px;
  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");
  padding: 8px;
}

.price-filter {
  background: #fff;
  border-radius: 12px;
  width: 100%;
}

.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;
}

.slider-container {
  margin-top: 30px;
  margin-bottom: 30px;
  position: relative;
  height: 6px;
}

.slider-track {
  position: absolute;
  width: 100%;
  height: 6px;
  background: #ddd;
  border-radius: 3px;
  top: 0;
}

.slider-range {
  position: absolute;
  height: 6px;
  background: #BDBDBD;
  border-radius: 3px;
  top: 0;
}

.slider-input {
  position: absolute;
  width: 100%;
  height: 6px;
  pointer-events: none;
  appearance: none;
  background: transparent;
  top: 0;
}

.slider-input::-webkit-slider-thumb {
  appearance: none;
  width: 13px;
  height: 13px;
  background: #00745E;
  border: 1px solid #00745E;
  border-radius: 50%;
  cursor: pointer;
  pointer-events: auto;
  position: relative;
  z-index: 3;
}

.slider-input::-moz-range-thumb {
  width: 13px;
  height: 13px;
  background: #00745E;
  border: 1px solid #00745E;
  border-radius: 50%;
  cursor: pointer;
  pointer-events: auto;
}

.slider-input::-webkit-slider-thumb:hover {
  background: #A9833A;
  border: 1px solid #A9833A;
}

.slider-input::-moz-range-thumb:hover {
  background: #A9833A;
  border: 1px solid #A9833A;
}

.price-inputs {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.price-box {
  flex: 1;
  position: relative;
}
.price-box input {
  border-radius: 4px;
  border: 1px solid #00745E;
  background-color: white;
  font-weight: 600;
  padding: 6px;
}

.price-input {
  width: 100%;
  padding: 16px 20px;
  font-size: 24px;
  color: #333;
  border: 2px solid #a47551;
  border-radius: 8px;
  text-align: center;
  font-weight: 400;
  outline: none;
  transition: border-color 0.3s;
}

.price-input:focus {
  border-color: #8d6345;
}

.filter-item--tab {
  position: relative;
  cursor: pointer;
  padding: 8px;
  font-size: 16px;
}
.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: #A9833A;
  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: #A9833A;
  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;
}

.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;
  color: #5C5C5C;
  font-size: 18px;
  text-decoration: none;
  font-weight: 500;
}

.filter-clear::before {
  content: "✕";
  font-size: 18px;
  margin-right: 5px;
  color: #EB5757;
}

.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
  ========================= */
  /* =========================
     PRODUCT GRID
  ========================= */
  /* =========================
     PRODUCT CARD
  ========================= */
  /* =========================
     RESPONSIVE
  ========================= */
}
.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: #A9833A;
}
.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__products {
  min-height: 240px;
}
.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 .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: 0;
}
.shop-toolbar__select .filter-block__content {
  margin-top: 12px;
  display: flex;
  flex-direction: column;
}
.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 #00745E;
  background: #fff;
}
.shop-toolbar__select .filter-item input:checked + span::before {
  background: #00745E;
}
.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");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 12px;
}
.shop-toolbar__select .shop-archive .products > li {
  list-style: none;
}
.shop-toolbar__select .product-card {
  height: 100%;
}
.shop-toolbar__select .product-card__inner {
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
  box-shadow: none;
}
.shop-toolbar__select .product-card__image {
  background: #f4f1ee;
  border-radius: 18px;
  padding: 18px;
  display: grid;
  place-items: center;
  min-height: 190px;
}
.shop-toolbar__select .product-card__image img {
  max-height: 160px;
  width: 100%;
  object-fit: contain;
}
.shop-toolbar__select .product-card__wish {
  position: absolute;
  top: 16px;
  right: 16px;
  background: transparent;
  border: 0;
  cursor: pointer;
}
.shop-toolbar__select .product-card__title {
  margin: 12px 0 8px;
  font-size: 16px;
  text-align: center;
  color: #5b4a44;
  text-decoration: none;
  min-height: 36px;
}
.shop-toolbar__select .product-card__price {
  margin-top: auto;
  margin-bottom: 12px;
  text-align: center;
  font-size: 15px;
  font-weight: 700;
  color: #2f2621;
}
.shop-toolbar__select .product-card__actions {
  text-align: center;
}
.shop-toolbar__select .product-card__actions .button,
.shop-toolbar__select .product-card__actions .secondary-btn {
  width: 100%;
  height: 46px;
  border-radius: 999px;
  background: linear-gradient(90deg, #e5b195 0%, #6b3f2d 100%);
  color: #fff;
  border: 0;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
@media (max-width: 1000px) {
  .shop-toolbar__select .shop-archive__body {
    grid-template-columns: 1fr;
  }
}

.product-card {
  list-style: none;
  height: 100%;
}
.product-card__inner {
  background: #fff;
  border-radius: 16px;
  padding: 14px;
  box-shadow: 0 10px 24px rgba(82, 43, 28, 0.08);
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.product-card__image {
  display: block;
  border-radius: 12px;
  background: #f4f1ee;
  padding: 18px;
  text-align: center;
  min-height: 190px;
  display: grid;
  place-items: center;
}
.product-card__image img {
  width: 100%;
  max-height: 160px;
  margin: 0 auto;
  object-fit: contain;
}
.product-card__wish {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 30px;
  height: 30px;
  border-radius: 9999px;
  border: 1px solid #eadfd6;
  background: #fff;
  color: #c7b4a8;
  display: grid;
  place-items: center;
  cursor: pointer;
}
.product-card__title {
  display: block;
  margin-top: 12px;
  font-size: 14px;
  color: #5b4a44;
  min-height: 36px;
  text-decoration: none;
}
.product-card__price {
  margin-top: 8px;
  font-weight: 600;
  color: #2f2621;
}
.product-card__actions {
  margin-top: auto;
}
.product-card__actions .button {
  width: 100%;
  border-radius: 9999px;
  padding: 8px 12px;
  background: linear-gradient(90deg, #e5b195 0%, #6b3f2d 100%);
  color: #fff;
  border: 0;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.08em;
}

/* =========================
       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 #00745E;
  background: #fff;
  color: #00745E;
}
.woocommerce nav.woocommerce-pagination .page-numbers.current {
  background: #00745E;
  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;
}

.product-card__price .price {
  text-align: center;
  font-size: 15px !important;
  font-style: normal;
  font-weight: 700 !important;
  line-height: normal;
}
.product-card__price .price del .woocommerce-Price-amount .amount {
  text-align: center;
  font-size: 15px !important;
  font-style: normal;
  font-weight: 700 !important;
  line-height: normal;
}

/* Card takes full height inside a grid cell */
.product-card {
  height: 100%;
}

/* Column layout; allows pushing price+button to the bottom */
.product-card__inner {
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
  border-radius: 24px; /* optional */
  box-shadow: none;
}

/* Image block */
.product-card__image {
  width: 100%;
  display: block;
  border-radius: 18px;
  overflow: hidden;
  background: none;
}

/* Centered title */
.product-card__title {
  margin: 12px 0 8px;
  line-height: 1.3;
  text-align: center;
  text-decoration: none;
}

/* KEY: push this block to the bottom area */
.product-card__price {
  margin-top: auto; /* pushes price + button downward */
  margin-bottom: 12px; /* space before button */
  text-align: center;
  font-weight: 700;
}

/* Button area at the very bottom */
.product-card__actions {
  text-align: center;
  margin: 0 !important;
}

/* Button styling similar to the screenshot (pill, centered, fixed height) */
.product-card__actions .secondary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 240px;
  height: 46px;
  border-radius: 999px;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
}

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

/* 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;
  top: 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: 16px;
  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: 16px;
  }
}
/* ================================
   PRODUCT IMAGE WITH OVERLAY
   ================================ */
.product-image-wrapper {
  position: relative;
  width: 100%;
  /* Maintain image ratio */
  aspect-ratio: 1/1; /* change if needed */
  background-image: var(--product-image);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 12px;
  overflow: hidden;
}

/* Wishlist button */
.product-card__wish-secondary {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  border: none;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.product-card__wish-secondary img {
  width: 60px;
  height: 60px;
  display: block;
}

/* Mobile spacing */
@media (max-width: 768px) {
  .product-card__wish-secondary {
    top: 12px;
    right: 12px;
  }
}
.product-sale-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background-color: #F6C4A3;
  padding: 10px 20px;
  border-radius: 36px;
  color: #38383A;
  font-size: 16px;
  font-weight: 600;
  line-height: normal;
  text-align: center;
}
@media (max-width: 768px) {
  .product-sale-badge {
    top: 12px;
    left: 12px;
  }
}

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

/* Card */
.swiper-wrapper.products .product-card,
.single-product-related .swiper-slide.product-card {
  display: flex;
  height: auto;
}

/* Inner wrapper */
.product-card__inner {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  padding: 15px 10px;
  border: 1px solid rgba(201, 201, 201, 0.6);
  border-radius: 20px;
  text-align: center;
}

/* Wishlist */
.product-card__wish {
  position: absolute;
  background: none;
  border: none;
  top: 16px;
  right: 16px;
  background: #A9833A;
  border: 0;
  padding: 0;
  width: 60px;
  height: 60px;
  cursor: pointer;
  line-height: 1;
}

.product-card .product-card__wish {
  background-color: transparent;
}
.product-card .product-card__wish .yith-wcwl-add-to-wishlist-button svg {
  color: #BDBDBD !important;
}

/* Image */
.product-card__image {
  display: block;
}

.product-card__img {
  width: 100%;
  max-height: 240px;
  object-fit: contain;
  margin-bottom: 12px;
}

/* Title – фиксирана височина */
.product-card__title {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.3;
  min-height: 38px;
  margin-bottom: 8px;
  color: #000;
}

/* 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 .product-summary .sfc-price {
  margin-top: unset;
  padding-bottom: 10px;
}
.single-product .product-summary .sfc-price .price bdi,
.single-product .product-summary .sfc-price .price span {
  color: #07070A;
  font-size: 30px;
  font-weight: 500;
}
.single-product .product-summary .sfc-price .price del {
  display: block !important;
}
.single-product .product-summary .sfc-price .price del bdi,
.single-product .product-summary .sfc-price .price del span {
  color: #828282 !important;
  font-size: 20px !important;
  font-weight: 500 !important;
}
.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: #07070A;
  font-size: 30px;
  font-weight: 500;
}

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

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

/* Button always bottom */
.product-card__actions {
  margin-top: auto;
}

.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 {
  border-radius: 16px;
  background: white;
  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;
}

.qty-input {
  -moz-appearance: textfield;
}

.qty-input::-webkit-inner-spin-button,
.qty-input::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.shop-archive__products .products-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}
@media screen and (min-width: 770px) {
  .shop-archive__products .products-wrapper {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (min-width: 1300px) {
  .shop-archive__products .products-wrapper {
    grid-template-columns: repeat(4, 1fr);
  }
}

.shop-archive__products ul.products li.product {
  width: 100% !important;
  height: 100%;
}

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

@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;
  }
  body.mobile-filter-open {
    overflow: hidden;
  }
}
@media (min-width: 991px) {
  #mobileFilterBtn,
  #filterOverlay {
    display: none;
  }
  .shop-archive__filters {
    transform: none;
    box-shadow: none;
    width: 100%;
    top: 30px;
  }
}
@media (max-width: 767px) {
  .product-box-add-to-cart .qty-input {
    max-width: 140px;
  }
}

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