    /* ==================== CHECKLIST SCREEN ==================== */
    .checklist-screen { padding-top: 0; overscroll-behavior: none; }

    .school-header {
      background: var(--school-primary);
      border-radius: 20px;
      padding: 24px 24px;
      color: var(--school-primary-text);
      text-align: center;
      margin-bottom: 20px;
      position: relative;
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .school-header::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(255,255,255,0.12) 0%, transparent 60%);
      pointer-events: none;
    }

    .school-header-content { position: relative; z-index: 1; }
    .school-header .greeting { font-size: 0.9375rem; opacity: 0.9; margin-bottom: 6px; }

    .school-header h2 {
      font-family: var(--font-serif);
      font-size: clamp(1.5rem, 4vw, 1.875rem);
      font-weight: 700;
      margin-bottom: 4px;
      line-height: 1.2;
    }

    .school-header .mascot-line { font-size: 0.9375rem; opacity: 0.85; margin-top: 8px; }
    .school-header .slogan { font-size: 0.9375rem; font-style: italic; opacity: 0.8; margin-top: 8px; }

    .official-link {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 6px;
      padding: 12px 16px;
      background: rgba(163, 198, 192, 0.2);
      border: 1px solid rgba(163, 198, 192, 0.4);
      border-radius: 12px;
      margin-bottom: 20px;
      font-size: 0.875rem;
      color: var(--cr-teal-dark);
      font-weight: 500;
      text-decoration: none;
      transition: all 0.2s ease;
    }

    .official-link:hover { background: rgba(163, 198, 192, 0.35); border-color: var(--cr-teal); }
    .official-link svg { width: 16px; height: 16px; }

    /* Guidance Card */
    .checklist-guidance {
      text-align: center;
    }

    .guidance-card {
      background: var(--white);
      border-radius: 16px;
      padding: 28px 24px;
      box-shadow: 0 2px 12px rgba(0,0,0,0.06);
      margin-bottom: 16px;
    }

    .guidance-card h3 {
      font-size: 1.125rem;
      font-weight: 600;
      color: var(--slate-900);
      margin-bottom: 8px;
    }

    .guidance-card p {
      font-size: 0.9375rem;
      color: var(--slate-600);
      margin-bottom: 24px;
      line-height: 1.5;
    }

    .item-preview {
      display: flex;
      justify-content: center;
      gap: 24px;
      margin-bottom: 24px;
      padding: 16px;
      background: var(--slate-50);
      border-radius: 12px;
    }

    .item-stat { text-align: center; }
    .item-stat .number { font-size: 1.5rem; font-weight: 700; color: var(--cr-teal); }
    .item-stat .label { font-size: 0.75rem; color: var(--slate-500); text-transform: uppercase; letter-spacing: 0.5px; }

    .guidance-buttons {
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .btn {
      padding: 16px 24px;
      border-radius: 12px;
      font-family: inherit;
      font-size: 1rem;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.2s ease;
      border: none;
    }

    .btn-primary {
      background: var(--cr-teal);
      color: var(--white);
    }

    .btn-primary:hover { background: var(--cr-teal-dark); }

    .btn-secondary {
      background: var(--slate-100);
      color: var(--slate-700);
      border: 1px solid var(--slate-200);
    }

    .btn-secondary:hover { background: var(--slate-200); }

    .btn-ghost {
      background: none;
      border: none;
      color: var(--slate-500);
      font-family: inherit;
      font-size: 0.9375rem;
      padding: 12px;
      cursor: pointer;
    }

    .btn-ghost:hover { color: var(--cr-teal); }

    /* Browse View */
    .checklist-browse { padding-bottom: 100px; }
    .checklist-browse.hidden { display: none; }
    .checklist-guidance.hidden { display: none; }

    /* Category Pills */
    .category-pills {
      display: flex;
      gap: 8px;
      margin-bottom: 20px;
      flex-wrap: wrap;
      scroll-margin-top: 120px;
    }

    .category-pill {
      padding: 10px 16px;
      background: var(--white);
      border: 1px solid var(--slate-200);
      border-radius: 20px;
      font-family: inherit;
      font-size: 0.875rem;
      color: var(--slate-600);
      cursor: pointer;
      transition: all 0.2s ease;
    }

    .category-pill:hover { border-color: var(--school-primary); color: var(--school-primary); }
    .category-pill.active { background: var(--school-primary); border-color: var(--school-primary); color: var(--school-primary-text); }
    .category-pill.shopped { background: rgba(70, 158, 146, 0.08); color: var(--cr-teal-dark); border-color: rgba(70, 158, 146, 0.2); }

    .checklist-pref-link {
      display: block;
      font-size: 0.8125rem;
      font-weight: 500;
      color: #DD693A;
      text-align: center;
      padding: 8px 0 4px;
      cursor: pointer;
      text-decoration: none;
    }

    .more-categories {
      padding: 10px 16px;
      background: var(--slate-50);
      border: 1px dashed var(--slate-300);
      border-radius: 20px;
      font-family: inherit;
      font-size: 0.875rem;
      color: var(--slate-500);
      cursor: pointer;
    }

    .more-categories:hover { border-color: var(--slate-500); color: var(--slate-600); }

    /* Sticky Footer */
    .sticky-footer {
      position: fixed;
      bottom: 0;
      left: 0;
      right: 0;
      max-width: 600px;
      margin: 0 auto;
      background: var(--white);
      border-top: 1px solid var(--slate-200);
      padding: 12px 28px;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      z-index: 100;
    }

    .sticky-footer.hidden { display: none; }

    .footer-count {
      flex: 1;
      font-size: 15px;
      font-weight: 600;
      color: var(--slate-600);
      text-align: center;
    }

    .footer-count strong {
      color: var(--cr-teal);
      font-weight: 600;
    }

    /* Shared sizing for both footer buttons */
    #chooseAnotherCategory,
    #continueToShopBtn {
      flex: 0 1 auto;
      width: 37.5%;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 6px;
      font-family: inherit;
      font-size: 15px;
      font-weight: 600;
      border-radius: 12px;
      padding: 12px 0;
      white-space: nowrap;
      cursor: pointer;
      border: none;
      transition: background 0.2s ease;
    }

    /* Next Up pill — dark gray fill, white text */
    #chooseAnotherCategory {
      background: var(--slate-700);
      color: #fff;
    }
    #chooseAnotherCategory:hover { background: var(--slate-800); }
    #chooseAnotherCategory svg { width: 14px; height: 14px; }

    /* Shop CTA — teal fill, white text */
    #continueToShopBtn {
      background: var(--cr-teal);
      color: #fff;
    }
    #continueToShopBtn:hover { background: var(--cr-teal-dark); }
    #continueToShopBtn svg { width: 18px; height: 18px; }


    /* Checklist card */
    .checklist-instruction {
      font-size: 0.875rem;
      font-weight: 400;
      color: var(--slate-500);
      text-align: center;
      margin-bottom: 16px;
      line-height: 1.5;
    }

    .checklist-card {
      background: var(--white);
      border: 1px solid var(--slate-200);
      border-radius: 20px;
      padding: 20px;
      box-shadow: var(--shadow-sm);
    }

    .checklist-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      margin-bottom: 16px;
      padding-bottom: 14px;
      border-bottom: 1px solid var(--slate-100);
    }

    .checklist-title { font-weight: 600; font-size: 1.0625rem; color: var(--slate-900); }

    .select-all {
      font-size: 0.875rem;
      color: var(--cr-teal);
      font-weight: 500;
      cursor: pointer;
      background: none;
      border: none;
      padding: 0;
    }

    .select-all:hover { text-decoration: underline; }

    .checklist-items { display: flex; flex-direction: column; gap: 10px; }

    .checklist-item {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 14px 16px;
      border: 2px solid var(--slate-200);
      border-radius: 12px;
      cursor: pointer;
      transition: all 0.2s ease;
      background: var(--white);
    }

    .checklist-item:hover { border-color: var(--slate-300); background: var(--slate-50); }
    .checklist-item.checked { border-color: var(--school-primary); background: color-mix(in srgb, var(--school-primary) 6%, white); }

    .item-checkbox {
      width: 22px;
      height: 22px;
      border: 2px solid var(--slate-300);
      border-radius: 6px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      transition: all 0.2s ease;
    }

    .checklist-item.checked .item-checkbox { background: var(--cr-lime); border-color: var(--cr-lime); }

    .checkmark-icon {
      width: 14px;
      height: 14px;
      color: var(--slate-900);
      opacity: 0;
      transform: scale(0.5);
      transition: all 0.15s var(--ease-bounce);
    }

    .checklist-item.checked .checkmark-icon { opacity: 1; transform: scale(1); }

    /* Non-shoppable items — visible but clearly not checkable (DEC-501) */
    .checklist-item.non-shoppable {
      border-color: var(--slate-100);
      background: var(--slate-50);
      cursor: default;
      opacity: 0.45;
    }
    .checklist-item.non-shoppable:hover { border-color: var(--slate-200); background: var(--slate-50); }
    .non-shoppable-icon {
      border: none !important;
      background: none !important;
    }
    .non-shoppable-icon svg { color: var(--slate-400); }

    /* Inline message for non-shoppable items (DEC-501) */
    .unavailable-item-message {
      background: rgba(70, 158, 146, 0.08);
      color: #469E92;
      font-size: 0.8125rem;
      font-weight: 500;
      padding: 8px 16px;
      margin: 0;
      border-radius: 0 0 12px 12px;
      animation: fadeInDown 0.2s ease-out;
    }

    @keyframes fadeInDown {
      from { opacity: 0; transform: translateY(-4px); }
      to { opacity: 1; transform: translateY(0); }
    }

    .item-content { flex: 1; }
    .item-text { font-weight: 450; color: var(--slate-700); font-size: 0.9375rem; }
    .item-context { font-size: 0.8125rem; color: var(--slate-500); margin-top: 2px; }

    .item-badge {
      margin-left: auto;
      padding: 3px 10px;
      border-radius: 100px;
      font-size: 0.75rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.03em;
    }

    .item-badge.required { background: rgba(239, 68, 68, 0.1); color: #dc2626; }
    .item-badge.suggested { background: rgba(70, 158, 146, 0.1); color: var(--cr-teal-dark); }
    .item-badge.cr-recommends { background: rgba(251, 176, 64, 0.15); color: #b45309; }

    /* Definitions link (DEC-496) */
    .definitions-link {
      display: flex;
      align-items: center;
      justify-content: flex-end;
      margin-left: auto;
      width: fit-content;
      gap: 4px;
      margin-top: 6px;
      margin-bottom: -8px;
      font-size: 0.75rem;
      font-weight: 400;
      color: var(--slate-400);
      cursor: pointer;
      -webkit-tap-highlight-color: transparent;
      background: none;
      border: none;
      padding: 0;
      font-family: inherit;
    }
    .definitions-link svg { flex-shrink: 0; }

    /* Prohibited pill (DEC-497) */
    .category-pill.prohibited {
      background: rgba(220, 38, 38, 0.10);
      color: #b91c1c;
      border: 1px solid rgba(220, 38, 38, 0.25);
    }

    /* Shared info panel (DEC-496, DEC-497) */
    .info-panel-overlay {
      position: fixed;
      inset: 0;
      background: rgba(0, 0, 0, 0.4);
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 1100;
      padding: 20px;
      opacity: 0;
      visibility: hidden;
      transition: opacity 0.25s ease, visibility 0.25s ease;
    }
    .info-panel-overlay.visible {
      opacity: 1;
      visibility: visible;
    }
    .info-panel {
      background: var(--white);
      border-radius: 20px;
      max-width: 360px;
      width: calc(100% - 48px);
      max-height: calc(100vh - 40px);
      overflow-y: auto;
      box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
      transform: scale(0.95);
      transition: transform 0.25s var(--ease-out);
    }
    .info-panel-overlay.visible .info-panel {
      transform: scale(1);
    }
    .info-panel-header {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      padding: 24px 24px 16px;
    }
    .info-panel-header-text {
      flex: 1;
    }
    .info-panel-close {
      width: 28px;
      height: 28px;
      border-radius: 50%;
      border: none;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      flex-shrink: 0;
      margin-left: 12px;
    }
    .info-panel-body {
      padding: 0 24px 24px;
    }
    .def-row {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      padding: 14px 0;
      border-bottom: 1px solid var(--slate-200);
    }
    .def-row:last-child { border-bottom: none; }
    .def-row .item-badge { flex-shrink: 0; white-space: nowrap; margin-left: 0; }
    .def-row-text {
      font-size: 0.8125rem;
      color: var(--slate-500);
      line-height: 1.5;
    }
    .info-panel-header.prohibited-header {
      background: rgba(220, 38, 38, 0.06);
      border-bottom: 0.5px solid var(--slate-200);
      border-radius: 20px 20px 0 0;
    }
    .prohibited-subtitle {
      font-size: 0.8125rem;
      font-weight: 500;
      color: #b91c1c;
      margin-top: 2px;
    }
    .prohibited-explainer {
      font-size: 0.8125rem;
      color: var(--slate-500);
      line-height: 1.5;
      margin-bottom: 16px;
    }
    .prohibited-list {
      display: flex;
      flex-direction: column;
      gap: 10px;
      font-size: 0.875rem;
      color: var(--slate-800);
    }
    .info-panel-header.sticky-header {
      position: sticky;
      top: 0;
      z-index: 1;
    }

    .no-items { text-align: center; padding: 40px 20px; color: var(--slate-500); }

    /* Toast notification */
    .toast {
      position: fixed;
      bottom: -200px;
      left: 50%;
      transform: translateX(-50%);
      background: #334155;
      color: #ffffff;
      padding: 12px 16px;
      border-radius: 12px;
      font-size: 0.875rem;
      font-weight: 500;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
      border: none;
      z-index: 1000;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.3s ease, bottom 0.3s ease;
      max-width: 360px;
      text-align: center;
    }

    .toast.visible { bottom: 100px; opacity: 1; pointer-events: auto; }

    /* Teaching Moment Overlay — Choreographed Version */
    .teaching-overlay {
      position: fixed;
      top: 0; left: 0; right: 0; bottom: 0;
      background: rgba(0, 0, 0, 0.4);
      display: flex;
      flex-direction: column;
      align-items: center;
      padding: 24px;
      overflow-y: auto;
      z-index: 1000;
      opacity: 0;
      visibility: hidden;
      transition: opacity 0.25s ease-out, visibility 0.25s ease-out;
    }
    .teaching-overlay::before,
    .teaching-overlay::after {
      content: '';
      flex: 1;
    }
    .teaching-overlay.visible {
      opacity: 1;
      visibility: visible;
    }
    .teaching-card {
      background: #ffffff;
      border-radius: 20px;
      width: 100%;
      max-width: 340px;
      overflow: visible; /* confetti escapes the card */
      box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
      position: relative;
      z-index: 1001;
      margin: auto;
      flex-shrink: 0;
    }
    .teaching-card-header {
      background: linear-gradient(135deg, rgba(255,255,255,0.12) 0%, transparent 60%),
                  var(--school-primary, #469E92);
      padding: 20px 24px;
      text-align: center;
      border-radius: 20px 20px 0 0;
      position: relative;
    }
    .teaching-card-header-title {
      font-family: 'Fraunces', Georgia, serif;
      font-size: 1.0625rem;
      font-weight: 600;
      color: var(--school-primary-text, white);
      margin: 0;
      line-height: 1.3;
      transition: opacity 0.3s ease;
    }
    .teaching-card-header.light-bg .teaching-card-header-title {
      color: var(--slate-900, #1a1d21);
    }
    .teaching-card-header-sub {
      font-family: 'DM Sans', sans-serif;
      font-size: 0.75rem;
      color: rgba(255, 255, 255, 0.65);
      margin: 3px 0 0;
      opacity: 0;
      transition: opacity 0.3s ease;
    }
    .teaching-card-header-sub.visible {
      opacity: 1;
    }
    .teaching-card-header.light-bg .teaching-card-header-sub {
      color: rgba(0, 0, 0, 0.45);
    }
    .teaching-card-body {
      padding: 0;
    }

    /* Progress bar */
    .teaching-progress-wrap {
      padding: 24px 24px 0;
    }
    .teaching-progress-track {
      width: 100%;
      height: 4px;
      background: #f1f5f9;
      border-radius: 2px;
      overflow: hidden;
    }
    .teaching-progress-fill {
      width: 0%;
      height: 100%;
      background: #469E92;
      border-radius: 2px;
      transition: width 10.5s linear;
    }
    .teaching-progress-fill.complete {
      width: 100%;
    }

    /* Rotating words — Phase 1 */
    .teaching-words-container {
      position: relative;
      height: 120px;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .teaching-rotating-word {
      font-family: 'DM Sans', sans-serif;
      font-size: 1.0rem;
      font-weight: 600;
      color: #1a1d21;
      text-align: center;
      padding: 40px 24px;
      opacity: 0;
      transition: opacity 0.8s ease;
      position: absolute;
      width: 100%;
    }
    .teaching-rotating-word.visible {
      opacity: 1;
    }

    /* "Done." label — top of Phase 3 reveal */
    .teaching-done {
      font-family: 'Fraunces', Georgia, serif;
      font-size: 1.25rem;
      font-weight: 600;
      color: #1a1d21;
      text-align: center;
      margin: 0 0 16px;
    }

    /* Reveal section — Phase 3 (fades in after celebration) */
    .teaching-reveal {
      opacity: 0;
      transition: opacity 0.3s ease-out;
      padding: 0 24px;
      display: none;
    }
    .teaching-reveal.visible {
      opacity: 1;
      display: block;
    }

    /* Card-fan illustration */
    .teaching-card-fan {
      position: relative;
      width: 180px;
      height: 130px;
      margin: 20px auto 0;
    }
    .fan-card {
      position: absolute;
      width: 110px;
      height: 115px;
      border-radius: 12px;
      overflow: hidden;
    }
    .fan-card-image {
      width: 100%;
      height: 72px;
      background: #f1f5f9;
      position: relative;
    }
    .fan-card-image img {
      width: 100%;
      height: 100%;
      object-fit: contain;
      padding: 10px;
    }
    .fan-card-text {
      padding: 6px 8px;
    }
    .fan-text-line {
      height: 5px;
      background: #e2e8f0;
      border-radius: 3px;
    }

    /* Back card */
    .fan-back {
      left: 50%;
      margin-left: -45px;
      top: 6px;
      transform: rotate(5deg);
      background: #f8fafc;
      border: 1.5px solid #d4d9e0;
      opacity: 0.6;
      z-index: 1;
    }
    /* Middle card */
    .fan-middle {
      left: 50%;
      margin-left: -50px;
      top: 3px;
      transform: rotate(2.5deg);
      background: #fcfcfd;
      border: 1.5px solid #d4d9e0;
      opacity: 0.75;
      z-index: 2;
    }
    /* Front card */
    .fan-front {
      left: 50%;
      margin-left: -55px;
      top: 0;
      background: #ffffff;
      border: 1.5px solid #e2e8f0;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
      z-index: 3;
    }
    .fan-front .fan-card-image {
      background: #f8fafc;
    }
    .fan-options-badge {
      position: absolute;
      bottom: 6px;
      right: 6px;
      background: rgba(255, 255, 255, 0.92);
      color: #469E92;
      font-size: 7px;
      font-weight: 600;
      padding: 2px 4px;
      border-radius: 3px;
    }

    /* Teaching copy — Phase 3 */
    .teaching-reveal-headline {
      font-family: 'DM Sans', sans-serif;
      font-size: 0.9375rem;
      font-weight: 600;
      color: #1a1d21;
      text-align: center;
      line-height: 1.3;
      margin: 16px 0 4px;
    }
    .teaching-reveal-supporting {
      font-family: 'DM Sans', sans-serif;
      font-size: 0.8125rem;
      font-weight: 500;
      color: #374151;
      text-align: center;
      line-height: 1.4;
      margin: 0;
    }

    /* CTA button */
    .teaching-btn {
      display: inline-block;
      padding: 14px 36px;
      background: #469E92;
      color: #ffffff;
      border: none;
      border-radius: 12px;
      font-family: 'DM Sans', sans-serif;
      font-size: 0.9375rem;
      font-weight: 600;
      cursor: pointer;
      box-shadow: 0 4px 16px rgba(70, 158, 146, 0.2);
      margin-top: 20px;
      transition: opacity 0.3s ease;
    }
    .teaching-btn.early {
      opacity: 0.4;
    }
    .teaching-btn.ready {
      opacity: 1;
    }

    /* Full-screen confetti container */
    .confetti-container {
      position: fixed;
      top: 0; left: 0; right: 0; bottom: 0;
      pointer-events: none;
      z-index: 1002;
    }
    .confetti-particle {
      position: absolute;
      pointer-events: none;
    }

    /* Nudge Modal */
    .nudge-overlay {
      position: fixed;
      inset: 0;
      background: rgba(0, 0, 0, 0.5);
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 1100;
      padding: 20px;
    }

    .nudge-overlay.hidden { display: none; }

   .nudge-modal {
      background: var(--white);
      border-radius: 20px;
      padding: 32px 28px;
      max-width: 340px;
      width: 100%;
      text-align: center;
      box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
      position: relative;
      overflow: hidden;
    }

    .nudge-bar {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 6px;
      border-radius: 20px 20px 0 0;
      background: var(--school-primary, var(--cr-teal));
    }

    .nudge-icon {
      font-size: 2.5rem;
      margin-bottom: 16px;
    }

    .nudge-title {
      font-size: 1.25rem;
      font-weight: 600;
      color: var(--slate-900);
      margin-bottom: 8px;
    }

    .nudge-message {
      font-size: 0.9375rem;
      color: var(--slate-600);
      margin-bottom: 24px;
      line-height: 1.5;
    }

    .nudge-buttons {
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .nudge-btn {
      padding: 14px 24px;
      border-radius: 12px;
      font-family: inherit;
      font-size: 1rem;
      font-weight: 600;
      cursor: pointer;
      border: none;
      transition: all 0.2s ease;
    }

    .nudge-btn-primary {
      background: var(--cr-teal);
      color: var(--white);
    }

    .nudge-btn-primary:hover { background: var(--cr-teal-dark); }

    .nudge-btn-secondary {
      background: var(--slate-100);
      color: var(--slate-700);
    }

    .nudge-btn-secondary:hover { background: var(--slate-200); }

    /* Welcome Back Modal */
    .welcome-back-overlay {
      position: fixed;
      inset: 0;
      background: rgba(0, 0, 0, 0.5);
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 1100;
      padding: 20px;
    }
    .welcome-back-overlay.hidden { display: none; }
    .welcome-back-modal {
      background: var(--white);
      border-radius: 20px;
      padding: 36px 28px 32px;
      max-width: 360px;
      width: 100%;
      text-align: center;
      box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    }
    .wb-title {
      font-family: var(--font-serif);
      font-size: 1.5rem;
      font-weight: 600;
      color: var(--slate-900);
      margin-bottom: 12px;
    }
    .wb-school {
      font-size: 1rem;
      color: var(--slate-600);
      margin-bottom: 28px;
      line-height: 1.5;
    }
    .wb-school strong { color: var(--slate-800); }
    .wb-buttons {
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    /* Hub school change link (inside summary header) */
    .summary-school-link {
      font-size: 0.8125rem;
      color: inherit;
      opacity: 0.75;
      margin-top: 8px;
    }
    .summary-school-link.hidden { display: none; }
    .summary-school-link a {
      color: inherit;
      text-decoration: underline;
      text-underline-offset: 2px;
      cursor: pointer;
    }
    .summary-school-link a:hover { opacity: 1; }

    /* Mobile: auto-width with side padding */
    @media (max-width: 768px) {
      #chooseAnotherCategory,
      #continueToShopBtn {
        flex: 0 1 auto;
        width: auto;
        padding: 12px 14px;
        font-size: 14px;
      }
    }
