.ugs-cf {
  --ugs-cf-espresso: #2a0c00;
  --ugs-cf-white: #ffffff;
  --ugs-cf-black: #1a1410;
  --ugs-cf-sand: #d4c4b4;
  --ugs-cf-light: #ede5da;
  --ugs-cf-cream: #fbf5ef;
  --ugs-cf-bar-bg: #ffffff;
  --ugs-cf-tab: #2a0c00;
  --ugs-cf-tab-hover: #1a1410;
  --ugs-cf-tab-active: #1a1410;
  --ugs-cf-name: #1a1410;
  --ugs-cf-badge-bg: #d4c4b4;

  --ugs-cf-max: 1440px;
  --ugs-cf-pad-x: 40px;
  --ugs-cf-bar-h: 55px;
  --ugs-cf-cols: 4;
  --ugs-cf-grid-gap-x: 24px;
  --ugs-cf-grid-gap-y: 20px;
  --ugs-cf-quad-gap-x: 20px;
  --ugs-cf-quad-gap-y: 19px;
  --ugs-cf-mosaic-gap: 20px;
  --ugs-cf-bag-border-w: 0px;
  --ugs-cf-bag-border: transparent;
  --ugs-cf-bag-radius: 2px;
  --ugs-cf-feature-h: 436px;
  --ugs-cf-panel-w: 485px;

  --ugs-cf-card-bg: #ffffff;
  --ugs-cf-card-inset: 12px;
  --ugs-cf-card-ratio: 1 / 1;
  --ugs-cf-card-fit: contain;
  --ugs-cf-card-scale: 1;
  --ugs-cf-bag: 44px;
  --ugs-cf-bag-glyph: 24px;
  --ugs-cf-wish: 44px;
  --ugs-cf-wish-glyph: 20px;

  --ugs-cf-serif: "Instrument Serif", "Times New Roman", Times, serif;
  --ugs-cf-sans: "Urbanist", -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;

  width: 100%;
  background: var(--ugs-cf-cream);
  font-family: var(--ugs-cf-sans);
  color: var(--ugs-cf-black);
  box-sizing: border-box;
}

.ugs-cf :where(*, *::before, *::after) { box-sizing: border-box; }
.ugs-cf :where(h2, h3, p, ul, li) { margin: 0; padding: 0; }
.ugs-cf :where(ul) { list-style: none; }
.ugs-cf :where(a) { color: inherit; text-decoration: none; }
.ugs-cf :where(img, svg) { display: block; max-width: 100%; }
.ugs-cf :where(button) { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }

.ugs-cf__page { max-width: var(--ugs-cf-max); margin-inline: auto; }

.ugs-cf__bar {
  background: var(--ugs-cf-bar-bg);
  padding-inline: var(--ugs-cf-pad-x);
}

.ugs-cf__bar-inner {
  min-height: var(--ugs-cf-bar-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.ugs-cf__views { display: flex; align-items: center; gap: 12px; }

.ugs-cf__view {
  width: 20px;
  height: 20px;
  padding: 0;
  color: var(--ugs-cf-sand);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color .2s ease;
}
.ugs-cf__view.is-active { color: var(--ugs-cf-black); }
.ugs-cf__view svg { width: 20px; height: 20px; }
.ugs-cf__view:focus-visible { outline: 2px solid var(--ugs-cf-black); outline-offset: 3px; }

.ugs-cf__count {
  font-size: 14px;
  line-height: 22px;
  color: var(--ugs-cf-black);
  white-space: nowrap;
  font-family: var(--ugs-cf-ff-count, inherit);
}

.ugs-cf__bar-right { display: flex; align-items: center; gap: 24px; }

.ugs-cf__sort { position: relative; }

.ugs-cf__sort-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  line-height: 26px;
  letter-spacing: -0.02em;
  color: var(--ugs-cf-black);
  white-space: nowrap;
  font-family: var(--ugs-cf-ff-sortbtn, inherit);
}
.ugs-cf__sort-btn svg { width: 8px; height: 5px; transition: transform .2s ease; }
.ugs-cf__sort-btn.is-open svg { transform: rotate(180deg); }

.ugs-cf__sort-list {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  background: var(--ugs-cf-white);
  border: 1px solid var(--ugs-cf-light);
  border-radius: 6px;
  min-width: 190px;
  padding: 8px 0;
  box-shadow: 0 12px 28px rgba(0, 0, 0, .08);
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
  z-index: 40;
}
.ugs-cf__sort-list.is-open { opacity: 1; visibility: visible; transform: translateY(0); }

.ugs-cf__sort-list button {
  width: 100%;
  text-align: left;
  padding: 9px 18px;
  font-size: 15px;
  color: var(--ugs-cf-black);
  font-family: var(--ugs-cf-ff-sortopt, inherit);
}
.ugs-cf__sort-list button:hover { background: var(--ugs-cf-light); }
.ugs-cf__sort-list button.is-selected { font-weight: 600; }

.ugs-cf__divider { width: 1px; height: 20px; background: var(--ugs-cf-sand); }

.ugs-cf__filter-btn {
  font-size: 16px;
  line-height: 26px;
  letter-spacing: -0.02em;
  color: var(--ugs-cf-black);
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--ugs-cf-ff-filterbtn, inherit);
}

