/* blood-orange.css START */
/* =========================================================
   blood-orange.css — LOOK LAYER (colors + glow)
   “Theme but not theme”: overlays global structure safely
   ========================================================= */
/* ======================================
   BLOOD-ORANGE = VISUAL SKIN
   Do NOT define layout or grids here
   ====================================== */

:root{
  --bo-accent:#e4572e;
  --bo-accent-2:rgba(216,31,38,.55);
  --bo-gold:rgba(245,182,29,.22);

  --bo-surface:rgba(0,0,0,.35);
  --bo-surface-2:rgba(255,255,255,.03);

  --bo-border:#817c7a;
  --bo-border-soft:rgba(255,255,255,.10);

  --bo-text:rgba(255,255,255,.90);
  --bo-text-dim:rgba(255,255,255,.70);

  --bo-shadow:0 10px 26px rgba(0,0,0,.22);
  --bo-shadow-glow:
    0 0 0 1px rgba(216,31,38,.35),
    0 0 12px rgba(216,31,38,.25),
    0 0 20px rgba(245,182,29,.16);
}

/* =========================================================
   HEADER — look only
   ========================================================= */

.header{
  position:relative;
  background:linear-gradient(90deg,#050507,#171824 40%,#050507);
  box-shadow:0 8px 30px rgba(0,0,0,.85);
  border-bottom:1px solid rgba(255,255,255,.06);
  color:#f5f5f8;
}
.header::after{
  content:"";
  position:absolute;
  left:0; right:0;
  bottom:3px;
  height:3px;
  background:var(--bo-accent);
  pointer-events:none;
  box-shadow:
    0 0 10px rgba(228,87,46,.25),
    0 0 18px rgba(245,182,29,.12);
}

/* Login/admin links */
.header .login-link,
.header .admin-link,
.header .logout-link{
  font-size:14px;
  color:rgba(255,255,255,.85);
}
.header .login-link:hover,
.header .admin-link:hover,
.header .logout-link:hover{
  color:#fff;
  text-shadow:
    0 0 8px rgba(228,87,46,.30),
    0 0 16px rgba(228,87,46,.18);
}

/* =========================================================
   BO PILL / CHIP / BUTTON (canonical look)
   NOTE: these are the ONLY definitions — no “fix-up” overrides later
   ========================================================= */

/* --- Pills (scores / tiny badges) --- */
/* =========================================================
   BO PILL — SCORE BADGES (quiet, outline-only)
   ========================================================= */

.bo-pill{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:6px;

  min-height:28px;
  padding:0 12px;
  border-radius:999px;

  font-size:12px;
  font-weight:900;
  letter-spacing:.15px;
  line-height:1;
  white-space:nowrap;

  color:#fff;
  background:transparent;                 /* no fill */
  border:1px solid rgba(255,255,255,.85); /* white outline */

  box-shadow:none;                        /* kill glow */
  text-decoration:none;

  transition:border-color .15s ease, background .15s ease, transform .08s ease, color .15s ease;
}

/* very subtle hover (no glow) */
.bo-pill:hover,
.bo-pill:focus-visible{
  outline:none;
  background:rgba(255,255,255,.06);
  border-color:rgba(255,255,255,.95);
}

/* press */
.bo-pill:active{
  transform:translateY(1px);
}

/* Active = slightly stronger outline only */
.bo-pill.is-active,
.bo-pill--active{
  border-color:#fff;
  background:rgba(255,255,255,.08);
}

/* Sizes unchanged */
.bo-pill--sm{
  min-height:26px;
  padding:0 10px;
  font-size:12px;
  font-weight:850;
}

.bo-pill--xs{
  min-height:22px;
  padding:0 9px;
  font-size:11px;
  font-weight:800;
}

/* --- Chips (tags/filters/links) --- */
.bo-chip{
  display:inline-flex;
  align-items:center;
  gap:6px;

  min-height:30px;
  padding:0 13px;
  border-radius:999px;

  font-size:12.5px;
  font-weight:800;
  letter-spacing:.15px;
  line-height:1;

  color:#fff;
  background:rgba(0,0,0,.35);
  border:1px solid rgba(228,87,46,.88);

  box-shadow:
    0 0 0 1px rgba(0,0,0,.35) inset,
    0 0 12px rgba(216,31,38,.20),
    0 0 22px rgba(245,182,29,.16);

  text-decoration:none;
  transition:transform .12s ease, border-color .18s ease, background .18s ease, box-shadow .18s ease, color .18s ease;
}
.bo-chip:hover,
.bo-chip:focus-visible{
  outline:none;
  color:#fff;
  background:rgba(228,87,46,.10);
  border-color:rgba(228,87,46,.98);
  box-shadow:var(--bo-shadow-glow);
  transform:translateY(-1px);
}

.bo-chip--meta{
  border-color:rgba(228,87,46,.88);
  color:rgba(255,255,255,.92);
  background:rgba(0,0,0,.35);
}
.bo-chip--meta:hover,
.bo-chip--meta:focus-visible{
  border-color:rgba(228,87,46,.98);
  background:rgba(228,87,46,.10);
  color:#fff;
}

/* --- Buttons (match the chip/pill energy) --- */
.bo-btn{
  appearance:none;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;

  min-height:32px;
  padding:0 14px;
  border-radius:10px;

  font-size:13px;
  font-weight:800;
  letter-spacing:.15px;
  line-height:1;

  color:#fff;
  background:var(--bo-surface);
  border:1px solid rgba(228,87,46,.88);

  cursor:pointer;
  text-decoration:none;

  box-shadow:
    0 0 0 1px rgba(0,0,0,.35) inset,
    0 0 12px rgba(216,31,38,.20),
    0 0 22px rgba(245,182,29,.16);

  transition:border-color .15s ease, box-shadow .15s ease, background .15s ease, transform .08s ease, color .15s ease;
}
.bo-btn:hover,
.bo-btn:focus-visible{
  outline:none;
  border-color:var(--bo-accent);
  background:rgba(228,87,46,.10);
  box-shadow:var(--bo-shadow-glow);
  transform:translateY(-1px);
}
.bo-btn:active{ transform:translateY(0); }

.bo-btn--primary{
  border-color:rgba(228,87,46,.98);
}
.bo-btn--sm{ min-height:30px; padding:0 12px; font-size:13px; }










/* --- Chips (tags/filters/links) --- */
/* Smaller, crisper, white-outline by default. White glow when active. */
.bo-chip{
  display:inline-flex;
  align-items:center;
  gap:6px;

  /* smaller */
  min-height:24px;
  padding:0 9px;

  /* less round */
  border-radius:25px;


  /* crisper text */
  font-size:12px;
  font-weight:600;
  letter-spacing:.12px;
  line-height:1;

  color:rgba(255,255,255,.92);
  background:rgba(0,0,0,.25);

  /* white/grey outline */
  border:1px solid rgba(255,255,255,.28);

  /* crisp, minimal depth */
  box-shadow:
    0 0 0 1px rgba(0,0,0,.35) inset;

  text-decoration:none;
  transition:
    transform .10s ease,
    border-color .14s ease,
    background .14s ease,
    box-shadow .14s ease,
    color .14s ease;
}

.bo-chip:hover,
.bo-chip:focus-visible{
  outline:none;
  color:#fff;
  background:rgba(255,255,255,.06);
  border-color:rgba(255,255,255,.45);
  box-shadow:
    0 0 0 1px rgba(0,0,0,.35) inset,
    0 0 0 1px rgba(255,255,255,.10);
  transform:translateY(-1px);
}

.bo-chip:active{ transform:translateY(0); }

/* Meta chips: slightly dimmer (still same shape/size) */
.bo-chip--meta{
  border-color:rgba(255,255,255,.22);
  color:rgba(255,255,255,.80);
  background:rgba(0,0,0,.22);
}
.bo-chip--meta:hover,
.bo-chip--meta:focus-visible{
  border-color:rgba(255,255,255,.40);
  background:rgba(255,255,255,.05);
  color:#fff;
}

/* Active state: keep the same compact look, add WHITE glow */
.bo-chip.is-active{
  color:#fff;
  background:rgba(228,87,46,.08);

  /* orange border */
  border-color:rgba(228,87,46,.95);

  box-shadow:
    /* subtle inner depth only */
    0 0 0 1px rgba(0,0,0,.35) inset,

    /* orange/red theme glow */
    0 0 10px rgba(228,87,46,.45),
    0 0 18px rgba(216,31,38,.30);
}

/* Active hover/focus: slightly stronger accent, still restrained */
.bo-chip.is-active:hover,
.bo-chip.is-active:focus-visible{
  background:rgba(228,87,46,.12);
  border-color:rgba(228,87,46,1);

  box-shadow:
    0 0 0 1px rgba(0,0,0,.35) inset,
    0 0 12px rgba(228,87,46,.55),
    0 0 22px rgba(216,31,38,.38);
}

/* =========================================================
   PRODUCT — look layer
   ========================================================= */

.page-product .product-shell{
  background:#0b0f18;
  box-shadow:0 28px 80px rgba(0,0,0,0.85);
}

/* Breadcrumb links */
.page-product .product-hero-bc{ color:#a5afc8; }
.page-product .product-hero-bc a{ color:#c4d4ff; }
.page-product .product-hero-bc a:hover{ color:#fff; text-decoration:underline; }

.page-product .product-title{ color:#ffffff; }

/* Media block look */
.page-product .media-block{
  background:#05070b;
  box-shadow:0 18px 50px rgba(0,0,0,0.85);
}
.page-product .media-main{ background:#000; }

/* YouTube placeholder button look */
.page-product .youtube-placeholder{ position:relative; cursor:pointer; }
.page-product .youtube-placeholder .yt-overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(to top, rgba(0,0,0,.6), rgba(0,0,0,0));
}
.page-product .youtube-placeholder .yt-button-wrap{
  position:absolute;
  left:50%;
  top:50%;
  transform:translate(-50%,-50%);
  width:64px;
  height:64px;
  border-radius:50%;
  border:2px solid rgba(255,255,255,.85);
}
.page-product .youtube-placeholder .yt-button-wrap::after{
  content:'';
  position:absolute;
  left:50%;
  top:50%;
  transform:translate(-40%,-50%);
  border-style:solid;
  border-width:10px 0 10px 18px;
  border-color:transparent transparent transparent #fff;
}

/* Panels look */
.page-product .rating-panel,
.page-product .info-panel,
.page-product .reviews-panel{
  background:#10141f;
  color:#d6dbf2;
  box-shadow:0 18px 40px rgba(0,0,0,0.8);
}
.page-product .info-panel h3,
.page-product .reviews-panel h3{ color:#f5f5f8; }

.page-product .info-panel .desc{
  color:rgba(255,255,255,.88);
  font-size:14.5px;
}
.page-product .info-panel a{ color:rgba(255,255,255,.92); text-decoration:underline; text-underline-offset:2px; }

/* Rating row colors */
.page-product .rating-row-name{ color:#e3e7ff; }
.rating-row-label{ color:#f5c46a; }

/* Bar background + hover language */
.rating-row-bar{ background:#1e2330; }

/* Hover glow on rating square */
.rating-row:hover .rating-row-scorebox{
  box-shadow:
    0 0 0 1px rgba(255,255,255,.9),
    0 0 12px rgba(216,31,38,.45),
    0 0 20px rgba(245,182,29,.35);
  transition: box-shadow .2s ease, transform .2s ease;
  transform: translateY(-1px);
}

/* Overall row emphasis */
.rating-row--overall .rating-row-name{
  color:#fff;
  text-shadow:
    0 0 6px rgba(245,182,29,.35),
    0 0 14px rgba(245,182,29,.20);
}
.rating-row--overall .rating-row-label{
  color:#f5c46a;
  text-shadow:
    0 0 5px rgba(245,182,29,.30),
    0 0 10px rgba(245,182,29,.18);
}

/* Selected rating row (single source of truth) */
.rating-row.is-selected{
  padding:0 10px 7px;
  margin:0 -10px;
  background:rgba(255,255,255,.05);
  border:1px solid rgba(255,170,60,.25);
  border-radius:12px;
  box-shadow:
    0 0 0 1px rgba(255,255,255,.10),
    0 0 12px rgba(216,31,38,.30),
    0 0 20px rgba(245,182,29,.22);
}
.rating-row.is-selected .rating-row-name{
  text-shadow:0 0 10px rgba(245,182,29,.18);
}

/* =========================================================
   PRODUCT HERO — chip spacing
   ========================================================= */

.hero-chips{
  margin-bottom:12px;   /* space below the pill row */
}
.hero-chips > *{
  margin-bottom:6px;    /* breathing room if chips wrap */
}

/* =========================================================
   INLINE BREAKDOWN (replaces wheel/modal) — de-duped
   ========================================================= */

.inline-breakdown{
  margin-top:14px;
  padding-top:12px;
  border-top:1px dashed rgba(255,255,255,.14);
}

.inline-breakdown-body{
  margin-top:10px;
  max-height:360px;
  overflow:auto;
  padding:12px 12px;
  padding-right:6px; /* helps with scrollbar overlap */
  border-radius:12px;
  background:rgba(255,255,255,.03);
  border:1px solid rgba(255,255,255,.08);
  box-shadow:0 10px 26px rgba(0,0,0,.25);
}
.inline-breakdown-body,
.inline-breakdown-body *{ color:rgba(255,255,255,.92); }
.inline-breakdown-body .u-muted{ color:rgba(255,255,255,.72); }

/* Breakdown header injected by JS */
.inline-breakdown .rb-panel-head{
  padding:14px 14px 10px;
  border-bottom:1px solid rgba(255,255,255,.08);
}
.inline-breakdown .rb-panel-title{
  font-weight:800;
  font-size:16px;
  color:#fff;
  margin:0 0 2px;

}
.inline-breakdown .rb-panel-sub{
  font-size:12px;
  color:rgba(255,255,255,.70);
}

/* Histogram look */
.page-product .hist-bar{ background:rgba(255,255,255,.06); }
.page-product .hist-x{ color:rgba(255,255,255,.70); }
.page-product .hist-tip{
  background:rgba(0,0,0,.55);
  border:1px solid rgba(255,255,255,.10);
  color:rgba(255,255,255,.92);
}

/* rb-hist wrapper inside ajax HTML */
.inline-breakdown-body .rb-hist{
  margin-top:10px;
  padding:10px 10px 8px;
  border-radius:12px;
  background:rgba(0,0,0,.22);
  border:1px solid rgba(255,255,255,.07);
}
.inline-breakdown-body .rb-hist .hist-row{ gap:6px; }
.inline-breakdown-body .rb-hist .hist-bar{
  border-radius:10px;
  border:1px solid rgba(255,255,255,.06);
  background:rgba(255,255,255,.03);
}
.inline-breakdown-body .rb-hist #histTip{
  margin-top:8px;
  font-size:12px;
  color:rgba(255,255,255,.78);
}

/* =========================================================
   Breakdown header + text cards (canonical)
   ========================================================= */

.rb-head{
  margin:6px 0 10px;
  padding:10px 12px 9px;
  border-radius:12px;
  background:rgba(0,0,0,.22);
  border:1px solid rgba(255,255,255,.08);
  box-shadow:0 10px 26px rgba(0,0,0,.22);
}
.rb-head .rb-title{
  font-size:13px;
  font-weight:850;
  letter-spacing:.2px;
  color:rgba(255,255,255,.95);
  margin:0 0 4px;
}
.rb-head .rb-sub{
  font-size:12px;
  line-height:1.25;
  color:rgba(255,255,255,.62);
  margin:0 0 2px;
}
.rb-head .rb-sub strong{
  color:rgba(255,255,255,.88);
  font-weight:850;
}
.rb-head .rb-meta{
  font-size:11px;
  color:rgba(255,255,255,.50);
}

.rb-texts{ margin-top:12px; }
.rb-texts-title{
  margin:0 0 8px;
  font-size:12px;
  font-weight:850;
  letter-spacing:.2px;
  color:rgba(255,255,255,.78);
}

.rb-text{
  margin-top:10px;
  padding:10px 12px;
  border-radius:12px;
  background:rgba(255,255,255,.03);
  border:1px solid rgba(255,170,60,.45);
  box-shadow:0 10px 26px rgba(0,0,0,.22);
  transition:background .25s ease, border-color .25s ease, box-shadow .25s ease, transform .15s ease;
}
.rb-text:hover{
  background:rgba(255,255,255,.05);
  border-color:rgba(255,170,60,.45);
  box-shadow:
    0 0 0 1px rgba(255,255,255,.10),
    0 0 12px rgba(216,31,38,.35),
    0 0 22px rgba(245,182,29,.25);
  transform:translateY(-1px);
}

.rb-text .rb-user{
  display:flex;
  align-items:center;
  gap:8px;
  margin-bottom:6px;
  font-size:12px;
  font-weight:850;
  color:rgba(255,255,255,.90);
  opacity:.95;
}

.rb-text .rb-avatar{
  width:26px;
  height:26px;
  border-radius:50%;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-size:13px;
  font-weight:900;
  color:#000;
  background:linear-gradient(135deg,#ff9c1a,#d81f26);
  box-shadow:
    0 0 0 1px rgba(255,255,255,.12),
    0 10px 22px rgba(0,0,0,.35);
  flex:0 0 auto;
}
.rb-text .rb-name{
  font-size:13px;
  font-weight:850;
  color:rgba(255,255,255,.92);
}
.rb-text .rb-score{
  margin-left:auto;
  font-size:12px;
  font-weight:900;
  padding:4px 8px;
  border-radius:10px;
  background:rgba(255,255,255,.07);
  border:1px solid rgba(255,255,255,.18);
  color:#fff;
  line-height:1;
}

.rb-text .rb-content{
  font-size:13px;
  line-height:1.45;
  color:rgba(255,255,255,.82);
}

/* =========================================================
   Inline breakdown score badge (works with plain <span class="rb-score">)
   ========================================================= */

/* =========================================================
   RB SCORE — FORCE same look as bo-pill (even at rest)
   ========================================================= */

.rb-score{
  /* hard reset anything inherited */
  background:rgba(0,0,0,.35) !important;
  color:#fff !important;

  border:1px solid rgba(255,120,40,.85) !important;

  box-shadow:
    0 0 0 1px rgba(0,0,0,.35) inset,
    0 0 12px rgba(216,31,38,.28),
    0 0 22px rgba(245,182,29,.22) !important;
}

/* Hover = SAME energy as other pills */
.rb-score:hover,
.rb-score:focus-visible{
  background:rgba(0,0,0,.45) !important;
  border-color:rgba(255,150,60,.95) !important;

  box-shadow:
    0 0 0 1px rgba(255,255,255,.14) inset,
    0 0 14px rgba(216,31,38,.38),
    0 0 26px rgba(245,182,29,.30) !important;

  transform:translateY(-1px);
}

/* =========================================================
   PRODUCT — USER REVIEWS (cards + breakdown)
   Matches product.php markup: .reviews-panel / .review-card / .rc-card
   ========================================================= */

.reviews-panel{
  margin-top:22px;
  border-top:1px solid rgba(255,255,255,.08);
}

.reviews-panel .pad{
  padding:18px 18px 10px;
}

.reviews-panel .rtitle{
  margin:0 0 12px;
  font-size:16px;
  font-weight:900;
  letter-spacing:.2px;
  color:rgba(255,255,255,.92);
}

.reviews-grid{
  display:grid;
  grid-template-columns:1fr;
  gap:14px;
}

.review-card{
  padding:14px 14px 12px;
  border-radius:14px;
  background:linear-gradient(180deg, rgba(255,255,255,.04), rgba(0,0,0,.18));
  border:1px solid rgba(255,255,255,.08);
  box-shadow:0 14px 40px rgba(0,0,0,.35);
}

.review-title-row{
  display:flex;
  align-items:flex-start;
  gap:10px;
}

.review-title{
  font-size:14px;
  font-weight:900;
  color:rgba(255,255,255,.92);
  line-height:1.1;
}

.review-summary{
  margin-top:8px;
  font-size:13px;
  line-height:1.45;
  color:rgba(255,255,255,.84);
}

.review-actions{
  margin-top:10px;
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  align-items:center;
  padding-bottom:10px;
  border-bottom:1px solid rgba(255,255,255,.08);
}

/* Expand/collapse */
.review-expand{
  margin-top:12px;
  display:none;
}
.review-card.is-open .review-expand{
  display:block;
}

/* Per-category breakdown cards */
.rc-card{
  margin-top:10px;
  padding:10px 12px;
  border-radius:12px;
  background:rgba(255,255,255,.03);
  border:1px solid rgba(255,255,255,.08);
}

.rc-head{
  display:flex;
  align-items:center;
  gap:10px;
  margin-bottom:6px;
}

.rc-title{
  font-size:13px;
  font-weight:850;
  color:rgba(255,255,255,.9);
}

.rc-body{
  font-size:13px;
  line-height:1.45;
  color:rgba(255,255,255,.82);
}
.rc-body--empty{ opacity:.75; }

/* Push the score pill to the far right */
.rc-head .bo-pill{ margin-left:auto; }

/* Footer */
.reviews-footer{
  padding:12px 18px 18px;
}

/* Small tweaks for the "muted" helper */
.reviews-panel .u-muted{
  color:rgba(255,255,255,.62);
}

/* =========================================================
   BROWSE CARDS — look layer
   ========================================================= */

.card-minimal{
  background:var(--card-bg);
  color:var(--ink);
  box-shadow:0 2px 6px rgba(0,0,0,.20);
}
.card-rating-strip{
  background: linear-gradient(180deg, rgba(5,5,10,0.00), rgba(5,5,10,0.96));
  border-top:1px solid rgba(255,255,255,0.05);
  color:#f5f5f8;
}
.card-rating-strip .crs-bar-bg{ background:rgba(255,255,255,0.18); }
.card-rating-strip .crs-bar-fill{ background:linear-gradient(90deg,#ff3144,#ff9b3c); }

.card-minimal .crs-score{
  background:rgba(6,6,10,0.92);
  border:1px solid rgba(255,255,255,0.20);
  box-shadow: 0 0 0 1px rgba(0,0,0,0.85), 0 0 10px rgba(0,0,0,0.75);
  color:#fff;
}

.rc-filter-overlay{
  background:rgba(0,0,0,0.82);
  color:#fff;
  border:1px solid rgba(255,255,255,0.14);
  box-shadow:
    0 10px 26px rgba(0,0,0,0.55),
    0 0 0 1px rgba(0,0,0,0.35);
  backdrop-filter: blur(6px);
}
/* =========================================================
   Browse card – ReviewCategory sort overlay (image overlay)
   ========================================================= */

.card-minimal .card-rc-overlay{
  position:absolute;
  left:10px;
  right:10px;
  bottom:54px;
  z-index:6;

  padding:8px 10px;
  font-size:12px;
  line-height:1.15;
  font-weight:700;

  color:rgba(255,255,255,.96);

  background:linear-gradient(
    to top,
    rgba(0,0,0,.90),
    rgba(0,0,0,.65)
  );
  
  text-shadow:0 1px 2px rgba(0,0,0,.9);

  border:1px solid rgba(255,255,255,.08);
  border-radius:10px;

  box-shadow:
    0 10px 26px rgba(0,0,0,.55),
    inset 0 0 0 1px rgba(255,255,255,.04);

  pointer-events:none;
}


/* =========================================================
   MODAL — ensure hidden by default
   ========================================================= */

#wr-modal-overlay,
#wr-modal{
  display:none;
}

/* when opened, your JS should add .is-open to <body> */
body.is-open #wr-modal-overlay{
  display:block;
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.65);
  z-index:9998;
}

body.is-open #wr-modal{
  display:block;
  position:fixed;
  left:50%;
  top:50%;
  transform:translate(-50%,-50%);
  z-index:9999;
}
/* =========================================================
   BROWSE — FILTER BAR + HEADING + MODALS (LOOK)
   ========================================================= */

/* Filter bar look */
.filter-bar{
  background:linear-gradient(180deg, rgba(255,255,255,.03), rgba(0,0,0,.25));
  border:1px solid rgba(255,255,255,.10);
  box-shadow:0 18px 40px rgba(0,0,0,.55);
}

/* Field labels */
.filter-bar .wr-field label{
  color:rgba(255,255,255,.78);
}

/* Make selects match BO vibe (light touch) */
.filter-bar select{
  background:rgba(0,0,0,.35);
  border:1px solid rgba(255,255,255,.14);
  color:rgba(255,255,255,.92);
}
.filter-bar select:focus{
  outline:none;
  border-color:rgba(228,87,46,.85);
  box-shadow:var(--bo-shadow-glow);
}

/* Heading + year pill */
.page-heading{ color:#fff; }
.heading-year-link{
  border:1px solid rgba(255,255,255,.16);
  background:rgba(0,0,0,.28);
  color:rgba(255,255,255,.90);
  box-shadow:0 10px 26px rgba(0,0,0,.25);
}
.heading-year-link:hover,
.heading-year-link:focus-visible{
  outline:none;
  border-color:rgba(228,87,46,.85);
  background:rgba(228,87,46,.10);
  box-shadow:var(--bo-shadow-glow);
}

/* Meta */
.meta{ color:rgba(255,255,255,.70); }

/* “More +” button in RC row */
.rc-more-btn{
  cursor:pointer;
}

/* Modals look */
.wr-modal__backdrop{
  background:rgba(0,0,0,.68);
}

.wr-modal__panel{
  background:#10141f;
  border:1px solid rgba(255,255,255,.10);
  box-shadow:0 26px 70px rgba(0,0,0,.75);
  color:rgba(255,255,255,.92);
}

.wr-modal__head{
  background:linear-gradient(180deg, rgba(255,255,255,.04), rgba(0,0,0,.15));
  border-bottom:1px solid rgba(255,255,255,.08);
}

.wr-modal__close{
  color:rgba(255,255,255,.92);
}
.wr-modal__close:hover{
  text-shadow:
    0 0 10px rgba(228,87,46,.25),
    0 0 18px rgba(245,182,29,.14);
}

/* Radio rows */
.wr-modal-fieldset label{
  background:rgba(0,0,0,.22);
  border:1px solid rgba(255,255,255,.10);
  border-radius:12px;
  padding:10px 12px;
}
.wr-modal-fieldset input{ accent-color: var(--bo-accent); }

/* =========================================================
   Browse cards: lock the bottom rating strip to card width
   (prevents full-width/100vw/left-right absolute leaks)
   ========================================================= */

.card-minimal{
  position:relative; /* make children anchor to the card */
  overflow:hidden;   /* clip anything trying to bleed out */
}

/* Kill any viewport-width or fixed positioning coming from elsewhere */
.card-minimal .card-rating-strip,
.card-minimal .card-rating-strip--below{
  position:relative !important;
  left:auto !important;
  right:auto !important;
  bottom:auto !important;
  width:100% !important;
  max-width:100% !important;
  margin:0 !important;
  box-sizing:border-box !important;
}

/* If some stylesheet made it “full bleed” using 100vw */
.card-minimal .card-rating-strip{
  width:100% !important;
}

/* =========================================================
   BROWSE — TOP FILTER BAR (targets your exact markup)
   Markup:
   <section class="filter-bar">
     <form class="wr-hbar">
       <div class="wr-field"><label>..</label><select|button>..</select|button></div>
     </form>
   </section>
   ========================================================= */

/* ---------- labels LEFT of controls (all screens) ---------- */
.filter-bar .wr-hbar .wr-field{
  display:flex;
  align-items:center;
  gap:10px;
}

/* label on the left */
.filter-bar .wr-hbar .wr-field > label{
  margin:0;
  display:block;
  white-space:nowrap;
  font-weight:800;
  letter-spacing:.15px;
  line-height:1;
  min-width:74px; /* desktop label column width */
  color:rgba(255,255,255,.78);
}

/* control on the right */
.filter-bar .wr-hbar .wr-field > select,
.filter-bar .wr-hbar .wr-field > input{
  flex:1 1 auto;
  min-width:0;
}

/* buttons should NOT stretch */
.filter-bar .wr-hbar .wr-field > button,
.filter-bar .wr-hbar .wr-field > a.bo-btn,
.filter-bar .wr-hbar .wr-field > .bo-btn{
  flex:0 0 auto;
  width:auto !important;
  max-width:100% !important;
  justify-content:center;
  white-space:nowrap;
}

/* ---------- MOBILE / TABLET: make it a clear container + 2-up grid ---------- */
@media (max-width:720px){

  /* Make the bar read as a “real” container */
  .filter-bar{
    border:1px solid rgba(255,255,255,.22);
    border-radius:14px;
    box-shadow:
      0 0 0 1px rgba(228,87,46,.22) inset,
      0 16px 44px rgba(0,0,0,.65);
    background:linear-gradient(180deg, rgba(255,255,255,.04), rgba(0,0,0,.28));
  }

  /* 2 columns in the form so we get two fields on the first line */
  .filter-bar .wr-hbar{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:10px 10px;
    align-items:center;
  }

  /* compact the label column on mobile */
  .filter-bar .wr-hbar .wr-field{
    gap:8px;
  }
  .filter-bar .wr-hbar .wr-field > label{
    min-width:52px;
    font-size:12px;
    opacity:.92;
  }

  /* smaller selects so they fit comfortably */
  .filter-bar .wr-hbar select{
    font-size:13px;
    padding:7px 10px;
    min-height:34px;
    border-radius:10px;
  }

  /* prevent the Rating button from becoming full-width */
  .filter-bar .wr-hbar #btnRatingFilter{
    display:inline-flex;
    width:auto !important;
    justify-self:start;
    min-height:34px;
    padding:0 12px;
    border-radius:10px;
  }

  /* same for VR button (and any other .bo-btn in the bar) */
  .filter-bar .wr-hbar .bo-btn{
    width:auto !important;
    justify-self:start;
    min-height:34px;
    padding:0 12px;
    border-radius:10px;
  }

  /* the VR row uses <label>&nbsp;</label> — shrink it further */
  .filter-bar .wr-hbar .wr-field > label:empty,
  .filter-bar .wr-hbar .wr-field > label[for=""]{
    min-width:10px;
  }
}

/* ---------- extra-tight phones ---------- */
@media (max-width:420px){
  .filter-bar .wr-hbar .wr-field > label{
    min-width:46px;
    font-size:11.5px;
  }
  .filter-bar .wr-hbar select{
    font-size:12.5px;
    padding:7px 9px;
  }
}

@media (max-width:720px){ .filter-bar .wr-hbar{ display:grid !important; } }
/* =========================================================
   FORCE filter-bar labels to the LEFT of controls
   (wins over any existing .wr-field / label styles)
   ========================================================= */

.filter-bar form.wr-hbar .wr-field{
  display:flex !important;
  flex-direction:row !important;
  align-items:center !important;
  justify-content:flex-start !important;
  gap:10px !important;
}

/* label = left column */
.filter-bar form.wr-hbar .wr-field > label{
  display:inline-block !important;  /* stop block/100% width */
  width:auto !important;
  margin:0 !important;
  padding:0 !important;
  white-space:nowrap !important;
  line-height:1 !important;
  min-width:74px;                  /* tweak if you want */
}

/* controls = right side */
.filter-bar form.wr-hbar .wr-field > select,
.filter-bar form.wr-hbar .wr-field > input{
  flex:1 1 auto !important;
  width:auto !important;
  min-width:0 !important;
}

/* button controls (Rating, VR) should not stretch */
.filter-bar form.wr-hbar .wr-field > button,
.filter-bar form.wr-hbar .wr-field > .bo-btn,
.filter-bar form.wr-hbar .wr-field > a.bo-btn{
  flex:0 0 auto !important;
  width:auto !important;
  max-width:100% !important;
}

/* Mobile: slightly smaller label column */
@media (max-width:720px){
  .filter-bar form.wr-hbar .wr-field > label{
    min-width:52px !important;
    font-size:12px !important;
  }
}
/* Tighten label→control spacing (remove the big column gap) */
.filter-bar form.wr-hbar .wr-field{
  gap:8px !important;              /* was 10px */
}

.filter-bar form.wr-hbar .wr-field > label{
  min-width:0 !important;          /* kill the column width */
  padding-right:2px !important;    /* tiny breathing room */
}

/* optional: keep controls from getting too squashed */
.filter-bar form.wr-hbar .wr-field > select{
  min-width:120px;                 /* adjust to taste */
}

/* mobile: even tighter */
@media (max-width:720px){
  .filter-bar form.wr-hbar .wr-field{ gap:6px !important; }
  .filter-bar form.wr-hbar .wr-field > label{ padding-right:1px !important; }
}

/* =========================================================
   BROWSE CARDS — title + tags + short description (NEW)
   Goes in: blood-orange.css
   ========================================================= */

.card-minimal .card-meta{
  padding:10px 10px 8px;
  background:linear-gradient(180deg, rgba(255,255,255,.03), rgba(0,0,0,.10));
  border-top:1px solid rgba(255,255,255,.06);
}

.card-minimal .card-title{
  font-weight:900;
  font-size:13px;
  line-height:1.15;
  letter-spacing:.15px;
  color:rgba(255,255,255,.94);
  margin:0 0 6px;
}

.card-minimal .card-title .card-year{
  font-weight:850;
  font-size:12px;
  color:rgba(255,255,255,.68);
}

/* tags row (reuses your existing .tag styles if you have them) */
.card-minimal .tags{
  margin:0 0 6px;
  display:flex;
  flex-wrap:wrap;
  gap:6px;
}

/* if your .tag isn’t styled globally, this gives it a BO-style chip */
.card-minimal .tag{
  display:inline-flex;
  align-items:center;
  padding:4px 8px;
  border-radius:999px;
  font-size:11px;
  font-weight:800;
  line-height:1;
  text-decoration:none;

  color:rgba(255,255,255,.88);
  background:rgba(0,0,0,.35);
  border:1px solid rgba(255,255,255,.14);
}

.card-minimal a.tag:hover,
.card-minimal a.tag:focus-visible{
  outline:none;
  border-color:rgba(228,87,46,.85);
  background:rgba(228,87,46,.10);
  box-shadow:var(--bo-shadow-glow);
}

/* description */
.card-minimal .card-desc{
  font-size:12px;
  line-height:1.35;
  color:rgba(255,255,255,.72);

  /* keep cards tidy */
  display:-webkit-box;
  -webkit-line-clamp:2;
  -webkit-box-orient:vertical;
  overflow:hidden;
}

/* Mobile: slightly tighter */
@media (max-width:720px){
  .card-minimal .card-meta{ padding:9px 9px 7px; }
  .card-minimal .card-title{ font-size:12.5px; }
  .card-minimal .card-desc{ font-size:11.8px; }
}

/* =========================================================
   BROWSE CARDS — mockup-style meta (plain-text genres + short desc)
   Place in: blood-orange.css
   ========================================================= */

/* container under poster */
.card-minimal .card-meta{
  padding:10px 10px 8px;
  background:linear-gradient(180deg, rgba(0,0,0,.10), rgba(0,0,0,.22));
  border-top:1px solid rgba(255,255,255,.06);
}

/* title */
.card-minimal .card-title{
  font-weight:900;
  font-size:13px;
  line-height:1.15;
  letter-spacing:.15px;
  color:rgba(255,255,255,.94);
  margin:0 0 4px;
}
.card-minimal .card-title .card-year{
  font-weight:850;
  font-size:12px;
  color:rgba(255,255,255,.62);
}

/* GENRES as plain text line: "Horror, Mystery" */
.card-minimal .tags{
  margin:0 0 6px;
  display:block;
  font-size:12px;
  line-height:1.15;
  color:rgba(255,255,255,.55);
}

/* kill chip look inside cards (only) */
.card-minimal .tags .tag{
  display:inline;
  padding:0;
  border:0;
  border-radius:0;
  background:transparent;
  box-shadow:none;
  color:inherit;
  font-weight:700;
  text-decoration:none;
}

/* add comma separators between genre tags */
.card-minimal .tags .tag:not(:last-child)::after{
  content:", ";
  color:rgba(255,255,255,.45);
}

/* link hover (subtle) */
.card-minimal .tags a.tag:hover,
.card-minimal .tags a.tag:focus-visible{
  outline:none;
  color:rgba(255,255,255,.78);
  text-decoration:underline;
  text-underline-offset:2px;
}

/* description — small + 2 lines, like mockup */
.card-minimal .card-desc{
  font-size:12px;
  line-height:1.35;
  color:rgba(255,255,255,.65);

  display:-webkit-box;
  -webkit-line-clamp:3;              /* mockup had a small paragraph; 2–3 lines works */
  -webkit-box-orient:vertical;
  overflow:hidden;
}

/* Mobile: tighten a touch */
@media (max-width:720px){
  .card-minimal .card-meta{ padding:9px 9px 7px; }
  .card-minimal .card-title{ font-size:12.5px; }
  .card-minimal .tags{ font-size:11.7px; }
  .card-minimal .card-desc{ font-size:11.6px; -webkit-line-clamp:3; }
}

/* =========================================================
   ReviewCategory filter row (now BELOW description)
   ========================================================= */

.card-rcrow{
  margin-top:4px;
  font-size:12px;
  font-weight:600;
  color:#f2b66d; /* muted orange-gold */
  opacity:.9;
}

/* Optional: subtle divider above rating strip */
.card-rcrow + .card-rating-strip{
  margin-top:6px;
}

/* =========================================================
   SORT BY links — STRONG active state
   ========================================================= */



/* =========================================================
   REVIEW HEADER — push score badge to the right
   ========================================================= */

.review-header,
.rb-headline,
.review-title-row{
  display:flex;
  align-items:center;
  gap:10px;
}
/* Score badge alignment */
.review-header .bo-pill,
.rb-headline .bo-pill,
.review-title-row .bo-pill{
  margin-left:auto;
}

/* =========================================================
   RB SCORE — make it the same quiet outline as .bo-pill
   ========================================================= */

.rb-score{
  /* match .bo-pill (quiet outline) */
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:6px;

  min-height:28px;
  padding:0 12px;
  border-radius:999px;

  font-size:12px;
  font-weight:900;
  letter-spacing:.15px;
  line-height:1;
  white-space:nowrap;

  color:#fff !important;
  background:transparent !important;
  border:1px solid rgba(255,255,255,.85) !important;

  box-shadow:none !important;
  text-decoration:none;
  transition:border-color .15s ease, background .15s ease, transform .08s ease, color .15s ease;
}

.rb-score:hover,
.rb-score:focus-visible{
  outline:none;
  background:rgba(255,255,255,.06) !important;
  border-color:rgba(255,255,255,.95) !important;
}

.rb-score:active{
  transform:translateY(1px);
}



/* --- Card image overlay rating strip (bottom of image) --- */

.card-minimal .imgwrap{
  position:relative;
  overflow:hidden;              /* ensures overlay clips to image edges */
  border-radius:14px;           /* keep your normal rounding... */
  border-bottom-left-radius:0;  /* ...but SQUARE bottom corners */
  border-bottom-right-radius:0;
}

/* If your <img> has its own radius, kill bottom rounding too */
.card-minimal .imgwrap img{
  display:block;
  width:100%;
  height:auto;
  border-bottom-left-radius:0 !important;
  border-bottom-right-radius:0 !important;
}

/* Overlay strip sits on the image bottom edge */
.card-rating-strip--overlay{
  position:absolute;
  left:0;
  right:0;
  bottom:0;
  margin:0;
  border-radius:0;            /* no rounding on the strip */
  border-left:0;
  border-right:0;
  border-bottom:0;
  z-index:3;
}

/* Make the overlay background slightly translucent so image shows through */
.card-rating-strip--overlay{
  background:rgba(0,0,0,.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

/* Optional: ensure the bar + score align nicely in overlay */
.card-rating-strip--overlay .crs-left{
  min-width:0;
}

.card-rating-strip--overlay .crs-score{
  border-radius:0; /* square score box */
}

/* If your strip currently has rounded corners via --below variant */
.card-rating-strip--below{
  display:none; /* safety: make sure old layout doesn't show if you missed removing it */
}
.card-rating-strip--overlay{
  bottom:6px;          /* was 0 */
  left:0;
  right:0;
}


/* ---------- InfoSummary (tick / cross lines) ---------- */

.info-summary{
  margin-top:8px;
}

.sum-line{
  display:flex;
  align-items:flex-start;
  gap:6px;
  margin:4px 0;
  font-size:12px;          /* smaller + cleaner */
  line-height:1.35;
  color:rgba(255,255,255,.85);
}

/* icon */
.sum-ico{
  flex:0 0 auto;
  font-size:12px;          /* match text size */
  line-height:1.2;
  margin-top:1px;          /* optical alignment */
}

/* text */
.sum-txt{
  flex:1 1 auto;
  white-space:normal;
}

/* positive / negative colouring (subtle) */
.sum-line.is-pos .sum-ico{
  filter: drop-shadow(0 0 2px rgba(0,200,120,.4));
}

.sum-line.is-neg .sum-ico{
  filter: drop-shadow(0 0 2px rgba(220,60,60,.45));
}

.sum-line.is-neu{
  opacity:.75;
}
.card-minimal .sum-line{
  font-size:11.5px;
  margin:3px 0;
}


.rb-panel-title{
  font-weight:800;
}

.rb-panel-tools{
  display:flex;
  gap:8px;
  align-items:center;
}

.rb-panel-sub{
  margin-top:6px;
}

/* Breakdown dropdown */
.rb-panel-tools{
  margin-top:6px;
}

.rb-select{
  background:#0f1218;
  color:rgba(255,255,255,.9);
  border:1px solid #e4572e;
  border-radius:8px;
  padding:6px 34px 6px 10px; /* room for chevron */
  font-size:13px;
  min-width:180px;

  appearance:none;
  -webkit-appearance:none;
  -moz-appearance:none;

  /* chevron */
  background-image:
    linear-gradient(45deg, transparent 50%, rgba(255,255,255,.75) 50%),
    linear-gradient(135deg, rgba(255,255,255,.75) 50%, transparent 50%);
  background-position:
    calc(100% - 18px) 50%,
    calc(100% - 12px) 50%;
  background-size:6px 6px, 6px 6px;
  background-repeat:no-repeat;

  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,.03),
    0 6px 18px rgba(0,0,0,.35);
}


.rb-select:hover,
.rb-select:focus{
  border-color:#e4572e; /* your orange */
  outline:none;
  box-shadow:
    inset 0 0 0 1px rgba(228,87,46,.35),
    0 0 14px rgba(228,87,46,.35);
}

.rb-select option{
  background:#0f1218;
  color:#fff;
}




/* Review/user line: avatar + name (shared with breakdown) */
.rb-userline{
  display:inline-flex;
  align-items:center;
  gap:10px;
}

.rb-avatar{
  width:28px;
  height:28px;
  border-radius:999px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-weight:900;
  font-size:13px;
  color:#111;
  background:var(--bo-accent);
  box-shadow:
    0 0 0 1px rgba(255,255,255,.14),
    0 0 12px rgba(216,31,38,.35);
}

.rb-username{
  font-weight:800;
  color:rgba(255,255,255,.92);
}




/* =========================================================
   Browse: filter bar label hierarchy
   ========================================================= */

.filter-bar .wr-field > label{
  font-size:14px;
  font-weight:800;
  letter-spacing:.2px;
  color:rgba(255,255,255,.92);
  margin-bottom:6px;
  display:block;
}

/* Keep dropdown/button text slightly smaller + less bold */
.filter-bar .wr-field select,
.filter-bar .wr-field .bo-btn{
  font-size:12px;
  font-weight:600;
  letter-spacing:.12px;
}
/* =========================================================
   Browse: dark select controls
   ========================================================= */

.filter-bar .wr-field select{
  background:rgba(0,0,0,.55);
  color:rgba(255,255,255,.92);
  border:1px solid rgba(255,255,255,.28);
  border-radius:10px;
  padding:8px 10px;
  outline:none;
}

.filter-bar .wr-field select:focus{
  border-color:rgba(228,87,46,.95);
  box-shadow:0 0 12px rgba(228,87,46,.28);
}



/* HS look layer */
.hs-track::-webkit-scrollbar-thumb{ background:rgba(255,255,255,.16); }
.hs-track::-webkit-scrollbar-track{ background:rgba(255,255,255,.06); }

.hs-btn{
  border:1px solid rgba(255,255,255,.16);
  background:rgba(0,0,0,.35);
  color:rgba(255,255,255,.92);
}
.hs-btn:hover{
  background:rgba(0,0,0,.55);
  box-shadow:0 0 0 1px rgba(255,255,255,.12), 0 0 18px rgba(216,31,38,.18);
}


.home-poster{
  width: 160px;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  transform: translateZ(0); /* avoids some GPU blur edge-cases */
}








/* blood-orange.css END */
