/** Shopify CDN: Minification failed

Line 43:0 All "@import" rules must come first

**/
/* ============================================================
   TeknoFitness Custom Search Bar — CSS
   FILE: assets/tf-search-bar.css
   ============================================================ */

/* ── CSS Variables ──────────────────────────────────────────── */
:root {
  --tf-bg-page: #F7F5F2;
  --tf-bg-card: #FFFFFF;
  --tf-bg-search: #FFFFFF;
  --tf-bg-dropdown: #FFFFFF;
  --tf-bg-hover: #F0EDE8;
  --tf-bg-tag: #EDE9E3;
  --tf-bg-accent: #1A1A1A;
  --tf-bg-accent-soft: #F0EDE8;
  --tf-bg-badge: #C75030;
  --tf-bg-badge-stock: #2D7D46;
  --tf-text-primary: #1A1A1A;
  --tf-text-secondary: #6B6560;
  --tf-text-tertiary: #9B9590;
  --tf-text-inverse: #FFFFFF;
  --tf-text-accent: #C75030;
  --tf-border: #E5E0DA;
  --tf-border-focus: #1A1A1A;
  --tf-shadow-sm: 0 1px 3px rgba(26,26,26,0.06);
  --tf-shadow-md: 0 4px 20px rgba(26,26,26,0.08);
  --tf-shadow-lg: 0 12px 48px rgba(26,26,26,0.12);
  --tf-shadow-xl: 0 20px 60px rgba(26,26,26,0.16);
  --tf-radius-sm: 8px;
  --tf-radius-md: 12px;
  --tf-radius-lg: 16px;
  --tf-radius-xl: 20px;
  --tf-transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --tf-font: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* ── Import Font ────────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:opsz,wght@9..40,300;9..40,400;9..40,500;9..40,600;9..40,700&display=swap');

/* ── Reset & Container ──────────────────────────────────────── */
.tf-search,
.tf-search *,
.tf-search *::before,
.tf-search *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.tf-search {
  font-family: var(--tf-font);
  position: relative;
  z-index: 9999;
}

.tf-search__open-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 50%;
  background: transparent;
  color: inherit;
  cursor: pointer;
  padding: 0;
  transition: background var(--tf-transition), color var(--tf-transition);
}

.tf-search__open-btn:hover {
  background: rgba(255, 255, 255, 0.12);
}

.tf-search.is-open .tf-search__open-btn {
  display: none;
}

.tf-search--icon-trigger .tf-search__wrapper {
  display: none;
}

.tf-search--icon-trigger.is-open .tf-search__wrapper {
  display: flex;
}

/* ── Overlay ────────────────────────────────────────────────── */
.tf-search__overlay {
  position: fixed;
  inset: 0;
  background: rgba(26, 26, 26, 0.3);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 9998;
}

.tf-search.is-open .tf-search__overlay {
  opacity: 1;
  visibility: visible;
}

/* ── Wrapper ────────────────────────────────────────────────── */
.tf-search__wrapper {
  position: relative;
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
  z-index: 9999;
}

@media screen and (min-width: 990px) {
  .header__search-bar:has([data-tf-search]) {
    flex: 1 1 1040px;
    width: min(70%, 1040px);
    max-width: 1040px;
    justify-self: center;
  }

  .header__search-bar [data-tf-search],
  .header__search-bar .tf-search__wrapper {
    width: 100%;
    max-width: 1040px;
  }
}

/* ── Search Bar ─────────────────────────────────────────────── */
.tf-search__bar {
  display: flex;
  align-items: center;
  background: var(--tf-bg-search);
  border: 2px solid var(--tf-border);
  border-radius: var(--tf-radius-lg);
  padding: 0 20px;
  height: 56px;
  gap: 12px;
  transition: all var(--tf-transition);
  box-shadow: var(--tf-shadow-sm);
}

.tf-search.is-open .tf-search__bar,
.tf-search__bar:focus-within {
  border-color: var(--tf-border-focus);
  box-shadow: var(--tf-shadow-md);
}

/* ── Search Icon ────────────────────────────────────────────── */
.tf-search__icon {
  color: var(--tf-text-tertiary);
  display: flex;
  flex-shrink: 0;
  transition: color var(--tf-transition);
}

