.areto-fg {
  --fg-accent: #dfd0c5;
  --fg-button: #e6ddd8;
  --fg-accent-strong: #c18aa0;
  --fg-text: #000000;
  --fg-muted: #000000;
  --fg-subtle: #d7b0c1;
  --fg-line: rgba(0, 0, 0, 0.1);
  --fg-soft: #f8f5f3;
  --fg-soft-2: #f3f4f6;
  --fg-success-bg: rgba(255, 205, 240, 0.35);
  --fg-success: #000000;
  background: #fff;
  color: var(--fg-text);
  font-family: var(--FONT-STACK-BODY, "Stolzl", sans-serif);
  padding: 24px 0 52px;
}

.areto-fg * {
  box-sizing: border-box;
}

.areto-fg svg {
  display: block;
}

.areto-fg a,
.areto-fg button,
.areto-fg input,
.areto-fg select,
.areto-fg textarea {
  font: inherit;
}

.areto-fg__container {
  width: min(1264px, calc(100% - 48px));
  margin: 0 auto;
}

.areto-fg__heading {
  margin: 0 0 24px;
  text-align: center;
}

.areto-fg__heading h1,
.areto-fg__heading h2 {
  margin: 0 0 4px;
  font-size: clamp(20px, 2.4vw, 24px);
  line-height: 1.25;
  font-weight: 300;
  color: var(--fg-text);
}

.areto-fg__heading p {
  margin: 0;
  font-size: 12px;
  line-height: 1.5;
  color: var(--fg-muted);
}

.areto-fg__backlink {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 24px;
  color: var(--fg-muted);
  text-decoration: none;
  font-size: 13px;
}

.areto-fg__backlink:hover {
  color: #4b5563;
}

.areto-fg__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.areto-fg-card {
  position: relative;
  cursor: pointer;
  touch-action: pan-x pan-y;
}

.areto-fg-card__link {
  position: relative;
  z-index: 1;
  display: block;
  color: inherit;
  text-decoration: none;
}

.areto-fg-card__media {
  position: relative;
  z-index: 1;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
}

.areto-fg-card__img {
  width: 100% !important;
  height: 100% !important;
  display: block;
  object-fit: contain !important;
  object-position: center !important;
}

.areto-fg-card__badge-wrap {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  display: grid;
  gap: 6px;
  justify-items: start;
}

.areto-fg-card__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 24px;
  padding: 6px 12px;
  border-radius: 10px;
  background: #8b654c;
  color: #fff;
  font-size: 10px;
  line-height: 1;
  font-weight: 700;
}

.areto-fg-card__badge--new {
  background: rgba(255, 205, 240, 0.48);
  color: #111;
  min-height: 28px;
  width: auto;
  height: auto;
  margin-left: 0;
  padding: 7px 14px;
  border-radius: 999px;
  clip-path: none;
  background: rgba(255, 205, 240, 0.35);
  color: #000000;
  font-size: 12px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.04em;
  animation: none;
  box-shadow: none;
}

@keyframes areto-fg-glow-pulse {
  0%,
  100% {
    box-shadow:
      0 0 8px rgba(198, 123, 92, 0.6),
      0 0 16px rgba(198, 123, 92, 0.3);
  }
  50% {
    box-shadow:
      0 0 12px rgba(198, 123, 92, 0.8),
      0 0 24px rgba(198, 123, 92, 0.5),
      0 0 32px rgba(198, 123, 92, 0.2);
  }
}

.areto-fg-card__icon-col {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  display: grid;
  gap: 8px;
}

.areto-fg-card__icon {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(12px);
  color: #6f6b67;
  text-decoration: none;
  padding: 0;
  cursor: pointer;
  transition: background-color .2s ease, border-color .2s ease;
}

.areto-fg-card__icon:hover {
  background: rgba(255, 255, 255, 1);
  border-color: rgba(0, 0, 0, 0.12);
}

.areto-fg-card__icon.is-active,
.areto-fg-product__ghost.is-active {
  background: #fff2ef;
  border-color: rgba(198, 123, 92, 0.45);
  color: var(--fg-accent-strong);
}

.areto-fg-card__icon.is-active svg path,
.areto-fg-product__ghost.is-active {
  stroke: currentColor;
}

.areto-fg-card__icon svg {
  width: 16px;
  height: 16px;
}

.areto-fg-card__icon img {
  width: 16px;
  height: 16px;
  display: block;
}

.areto-fg-card__body {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 2px;
  padding: 12px 12px 0;
  text-align: center;
}

.areto-fg-card__brand,
.areto-fg-card__title {
  margin: 0;
  font-size: 12px;
  line-height: 1.4;
  font-weight: 500;
  color: var(--fg-text);
}

.areto-fg-card__name-uk,
.areto-fg-card__subtitle--primary {
  margin: 0;
  font-size: 14px;
  line-height: 1.45;
  font-weight: 400;
  color: #4d4b57;
}

.areto-fg-card__name-en,
.areto-fg-card__subtitle {
  margin: 0;
  line-height: 1.4;
}

.areto-fg-card__subtitle--secondary,
.areto-fg-card__name-en {
  font-size: 12px;
  color: rgba(0, 0, 0, 0.58) !important;
  font-weight: 400;
}

.areto-fg-card__subtitle--secondary {
  display: block;
}

.areto-fg-card__price {
  margin-top: 6px;
  font-size: 16px;
  line-height: 1.2;
  font-weight: 500;
  color: var(--fg-text);
}

.areto-fg-card__price:has(del):has(ins) {
  display: inline-flex;
  align-items: baseline;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  width: 100%;
}

.areto-fg-card__price .woocommerce-Price-amount {
  font-weight: 500;
}

.areto-fg-card__price del {
  order: 2;
  margin: 0;
  background: transparent !important;
  color: rgba(0, 0, 0, 0.42);
  font-size: 14px;
  font-weight: 400;
  text-decoration: line-through;
  text-decoration-thickness: 1px;
  text-decoration-color: currentColor;
}

.areto-fg-card__price ins {
  order: 1;
  background: transparent !important;
  text-decoration: none;
  color: var(--fg-text);
  font-size: 17px;
  font-weight: 500;
}

.areto-fg-card__price del,
.areto-fg-card__price del .woocommerce-Price-amount,
.areto-fg-card__price del .woocommerce-Price-currencySymbol {
  color: rgba(0, 0, 0, 0.42) !important;
  font-weight: 400 !important;
}

.areto-fg-card__price ins,
.areto-fg-card__price ins .woocommerce-Price-amount,
.areto-fg-card__price ins .woocommerce-Price-currencySymbol {
  background: transparent !important;
  color: var(--fg-text) !important;
  font-weight: 500 !important;
}

.areto-fg-card__rating {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 12px;
  color: var(--fg-text);
}

