
    /* ── Store page overrides ── */
    :root { --store-color: #e94560; }

    /* ── Expired catalogue overlay ── */
    .catalogue-card.is-expired { opacity: .7; }
    .expired-overlay {
      position: absolute; inset: 0; z-index: 5;
      background: rgba(0,0,0,.55);
      display: flex; align-items: center; justify-content: center;
      color: #fff; font-size: .78rem; font-weight: 700;
      letter-spacing: .12em; text-transform: uppercase;
      pointer-events: none;
      border-radius: inherit;
    }

    /* Hero */
    .store-hero {
      background: linear-gradient(135deg, var(--primary) 0%, color-mix(in srgb, var(--store-color) 30%, var(--primary)) 100%);
      padding: 0;
      position: relative;
      overflow: hidden;
    }
    .store-hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse at 80% 50%, color-mix(in srgb, var(--store-color) 20%, transparent) 0%, transparent 70%);
      pointer-events: none;
    }
    .store-hero-inner {
      max-width: 1200px;
      margin: 0 auto;
      padding: 48px 24px 40px;
      display: flex;
      align-items: center;
      gap: 32px;
      position: relative;
      z-index: 1;
    }
    .store-hero-logo {
      width: 100px; height: 100px;
      background: white;
      border-radius: 20px;
      padding: 14px;
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
      box-shadow: 0 8px 32px rgba(0,0,0,.25);
      border: 3px solid var(--store-color);
    }
    .store-hero-logo img { max-width: 100%; max-height: 100%; object-fit: contain; }
    .store-hero-info { flex: 1; min-width: 0; }
    .store-hero-eyebrow {
      font-size: .78rem;
      font-weight: 700;
      letter-spacing: .1em;
      text-transform: uppercase;
      color: var(--store-color);
      margin-bottom: 6px;
    }
    .store-hero-title {
      font-size: clamp(1.6rem, 4vw, 2.4rem);
      font-weight: 900;
      color: white;
      line-height: 1.15;
      margin-bottom: 8px;
    }
    .store-hero-desc {
      color: rgba(255,255,255,.65);
      font-size: .95rem;
      margin-bottom: 18px;
    }
    .store-hero-stats {
      display: flex;
      gap: 20px;
      flex-wrap: wrap;
    }
    .hero-stat {
      display: flex;
      align-items: center;
      gap: 7px;
      background: rgba(255,255,255,.1);
      border: 1px solid rgba(255,255,255,.15);
      border-radius: 30px;
      padding: 6px 14px;
      font-size: .82rem;
      color: rgba(255,255,255,.85);
      font-weight: 600;
    }
    .hero-stat svg { color: var(--store-color); flex-shrink: 0; }

    /* Breadcrumb bar */

    /* Custom HTML block */
    .store-custom-block {
      max-width: 1200px;
      margin: 24px auto 0;
      padding: 0 24px;
    }

    /* ── Featured catalogue ── */
    .featured-section {
      max-width: 1200px;
      margin: 32px auto 0;
      padding: 0 24px;
    }
    .section-label {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: .78rem;
      font-weight: 800;
      letter-spacing: .08em;
      text-transform: uppercase;
      color: var(--text-muted);
      margin-bottom: 16px;
    }
    .section-label::after {
      content: '';
      flex: 1;
      height: 1px;
      background: var(--border);
    }
    .featured-card {
      display: grid;
      grid-template-columns: 220px 1fr;
      gap: 0;
      background: white;
      border: 1px solid var(--border);
      border-radius: var(--radius-md);
      overflow: hidden;
      box-shadow: var(--shadow-sm);
      transition: box-shadow .25s, transform .25s;
    }
    .featured-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
    .featured-thumb {
      position: relative;
      background: #f0f0f0;
    }
    .featured-thumb img {
      width: 100%; height: 100%;
      object-fit: cover;
      display: block;
    }
    .featured-badge {
      position: absolute;
      top: 12px; left: 12px;
      background: var(--store-color);
      color: white;
      font-size: .72rem;
      font-weight: 800;
      letter-spacing: .06em;
      text-transform: uppercase;
      padding: 4px 10px;
      border-radius: 20px;
    }
    .featured-pages-badge {
      position: absolute;
      bottom: 12px; right: 12px;
      background: rgba(0,0,0,.65);
      color: white;
      font-size: .72rem;
      font-weight: 600;
      padding: 4px 10px;
      border-radius: 20px;
    }
    .featured-body {
      padding: 28px 32px;
      display: flex;
      flex-direction: column;
    }
    .featured-meta {
      font-size: .78rem;
      font-weight: 700;
      letter-spacing: .08em;
      text-transform: uppercase;
      color: var(--store-color);
      margin-bottom: 10px;
    }
    .featured-title {
      font-size: 1.45rem;
      font-weight: 900;
      line-height: 1.25;
      color: var(--text);
      margin-bottom: 12px;
    }
    .featured-dates {
      display: flex;
      align-items: center;
      gap: 7px;
      color: var(--text-muted);
      font-size: .88rem;
      margin-bottom: 8px;
    }
    .featured-dates svg { color: var(--green); }
    .featured-desc {
      color: var(--text-muted);
      font-size: .88rem;
      line-height: 1.6;
      flex: 1;
      margin-bottom: 24px;
    }
    .featured-actions { display: flex; gap: 10px; flex-wrap: wrap; }
    .btn-featured-primary {
      display: inline-flex; align-items: center; gap: 8px;
      background: var(--store-color);
      color: white;
      padding: 11px 24px;
      border-radius: var(--radius-sm);
      font-size: .9rem;
      font-weight: 700;
      transition: opacity .2s, transform .2s;
    }
    .btn-featured-primary:hover { opacity: .9; transform: translateY(-1px); }
    .btn-featured-secondary {
      display: inline-flex; align-items: center; gap: 8px;
      border: 1.5px solid var(--border);
      color: var(--text-muted);
      padding: 11px 20px;
      border-radius: var(--radius-sm);
      font-size: .9rem;
      font-weight: 600;
      transition: border-color .2s, color .2s;
    }
    .btn-featured-secondary:hover { border-color: var(--accent); color: var(--accent); }

    /* ── All catalogues grid ── */
    .all-section {
      max-width: 1200px;
      margin: 36px auto;
      padding: 0 24px 64px;
    }
    /* Override slider styles on this page — full grid */
    .cat-page .catalogues-grid {
      display: grid !important;
      grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
      gap: 20px;
      overflow: visible !important;
      padding-bottom: 0 !important;
    }
    .cat-page .catalogue-card {
      flex: unset !important;
      width: unset !important;
      scroll-snap-align: unset !important;
    }

    /* Ad card inside catalogue grid */
    .catalogue-card-ad {
      background: #fafafa;
      border: 1px dashed var(--border, #e2e8f0);
      border-radius: 14px;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      min-height: 220px;
      padding: 12px;
      text-align: center;
    }
    .cat-ad-label {
      font-size: .65rem;
      font-weight: 700;
      letter-spacing: .07em;
      text-transform: uppercase;
      color: var(--text-muted, #6c7a89);
      margin-bottom: 8px;
    }
    .cat-ad-body { width: 100%; }

    /* Empty / error state */
    .store-empty {
      text-align: center;
      padding: 72px 24px;
      color: var(--text-muted);
    }
    .store-empty svg { margin-bottom: 16px; color: var(--border); }
    .store-empty h3 { font-size: 1.1rem; color: var(--text); margin-bottom: 8px; }

    @media (max-width: 768px) {
      .store-hero-inner { flex-direction: column; align-items: flex-start; gap: 20px; padding: 32px 20px 28px; }
      .store-hero-logo { width: 76px; height: 76px; }
      .featured-card { grid-template-columns: 1fr; }
      .featured-thumb { height: 220px; }
      .featured-body { padding: 20px; }
      .page-bar-inner { gap: 8px; }
      .toolbar-search { width: 160px; }
      .toolbar-search:focus-within { width: 200px; }
      .cat-page .catalogues-grid { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 14px; }
    }
    @media (max-width: 480px) {
      .store-hero-stats { gap: 8px; }
      .hero-stat { font-size: .75rem; padding: 5px 10px; }
      .cat-page .catalogues-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
      /* Compact cards on the store page grid */
      .cat-page .catalogue-body { padding: 10px 12px 14px; gap: 5px; }
      .cat-page .catalogue-title {
        font-size: .8rem;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
      }
      .cat-page .catalogue-dates { font-size: .72rem; }
      .cat-page .btn-icon { display: none; }
      .cat-page .btn-view { padding: 7px 0; font-size: .76rem; }
      /* Sticky bar: hide sort on tiny screens */
      .toolbar-sort { display: none; }
      .toolbar-search { width: 100%; }
    }
  