.page-ready .page-hero {
  background:
    radial-gradient(circle at 85% 10%, rgba(0, 174, 239, 0.14), transparent 32%),
    radial-gradient(circle at 10% 5%, rgba(245, 130, 31, 0.16), transparent 30%),
    linear-gradient(180deg, #fff8ed, rgba(255, 255, 255, 0));
  border-bottom: 0;
}

.page-ready {
  overflow-x: clip;
}

.page-ready .ready-stock-section {
  background: #f7f4ee;
  overflow-x: clip;
  max-width: 100%;
}

.page-ready .ready-stock-section .container {
  min-width: 0;
  max-width: 100%;
  overflow-x: clip;
}

.page-ready .ready-stock-filters {
  display: grid;
  gap: 16px;
  margin-bottom: 26px;
  min-width: 0;
  max-width: 100%;
}

.page-ready .ready-stock-search .search-box {
  width: 100%;
  max-width: 100%;
}

.page-ready .filter-chip-row-label {
  font-size: 12px;
  font-weight: 800;
  color: var(--muted);
  margin-bottom: 10px;
}

.page-ready .chip-track {
  display: flex;
  gap: 8px;
  max-width: 100%;
}

.page-ready .filter-chip-row {
  min-width: 0;
  max-width: 100%;
  overflow: hidden;
}

.page-ready .chip-track--wrap {
  flex-wrap: wrap;
  overflow: hidden;
  padding: 0;
}

.page-ready .filter-chip-row--scroll {
  position: relative;
  overflow: hidden;
}

.page-ready .chip-track--scroll {
  flex-wrap: nowrap;
  overflow-x: auto;
  overflow-y: hidden;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  padding: 2px 0 10px;
  margin: 0;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
  scroll-snap-type: x proximity;
  scrollbar-width: thin;
  scrollbar-color: rgba(0, 66, 138, 0.35) transparent;
  cursor: grab;
}

.page-ready .chip-track--scroll.is-dragging {
  cursor: grabbing;
  scroll-snap-type: none;
  user-select: none;
}

.page-ready .chip-track--scroll::-webkit-scrollbar {
  display: block;
  height: 6px;
}

.page-ready .chip-track--scroll::-webkit-scrollbar-thumb {
  background: rgba(0, 66, 138, 0.28);
  border-radius: 999px;
}

.page-ready .filter-chip-row--scroll::after {
  content: "";
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 24px;
  width: 36px;
  height: 44px;
  background: linear-gradient(90deg, rgba(247, 244, 238, 0), #f7f4ee 70%);
}

.page-ready .chip-track .chip,
.page-ready .chip-track .color-dot {
  flex: 0 0 auto;
  margin: 0;
  white-space: nowrap;
}

.page-ready .chip-track .chip {
  font-size: 13px;
  padding: 9px 14px;
  border-radius: 999px;
  border: 1px solid rgba(18, 24, 38, 0.12);
  background: #fff;
  font-weight: 700;
  color: #475569;
  cursor: pointer;
}

.page-ready .chip-track .chip.is-active {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}

.page-ready .chip-track .color-dot {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  border: 3px solid #fff;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.08);
  background: var(--swatch);
  cursor: pointer;
  padding: 0;
}

.page-ready .chip-track .color-dot.is-active {
  outline: 2px solid var(--navy);
  outline-offset: 2px;
}

.page-ready .chip-track .chip.is-active,
.page-ready .chip-track .color-dot.is-active {
  box-shadow: 0 0 0 2px rgba(0, 66, 138, 0.15);
}

.page-ready .ready-stock-result {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
  color: var(--muted);
}

.page-ready .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;
}

.catalog-grid.ready-stock-grid {
  gap: 22px;
  min-width: 0;
  max-width: 100%;
}

@media (max-width: 768px) {
  .page-ready .chip-track--scroll {
    flex-wrap: wrap;
    overflow-x: hidden;
    overflow-y: visible;
    cursor: default;
    padding-bottom: 0;
  }

  .page-ready .chip-track--scroll::-webkit-scrollbar {
    display: none;
  }

  .page-ready .filter-chip-row--scroll::after {
    display: none;
  }

  .page-ready .chip-track .chip {
    font-size: 12px;
    padding: 8px 12px;
  }

  .ready-stock-card {
    border-radius: 18px;
  }

  .ready-stock-card .card-image-link {
    border-radius: 18px 18px 0 0;
  }

  .ready-stock-card .product-body {
    padding: 10px 11px 12px;
  }

  .ready-stock-card .product-meta {
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
    gap: 6px;
    margin-bottom: 6px;
  }

  .ready-stock-card .product-meta .pill {
    font-size: 9px;
    padding: 4px 7px;
  }

  .ready-stock-card .price {
    font-size: 14px;
  }

  .ready-stock-card h3 {
    font-size: 13px;
    line-height: 1.25;
    margin: 0 0 4px;
  }

  .ready-stock-card .card-excerpt {
    font-size: 10px;
    line-height: 1.35;
    margin: 0 0 6px;
    -webkit-line-clamp: 1;
  }

  .ready-stock-card .palette {
    flex-wrap: nowrap;
    gap: 4px;
    margin-bottom: 5px;
    min-height: 0;
    overflow: hidden;
  }

  .ready-stock-card .palette span {
    width: 14px;
    height: 14px;
    flex: 0 0 14px;
    border-width: 2px;
  }

  .ready-stock-card .card-categories {
    flex-wrap: nowrap;
    gap: 5px;
    margin-bottom: 8px;
    overflow: hidden;
    max-width: 100%;
  }

  .ready-stock-card .card-categories span {
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 0.04em;
    white-space: nowrap;
    flex-shrink: 0;
  }

  .ready-stock-card .card-categories span + span::before {
    content: "·";
    margin-right: 5px;
    opacity: 0.65;
  }

  .ready-stock-card .btn-block {
    font-size: 11px;
    padding: 9px 10px;
    min-height: 0;
  }

  .ready-stock-card .card-image-link,
  .ready-stock-card .product-thumb,
  .ready-stock-card .catalog-frame-shell {
    max-width: 100%;
  }
}

.ready-stock-card.is-filter-hidden {
  display: none !important;
}

.ready-stock-card {
  min-width: 0;
  max-width: 100%;
  background: #fffaf3;
  border: 1px solid rgba(18, 24, 38, 0.12);
  border-radius: 28px;
  box-shadow: 0 18px 48px rgba(15, 23, 42, 0.06);
  transition: 0.2s transform, 0.2s box-shadow;
}

.ready-stock-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 70px rgba(11, 31, 58, 0.12);
}

.ready-stock-card .card-image-link {
  display: block;
  overflow: hidden;
  border-radius: 28px 28px 0 0;
  background: #e5e7eb;
}

.ready-stock-card .product-thumb {
  aspect-ratio: 4 / 3;
  background: #eef2f4;
}

.ready-stock-card .product-body {
  padding: 20px 20px 22px;
}

.ready-stock-card .product-meta {
  margin-bottom: 10px;
}

.ready-stock-card h3 {
  font-size: 22px;
  line-height: 1.14;
  margin: 0 0 8px;
  letter-spacing: -0.02em;
}

.ready-stock-card h3 a:hover {
  color: var(--navy);
}

.ready-stock-card .card-excerpt {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.ready-stock-card .palette {
  display: flex;
  align-items: center;
  gap: 7px;
  flex-wrap: wrap;
  margin-bottom: 10px;
  min-height: 28px;
}

.ready-stock-card .card-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 10px;
}

.ready-stock-card .card-categories span {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #f5821f;
}

.ready-stock-card .palette span {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: var(--swatch);
  border: 3px solid #fff;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.08);
}

.ready-stock-card .price {
  font-size: 18px;
}