.areto-fg-rating-stars {
  position: relative;
  display: inline-block;
  line-height: 1;
  letter-spacing: 1px;
  font-size: 13px;
  font-family: Arial, "Segoe UI Symbol", "Apple Symbols", sans-serif;
}

.areto-fg-rating-stars__base,
.areto-fg-rating-stars__fill {
  display: block;
  white-space: nowrap;
}

.areto-fg-rating-stars__base {
  color: #d4d4db;
}

.areto-fg-rating-stars__fill {
  position: absolute;
  inset: 0 auto 0 0;
  overflow: hidden;
  color: #05050a;
}

.areto-fg-card__count {
  font-size: 11px;
  color: var(--fg-muted);
}

.areto-fg--archive .areto-fg-card {
  background: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(8px);
}

.areto-fg__empty {
  padding: 40px 16px;
  text-align: center;
  color: var(--fg-muted);
  font-size: 14px;
  border: 1px dashed var(--fg-line);
}

.areto-fg__pill,
.areto-fg-filter__button,
.areto-fg-product__quick,
.areto-fg-product__ghost,
.areto-fg-product form.cart .single_add_to_cart_button,
.areto-fg-product .added_to_cart {
  min-height: 38px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 6px;
  background: var(--fg-button);
  color: #625650;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  transition: opacity .2s ease;
}

.areto-fg__pill:hover,
.areto-fg-filter__button:hover,
.areto-fg-product__quick:hover,
.areto-fg-product__ghost:hover,
.areto-fg-product form.cart .single_add_to_cart_button:hover {
  opacity: .9;
}

.areto-fg-product form.cart .single_add_to_cart_button,
.areto-fg-product form.cart .single_add_to_cart_button.alt,
.areto-fg-product .added_to_cart,
.areto-fg-product__quick {
  background: var(--fg-button) !important;
  border-color: transparent !important;
  color: #625650 !important;
  box-shadow: none !important;
}

.areto-fg-product form.cart .single_add_to_cart_button:hover,
.areto-fg-product form.cart .single_add_to_cart_button.alt:hover,
.areto-fg-product__quick:hover {
  background: #ded3cd !important;
}

.areto-fg-product__ghost {
  background: #fff !important;
  border-color: var(--fg-line) !important;
  color: #625650 !important;
}

.areto-fg__filter-trigger {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 55;
  box-shadow: 0 12px 28px rgba(17, 24, 39, 0.15);
}

.areto-fg__filter-trigger svg {
  width: 16px;
  height: 16px;
}

.areto-fg-filter__backdrop {
  position: fixed;
  inset: 0;
  z-index: 80;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease;
}

.areto-fg-filter__backdrop.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.areto-fg-filter {
  position: fixed;
  inset: 0 auto 0 0;
  z-index: 90;
  width: min(320px, 90vw);
  height: 100%;
  background: #fff;
  box-shadow: 0 18px 42px rgba(17, 24, 39, 0.18);
  transform: translateX(-102%);
  transition: transform .28s ease;
  display: grid;
  grid-template-rows: auto 1fr auto;
}

.areto-fg-filter.is-open {
  transform: translateX(0);
}

.areto-fg-filter__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 20px 18px;
  border-bottom: 1px solid var(--fg-line);
}

.areto-fg-filter__head h3 {
  margin: 0;
  font-size: 24px;
  font-weight: 500;
  color: #374151;
}

.areto-fg-filter__close {
  width: 34px;
  height: 34px;
  border: 0;
  background: var(--fg-soft);
  color: var(--fg-muted);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}

.areto-fg-filter__body {
  overflow: auto;
  padding: 20px;
  display: grid;
  gap: 16px;
}

.areto-fg-filter__section {
  display: grid;
  gap: 12px;
}

.areto-fg-filter__section h3,
.areto-fg-filter__section label {
  margin: 0;
  font-size: 13px;
  font-weight: 500;
  color: #4b5563;
}

.areto-fg-filter input,
.areto-fg-filter select {
  width: 100%;
  height: 40px;
  padding: 0 12px;
  border: 1px solid #d1d5db;
  background: #fff;
  color: #374151;
}

.areto-fg-filter__price-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.areto-fg-filter__checklist {
  display: grid;
  gap: 10px;
}

.areto-fg-filter__option {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #4b5563;
}

.areto-fg-filter__option input {
  width: 16px;
  height: 16px;
  margin: 0;
}

.areto-fg-filter__foot {
  padding: 16px 20px 20px;
  border-top: 1px solid var(--fg-line);
  display: grid;
  gap: 10px;
}

.areto-fg-filter__button--ghost,
.areto-fg-product__ghost {
  background: #fff;
  border-color: var(--fg-line);
}

.areto-fg-single {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 48px;
  align-items: start;
}

.areto-fg-gallery {
  position: sticky;
  top: 110px;
  display: grid;
  gap: 12px;
}

.areto-fg-gallery__main {
  position: relative;
  background: #ffffff;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.areto-fg-gallery__badge-wrap {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.areto-fg-gallery__main img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.areto-fg-gallery__nav {
  position: absolute;
  top: 50%;
  width: 48px;
  height: 48px;
  margin-top: -24px;
  border: 1px solid #e5e7eb;
  border-radius: 999px;
  background: #fff;
  color: #111827;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color .2s ease, box-shadow .2s ease, opacity .2s ease;
}

.areto-fg-gallery__nav:hover {
  border-color: #9ca3af;
  box-shadow: 0 6px 16px rgba(17, 24, 39, 0.08);
}

.areto-fg-gallery__nav:disabled {
  opacity: .2;
  cursor: not-allowed;
  box-shadow: none;
}

.areto-fg-gallery__nav--prev {
  left: -20px;
}

.areto-fg-gallery__nav--next {
  right: -20px;
}

.areto-fg-gallery__counter {
  margin-top: 4px;
  text-align: center;
  font-size: 14px;
  color: var(--fg-muted);
}

.areto-fg-gallery__thumbs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

.areto-fg-gallery__thumb {
  padding: 0;
  border: 0;
  background: #f8f5f3;
  cursor: pointer;
}

.areto-fg-gallery__thumb img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
}

.areto-fg-gallery__thumb.is-active {
  outline: 2px solid #111827;
  outline-offset: 1px;
}

.areto-fg-product {
  display: grid;
  gap: 24px;
}

.areto-fg-product__intro {
  display: grid;
  gap: 8px;
}

.areto-fg-product__brand {
  margin: 0;
  font-size: 12px;
  font-weight: 400;
  color: var(--fg-muted);
}

.areto-fg-product__title {
  margin: 0;
  font-size: clamp(18px, 2.2vw, 24px);
  line-height: 1.45;
  font-weight: 300;
  color: var(--fg-text);
}

.areto-fg-product__subtitle {
  margin: 0;
  font-size: 12px;
  line-height: 1.5;
  color: var(--fg-subtle);
}