.ugs-cf__filter-count {
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border-radius: 999px;
  background: var(--ugs-cf-espresso);
  color: var(--ugs-cf-white);
  font-size: 11px;
  font-weight: 600;
  line-height: 18px;
  text-align: center;
  font-family: var(--ugs-cf-ff-filtercount, inherit);
}
.ugs-cf__filter-count[hidden] { display: none; }

.ugs-cf__collections { background: var(--ugs-cf-white); border-bottom: 1px solid var(--ugs-cf-light); }
.ugs-cf__cats { background: var(--ugs-cf-cream); border-bottom: 1px solid var(--ugs-cf-light); }

.ugs-cf__tabs {
  display: flex;
  justify-content: center;
  gap: 32px;
  padding: 16px 24px;
  overflow-x: auto;
  scrollbar-width: none;
}
.ugs-cf__tabs::-webkit-scrollbar { display: none; }
.ugs-cf__cats .ugs-cf__tabs { padding: 20px 24px; }

.ugs-cf__tab {
  font-family: var(--ugs-cf-ff-tab, var(--ugs-cf-sans));
  font-weight: 400;
  font-size: 15px;
  line-height: 24px;
  letter-spacing: -0.02em;
  color: var(--ugs-cf-tab);
  padding: 0 0 6px;
  border-bottom: 2px solid transparent;
  transition: color .2s ease, border-color .2s ease;
  white-space: nowrap;
}
.ugs-cf__cats .ugs-cf__tab { font-size: 16px; line-height: 26px;
  font-family: var(--ugs-cf-ff-cattab, inherit);
}
.ugs-cf__tab.is-active { color: var(--ugs-cf-tab-active); font-weight: 700; border-color: var(--ugs-cf-tab-active); }
.ugs-cf__tab:focus-visible { outline: 2px solid var(--ugs-cf-black); outline-offset: 3px; }

.ugs-cf__section { padding: 24px var(--ugs-cf-pad-x) 80px; }

.ugs-cf__results { transition: opacity .2s ease; }
.ugs-cf__results.is-loading { opacity: .45; pointer-events: none; }

.ugs-cf-grid {
  display: grid;
  grid-template-columns: repeat(var(--ugs-cf-cols), minmax(0, 1fr));
  gap: var(--ugs-cf-grid-gap-y) var(--ugs-cf-grid-gap-x);
}
.ugs-cf-grid--list { grid-template-columns: minmax(0, 1fr); }

.ugs-cf-quad {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--ugs-cf-quad-gap-y) var(--ugs-cf-quad-gap-x);
}

.ugs-cf-mosaic {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--ugs-cf-mosaic-gap);
  margin-bottom: var(--ugs-cf-mosaic-gap);
}

.ugs-cf-feature {
  position: relative;
  border-radius: 2px;
  overflow: hidden;
  min-height: var(--ugs-cf-feature-h);
  background-size: cover;
  background-position: center;
  background-color: var(--ugs-cf-light);
}
.ugs-cf-feature img { width: 100%; height: 100%; object-fit: cover; }

.ugs-cf-mosaic--image-right .ugs-cf-feature { order: 2; }
.ugs-cf-mosaic--image-right .ugs-cf-quad { order: 1; }
.ugs-cf-mosaic--image-left .ugs-cf-feature { order: 1; }
.ugs-cf-mosaic--image-left .ugs-cf-quad { order: 2; }

.ugs-cf-card { display: flex; flex-direction: column; min-width: 0; }

.ugs-cf-grid--list .ugs-cf-card {
  flex-direction: row;
  align-items: center;
  gap: 24px;
  background: var(--ugs-cf-white);
  padding: 16px;
  border-radius: 8px;
}

.ugs-cf-card__image {
  position: relative;
  background: var(--ugs-cf-card-bg);
  aspect-ratio: var(--ugs-cf-card-ratio);
  height: var(--ugs-cf-card-h, auto);
  overflow: hidden;
}

.ugs-cf--fixed-img .ugs-cf-card__image { aspect-ratio: auto; }
.ugs-cf-grid--list .ugs-cf-card__image {
  width: 140px;
  height: 140px;
  flex: 0 0 auto;
  aspect-ratio: auto;
}

.ugs-cf-card__link { position: absolute; inset: 0; z-index: 1; display: block; }

.ugs-cf-card__img {
  position: absolute;
  inset: var(--ugs-cf-card-inset);
  width: auto;
  height: auto;
  max-width: none;
  object-fit: var(--ugs-cf-card-fit);

  transform: scale(var(--ugs-cf-card-scale));
  transition: opacity .4s ease, transform .5s ease;
}
.ugs-cf-card__img--default { opacity: 1; transform: scale(var(--ugs-cf-card-scale)); }
.ugs-cf-card__img--hover { opacity: 0; transform: scale(calc(var(--ugs-cf-card-scale) * 1.12)); }