.tf-search.is-open .tf-search__icon,
.tf-search__bar:focus-within .tf-search__icon {
  color: var(--tf-text-primary);
}

/* ── Input ──────────────────────────────────────────────────── */
.tf-search__input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 16px;
  font-family: var(--tf-font);
  color: var(--tf-text-primary);
  background: transparent;
  font-weight: 400;
  letter-spacing: -0.01em;
  min-width: 0;
  -webkit-appearance: none;
}

.tf-search__input::placeholder {
  color: var(--tf-text-tertiary);
  font-weight: 400;
}

/* Rimuovi l'icona X nativa di Chrome/Edge */
.tf-search__input::-webkit-search-cancel-button,
.tf-search__input::-webkit-search-decoration {
  -webkit-appearance: none;
  display: none;
}

/* ── Clear Button ───────────────────────────────────────────── */
.tf-search__clear {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border: none;
  background: var(--tf-bg-tag);
  border-radius: 50%;
  cursor: pointer;
  color: var(--tf-text-secondary);
  transition: all var(--tf-transition);
  flex-shrink: 0;
}

.tf-search__clear:hover {
  background: var(--tf-bg-accent);
  color: var(--tf-text-inverse);
}

/* ── Dropdown ───────────────────────────────────────────────── */
.tf-search__dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  background: var(--tf-bg-dropdown);
  border: 1px solid var(--tf-border);
  border-radius: var(--tf-radius-xl);
  box-shadow: var(--tf-shadow-xl);
  max-height: 70vh;
  overflow-y: auto;
  overflow-x: hidden;
  animation: tf-slideDown 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes tf-slideDown {
  from {
    opacity: 0;
    transform: translateY(-8px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.tf-search__dropdown::-webkit-scrollbar {
  width: 6px;
}
.tf-search__dropdown::-webkit-scrollbar-track {
  background: transparent;
}
.tf-search__dropdown::-webkit-scrollbar-thumb {
  background: var(--tf-border);
  border-radius: 3px;
}

/* ── Sections ───────────────────────────────────────────────── */
.tf-search__section {
  padding: 20px 24px 12px;
}

.tf-search__section + .tf-search__section {
  border-top: 1px solid var(--tf-border);
}

.tf-search__section-title {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--tf-text-tertiary);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ── Suggestion Items ───────────────────────────────────────── */
.tf-search__suggestion {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border-radius: var(--tf-radius-sm);
  cursor: pointer;
  transition: all var(--tf-transition);
  font-size: 14px;
  color: var(--tf-text-primary);
  text-decoration: none;
  border: none;
  background: none;
  width: 100%;
  text-align: left;
  font-family: var(--tf-font);
}

.tf-search__suggestion:hover,
.tf-search__suggestion.is-active {
  background: var(--tf-bg-hover);
}

.tf-search__suggestion-icon {
  color: var(--tf-text-tertiary);
  font-size: 14px;
  flex-shrink: 0;
  width: 20px;
  text-align: center;
}

.tf-search__suggestion-text mark {
  font-weight: 600;
  background: none;
  color: inherit;
}

.tf-search__suggestion-arrow {
  margin-left: auto;
  color: var(--tf-text-tertiary);
  opacity: 0;
  transition: opacity var(--tf-transition);
}

.tf-search__suggestion:hover .tf-search__suggestion-arrow {
  opacity: 1;
}

/* ── Trending Tags ──────────────────────────────────────────── */
.tf-search__trending-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tf-search__tag {
  padding: 8px 16px;
  border-radius: 100px;
  background: var(--tf-bg-tag);
  border: none;
  cursor: pointer;
  font-size: 13px;
  font-weight: 500;
  color: var(--tf-text-secondary);
  transition: all var(--tf-transition);
  font-family: var(--tf-font);
}

.tf-search__tag:hover {
  background: var(--tf-bg-accent);
  color: var(--tf-text-inverse);
  transform: translateY(-1px);
}

/* ── Category Cards ─────────────────────────────────────────── */
.tf-search__categories {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.tf-search__cat-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 16px 8px;
  border-radius: var(--tf-radius-md);
  background: var(--tf-bg-accent-soft);
  text-decoration: none;
}

.tf-search__cat-icon {
  font-size: 24px;
}

.tf-search__cat-name {
  font-size: 12px;
  font-weight: 600;
  color: var(--tf-text-primary);
}

/* ── Results Header ─────────────────────────────────────────── */
.tf-search__results-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px 8px;
}

.tf-search__results-count {
  font-size: 13px;
  color: var(--tf-text-tertiary);
  font-weight: 500;
}

.tf-search__view-toggle {
  display: flex;
  gap: 4px;
}

.tf-search__view-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border: 1.5px solid var(--tf-border);
  border-radius: var(--tf-radius-sm);
  background: var(--tf-bg-card);
  cursor: pointer;
  color: var(--tf-text-tertiary);
  transition: all var(--tf-transition);
}

.tf-search__view-btn.active {
  background: var(--tf-bg-accent);
  color: var(--tf-text-inverse);
  border-color: var(--tf-bg-accent);
}

/* ── Product Grid ───────────────────────────────────────────── */
.tf-search__products {
  padding: 12px 24px 24px;
}

.tf-search__products.is-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 12px;
}