.areto-fg-product__price {
  margin: 0;
  font-size: clamp(22px, 2.2vw, 26px);
  line-height: 1.05;
  font-weight: 400;
  color: var(--fg-text);
}

.areto-fg-product__price:has(del):has(ins),
.areto-fg-product .price:has(del):has(ins),
.areto-fg-product .woocommerce-variation-price .price:has(del):has(ins) {
  display: inline-flex;
  align-items: baseline;
  gap: 14px;
  flex-wrap: wrap;
}

.areto-fg-product__price del,
.areto-fg-product .price del,
.areto-fg-product .woocommerce-variation-price del {
  order: 2;
  margin: 0;
  background: transparent !important;
  color: rgba(0, 0, 0, 0.42);
  font-size: clamp(16px, 1.35vw, 20px);
  font-weight: 400;
  text-decoration: line-through;
  text-decoration-thickness: 1px;
  text-decoration-color: currentColor;
}

.areto-fg-product__price ins,
.areto-fg-product .price ins,
.areto-fg-product .woocommerce-variation-price ins {
  order: 1;
  background: transparent !important;
  color: var(--fg-text);
  font-size: clamp(25px, 2.45vw, 32px);
  font-weight: 500;
  text-decoration: none;
}

.areto-fg-product__price del,
.areto-fg-product__price del .woocommerce-Price-amount,
.areto-fg-product__price del .woocommerce-Price-currencySymbol,
.areto-fg-product .price del,
.areto-fg-product .price del .woocommerce-Price-amount,
.areto-fg-product .price del .woocommerce-Price-currencySymbol {
  color: rgba(0, 0, 0, 0.42) !important;
  font-weight: 400 !important;
}

.areto-fg-product__price ins,
.areto-fg-product__price ins .woocommerce-Price-amount,
.areto-fg-product__price ins .woocommerce-Price-currencySymbol,
.areto-fg-product .price ins,
.areto-fg-product .price ins .woocommerce-Price-amount,
.areto-fg-product .price ins .woocommerce-Price-currencySymbol,
.areto-fg-product .woocommerce-variation-price ins,
.areto-fg-product .woocommerce-variation-price ins .woocommerce-Price-amount,
.areto-fg-product .woocommerce-variation-price ins .woocommerce-Price-currencySymbol {
  background: transparent !important;
  color: var(--fg-text) !important;
  font-weight: 500 !important;
}

.woocommerce div.product p.price ins,
.woocommerce div.product span.price ins,
.woocommerce div.product .woocommerce-variation-price ins,
.woocommerce ul.products li.product .price ins {
  background: transparent !important;
}

@media (max-width: 767px) {
  .areto-fg-product__price:has(del):has(ins),
  .areto-fg-product .price:has(del):has(ins),
  .areto-fg-product .woocommerce-variation-price .price:has(del):has(ins) {
    gap: 12px;
  }

  .areto-fg-product__price ins,
  .areto-fg-product .price ins,
  .areto-fg-product .woocommerce-variation-price ins {
    font-size: 26px;
  }

  .areto-fg-product__price del,
  .areto-fg-product .price del,
  .areto-fg-product .woocommerce-variation-price del {
    font-size: 17px;
  }
}

.areto-fg-product__section h3,
.areto-fg-product__pickup h3,
.areto-fg-product__payment h3 {
  margin: 0;
  font-size: clamp(15px, 1.2vw, 18px);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .06em;
  line-height: 1.25;
  color: #111111;
}

.areto-fg-product__actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  align-items: start;
}

.areto-fg-product__actions form.cart {
  position: relative;
}

.areto-fg-product__actions .single_add_to_cart_button,
.areto-fg-product__actions .areto-fg-product__quick {
  width: 100%;
}

.areto-fg-product__actions form.cart,
.areto-fg-product__actions .areto-fg-product__ghost--wishlist {
  grid-row: 1;
}

.areto-fg-product__actions .areto-fg-product__ghost--wishlist {
  align-self: end;
}

.areto-fg-product__actions .areto-fg-product__quick,
.areto-fg-product__actions .areto-fg-product__ghost:not(.areto-fg-product__ghost--wishlist) {
  grid-row: 2;
}

.areto-fg-product form.cart {
  display: grid;
  gap: 14px;
  margin: 0;
}

.areto-fg-product form.cart .variations_button,
.areto-fg-product form.cart .single_variation_wrap {
  display: grid;
  gap: 14px;
}

.areto-fg-product form.cart .woocommerce-variation-description,
.areto-fg-product form.cart .woocommerce-variation-price,
.areto-fg-product form.cart .woocommerce-variation-availability {
  font-size: 13px;
  line-height: 1.6;
  color: #4b5563;
}

.areto-fg-product form.cart .woocommerce-variation-price {
  display: none !important;
}

.areto-fg-product form.cart .quantity {
  margin: 0;
}

.areto-fg-product form.cart .quantity.is-visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.areto-fg-product form.cart .quantity .qty,
.areto-fg-product form.cart select,
.areto-fg-product form.cart .variations select {
  width: 100%;
  max-width: 100%;
  height: 38px;
  border: 1px solid #d1d5db;
  padding: 0 12px;
  background: #fff;
  color: #374151;
}

.areto-fg-product form.cart table.variations,
.areto-fg-product form.cart table.variations td,
.areto-fg-product form.cart table.variations th {
  width: 100%;
  border: 0;
  padding: 0 0 8px;
}

.areto-fg-product form.cart table.variations label {
  font-size: 13px;
  font-weight: 500;
  color: #4b5563;
}

.areto-fg-product form.cart .variations tr {
  display: grid;
  gap: 12px;
}

.areto-fg-product form.cart .variations td.label,
.areto-fg-product form.cart .variations td.value {
  display: block;
}

.areto-fg-product form.cart .variations td.label {
  padding-bottom: 0;
}

.areto-fg-product form.cart .variations td.label label {
  display: block;
  font-size: 15px;
  font-weight: 500;
  color: #4b5563;
  letter-spacing: .01em;
}

.areto-fg-product form.cart .woo-variation-items-wrapper,
.areto-fg-product form.cart .variable-items-wrapper {
  width: 100%;
}

