/* =========================================================
   RaidLine — homepage blocks layer (extension/raidline)
   Written to match the visual language established in
   rl-theme.css (same color tokens, fonts, angular clip-path
   accents) for the 12 modular homepage sections. This file's
   CSS was not part of the downloaded design package — the
   package only shipped the section markup (.hero, .section,
   .game-card, etc.) with no matching stylesheet, so these
   rules were authored to match rl-theme.css's palette/fonts
   and the semantic intent of each class name.
   ========================================================= */

.wrap { max-width: 1180px; margin: 0 auto; padding: 0 24px; }

.btn {
  position: relative; display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 30px; font-size: 15px; font-weight: 700;
  border: 1px solid transparent; cursor: pointer;
  text-transform: uppercase; letter-spacing: 0.04em;
  clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
  transition: transform 0.15s ease, border-color 0.15s ease, background 0.15s ease;
  text-decoration: none; font-family: 'Rajdhani', sans-serif;
}
.btn--red { background: linear-gradient(160deg, var(--rl-crimson-300), var(--rl-crimson-700)); color: #fff; filter: drop-shadow(0 12px 22px rgba(240,27,34,0.3)); }
.btn--red:hover { transform: translateY(-1px); color: #fff; }
.btn--ghost { background: transparent; border-color: var(--rl-border-strong); color: var(--rl-text); }
.btn--ghost:hover { border-color: var(--rl-text); color: var(--rl-text); transform: translateY(-1px); }

.section { padding: 56px 24px; }
.section--alt { background: var(--rl-page-alt); }
.section-head { max-width: 640px; margin: 0 auto 40px; text-align: center; }
.section-head h2 { font-size: clamp(1.7rem, 3.2vw, 2.3rem); margin: 0; }
.section-head p { margin-top: 14px; font-size: 15.5px; color: var(--rl-text-dim); }

/* ---------- hero ---------- */
.hero { position: relative; padding: 100px 24px 96px; overflow: hidden; text-align: center; background: linear-gradient(180deg, var(--rl-stage-1), var(--rl-stage-2)); color: var(--rl-stage-text); }
.hero__glow { position: absolute; top: -20%; left: 50%; transform: translateX(-50%); width: 900px; height: 900px; background: radial-gradient(circle, rgba(196,30,58,0.22), transparent 62%); pointer-events: none; }
.hero__content { position: relative; z-index: 1; max-width: 780px; margin: 0 auto; }
.hero__kicker { display: inline-flex; align-items: center; padding: 7px 16px; border: 1px solid var(--rl-stage-border); border-radius: 999px; font-size: 12.5px; color: var(--rl-stage-text-dim); margin-bottom: 22px; }
.hero h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); font-weight: 800; margin: 0; color: var(--rl-stage-text); }
.hero__sub { margin: 22px auto 0; max-width: 56ch; font-size: 17px; color: var(--rl-stage-text-dim); }
.hero__actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; margin-top: 36px; }