.tf-search__products.is-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

/* ── Product Card (Grid) ────────────────────────────────────── */
.tf-search__product-card {
  background: var(--tf-bg-card);
  border: 1px solid var(--tf-border);
  border-radius: var(--tf-radius-md);
  overflow: hidden;
  cursor: pointer;
  transition: all var(--tf-transition);
  position: relative;
  text-decoration: none;
  display: block;
  color: inherit;
}

.tf-search__product-card:hover {
  border-color: var(--tf-text-primary);
  box-shadow: var(--tf-shadow-md);
  transform: translateY(-2px);
}

.tf-search__product-img-wrap {
  position: relative;
  width: 100%;
  padding-top: 100%;
  background: #f5f3f0;
  overflow: hidden;
}

.tf-search__product-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.tf-search__product-card:hover .tf-search__product-img {
  transform: scale(1.06);
}

.tf-search__product-body {
  padding: 12px;
}

.tf-search__product-vendor {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--tf-text-tertiary);
  font-weight: 600;
  margin-bottom: 4px;
}

.tf-search__product-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--tf-text-primary);
  line-height: 1.3;
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.tf-search__product-pricing {
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.tf-search__product-price {
  font-size: 16px;
  font-weight: 700;
  color: var(--tf-text-primary);
  font-family: var(--tf-font);
}

.tf-search__product-compare {
  font-size: 12px;
  color: var(--tf-text-tertiary);
  text-decoration: line-through;
}

.tf-search__badge {
  position: absolute;
  top: 8px;
  left: 8px;
  padding: 4px 10px;
  border-radius: 100px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  z-index: 2;
}

.tf-search__badge--sale {
  background: var(--tf-bg-badge);
  color: var(--tf-text-inverse);
}

.tf-search__badge--low-stock {
  background: #FFF3CD;
  color: #856404;
}

.tf-search__stock-info {
  font-size: 10px;
  color: var(--tf-text-tertiary);
  margin-top: 4px;
  display: flex;
  align-items: center;
}

.tf-search__stock-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--tf-bg-badge-stock);
  margin-right: 4px;
}

/* ── Product Item (List) ────────────────────────────────────── */
.tf-search__product-list-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 14px;
  border-radius: var(--tf-radius-sm);
  cursor: pointer;
  transition: all var(--tf-transition);
  text-decoration: none;
  color: inherit;
}

.tf-search__product-list-item:hover {
  background: var(--tf-bg-hover);
}

.tf-search__product-list-item img {
  width: 52px;
  height: 52px;
  border-radius: var(--tf-radius-sm);
  object-fit: cover;
  flex-shrink: 0;
}

.tf-search__list-info {
  flex: 1;
  min-width: 0;
}

.tf-search__list-vendor {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--tf-text-tertiary);
  font-weight: 600;
}

.tf-search__list-title {
  font-size: 14px;
  font-weight: 500;
  color: var(--tf-text-primary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.tf-search__list-price {
  font-size: 15px;
  font-weight: 700;
  color: var(--tf-text-primary);
  text-align: right;
  white-space: nowrap;
}

.tf-search__list-compare {
  font-size: 11px;
  color: var(--tf-text-tertiary);
  text-decoration: line-through;
  text-align: right;
}

/* ── No Results ─────────────────────────────────────────────── */
.tf-search__no-results {
  text-align: center;
  padding: 40px 24px;
}

.tf-search__nr-icon {
  font-size: 40px;
  margin-bottom: 12px;
}

.tf-search__nr-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--tf-text-primary);
  margin-bottom: 6px;
}