.areto-fg-product form.cart .variable-items-wrapper.button-variable-items-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.areto-fg-product form.cart .variable-items-wrapper.button-variable-items-wrapper .variable-item {
  min-width: 118px;
  min-height: 46px;
  margin: 0;
  padding: 0 14px;
  border: 1px solid transparent !important;
  border-radius: 12px !important;
  background: linear-gradient(180deg, #f4eeea 0%, #e7ddd8 100%) !important;
  box-shadow: none !important;
  color: #625650 !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: opacity .2s ease, box-shadow .2s ease, border-color .2s ease, background-color .2s ease;
}

.areto-fg-product form.cart .variable-items-wrapper.button-variable-items-wrapper .variable-item:hover {
  opacity: 1;
  background: linear-gradient(180deg, #efe5df 0%, #e3d7d0 100%) !important;
}

.areto-fg-product form.cart .variable-items-wrapper.button-variable-items-wrapper .variable-item.selected,
.areto-fg-product form.cart .variable-items-wrapper.button-variable-items-wrapper .variable-item[aria-checked="true"] {
  border-color: #88766d !important;
  background: linear-gradient(180deg, #ede3dc 0%, #e0d4cd 100%) !important;
  box-shadow: inset 0 0 0 1px #88766d !important;
}

.areto-fg-product form.cart .variable-items-wrapper.button-variable-items-wrapper .variable-item .variable-item-contents,
.areto-fg-product form.cart .variable-items-wrapper.button-variable-items-wrapper .variable-item .variable-item-span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  font-size: 13px;
  font-weight: 500;
  color: inherit;
  line-height: 1.4;
  white-space: nowrap;
}

.areto-fg-product form.cart .variable-items-wrapper.button-variable-items-wrapper .variable-item.disabled,
.areto-fg-product form.cart .variable-items-wrapper.button-variable-items-wrapper .variable-item[aria-disabled="true"] {
  opacity: .45;
  cursor: not-allowed;
}

.areto-fg-product form.cart .reset_variations {
  display: inline-block;
  margin-top: 6px;
  color: var(--fg-muted);
  font-size: 12px;
}

.areto-fg-product form.cart .wvs-style-squared.variable-items-wrapper .variable-item,
.areto-fg-product form.cart .wvs-style-squared.variable-items-wrapper .variable-item:not(.radio-variable-item) {
  border-radius: 14px !important;
}

.areto-fg-product form.cart .wvs-style-squared.variable-items-wrapper .variable-item.selected,
.areto-fg-product form.cart .wvs-style-squared.variable-items-wrapper .variable-item[aria-checked="true"] {
  border-color: #88766d !important;
  box-shadow: inset 0 0 0 1px #88766d !important;
}

.areto-fg-product__cta-shell {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  min-height: 52px;
  padding: 6px 12px;
  border-radius: 14px;
  background: var(--fg-button);
  color: #625650;
  border: 1px solid transparent;
}

.areto-fg-product__cta-shell .single_add_to_cart_button,
.areto-fg-product__cta-shell .single_add_to_cart_button.alt {
  flex: 1 1 auto;
  min-width: 0;
}

.areto-fg-product__cta-shell.is-in-cart {
  background: var(--fg-button);
  border-color: rgba(98, 86, 80, 0.14);
}

.areto-fg-product__cta-main {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  flex: 1 1 auto;
}

.areto-fg-product__cta-icon {
  width: 26px;
  height: 26px;
  flex: 0 0 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.areto-fg-product__cta-icon svg,
.areto-fg-product__cta-icon img {
  width: 100%;
  height: 100%;
  display: block;
}

.areto-fg-product__cta-label {
  min-width: 0;
  font-size: clamp(13px, 1.1vw, 16px);
  line-height: 1.1;
  font-weight: 500;
  letter-spacing: -.02em;
}

.areto-fg-product__cta-qty {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
  flex: 0 0 auto;
}

.areto-fg-product__cta-shell:not(.is-in-cart) .areto-fg-product__cta-qty {
  display: none;
}

.areto-fg-product__cta-qty-btn {
  width: 30px;
  height: 30px;
  border: 1px solid rgba(98, 86, 80, 0.14);
  border-radius: 10px;
  background: #ffffff;
  color: #625650;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  cursor: pointer;
}

.areto-fg-product__cta-qty-btn svg {
  width: 16px;
  height: 16px;
  display: block;
}

.areto-fg-product__cta-qty-btn:hover {
  background: #faf7f5;
}

.areto-fg-product__cta-qty-value {
  min-width: 18px;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  color: #625650;
}

.areto-fg-product form.cart .single_add_to_cart_button,
.areto-fg-product form.cart .single_add_to_cart_button.alt {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0;
  min-height: auto;
  padding: 0;
  background: transparent !important;
  border: 0 !important;
  color: #625650 !important;
  width: 100%;
}

.areto-fg-product form.cart .single_add_to_cart_button:hover,
.areto-fg-product form.cart .single_add_to_cart_button.alt:hover {
  background: transparent !important;
  opacity: 1;
}

.areto-fg-product form.cart .quantity .qty {
  border-color: rgba(98, 86, 80, 0.2);
  border-radius: 10px;
  color: #374151;
}

.areto-fg-product__section,
.areto-fg-product__pickup,
.areto-fg-product__payment {
  border-top: 1px solid var(--fg-line);
  padding-top: 18px;
}

.areto-fg-product__section p,
.areto-fg-product__pickup p,
.areto-fg-product__section li,
.areto-fg-product__richtext,
.areto-fg-product__richtext p,
.areto-fg-product__pickup-note {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  color: #000000;
}

.areto-fg-product__section--accordion {
  padding-bottom: 2px;
}

.areto-fg-product__section-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  list-style: none;
}

.areto-fg-product__section-summary::-webkit-details-marker {
  display: none;
}

.areto-fg-product__section-summary::marker {
  content: "";
}

.areto-fg-product__section-toggle {
  position: relative;
  flex: 0 0 18px;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  transition: transform .2s ease;
}

.areto-fg-product__section-toggle::before,
.areto-fg-product__section-toggle::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 1.5px;
  border-radius: 999px;
  background: #625650;
  transform: translate(-50%, -50%);
  transition: opacity .2s ease, transform .2s ease;
}

.areto-fg-product__section-toggle::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.areto-fg-product__section--accordion[open] .areto-fg-product__section-toggle::after {
  opacity: 0;
}

.areto-fg-product__section-body {
  padding-top: 14px;
}

.areto-fg-product__section--tabs {
  display: grid;
  gap: 18px;
}

.areto-fg-product__tab-nav {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.areto-fg-product__tab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 20px;
  border: 1px solid rgba(17, 24, 39, 0.12);
  border-radius: 999px;
  background: #ffffff;
  color: #374151;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: background-color .2s ease, color .2s ease, border-color .2s ease;
}

.areto-fg-product__tab.is-active {
  background: #111827;
  border-color: #111827;
  color: #ffffff;
}

.areto-fg-product__actions .areto-fg-product__ghost,
.areto-fg-product__actions .areto-fg-product__quick {
  min-height: 64px;
  padding: 0 18px;
  border-radius: 16px;
  font-size: 16px;
}

.areto-fg-product__actions .areto-fg-product__ghost--wishlist {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  white-space: nowrap;
}

.areto-fg .woosw-btn .woosw-btn-icon,
.areto-fg .woosw-btn .woosw-btn-text,
.areto-fg .woosw-btn .woosw-added-text,
.areto-fg .woosw-btn .woosw-adding-text {
  display: none !important;
}

.areto-fg .woosw-btn {
  box-shadow: none !important;
}

.areto-fg-card__icon--wishlist::before,
.areto-fg-product__ghost--wishlist::before {
  content: "";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 18px 18px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M12 20.25s-7.5-4.35-7.5-10.18A4.57 4.57 0 0 1 9 5.5c1.23 0 2.41.56 3 1.45.59-.89 1.77-1.45 3-1.45a4.57 4.57 0 0 1 4.5 4.57c0 5.83-7.5 10.18-7.5 10.18Z' stroke='%23625650' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.areto-fg-card__icon--wishlist.is-active::before,
.areto-fg-card__icon--wishlist.woosw-added::before,
.areto-fg-product__ghost--wishlist.is-active::before,
.areto-fg-product__ghost--wishlist.woosw-added::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M12 20.25s-7.5-4.35-7.5-10.18A4.57 4.57 0 0 1 9 5.5c1.23 0 2.41.56 3 1.45.59-.89 1.77-1.45 3-1.45a4.57 4.57 0 0 1 4.5 4.57c0 5.83-7.5 10.18-7.5 10.18Z' fill='%23fff2ef' stroke='%23c67b5c' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.areto-fg .areto-wpc-wishlist__icon {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  display: none !important;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.areto-fg .areto-wpc-wishlist__icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.areto-fg .areto-wpc-wishlist__label {
  display: inline-flex;
  align-items: center;
}

.areto-fg .areto-wpc-wishlist__label--added {
  display: none;
}

.areto-fg .woosw-added .areto-wpc-wishlist__label--default {
  display: none;
}

.areto-fg .woosw-added .areto-wpc-wishlist__label--added {
  display: inline-flex;
}

.areto-fg .areto-fg-card__icon.woosw-btn {
  width: 36px;
  height: 36px;
  min-height: 36px;
  min-width: 36px;
  padding: 0;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.88) !important;
  border: 1px solid rgba(0, 0, 0, 0.08) !important;
  color: #6f6b67 !important;
  font-size: 0 !important;
  line-height: 0 !important;
  overflow: hidden;
}

