/* версия: v1.2.22 | обновлено: 2026-07-30 */

@charset "UTF-8";
.df-quick-search {
  position: static;
  width: 0;
  height: 0;
  overflow: visible;
}
.df-quick-search__panel {
  background: var(--df-qs-panel-bg, var(--bg, #fff));
  color: var(--df-qs-text, var(--color-text, #111));
}
.df-quick-search__close {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: inherit;
  line-height: 1;
  padding: 0;
  width: 1.75rem;
  height: 1.75rem;
  z-index: 2;
}
.df-quick-search__panel-title {
  position: absolute;
  top: 0.85rem;
  right: 1rem;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.df-quick-search__form {
  padding: 3rem 1.5rem 0;
  flex-shrink: 0;
}
.df-quick-search__input {
  width: 100%;
  height: 100px;
  border: none;
  border-top: 1px solid color-mix(in srgb, var(--df-qs-text, #111) 12%, transparent);
  font-size: var(--df-qs-input-font-size, clamp(2rem, 6vw, 5rem));
  font-style: italic;
  font-weight: 300;
  background: transparent;
  color: inherit;
  outline: none;
  padding: 0;
}
.df-quick-search__input::placeholder {
  color: var(--df-qs-text-muted, var(--color-text-half-shade, #999));
}
.df-quick-search__results {
  position: relative;
  flex: 1 1 0%;
  min-height: 0;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--df-qs-scrollbar-thumb, #64748b) var(--df-qs-scrollbar-track, #f1f5f9);
}
.df-quick-search__results::-webkit-scrollbar {
  width: calc(var(--df-qs-scrollbar-size, 6px) + var(--df-qs-scrollbar-gap, 4px));
  height: calc(var(--df-qs-scrollbar-size, 6px) + var(--df-qs-scrollbar-gap, 4px));
  -webkit-appearance: none;
  appearance: none;
}
.df-quick-search__results::-webkit-scrollbar-track {
  background-color: var(--df-qs-scrollbar-track, #f1f5f9);
  border-radius: var(--df-qs-scrollbar-radius, 3px);
  margin-left: var(--df-qs-scrollbar-gap, 4px);
  margin-block: 2px;
}
.df-quick-search__results::-webkit-scrollbar-track:hover {
  background-color: color-mix(in srgb, var(--df-qs-scrollbar-track, #f1f5f9) 88%, #000);
}
.df-quick-search__results::-webkit-scrollbar-track:active {
  background-color: color-mix(in srgb, var(--df-qs-scrollbar-track, #f1f5f9) 75%, #000);
}
.df-quick-search__results::-webkit-scrollbar-thumb {
  background-color: var(--df-qs-scrollbar-thumb, #64748b);
  border-radius: var(--df-qs-scrollbar-radius, 3px);
  border: var(--df-qs-scrollbar-gap, 4px) solid transparent;
  border-top-width: 0;
  border-bottom-width: 0;
  border-right-width: 0;
  background-clip: padding-box;
  min-height: 40px;
}
.df-quick-search__results::-webkit-scrollbar-thumb:hover {
  background-color: color-mix(in srgb, var(--df-qs-scrollbar-thumb, #64748b) 82%, #000);
}
.df-quick-search__results::-webkit-scrollbar-thumb:active {
  background-color: color-mix(in srgb, var(--df-qs-scrollbar-thumb, #64748b) 68%, #000);
}
.df-quick-search__results::-webkit-scrollbar-button {
  display: none;
  width: 0;
  height: 0;
}
.df-quick-search__results::-webkit-scrollbar-corner {
  background: transparent;
}
.df-quick-search__results {
  padding: 1.5rem;
  display: block;
  box-sizing: border-box;
}
.df-quick-search__results-content {
  min-height: 0;
  min-width: 0;
}
.df-quick-search__results-spinner {
  display: none;
  position: absolute;
  inset: 0;
  z-index: 3;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.35);
  pointer-events: none;
}
.df-quick-search__results-spinner.is-visible {
  display: flex;
}
.df-quick-search__spinner {
  width: 2.5rem;
  height: 2.5rem;
  border: 2px solid rgba(255, 255, 255, 0.25);
  border-top-color: #fff;
  border-radius: 50%;
  animation: df-quick-search-spin 0.75s linear infinite;
}
.df-quick-search__layout {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  min-height: 0;
}
.df-quick-search__layout--split {
  width: 100%;
}
.df-quick-search__categories--rail {
  padding-bottom: 0.25rem;
}
.df-quick-search__categories--sidebar {
  display: none;
}
.df-quick-search__tabs {
  display: flex;
  gap: 0;
  border-bottom: 1px solid var(--bg-minor-shade, #eee);
  margin: 0 -0.25rem;
}
.df-quick-search__tab {
  flex: 1 1 0;
  margin: 0;
  padding: 0.65rem 0.75rem;
  border: none;
  border-bottom: 2px solid transparent;
  background: transparent;
  color: inherit;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: border-color 0.15s, color 0.15s;
}
.df-quick-search__tab.is-active {
  border-bottom-color: currentColor;
  font-weight: 600;
}
.df-quick-search__tab:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: -2px;
}
.df-quick-search__tab-count {
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
}
.df-quick-search__split-body {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  min-height: 0;
}
.df-quick-search__sidebar {
  display: none;
  flex-direction: column;
  gap: 1rem;
  min-width: 0;
}
.df-quick-search__main {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  min-width: 0;
  flex: 1 1 auto;
}
.df-quick-search__tabpanel {
  display: none;
  min-width: 0;
}
.df-quick-search__tabpanel.is-active {
  display: block;
}
.df-quick-search__articles--sidebar {
  display: none;
}
.df-quick-search__articles--mobile {
  display: block;
}
.df-quick-search__articles-panel {
  display: none;
}
.df-quick-search__articles-panel.is-active {
  display: block;
}
.df-quick-search__section-title {
  margin-bottom: 0.5rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-text-half-shade, #666);
}
.df-quick-search__products-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
  flex-wrap: wrap;
}
.df-quick-search__products-header .df-quick-search__section-title {
  margin-bottom: 0;
}
.df-quick-search__sort {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-left: auto;
  min-width: 0;
  max-width: 100%;
  font-size: 0.75rem;
  color: var(--color-text-half-shade, #666);
}
.df-quick-search__sort-label {
  text-transform: none;
  letter-spacing: 0;
  white-space: nowrap;
  flex-shrink: 0;
}
.df-quick-search__sort-select {
  min-width: 0;
  max-width: 12rem;
  width: auto;
  padding: 0.25rem 0.4rem;
  border: 1px solid var(--bg-minor-shade, #ddd);
  border-radius: 0.25rem;
  background: var(--bg, #fff);
  color: inherit;
  font: inherit;
  font-size: 0.75rem;
  cursor: pointer;
  box-sizing: border-box;
}
.df-quick-search__section-count {
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
}
.df-quick-search__article-list {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  min-width: 0;
  max-width: 100%;
}
.df-quick-search__article-item {
  display: block;
  min-width: 0;
  max-width: 100%;
  padding: 0.5rem 0.65rem;
  border-bottom: none;
  border-radius: 4px;
  background: var(--df-qs-card-bg, transparent);
  font-size: 0.85rem;
  text-decoration: none;
  color: inherit;
  line-height: 1.35;
  overflow-wrap: anywhere;
  word-break: break-word;
  animation: df-quick-search-appear 0.28s ease backwards;
}
.df-quick-search__article-item:hover {
  color: var(--df-qs-text-muted, var(--color-text-half-shade, #666));
  background: color-mix(in srgb, var(--df-qs-card-bg, #f5f5f5) 88%, var(--df-qs-text, #111));
}
.df-quick-search__article-item:last-child {
  margin-bottom: 0;
}
.df-quick-search__category-list {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  align-content: flex-start;
  gap: 0.5rem;
  min-width: 0;
  max-width: 100%;
}
.df-quick-search__category-item {
  display: inline-block;
  flex: 0 0 auto;
  align-self: flex-start;
  height: auto;
  max-width: 100%;
  padding: 0.35rem 0.75rem;
  border: 1px solid color-mix(in srgb, var(--df-qs-text, #111) 22%, transparent);
  border-radius: 4px;
  background: var(--df-qs-card-bg, var(--bg, #fff));
  font-size: 0.75rem;
  line-height: 1.3;
  text-transform: uppercase;
  text-decoration: none;
  color: inherit;
  white-space: normal;
  overflow-wrap: anywhere;
  word-break: break-word;
  transition: background 0.15s;
  animation: df-quick-search-appear 0.28s ease backwards;
}
.df-quick-search__category-item:hover {
  background: color-mix(in srgb, var(--df-qs-card-bg, #f5f5f5) 88%, var(--df-qs-text, #111));
}
.df-quick-search__product-grid {
  display: grid;
  grid-template-columns: repeat(var(--df-qs-cols-mobile, 2), minmax(0, 1fr));
  gap: 1rem;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
}
.df-quick-search__products {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
}
.df-quick-search__product {
  display: flex;
  flex-direction: column;
  height: 100%;
  color: inherit;
  text-decoration: none;
  min-width: 0;
  padding: 0.35rem;
  border-radius: 6px;
  background: var(--df-qs-card-bg, transparent);
  box-sizing: border-box;
  animation: df-quick-search-appear 0.28s ease backwards;
}
.df-quick-search__product-grid > .df-quick-search__product:nth-child(1) {
  animation-delay: 0ms;
}
.df-quick-search__product-grid > .df-quick-search__product:nth-child(2) {
  animation-delay: 30ms;
}
.df-quick-search__product-grid > .df-quick-search__product:nth-child(3) {
  animation-delay: 60ms;
}
.df-quick-search__product-grid > .df-quick-search__product:nth-child(4) {
  animation-delay: 90ms;
}
.df-quick-search__product-grid > .df-quick-search__product:nth-child(5) {
  animation-delay: 120ms;
}
.df-quick-search__product-grid > .df-quick-search__product:nth-child(6) {
  animation-delay: 150ms;
}
.df-quick-search__product-grid > .df-quick-search__product:nth-child(7) {
  animation-delay: 180ms;
}
.df-quick-search__product-grid > .df-quick-search__product:nth-child(8) {
  animation-delay: 210ms;
}
.df-quick-search__category-list > .df-quick-search__category-item:nth-child(1) {
  animation-delay: 0ms;
}
.df-quick-search__category-list > .df-quick-search__category-item:nth-child(2) {
  animation-delay: 25ms;
}
.df-quick-search__category-list > .df-quick-search__category-item:nth-child(3) {
  animation-delay: 50ms;
}
.df-quick-search__category-list > .df-quick-search__category-item:nth-child(4) {
  animation-delay: 75ms;
}
.df-quick-search__category-list > .df-quick-search__category-item:nth-child(5) {
  animation-delay: 100ms;
}
.df-quick-search__category-list > .df-quick-search__category-item:nth-child(6) {
  animation-delay: 125ms;
}
.df-quick-search__article-list > .df-quick-search__article-item:nth-child(1) {
  animation-delay: 0ms;
}
.df-quick-search__article-list > .df-quick-search__article-item:nth-child(2) {
  animation-delay: 30ms;
}
.df-quick-search__article-list > .df-quick-search__article-item:nth-child(3) {
  animation-delay: 60ms;
}
.df-quick-search__article-list > .df-quick-search__article-item:nth-child(4) {
  animation-delay: 90ms;
}
.df-quick-search__product-image-wrap {
  display: block;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  border-radius: 4px;
  background: var(--bg-minor-shade, #f4f4f4);
  margin-bottom: 0.5rem;
  aspect-ratio: 1/1;
  flex-shrink: 0;
}
.df-quick-search__product-image-wrap.is-skeleton {
  background: linear-gradient(90deg, var(--bg-minor-shade, #ececec) 0%, var(--bg-half-shade, #f8f8f8) 50%, var(--bg-minor-shade, #ececec) 100%);
  background-size: 200% 100%;
  animation: df-quick-search-shimmer 1.2s ease-in-out infinite;
}
.df-quick-search__product-image-wrap.is-placeholder {
  background: var(--bg-minor-shade, #ececec);
}
.df-quick-search__product-title.is-skeleton, .df-quick-search__product-prices.is-skeleton {
  display: block;
  height: 0.75rem;
  border-radius: 3px;
  margin-bottom: 0.35rem;
  background: linear-gradient(90deg, var(--bg-minor-shade, #ececec) 0%, var(--bg-half-shade, #f8f8f8) 50%, var(--bg-minor-shade, #ececec) 100%);
  background-size: 200% 100%;
  animation: df-quick-search-shimmer 1.2s ease-in-out infinite;
}
.df-quick-search__product-prices.is-skeleton {
  width: 45%;
}
.df-quick-search__product-image {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: opacity 0.28s ease;
}
.df-quick-search__product-image--hover {
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: 0;
  pointer-events: none;
}
.df-quick-search__product-slider {
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
  touch-action: pan-y;
  cursor: pointer;
  user-select: none;
}
.df-quick-search__product-slider:active {
  cursor: pointer;
}
.df-quick-search__product-image-wrap.has-slider--hover-zones .df-quick-search__product-slider {
  cursor: pointer;
}
.df-quick-search__product-image-wrap.has-slider--hover-zones .df-quick-search__product-slider:active {
  cursor: pointer;
}
.df-quick-search__product-slider-track {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.28s ease;
  transform: translateX(calc(-1 * var(--df-qs-slide-index, 0) * 100% + var(--df-qs-drag-offset, 0px)));
}
.df-quick-search__product-slider-track.is-dragging {
  transition: none;
}
.df-quick-search__product-slider-slide {
  flex: 0 0 100%;
  width: 100%;
  min-width: 100%;
  height: 100%;
}
.df-quick-search__product-slider-dots {
  position: absolute;
  bottom: 6px;
  left: 50%;
  z-index: 2;
  display: flex;
  gap: 4px;
  transform: translateX(-50%);
  pointer-events: none;
}
.df-quick-search__product-slider-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--df-qs-text, #111) 35%, transparent);
  pointer-events: auto;
  cursor: pointer;
}
.df-quick-search__product-slider-dot.is-active {
  background: var(--df-qs-text, #111);
  opacity: 0.85;
}
.df-quick-search__product-image-wrap.has-slider .df-quick-search__product-image {
  pointer-events: none;
}
.df-quick-search__product-title {
  font-size: 0.8rem;
  text-transform: uppercase;
  line-height: 1.3;
  white-space: normal;
}
.df-quick-search__product-prices {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.35rem;
  margin-top: auto;
  padding-top: 0.25rem;
  font-size: 0.8rem;
}
.df-quick-search__product-price-old {
  color: var(--color-text-half-shade, #999);
  text-decoration: line-through;
}
.df-quick-search__product-price {
  color: var(--df-qs-text, var(--color-text));
}
.df-quick-search__product-badge {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.35rem 0.5rem;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.2;
  text-align: center;
  color: #fff;
  background: rgba(0, 0, 0, 0.6);
  pointer-events: none;
}
.df-quick-search__recent, .df-quick-search__popular {
  padding: 0.5rem 0 1rem;
}
.df-quick-search__popular {
  padding-top: 0;
}
.df-quick-search__recent + .df-quick-search__popular {
  padding-top: 0.25rem;
}
.df-quick-search__recent-title, .df-quick-search__popular-title {
  margin: 0 0 0.5rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-text-half-shade, #666);
}
.df-quick-search__recent-list, .df-quick-search__popular-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.df-quick-search__recent-item, .df-quick-search__popular-item {
  margin: 0;
  padding: 0.35rem 0.75rem;
  border: 1px solid currentColor;
  border-radius: 4px;
  background: transparent;
  color: inherit;
  font-size: 0.8rem;
  cursor: pointer;
  transition: background 0.15s;
}
.df-quick-search__recent-item:hover, .df-quick-search__popular-item:hover {
  background: var(--bg-minor-shade, #f4f4f4);
}
.df-quick-search__sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.df-quick-search__load-more {
  display: block;
  width: 100%;
  margin-top: 1rem;
  margin-bottom: 0.5rem;
  padding: 0.65rem 1rem;
  border: 1px solid currentColor;
  border-radius: 4px;
  background: transparent;
  color: inherit;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: background 0.15s;
}
.df-quick-search__load-more:hover {
  background: var(--bg-minor-shade, #f4f4f4);
}
.df-quick-search__all-articles {
  display: block;
  width: 100%;
  margin-top: 1rem;
  margin-bottom: 0.5rem;
  padding: 0.65rem 1rem;
  border: 1px solid currentColor;
  border-radius: 4px;
  background: transparent;
  color: inherit;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  text-align: center;
  text-decoration: none;
  transition: background 0.15s;
}
.df-quick-search__all-articles:hover {
  background: var(--bg-minor-shade, #f4f4f4);
}
.df-quick-search__mark {
  background: rgba(255, 220, 100, 0.45);
  color: inherit;
  padding: 0 0.05em;
  border-radius: 2px;
}
.df-quick-search__all-results {
  display: block;
  width: 100%;
  margin-top: 1rem;
  margin-bottom: 0.5rem;
  padding: 0.65rem 1rem;
  border: 1px solid currentColor;
  border-radius: 4px;
  background: transparent;
  color: inherit;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  text-align: center;
  text-decoration: none;
  transition: background 0.15s;
}
.df-quick-search__all-results:hover {
  background: var(--bg-minor-shade, #f4f4f4);
}
.df-quick-search__empty--zero {
  padding: 1rem 0;
}
.df-quick-search__empty-message {
  margin: 0 0 1rem;
  color: var(--color-text-half-shade, #666);
  line-height: 1.4;
}
.df-quick-search__layout-hint {
  margin-bottom: 0.85rem;
  padding: 0.65rem 0.75rem;
  border: 1px solid var(--bg-minor-shade, #e5e5e5);
  border-radius: 0.35rem;
  background: var(--bg-minor-shade, #f7f7f7);
}
.df-quick-search__layout-hint-text {
  margin: 0 0 0.5rem;
  font-size: 0.85rem;
  line-height: 1.4;
  color: var(--color-text-half-shade, #555);
}
.df-quick-search__layout-hint-apply, .df-quick-search__layout-suggest-btn {
  display: inline-block;
  padding: 0.3rem 0.55rem;
  border: 1px solid var(--bg-minor-shade, #ccc);
  border-radius: 0.25rem;
  background: var(--bg, #fff);
  font: inherit;
  font-size: 0.8rem;
  cursor: pointer;
  color: inherit;
}
.df-quick-search__layout-hint-apply:hover, .df-quick-search__layout-suggest-btn:hover {
  background: var(--bg-minor-shade, #eee);
}
.df-quick-search__layout-suggest {
  margin: 0 0 0.85rem;
  font-size: 0.9rem;
  line-height: 1.45;
}
.df-quick-search__empty-search-link {
  display: inline-block;
  margin-bottom: 1rem;
  font-size: 0.85rem;
  text-decoration: underline;
  color: inherit;
}
.df-quick-search__empty-search-link:hover {
  color: var(--color-text-half-shade, #666);
}
.df-quick-search__categories--empty {
  margin-top: 0.5rem;
}
.df-quick-search__empty {
  padding: 0.6rem 0;
  color: var(--color-text-half-shade, #666);
}
.df-quick-search--ratio-portrait .df-quick-search__product-image-wrap, .df-quick-search__panel.df-quick-search--ratio-portrait .df-quick-search__product-image-wrap {
  aspect-ratio: 2/3;
}
.df-quick-search--ratio-portrait-34 .df-quick-search__product-image-wrap, .df-quick-search__panel.df-quick-search--ratio-portrait-34 .df-quick-search__product-image-wrap {
  aspect-ratio: 3/4;
}
.df-quick-search--ratio-landscape .df-quick-search__product-image-wrap, .df-quick-search__panel.df-quick-search--ratio-landscape .df-quick-search__product-image-wrap {
  aspect-ratio: 4/3;
}
.df-quick-search--ratio-natural .df-quick-search__product-image-wrap, .df-quick-search__panel.df-quick-search--ratio-natural .df-quick-search__product-image-wrap {
  aspect-ratio: auto;
}
.df-quick-search--ratio-natural .df-quick-search__product-image, .df-quick-search__panel.df-quick-search--ratio-natural .df-quick-search__product-image {
  height: auto;
  object-fit: contain;
}

@keyframes df-quick-search-shimmer {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}
@keyframes df-quick-search-spin {
  to {
    transform: rotate(360deg);
  }
}
@keyframes df-quick-search-appear {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
html.df-quick-search-open,
body.df-quick-search-open {
  overflow: hidden;
  overscroll-behavior: none;
  touch-action: none;
}

@media screen and (min-width: 768px) {
  .df-quick-search__product-grid {
    grid-template-columns: repeat(var(--df-qs-cols-tablet, 3), minmax(0, 1fr));
  }
  .df-quick-search__categories--rail {
    display: none;
  }
  .df-quick-search__categories--sidebar {
    display: flex;
    flex-direction: column;
  }
  .df-quick-search__tabs {
    display: none;
  }
  .df-quick-search__results {
    overflow: hidden;
    display: flex;
    flex-direction: column;
    flex: 1 1 0%;
  }
  .df-quick-search__results-content {
    flex: 1 1 0%;
    min-height: 0;
    min-width: 0;
    display: flex;
    flex-direction: column;
    overflow: hidden;
  }
  .df-quick-search__layout--split {
    flex: 1 1 0%;
    min-height: 0;
    min-width: 0;
    display: flex;
    flex-direction: column;
    overflow: hidden;
  }
  .df-quick-search__split-body {
    flex-direction: row;
    align-items: stretch;
    flex: 1 1 0%;
    min-height: 0;
    min-width: 0;
    gap: 1.5rem;
    overflow: hidden;
  }
  .df-quick-search__split-body--stack {
    flex-direction: column;
    align-items: stretch;
  }
  .df-quick-search__sidebar {
    display: flex;
    flex-direction: column;
    flex: 0 0 240px;
    width: 240px;
    max-width: 280px;
    align-self: stretch;
    height: auto;
    max-height: 100%;
    min-height: 0;
    min-width: 0;
    overflow: hidden;
    padding-right: 0.5rem;
    box-sizing: border-box;
  }
  .df-quick-search__split-body--stack .df-quick-search__sidebar, .df-quick-search__sidebar--stack {
    flex: 0 0 auto;
    width: 100%;
    max-width: none;
    height: auto;
    max-height: none;
    align-self: stretch;
    overflow: visible;
    padding-right: 0;
  }
  .df-quick-search__split-body--stack .df-quick-search__categories--sidebar {
    flex: 0 0 auto;
    max-height: none;
    min-height: 0;
    overflow: visible;
    padding-right: 0;
  }
  .df-quick-search__split-body--stack .df-quick-search__main {
    flex: 1 1 auto;
    min-height: 0;
  }
  .df-quick-search__sidebar--with-articles {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  .df-quick-search__categories--sidebar {
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
    min-width: 0;
    min-height: 0;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: var(--df-qs-scrollbar-thumb, #64748b) var(--df-qs-scrollbar-track, #f1f5f9);
  }
  .df-quick-search__categories--sidebar::-webkit-scrollbar {
    width: calc(var(--df-qs-scrollbar-size, 6px) + var(--df-qs-scrollbar-gap, 4px));
    height: calc(var(--df-qs-scrollbar-size, 6px) + var(--df-qs-scrollbar-gap, 4px));
    -webkit-appearance: none;
    appearance: none;
  }
  .df-quick-search__categories--sidebar::-webkit-scrollbar-track {
    background-color: var(--df-qs-scrollbar-track, #f1f5f9);
    border-radius: var(--df-qs-scrollbar-radius, 3px);
    margin-left: var(--df-qs-scrollbar-gap, 4px);
    margin-block: 2px;
  }
  .df-quick-search__categories--sidebar::-webkit-scrollbar-track:hover {
    background-color: color-mix(in srgb, var(--df-qs-scrollbar-track, #f1f5f9) 88%, #000);
  }
  .df-quick-search__categories--sidebar::-webkit-scrollbar-track:active {
    background-color: color-mix(in srgb, var(--df-qs-scrollbar-track, #f1f5f9) 75%, #000);
  }
  .df-quick-search__categories--sidebar::-webkit-scrollbar-thumb {
    background-color: var(--df-qs-scrollbar-thumb, #64748b);
    border-radius: var(--df-qs-scrollbar-radius, 3px);
    border: var(--df-qs-scrollbar-gap, 4px) solid transparent;
    border-top-width: 0;
    border-bottom-width: 0;
    border-right-width: 0;
    background-clip: padding-box;
    min-height: 40px;
  }
  .df-quick-search__categories--sidebar::-webkit-scrollbar-thumb:hover {
    background-color: color-mix(in srgb, var(--df-qs-scrollbar-thumb, #64748b) 82%, #000);
  }
  .df-quick-search__categories--sidebar::-webkit-scrollbar-thumb:active {
    background-color: color-mix(in srgb, var(--df-qs-scrollbar-thumb, #64748b) 68%, #000);
  }
  .df-quick-search__categories--sidebar::-webkit-scrollbar-button {
    display: none;
    width: 0;
    height: 0;
  }
  .df-quick-search__categories--sidebar::-webkit-scrollbar-corner {
    background: transparent;
  }
  .df-quick-search__categories--sidebar {
    padding-right: 0.75rem;
    box-sizing: border-box;
  }
  .df-quick-search__sidebar--with-articles .df-quick-search__categories--sidebar {
    flex: 0 0 auto;
    max-height: none;
    min-height: 0;
    min-width: 0;
    overflow: hidden;
  }
  .df-quick-search__sidebar--with-articles .df-quick-search__categories--sidebar .df-quick-search__section-title {
    flex-shrink: 0;
  }
  .df-quick-search__sidebar--with-articles .df-quick-search__categories--sidebar .df-quick-search__category-list {
    flex: 1 1 auto;
    min-height: 0;
    align-items: flex-start;
    align-content: flex-start;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: var(--df-qs-scrollbar-thumb, #64748b) var(--df-qs-scrollbar-track, #f1f5f9);
  }
  .df-quick-search__sidebar--with-articles .df-quick-search__categories--sidebar .df-quick-search__category-list::-webkit-scrollbar {
    width: calc(var(--df-qs-scrollbar-size, 6px) + var(--df-qs-scrollbar-gap, 4px));
    height: calc(var(--df-qs-scrollbar-size, 6px) + var(--df-qs-scrollbar-gap, 4px));
    -webkit-appearance: none;
    appearance: none;
  }
  .df-quick-search__sidebar--with-articles .df-quick-search__categories--sidebar .df-quick-search__category-list::-webkit-scrollbar-track {
    background-color: var(--df-qs-scrollbar-track, #f1f5f9);
    border-radius: var(--df-qs-scrollbar-radius, 3px);
    margin-left: var(--df-qs-scrollbar-gap, 4px);
    margin-block: 2px;
  }
  .df-quick-search__sidebar--with-articles .df-quick-search__categories--sidebar .df-quick-search__category-list::-webkit-scrollbar-track:hover {
    background-color: color-mix(in srgb, var(--df-qs-scrollbar-track, #f1f5f9) 88%, #000);
  }
  .df-quick-search__sidebar--with-articles .df-quick-search__categories--sidebar .df-quick-search__category-list::-webkit-scrollbar-track:active {
    background-color: color-mix(in srgb, var(--df-qs-scrollbar-track, #f1f5f9) 75%, #000);
  }
  .df-quick-search__sidebar--with-articles .df-quick-search__categories--sidebar .df-quick-search__category-list::-webkit-scrollbar-thumb {
    background-color: var(--df-qs-scrollbar-thumb, #64748b);
    border-radius: var(--df-qs-scrollbar-radius, 3px);
    border: var(--df-qs-scrollbar-gap, 4px) solid transparent;
    border-top-width: 0;
    border-bottom-width: 0;
    border-right-width: 0;
    background-clip: padding-box;
    min-height: 40px;
  }
  .df-quick-search__sidebar--with-articles .df-quick-search__categories--sidebar .df-quick-search__category-list::-webkit-scrollbar-thumb:hover {
    background-color: color-mix(in srgb, var(--df-qs-scrollbar-thumb, #64748b) 82%, #000);
  }
  .df-quick-search__sidebar--with-articles .df-quick-search__categories--sidebar .df-quick-search__category-list::-webkit-scrollbar-thumb:active {
    background-color: color-mix(in srgb, var(--df-qs-scrollbar-thumb, #64748b) 68%, #000);
  }
  .df-quick-search__sidebar--with-articles .df-quick-search__categories--sidebar .df-quick-search__category-list::-webkit-scrollbar-button {
    display: none;
    width: 0;
    height: 0;
  }
  .df-quick-search__sidebar--with-articles .df-quick-search__categories--sidebar .df-quick-search__category-list::-webkit-scrollbar-corner {
    background: transparent;
  }
  .df-quick-search__main {
    flex: 1 1 0%;
    min-width: 0;
    min-height: 0;
    max-width: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: var(--df-qs-scrollbar-thumb, #64748b) var(--df-qs-scrollbar-track, #f1f5f9);
  }
  .df-quick-search__main::-webkit-scrollbar {
    width: calc(var(--df-qs-scrollbar-size, 6px) + var(--df-qs-scrollbar-gap, 4px));
    height: calc(var(--df-qs-scrollbar-size, 6px) + var(--df-qs-scrollbar-gap, 4px));
    -webkit-appearance: none;
    appearance: none;
  }
  .df-quick-search__main::-webkit-scrollbar-track {
    background-color: var(--df-qs-scrollbar-track, #f1f5f9);
    border-radius: var(--df-qs-scrollbar-radius, 3px);
    margin-left: var(--df-qs-scrollbar-gap, 4px);
    margin-block: 2px;
  }
  .df-quick-search__main::-webkit-scrollbar-track:hover {
    background-color: color-mix(in srgb, var(--df-qs-scrollbar-track, #f1f5f9) 88%, #000);
  }
  .df-quick-search__main::-webkit-scrollbar-track:active {
    background-color: color-mix(in srgb, var(--df-qs-scrollbar-track, #f1f5f9) 75%, #000);
  }
  .df-quick-search__main::-webkit-scrollbar-thumb {
    background-color: var(--df-qs-scrollbar-thumb, #64748b);
    border-radius: var(--df-qs-scrollbar-radius, 3px);
    border: var(--df-qs-scrollbar-gap, 4px) solid transparent;
    border-top-width: 0;
    border-bottom-width: 0;
    border-right-width: 0;
    background-clip: padding-box;
    min-height: 40px;
  }
  .df-quick-search__main::-webkit-scrollbar-thumb:hover {
    background-color: color-mix(in srgb, var(--df-qs-scrollbar-thumb, #64748b) 82%, #000);
  }
  .df-quick-search__main::-webkit-scrollbar-thumb:active {
    background-color: color-mix(in srgb, var(--df-qs-scrollbar-thumb, #64748b) 68%, #000);
  }
  .df-quick-search__main::-webkit-scrollbar-button {
    display: none;
    width: 0;
    height: 0;
  }
  .df-quick-search__main::-webkit-scrollbar-corner {
    background: transparent;
  }
  .df-quick-search__main {
    box-sizing: border-box;
  }
  .df-quick-search__tabpanel[data-df-quick-search-tabpanel=products] {
    display: block !important;
    min-width: 0;
    max-width: 100%;
    overflow-x: hidden;
    box-sizing: border-box;
  }
  .df-quick-search__articles--sidebar {
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
    min-width: 0;
    min-height: 0;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: var(--df-qs-scrollbar-thumb, #64748b) var(--df-qs-scrollbar-track, #f1f5f9);
  }
  .df-quick-search__articles--sidebar::-webkit-scrollbar {
    width: calc(var(--df-qs-scrollbar-size, 6px) + var(--df-qs-scrollbar-gap, 4px));
    height: calc(var(--df-qs-scrollbar-size, 6px) + var(--df-qs-scrollbar-gap, 4px));
    -webkit-appearance: none;
    appearance: none;
  }
  .df-quick-search__articles--sidebar::-webkit-scrollbar-track {
    background-color: var(--df-qs-scrollbar-track, #f1f5f9);
    border-radius: var(--df-qs-scrollbar-radius, 3px);
    margin-left: var(--df-qs-scrollbar-gap, 4px);
    margin-block: 2px;
  }
  .df-quick-search__articles--sidebar::-webkit-scrollbar-track:hover {
    background-color: color-mix(in srgb, var(--df-qs-scrollbar-track, #f1f5f9) 88%, #000);
  }
  .df-quick-search__articles--sidebar::-webkit-scrollbar-track:active {
    background-color: color-mix(in srgb, var(--df-qs-scrollbar-track, #f1f5f9) 75%, #000);
  }
  .df-quick-search__articles--sidebar::-webkit-scrollbar-thumb {
    background-color: var(--df-qs-scrollbar-thumb, #64748b);
    border-radius: var(--df-qs-scrollbar-radius, 3px);
    border: var(--df-qs-scrollbar-gap, 4px) solid transparent;
    border-top-width: 0;
    border-bottom-width: 0;
    border-right-width: 0;
    background-clip: padding-box;
    min-height: 40px;
  }
  .df-quick-search__articles--sidebar::-webkit-scrollbar-thumb:hover {
    background-color: color-mix(in srgb, var(--df-qs-scrollbar-thumb, #64748b) 82%, #000);
  }
  .df-quick-search__articles--sidebar::-webkit-scrollbar-thumb:active {
    background-color: color-mix(in srgb, var(--df-qs-scrollbar-thumb, #64748b) 68%, #000);
  }
  .df-quick-search__articles--sidebar::-webkit-scrollbar-button {
    display: none;
    width: 0;
    height: 0;
  }
  .df-quick-search__articles--sidebar::-webkit-scrollbar-corner {
    background: transparent;
  }
  .df-quick-search__articles--sidebar {
    padding-right: 0.75rem;
    box-sizing: border-box;
  }
  .df-quick-search__sidebar--with-articles .df-quick-search__articles--sidebar {
    flex: 0 0 auto;
    min-height: 0;
    min-width: 0;
    overflow: hidden;
  }
  .df-quick-search__sidebar--with-articles .df-quick-search__articles--sidebar .df-quick-search__section-title {
    flex-shrink: 0;
  }
  .df-quick-search__sidebar--with-articles .df-quick-search__articles--sidebar .df-quick-search__article-list {
    flex: 1 1 auto;
    min-height: 0;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: var(--df-qs-scrollbar-thumb, #64748b) var(--df-qs-scrollbar-track, #f1f5f9);
  }
  .df-quick-search__sidebar--with-articles .df-quick-search__articles--sidebar .df-quick-search__article-list::-webkit-scrollbar {
    width: calc(var(--df-qs-scrollbar-size, 6px) + var(--df-qs-scrollbar-gap, 4px));
    height: calc(var(--df-qs-scrollbar-size, 6px) + var(--df-qs-scrollbar-gap, 4px));
    -webkit-appearance: none;
    appearance: none;
  }
  .df-quick-search__sidebar--with-articles .df-quick-search__articles--sidebar .df-quick-search__article-list::-webkit-scrollbar-track {
    background-color: var(--df-qs-scrollbar-track, #f1f5f9);
    border-radius: var(--df-qs-scrollbar-radius, 3px);
    margin-left: var(--df-qs-scrollbar-gap, 4px);
    margin-block: 2px;
  }
  .df-quick-search__sidebar--with-articles .df-quick-search__articles--sidebar .df-quick-search__article-list::-webkit-scrollbar-track:hover {
    background-color: color-mix(in srgb, var(--df-qs-scrollbar-track, #f1f5f9) 88%, #000);
  }
  .df-quick-search__sidebar--with-articles .df-quick-search__articles--sidebar .df-quick-search__article-list::-webkit-scrollbar-track:active {
    background-color: color-mix(in srgb, var(--df-qs-scrollbar-track, #f1f5f9) 75%, #000);
  }
  .df-quick-search__sidebar--with-articles .df-quick-search__articles--sidebar .df-quick-search__article-list::-webkit-scrollbar-thumb {
    background-color: var(--df-qs-scrollbar-thumb, #64748b);
    border-radius: var(--df-qs-scrollbar-radius, 3px);
    border: var(--df-qs-scrollbar-gap, 4px) solid transparent;
    border-top-width: 0;
    border-bottom-width: 0;
    border-right-width: 0;
    background-clip: padding-box;
    min-height: 40px;
  }
  .df-quick-search__sidebar--with-articles .df-quick-search__articles--sidebar .df-quick-search__article-list::-webkit-scrollbar-thumb:hover {
    background-color: color-mix(in srgb, var(--df-qs-scrollbar-thumb, #64748b) 82%, #000);
  }
  .df-quick-search__sidebar--with-articles .df-quick-search__articles--sidebar .df-quick-search__article-list::-webkit-scrollbar-thumb:active {
    background-color: color-mix(in srgb, var(--df-qs-scrollbar-thumb, #64748b) 68%, #000);
  }
  .df-quick-search__sidebar--with-articles .df-quick-search__articles--sidebar .df-quick-search__article-list::-webkit-scrollbar-button {
    display: none;
    width: 0;
    height: 0;
  }
  .df-quick-search__sidebar--with-articles .df-quick-search__articles--sidebar .df-quick-search__article-list::-webkit-scrollbar-corner {
    background: transparent;
  }
  .df-quick-search__sidebar--with-articles .df-quick-search__articles--sidebar .df-quick-search__load-more,
  .df-quick-search__sidebar--with-articles .df-quick-search__articles--sidebar .df-quick-search__all-articles {
    flex-shrink: 0;
  }
  .df-quick-search__articles--mobile, .df-quick-search__articles-panel {
    display: none !important;
  }
}
@media screen and (min-width: 1200px) {
  .df-quick-search__product-grid {
    grid-template-columns: repeat(var(--df-qs-cols-desktop, 4), minmax(0, 1fr));
  }
}
@media screen and (max-width: 767px) {
  .df-quick-search__input {
    height: auto;
    min-height: 54px;
    font-size: var(--df-qs-input-font-size, 1.875rem);
  }
  .df-quick-search__results {
    padding-top: 0rem;
  }
  .df-quick-search__layout--split {
    gap: 0.75rem;
  }
  .df-quick-search__categories--rail {
    margin: 0 -0.25rem;
  }
  .df-quick-search__tabs {
    position: sticky;
    top: 0;
    z-index: 20;
    margin: 0 -0.25rem;
    padding-bottom: 0.25rem;
    background: var(--df-qs-panel-bg, var(--bg, #fff));
  }
  .df-quick-search__products .df-quick-search__section-title {
    display: none;
  }
  .df-quick-search__products-header {
    margin-bottom: 0.65rem;
  }
  .df-quick-search__sort-label {
    display: none;
  }
  .df-quick-search__sort-select {
    max-width: 100%;
  }
}
/* Desktop hover: crossfade to second product image.
   Use any-hover (not hover+pointer:fine): hybrid/touch laptops often report
   hover:none / pointer:coarse as primary even with a mouse — which hid the swap. */
@media (any-hover: hover) {
  .df-quick-search__product-image-wrap.has-hover-image:hover .df-quick-search__product-image:not(.df-quick-search__product-image--hover) {
    opacity: 0;
  }
  .df-quick-search__product-image-wrap.has-hover-image:hover .df-quick-search__product-image--hover {
    opacity: 1;
  }
}
@media (prefers-reduced-motion: reduce) {
  .df-quick-search__product,
  .df-quick-search__article-item,
  .df-quick-search__category-item {
    animation: none !important;
  }
  .df-quick-search__product-image {
    transition: none;
  }
  .df-quick-search__product-slider-track {
    transition: none;
  }
  .df-quick-search__product-image-wrap.is-skeleton,
  .df-quick-search__product-title.is-skeleton,
  .df-quick-search__product-prices.is-skeleton {
    animation: none;
  }
}

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