/* ---------- support strip ---------- */
.support { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 10px 40px; padding: 16px 24px; background: var(--rl-stage-2); color: var(--rl-stage-text-dim); font-size: 13.5px; text-align: center; }
.support b { color: var(--rl-stage-text); }
.support__links { display: flex; align-items: center; gap: 8px; }
.support__link { width: 26px; height: 26px; border-radius: 50%; display: flex; align-items: center; justify-content: center; background: rgba(255,255,255,0.08); color: var(--rl-stage-text-dim); font-size: 12.5px; text-decoration: none; transition: background-color .15s ease, color .15s ease, transform .15s ease; }
.support__link:hover { background: var(--rl-crimson-500); color: #fff; transform: translateY(-1px); }
.support__hours { color: var(--rl-crimson-300); text-decoration: underline; text-underline-offset: 2px; margin-left: 4px; white-space: nowrap; }
.support__hours:hover { color: #fff; }

/* ---------- trust bar ---------- */
.trust { padding: 48px 24px 0; background: var(--rl-surface); }
.trust-grid { max-width: 1180px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 22px; }
.trust-card {
  position: relative;
  border: 1px solid var(--rl-border);
  border-radius: 12px;
  padding: 26px 24px 24px;
  background: var(--rl-surface);
  overflow: hidden;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.trust-card::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 88% -14%, var(--accent, var(--rl-crimson-500)), transparent 60%);
  opacity: .14;
  pointer-events: none;
}
.trust-card::after {
  content: '';
  position: absolute; left: 0; top: 0; right: 0; height: 3px;
  background: var(--accent, var(--rl-crimson-500));
}
.trust-card:hover { transform: translateY(-4px); box-shadow: 0 18px 32px rgba(23,20,18,0.14); border-color: var(--accent, var(--rl-crimson-500)); }
.trust-card__corner { position: absolute; width: 14px; height: 14px; border-color: var(--accent, var(--rl-crimson-500)); border-style: solid; opacity: 0; transition: opacity .15s ease; }
.trust-card__corner--tl { top: -1px; left: -1px; border-width: 2px 0 0 2px; }
.trust-card__corner--br { bottom: -1px; right: -1px; border-width: 0 2px 2px 0; }
.trust-card:hover .trust-card__corner { opacity: 1; }
.trust-card__icon {
  position: relative; z-index: 1;
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 10px;
  background: var(--accent-soft, rgba(196,30,58,0.14));
  color: var(--accent, var(--rl-crimson-500));
  margin-bottom: 14px;
  transition: transform .18s ease;
}
.trust-card:hover .trust-card__icon { transform: scale(1.08); }
.trust-card__icon svg { width: 22px; height: 22px; }
.trust-card__head { position: relative; z-index: 1; font-size: 15.5px; font-weight: 700; color: var(--rl-text); }
.trust-card p { position: relative; z-index: 1; margin-top: 10px; font-size: 13.5px; line-height: 1.55; color: var(--rl-text-dim); }
:root {
  --green: var(--rl-green); --gold: var(--rl-gold-500); --purple: var(--rl-purple);
  --green-soft: rgba(29,138,76,0.14); --gold-soft: rgba(201,162,39,0.14); --purple-soft: rgba(123,79,224,0.14);
}

/* ---------- split (mission / modernworld) ---------- */
.split { padding: 64px 24px; background: var(--rl-surface); }
.split--rev { background: var(--rl-page-alt); }
.split .wrap { display: grid; grid-template-columns: 1fr; gap: 48px; align-items: center; }
@media (min-width: 900px) { .split .wrap { grid-template-columns: 0.9fr 1.1fr; } .split--rev .wrap { grid-template-columns: 1.1fr 0.9fr; } .split--rev .split__art { order: 2; } }
.split__art img { width: 100%; border-radius: 10px; display: block; }
.split h2 { font-size: clamp(1.6rem, 3vw, 2.1rem); margin: 0; }
.split__lead { margin-top: 16px; font-size: 15.5px; color: var(--rl-text-dim); }
.split__sub { margin-top: 22px; }
.split__sub h3 { font-size: 15px; font-family: 'Inter', sans-serif; font-weight: 700; margin: 0; color: var(--rl-text); }
.split__sub p { margin-top: 6px; font-size: 13.5px; color: var(--rl-text-dim); line-height: 1.55; }
.split__list { list-style: none; padding: 0; margin: 22px 0 0; display: flex; flex-direction: column; gap: 12px; }
.split__list li { display: flex; align-items: flex-start; gap: 10px; font-size: 13.5px; color: var(--rl-text); }
.split__list li svg { flex: none; width: 18px; height: 18px; margin-top: 1px; color: var(--rl-crimson-500); }

/* ---------- reasons ---------- */
.reasons { max-width: 1180px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px 28px; }
.reason { display: flex; gap: 16px; }
.reason__num { flex: none; font-family: 'Cinzel', serif; font-size: 20px; font-weight: 700; color: var(--rl-crimson-500); opacity: 0.7; }
.reason h3 { font-size: 15px; font-family: 'Inter', sans-serif; font-weight: 700; margin: 0; }
.reason p { margin-top: 6px; font-size: 13px; color: var(--rl-text-dim); line-height: 1.5; }

/* ---------- steps (service types / how it works) ---------- */
.steps { max-width: 1180px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 24px; }
.steps > div { position: relative; padding: 26px 22px 22px; background: var(--rl-surface); border: 1px solid var(--rl-border); border-radius: 10px; }
.steps__num { display: inline-flex; align-items: center; justify-content: center; width: 32px; height: 32px; font-family: 'Cinzel', serif; font-weight: 700; font-size: 14px; color: #fff; background: linear-gradient(160deg, var(--rl-crimson-300), var(--rl-crimson-700)); border-radius: 50%; }
.steps__title { margin-top: 14px; font-size: 15px; font-weight: 700; color: var(--rl-text); }
.steps__text { margin-top: 8px; font-size: 13px; color: var(--rl-text-dim); line-height: 1.55; }

/* ---------- CTA block ---------- */
.cta-block { max-width: 1180px; margin: 0 auto; display: flex; flex-wrap: wrap; align-items: center; gap: 40px; justify-content: center; text-align: center; }
.cta-block__art { flex: 1 1 380px; max-width: 460px; }
.cta-block__art img { width: 100%; max-width: 460px; border-radius: 10px; box-shadow: 0 14px 32px rgba(23,20,18,0.25); }
.cta-block__body { flex: 1 1 380px; max-width: 560px; }
.cta-block h2 { font-size: clamp(1.5rem, 2.8vw, 1.9rem); margin: 0; }
.cta-block p { margin-top: 14px; font-size: 14.5px; color: var(--rl-text-dim); }
.cta-block .btn { margin-top: 22px; }
@media (min-width: 700px) { .cta-block { text-align: left; justify-content: space-between; } }

/* ---------- generic edge-to-edge carousel (reviews, blog teaser) ----------
   A real paged carousel: horizontal scroll-snap viewport + prev/next arrow
   buttons that page by one card width. Arrows hide under 640px since a
   touch swipe on the viewport itself is the natural way to page there;
   the scroll-snap behaviour keeps working with no JS at all either way. */
.rl-carousel { position: relative; max-width: 1180px; margin: 0 auto; padding: 0 46px; }
.rl-carousel__viewport {
  overflow-x: auto; scroll-behavior: smooth; scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch; scrollbar-width: none; -ms-overflow-style: none;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 2%, #000 98%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 2%, #000 98%, transparent);
}
.rl-carousel__viewport::-webkit-scrollbar { display: none; }
.rl-carousel__track { display: flex; gap: 18px; padding-bottom: 6px; }
.rl-carousel__track > * { scroll-snap-align: start; flex: 0 0 auto; }
.rl-carousel__btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 38px; height: 38px; border-radius: 50%; padding: 0;
  background: var(--rl-surface); border: 1px solid var(--rl-border-strong); color: var(--rl-text);
  display: flex; align-items: center; justify-content: center; cursor: pointer; z-index: 2;
  transition: background .15s ease, border-color .15s ease, color .15s ease, opacity .15s ease;
}
.rl-carousel__btn svg { width: 18px; height: 18px; }
.rl-carousel__btn:hover { background: var(--rl-crimson-500); border-color: var(--rl-crimson-500); color: #fff; }
.rl-carousel__btn[disabled] { opacity: .3; pointer-events: none; }
.rl-carousel__btn--prev { left: 0; }
.rl-carousel__btn--next { right: 0; }
@media (max-width: 640px) {
  .rl-carousel { padding: 0 6px; }
  .rl-carousel__btn { display: none; }
}

/* Reviews is a continuously auto-scrolling loop (see rl-theme.js) — scroll-snap
   fights that by yanking scrollLeft back to the nearest card on every frame,
   so it's switched off here. Blog stays snap-paged since it's manual-only. */
.rl-carousel[data-rl-carousel="reviews"] .rl-carousel__viewport { scroll-snap-type: none; }

/* ---------- reviews ---------- */
.reviews-head { max-width: 1180px; margin: 0 auto 28px; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 16px; }
.reviews-head__badge { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--rl-text); }
.reviews-head__badge b { color: #00b67a; }
.reviews-head__score { font-size: 13px; color: var(--rl-text-dim); }
.review-card { flex: 0 0 280px; background: var(--rl-surface); border: 1px solid var(--rl-border); border-radius: 10px; padding: 20px; }
.review-card__head { display: flex; align-items: center; gap: 10px; }
.review-card__avatar { width: 36px; height: 36px; border-radius: 50%; background: linear-gradient(160deg, var(--rl-crimson-300), var(--rl-crimson-700)); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 700; flex: none; }
.review-card__name { font-size: 13.5px; font-weight: 700; color: var(--rl-text); }
.review-card__date { font-size: 11.5px; color: var(--rl-text-faint); }
.review-card__stars { margin-top: 12px; color: #00b67a; font-size: 13px; letter-spacing: 1px; }
.review-card__title { margin-top: 8px; font-size: 14px; font-weight: 700; color: var(--rl-text); }
.review-card__text { margin-top: 6px; font-size: 12.5px; color: var(--rl-text-dim); line-height: 1.5; overflow: hidden; display: -webkit-box; -webkit-line-clamp: 4; -webkit-box-orient: vertical; }

/* ---------- blog teaser ---------- */
.blog-grid { gap: 20px; }
.blog-card { flex: 0 0 clamp(200px, calc((100% - 60px) / 4), 280px); background: var(--rl-surface); border: 1px solid var(--rl-border); border-radius: 10px; overflow: hidden; transition: transform 0.15s ease, box-shadow 0.15s ease; }
.blog-card:hover { transform: translateY(-3px); box-shadow: 0 16px 30px rgba(23,20,18,0.16); }
.blog-card__img { display: block; height: 140px; background-color: var(--rl-page-alt); background-size: cover; background-position: center; }
.blog-card__body { padding: 16px 18px 18px; }
.blog-card__tag { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; color: var(--rl-crimson-500); }
.blog-card__title { margin-top: 8px; font-size: 14.5px; font-family: 'Cinzel', serif; line-height: 1.35; }
.blog-card__excerpt { margin-top: 8px; font-size: 12.5px; color: var(--rl-text-dim); line-height: 1.5; }
.blog-card__meta { margin-top: 12px; padding-top: 12px; border-top: 1px solid var(--rl-border-soft); display: flex; justify-content: space-between; font-size: 11.5px; color: var(--rl-text-faint); }
.blog-card__views { display: inline-flex; align-items: center; gap: 5px; }
.blog-card__views svg { width: 13px; height: 13px; flex: none; }

/* ---------- game categories ---------- */
.game-grid { max-width: 1180px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 22px; }
.game-card { position: relative; border: 1px solid var(--rl-border); clip-path: polygon(18px 0, 100% 0, 100% 100%, 0 100%, 0 18px); overflow: hidden; aspect-ratio: 0.72; min-height: 280px; background: linear-gradient(165deg, var(--rl-stage-1), var(--rl-stage-2)); display: flex; flex-direction: column; justify-content: flex-end; transition: transform 0.2s ease, box-shadow 0.15s ease, border-color 0.15s ease; will-change: transform; }
.game-card:hover { box-shadow: 0 20px 40px rgba(23,10,10,0.35); border-color: var(--rl-crimson-500); }
.game-card__stage { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.game-card__stage::after {
  content: ''; position: absolute; inset: 0; pointer-events: none; opacity: 0; transition: opacity 0.2s ease;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(255,255,255,0.3), transparent 42%);
  mix-blend-mode: overlay;
}
.game-card:hover .game-card__stage::after { opacity: 1; }
@media (prefers-reduced-motion: reduce) { .game-card { transform: none !important; } }
.game-card__img { width: 100%; height: 100%; object-fit: cover; opacity: 0.55; }
.game-card__link { position: absolute; inset: 0; z-index: 1; }
.game-card__desc { position: relative; margin-top: 8px; font-size: 12.5px; color: rgba(245,240,232,0.65); line-height: 1.5; }
.game-card__title-row h3 a { color: inherit; text-decoration: none; }
.game-card__chip { position: relative; z-index: 2; text-decoration: none; }
.game-card__glow { position: absolute; inset: -30%; background: radial-gradient(circle, rgba(196,30,58,0.28), transparent 65%); }
.game-card__icon { position: relative; width: 72px; height: 72px; color: rgba(245,240,232,0.5); }
.game-card__ribbon { position: absolute; top: 16px; left: 16px; z-index: 2; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; color: var(--rl-gold-300); border: 1px solid var(--rl-gold-500); border-radius: 999px; padding: 5px 12px; background: rgba(11,9,8,0.55); }
.game-card__scrim { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 20%, rgba(11,9,8,0.92) 92%); }
.game-card__overlay { position: relative; z-index: 2; padding: 20px; color: var(--rl-stage-text); }
.game-card__title-row h3 { margin: 0; font-size: 19px; color: var(--rl-stage-text); }
.game-card__live { margin-top: 8px; display: flex; align-items: center; gap: 7px; font-size: 12px; color: rgba(245,240,232,0.65); }
.game-card__live .dot { position: relative; width: 7px; height: 7px; border-radius: 50%; background: #3ecf6e; }
.game-card__live .dot::after { content: ''; position: absolute; inset: -4px; border-radius: 50%; border: 1px solid #3ecf6e; opacity: 0.6; animation: rlLiveRing 1.8s ease-out infinite; }
@keyframes rlLiveRing { 0% { transform: scale(0.6); opacity: 0.7; } 100% { transform: scale(2); opacity: 0; } }
@media (prefers-reduced-motion: reduce) { .game-card__live .dot::after { animation: none; } }
.game-card__chips { margin-top: 12px; display: flex; flex-wrap: wrap; gap: 6px; }
.game-card__chip { font-size: 11px; padding: 4px 10px; border-radius: 999px; background: rgba(255,255,255,0.09); color: rgba(245,240,232,0.75); }
.game-card--all { background: var(--rl-page-alt); }
.game-card--all .game-card__icon { width: 56px; height: 56px; opacity: 0.5; }
.game-card--all .game-card__scrim { background: linear-gradient(180deg, transparent 20%, rgba(23,20,18,0.85) 92%); }

/* ---------- hero video background ---------- */
.hero--video { padding: 140px 24px 120px; }
.hero__video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; z-index: 0; }
.hero__overlay { position: absolute; inset: 0; z-index: 0; background: linear-gradient(100deg, rgba(8,8,11,0.88) 0%, rgba(8,8,11,0.62) 34%, rgba(8,8,11,0.22) 58%, transparent 78%), linear-gradient(180deg, rgba(8,8,11,0.28) 0%, rgba(8,8,11,0.35) 55%, rgba(8,8,11,0.7) 100%); }
.hero--video .hero__glow { z-index: 0; opacity: 0.7; left: 15%; }
.hero--video .hero__content { z-index: 2; margin: 0; text-align: left; max-width: 600px; }
.hero--video .hero__actions { justify-content: flex-start; }
.hero--video .hero__kicker { border-color: rgba(255,255,255,0.28); background: rgba(10,10,14,0.35); backdrop-filter: blur(4px); color: #f2f2f4; }
.hero--video h1 { color: #ffffff; text-shadow: 0 2px 18px rgba(0,0,0,0.55); }
.hero--video .hero__sub { color: rgba(255,255,255,0.86); text-shadow: 0 1px 10px rgba(0,0,0,0.5); }
.hero--video .btn--ghost { border-color: rgba(255,255,255,0.55); color: #ffffff; }
.hero--video .btn--ghost:hover { border-color: #ffffff; color: #ffffff; background: rgba(255,255,255,0.1); }

/* ---------- category tile fallback icon (no custom category image set) ----------
   Renders the category's own emoji (already used in its name everywhere else on
   site) large and centered with the existing crimson glow, instead of a bare
   "no image" placeholder photo repeated identically across every card. */
.game-card__icon-emoji {
  position: relative;
  z-index: 1;
  font-size: 64px;
  line-height: 1;
  filter: drop-shadow(0 10px 22px rgba(0,0,0,0.4));
  transition: transform .2s ease;
}
.game-card:hover .game-card__icon-emoji { transform: scale(1.08); }

/* ---------- mobile: remaining grids page as swipeable carousels ----------
   Same visual cards, but the section switches from a wrapping grid to a
   horizontal scroll-snap strip so every homepage block behaves as a
   carousel on phones. No JS needed — this is a native touch-swipe carousel;
   the reviews/blog carousels above additionally get JS-driven arrow buttons
   because they were called out explicitly. */
@media (max-width: 899px) {
  .trust-grid, .game-grid, .reasons, .steps {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    margin: 0 -24px;
    padding: 4px 24px 12px;
  }
  .trust-grid::-webkit-scrollbar, .game-grid::-webkit-scrollbar, .reasons::-webkit-scrollbar, .steps::-webkit-scrollbar { display: none; }
  .trust-grid > *, .game-grid > *, .reasons > *, .steps > * { scroll-snap-align: start; flex: 0 0 auto; }
  .trust-grid > * { width: 260px; }
  .game-grid > * { width: 240px; }
  .reasons > * { width: 280px; }
  .steps > * { width: 220px; }
}

/* ---------- contact FAB (site-wide, rendered from common/footer.twig) ----------
   Themed replacement for the old raw-HTML popup (bottom-left, generic blue,
   copy-pasted CSS) and the Jivosite chat embed — same contact channels,
   RaidLine styling, bottom-right, on every page. */
.contact-fab { position: fixed; right: 22px; bottom: 22px; z-index: 1000; display: flex; flex-direction: column; align-items: flex-end; gap: 14px; }
.contact-fab__toggle {
  position: relative;
  display: flex; align-items: center; justify-content: center; gap: 10px;
  width: 72px; height: 72px; padding: 0; border: none; border-radius: 50%;
  background: linear-gradient(160deg, var(--rl-crimson-300), var(--rl-crimson-700));
  color: #fff; font-size: 26px; cursor: pointer;
  box-shadow: 0 14px 30px rgba(196,30,58,0.45);
  transition: width .25s ease, border-radius .25s ease, padding .25s ease, transform .15s ease;
}
.contact-fab__toggle::after {
  content: ''; position: absolute; inset: -6px; border-radius: inherit;
  border: 2px solid var(--rl-crimson-500); opacity: .55; pointer-events: none;
  animation: rlContactFabPulse 2.2s ease-out infinite;
}
@keyframes rlContactFabPulse { 0% { transform: scale(0.92); opacity: .55; } 100% { transform: scale(1.35); opacity: 0; } }
@media (prefers-reduced-motion: reduce) { .contact-fab__toggle::after { animation: none; } }
.contact-fab__toggle:hover, .contact-fab__toggle[aria-expanded="true"] {
  width: 200px; border-radius: 999px; padding: 0 22px 0 20px; justify-content: flex-start;
}
.contact-fab__toggle:hover::after, .contact-fab__toggle[aria-expanded="true"]::after { display: none; }
.contact-fab__toggle:active { transform: scale(0.96); }
.contact-fab__toggle-label {
  font-family: 'Rajdhani', sans-serif; font-weight: 700; font-size: 15px; text-transform: uppercase; letter-spacing: 0.04em;
  white-space: nowrap; max-width: 0; overflow: hidden; opacity: 0; transition: max-width .25s ease, opacity .2s ease;
}
.contact-fab__toggle:hover .contact-fab__toggle-label,
.contact-fab__toggle[aria-expanded="true"] .contact-fab__toggle-label { max-width: 140px; opacity: 1; }
.contact-fab__panel {
  width: 250px; background: var(--rl-surface); border: 1px solid var(--rl-border); border-radius: 12px;
  box-shadow: 0 20px 40px rgba(23,20,18,0.22); overflow: hidden;
  animation: rlContactFabIn .18s ease;
}
@keyframes rlContactFabIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }
.contact-fab__head {
  padding: 14px 18px; font-family: 'Cinzel', serif; font-size: 14px; font-weight: 700; color: var(--rl-stage-text);
  background: linear-gradient(160deg, var(--rl-crimson-300), var(--rl-crimson-700));
}
.contact-fab__body { padding: 10px; display: flex; flex-direction: column; gap: 6px; }
.contact-fab__link {
  display: flex; align-items: center; gap: 12px; padding: 9px 10px; border-radius: 8px;
  color: var(--rl-text); text-decoration: none; font-size: 13.5px; font-weight: 600;
  transition: background .15s ease, transform .15s ease;
}
.contact-fab__link:hover { background: var(--rl-page-alt); transform: translateX(2px); }
.contact-fab__icon {
  flex: none; width: 32px; height: 32px; border-radius: 50%; background: var(--accent);
  color: #fff; display: flex; align-items: center; justify-content: center; font-size: 14px;
}
@media (max-width: 480px) {
  .contact-fab { right: 14px; bottom: 14px; }
  .contact-fab__panel { width: calc(100vw - 28px); max-width: 300px; }
}

/* ---------- read-more collapse (category description text, etc.) ----------
   The SEO copy stays fully in the DOM at all times — only visually clamped —
   so search engines still see it in full; only the rendered height changes. */
.rl-readmore { position: relative; }
.rl-readmore__content { max-height: 220px; overflow: hidden; position: relative; }
.rl-readmore__content::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 64px;
  background: linear-gradient(180deg, transparent, var(--rl-page)); pointer-events: none;
}
.rl-readmore.rl-is-open .rl-readmore__content { max-height: none; }
.rl-readmore.rl-is-open .rl-readmore__content::after { display: none; }
.rl-readmore__toggle {
  margin-top: 10px; display: inline-flex; align-items: center; gap: 6px;
  background: none; border: none; padding: 0; cursor: pointer;
  color: var(--rl-crimson-500); font-weight: 700; font-size: 13.5px;
  font-family: 'Rajdhani', sans-serif; text-transform: uppercase; letter-spacing: 0.03em;
}
.rl-readmore__toggle:hover { color: var(--rl-crimson-700); }
.rl-readmore__toggle svg { width: 14px; height: 14px; transition: transform 0.2s ease; }
.rl-readmore.rl-is-open .rl-readmore__toggle svg { transform: rotate(180deg); }

/* ---------- product page: trustpilot bar ---------- */
.rl-product-trust {
  width: 100%; margin: 0 0 20px; padding: 10px 16px; box-sizing: border-box;
  display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 10px; text-align: center;
  /* Fixed light background on purpose, not var(--rl-page-alt): the Trustpilot
     logo PNG has black wordmark text baked in with a transparent background,
     so it goes invisible against the dark theme unless this stays light. */
  background: #f9f9f9; border: 1px solid var(--rl-border); border-radius: 8px;
}
.rl-product-trust__logo { max-width: 96px; height: auto; display: block; flex: none; }
.rl-product-trust__text { font-size: 14px; color: #333; }
.rl-product-trust__text b { color: #00b67a; }
.rl-product-trust__cta {
  padding: 8px 15px; background-color: #00b67a; color: #fff; text-decoration: none;
  border-radius: 4px; font-size: 14px; font-weight: 700; flex: none; transition: background-color 0.2s ease;
}
.rl-product-trust__cta:hover { background-color: #007f5f; color: #fff; text-decoration: none; }

/* ---------- product page: trust badges + contact ---------- */
.rl-trust-badges { margin: 0 0 16px; display: flex; flex-direction: column; gap: 10px; }
.rl-trust-badges__row { display: flex; flex-wrap: wrap; gap: 8px; }
.rl-trust-chip {
  position: relative; display: inline-flex; align-items: center; gap: 7px; cursor: help;
  padding: 8px 14px; border-radius: 999px; background: var(--rl-page-alt); border: 1px solid var(--rl-border);
  font-size: 12.5px; font-weight: 600; color: var(--rl-text-dim); white-space: nowrap;
}
.rl-trust-chip svg { width: 15px; height: 15px; flex: none; color: var(--rl-crimson-500); }
.rl-trust-chip--wide { white-space: normal; }
.rl-trust-chip:focus { outline: none; }
.rl-trust-chip::after {
  content: attr(data-tooltip);
  position: absolute; bottom: calc(100% + 10px); left: 50%; transform: translateX(-50%);
  width: max-content; max-width: 220px;
  background: var(--rl-text); color: var(--rl-page);
  font-size: 11.5px; font-weight: 500; line-height: 1.4; text-align: center; white-space: normal;
  padding: 8px 10px; border-radius: 6px;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity 0.15s ease; z-index: 20;
}
.rl-trust-chip::before {
  content: ''; position: absolute; bottom: calc(100% + 4px); left: 50%; transform: translateX(-50%);
  border: 5px solid transparent; border-top-color: var(--rl-text);
  opacity: 0; visibility: hidden; transition: opacity 0.15s ease; z-index: 20;
}
.rl-trust-chip:hover::after, .rl-trust-chip:hover::before,
.rl-trust-chip:focus-visible::after, .rl-trust-chip:focus-visible::before {
  opacity: 1; visibility: visible;
}
.rl-trust-contact {
  display: flex; align-items: center; gap: 10px; text-decoration: none;
  padding: 13px 18px; border-radius: 8px; background: linear-gradient(160deg, var(--rl-crimson-300), var(--rl-crimson-700));
  color: #fff; font-family: 'Rajdhani', sans-serif; font-weight: 700; font-size: 14px; letter-spacing: 0.02em;
  filter: drop-shadow(0 12px 22px rgba(240,27,34,0.28)); transition: transform 0.15s ease;
}
.rl-trust-contact:hover { transform: translateY(-1px); color: #fff; }
.rl-trust-contact svg { width: 18px; height: 18px; flex: none; }
.rl-trust-contact__arrow { margin-left: auto; opacity: 0.85; }