.ugs-cf-card:hover .ugs-cf-card__img--default,
.ugs-cf-card:focus-within .ugs-cf-card__img--default { opacity: 0; }
.ugs-cf-card:hover .ugs-cf-card__img--hover,
.ugs-cf-card:focus-within .ugs-cf-card__img--hover { opacity: 1; transform: scale(var(--ugs-cf-card-scale)); }

.ugs-cf-card--single:hover .ugs-cf-card__img--default,
.ugs-cf-card--single:focus-within .ugs-cf-card__img--default { opacity: 1; }

.ugs-cf-card__badge {
  position: absolute;
  top: 10px;
  left: 9px;
  z-index: 2;
  background: var(--ugs-cf-badge-bg);
  color: var(--ugs-cf-black);
  font-family: var(--ugs-cf-ff-cardbadge, var(--ugs-cf-sans));
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  padding: 4px 10px;
}

.ugs-cf-card__info {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 16px 2px 0;
  gap: 10px;
}
.ugs-cf-grid--list .ugs-cf-card__info { flex: 1; padding: 0; }

.ugs-cf-card__text { min-width: 0; }

.ugs-cf-card__name {
  margin: 0 0 4px;
  font-family: var(--ugs-cf-ff-cardname, var(--ugs-cf-serif));
  font-weight: 400;
  font-size: 24px;
  line-height: 32px;
  text-transform: capitalize;
  color: var(--ugs-cf-name);
}

.ugs-cf-card__meta {
  margin: 0 0 6px;
  font-size: 14px;
  line-height: 22px;
  color: var(--ugs-cf-black);
  opacity: .75;
  font-family: var(--ugs-cf-ff-cardmeta, inherit);
}

.ugs-cf-card__price {
  margin: 0;
  font-size: 16px;
  line-height: 26px;
  letter-spacing: -0.02em;
  color: var(--ugs-cf-black);
  font-family: var(--ugs-cf-ff-cardprice, inherit);
}
.ugs-cf-card__price del { opacity: .55; margin-right: 6px; text-decoration: line-through; }
.ugs-cf-card__price ins { text-decoration: none; }
.ugs-cf-card__price .woocommerce-Price-amount { font: inherit; color: inherit; }

.ugs-cf-card__bag {
  position: relative;
  z-index: 2;
  width: var(--ugs-cf-bag);
  height: var(--ugs-cf-bag);
  border: var(--ugs-cf-bag-border-w, 0px) solid var(--ugs-cf-bag-border, transparent);
  border-radius: var(--ugs-cf-bag-radius, 2px);
  color: var(--ugs-cf-espresso);
  background: none;
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color .18s ease, color .18s ease, opacity .18s ease;
}
.ugs-cf-card__bag:hover,
.ugs-cf-card__bag:focus-visible { background: var(--ugs-cf-espresso); color: var(--ugs-cf-white); }
.ugs-cf-card__bag:focus-visible { outline: 2px solid var(--ugs-cf-black); outline-offset: 2px; }

.ugs-cf-card__glyph {
  display: flex;
  align-items: center;
  justify-content: center;
  width: var(--ugs-cf-bag-glyph);
  height: var(--ugs-cf-bag-glyph);
  line-height: 1;
}
.ugs-cf-card__glyph svg,
.ugs-cf-card__glyph img { width: 100%; height: 100%; display: block; object-fit: contain; }
.ugs-cf-card__glyph i { font-size: var(--ugs-cf-bag-glyph); line-height: 1; }
.ugs-cf-card__glyph--fill svg,
.ugs-cf-card__glyph--fill svg * { fill: currentColor; stroke: none; }
.ugs-cf-card__glyph--stroke svg,
.ugs-cf-card__glyph--stroke svg * { fill: none; stroke: currentColor; }

.ugs-cf-card__bag svg {
  flex: none;
  width: var(--ugs-cf-bag-glyph);
  height: var(--ugs-cf-bag-glyph);
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5px;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ugs-cf-card__bag.is-loading { opacity: .45; pointer-events: none; }
.ugs-cf-card__bag .ugs-cf-card__check { display: none; }
.ugs-cf-card__bag.is-added .ugs-cf-card__check { display: block; }
.ugs-cf-card__bag.is-added .ugs-cf-card__bagicon { display: none; }

.ugs-cf__empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 80px 20px;
  color: var(--ugs-cf-black);
  opacity: .6;
  font-size: 16px;
  font-family: var(--ugs-cf-ff-empty, inherit);
}

.ugs-cf__loadmore-wrap { display: flex; justify-content: center; margin-top: 40px; }
.ugs-cf__loadmore-wrap[hidden] { display: none; }

.ugs-cf__loadmore {
  border: 1px solid var(--ugs-cf-espresso);
  background: var(--ugs-cf-white);
  color: var(--ugs-cf-espresso);
  padding: 16px 48px;
  font-size: 16px;
  line-height: 26px;
  letter-spacing: -0.02em;
  border-radius: 2px;
  transition: background-color .2s ease, color .2s ease, opacity .2s ease;
  font-family: var(--ugs-cf-ff-loadmore, inherit);
}
.ugs-cf__loadmore:hover { background: var(--ugs-cf-espresso); color: var(--ugs-cf-white); }
.ugs-cf__loadmore[disabled] { opacity: .5; cursor: default; }