.areto-fg .areto-fg-card__icon.woosw-btn:hover {
  background: rgba(255, 255, 255, 1) !important;
  border-color: rgba(0, 0, 0, 0.12) !important;
}

.areto-fg .areto-fg-card__icon.woosw-added {
  background: #fff2ef !important;
  border-color: rgba(198, 123, 92, 0.45) !important;
  color: var(--fg-accent-strong) !important;
}

.areto-fg .areto-fg-card__icon.woosw-btn .areto-wpc-wishlist__label,
.areto-fg .areto-fg-card__icon.woosw-btn .woosw-btn-text,
.areto-fg .areto-fg-card__icon.woosw-btn .woosw-added-text,
.areto-fg .areto-fg-card__icon.woosw-btn .woosw-adding-text {
  display: none !important;
}

.areto-fg .areto-fg-card__icon.woosw-btn .areto-wpc-wishlist__icon {
  display: none !important;
}

.areto-fg .areto-fg-product__ghost--wishlist.woosw-btn {
  width: 100%;
  min-width: 0;
  min-height: 50px;
  padding: 0 14px;
  border-radius: 14px;
  background: #fff !important;
  border: 1px solid var(--fg-line) !important;
  color: #000000 !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  white-space: nowrap;
  font-size: 14px;
}

.areto-fg .areto-fg-product__ghost--wishlist.woosw-btn:hover {
  background: #faf7f5 !important;
}

.areto-fg .areto-fg-product__ghost--wishlist.woosw-added {
  background: #fff2ef !important;
  border-color: rgba(198, 123, 92, 0.45) !important;
  color: var(--fg-accent-strong) !important;
}

.areto-fg .areto-fg-product__ghost--consultation {
  width: 100%;
}

.areto-fg .awooc-button-js.areto-fg-product__quick,
.areto-fg .areto-fg-product form.cart .awooc-button-js.areto-fg-product__quick {
  width: 100%;
  min-height: 50px;
  padding: 0 14px;
  border-radius: 14px;
  background: var(--fg-button) !important;
  border: 1px solid transparent !important;
  color: #000000 !important;
  box-shadow: none !important;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.2;
  text-decoration: none;
}

.areto-fg .awooc-button-js.areto-fg-product__quick:hover,
.areto-fg .areto-fg-product form.cart .awooc-button-js.areto-fg-product__quick:hover {
  background: #ded3cd !important;
}

.areto-fg .areto-fg-product form.cart .awooc-button-js.areto-fg-product__quick:not(:last-of-type) {
  display: none !important;
}

.areto-fg-product__tab-panel[hidden] {
  display: none !important;
}

.areto-fg-product__composition-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
}

.areto-fg-product__composition-list li {
  position: relative;
  padding-left: 0;
  display: inline-flex;
  align-items: center;
}

.areto-fg-product__composition-list li::before {
  content: none;
}

.areto-fg-product__composition-list li::after {
  content: "•";
  margin-left: 12px;
  color: rgba(0, 0, 0, 0.35);
}

.areto-fg-product__composition-list li:last-child::after {
  content: none;
}

.areto-fg-product form.cart table.variations tr.areto-fg-variation-row--hidden {
  display: none !important;
}

.areto-fg-product__weights {
  display: none !important;
}

.areto-fg-product form.cart table.variations tr:has(td.value[data-attribute_name*="weight"]),
.areto-fg-product form.cart table.variations tr:has(td.value[data-attribute_name*="vaga"]),
.areto-fg-product form.cart table.variations tr:has(td.value[data-attribute_name*="attribute_pa_weight"]),
.areto-fg-product form.cart table.variations tr:has(td.value[data-attribute_name*="attribute_pa_vaga"]) {
  display: none !important;
}

.areto-fg-product__payment,
.areto-fg-product__payment-badge,
.areto-fg-product [class*="monobank"],
.areto-fg-product [class*="privat"],
.areto-fg-product [class*="installment"],
.areto-fg-product [class*="payment-parts"],
.areto-fg-product [data-payment-widget] {
  display: none !important;
}

.areto-fg-product__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.areto-fg-product__chip {
  padding: 10px 14px;
  border: 1px solid var(--fg-line);
  background: #fff;
  font-size: 13px;
  line-height: 1.35;
  color: #374151;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 400;
}

.areto-fg-product__chip-icon {
  color: #6b7280;
}