.tf-search__nr-sub {
  font-size: 13px;
  color: var(--tf-text-tertiary);
}

/* ── See All ────────────────────────────────────────────────── */
.tf-search__see-all {
  display: block;
  text-align: center;
  padding: 14px 24px;
  font-size: 14px;
  font-weight: 600;
  color: var(--tf-text-accent);
  text-decoration: none;
  border-top: 1px solid var(--tf-border);
  transition: all var(--tf-transition);
  font-family: var(--tf-font);
}

.tf-search__see-all:hover {
  background: var(--tf-bg-hover);
  color: var(--tf-bg-accent);
}

/* ── Footer ─────────────────────────────────────────────────── */
.tf-search__footer {
  text-align: center;
  padding: 10px;
  font-size: 10px;
  color: var(--tf-text-tertiary);
  border-top: 1px solid var(--tf-border);
  letter-spacing: 0.02em;
  font-family: var(--tf-font);
}

/* ── Mobile ─────────────────────────────────────────────────── */
@media (max-width: 768px) {
  .tf-search__wrapper {
    max-width: 100%;
    padding: 0 12px;
  }

  .tf-search__bar {
    height: 50px;
    padding: 0 14px;
    gap: 10px;
  }

  .tf-search__input {
    font-size: 15px;
  }

  .tf-search__dropdown {
    max-height: 80vh;
    border-radius: var(--tf-radius-lg);
  }

  .tf-search__section {
    padding: 16px 16px 10px;
  }

  .tf-search__categories {
    grid-template-columns: repeat(2, 1fr);
  }

  .tf-search__products.is-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    padding: 8px 16px 16px;
  }

  .tf-search__results-header {
    padding: 12px 16px 6px;
  }

}


/* ── Admin categories with PNG icons ───────────────────────── */
.tf-search__cat-icon--png {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: #ffffff;
  border: 1px solid var(--tf-border);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: var(--tf-shadow-sm);
}

.tf-search__cat-icon--png img {
  width: 30px;
  height: 30px;
  object-fit: contain;
  display: block;
}

.tf-search__cat-placeholder {
  width: 22px;
  height: 22px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--tf-bg-badge), var(--tf-bg-accent));
  display: block;
}

.tf-search__synonym-note {
  margin: 12px 24px 0;
  padding: 10px 12px;
  border-radius: 12px;
  background: #fff7f3;
  color: var(--tf-text-accent);
  font-size: 12px;
  font-weight: 600;
  border: 1px solid rgba(199,80,48,.18);
}

@media (max-width: 768px) {
  .tf-search__cat-icon--png {
    width: 42px;
    height: 42px;
  }

  .tf-search__cat-icon--png img {
    width: 28px;
    height: 28px;
  }
}

/* ============================================================
   Full screen search page — desktop + mobile
   ============================================================ */
body.tf-search-no-scroll {
  overflow: hidden !important;
}

.tf-search.is-open {
  z-index: 2147483002;
}

.tf-search.is-open .tf-search__overlay {
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  pointer-events: none;
  z-index: 2147483001;
}

.tf-search.is-open .tf-search__wrapper {
  position: fixed;
  inset: 0;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: clamp(18px, 4vw, 46px) clamp(14px, 4vw, 44px);
  z-index: 2147483002;
  background: #fff;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  pointer-events: none;
  animation: tf-fullscreen-enter 0.32s cubic-bezier(0.16, 1, 0.3, 1);
}

.tf-search__fullscreen-close {
  display: none;
}

.tf-search.is-open .tf-search__fullscreen-close {
  position: fixed;
  top: clamp(14px, 2.6vw, 28px);
  right: clamp(14px, 2.6vw, 28px);
  z-index: 2147483003;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid #dedede;
  border-radius: 8px;
  background: #fff;
  color: #111;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  cursor: pointer;
  font-family: var(--tf-font);
  font-size: 14px;
  font-weight: 700;
  pointer-events: auto;
  transition: transform var(--tf-transition), box-shadow var(--tf-transition), background var(--tf-transition);
}

