/* ══════════════════════════════════════════════════════════════════════════
   shop.css — iDive Dive-Gear Shop · LISTING (archive) styles
   ──────────────────────────────────────────────────────────────────────────
   Fully self-contained & scoped to `body.ffshop-body`. Every class is
   `ffshop-` prefixed so NOTHING here collides with /courses/, /trip/ or the
   global styles.css. We only borrow the :root design tokens (cyan/amber/fonts)
   that styles.css defines for the shared header/footer — we never modify them.
   ══════════════════════════════════════════════════════════════════════════ */

.ffshop-body { --ffshop-amber: #f59e0b; }

/* ─── Hero ─── */
.ffshop-hero {
  position: relative;
  background:
    linear-gradient(90deg, rgba(8,47,73,.86) 0%, rgba(8,47,73,.62) 45%, rgba(8,47,73,.34) 100%),
    url('/shop/images/shop-hero.webp') center/cover no-repeat,
    linear-gradient(135deg, #083344 0%, #0e7490 55%, #06b6d4 100%);
  padding: 156px 24px 40px;
  border-bottom: 1px solid rgba(15,23,42,.12);
  color: #fff;
}
.ffshop-hero .ffshop-wrap { max-width: 1400px; margin: 0 auto; }
.ffshop-eyebrow {
  font-family: 'Josefin Sans', sans-serif; font-size: 11px; letter-spacing: .22em;
  text-transform: uppercase; color: rgba(255,255,255,.92); margin-bottom: 10px; font-weight: 500;
}
.ffshop-hero h1 {
  font-family: 'Josefin Sans', sans-serif; font-size: 42px; line-height: 1.05;
  margin: 0 0 12px; font-weight: 600; letter-spacing: -.5px; color: #fff;
}
.ffshop-lede { color: rgba(255,255,255,.88); font-size: 15.5px; line-height: 1.55; max-width: 700px; margin: 0 0 22px; }
.ffshop-hero-stats { display: flex; gap: 32px; flex-wrap: wrap; }
.ffshop-hero-stats > div { display: flex; flex-direction: column; }
.ffshop-hero-stats strong { font-family: 'Josefin Sans', sans-serif; font-size: 26px; font-weight: 600; line-height: 1; color: #fff; }
.ffshop-hero-stats span { font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.82); margin-top: 5px; font-family: 'Josefin Sans', sans-serif; }

/* ─── Category quick-nav strip ─── */
.ffshop-catnav { background: #fff; border-bottom: 1px solid var(--border, rgba(6,182,212,.16)); position: sticky; top: 64px; z-index: 40; }
.ffshop-catnav-inner { max-width: 1400px; margin: 0 auto; display: flex; gap: 8px; overflow-x: auto; padding: 12px 24px; scrollbar-width: none; }
.ffshop-catnav-inner::-webkit-scrollbar { display: none; }
.ffshop-catpill {
  flex: 0 0 auto; display: inline-flex; align-items: center; gap: 7px; padding: 8px 16px;
  border-radius: 100px; background: var(--primary-soft, #ecfeff); color: var(--deep, #164e63);
  font: 600 13px/1 'Josefin Sans', sans-serif; text-decoration: none; border: 1px solid transparent;
  white-space: nowrap; transition: all .18s ease;
}
.ffshop-catpill:hover { background: var(--primary-light, #cffafe); border-color: var(--border-hover, rgba(6,182,212,.45)); }
.ffshop-catpill.active {
  /* active pill = iDive primary gradient (designplan §1 / §4) */
  background: linear-gradient(135deg, rgba(16,185,129,.96) 0%, rgba(6,182,212,.96) 50%, rgba(29,78,216,.96) 100%);
  color: #fff; border-color: rgba(255,255,255,.28);
  box-shadow: 0 4px 12px rgba(29,78,216,.16), 0 2px 6px rgba(16,185,129,.08), inset 0 1px 0 rgba(255,255,255,.28);
}
.ffshop-catpill i { font-size: 13px; }

/* ─── Main layout: sidebar + results ─── */
.ffshop-layout { display: flex; align-items: flex-start; max-width: 1400px; margin: 0 auto; padding-top: 8px; min-height: 60vh; }
.ffshop-sidebar {
  width: 280px; min-width: 280px; background: #fff; align-self: flex-start;
  position: sticky; top: 120px; border-right: 1px solid var(--border, rgba(6,182,212,.16));
}
.ffshop-fsection { border-bottom: 1px solid var(--border, rgba(6,182,212,.16)); padding: 16px 20px; }
.ffshop-fsection:last-child { border-bottom: none; }
.ffshop-ftitle {
  display: flex; justify-content: space-between; align-items: center; cursor: pointer;
  font: 600 12.5px/1 'Josefin Sans', sans-serif; letter-spacing: .04em; color: var(--deep, #164e63);
  text-transform: uppercase; user-select: none;
}
.ffshop-ftitle .ffshop-toggle { font-size: 12px; color: var(--dim, #94a3b8); transition: transform .2s; }
.ffshop-fsection.collapsed .ffshop-toggle { transform: rotate(-90deg); }
.ffshop-fsection.collapsed .ffshop-fbody { display: none; }
.ffshop-fbody { margin-top: 14px; display: flex; flex-direction: column; gap: 4px; }
.ffshop-opt {
  display: flex; align-items: center; justify-content: space-between; gap: 8px; padding: 8px 10px;
  border-radius: 8px; cursor: pointer; font: 500 13.5px/1.2 'Roboto', sans-serif; color: var(--muted, #475569);
  transition: background .15s;
}
.ffshop-opt:hover { background: var(--primary-soft, #ecfeff); }
.ffshop-opt input { accent-color: var(--primary, #06b6d4); width: 15px; height: 15px; }
.ffshop-opt .ffshop-optlabel { flex: 1; display: flex; align-items: center; gap: 8px; }
.ffshop-optcount { font-size: 11px; opacity: .7; padding: 1px 7px; background: rgba(15,23,42,.06); border-radius: 100px; }
.ffshop-range-row { display: flex; align-items: center; gap: 10px; }
.ffshop-range-row input[type=range] { flex: 1; accent-color: var(--primary, #06b6d4); }
.ffshop-range-val { font: 600 12.5px 'Josefin Sans', sans-serif; color: var(--primary, #06b6d4); min-width: 78px; text-align: right; }

/* ─── Results toolbar (glass-morphic, like the homepage) ─── */
.ffshop-content { flex: 1; min-width: 0; padding: 0 24px 56px; }
.ffshop-toolbar { display: flex; flex-wrap: nowrap; justify-content: space-between; align-items: center; gap: 12px; padding: 18px 0 14px; }
.ffshop-count { flex: 0 0 auto; white-space: nowrap; font: 12px 'Josefin Sans', sans-serif; color: var(--muted, #475569); letter-spacing: .06em; }
.ffshop-count strong { color: var(--primary, #06b6d4); font-weight: 600; }
.ffshop-tools { display: flex; align-items: center; gap: 10px; flex: 0 1 auto; min-width: 0; }

/* shared glass control surface */
.ffshop-search-wrap, .ffshop-sort-wrap, .ffshop-filterbtn {
  background: rgba(255, 255, 255, 0.72);
  -webkit-backdrop-filter: blur(22px) saturate(180%);
  backdrop-filter: blur(22px) saturate(180%);
  border: 1px solid rgba(6, 182, 212, 0.24);
  box-shadow: 0 4px 18px rgba(8, 47, 73, 0.07), inset 0 1px 0 rgba(255, 255, 255, 0.7);
  border-radius: 100px;
  transition: box-shadow .18s ease, border-color .18s ease, background .18s ease;
}
/* icon + input sit side-by-side via flex (no absolute positioning → can't overlap) */
.ffshop-search-wrap { display: flex; align-items: center; gap: 10px; height: 44px; padding: 0 18px; flex: 1 1 240px; min-width: 0; max-width: 300px; }
.ffshop-search-wrap > i { flex: 0 0 auto; color: var(--primary, #06b6d4); font-size: 14px; line-height: 1; pointer-events: none; }
.ffshop-search {
  -webkit-appearance: none; -moz-appearance: none; appearance: none;
  flex: 1 1 auto; min-width: 0; box-sizing: border-box; height: 100%; margin: 0; padding: 0;
  font: 14px 'Roboto', sans-serif; color: #0f172a;
  border: none; background: transparent; outline: none; box-shadow: none;
}
.ffshop-search::placeholder { color: var(--dim, #94a3b8); }
.ffshop-search-wrap:focus-within { border-color: rgba(6,182,212,.55); box-shadow: 0 6px 22px rgba(8,47,73,.12), 0 0 0 3px rgba(6,182,212,.14); }

/* sort = glass pill with custom caret (native arrow hidden) */
.ffshop-sort-wrap { position: relative; display: inline-flex; align-items: center; height: 44px; padding: 0 14px 0 16px; flex: 0 0 auto; }
.ffshop-sort-wrap > i:first-child { color: var(--primary, #06b6d4); font-size: 13px; margin-right: 8px; pointer-events: none; }
.ffshop-sortsel {
  appearance: none; -webkit-appearance: none; -moz-appearance: none;
  border: none; background: transparent; outline: none; cursor: pointer;
  font: 600 13.5px 'Josefin Sans', sans-serif; color: var(--deep, #164e63);
  padding: 0 22px 0 0; height: 100%;
}
.ffshop-sort-caret { position: absolute; right: 14px; color: var(--dim, #94a3b8); font-size: 11px; pointer-events: none; }
.ffshop-sort-wrap:hover, .ffshop-search-wrap:hover, .ffshop-filterbtn:hover { border-color: rgba(6,182,212,.45); box-shadow: 0 6px 22px rgba(8,47,73,.12), inset 0 1px 0 rgba(255,255,255,.6); }

.ffshop-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 4px; }
.ffshop-chips.has-chips { padding: 12px 0; border-bottom: 1px dashed var(--border, rgba(6,182,212,.16)); margin-bottom: 18px; }
.ffshop-chip { display: inline-flex; align-items: center; gap: 6px; background: var(--primary-soft, #ecfeff); color: var(--deep, #164e63); border: 1px solid var(--border-strong, rgba(6,182,212,.3)); border-radius: 20px; padding: 5px 12px; font: 500 12.5px 'Roboto', sans-serif; }
.ffshop-chip button { background: none; border: none; cursor: pointer; color: var(--deep, #164e63); font-size: 13px; line-height: 1; }
.ffshop-chip-clear { background: transparent; border: 1px solid var(--border-strong, rgba(6,182,212,.3)); border-radius: 20px; padding: 5px 12px; font: 500 12.5px 'Roboto', sans-serif; color: var(--muted, #475569); cursor: pointer; }
.ffshop-chip-clear:hover { background: var(--coral, #e84545); color: #fff; border-color: var(--coral, #e84545); }

/* ─── Product grid + cards ─── */
.ffshop-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; align-items: start; }
.ffshop-card {
  position: relative; display: flex; flex-direction: column; background: #fff;
  border: 1px solid var(--border, rgba(6,182,212,.16)); border-radius: var(--radius-lg, 18px);
  overflow: hidden; text-decoration: none; color: var(--text, #0f172a);
  box-shadow: var(--shadow-sm, 0 2px 8px rgba(6,95,120,.06)); transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.ffshop-card:hover {
  /* Elevate (designplan §3 / §6): lift -3px + shadow escalation + primary border */
  transform: translateY(-3px); border-color: var(--primary, #06b6d4);
  box-shadow: 0 14px 28px rgba(6,182,212,.14), 0 6px 14px rgba(15,23,42,.06);
}
.ffshop-card:hover .ffshop-card-img { transform: scale(1.05); }
.ffshop-card-hero { position: relative; aspect-ratio: 1/1; overflow: hidden; background: #f1f6f8; }
.ffshop-card-img { width: 100%; height: 100%; object-fit: contain; transition: transform .35s ease; padding: 10px; }
/* bottom gradient scrim so the glass category tag stays legible over any product photo */
.ffshop-card-hero::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 50%; z-index: 1; pointer-events: none;
  background: linear-gradient(to top, rgba(15,23,42,.22) 0%, rgba(15,23,42,0) 100%);
}
.ffshop-brand-badge {
  position: absolute; top: 10px; left: 10px; z-index: 2; background: rgba(255,255,255,.94);
  color: var(--deep, #164e63); font: 700 10.5px/1 'Josefin Sans', sans-serif; letter-spacing: .06em;
  text-transform: uppercase; padding: 5px 9px; border-radius: 100px; box-shadow: 0 2px 6px rgba(8,47,73,.12);
}
.ffshop-sale-badge {
  position: absolute; top: 10px; right: 10px; z-index: 2; background: var(--coral, #e84545); color: #fff;
  font: 700 10.5px/1 'Josefin Sans', sans-serif; letter-spacing: .04em; padding: 5px 9px; border-radius: 100px;
}
.ffshop-card-body { padding: 14px 16px 16px; flex: 1; display: flex; flex-direction: column; gap: 6px; }
/* category label = LIGHT glass tag (designplan §2b), lifted onto the hero bottom-left */
.ffshop-card-cat {
  position: absolute; left: 10px; bottom: 10px; z-index: 2;
  background: rgba(255,255,255,.96); color: var(--deep, #164e63);
  border-left: 3px solid var(--primary, #06b6d4); border-radius: 100px;
  padding: 5px 11px; font: 700 9.5px/1 'Josefin Sans', sans-serif; letter-spacing: .1em; text-transform: uppercase;
  box-shadow: 0 2px 6px rgba(8,47,73,.12);
}
.ffshop-card-name {
  font: 600 16px/1.22 'Josefin Sans', sans-serif; color: var(--text, #0f172a); margin: 0;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; min-height: 2.4em;
}
.ffshop-card-foot { margin-top: auto; padding-top: 12px; display: flex; align-items: flex-end; justify-content: space-between; gap: 10px; }
.ffshop-price { display: flex; flex-direction: column; }
.ffshop-price-srp { font-size: 12.5px; color: var(--dim, #94a3b8); text-decoration: line-through; }
.ffshop-price-amt { font: 600 20px/1 'Josefin Sans', sans-serif; color: var(--text, #0f172a); }
.ffshop-price-note { font-size: 9.5px; color: var(--dim, #94a3b8); margin-top: 3px; font-family: 'Josefin Sans', sans-serif; letter-spacing: .03em; }
.ffshop-card-cta {
  /* iDive primary gradient — designplan §1 (verbatim rest stops) */
  display: inline-flex; align-items: center; gap: 6px;
  background: linear-gradient(135deg, rgba(16,185,129,.96) 0%, rgba(6,182,212,.96) 50%, rgba(29,78,216,.96) 100%);
  color: #fff; border: 1px solid rgba(255,255,255,.22); padding: 9px 16px; border-radius: 100px;
  font: 600 12.5px 'Roboto', sans-serif; white-space: nowrap;
  box-shadow: 0 6px 18px rgba(29,78,216,.30), 0 3px 10px rgba(16,185,129,.18), inset 0 1px 0 rgba(255,255,255,.26);
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
/* hover (Elevate §1): card hover OR direct CTA hover swaps to the solid hover gradient */
.ffshop-card:hover .ffshop-card-cta,
.ffshop-card-cta:hover {
  background: linear-gradient(135deg,#0ea371 0%,#0891b2 50%,#1e40af 100%);
  box-shadow: 0 12px 26px rgba(29,78,216,.42), 0 5px 14px rgba(16,185,129,.22), inset 0 1px 0 rgba(255,255,255,.32);
}
.ffshop-card-cta i { font-size: 10px; }
.ffshop-oos { position: absolute; inset: 0; background: rgba(255,255,255,.55); display: flex; align-items: center; justify-content: center; }
.ffshop-oos span { background: rgba(15,23,42,.82); color: #fff; padding: 6px 14px; border-radius: 100px; font: 600 12px 'Josefin Sans', sans-serif; }

/* ─── No results ─── */
.ffshop-noresults { grid-column: 1/-1; padding: 64px 24px; text-align: center; color: var(--muted, #475569); font-family: 'Josefin Sans', sans-serif; }
.ffshop-noresults h3 { font-size: 22px; color: var(--deep, #164e63); margin: 0 0 8px; font-weight: 600; }
.ffshop-noresults button {
  /* primary action → gradient §1, never a flat fill */
  margin-top: 14px; color: #fff; border: 1px solid rgba(255,255,255,.22); padding: 10px 18px; border-radius: 100px;
  font: 600 13px 'Roboto', sans-serif; cursor: pointer;
  background: linear-gradient(135deg, rgba(16,185,129,.96) 0%, rgba(6,182,212,.96) 50%, rgba(29,78,216,.96) 100%);
  box-shadow: 0 6px 18px rgba(29,78,216,.30), 0 3px 10px rgba(16,185,129,.18), inset 0 1px 0 rgba(255,255,255,.26);
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.ffshop-noresults button:hover {
  transform: translateY(-1px);
  background: linear-gradient(135deg,#0ea371 0%,#0891b2 50%,#1e40af 100%);
  box-shadow: 0 12px 26px rgba(29,78,216,.42), 0 5px 14px rgba(16,185,129,.22), inset 0 1px 0 rgba(255,255,255,.32);
}

/* ─── Filter button (glass pill — hidden on desktop, shown on mobile) ─── */
.ffshop-filterbtn {
  display: none; align-items: center; gap: 8px; height: 44px; padding: 0 18px; cursor: pointer;
  font: 600 13.5px 'Josefin Sans', sans-serif; color: var(--deep, #164e63); white-space: nowrap;
}
.ffshop-filterbtn i { color: var(--primary, #06b6d4); font-size: 14px; }
.ffshop-sidebar-overlay {
  position: fixed; inset: 0; z-index: 299; display: none;
  background: rgba(8, 47, 73, 0.42); -webkit-backdrop-filter: blur(5px); backdrop-filter: blur(5px);
}
.ffshop-sidebar-overlay.show { display: block; }

.ffshop-finalcta { background: linear-gradient(135deg,#083344,#0e7490); color: #fff; padding: 56px 24px; text-align: center; }
.ffshop-finalcta h2 { font: 600 30px 'Josefin Sans', sans-serif; margin: 0 0 10px; }
.ffshop-finalcta p { color: rgba(255,255,255,.85); max-width: 560px; margin: 0 auto 22px; font-size: 15px; }
.ffshop-finalcta a { display: inline-flex; align-items: center; gap: 8px; background: #25d366; color: #fff; text-decoration: none; padding: 13px 26px; border-radius: 100px; font: 600 15px 'Josefin Sans', sans-serif; }

/* ─── Sheet chrome hidden on desktop (sidebar is the left column) ─── */
.ffshop-sidebar-head, .ffshop-sidebar-foot { display: none; }
.ffshop-sidebar-body { display: block; }
/* sort options as radios (reuse .ffshop-opt look) */
.ffshop-opt-radio input { accent-color: var(--primary, #06b6d4); }

/* ─── Responsive ─── */
@media (max-width: 980px) { .ffshop-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 720px) {
  .ffshop-hero { padding: 100px 18px 26px; }
  .ffshop-hero h1 { font-size: 30px; }
  .ffshop-hero-stats { gap: 20px; }
  .ffshop-hero-stats strong { font-size: 21px; }
  .ffshop-layout { display: block; }
  .ffshop-content { padding: 0 16px 36px; }
  .ffshop-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .ffshop-card-name { font-size: 14px; }
  .ffshop-price-amt { font-size: 17px; }
  .ffshop-card-cta { padding: 8px 12px; font-size: 11.5px; }

  /* toolbar: count row → search (full width) → [Filters | Sort] row */
  .ffshop-toolbar { flex-wrap: wrap; gap: 10px; padding: 14px 0 12px; }
  .ffshop-count { width: 100%; }
  .ffshop-tools { width: 100%; flex-wrap: wrap; gap: 10px; }
  .ffshop-search-wrap { flex: 1 1 100%; max-width: none; }
  .ffshop-filterbtn { display: inline-flex; flex: 1 1 100%; justify-content: center; }

  /* ─── Glass BOTTOM SHEET (slides up from the bottom, like the homepage) ─── */
  .ffshop-sidebar {
    display: none; flex-direction: column;
    position: fixed; left: 0; right: 0; bottom: 0; top: auto; z-index: 300;
    width: 100%; max-width: none; height: 86vh; max-height: 86vh;
    border: none; border-top: 1px solid rgba(255, 255, 255, 0.55); border-radius: 22px 22px 0 0;
    background: linear-gradient(180deg, rgba(255,255,255,0.86) 0%, rgba(255,255,255,0.66) 100%);
    -webkit-backdrop-filter: blur(22px) saturate(180%); backdrop-filter: blur(22px) saturate(180%);
    box-shadow: 0 -12px 40px rgba(6, 95, 120, 0.24);
    overflow: hidden; padding: 0;
    animation: ffshop-slideup .34s cubic-bezier(.4, 0, .2, 1);
  }
  .ffshop-sidebar.mobile-open { display: flex; }
  /* grabber handle */
  .ffshop-sidebar.mobile-open::before {
    content: ''; position: absolute; top: 8px; left: 50%; transform: translateX(-50%);
    width: 40px; height: 4px; border-radius: 999px; background: rgba(15,23,42,.18); z-index: 4;
  }
  .ffshop-sidebar-head {
    display: flex; align-items: center; justify-content: space-between; flex-shrink: 0;
    position: sticky; top: 0; z-index: 2; padding: 22px 20px 14px; margin: 0;
    border-bottom: 1px solid rgba(15,23,42,.08); background: transparent;
    font: 600 17px 'Josefin Sans', sans-serif; color: var(--navy, #0f172a); letter-spacing: .02em;
  }
  .ffshop-sidebar-close {
    width: 34px; height: 34px; border-radius: 50%; cursor: pointer;
    background: var(--bg-soft, #f8fdff); border: 1px solid var(--border, rgba(6,182,212,.16));
    color: var(--text, #0f172a); font-size: 16px; display: inline-flex; align-items: center; justify-content: center;
  }
  .ffshop-sidebar-body { flex: 1; overflow-y: auto; -webkit-overflow-scrolling: touch; padding-bottom: 8px; }
  .ffshop-sidebar-foot {
    display: flex; align-items: center; gap: 10px; flex-shrink: 0;
    padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
    border-top: 1px solid rgba(15,23,42,.08);
    background: linear-gradient(180deg, rgba(255,255,255,.62), rgba(255,255,255,.82));
    -webkit-backdrop-filter: blur(18px) saturate(180%); backdrop-filter: blur(18px) saturate(180%);
  }
  .ffshop-sheet-clear {
    flex: 0 0 auto; padding: 12px 18px; background: transparent;
    border: 1px solid var(--border-strong, rgba(6,182,212,.3)); color: var(--muted, #475569);
    font: 500 13px 'Roboto', sans-serif; border-radius: 12px; cursor: pointer;
  }
  .ffshop-sheet-apply {
    /* primary action → gradient §1 */
    flex: 1; padding: 13px 18px; color: #fff; border: 1px solid rgba(255,255,255,.22);
    border-radius: 12px; font: 600 14px 'Roboto', sans-serif; letter-spacing: .02em; cursor: pointer;
    background: linear-gradient(135deg, rgba(16,185,129,.96) 0%, rgba(6,182,212,.96) 50%, rgba(29,78,216,.96) 100%);
    box-shadow: 0 6px 18px rgba(29,78,216,.30), 0 3px 10px rgba(16,185,129,.18), inset 0 1px 0 rgba(255,255,255,.26);
  }
  .ffshop-sheet-apply:active { transform: scale(.98); }
  .ffshop-fsection { background: transparent; }
}
@keyframes ffshop-slideup { from { transform: translateY(100%); } to { transform: translateY(0); } }

/* ─── Glass fallback: solid surfaces where backdrop-filter is unsupported (designplan §2) ─── */
@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  .ffshop-search-wrap, .ffshop-sort-wrap, .ffshop-filterbtn { background: rgba(255,255,255,.96); }
  .ffshop-sidebar-overlay { background: rgba(8,47,73,.6); }
  .ffshop-sidebar { background: rgba(255,255,255,.97); }
  .ffshop-sidebar-foot { background: rgba(255,255,255,.97); }
}

/* ─── Motion safety: honour prefers-reduced-motion (designplan §6) ─── */
@media (prefers-reduced-motion: reduce) {
  .ffshop-card, .ffshop-card-img, .ffshop-card-cta,
  .ffshop-catpill, .ffshop-noresults button,
  .ffshop-search-wrap, .ffshop-sort-wrap, .ffshop-filterbtn,
  .ffshop-sheet-apply { transition: none; }
  .ffshop-card:hover { transform: none; }
  .ffshop-card:hover .ffshop-card-img { transform: none; }
  .ffshop-noresults button:hover { transform: none; }
  .ffshop-sheet-apply:active { transform: none; }
  .ffshop-sidebar { animation: none; }
}