.areto-fg-product__icon-list {
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.areto-fg-product__payment-badge {
  display: inline-flex;
  align-items: center;
  padding: 10px 12px;
  border: 1px solid rgba(98, 86, 80, 0.12);
  border-radius: 14px;
  background: linear-gradient(180deg, #fffefe 0%, #f6f1ee 100%);
  box-shadow: 0 6px 18px rgba(17, 24, 39, 0.04);
}

.areto-fg-product__payment-badge svg {
  display: block;
  width: auto;
  height: 26px;
}

.areto-fg-product__pickup {
  display: grid;
  gap: 14px;
  background: linear-gradient(180deg, #faf7f5 0%, #f5efeb 100%);
  border: 1px solid rgba(98, 86, 80, 0.08);
  border-radius: 18px;
  padding: 22px;
}

.areto-fg-product__pickup-main {
  border-left: 2px solid var(--fg-accent-strong);
  padding: 2px 0 2px 14px;
  display: grid;
  gap: 4px;
}

.areto-fg-product__pickup-list {
  display: grid;
  gap: 12px;
}

.areto-fg-product__pickup-title {
  margin: 0;
  font-size: 14px;
  font-weight: 500;
  color: #111827;
}

.areto-fg-product__pickup p,
.areto-fg-product__pickup-note {
  font-weight: 400;
}

.areto-fg-product__pickup-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 6px;
  padding: 4px 8px;
  background: rgba(255, 205, 240, 0.35);
  color: #000000;
  font-size: 12px;
  font-weight: 500;
}

.areto-fg-product__actions .areto-fg-product__ghost,
.areto-fg-product__actions .areto-fg-product__quick {
  min-height: 50px;
  padding: 0 14px;
  border-radius: 14px;
  font-size: 14px;
}

.areto-fg-product__pickup-note {
  padding-top: 12px;
  border-top: 1px solid var(--fg-line);
  color: var(--fg-muted);
  font-size: 12px;
}

.areto-fg-product__attributes {
  margin: 12px 0 0;
  padding-left: 18px;
  display: grid;
  gap: 6px;
}

.areto-fg-product__reviews-head {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
}

.areto-fg-product__rating-link {
  display: inline-flex;
  width: fit-content;
  color: inherit;
  text-decoration: none;
}

.areto-fg-product__reviews-head span {
  font-size: 16px;
  font-weight: 500;
  color: #111827;
}

.areto-fg-product__reviews-link {
  margin-top: 12px;
  display: inline-flex;
  width: fit-content;
  padding: 0;
  border: 0;
  background: none;
  color: var(--fg-muted);
  text-decoration: underline;
  font-size: 13px;
}

.areto-fg-reviews {
  margin-top: 24px;
  display: grid;
  gap: 24px;
}

.areto-fg-reviews__title,
.areto-fg-reviews .comment-reply-title {
  margin: 0 0 18px;
  font-size: 18px;
  font-weight: 500;
  color: #111827;
}

.areto-fg-reviews .commentlist {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 16px;
}

.areto-fg-reviews .review,
.areto-fg-reviews .comment_container {
  margin: 0;
}

.areto-fg-reviews .comment_container {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  gap: 14px;
  padding: 18px;
  border: 1px solid rgba(98, 86, 80, 0.08);
  border-radius: 18px;
  background: linear-gradient(180deg, #fffefe 0%, #f7f1ed 100%);
}

.areto-fg-reviews .avatar {
  width: 56px;
  height: 56px;
  border-radius: 999px;
}

.areto-fg-reviews .comment-text {
  display: grid;
  gap: 10px;
}

.areto-fg-reviews .meta {
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--fg-muted);
}

.areto-fg-reviews .woocommerce-review__author {
  color: #111827;
  font-weight: 600;
}

.areto-fg-reviews .woocommerce-review__dash {
  display: none;
}

.areto-fg-reviews .description,
.areto-fg-reviews .description p {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  color: #4b5563;
}

.areto-fg-reviews .star-rating {
  position: relative;
  overflow: hidden;
  width: 88px;
  height: 16px;
  font-size: 16px;
  line-height: 1;
  color: #111827;
}

.areto-fg-reviews .star-rating::before,
.areto-fg-reviews .star-rating span::before {
  content: "★★★★★";
  position: absolute;
  left: 0;
  top: 0;
  letter-spacing: 1px;
}

.areto-fg-reviews .star-rating::before {
  color: #d4d4db;
}

.areto-fg-reviews .star-rating span {
  position: absolute;
  inset: 0 auto 0 0;
  overflow: hidden;
  color: #111827;
}

.areto-fg-reviews .star-rating span::before {
  color: currentColor;
}

.areto-fg-reviews .woocommerce-noreviews,
.areto-fg-reviews .woocommerce-verification-required {
  margin: 0;
  padding: 18px;
  border: 1px solid rgba(98, 86, 80, 0.08);
  border-radius: 18px;
  background: linear-gradient(180deg, #fffefe 0%, #f7f1ed 100%);
  color: #4b5563;
  font-size: 14px;
  line-height: 1.7;
}

.areto-fg-reviews__form {
  display: grid;
  gap: 14px;
}

.areto-fg-reviews__form .comment-form-author,
.areto-fg-reviews__form .comment-form-email,
.areto-fg-reviews__form .comment-form-rating,
.areto-fg-reviews__form .comment-form-comment {
  margin: 0;
  display: grid;
  gap: 8px;
}

.areto-fg-reviews__form label {
  font-size: 14px;
  font-weight: 500;
  color: #4b5563;
}

.areto-fg-reviews__form input,
.areto-fg-reviews__form select,
.areto-fg-reviews__form textarea {
  width: 100%;
  border: 1px solid rgba(98, 86, 80, 0.16);
  border-radius: 12px;
  background: #fff;
  color: #374151;
  padding: 0 14px;
}

.areto-fg-reviews__form input,
.areto-fg-reviews__form select {
  min-height: 48px;
}

.areto-fg-reviews__form textarea {
  min-height: 160px;
  padding-top: 14px;
  padding-bottom: 14px;
  resize: vertical;
}

.areto-fg-reviews__form .submit {
  min-height: 44px;
  padding: 0 20px;
  border: 0;
  border-radius: 10px;
  background: var(--fg-button);
  color: #625650;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
}

.areto-fg-reviews .woocommerce-pagination {
  margin-top: 8px;
}

.areto-fg-related {
  margin-top: 52px;
}

.areto-fg-related__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 28px;
}

.areto-fg-related h2 {
  margin: 0;
  font-size: clamp(30px, 3vw, 38px);
  line-height: 1.15;
  font-weight: 300;
  color: #111827;
}

.areto-fg-related__controls {
  display: inline-flex;
  gap: 8px;
}

.areto-fg-related__nav {
  width: auto;
  height: auto;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #111827;
  cursor: pointer;
  padding: 0 4px;
  font-size: 28px;
  line-height: 1;
}

.areto-fg-related__track {
  display: grid;
  grid-template-columns: none;
  grid-auto-flow: column;
  grid-auto-columns: 256px;
  gap: 24px;
  overflow-x: auto;
  overflow-y: hidden;
  overscroll-behavior-x: contain;
  touch-action: pan-x pan-y;
  padding-bottom: 8px;
  justify-content: start;
  align-items: start;
  scrollbar-width: thin;
}

.areto-fg-related__track .areto-fg-card,
.areto-fg-related__track .areto-fg-card * {
  touch-action: pan-x pan-y;
}

.areto-fg-related .areto-fg-card {
  width: 100%;
  min-width: 0;
}

.areto-fg-card--related .areto-fg-card__media {
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 256px;
  padding: 20px;
}

.areto-fg-card--related .areto-fg-card__img {
  object-fit: contain;
  width: 100%;
  height: 100%;
  max-width: 208px;
  max-height: 208px;
  margin: 0 auto;
  padding: 0;
  object-position: center;
}

.areto-fg-related .attachment-woocommerce_thumbnail,
.areto-fg-related img.areto-fg-card__img {
  width: 100% !important;
  height: 100% !important;
  max-width: 208px !important;
  max-height: 208px !important;
  object-fit: contain !important;
  object-position: center !important;
}

.areto-fg-card--related .areto-fg-card__brand {
  text-transform: uppercase;
  letter-spacing: .08em;
  color: #6b7280;
}

.areto-fg-card--related .areto-fg-card__body {
  gap: 8px;
}

.areto-fg-card--related .areto-fg-card__name-uk {
  padding: 0 8px;
}

.areto-fg-card--related .areto-fg-card__price {
  font-size: 18px;
}

.areto-fg nav.navigation.pagination,
.areto-fg nav.woocommerce-pagination {
  margin-top: 32px;
}

.areto-fg nav.navigation.pagination .nav-links,
.areto-fg nav.woocommerce-pagination ul.page-numbers {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.areto-fg nav.navigation.pagination a,
.areto-fg nav.navigation.pagination span,
.areto-fg nav.woocommerce-pagination a,
.areto-fg nav.woocommerce-pagination span {
  min-width: 38px;
  min-height: 38px;
  padding: 0 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--fg-line);
  color: #4b5563;
  text-decoration: none;
  font-size: 13px;
}

.areto-fg nav.navigation.pagination .current,
.areto-fg nav.woocommerce-pagination .current {
  background: var(--fg-accent);
  border-color: var(--fg-accent);
  color: #625650;
}

@media (max-width: 1023px) {
  .areto-fg__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .areto-fg-single {
    gap: 32px;
  }
}

@media (max-width: 980px) {
  .areto-fg-single {
    grid-template-columns: 1fr;
  }

  .areto-fg-gallery {
    position: static;
  }

  .areto-fg-gallery__nav {
    display: none;
  }
}

@media (max-width: 639px) {
  .areto-fg {
    padding: 18px 0 42px;
  }

  .areto-fg__container {
    width: calc(100% - 24px);
  }

  .areto-fg__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px 14px;
  }

  .areto-fg-gallery__thumbs {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .areto-fg-card__brand,
  .areto-fg-card__title {
    font-size: 11px;
  }

  .areto-fg-card__badge-wrap {
    top: 8px;
    left: 8px;
  }

  .areto-fg-card__badge--new {
    min-height: 24px;
    padding: 6px 10px;
    font-size: 10px;
  }

  .areto-fg__filter-trigger {
    right: 12px;
    bottom: 12px;
  }

  .areto-fg-filter {
    width: 100%;
    max-width: 100%;
  }

  .areto-fg-related__track {
    grid-auto-columns: calc((100% - 12px) / 2);
    gap: 12px;
    scrollbar-width: none;
  }

  .areto-fg-related__track::-webkit-scrollbar {
    display: none;
  }

  .areto-fg-related__head {
    align-items: flex-start;
    flex-direction: column;
  }

  .areto-fg-product__actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .areto-fg-product__actions > *,
  .areto-fg-product__actions form.cart,
  .areto-fg-product__actions .areto-fg-product__ghost,
  .areto-fg-product__actions .areto-fg-product__quick {
    min-width: 0;
  }

  .areto-fg-product__cta-shell {
    min-height: 56px;
    padding: 8px 12px;
    border-radius: 16px;
    gap: 10px;
  }

  .areto-fg-product__cta-label {
    font-size: 15px;
  }

  .areto-fg-product__cta-qty {
    gap: 8px;
  }

  .areto-fg-product__cta-qty-btn {
    width: 32px;
    height: 32px;
    border-radius: 10px;
  }

  .areto-fg-product__cta-qty-value {
    font-size: 15px;
  }

  .areto-fg-product__actions .areto-fg-product__ghost,
  .areto-fg-product__actions .areto-fg-product__quick {
    min-height: 56px;
    padding: 0 14px;
    font-size: 14px;
    border-radius: 14px;
  }

  .areto-fg .areto-fg-product__ghost--wishlist.woosw-btn,
  .areto-fg .awooc-button-js.areto-fg-product__quick,
  .areto-fg .areto-fg-product form.cart .awooc-button-js.areto-fg-product__quick {
    min-height: 56px;
    padding: 0 10px;
    font-size: 13px;
    border-radius: 14px;
  }

  .areto-fg .areto-fg-product__ghost--wishlist.woosw-btn {
    white-space: normal;
    line-height: 1.15;
    text-align: center;
    overflow-wrap: anywhere;
  }

  .areto-fg-product__ghost--wishlist::before {
    width: 16px;
    height: 16px;
    background-size: 16px 16px;
  }

  .areto-fg .areto-fg-product__ghost--consultation {
    grid-column: 1 / -1;
    justify-self: stretch;
  }

  .areto-fg-product__tab-nav {
    width: 100%;
  }

  .areto-fg-product__tab {
    flex: 1 1 calc(50% - 5px);
    justify-content: center;
  }

  .areto-fg-card--related .areto-fg-card__media {
    min-height: 168px;
    padding: 12px;
  }

  .areto-fg-card--related .areto-fg-card__img,
  .areto-fg-related .attachment-woocommerce_thumbnail,
  .areto-fg-related img.areto-fg-card__img {
    max-width: 150px !important;
    max-height: 150px !important;
  }

  .areto-fg-card--related .areto-fg-card__body {
    gap: 6px;
    padding: 10px 0 0;
  }

  .areto-fg-card--related .areto-fg-card__brand {
    font-size: 10px;
    letter-spacing: .06em;
  }

  .areto-fg-card--related .areto-fg-card__name-uk {
    padding: 0;
    font-size: 13px;
    line-height: 1.35;
  }

  .areto-fg-card--related .areto-fg-card__name-en {
    font-size: 11px;
    line-height: 1.35;
  }

  .areto-fg-card--related .areto-fg-card__price {
    font-size: 17px;
  }

  .areto-fg-product form.cart .variable-items-wrapper.button-variable-items-wrapper .variable-item {
    min-width: calc(50% - 7px);
    min-height: 52px;
    padding: 0 16px;
  }

  .areto-fg-product form.cart .variable-items-wrapper.button-variable-items-wrapper .variable-item .variable-item-span {
    font-size: 15px;
  }
}

/* Homepage product sections: reuse catalog/brand card look inside sliders */
.areto-fg.areto-home-offers {
  padding: 0;
  background: transparent;
}

.areto-fg.areto-home-offers .areto-fg-card--home {
  padding: 0 !important;
  border: 0;
  box-shadow: none;
  background: transparent;
  text-align: center;
  touch-action: pan-x pan-y !important;
}

.areto-fg.areto-home-offers .areto-offers-slider,
.areto-fg.areto-home-offers .areto-offers-slider .areto-offer-card,
.areto-fg.areto-home-offers .areto-offers-slider .areto-offer-card * {
  touch-action: pan-x pan-y !important;
}

.areto-fg.areto-home-offers .areto-fg-card--home .areto-fg-card__link {
  display: block;
  color: inherit !important;
  text-decoration: none !important;
}

.areto-fg.areto-home-offers .areto-fg-card--home .areto-fg-card__media {
  aspect-ratio: 1 / 1;
  width: 100%;
  height: auto !important;
  min-height: 0;
  margin: 0;
  padding: 18px;
  overflow: hidden;
  background: #ffffff;
}

.areto-fg.areto-home-offers .areto-fg-card--home .areto-fg-card__img,
.areto-fg.areto-home-offers .areto-fg-card--home .areto-offer-image {
  width: 100% !important;
  height: 100% !important;
  max-height: none !important;
  object-fit: contain !important;
  object-position: center !important;
}

.areto-fg.areto-home-offers .areto-fg-card--home .areto-fg-card__icon-col {
  top: 10px;
  right: 10px;
  z-index: 4;
  display: grid;
  gap: 8px;
}

.areto-fg.areto-home-offers .areto-fg-card--home .areto-fg-card__icon,
.areto-fg.areto-home-offers .areto-fg-card--home .areto-fg-card__icon.woosw-btn {
  width: 36px !important;
  height: 36px !important;
  min-width: 36px !important;
  min-height: 36px !important;
  padding: 0 !important;
  border-radius: 10px !important;
  background: rgba(255, 255, 255, 0.88) !important;
  border: 1px solid rgba(0, 0, 0, 0.08) !important;
  color: #6f6b67 !important;
  font-size: 0 !important;
  line-height: 0 !important;
  overflow: hidden !important;
}

.areto-fg.areto-home-offers .areto-fg-card--home .areto-fg-card__icon img,
.areto-fg.areto-home-offers .areto-fg-card--home .areto-fg-card__icon svg {
  width: 16px;
  height: 16px;
  display: block;
}

.areto-fg.areto-home-offers .areto-fg-card--home .areto-fg-card__icon.woosw-btn .areto-wpc-wishlist__label,
.areto-fg.areto-home-offers .areto-fg-card--home .areto-fg-card__icon.woosw-btn .woosw-btn-text,
.areto-fg.areto-home-offers .areto-fg-card--home .areto-fg-card__icon.woosw-btn .woosw-added-text,
.areto-fg.areto-home-offers .areto-fg-card--home .areto-fg-card__icon.woosw-btn .woosw-adding-text,
.areto-fg.areto-home-offers .areto-fg-card--home .areto-fg-card__icon.woosw-btn .areto-wpc-wishlist__icon {
  display: none !important;
}

.areto-fg.areto-home-offers .areto-fg-card--home .areto-fg-card__badge-wrap {
  top: 12px;
  left: 12px;
}

.areto-fg.areto-home-offers .areto-fg-card--home .areto-fg-card__badge,
.areto-fg.areto-home-offers .areto-fg-card--home .areto-offer-badge {
  position: static !important;
  min-height: 24px;
  max-width: none;
  padding: 6px 12px;
  border-radius: 10px;
  background: #8b654c !important;
  color: #ffffff !important;
  font-size: 10px;
  line-height: 1;
  font-weight: 700;
}

.areto-fg.areto-home-offers .areto-fg-card--home .areto-fg-card__body {
  display: grid;
  gap: 2px;
  padding: 12px 12px 0;
  text-align: center;
}

.areto-fg.areto-home-offers .areto-fg-card--home .areto-fg-card__brand,
.areto-fg.areto-home-offers .areto-fg-card--home .areto-offer-brand {
  margin: 0 !important;
  color: var(--fg-text) !important;
  font-size: 12px !important;
  line-height: 1.4 !important;
  font-weight: 500 !important;
}

.areto-fg.areto-home-offers .areto-fg-card--home .areto-fg-card__name-uk,
.areto-fg.areto-home-offers .areto-fg-card--home .areto-offer-subtitle {
  min-height: 0 !important;
  margin: 0 !important;
  color: #4d4b57 !important;
  font-size: 14px !important;
  line-height: 1.45 !important;
  font-weight: 400 !important;
}

.areto-fg.areto-home-offers .areto-fg-card--home .areto-fg-card__name-en,
.areto-fg.areto-home-offers .areto-fg-card--home .areto-offer-title {
  min-height: 0 !important;
  margin: 0 !important;
  color: rgba(0, 0, 0, 0.58) !important;
  font-size: 12px !important;
  line-height: 1.4 !important;
  font-weight: 400 !important;
}

.areto-fg.areto-home-offers .areto-fg-card--home .areto-fg-card__price,
.areto-fg.areto-home-offers .areto-fg-card--home .areto-offer-price {
  margin-top: 6px !important;
  color: var(--fg-text) !important;
  font-size: 16px !important;
  line-height: 1.2 !important;
  font-weight: 500 !important;
}

.areto-fg.areto-home-offers .areto-fg-card--home .areto-offer-price .old {
  order: 2;
  margin: 0;
  background: transparent !important;
  color: rgba(0, 0, 0, 0.42) !important;
  font-size: 14px !important;
  font-weight: 400 !important;
  text-decoration: line-through;
  text-decoration-thickness: 1px;
}

.areto-fg.areto-home-offers .areto-fg-card--home .areto-offer-price .new {
  order: 1;
  background: transparent !important;
  color: var(--fg-text) !important;
  font-size: 17px !important;
  font-weight: 500 !important;
}

.areto-fg.areto-home-offers .areto-fg-card--home .areto-offer-rating {
  margin-top: 6px !important;
}

@media (max-width: 767px) {
  .areto-fg.areto-home-offers .areto-fg-card--home .areto-fg-card__media {
    padding: 12px 26px 12px 6px;
  }

  .areto-fg.areto-home-offers .areto-fg-card--home .areto-fg-card__icon-col {
    top: 6px;
    right: 6px;
    gap: 6px;
  }

  .areto-fg.areto-home-offers .areto-fg-card--home .areto-fg-card__icon,
  .areto-fg.areto-home-offers .areto-fg-card--home .areto-fg-card__icon.woosw-btn {
    width: 32px !important;
    height: 32px !important;
    min-width: 32px !important;
    min-height: 32px !important;
  }
}