.tf-search.is-open .tf-search__fullscreen-close:hover {
  background: #f5f5f5;
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
  transform: translateY(-1px);
}

.tf-search.is-open .tf-search__fullscreen-close:focus-visible {
  outline: 3px solid rgba(199, 40, 40, 0.45);
  outline-offset: 3px;
}

@keyframes tf-fullscreen-enter {
  from {
    opacity: 0;
    transform: translateY(-14px) scale(0.985);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.tf-search.is-open .tf-search__bar {
  width: min(100%, 980px);
  height: clamp(56px, 6vw, 68px);
  padding: 0 clamp(14px, 2.4vw, 24px);
  border: 1px solid #d9d9d9;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 34px rgba(0,0,0,0.08);
  pointer-events: auto;
  transform-origin: center top;
}

.tf-search.is-open .tf-search__icon {
  color: #c72828;
}

.tf-search.is-open .tf-search__input {
  font-size: clamp(17px, 2.4vw, 24px);
  font-weight: 600;
}

.tf-search.is-open .tf-search__clear {
  width: 34px;
  height: 34px;
  background: #111;
  color: #fff;
}

.tf-search.is-open .tf-search__dropdown {
  position: relative;
  top: auto;
  left: auto;
  right: auto;
  width: min(100%, 1100px);
  flex: 1;
  max-height: none;
  margin-top: clamp(14px, 2vw, 22px);
  border: 1px solid #e3e3e3;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 42px rgba(0,0,0,0.08);
  pointer-events: auto;
  overflow-y: auto;
  animation: tf-fullscreen-panel 0.34s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes tf-fullscreen-panel {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.985);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.tf-search.is-open .tf-search__section {
  padding: 26px 30px 16px;
}

.tf-search.is-open .tf-search__results-header {
  padding: 22px 30px 10px;
}

.tf-search.is-open .tf-search__products {
  padding: 14px 30px 30px;
}

.tf-search.is-open .tf-search__products.is-grid {
  grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
  gap: 16px;
}

.tf-search.is-open .tf-search__categories {
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 14px;
}

.tf-search.is-open .tf-search__cat-card {
  min-height: 128px;
  border: 1px solid rgba(26,26,26,0.06);
  background: linear-gradient(180deg, #fff, #f6f6f6);
}

.tf-search.is-open .tf-search__cat-icon--png {
  width: 50px;
  height: 50px;
}

.tf-search.is-open .tf-search__cat-icon--png img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.tf-search.is-open .tf-search__product-card {
  border-radius: 18px;
}

.tf-search.is-open .tf-search__product-img-wrap {
  background: linear-gradient(135deg, #f5f5f5, #ececec);
}

@media (max-width: 768px) {
  .tf-search.is-open .tf-search__wrapper {
    padding: calc(72px + env(safe-area-inset-top, 0px)) 12px 12px;
    justify-content: flex-start;
  }

  .tf-search.is-open .tf-search__fullscreen-close {
    top: calc(12px + env(safe-area-inset-top, 0px));
    right: 12px;
    bottom: auto;
    min-height: 48px;
    padding: 0 16px;
    font-size: 14px;
  }

  .tf-search.is-open .tf-search__bar {
    width: 100%;
    height: 58px;
    border-radius: 8px;
    padding: 0 14px;
    gap: 10px;
  }

  .tf-search.is-open .tf-search__input {
    font-size: 17px;
    font-weight: 600;
  }

  .tf-search.is-open .tf-search__dropdown {
    width: 100%;
    margin-top: 10px;
    border-radius: 8px;
    max-height: calc(100vh - 92px);
  }

  .tf-search.is-open .tf-search__section {
    padding: 18px 16px 12px;
  }

  .tf-search.is-open .tf-search__categories {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .tf-search.is-open .tf-search__cat-card {
    min-height: 104px;
    padding: 14px 10px;
  }

  .tf-search.is-open .tf-search__products.is-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    padding: 10px 12px 18px;
  }

  .tf-search.is-open .tf-search__results-header {
    padding: 14px 16px 6px;
  }

}
