/* ============================================================
   PAVI'S LAB — pages/budget-picks.css
   Budget Friendly Picks page — price-range segments
   ============================================================ */

.bp-page {
  min-height: calc(100vh - 80px);
  padding: 32px 0 80px;
}

.bp-subtitle {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.75);
  text-align: center;
  margin-bottom: 40px;
  margin-top: -16px;
}

/* Price range segment */
.bp-segment {
  margin-bottom: 52px;
}

.bp-segment-hdr {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

.bp-segment-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(255, 0, 127, 0.35), transparent);
}

.bp-segment-label {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 18px;
  background: rgba(255, 0, 127, 0.1);
  border: 1px solid rgba(255, 0, 127, 0.3);
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  color: var(--pink);
  white-space: nowrap;
}

.bp-segment-label .bp-emoji {
  font-size: 15px;
}

/* Use the same prod-grid from products.css */
.bp-segment .prod-grid {
  grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 1024px) {
  .bp-segment .prod-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .bp-subtitle { font-size: 13px; margin-bottom: 28px; }
  .bp-segment  { margin-bottom: 36px; }
  .bp-segment .prod-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .bp-segment-label { font-size: 11px; padding: 5px 14px; }
}

@media (max-width: 480px) {
  .bp-segment .prod-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
}

/* ============================================================
   PAVI'S SPARKLES — light theme overrides
   ============================================================ */
[data-theme="sparkles"] .bp-subtitle { color: rgba(61,26,46,0.75); }

/* ============================================================
   PAVI'S SPARKLES — light theme overrides
   ============================================================ */
[data-theme="sparkles"] .bp-subtitle { color: rgba(61,26,46,0.75); }
