/*
 * Theme 6 final visual-polish pass.
 * Scope: Catalog Market Pro only.
 * Loaded after theme5-theme6-visual-integrity.css.
 */

[data-theme-renderer="catalog-market-pro"] .st-market-hero,
.store-theme-catalog-market-pro .st-market-hero {
  padding-block: 30px 34px;
}

[data-theme-renderer="catalog-market-pro"] .st-market-hero-shell,
.store-theme-catalog-market-pro .st-market-hero-shell {
  gap: clamp(24px, 3vw, 40px);
}

[data-theme-renderer="catalog-market-pro"] .st-market-categories,
.store-theme-catalog-market-pro .st-market-categories {
  padding-block: 26px 30px;
}

[data-theme-renderer="catalog-market-pro"] .st-market-products,
.store-theme-catalog-market-pro .st-market-products {
  padding-block: 28px 32px;
}

[data-theme-renderer="catalog-market-pro"] .st-market-trust,
.store-theme-catalog-market-pro .st-market-trust {
  padding-block: 18px;
}

[data-theme-renderer="catalog-market-pro"] .st-market-section-head,
.store-theme-catalog-market-pro .st-market-section-head {
  margin-bottom: 18px;
}

[data-theme-renderer="catalog-market-pro"] .st-market-products .st-market-section-head,
.store-theme-catalog-market-pro .st-market-products .st-market-section-head {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  align-items: end;
}

[data-theme-renderer="catalog-market-pro"] .st-market-products .st-category-filter-bar,
.store-theme-catalog-market-pro .st-market-products .st-category-filter-bar {
  margin-top: 2px;
  justify-content: flex-start;
  gap: 8px;
}

[data-theme-renderer="catalog-market-pro"] .st-market-category-grid,
.store-theme-catalog-market-pro .st-market-category-grid,
[data-theme-renderer="catalog-market-pro"] .st-market-products-grid,
.store-theme-catalog-market-pro .st-market-products-grid {
  gap: 14px;
}

[data-theme-renderer="catalog-market-pro"] .st-market-category-grid .st-category-card,
.store-theme-catalog-market-pro .st-market-category-grid .st-category-card,
[data-theme-renderer="catalog-market-pro"] .st-market-products-grid .st-product-card,
.store-theme-catalog-market-pro .st-market-products-grid .st-product-card {
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.055);
}

[data-theme-renderer="catalog-market-pro"] .st-market-products-grid .st-product-body,
.store-theme-catalog-market-pro .st-market-products-grid .st-product-body {
  padding: 12px 13px 14px;
  gap: 7px;
}

[data-theme-renderer="catalog-market-pro"] .st-market-products-grid .st-product-title,
.store-theme-catalog-market-pro .st-market-products-grid .st-product-title {
  min-height: 40px;
  font-size: 13px;
  line-height: 1.45;
}

[data-theme-renderer="catalog-market-pro"] .st-market-products-grid .st-product-prices,
.store-theme-catalog-market-pro .st-market-products-grid .st-product-prices {
  min-height: 26px;
}

[data-theme-renderer="catalog-market-pro"] .st-market-products-grid .st-product-buy-btn,
.store-theme-catalog-market-pro .st-market-products-grid .st-product-buy-btn {
  min-height: 36px;
  padding-block: 8px;
}

[data-theme-renderer="catalog-market-pro"] .st-market-trust-grid,
.store-theme-catalog-market-pro .st-market-trust-grid {
  gap: 10px;
}

[data-theme-renderer="catalog-market-pro"] .st-market-trust-item,
.store-theme-catalog-market-pro .st-market-trust-item {
  padding: 11px 12px;
}

[data-theme-renderer="catalog-market-pro"] .st-market-footer,
.store-theme-catalog-market-pro .st-market-footer {
  padding-block: 30px 20px;
}

/* ── Desktop: heading + filter bar on the same row ─────────────────────── */
@media (min-width: 760px) {
  [data-theme-renderer="catalog-market-pro"] .st-market-products .st-market-section-head,
  .store-theme-catalog-market-pro .st-market-products .st-market-section-head {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 16px;
  }

  [data-theme-renderer="catalog-market-pro"] .st-market-products .st-market-kicker,
  .store-theme-catalog-market-pro .st-market-products .st-market-kicker {
    /* Kicker sits above the title within .st-market-section-head text block */
    flex-basis: 100%;
    margin-bottom: 0;
  }

  [data-theme-renderer="catalog-market-pro"] .st-market-products .st-market-section-title,
  .store-theme-catalog-market-pro .st-market-products .st-market-section-title {
    /* Title takes left portion */
    flex: 0 0 auto;
  }

  [data-theme-renderer="catalog-market-pro"] .st-market-products .st-category-filter-bar,
  .store-theme-catalog-market-pro .st-market-products .st-category-filter-bar {
    /* Filters occupy remaining space on the right */
    flex: 1 1 auto;
    justify-content: flex-end;
    margin-top: 0;
  }
}

/* ── Tighter section separators (reduce visual gap between sections) ────── */
[data-theme-renderer="catalog-market-pro"] .st-market-hero,
.store-theme-catalog-market-pro .st-market-hero {
  border-bottom-color: var(--theme-border, #d8e1ec);
}

[data-theme-renderer="catalog-market-pro"] .st-market-categories,
.store-theme-catalog-market-pro .st-market-categories {
  border-bottom: 1px solid var(--theme-border, #d8e1ec);
}

/* ── 1024px refinement: slightly denser on large tablets ───────────────── */
@media (min-width: 1024px) {
  [data-theme-renderer="catalog-market-pro"] .st-market-hero,
  .store-theme-catalog-market-pro .st-market-hero {
    padding-block: 32px 36px;
  }

  [data-theme-renderer="catalog-market-pro"] .st-market-categories,
  .store-theme-catalog-market-pro .st-market-categories {
    padding-block: 28px 32px;
  }

  [data-theme-renderer="catalog-market-pro"] .st-market-products,
  .store-theme-catalog-market-pro .st-market-products {
    padding-block: 30px 34px;
  }
}

@media (max-width: 960px) {
  [data-theme-renderer="catalog-market-pro"] .st-market-hero,
  .store-theme-catalog-market-pro .st-market-hero {
    padding-block: 26px 30px;
  }

  [data-theme-renderer="catalog-market-pro"] .st-market-categories,
  .store-theme-catalog-market-pro .st-market-categories,
  [data-theme-renderer="catalog-market-pro"] .st-market-products,
  .store-theme-catalog-market-pro .st-market-products {
    padding-block: 24px 28px;
  }
}

@media (max-width: 640px) {
  [data-theme-renderer="catalog-market-pro"] .st-market-section-head,
  .store-theme-catalog-market-pro .st-market-section-head {
    margin-bottom: 14px;
  }

  [data-theme-renderer="catalog-market-pro"] .st-market-products .st-category-filter-bar,
  .store-theme-catalog-market-pro .st-market-products .st-category-filter-bar {
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 4px;
    scrollbar-width: thin;
  }

  [data-theme-renderer="catalog-market-pro"] .st-market-products .st-cat-filter-btn,
  .store-theme-catalog-market-pro .st-market-products .st-cat-filter-btn {
    flex: 0 0 auto;
    white-space: nowrap;
  }
}
