
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* ━━ HERO + PICKER ━━ */
.hero {
  position: relative;
  background:
    radial-gradient(ellipse at 20% 30%, rgba(31, 207, 201, 0.08) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 70%, rgba(229, 168, 58, 0.10) 0%, transparent 55%),
    linear-gradient(180deg, var(--navy-deep, #050E1F) 0%, var(--navy) 100%);
  color: var(--text-on-navy, var(--border-soft));
  padding: 56px 0 80px;
  overflow: clip; /* overflow:clip clips decorative bg but allows positioned dropdowns to escape — unlike overflow:hidden which blocks native <select> popups */
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(45deg, rgba(255,255,255,0.015) 0 1px, transparent 1px 60px),
    repeating-linear-gradient(-45deg, rgba(255,255,255,0.015) 0 1px, transparent 1px 60px);
  pointer-events: none;
}
.hero-content { position: relative; z-index: 1; text-align: center; }

.breadcrumb {
  display: flex; gap: 8px; align-items: center;
  font-size: 13px; color: var(--text-muted);
  margin-bottom: 28px;
  justify-content: center;
  background: none; padding: 0;
}
.breadcrumb a { color: var(--text-muted); text-decoration: none; }
.breadcrumb a:hover { color: var(--teal-bright, var(--teal-light)); }
.breadcrumb-sep { opacity: 0.4; }

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(229, 168, 58, 0.12);
  border: 1px solid rgba(229, 168, 58, 0.3);
  color: var(--gold-light);
  padding: 6px 14px; border-radius: 999px;
  font-size: 12px; font-weight: 800; letter-spacing: 0.05em;
  margin-bottom: 16px;
}
.hero h1 {
  font-size: clamp(28px, 4vw, 44px); font-weight: 800;
  line-height: 1.2; color: var(--text-on-navy, #fff); margin-bottom: 14px;
}
.hero h1 strong { color: var(--gold-light); font-weight: 800; }
.hero-subtitle {
  font-size: clamp(15px, 1.5vw, 17px); color: var(--text-muted);
  max-width: 720px; margin: 0 auto 40px;
}

/* ━━ PICKER ━━ */
.picker {
  background: linear-gradient(145deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 24px; padding: 32px;
  max-width: 880px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr auto 1fr;
  gap: 20px; align-items: center; position: relative;
  box-shadow: 0 24px 60px rgba(0,0,0,0.3);
}
.picker::before {
  content: ""; position: absolute; inset: -2px; border-radius: 26px; padding: 2px;
  background: linear-gradient(135deg, rgba(229, 168, 58, 0.4), transparent 50%, rgba(31, 207, 201, 0.3));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude; pointer-events: none;
}
.picker-slot {
  background: rgba(0,0,0,0.25); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px; padding: 18px; cursor: pointer; transition: all 0.2s; text-align: start;
  position: relative;
}
.picker-slot select { display: none; }
.picker-slot:hover { background: rgba(0,0,0,0.35); border-color: rgba(31, 207, 201, 0.4); }

/* ━━ CUSTOM DROPDOWN ━━ */
.picker-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  right: 0; left: 0;
  z-index: 200;
  background: var(--navy, #152D50);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 14px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  overflow: hidden;
  min-width: 260px;
}
.picker-dropdown.is-open { display: block; }
.picker-search-wrap {
  padding: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.picker-search {
  width: 100%;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  padding: 8px 12px;
  color: #fff;
  font-size: 13px;
  font-family: var(--font, inherit);
  outline: none;
  box-sizing: border-box;
}
.picker-search::placeholder { color: rgba(255,255,255,0.35); }
.picker-search:focus { border-color: var(--teal-light, #1fcfc9); }
.picker-options {
  max-height: 260px;
  overflow-y: auto;
  padding: 6px 0;
}
.picker-options::-webkit-scrollbar { width: 4px; }
.picker-options::-webkit-scrollbar-track { background: transparent; }
.picker-options::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.15); border-radius: 2px; }
.picker-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 14px;
  cursor: pointer;
  transition: background 0.15s;
  font-size: 14px;
  color: rgba(255,255,255,0.88);
  font-family: var(--font, inherit);
}
.picker-option:hover,
.picker-option.is-active { background: rgba(31, 207, 201, 0.12); color: #fff; }
.picker-option-logo {
  width: 32px; height: 32px;
  border-radius: 8px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
  object-fit: contain;
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 700; color: var(--gold-light, #E5A83A);
  overflow: hidden;
}
.picker-option-logo img { width: 100%; height: 100%; object-fit: contain; display: block; }
.picker-option-name { font-weight: 700; line-height: 1.2; }
.picker-slot.has-value { background: rgba(31, 207, 201, 0.08); border-color: var(--teal-light); }
.picker-label {
  font-size: 11px; color: var(--text-muted); text-transform: uppercase;
  letter-spacing: 0.08em; font-weight: 800; margin-bottom: 10px;
}
.picker-broker-display { display: flex; align-items: center; gap: 12px; }
.picker-logo {
  width: 48px; height: 48px; background: var(--navy); color: var(--gold-light);
  border-radius: 12px; display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 13px; flex-shrink: 0;
}
.picker-logo.is-empty {
  background: rgba(255,255,255,0.05); border: 1.5px dashed rgba(255,255,255,0.2);
  color: var(--text-muted); font-size: 22px;
}
.picker-broker-name { font-size: 18px; font-weight: 800; color: var(--text-on-navy, #fff); line-height: 1.2; margin-bottom: 2px; }
.picker-broker-meta { font-size: 11px; color: var(--text-muted); }
.picker-placeholder { font-size: 14px; color: var(--text-muted); font-weight: 700; }
.picker-vs { display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 12px; padding: 0 4px; }
.picker-vs-badge {
  width: 70px; height: 70px;
  background: radial-gradient(circle, var(--gold-light) 0%, var(--gold) 100%);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 22px; font-weight: 800; color: var(--navy-deep, #050E1F);
  font-style: italic; letter-spacing: -0.02em;
  box-shadow: 0 0 0 4px rgba(229, 168, 58, 0.15), 0 0 40px rgba(229, 168, 58, 0.4);
}
.picker-cta { grid-column: 1 / -1; display: flex; justify-content: center; margin-top: 12px; }
.btn-compare {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--navy-deep, #050E1F); padding: 16px 48px; border-radius: 12px;
  font-weight: 800; font-size: 16px; border: none; cursor: pointer; font-family: inherit;
  display: inline-flex; align-items: center; gap: 10px; transition: all 0.2s;
  box-shadow: 0 8px 24px rgba(229, 168, 58, 0.35); text-decoration: none;
}
.btn-compare:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(229, 168, 58, 0.5); }
.btn-compare:disabled {
  background: rgba(255,255,255,0.08); color: var(--text-muted);
  cursor: not-allowed; box-shadow: none; transform: none;
}
@media (max-width: 768px) {
  .picker { grid-template-columns: 1fr auto 1fr; gap: 8px; padding: 16px; }
  .picker-slot { padding: 12px; }
  .picker-vs { padding: 0; }
  .picker-vs-badge { width: 40px; height: 40px; font-size: 14px; }
  .picker-label { font-size: 9px; margin-bottom: 6px; }
  .picker-broker-display { display: none; }
  /* On mobile: use native select (better UX on touch) */
  .picker-slot select { display: block; width: 100%; height: auto; padding: 10px; background: rgba(255,255,255,0.08); color: var(--text-on-navy, #fff); border: 1px solid rgba(255,255,255,0.15); border-radius: 8px; font-family: var(--font); cursor: pointer; font-size: 14px; }
  .picker-slot select option { background: var(--navy, #152D50); color: #fff; }
  .picker-dropdown { display: none !important; }
  .picker-cta { grid-column: 1 / -1; }
}
.hero-stats-bar {
  display: flex; justify-content: center; gap: 32px; margin-top: 32px; flex-wrap: wrap;
  font-size: 13px; color: var(--text-muted);
}
.hero-stat-inline { display: inline-flex; align-items: center; gap: 8px; }
.hero-stat-inline strong { color: var(--gold-light); font-feature-settings: "tnum"; font-weight: 800; font-size: 16px; }

/* ━━ SECTION HEADERS ━━ */
section { margin-bottom: 64px; }
.section-header { margin-bottom: 28px; display: flex; align-items: end; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.section-title {
  font-size: clamp(22px, 2.4vw, 28px); font-weight: 800; color: var(--navy);
  position: relative; padding-inline-start: 16px; display: inline-block;
}
.section-title::before {
  content: ""; position: absolute; inset-inline-start: 0; top: 6px; bottom: 6px;
  width: 4px; background: var(--teal); border-radius: 2px;
}
.section-subtitle { font-size: 14px; color: var(--text-muted); margin-top: 8px; }

/* ━━ TRENDING MATCHUPS ━━ */
.matchups-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(min(280px, 100%), 1fr)); gap: 16px; }
.matchup-card {
  background: var(--bg-card, #fff); border: 1px solid var(--border);
  border-radius: 16px; padding: 22px; text-decoration: none; color: var(--text);
  display: flex; align-items: center; gap: 16px; transition: all 0.2s; position: relative; overflow: hidden;
}
.matchup-card::before { content: ""; position: absolute; top: 0; right: 0; bottom: 0; width: 3px; background: var(--text-muted); transition: background 0.2s; }
.matchup-card:hover { transform: translateY(-2px); box-shadow: 0 4px 14px rgba(11,31,58,0.08); border-color: var(--border-strong, #B8C6DA); }
.matchup-card:hover::before { background: var(--gold); }
.matchup-logos { display: flex; align-items: center; flex-shrink: 0; }
.matchup-logo {
  width: 48px; height: 48px; background: var(--navy); color: var(--gold-light);
  border-radius: 12px; display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 13px; border: 2px solid #fff; position: relative; z-index: 1;
}
.matchup-logo + .matchup-logo { margin-inline-start: -16px; z-index: 2; }
.matchup-info { flex: 1; min-width: 0; }
.matchup-title { font-size: 16px; font-weight: 800; color: var(--navy); margin-bottom: 4px; line-height: 1.3; }
.matchup-meta { display: flex; align-items: center; gap: 12px; font-size: 11px; color: var(--text-muted); }
.matchup-meta-item { display: inline-flex; align-items: center; gap: 4px; }
.matchup-arrow { font-size: 20px; color: var(--teal); font-weight: 800; transition: transform 0.2s; flex-shrink: 0; }
.matchup-card:hover .matchup-arrow { transform: translateX(-4px); }

/* ━━ USE CASE BUNDLES ━━ */
.bundles-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(min(280px, 100%), 1fr)); gap: 20px; }
.bundle-card {
  background: var(--bg-card, #fff); border: 1px solid var(--border);
  border-radius: 16px; padding: 28px; position: relative; overflow: hidden;
  transition: all 0.2s; text-decoration: none; color: var(--text); display: block;
}
.bundle-card:hover { transform: translateY(-3px); box-shadow: 0 16px 40px rgba(11,31,58,0.16); border-color: var(--teal-light); }
.bundle-icon-wrap {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--teal-bg); color: var(--teal);
  padding: 8px 14px; border-radius: 999px; font-size: 12px; font-weight: 800; margin-bottom: 18px;
}
.bundle-icon { font-size: 16px; }
.bundle-title { font-size: 19px; font-weight: 800; color: var(--navy); margin-bottom: 12px; line-height: 1.35; }
.bundle-vs-row {
  display: grid; grid-template-columns: 1fr auto 1fr; gap: 12px; align-items: center;
  background: var(--bg); border-radius: 10px; padding: 14px; margin-bottom: 16px;
}
.bundle-broker { text-align: center; }
.bundle-broker-logo {
  width: 44px; height: 44px; background: var(--navy); color: var(--gold-light);
  border-radius: 10px; display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 12px; margin: 0 auto 6px;
}
.bundle-broker-name { font-size: 13px; font-weight: 800; color: var(--navy); }
.bundle-vs-mini {
  width: 32px; height: 32px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--navy-deep, #050E1F); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 800; font-style: italic; flex-shrink: 0;
}
.bundle-verdict { font-size: 13px; color: var(--text-mid); line-height: 1.7; margin-bottom: 16px; }
.bundle-link { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; color: var(--teal); font-weight: 800; text-decoration: none; }

/* ━━ QUICK ADD GRID ━━ */
.quick-add-help {
  background: var(--teal-bg); border: 1px dashed var(--teal-light);
  border-radius: 10px; padding: 14px 20px; margin-bottom: 24px;
  font-size: 13px; color: var(--teal); font-weight: 700;
  display: flex; align-items: center; gap: 10px;
}
.quick-add-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 12px; }
.quick-add-item {
  background: var(--bg-card, #fff); border: 2px solid var(--border);
  border-radius: 10px; padding: 16px; display: flex; align-items: center; gap: 12px;
  cursor: pointer; transition: all 0.15s; position: relative;
}
.quick-add-item:hover { border-color: var(--teal-light); transform: translateY(-2px); }
.quick-add-item.is-selected {
  border-color: var(--gold); background: var(--gold-soft, #FFF4E0);
  box-shadow: 0 0 0 3px rgba(229, 168, 58, 0.15);
}
.qa-logo {
  width: 40px; height: 40px; background: var(--navy); color: var(--gold-light);
  border-radius: 10px; display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 11px; flex-shrink: 0;
}
.qa-info { flex: 1; min-width: 0; }
.qa-name { font-size: 14px; font-weight: 800; color: var(--navy); margin-bottom: 2px; }
.qa-rating { font-size: 11px; color: var(--text-muted); font-weight: 700; }
.qa-rating .num { color: var(--gold); font-weight: 800; }
.qa-checkmark {
  position: absolute; top: -8px; inset-inline-end: -8px;
  width: 24px; height: 24px; background: var(--gold); color: #fff; border-radius: 50%;
  display: none; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 800; box-shadow: 0 2px 8px rgba(229, 168, 58, 0.4);
}
.quick-add-item.is-selected .qa-checkmark { display: flex; }

/* ━━ FLOATING COMPARE ━━ */
.floating-compare {
  position: fixed; bottom: 24px; inset-inline-start: 50%;
  transform: translateX(50%) translateY(120%);
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--navy-deep, #050E1F); padding: 14px 24px; border-radius: 999px;
  font-weight: 800; font-size: 14px; box-shadow: 0 12px 40px rgba(229, 168, 58, 0.5);
  cursor: pointer; border: none; font-family: inherit;
  display: flex; align-items: center; gap: 10px; z-index: 100;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.floating-compare.is-visible { transform: translateX(50%) translateY(0); }
[dir="rtl"] .floating-compare { transform: translateX(-50%) translateY(120%); }
[dir="rtl"] .floating-compare.is-visible { transform: translateX(-50%) translateY(0); }
.fc-count {
  background: var(--navy-deep, #050E1F); color: var(--gold-light);
  width: 26px; height: 26px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 800;
}

/* ━━ HOW IT WORKS ━━ */
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.step-card {
  background: var(--bg-card, #fff); border: 1px solid var(--border);
  border-radius: 16px; padding: 28px; text-align: center;
}
.step-num {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--navy-deep, #050E1F); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 20px; margin: 0 auto 16px;
  box-shadow: 0 4px 16px rgba(229, 168, 58, 0.3);
}
.step-title { font-size: 17px; font-weight: 800; color: var(--navy); margin-bottom: 8px; }
.step-desc { font-size: 14px; color: var(--text-mid); line-height: 1.7; }
@media (max-width: 768px) { .steps-grid { grid-template-columns: 1fr; } }

/* ━━ FAQ ━━ */
.faq-list { display: flex; flex-direction: column; gap: 12px; max-width: 920px; }
.faq-item {
  background: var(--bg-card, #fff); border: 1px solid var(--border);
  border-radius: 10px; overflow: hidden;
}
.faq-item[open] { border-color: var(--teal-light); box-shadow: 0 4px 14px rgba(11,31,58,0.08); }
.faq-question {
  font-size: 15px; font-weight: 700; color: var(--navy);
  padding: 18px 24px; cursor: pointer;
  display: flex; align-items: center; gap: 12px; list-style: none;
}
.faq-question::-webkit-details-marker { display: none; }
.faq-question::marker { display: none; content: ''; font-size: 0; }
.faq-item > summary { list-style-type: none; }
.faq-item > summary::-webkit-details-marker { display: none; }
.faq-question::before {
  content: "+"; width: 28px; height: 28px;
  background: var(--teal-bg); color: var(--teal);
  border-radius: 8px; display: flex; align-items: center; justify-content: center;
  font-size: 20px; font-weight: 800; flex-shrink: 0;
}
.faq-item[open] .faq-question::before { content: "−"; background: var(--teal); color: #fff; }
.faq-answer { padding: 0 24px 20px 64px; color: var(--text-mid); font-size: 14px; line-height: 1.85; }

/* Compare button — replaces 220+ char inline style on stocks/compare-index.blade.php:109 */
.sci-compare-btn {
  background: linear-gradient(135deg, var(--gold-light), var(--gold, #C08A2E));
  color: var(--navy-deep, #050E1F);
  padding: 14px 40px;
  border-radius: 12px;
  font-weight: 800;
  font-size: 16px;
  border: none;
  cursor: pointer;
  font-family: inherit;
  transition: transform .15s, box-shadow .15s, opacity .15s;
  min-height: 44px;
}
.sci-compare-btn:hover:not(:disabled) { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(192, 138, 46, 0.3); }
.sci-compare-btn:focus-visible { outline: 2px solid var(--teal-light); outline-offset: 2px; }
.sci-compare-btn:disabled { opacity: .5; cursor: not-allowed; }

/* FX-03: Inline error state shown in the autocomplete dropdown when the
   /stock/autocomplete fetch fails. Matches the dropdown look so it
   doesn't feel like a page-level error, but uses the danger token so
   the user recognizes it as a problem, not a "no results" state. */
.sci-search-error {
  padding: 12px 14px;
  color: var(--danger, #d40000);
  font-size: var(--text-sm, 14px);
  font-family: inherit;
  line-height: 1.5;
  border-inline-start: 3px solid var(--danger, #d40000);
  background: color-mix(in srgb, var(--danger, #d40000) 6%, var(--bg-card, #fff));
}

/* CV-049 / DI-133: class replacements for 2 inline styles on compare_index. */
.ci-section--mt-48 { margin-top: 48px; }
.ci-ymyl-wrap { padding: 0 16px 32px; }

/* ── All Brokers Grid — /compare hub crawl enabler (P2 #9) ── */
.all-brokers-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 12px;
  margin-top: 24px;
}
/* Show first 3 rows (21 cards), hide rest until show-more clicked */
.all-brokers-grid .broker-hub-card:nth-child(n+22) { display: none; }
.all-brokers-grid.is-expanded .broker-hub-card:nth-child(n+22) { display: flex; }
.broker-hub-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 16px 12px;
  background: var(--bg-card, #fff);
  border: 1px solid var(--border, #e5e7eb);
  border-radius: 12px;
  text-decoration: none;
  color: var(--text-body, #1a2332);
  font-size: 13px;
  font-weight: 500;
  text-align: center;
  transition: border-color .18s, box-shadow .18s, transform .18s;
}
.broker-hub-card:hover {
  border-color: var(--teal);
  box-shadow: 0 4px 16px rgba(0,0,0,.08);
  transform: translateY(-2px);
  color: var(--teal);
}
.broker-hub-logo {
  width: 40px; height: 40px;
  object-fit: contain;
  border-radius: 8px;
}
.broker-hub-abbr {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  background: var(--navy); color: #fff;
  border-radius: 8px;
  font-size: 11px; font-weight: 700;
}
.broker-hub-name { line-height: 1.3; }
@media (max-width: 768px) {
  .all-brokers-grid { grid-template-columns: repeat(4, 1fr); gap: 8px; }
  /* On mobile: show first 3 rows of 4 = 12 cards */
  .all-brokers-grid .broker-hub-card:nth-child(n+13) { display: none; }
  .all-brokers-grid.is-expanded .broker-hub-card:nth-child(n+13) { display: flex; }
}
@media (max-width: 480px) {
  .all-brokers-grid { grid-template-columns: repeat(3, 1fr); gap: 8px; }
  .broker-hub-card { padding: 12px 8px; font-size: 12px; }
  /* On small mobile: show first 3 rows of 3 = 9 cards */
  .all-brokers-grid .broker-hub-card:nth-child(n+10) { display: none; }
  .all-brokers-grid.is-expanded .broker-hub-card:nth-child(n+10) { display: flex; }
}

/* Show-more / show-less buttons */
.btn-show-more-brokers,
.btn-show-more-qa {
  background: transparent;
  color: var(--teal);
  border: 1.5px solid var(--teal);
  padding: 8px 24px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background .18s, color .18s;
}
.btn-show-more-brokers:hover,
.btn-show-more-qa:hover {
  background: var(--teal);
  color: #fff;
}

/* Quick-add show-more: hide items after 10 */
.quick-add-grid .quick-add-item:nth-child(n+11) { display: none; }
.quick-add-grid.is-expanded .quick-add-item:nth-child(n+11) { display: flex; }