.ugs-cf-overlay {
  position: fixed;
  inset: 0;
  background: rgba(20, 8, 4, .45);
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s ease, visibility .3s ease;
  z-index: 500;
}
.ugs-cf-overlay.is-open { opacity: 1; visibility: visible; }

.ugs-cf-panel {
  position: fixed;
  top: 0;
  right: 0;
  height: 100%;
  width: var(--ugs-cf-panel-w, 485px);
  max-width: 92vw;
  background: var(--ugs-cf-white, #fff);
  color: var(--ugs-cf-black, #1a1410);
  z-index: 600;
  transform: translateX(100%);
  transition: transform .35s ease;
  display: flex;
  flex-direction: column;
  font-family: var(--ugs-cf-ff-panel, var(--ugs-cf-sans, "Urbanist", sans-serif));
  box-sizing: border-box;
}
.ugs-cf-panel.is-open { transform: translateX(0); }

.ugs-cf-panel :where(*, *::before, *::after) { box-sizing: border-box; }
.ugs-cf-panel :where(h2, p, ul, li) { margin: 0; padding: 0; }
.ugs-cf-panel :where(ul) { list-style: none; }
.ugs-cf-panel :where(button) { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
.ugs-cf-panel :where(svg) { display: block; }

.ugs-cf-panel__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 24px 20px;
  flex: 0 0 auto;
}

.ugs-cf-panel__title {
  font-family: var(--ugs-cf-ff-paneltitle, var(--ugs-cf-serif, serif));
  font-weight: 400;
  font-size: 24px;
  line-height: 32px;
  text-transform: capitalize;
}

.ugs-cf-panel__head { position: relative; gap: 12px; }
.ugs-cf-panel__title { flex: 1 1 auto; min-width: 0; }

.ugs-cf-panel__scroll { flex: 1 1 auto; overflow-y: auto; padding: 0 24px; }

.ugs-cf-facet {
  border-bottom: 1px solid var(--ugs-cf-light, #ede5da);
  padding: 18px 0;
}

.ugs-cf-facet__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0;
  font-size: 16px;
  line-height: 26px;
  letter-spacing: -0.02em;
  color: var(--ugs-cf-black, #1a1410);
  font-family: var(--ugs-cf-ff-facethead, inherit);
}

.ugs-cf-facet__arrow {
  width: 12px;
  height: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}
.ugs-cf-facet__arrow svg { width: 6px; height: 3px; transition: transform .2s ease; }
.ugs-cf-facet.is-collapsed .ugs-cf-facet__arrow svg { transform: rotate(180deg); }

.ugs-cf-facet__body {
  margin-top: 16px;
  overflow: hidden;
  transition: max-height .3s ease, margin-top .3s ease, opacity .2s ease;
  opacity: 1;
}
.ugs-cf-facet.is-collapsed .ugs-cf-facet__body {
  max-height: 0 !important;
  margin-top: 0;
  opacity: 0;
}

.ugs-cf-panel__sort { display: flex; flex-direction: column; gap: 2px; }

.ugs-cf-panel__sort-option {
  text-align: left;
  padding: 4px;
  font-size: 16px;
  color: var(--ugs-cf-black, #1a1410);
  opacity: .6;
  font-family: var(--ugs-cf-ff-panelsort, inherit);
}
.ugs-cf-panel__sort-option.is-selected { opacity: 1; font-weight: 600; }

.ugs-cf-slider { position: relative; height: 16px; margin-bottom: 16px; }
.ugs-cf-slider__track {
  position: absolute; top: 7px; left: 0; right: 0; height: 2px;
  background: var(--ugs-cf-sand, #d4c4b4);
}
.ugs-cf-slider__range {
  position: absolute; top: 7px; height: 2px;
  background: var(--ugs-cf-black, #1a1410);
}
.ugs-cf-slider input[type="range"] {
  position: absolute; top: 0; left: 0;
  width: 100%; height: 16px; margin: 0;
  background: none;
  pointer-events: none;
  -webkit-appearance: none;
  appearance: none;
}
.ugs-cf-slider input[type="range"]::-webkit-slider-thumb {
  pointer-events: all;
  -webkit-appearance: none;
  appearance: none;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--ugs-cf-white, #fff);
  border: 2px solid var(--ugs-cf-black, #1a1410);
  cursor: pointer;
}
.ugs-cf-slider input[type="range"]::-moz-range-thumb {
  pointer-events: all;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--ugs-cf-white, #fff);
  border: 2px solid var(--ugs-cf-black, #1a1410);
  cursor: pointer;
}
.ugs-cf-slider input[type="range"]::-webkit-slider-runnable-track { background: transparent; }

.ugs-cf-price { display: flex; align-items: center; gap: 12px; }
.ugs-cf-price__box {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 4px;
  border: 1px solid var(--ugs-cf-sand, #d4c4b4);
  border-radius: 4px;
  padding: 10px;
}
.ugs-cf-price__box span { font-size: 14px; color: var(--ugs-cf-sand, #d4c4b4);
  font-family: var(--ugs-cf-ff-pricelabel, inherit);
}
.ugs-cf-price__box input {
  border: none;
  outline: none;
  width: 100%;
  background: transparent;
  font-family: var(--ugs-cf-ff-priceinput, var(--ugs-cf-sans, sans-serif));
  font-size: 14px;
  color: var(--ugs-cf-black, #1a1410);
  box-shadow: none !important;
}
.ugs-cf-price__sep { font-size: 14px; color: var(--ugs-cf-sand, #d4c4b4);
  font-family: var(--ugs-cf-ff-pricesep, inherit);
}

.ugs-cf-pills { display: flex; flex-wrap: wrap; gap: 12px; }

.ugs-cf-pill {
  border: 1px solid var(--ugs-cf-sand, #d4c4b4);
  background: var(--ugs-cf-white, #fff);
  color: var(--ugs-cf-black, #1a1410);
  border-radius: 4px;
  padding: 8px 16px;
  font-size: 14px;
  line-height: 22px;
  white-space: nowrap;
  transition: background-color .18s ease, color .18s ease, border-color .18s ease;
  font-family: var(--ugs-cf-ff-pill, inherit);
}
.ugs-cf-pill.is-selected {
  background: var(--ugs-cf-espresso, #2a0c00);
  border-color: var(--ugs-cf-black, #1a1410);
  color: var(--ugs-cf-white, #fff);
}
.ugs-cf-pill--size { min-width: 54px; text-align: center; }
.ugs-cf-pill:focus-visible { outline: 2px solid var(--ugs-cf-black, #1a1410); outline-offset: 2px; }

.ugs-cf-panel__footer { flex: 0 0 auto; padding: 16px 24px 24px; }

.ugs-cf-panel__clear {
  width: 100%;
  background: var(--ugs-cf-espresso, #2a0c00);
  color: var(--ugs-cf-white, #fff);
  border: none;
  padding: 16px;
  font-size: 16px;
  line-height: 26px;
  letter-spacing: -0.02em;
  border-radius: 4px;
  font-family: var(--ugs-cf-ff-clear, inherit);
}
.ugs-cf-panel__clear:hover { opacity: .9; }

.ugs-cf__notice {
  margin: 16px var(--ugs-cf-pad-x);
  padding: 14px 16px;
  background: #fff;
  border: 1px dashed rgba(42, 12, 0, .3);
  font-size: 13px;
  line-height: 20px;
  color: var(--ugs-cf-espresso);
  font-family: var(--ugs-cf-ff-notice, inherit);
}

@media (max-width: 1100px) {
  .ugs-cf { --ugs-cf-cols: 3; --ugs-cf-quad-gap-x: 16px; --ugs-cf-quad-gap-y: 16px; }
}

@media (max-width: 900px) {
  .ugs-cf { --ugs-cf-mosaic-gap: 16px; --ugs-cf-feature-h: 280px; }
  .ugs-cf-mosaic { grid-template-columns: minmax(0, 1fr); }
  .ugs-cf-mosaic .ugs-cf-feature { order: initial; }
  .ugs-cf-mosaic .ugs-cf-quad { order: initial; grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 860px) {
  .ugs-cf {
    --ugs-cf-pad-x: 20px;
    --ugs-cf-cols: 2;
    --ugs-cf-grid-gap-x: 16px;
    --ugs-cf-grid-gap-y: 16px;
  }
  .ugs-cf__tabs { gap: 20px; padding: 14px 20px; justify-content: flex-start; }
  .ugs-cf__cats .ugs-cf__tabs { gap: 18px; padding: 16px 20px; justify-content: flex-start; }
  .ugs-cf__section { padding: 20px var(--ugs-cf-pad-x) 60px; }
  .ugs-cf__bar-right { gap: 14px; }
}

@media (max-width: 520px) {
  .ugs-cf {
    --ugs-cf-grid-gap-x: 12px;
    --ugs-cf-grid-gap-y: 12px;
    --ugs-cf-quad-gap-x: 12px;
    --ugs-cf-quad-gap-y: 12px;
    --ugs-cf-mosaic-gap: 12px;
    --ugs-cf-feature-h: 220px;
    --ugs-cf-bag: 36px;
    --ugs-cf-bag-glyph: 20px;
    --ugs-cf-wish: 36px;
    --ugs-cf-wish-glyph: 17px;
    --ugs-cf-panel-w: 100%;
  }
  .ugs-cf__count { display: none; }
  .ugs-cf-panel { max-width: 100%; }
  .ugs-cf-card__name { font-size: 19px; line-height: 26px; }
  .ugs-cf__loadmore { width: 100%; padding: 14px; }
  .ugs-cf-grid--list .ugs-cf-card { flex-direction: column; align-items: stretch; }
  .ugs-cf-grid--list .ugs-cf-card__image { width: 100%; height: auto; aspect-ratio: 1 / 1; }
}

@media (prefers-reduced-motion: reduce) {
  .ugs-cf *,
  .ugs-cf-panel,
  .ugs-cf-overlay { transition-duration: .01ms !important; }
}

.ugs-cf button,
.ugs-cf-panel button {
  background-color: transparent !important;
  background-image: none !important;
  border: 0 none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  text-shadow: none !important;
  text-transform: none !important;
  letter-spacing: inherit;
  color: inherit !important;
}

.ugs-cf a,
.ugs-cf-panel a { color: inherit !important; text-decoration: none !important; }

.ugs-cf .ugs-cf__tab { color: var(--ugs-cf-tab) !important; }
.ugs-cf .ugs-cf__tab:hover { color: var(--ugs-cf-tab-hover) !important; }
.ugs-cf .ugs-cf__tab.is-active {
  color: var(--ugs-cf-tab-active) !important;
  border-bottom: 2px solid var(--ugs-cf-tab-active) !important;
}

.ugs-cf .ugs-cf__view { color: var(--ugs-cf-sand) !important; }
.ugs-cf .ugs-cf__view.is-active { color: var(--ugs-cf-black) !important; }
.ugs-cf .ugs-cf__view svg { fill: currentColor !important; }

.ugs-cf .ugs-cf__sort-btn,
.ugs-cf .ugs-cf__filter-btn { color: var(--ugs-cf-black) !important; }
.ugs-cf .ugs-cf__sort-btn svg path,
.ugs-cf .ugs-cf-facet__arrow svg path { fill: currentColor !important; }

.ugs-cf .ugs-cf__sort-list { background: var(--ugs-cf-white) !important; }
.ugs-cf .ugs-cf__sort-list button { color: var(--ugs-cf-black) !important; }
.ugs-cf .ugs-cf__sort-list button:hover { background-color: var(--ugs-cf-light) !important; }

.ugs-cf .ugs-cf__filter-count {
  background-color: var(--ugs-cf-espresso) !important;
  color: var(--ugs-cf-white) !important;
  border-radius: 999px !important;
}

.ugs-cf .ugs-cf-card__name { color: var(--ugs-cf-name) !important; }
.ugs-cf .ugs-cf-card__badge { background-color: var(--ugs-cf-badge-bg) !important; color: var(--ugs-cf-black) !important; }

.ugs-cf .ugs-cf-card__bag {
  padding: 0 !important;
  margin: 0 !important;
  min-width: 0 !important;
  min-height: 0 !important;
  line-height: 1 !important;
  border: var(--ugs-cf-bag-border-w, 0px) solid var(--ugs-cf-bag-border, transparent) !important;
  border-radius: var(--ugs-cf-bag-radius, 2px) !important;
  color: var(--ugs-cf-bag-fg, var(--ugs-cf-espresso)) !important;
  background-color: var(--ugs-cf-bag-bg, transparent) !important;
}
.ugs-cf .ugs-cf-card__bag:hover,
.ugs-cf .ugs-cf-card__bag:focus-visible {
  background-color: var(--ugs-cf-bag-hover-bg, var(--ugs-cf-espresso)) !important;
  color: var(--ugs-cf-bag-hover-fg, var(--ugs-cf-white)) !important;
}
.ugs-cf
.ugs-cf-card__glyph {
  display: flex;
  align-items: center;
  justify-content: center;
  width: var(--ugs-cf-bag-glyph);
  height: var(--ugs-cf-bag-glyph);
  line-height: 1;
}
.ugs-cf-card__glyph svg,
.ugs-cf-card__glyph img { width: 100%; height: 100%; display: block; object-fit: contain; }
.ugs-cf-card__glyph i { font-size: var(--ugs-cf-bag-glyph); line-height: 1; }
.ugs-cf-card__glyph--fill svg,
.ugs-cf-card__glyph--fill svg * { fill: currentColor; stroke: none; }
.ugs-cf-card__glyph--stroke svg,
.ugs-cf-card__glyph--stroke svg * { fill: none; stroke: currentColor; }

.ugs-cf-card__bag svg { fill: none !important; stroke: currentColor !important; }

.ugs-cf .ugs-cf__loadmore {
  border: 1px solid var(--ugs-cf-espresso) !important;
  border-radius: 2px !important;
  background-color: var(--ugs-cf-white) !important;
  color: var(--ugs-cf-espresso) !important;
}
.ugs-cf .ugs-cf__loadmore:hover {
  background-color: var(--ugs-cf-espresso) !important;
  color: var(--ugs-cf-white) !important;
}

.ugs-cf-panel { background-color: var(--ugs-cf-white, #fff) !important; color: var(--ugs-cf-black, #1a1410) !important; }
.ugs-cf-panel .ugs-cf-panel__title { color: var(--ugs-cf-black, #1a1410) !important; }
.ugs-cf-panel .ugs-cf-facet__head { color: var(--ugs-cf-black, #1a1410) !important; }
.ugs-cf-panel .ugs-cf-panel__head { display: flex !important; align-items: center !important; }
.ugs-cf-panel .ugs-cf-panel__close {
  position: relative !important;
  z-index: 5;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px;
  flex: 0 0 auto !important;
  width: auto !important;
  min-width: var(--ugs-cf-close-size, 32px) !important;
  height: var(--ugs-cf-close-size, 32px) !important;
  min-height: 0 !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 0 !important;
  line-height: 1 !important;
  font-size: 14px !important;
  text-indent: 0 !important;
  border: 0 !important;
  border-radius: var(--ugs-cf-close-radius, 0px) !important;
  box-shadow: none !important;
  background: var(--ugs-cf-close-bg, transparent) !important;
  color: var(--ugs-cf-close-color, #1a1410) !important;
  opacity: 1 !important;
  visibility: visible !important;
  overflow: visible !important;
  transform: none !important;
  cursor: pointer;
  transition: color .2s ease, background-color .2s ease;
}
.ugs-cf-panel .ugs-cf-panel__close:hover,
.ugs-cf-panel .ugs-cf-panel__close:focus-visible {
  background: var(--ugs-cf-close-bg-hover, transparent) !important;
  color: var(--ugs-cf-close-color-hover, var(--ugs-cf-close-color, #1a1410)) !important;
}
.ugs-cf-panel .ugs-cf-panel__close::before,
.ugs-cf-panel .ugs-cf-panel__close::after { content: none !important; }
.ugs-cf-panel .ugs-cf-panel__glyph {
  position: relative !important;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto !important;
  width: var(--ugs-cf-close-icon, 16px) !important;
  height: var(--ugs-cf-close-icon, 16px) !important;
  margin: 0 !important;
  padding: 0 !important;
  color: inherit !important;
  opacity: 1 !important;
  visibility: visible !important;
}
.ugs-cf-panel .ugs-cf-panel__x::before,
.ugs-cf-panel .ugs-cf-panel__x::after {
  content: "" !important;
  position: absolute !important;
  top: 50% !important;
  left: 50% !important;
  width: 141.42% !important;
  height: var(--ugs-cf-close-stroke, 1.5px) !important;
  margin: 0 !important;
  background: currentColor !important;
  border-radius: 1px;
  display: block !important;
}
.ugs-cf-panel .ugs-cf-panel__x::before { transform: translate(-50%, -50%) rotate(45deg) !important; }
.ugs-cf-panel .ugs-cf-panel__x::after { transform: translate(-50%, -50%) rotate(-45deg) !important; }
.ugs-cf-panel .ugs-cf-panel__glyph--custom svg,
.ugs-cf-panel .ugs-cf-panel__glyph--custom img {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
}
.ugs-cf-panel .ugs-cf-panel__glyph--custom svg { fill: currentColor; }
.ugs-cf-panel .ugs-cf-panel__glyph--custom i {
  font-size: var(--ugs-cf-close-icon, 16px) !important;
  line-height: 1 !important;
  color: inherit !important;
}
.ugs-cf-panel .ugs-cf-panel__closetext {
  display: inline-block !important;
  color: inherit !important;
  font-size: var(--ugs-cf-close-text, 14px) !important;
  line-height: 1 !important;
  white-space: nowrap;
}

.ugs-cf-panel .ugs-cf-panel__sort-option { color: var(--ugs-cf-black, #1a1410) !important; }

.ugs-cf-panel .ugs-cf-pill {
  border: 1px solid var(--ugs-cf-sand, #d4c4b4) !important;
  border-radius: 4px !important;
  background-color: var(--ugs-cf-white, #fff) !important;
  color: var(--ugs-cf-black, #1a1410) !important;
}
.ugs-cf-panel .ugs-cf-pill.is-selected {
  background-color: var(--ugs-cf-espresso, #2a0c00) !important;
  border-color: var(--ugs-cf-black, #1a1410) !important;
  color: var(--ugs-cf-white, #fff) !important;
}

.ugs-cf-panel .ugs-cf-panel__clear {
  background-color: var(--ugs-cf-espresso, #2a0c00) !important;
  color: var(--ugs-cf-white, #fff) !important;
  border-radius: 4px !important;
}

.ugs-cf-panel .ugs-cf-price__box input {
  background-color: transparent !important;
  border: 0 none !important;
  box-shadow: none !important;
  color: var(--ugs-cf-black, #1a1410) !important;
}
.ugs-cf-panel .ugs-cf-price__box {
  border: 1px solid var(--ugs-cf-sand, #d4c4b4) !important;
  border-radius: 4px !important;
  background-color: transparent !important;
}
.ugs-cf-panel .ugs-cf-slider input[type="range"] {
  accent-color: var(--ugs-cf-black, #1a1410);
  background: none !important;
  border: 0 none !important;
  box-shadow: none !important;
}
.ugs-cf-panel .ugs-cf-slider__track { background-color: var(--ugs-cf-sand, #d4c4b4) !important; }
.ugs-cf-panel .ugs-cf-slider__range { background-color: var(--ugs-cf-black, #1a1410) !important; }

.ugs-cf__error {
  margin: 20px 0 0;
  padding: 14px 18px;
  border: 1px solid var(--ugs-cf-line, #ede5da);
  border-left: 3px solid #8c2f1d;
  border-radius: var(--ugs-cf-radius, 2px);
  background: #fff;
  font-family: var(--ugs-cf-ff-error, var(--ugs-cf-sans));
  font-size: 14px;
  line-height: 22px;
  color: #8c2f1d;
}
.ugs-cf__error[hidden] { display: none; }

.ugs-cf-card__text {
  flex: 1 1 auto;
  text-align: var(--ugs-cf-info-align, left);
}

.ugs-cf-grid--list .ugs-cf-card__text { text-align: left; }

.ugs-cf .ugs-cf-card__image .ugs-cf-card__bag {
  position: absolute;
  top: var(--ugs-cf-bag-top, 10px);
  right: var(--ugs-cf-bag-right, 10px);
  left: auto;
  bottom: auto;
  z-index: 4;
  margin: 0;
}

.ugs-cf--bag-hover .ugs-cf-card__image .ugs-cf-card__bag {
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  transition: background-color .25s ease, color .25s ease, border-color .25s ease, opacity .25s ease, visibility .25s ease, transform .25s ease;
}

.ugs-cf--bag-hover .ugs-cf-card:hover .ugs-cf-card__image .ugs-cf-card__bag,
.ugs-cf--bag-hover .ugs-cf-card:focus-within .ugs-cf-card__image .ugs-cf-card__bag,
.ugs-cf--bag-hover .ugs-cf-card__image .ugs-cf-card__bag.is-added {
  opacity: 1;
  visibility: visible;
  transform: none;
}

.ugs-cf--bag-hover .ugs-cf-card__image .ugs-cf-card__bag.is-loading {
  opacity: .45;
  visibility: visible;
  transform: none;
}

@media (hover: none) {
  .ugs-cf--bag-hover .ugs-cf-card__image .ugs-cf-card__bag {
    opacity: 1;
    visibility: visible;
    transform: none;
  }
}

.ugs-cf .ugs-cf-card__actions {
  position: absolute;
  top: var(--ugs-cf-bag-top, 10px);
  right: var(--ugs-cf-bag-right, 10px);
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--ugs-cf-wish-gap, 6px);
  pointer-events: none;
}
.ugs-cf .ugs-cf-card__image .ugs-cf-card__actions .ugs-cf-card__bag {
  position: relative;
  top: auto;
  right: auto;
  pointer-events: auto;
}

.ugs-cf .ugs-cf-card__wish {
  position: relative;
  z-index: 4;
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: var(--ugs-cf-wish);
  height: var(--ugs-cf-wish);
  padding: 0 !important;
  margin: 0 !important;
  min-width: 0 !important;
  min-height: 0 !important;
  line-height: 1 !important;
  border: var(--ugs-cf-wish-border-w, 0px) solid var(--ugs-cf-wish-border, transparent) !important;
  border-radius: var(--ugs-cf-wish-radius, 2px) !important;
  color: var(--ugs-cf-wish-fg, var(--ugs-cf-espresso)) !important;
  background-color: var(--ugs-cf-wish-bg, transparent) !important;
  box-shadow: none !important;
  cursor: pointer;
  pointer-events: auto;
  transition: background-color .25s ease, color .25s ease, border-color .25s ease, opacity .25s ease, visibility .25s ease, transform .25s ease;
}
.ugs-cf .ugs-cf-card__wish:hover,
.ugs-cf .ugs-cf-card__wish:focus-visible {
  background-color: var(--ugs-cf-wish-hover-bg, var(--ugs-cf-espresso)) !important;
  color: var(--ugs-cf-wish-hover-fg, var(--ugs-cf-white)) !important;
}
.ugs-cf .ugs-cf-card__wish:focus-visible { outline: 2px solid var(--ugs-cf-black); outline-offset: 2px; }
.ugs-cf .ugs-cf-card__wish.is-active {
  background-color: var(--ugs-cf-wish-active-bg, var(--ugs-cf-wish-bg, transparent)) !important;
  color: var(--ugs-cf-wish-active-fg, var(--ugs-cf-espresso)) !important;
}
.ugs-cf .ugs-cf-card__wish.is-loading { opacity: .5; pointer-events: none; }

.ugs-cf .ugs-cf-card__heart {
  display: block;
  flex: none;
  width: var(--ugs-cf-wish-glyph);
  height: var(--ugs-cf-wish-glyph);
  fill: none !important;
  stroke: currentColor !important;
  stroke-width: 1.5px;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: fill .2s ease;
}
.ugs-cf .ugs-cf-card__wish.is-active .ugs-cf-card__heart { fill: currentColor !important; }

.ugs-cf .ugs-cf-card__image > .ugs-cf-card__wish--left {
  position: absolute;
  top: var(--ugs-cf-wish-top, 10px);
  left: var(--ugs-cf-wish-left, 10px);
  right: auto;
  bottom: auto;
}

.ugs-cf--wish-hover .ugs-cf-card__image .ugs-cf-card__wish {
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
}
.ugs-cf--wish-hover .ugs-cf-card:hover .ugs-cf-card__image .ugs-cf-card__wish,
.ugs-cf--wish-hover .ugs-cf-card:focus-within .ugs-cf-card__image .ugs-cf-card__wish,
.ugs-cf--wish-hover .ugs-cf-card__image .ugs-cf-card__wish.is-active {
  opacity: 1;
  visibility: visible;
  transform: none;
}

@media (hover: none) {
  .ugs-cf--wish-hover .ugs-cf-card__image .ugs-cf-card__wish {
    opacity: 1;
    visibility: visible;
    transform: none;
  }
}
