/* ─── Products listing page (commercial + responsive) ─── */

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Hero — clean white commercial layout (marketplace-style) */
.sp-hero {
  position: relative;
  overflow: hidden;
  margin-bottom: 1.25rem;
  background: #fff;
  border-bottom: 1px solid var(--ax-border, #e2e8f0);
}

/* Subtle brand wash so the white hero still feels designed */
.sp-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 70% at 92% 15%, rgba(10, 36, 114, 0.05) 0%, transparent 55%),
    radial-gradient(ellipse 40% 55% at 4% 92%, rgba(230, 57, 70, 0.04) 0%, transparent 55%);
  pointer-events: none;
}

/* Background image + overlay only render when a seller uploads a hero image */
.sp-hero__bg,
.sp-hero__overlay { display: none; }

.sp-hero--has-bg { background: var(--commerce-navy, #0A2472); }
.sp-hero--has-bg::before { display: none; }

.sp-hero--has-bg .sp-hero__bg {
  display: block;
  position: absolute;
  inset: 0;
  background-color: var(--commerce-navy, #0A2472);
  background-image: var(--sp-hero-bg);
  background-size: cover;
  background-position: center;
  transform: scale(1.03);
  transition: transform 8s ease-out;
}

.sp-hero--has-bg .sp-hero__overlay {
  display: block;
  position: absolute;
  inset: 0;
  background:
    linear-gradient(100deg, rgba(7, 26, 94, 0.92) 0%, rgba(10, 36, 114, 0.82) 45%, rgba(230, 57, 70, 0.28) 100%),
    linear-gradient(to top, rgba(7, 26, 94, 0.45) 0%, transparent 50%);
}

.sp-hero__inner {
  position: relative;
  z-index: 1;
  max-width: var(--ax-max);
  margin: 0 auto;
  padding: clamp(1.5rem, 4vw, 2.5rem) 1rem;
  color: var(--ax-text, #0f172a);
}

.sp-hero__grid {
  display: grid;
  grid-template-columns: 1fr minmax(220px, 300px);
  gap: clamp(1.5rem, 4vw, 2.5rem);
  align-items: center;
}

.sp-hero__copy {
  text-align: left;
}

.sp-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  margin-bottom: 0.85rem;
}

.sp-breadcrumb a {
  color: var(--commerce-navy, #0A2472);
  text-decoration: none;
  font-weight: 600;
}

.sp-breadcrumb a:hover { text-decoration: underline; }

.sp-breadcrumb__current { color: var(--ax-muted, #64748b); }

.sp-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--commerce-coral, #E63946);
  margin-bottom: 0.65rem;
}

.sp-hero__title {
  font-size: clamp(1.6rem, 4.5vw, 2.6rem);
  font-weight: 800;
  line-height: 1.12;
  margin-bottom: 0.65rem;
  color: var(--commerce-navy, #0A2472);
  letter-spacing: -0.02em;
}

.sp-hero__subtitle {
  max-width: 520px;
  margin-bottom: 1.15rem;
  font-size: clamp(0.9rem, 1.8vw, 1.02rem);
  color: var(--ax-muted, #475569);
  line-height: 1.55;
}

.sp-hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-bottom: 1.15rem;
}

.sp-hero__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.65rem 1.2rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.15s, transform 0.15s, border-color 0.15s;
}

.sp-hero__btn--solid {
  background: linear-gradient(135deg, var(--commerce-coral, #E63946), var(--commerce-coral-dark, #c72535));
  color: #fff;
  box-shadow: 0 6px 20px rgba(230, 57, 70, 0.32);
}

.sp-hero__btn--solid:hover {
  background: linear-gradient(135deg, #ff4d5a, var(--commerce-coral-dark, #c72535));
  color: #fff;
  transform: translateY(-1px);
}

.sp-hero__btn--ghost {
  background: #fff;
  color: var(--commerce-navy, #0A2472);
  border: 1.5px solid var(--ax-border, #e2e8f0);
}

.sp-hero__btn--ghost:hover {
  background: #f8fafc;
  border-color: var(--commerce-navy, #0A2472);
  color: var(--commerce-navy, #0A2472);
}

.sp-hero__trust {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1.1rem;
}

.sp-hero__trust li {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--ax-muted, #475569);
}

.sp-hero__trust i {
  color: #f59e0b;
}

.sp-hero__panel {
  background: #fff;
  border: 1px solid var(--ax-border, #e2e8f0);
  border-radius: 20px;
  padding: 1.25rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
  box-shadow: 0 12px 32px rgba(10, 36, 114, 0.08);
}

.sp-hero__logo {
  grid-column: 1 / -1;
  display: flex;
  justify-content: center;
  margin-bottom: 0.25rem;
}

.sp-hero__logo img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  border-radius: 14px;
  background: #f8fafc;
  border: 1px solid var(--ax-border, #e2e8f0);
  padding: 0.35rem;
}

.sp-hero__stat {
  text-align: center;
  padding: 0.65rem 0.5rem;
  border-radius: 12px;
  background: #f8fafc;
  border: 1px solid var(--ax-border, #eef1f6);
}

.sp-hero__stat--muted {
  grid-column: 1 / -1;
}

.sp-hero__stat-num {
  display: block;
  font-size: 1.65rem;
  font-weight: 800;
  line-height: 1.1;
  color: var(--commerce-navy, #0A2472);
}

.sp-hero__stat-label {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--ax-muted, #94a3b8);
  margin-top: 0.2rem;
}

/* When a seller supplies a hero image, flip back to white-on-dark */
.sp-hero--has-bg .sp-hero__inner { color: #fff; }
.sp-hero--has-bg .sp-breadcrumb a { color: rgba(255, 255, 255, 0.85); }
.sp-hero--has-bg .sp-breadcrumb__current { color: rgba(255, 255, 255, 0.55); }
.sp-hero--has-bg .sp-hero__eyebrow { color: rgba(255, 255, 255, 0.75); }
.sp-hero--has-bg .sp-hero__title { color: #fff; text-shadow: 0 2px 20px rgba(0, 0, 0, 0.25); }
.sp-hero--has-bg .sp-hero__subtitle { color: rgba(255, 255, 255, 0.88); }
.sp-hero--has-bg .sp-hero__btn--ghost {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.35);
  color: #fff;
  backdrop-filter: blur(6px);
}
.sp-hero--has-bg .sp-hero__btn--ghost:hover { background: rgba(255, 255, 255, 0.18); color: #fff; }
.sp-hero--has-bg .sp-hero__trust li { color: rgba(255, 255, 255, 0.8); }
.sp-hero--has-bg .sp-hero__trust i { color: #fde68a; }
.sp-hero--has-bg .sp-hero__panel {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(12px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}
.sp-hero--has-bg .sp-hero__logo img { background: #fff; border: none; }
.sp-hero--has-bg .sp-hero__stat { background: rgba(255, 255, 255, 0.08); border: none; }
.sp-hero--has-bg .sp-hero__stat-num { color: #fff; }
.sp-hero--has-bg .sp-hero__stat-label { color: rgba(255, 255, 255, 0.65); }

/* AJAX loading */
.sp-results-root {
  position: relative;
  min-height: 200px;
}

.sp-results-root.is-loading #product-grid {
  opacity: 0.45;
  pointer-events: none;
}

.sp-results-loading {
  position: absolute;
  top: 0.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 1rem;
  border-radius: 999px;
  background: var(--ax-white);
  border: 1px solid var(--ax-border);
  box-shadow: var(--ax-shadow);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--commerce-navy, #0A2472);
}

.sp-results-loading[hidden] {
  display: none !important;
}

/* Layout */
body.ax-storefront .shop-layout {
  max-width: var(--ax-max);
  margin: 0 auto 2.5rem;
  padding: 0 1rem;
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 1.25rem;
  align-items: start;
}

body.ax-storefront .shop-layout > .sp-main {
  min-width: 0;
}

/* Sidebar */
.sp-sidebar {
  background: var(--ax-white);
  border: 1px solid var(--ax-border);
  border-radius: var(--ax-radius-lg);
  box-shadow: var(--ax-shadow);
  padding: 1rem;
  position: sticky;
  top: 1rem;
  max-height: calc(100vh - 2rem);
  overflow-y: auto;
}

.sp-sidebar__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.75rem;
  padding-bottom: 0.65rem;
  border-bottom: 1px solid var(--ax-border);
}

.sp-sidebar__head h2 {
  font-size: 1rem;
  font-weight: 800;
  margin: 0;
  color: var(--ax-text);
}

.sp-sidebar__close {
  display: none;
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 50%;
  background: #f1f5f9;
  color: var(--ax-text);
  cursor: pointer;
}

.sp-sidebar__section {
  margin-bottom: 1.15rem;
}

.sp-sidebar__section h3 {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ax-muted);
  font-weight: 700;
  margin-bottom: 0.55rem;
}

.sp-cat-list {
  list-style: none;
  margin: 0;
  padding: 0;
  max-height: 280px;
  overflow-y: auto;
  scrollbar-width: thin;
}

.sp-cat-list a {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.5rem 0.65rem;
  border-radius: 10px;
  font-size: 0.84rem;
  color: var(--ax-text);
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
}

.sp-cat-list a:hover {
  background: #eef2ff;
  color: var(--commerce-navy, #0A2472);
}

.sp-cat-list a.is-active {
  background: #eef2ff;
  color: var(--commerce-navy, #0A2472);
  font-weight: 700;
}

.sp-cat-list a i {
  width: 16px;
  font-size: 0.82rem;
  opacity: 0.85;
}

.sp-check {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  margin-bottom: 0.85rem;
  cursor: pointer;
}

.sp-price-range {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
  margin-bottom: 0.85rem;
}

.sp-field {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  font-size: 0.75rem;
  color: var(--ax-muted);
  font-weight: 600;
}

.sp-field input {
  padding: 0.5rem 0.6rem;
  border: 1px solid var(--ax-border);
  border-radius: 8px;
  font-size: 0.85rem;
  width: 100%;
}

.sp-filter-submit {
  width: 100%;
  justify-content: center;
  margin-bottom: 0.5rem;
}

.sp-clear-filters {
  display: block;
  text-align: center;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--ax-muted);
}

.sp-sidebar__help {
  background: linear-gradient(145deg, #ecfdf5, #d1fae5);
  border: 1px solid #a7f3d0;
  border-radius: 12px;
  padding: 0.85rem;
  margin-top: 0.5rem;
}

.sp-sidebar__help h4 {
  font-size: 0.88rem;
  margin-bottom: 0.25rem;
}

.sp-sidebar__help p {
  font-size: 0.78rem;
  color: var(--ax-muted);
  margin-bottom: 0.65rem;
  line-height: 1.4;
}

.sp-sidebar__help .sp-help-btn {
  display: inline-flex;
  width: 100%;
  box-sizing: border-box;
  justify-content: center;
}

/* Category chips (mobile / quick filter) */
.sp-cat-rail-wrap {
  margin-bottom: 0.85rem;
  display: none;
}

.sp-cat-rail {
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  padding: 0.15rem 0 0.35rem;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.sp-cat-rail::-webkit-scrollbar { display: none; }

.sp-cat-chip {
  flex: 0 0 auto;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  border: 1px solid var(--ax-border);
  background: var(--ax-white);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--ax-text);
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
}

.sp-cat-chip.is-active,
.sp-cat-chip:hover {
  background: #eef2ff;
  border-color: var(--commerce-navy, #0A2472);
  color: var(--commerce-navy, #0A2472);
}

/* Toolbar */
.sp-toolbar-wrap {
  margin-bottom: 0.85rem;
  position: sticky;
  top: 0;
  z-index: 20;
  padding: 0.35rem 0;
  background: var(--ax-bg);
}

.sp-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  align-items: center;
  padding: 0.75rem;
  background: var(--ax-white);
  border: 1px solid var(--ax-border);
  border-radius: 14px;
  box-shadow: var(--ax-shadow);
}

.sp-search {
  flex: 1;
  min-width: 160px;
  position: relative;
}

.sp-search i {
  position: absolute;
  left: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  color: #94a3b8;
  pointer-events: none;
}

.sp-search input {
  width: 100%;
  padding: 0.6rem 0.75rem 0.6rem 2.15rem;
  border: 1px solid var(--ax-border);
  border-radius: 10px;
  font-size: 0.88rem;
  background: #f8fafc;
  color: var(--ax-text, #0f172a);
  caret-color: var(--commerce-navy, #0A2472);
  cursor: text;
  transition: border-color 0.15s, box-shadow 0.15s;
}

.sp-search input:focus {
  outline: none;
  border-color: var(--commerce-navy, #0A2472);
  box-shadow: 0 0 0 3px rgba(10, 36, 114, 0.12);
  background: #fff;
}

.sp-toolbar__actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.sp-sort select {
  padding: 0.55rem 2rem 0.55rem 0.75rem;
  border: 1px solid var(--ax-border);
  border-radius: 10px;
  font-size: 0.82rem;
  font-weight: 600;
  background: #fff;
  color: var(--ax-text);
  cursor: pointer;
}

.sp-filter-toggle {
  display: none;
  align-items: center;
  gap: 0.4rem;
  padding: 0.55rem 0.85rem;
  border: 1px solid var(--ax-border);
  border-radius: 10px;
  background: #fff;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--ax-text);
  cursor: pointer;
}

.sp-search-btn {
  display: none;
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 10px;
  background: var(--commerce-coral, #E63946);
  color: #fff;
  cursor: pointer;
}

/* Active filter tags */
.sp-active-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 0.75rem;
}

.sp-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
  background: var(--ax-purple-soft);
  color: var(--ax-brand);
  font-size: 0.75rem;
  font-weight: 600;
  text-decoration: none;
}

.sp-tag i { font-size: 0.65rem; opacity: 0.8; }

.sp-results-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
  font-size: 0.84rem;
  color: var(--ax-muted);
}

.sp-results-bar strong { color: var(--ax-text); }

.sp-page-indicator {
  font-size: 0.78rem;
  font-weight: 600;
}

/* Product grid */
body.ax-storefront .sp-product-grid.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

/* Product cards */
.sp-product-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.sp-product-card__media {
  display: block;
  text-decoration: none;
  color: inherit;
}

.sp-product-card .product-image {
  position: relative;
  overflow: hidden;
}

.sp-product-card .product-image img {
  transition: transform 0.35s ease;
}

.sp-product-card:hover .product-image img {
  transform: scale(1.05);
}

.sp-badge {
  position: absolute;
  top: 8px;
  left: 8px;
  padding: 0.2rem 0.55rem;
  border-radius: 6px;
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  z-index: 2;
}

.sp-badge--sale { background: #f59e0b; color: #fff; }
.sp-badge--muted { background: #64748b; color: #fff; }
.sp-badge--featured { background: var(--ax-brand); color: #fff; }

.sp-product-card__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(30, 27, 75, 0.45);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  opacity: 0;
  transition: opacity 0.25s;
}

.sp-product-card:hover .sp-product-card__overlay { opacity: 1; }

.sp-product-card__cat {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--ax-muted);
  margin-bottom: 0.25rem;
}

.sp-product-card .product-title {
  margin-bottom: 0.4rem;
  min-height: 2.5em;
}

.sp-product-card .product-title a {
  color: var(--ax-text);
  text-decoration: none;
  transition: color 0.15s;
}

.sp-product-card .product-title a:hover { color: var(--ax-brand); }

.sp-product-card__price {
  display: flex;
  align-items: baseline;
  gap: 0.45rem;
  margin-bottom: 0.65rem;
}

.sp-price-current {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--commerce-coral, #E63946);
}

.sp-price-was {
  font-size: 0.82rem;
  color: #94a3b8;
  text-decoration: line-through;
  font-weight: 600;
}

.sp-product-card__actions {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-top: auto;
}

.sp-product-card .product-info {
  display: flex;
  flex-direction: column;
  flex: 1;
}

/* Empty state */
.sp-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: clamp(2rem, 6vw, 3.5rem);
  background: var(--ax-white);
  border: 1px dashed var(--ax-border);
  border-radius: var(--ax-radius-lg);
}

.sp-empty__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  background: #f1f5f9;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #94a3b8;
}

.sp-empty h3 {
  font-size: 1.15rem;
  margin-bottom: 0.35rem;
}

.sp-empty p {
  color: var(--ax-muted);
  margin-bottom: 1rem;
}

/* Pagination */
.sp-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.75rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.sp-page-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.55rem 1rem;
  border-radius: 10px;
  border: 1px solid var(--ax-border);
  background: var(--ax-white);
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--ax-text);
  text-decoration: none;
  transition: background 0.15s, border-color 0.15s;
}

.sp-page-btn:hover:not(.is-disabled) {
  background: var(--ax-purple-soft);
  border-color: var(--ax-brand);
  color: var(--ax-brand);
}

.sp-page-btn.is-disabled {
  opacity: 0.45;
  cursor: default;
}

.sp-page-status {
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--ax-muted);
  padding: 0 0.5rem;
}

/* Mobile filter drawer */
.sp-filter-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.45);
  z-index: 90;
  backdrop-filter: blur(2px);
}

body.sp-filters-open { overflow: hidden; }

/* ─── Responsive ─── */
@media (max-width: 1100px) {
  body.ax-storefront .sp-product-grid.product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .sp-hero__grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .sp-hero__copy { text-align: center; }

  .sp-hero__subtitle { margin-left: auto; margin-right: auto; }

  .sp-hero__cta { justify-content: center; }

  .sp-hero__trust { justify-content: center; }

  .sp-hero__panel {
    max-width: 360px;
    margin: 0 auto;
  }

  body.ax-storefront .shop-layout {
    grid-template-columns: 1fr;
  }

  .sp-sidebar {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: min(320px, 88vw);
    max-height: none;
    z-index: 100;
    border-radius: 0;
    transform: translateX(-105%);
    transition: transform 0.28s ease;
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.15);
  }

  .sp-sidebar.is-open { transform: translateX(0); }

  .sp-sidebar__close { display: flex; align-items: center; justify-content: center; }

  .sp-cat-rail-wrap { display: block; }

  .sp-filter-toggle,
  .sp-search-btn { display: inline-flex; align-items: center; justify-content: center; }

  .sp-sort select { max-width: 140px; }

  body.ax-storefront .sp-product-grid.product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
  }

  .sp-product-card .product-title { min-height: auto; }
}

@media (max-width: 520px) {
  body.ax-storefront .sp-product-grid.product-grid {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }

  .sp-toolbar {
    padding: 0.65rem;
  }

  .sp-search { min-width: 100%; order: 1; }

  .sp-toolbar__actions {
    width: 100%;
    order: 2;
    justify-content: space-between;
  }

  .sp-sort { flex: 1; }

  .sp-sort select { width: 100%; max-width: none; }

  .sp-hero__inner { padding-top: 1.5rem; padding-bottom: 1.5rem; }
}

@media (min-width: 901px) {
  .sp-cat-rail-wrap { display: none; }
}
