/* ============================================================
   TRYKER · Category / collection listing page
   ============================================================ */

    :root {
      --cp-bg: #fbf8ff;
      --cp-card: rgba(255, 255, 255, 0.76);
      --cp-card-strong: rgba(255, 255, 255, 0.9);
      --cp-line: rgba(122, 68, 174, 0.12);
      --cp-line-strong: rgba(122, 68, 174, 0.24);
      --cp-ink: #1f1630;
      --cp-muted: #726580;
      --cp-purple: #6a0dad;
      --cp-pink: #ff4fa2;
      --cp-rose: #fff0f7;
      --cp-shadow: 0 18px 48px rgba(72, 24, 112, 0.12);
      --cp-shadow-soft: 0 10px 28px rgba(77, 24, 112, 0.08);
      --cp-radius-xl: 22px;
      --cp-radius-lg: 18px;
      --cp-radius-md: 16px;
      --cp-radius-sm: 12px;
      --cp-topbar: 52px;
    }

    .icon-collection,
    .icon-ready,
    .icon-party,
    .icon-bridal,
    .icon-indo,
    .icon-celeb,
    .icon-silk,
    .icon-gift {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 26px;
      height: 26px;
      border-radius: 10px;
      background: linear-gradient(135deg, rgba(106,13,173,.12), rgba(255,79,162,.14));
      color: var(--cp-purple);
      font-size: 13px;
      font-weight: 800;
      box-shadow: inset 0 1px 0 rgba(255,255,255,.75);
    }

    * { box-sizing: border-box; }

    body {
      margin: 0;
      color: var(--cp-ink);
      font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
      background:
        radial-gradient(circle at top left, rgba(255, 79, 162, 0.16), transparent 28%),
        radial-gradient(circle at top right, rgba(106, 13, 173, 0.14), transparent 24%),
        linear-gradient(180deg, #f7f1ff 0%, #fffafc 28%, #faf6ff 60%, #f6f2fb 100%);
    }

    .collection-page {
      min-height: 100vh;
      padding-top: 10px;
      padding-bottom: 104px;
    }

    .glass-panel {
      background: var(--cp-card);
      border: 1px solid var(--cp-line);
      box-shadow: var(--cp-shadow-soft);
      backdrop-filter: blur(18px);
      -webkit-backdrop-filter: blur(18px);
    }

    .topbar {
      position: sticky;
      top: 0;
      z-index: 60;
      display: flex;
      align-items: center;
      gap: 6px;
      margin-bottom: 8px;
      padding: 6px 8px;
      border-radius: 16px;
      min-height: 50px;
      animation: riseIn .45s ease both;
    }

    .nav-icon-btn,
    .nav-icon-link {
      width: 34px;
      height: 34px;
      flex: 0 0 34px;
      border: 1px solid var(--cp-line);
      border-radius: 11px;
      background: rgba(255, 255, 255, 0.72);
      color: var(--cp-ink);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      text-decoration: none;
      cursor: pointer;
      box-shadow: inset 0 1px 0 rgba(255,255,255,.6);
      transition: transform .28s ease, box-shadow .28s ease, background .28s ease;
    }

    .nav-icon-btn:active,
    .nav-icon-link:active {
      transform: scale(.96);
    }

    .nav-icon-btn svg,
    .nav-icon-link svg {
      width: 15px;
      height: 15px;
    }

    .topbar-copy {
      min-width: 0;
      flex: 1;
    }

    .topbar-copy .eyebrow {
      display: block;
      margin-bottom: 1px;
      color: var(--cp-pink);
      font-size: 8px;
      font-weight: 800;
      letter-spacing: 0.11em;
      text-transform: uppercase;
    }

    .topbar-copy h1 {
      margin: 0;
      font-family: 'Fraunces', serif;
      font-size: 14px;
      line-height: .98;
      letter-spacing: -0.03em;
    }

    .topbar-actions {
      display: flex;
      align-items: center;
      gap: 5px;
    }

    .nav-badge {
      position: relative;
    }

    .nav-badge-count {
      position: absolute;
      top: -3px;
      right: -1px;
      min-width: 14px;
      height: 14px;
      padding: 0 3px;
      border-radius: 999px;
      background: linear-gradient(135deg, var(--cp-purple), var(--cp-pink));
      color: #fff;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: 8px;
      font-weight: 800;
      box-shadow: 0 6px 14px rgba(106, 13, 173, 0.26);
    }

    .stack {
      display: grid;
      gap: 6px;
    }

    .hero {
      padding: 8px 8px 9px;
      border-radius: var(--cp-radius-xl);
      position: relative;
      overflow: hidden;
      background:
        linear-gradient(140deg, rgba(255,255,255,.9), rgba(255,255,255,.72)),
        linear-gradient(135deg, rgba(106,13,173,.16), rgba(255,79,162,.09));
      box-shadow: var(--cp-shadow);
      animation: riseIn .55s ease both;
      animation-delay: .05s;
    }

    .hero::after {
      content: "";
      position: absolute;
      right: -26px;
      top: -26px;
      width: 72px;
      height: 72px;
      border-radius: 24px;
      background: linear-gradient(135deg, rgba(106,13,173,.16), rgba(255,79,162,.18));
      filter: blur(2px);
      transform: rotate(22deg);
      animation: glowFloat 5s ease-in-out infinite;
    }

    .location-pill {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      margin-bottom: 5px;
      padding: 3px 7px;
      border-radius: 999px;
      background: rgba(255,255,255,.72);
      border: 1px solid rgba(56, 161, 105, 0.18);
      color: #264130;
      font-size: 8px;
      font-weight: 700;
    }

    .location-pill svg {
      width: 10px;
      height: 10px;
      color: var(--cp-purple);
    }

    .service-dot {
      width: 6px;
      height: 6px;
      border-radius: 999px;
      background: #16a34a;
      box-shadow: 0 0 0 4px rgba(22,163,74,.12);
    }

    .hero h2 {
      margin: 0 0 3px;
      font-family: 'Fraunces', serif;
      font-size: 14px;
      line-height: .96;
      letter-spacing: -0.04em;
      max-width: 154px;
      min-height: 32px;
    }

    .hero p {
      margin: 0;
      max-width: 184px;
      color: var(--cp-muted);
      font-size: 7.5px;
      line-height: 1.28;
      min-height: 20px;
    }

    .hero-meta {
      margin-top: 5px;
      overflow: hidden;
      white-space: nowrap;
      mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
      -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
    }

    .hero-marquee {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      width: max-content;
      padding-left: 6px;
      animation: ribbonMarquee 11s linear infinite;
      will-change: transform;
    }

    .hero-ribbon {
      flex: 0 0 auto;
      display: inline-flex;
      align-items: center;
      gap: 5px;
      padding: 4px 7px;
      border-radius: 999px;
      background: rgba(255,255,255,.66);
      border: 1px solid rgba(106,13,173,.1);
      font-size: 7px;
      font-weight: 700;
      color: var(--cp-ink);
    }

    .typed-wrap {
      position: relative;
    }

    .typed-cursor {
      display: inline-block;
      width: 1px;
      height: .95em;
      margin-left: 2px;
      vertical-align: -1px;
      background: linear-gradient(180deg, var(--cp-purple), var(--cp-pink));
      animation: blinkCursor .9s steps(1) infinite;
    }

    .hero-ribbon strong {
      color: var(--cp-purple);
      font-weight: 800;
    }

    .trust-strip {
      overflow: hidden;
      border-radius: 999px;
      border: 1px solid rgba(106,13,173,.08);
      background: rgba(255,255,255,.7);
      min-height: 28px;
      padding: 4px 0;
      margin-top: 4px;
      animation: riseIn .55s ease both;
      animation-delay: .1s;
      /* Fade the chips at both edges so the marquee reads as intentional
         rather than getting hard-cut at the pill's rounded ends. */
      -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 26px, #000 calc(100% - 26px), transparent 100%);
      mask-image: linear-gradient(90deg, transparent 0, #000 26px, #000 calc(100% - 26px), transparent 100%);
    }

    .trust-marquee {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      width: max-content;
      padding-left: 12px;
      animation: trustMarquee 14s linear infinite;
      will-change: transform;
    }

    .trust-chip {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 2px 0;
      white-space: nowrap;
    }

    .trust-mark {
      width: 15px;
      height: 15px;
      border-radius: 999px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: linear-gradient(135deg, rgba(106,13,173,.1), rgba(255,79,162,.12));
      color: var(--cp-purple);
      font-size: 7px;
      font-weight: 800;
      flex: 0 0 15px;
    }

    .trust-copy {
      display: inline-flex;
      align-items: center;
      gap: 3px;
      font-size: 7px;
      color: var(--cp-muted);
    }

    .trust-copy b {
      color: var(--cp-ink);
      font-size: 7px;
      line-height: 1;
    }

    .trust-copy span {
      line-height: 1;
    }

    .section-head {
      display: flex;
      align-items: end;
      justify-content: space-between;
      gap: 8px;
    }

    .section-head h3 {
      margin: 0;
      font-family: 'Fraunces', serif;
      font-size: 13px;
      letter-spacing: -0.03em;
    }

    .section-head p {
      margin: 2px 0 0;
      color: var(--cp-muted);
      font-size: 7px;
    }

    .section-note {
      color: var(--cp-purple);
      font-size: 7px;
      font-weight: 800;
    }

    .cat-scroll {
      display: grid;
      grid-auto-flow: column;
      grid-auto-columns: 62px;
      gap: 8px;
      overflow-x: auto;
      padding-bottom: 2px;
      scroll-snap-type: x proximity;
      scrollbar-width: none;
      animation: riseIn .55s ease both;
      animation-delay: .14s;
    }

    .cat-scroll::-webkit-scrollbar { display: none; }

    .cat-card {
      scroll-snap-align: start;
      display: grid;
      gap: 5px;
      justify-items: center;
      text-align: center;
      text-decoration: none;
      color: inherit;
      transition: transform .3s ease;
      flex: 0 0 auto;
    }

    .cat-card.active {
      transform: translateY(-2px);
    }

    .cat-card-copy {
      display: grid;
      gap: 5px;
      justify-items: center;
      width: 100%;
    }

    .cat-card-icon {
      width: 48px;
      height: 48px;
      border-radius: 999px;
      border: 1px solid rgba(181, 134, 216, .28);
      background:
        linear-gradient(180deg, rgba(255,255,255,.94), rgba(248,239,255,.86));
      box-shadow: 0 10px 18px rgba(95, 36, 138, .08);
      display: grid;
      place-items: center;
      overflow: hidden;
      position: relative;
    }

    .cat-card-copy strong {
      display: block;
      font-size: 7px;
      font-weight: 700;
      line-height: 1.15;
      color: #6e6a78;
      text-transform: uppercase;
      letter-spacing: .03em;
      min-height: 16px;
    }

    .cat-card-icon img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .cat-card-icon--search {
      color: var(--cp-purple);
    }

    .cat-card-icon--search svg {
      width: 22px;
      height: 22px;
      stroke: currentColor;
    }

    .utility-bar {
      position: sticky;
      top: calc(var(--cp-topbar) + 6px);
      z-index: 45;
      display: flex;
      gap: 8px;
      overflow-x: auto;
      padding: 1px 0 3px;
      scrollbar-width: none;
      animation: riseIn .55s ease both;
      animation-delay: .18s;
    }

    .utility-bar::-webkit-scrollbar { display: none; }

    .util-btn {
      border: 1px solid rgba(106,13,173,.1);
      border-radius: 999px;
      background: rgba(255,255,255,.76);
      color: var(--cp-ink);
      height: 36px;
      padding: 0 11px;
      display: inline-flex;
      align-items: center;
      gap: 7px;
      white-space: nowrap;
      font-size: 11px;
      font-weight: 700;
      box-shadow: var(--cp-shadow-soft);
      cursor: pointer;
      transition: transform .28s ease, box-shadow .28s ease, background .28s ease;
    }

    .util-btn:active {
      transform: scale(.97);
    }

    .util-btn.active {
      color: #fff;
      border-color: transparent;
      background: linear-gradient(135deg, var(--cp-purple), var(--cp-pink));
      box-shadow: 0 12px 24px rgba(106,13,173,.2);
    }

    .util-btn svg {
      width: 13px;
      height: 13px;
    }

    .active-filters {
      display: flex;
      flex-wrap: wrap;
      gap: 6px;
      min-height: 10px;
    }

    .filter-tag {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 6px 9px;
      border-radius: 999px;
      background: rgba(106,13,173,.08);
      color: var(--cp-purple);
      font-size: 10px;
      font-weight: 800;
    }

    .meta-bar {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 10px;
      padding: 0 1px;
      animation: riseIn .55s ease both;
      animation-delay: .2s;
    }

    .meta-bar strong {
      font-size: 12px;
    }

    .meta-bar span {
      color: var(--cp-muted);
      font-size: 10px;
    }

    .skeleton-card,
    .product-card {
      border-radius: 18px;
      overflow: hidden;
      box-shadow: var(--cp-shadow-soft);
      background: var(--cp-card-strong);
      border: 1px solid rgba(255,255,255,.5);
    }

    .skeleton-card {
      min-height: 274px;
      position: relative;
      background: linear-gradient(135deg, rgba(255,255,255,.82), rgba(244,235,255,.82));
    }

    .skeleton-card::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(90deg, transparent, rgba(255,255,255,.55), transparent);
      animation: shimmer 1.15s linear infinite;
      transform: translateX(-100%);
    }

    @keyframes shimmer {
      to { transform: translateX(100%); }
    }

    .product-card {
      cursor: pointer;
      transition: transform .3s ease, box-shadow .3s ease;
      animation: riseIn .45s ease both;
    }

    .product-card:nth-child(2n) { animation-delay: .05s; }
    .product-card:nth-child(3n) { animation-delay: .1s; }
    .product-card:nth-child(4n) { animation-delay: .14s; }

    .product-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 18px 28px rgba(83, 27, 122, .14);
    }

    .product-media {
      position: relative;
      aspect-ratio: 0.76;
      overflow: hidden;
      background: linear-gradient(135deg, rgba(106,13,173,.08), rgba(255,79,162,.08));
    }

    .product-media img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform .35s ease;
    }

    .product-card:hover .product-media img {
      transform: scale(1.04);
    }

    .wishlist-btn,
    .quick-add-btn {
      position: absolute;
      width: 30px;
      height: 30px;
      border: none;
      border-radius: 10px;
      background: rgba(255,255,255,.82);
      color: var(--cp-ink);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 10px 18px rgba(66, 24, 107, 0.14);
      cursor: pointer;
      z-index: 2;
      transition: transform .26s ease, background .26s ease;
    }

    .wishlist-btn:active,
    .quick-add-btn:active {
      transform: scale(.94);
    }

    .wishlist-btn { top: 8px; right: 8px; }
    .quick-add-btn { right: 8px; bottom: 8px; }

    .wishlist-btn.active {
      color: #fff;
      background: linear-gradient(135deg, var(--cp-purple), var(--cp-pink));
    }

    .wishlist-btn svg,
    .quick-add-btn svg {
      width: 15px;
      height: 15px;
    }

    .card-badges {
      position: absolute;
      top: 8px;
      left: 8px;
      display: flex;
      flex-direction: column;
      gap: 5px;
      max-width: calc(100% - 54px);
      z-index: 2;
    }

    .badge {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      width: fit-content;
      padding: 5px 8px;
      border-radius: 999px;
      font-size: 9px;
      font-weight: 800;
      letter-spacing: .02em;
    }

    .badge.tag {
      background: rgba(255,255,255,.9);
      color: var(--cp-ink);
    }

    .badge.discount {
      background: linear-gradient(135deg, rgba(106,13,173,.94), rgba(255,79,162,.94));
      color: #fff;
    }

    .badge.try-home {
      position: absolute;
      left: 8px;
      bottom: 8px;
      background: rgba(255,255,255,.88);
      color: var(--cp-purple);
      box-shadow: 0 10px 20px rgba(72, 24, 112, 0.12);
      z-index: 2;
    }

    .product-copy {
      padding: 11px 11px 10px;
    }

    .product-name {
      margin: 0;
      font-size: 12px;
      font-weight: 800;
      line-height: 1.28;
      min-height: 30px;
    }

    .product-fabric {
      display: block;
      margin-top: 3px;
      color: var(--cp-muted);
      font-size: 9px;
    }

    .product-rating {
      display: flex;
      align-items: center;
      gap: 5px;
      margin-top: 7px;
      color: var(--cp-muted);
      font-size: 9px;
      font-weight: 700;
    }

    .product-rating .star {
      color: #f59e0b;
      font-size: 11px;
    }

    .product-prices {
      display: flex;
      align-items: end;
      flex-wrap: wrap;
      gap: 4px 6px;
      margin-top: 7px;
    }

    .price-now {
      font-size: 14px;
      font-weight: 800;
      color: var(--cp-ink);
    }

    .price-old {
      color: #9989ab;
      font-size: 9px;
      text-decoration: line-through;
    }

    .price-off {
      color: #15803d;
      font-size: 9px;
      font-weight: 800;
    }

    .product-footer {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 8px;
      margin-top: 8px;
    }

    .product-footer .ribbon {
      font-size: 8px;
      font-weight: 800;
      color: var(--cp-purple);
      background: rgba(106,13,173,.07);
      border-radius: 999px;
      padding: 5px 7px;
      white-space: nowrap;
    }

    .product-footer .cta {
      font-size: 9px;
      font-weight: 800;
      color: var(--cp-pink);
    }

    .floating-empty {
      padding: 24px 16px;
      text-align: center;
      border-radius: 18px;
      background: rgba(255,255,255,.75);
      border: 1px solid var(--cp-line);
      box-shadow: var(--cp-shadow-soft);
    }

    .floating-empty strong {
      display: block;
      font-size: 15px;
      margin-bottom: 6px;
      font-family: 'Fraunces', serif;
    }

    .floating-empty p {
      margin: 0 0 12px;
      color: var(--cp-muted);
      font-size: 11px;
      line-height: 1.45;
    }

    .floating-empty button {
      height: 40px;
      padding: 0 14px;
      border: none;
      border-radius: 12px;
      background: linear-gradient(135deg, var(--cp-purple), var(--cp-pink));
      color: #fff;
      font-weight: 800;
      cursor: pointer;
    }

    .sheet {
      position: fixed;
      inset: 0;
      z-index: 100;
      display: none;
    }

    .sheet.open {
      display: block;
    }

    .sheet-backdrop {
      position: absolute;
      inset: 0;
      background: rgba(18, 10, 30, 0.46);
      backdrop-filter: blur(8px);
      -webkit-backdrop-filter: blur(8px);
    }

    .sheet-panel {
      position: absolute;
      left: 0;
      right: 0;
      bottom: 0;
      border-radius: 24px 24px 0 0;
      padding: 15px 14px calc(15px + env(safe-area-inset-bottom));
      background: rgba(255,255,255,.96);
      box-shadow: 0 -18px 50px rgba(32, 12, 54, .18);
      transform: translateY(100%);
      transition: transform .28s ease;
      max-height: 72vh;
      overflow-y: auto;
    }

    .sheet.open .sheet-panel {
      transform: translateY(0);
    }

    .sheet-handle {
      width: 42px;
      height: 4px;
      margin: 0 auto 12px;
      border-radius: 999px;
      background: rgba(107, 100, 120, 0.18);
    }

    .sheet-head {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 10px;
      margin-bottom: 12px;
    }

    .sheet-head h4 {
      margin: 0;
      font-size: 16px;
      font-family: 'Fraunces', serif;
    }

    .sheet-close {
      width: 30px;
      height: 30px;
      border-radius: 10px;
      border: 1px solid rgba(106,13,173,.1);
      background: rgba(246, 240, 255, .9);
      cursor: pointer;
      color: var(--cp-ink);
    }

    .sheet-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 8px;
    }

    .sheet-option,
    .sheet-toggle {
      padding: 11px 10px;
      border-radius: 14px;
      border: 1px solid rgba(106,13,173,.09);
      background: rgba(250,247,255,.9);
      text-align: left;
      color: var(--cp-ink);
      font-size: 12px;
      font-weight: 700;
      cursor: pointer;
    }

    .sheet-option small,
    .sheet-toggle small {
      display: block;
      margin-top: 3px;
      color: var(--cp-muted);
      font-size: 9px;
      font-weight: 600;
    }

    .sheet-option.active,
    .sheet-toggle.active {
      background: linear-gradient(135deg, rgba(106,13,173,.95), rgba(255,79,162,.95));
      color: #fff;
      border-color: transparent;
      box-shadow: 0 14px 30px rgba(106,13,173,.18);
    }

    .sheet-option.active small,
    .sheet-toggle.active small {
      color: rgba(255,255,255,.84);
    }

    .sheet-actions {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 8px;
      margin-top: 14px;
    }

    .sheet-actions button {
      height: 42px;
      border-radius: 14px;
      font-size: 12px;
      font-weight: 800;
      cursor: pointer;
    }

    .sheet-reset {
      border: 1px solid rgba(106,13,173,.12);
      background: #fff;
      color: var(--cp-ink);
    }

    .sheet-apply {
      border: none;
      background: linear-gradient(135deg, var(--cp-purple), var(--cp-pink));
      color: #fff;
    }

    @keyframes shimmer {
      to { transform: translateX(100%); }
    }

    @keyframes riseIn {
      from {
        opacity: 0;
        transform: translateY(14px) scale(.985);
      }
      to {
        opacity: 1;
        transform: translateY(0) scale(1);
      }
    }

    @keyframes glowFloat {
      0%, 100% { transform: rotate(22deg) translateY(0); opacity: .9; }
      50% { transform: rotate(22deg) translateY(6px); opacity: 1; }
    }

    @keyframes bobIcon {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-3px); }
    }

    @keyframes blinkCursor {
      0%, 48% { opacity: 1; }
      50%, 100% { opacity: 0; }
    }

    @keyframes ribbonMarquee {
      0% { transform: translateX(calc(-50% - 4px)); }
      100% { transform: translateX(0); }
    }

    @keyframes trustMarquee {
      0% { transform: translateX(calc(-50% - 8px)); }
      100% { transform: translateX(0); }
    }

    @media (min-width: 768px) {
      .collection-page {
        padding-top: 14px;
        padding-bottom: 120px;
      }
    }

    @media (min-width: 1024px) {
      .collection-page {
        padding-top: 20px;
        padding-bottom: 128px;
      }

      .topbar {
        top: 10px;
        margin-bottom: 14px;
      }

      .utility-bar {
        top: calc(var(--cp-topbar) + 22px);
      }

      .stack {
        gap: 12px;
      }
    }

    @media (max-width: 420px) {
      .collection-page { padding: 10px 10px 108px; }
      .stack { gap: 5px; }
      .hero { padding: 7px 7px 8px; }
      .hero h2 { font-size: 12px; max-width: 138px; min-height: 26px; }
      .hero p { font-size: 6.8px; max-width: 160px; min-height: 16px; }
      .hero-ribbon { font-size: 6.4px; padding: 3px 6px; }
      .location-pill { font-size: 7px; padding: 3px 6px; }
      .trust-strip { min-height: 24px; }
      .trust-copy, .trust-copy b { font-size: 6.4px; }
      .section-head h3 { font-size: 12px; }
      .section-head p { display: none; }
      .section-note { font-size: 6.6px; }
      .cat-scroll { grid-auto-columns: 56px; gap: 7px; }
      .cat-card-icon { width: 44px; height: 44px; }
      .cat-card-copy strong { font-size: 6.4px; min-height: 14px; }
      .meta-bar span, .meta-bar .section-note { display: none; }
    }
