/**
 * RootCleanse final polish layer (v3.2)
 * Loads last — refinements for speed, consistency, devices.
 */

/* ---------- Base comfort ---------- */
::selection {
  background: rgba(168, 199, 58, 0.35);
  color: #1a1a1a;
}
:focus-visible {
  outline: 2px solid var(--lime, #a8c73a);
  outline-offset: 3px;
}
img {
  image-rendering: auto;
}
/* Avoid permanent compositor layers that jank scroll */
.hero__bg img {
  will-change: auto !important;
}

/* ---------- Buttons ---------- */
.btn {
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}
.btn--secondary::after {
  content: " \2192"; /* encoding-safe arrow */
}

/* ---------- Sticky header + top scroller (stable — no layout thrash) ----------
 * Root cause of "glitch when scrolling up": sticky chrome height/logo height
 * animating on .is-scrolled reflows the page and fights scroll position.
 * Fix: fixed header height; logo shrinks with transform only; hysteresis in JS.
 */
.site-chrome {
  position: sticky;
  top: 0;
  z-index: 1000;
  /* No transform here — transform on sticky can create odd containing blocks */
  background: #fcfaf5;
  /* Isolate paints without breaking sticky */
  isolation: isolate;
}

.site-chrome .announce-bar {
  /* Keep marquee height stable */
  flex-shrink: 0;
}

/* Kill competing pulse/shine that repaints the ticker every frame */
.announce-bar::after {
  display: none !important;
  animation: none !important;
}

/* Prefer compositor-only marquee (already transform-based) */
.announce-bar__track {
  will-change: transform;
  backface-visibility: hidden;
}
html.rc-perf-lite .announce-bar__track {
  will-change: auto;
}
@media (prefers-reduced-motion: reduce) {
  .announce-bar__track {
    will-change: auto;
  }
}

/* Fixed header height — same at top and when scrolled */
.site-header--center {
  --header-height: 5.5rem;
  --header-height-scrolled: 5.5rem;
  background: rgba(252, 250, 245, 0.97) !important;
  border-bottom: 1px solid rgba(26, 26, 26, 0.06);
  transition: box-shadow 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.site-header--center .site-header__inner,
.site-header--center.is-scrolled .site-header__inner,
.site-chrome.is-scrolled .site-header--center .site-header__inner {
  height: 5.5rem !important;
  min-height: 5.5rem !important;
  transition: none !important; /* never animate height */
}

/* Logo: one size in layout; visual shrink via scale only */
.site-header--center .logo__img,
.site-header--center .site-header__brand .custom-logo,
.site-header--center .site-header__brand img {
  height: 4.25rem !important;
  max-width: 10.5rem !important;
  width: auto !important;
  transition: transform 0.22s ease, filter 0.22s ease !important;
  transform-origin: center center;
  transform: translateZ(0) scale(1);
  /* Cancel load-in keyframes fighting scroll (premium logo-enter) */
  animation: none !important;
}

.site-header--center.is-scrolled .logo__img,
.site-header--center.is-scrolled .site-header__brand .custom-logo,
.site-header--center.is-scrolled .site-header__brand img,
.site-chrome.is-scrolled .site-header--center .logo__img,
.site-chrome.is-scrolled .site-header--center .site-header__brand img,
.site-header.is-scrolled .logo__img {
  height: 4.25rem !important; /* same layout box */
  max-width: 10.5rem !important;
  width: auto !important;
  transform: translateZ(0) scale(0.9);
}

/* Scrolled look = shadow only (no height / blur swap) */
.site-header.is-scrolled,
.site-chrome.is-scrolled .site-header {
  box-shadow: 0 4px 18px rgba(26, 26, 26, 0.07);
  border-bottom-color: rgba(26, 26, 26, 0.08);
  background: #fcfaf5 !important;
}

/* Desktop: light blur only when NOT scrolled (optional polish) */
@media (min-width: 901px) and (hover: hover) {
  .site-header--center:not(.is-scrolled) {
    background: rgba(252, 250, 245, 0.94) !important;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
  }
  .site-chrome.is-scrolled .site-header--center,
  .site-header--center.is-scrolled {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    background: #fcfaf5 !important;
  }
}

/* Mobile / low-end: solid bar, no blur ever */
@media (max-width: 900px) {
  .site-header,
  .site-header--center,
  .site-chrome {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    background: #fcfaf5 !important;
  }
  .site-header--center {
    --header-height: 4.75rem;
    --header-height-scrolled: 4.75rem;
  }
  .site-header--center .site-header__inner,
  .site-header--center.is-scrolled .site-header__inner,
  .site-chrome.is-scrolled .site-header--center .site-header__inner {
    height: 4.75rem !important;
    min-height: 4.75rem !important;
  }
  .site-header--center .logo__img,
  .site-header--center .site-header__brand .custom-logo,
  .site-header--center .site-header__brand img {
    height: 3.5rem !important;
    max-width: 8.5rem !important;
  }
  .site-header--center.is-scrolled .logo__img,
  .site-chrome.is-scrolled .site-header--center .logo__img {
    height: 3.5rem !important;
    max-width: 8.5rem !important;
    transform: translateZ(0) scale(0.92);
  }
  .site-header.is-scrolled {
    box-shadow: 0 1px 0 rgba(26, 26, 26, 0.08);
  }
}

html.rc-perf-lite .site-header,
html.rc-perf-lite .site-header--center,
html.rc-perf-lite .site-chrome {
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  background: #fcfaf5 !important;
}
html.rc-perf-lite .announce-bar__track {
  animation-duration: 40s; /* slower = cheaper */
}

/* ---------- Basket drawer polish ---------- */
.cart-drawer__panel {
  max-width: 28rem;
}
.cart-drawer__body {
  scrollbar-width: thin;
  scrollbar-color: rgba(47, 107, 50, 0.35) transparent;
}
.cart-drawer__body::-webkit-scrollbar {
  width: 6px;
}
.cart-drawer__body::-webkit-scrollbar-thumb {
  background: rgba(47, 107, 50, 0.3);
  border-radius: 999px;
}
.cart-drawer .rc-mini-cart__item:hover {
  border-color: rgba(47, 107, 50, 0.18) !important;
  box-shadow: 0 6px 18px rgba(20, 30, 18, 0.08);
}
.cart-drawer__checkout:hover {
  filter: brightness(1.05);
  transform: translateY(-1px);
}
.cart-drawer__checkout:active {
  transform: translateY(0);
}

/* Trust rows — flex with SVG, no pseudo-content encoding issues */
.rc-cart__trust {
  list-style: none;
  margin: 1rem 0 0;
  padding: 0.9rem 0 0;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  display: grid;
  gap: 0.55rem;
}
.rc-cart__trust li {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  padding-left: 0 !important;
  font-size: 0.86rem;
  color: var(--muted, #5c6350);
  line-height: 1.4;
}
.rc-cart__trust li::before {
  display: none !important;
  content: none !important;
}
.rc-cart__trust svg {
  width: 1.05rem;
  height: 1.05rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
  color: var(--leaf, #2f6b32);
  stroke: currentColor;
}

/* ---------- Cart page ---------- */
.rc-page-cart .container,
.rc-page-checkout .container {
  max-width: var(--container, 72rem);
}
.rc-cart__continue {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 1rem;
  font-weight: 700;
  color: var(--leaf, #2f6b32);
  text-decoration: none;
}
.rc-cart__continue:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ---------- Checkout ---------- */
.rc-checkout__trust {
  list-style: none;
  margin: 1rem 0 0;
  padding: 0.9rem 0 0;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  display: grid;
  gap: 0.55rem;
}
.rc-checkout__trust li {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  font-size: 0.86rem;
  color: var(--muted, #5c6350);
  line-height: 1.4;
}
.rc-checkout__trust svg {
  width: 1.1rem;
  height: 1.1rem;
  flex-shrink: 0;
  color: var(--leaf, #2f6b32);
}
.rc-checkout #place_order,
.rc-checkout button#place_order {
  width: 100%;
  min-height: 3.15rem;
  border-radius: 999px !important;
  font-weight: 800 !important;
  background: var(--leaf, #2f6b32) !important;
  color: #fff !important;
  border: none !important;
  box-shadow: 0 8px 22px rgba(47, 107, 50, 0.25);
}
.rc-checkout #place_order:hover {
  filter: brightness(1.05);
}

/* ---------- Game (pretty + calm) ---------- */
.rc-crawler.is-safe {
  border-radius: 0 0 1rem 1rem;
}
.rc-crawler__hud {
  gap: 0.4rem;
}
.rc-crawler__toggle {
  flex-shrink: 0;
}
.rc-crawler__toggle:hover {
  background: #e8f5c8;
}
@media (max-width: 640px) {
  .rc-crawler-promo__howto {
    display: none;
  }
  .rc-crawler__hud-row {
    flex-wrap: wrap;
    justify-content: center;
  }
}

/* ---------- Toast / back-to-top ---------- */
.toast-container {
  z-index: 10080;
}
.back-to-top {
  z-index: 10040;
  -webkit-tap-highlight-color: transparent;
}

/* ---------- Mobile forms ---------- */
@media (max-width: 640px) {
  .rc-checkout .input-text,
  .rc-checkout select,
  .rc-checkout textarea,
  .rc-cart__coupon .input-text {
    font-size: 16px !important; /* prevents iOS zoom on focus */
  }
}

/* ---------- Print ---------- */
@media print {
  .cart-drawer,
  .back-to-top,
  .cookie-notice,
  .rc-gut-section {
    display: none !important;
  }
}

/* ==========================================================================
   Contact page
   ========================================================================== */
.rc-contact-page {
  background: var(--cream, #fafcf3);
}
.rc-contact-hero {
  padding: clamp(2.5rem, 5vw, 4rem) 0 clamp(1.5rem, 3vw, 2rem);
  background:
    radial-gradient(ellipse 70% 80% at 10% 0%, rgba(168, 199, 58, 0.14), transparent 55%),
    radial-gradient(ellipse 50% 60% at 90% 20%, rgba(47, 107, 50, 0.08), transparent 50%),
    linear-gradient(180deg, #f7faf0 0%, var(--cream, #fafcf3) 100%);
  border-bottom: 1px solid rgba(26, 26, 26, 0.06);
  text-align: center;
}
.rc-contact-hero__title {
  font-family: var(--font-display, Outfit, system-ui, sans-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -0.02em;
  color: var(--charcoal, #1a1a1a);
  margin: 0.35rem 0 0.75rem;
  line-height: 1.15;
}
.rc-contact-hero__lead {
  max-width: 36rem;
  margin: 0 auto;
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--muted, #5a5a5a);
}
.rc-contact-main {
  padding-top: clamp(1.75rem, 3vw, 2.5rem) !important;
}
.rc-contact-topics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: clamp(1.75rem, 3vw, 2.5rem);
}
@media (max-width: 960px) {
  .rc-contact-topics { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 520px) {
  .rc-contact-topics { grid-template-columns: 1fr; }
}
.rc-contact-topic {
  background: #fff;
  border: 1px solid rgba(26, 26, 26, 0.07);
  border-radius: 1.1rem;
  padding: 1.25rem 1.15rem 1.3rem;
  box-shadow: 0 8px 28px rgba(26, 26, 26, 0.04);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}
@media (hover: hover) {
  .rc-contact-topic:hover {
    border-color: rgba(47, 107, 50, 0.2);
    box-shadow: 0 12px 32px rgba(47, 107, 50, 0.08);
    transform: translateY(-2px);
  }
}
.rc-contact-topic__icon {
  display: inline-flex;
  width: 2.5rem;
  height: 2.5rem;
  align-items: center;
  justify-content: center;
  border-radius: 0.75rem;
  background: linear-gradient(145deg, #f0f8dc, #e5f0c8);
  color: var(--leaf, #2f6b32);
  margin-bottom: 0.75rem;
}
.rc-contact-topic__icon svg {
  width: 1.25rem;
  height: 1.25rem;
}
.rc-contact-topic__title {
  font-family: var(--font-display, Outfit, system-ui, sans-serif);
  font-size: 1.05rem;
  margin: 0 0 0.4rem;
  color: var(--charcoal, #1a1a1a);
}
.rc-contact-topic__text {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--muted, #5a5a5a);
}

.rc-contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.25fr);
  gap: clamp(1.25rem, 3vw, 2rem);
  align-items: start;
}
@media (max-width: 900px) {
  .rc-contact-layout {
    grid-template-columns: 1fr;
  }
  .rc-contact-aside { order: 2; }
  .rc-contact-form-wrap { order: 1; }
}
.rc-contact-aside__card {
  background: #fff;
  border: 1px solid rgba(26, 26, 26, 0.07);
  border-radius: 1.25rem;
  padding: 1.5rem 1.4rem 1.55rem;
  box-shadow: 0 12px 36px rgba(26, 26, 26, 0.05);
  position: sticky;
  top: 6rem;
}
@media (max-width: 900px) {
  .rc-contact-aside__card { position: static; }
}
.rc-contact-aside__title {
  font-family: var(--font-display, Outfit, system-ui, sans-serif);
  font-size: 1.35rem;
  margin: 0 0 0.5rem;
  color: var(--charcoal, #1a1a1a);
}
.rc-contact-aside__intro {
  margin: 0 0 1.25rem;
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--muted, #5a5a5a);
}
.rc-contact-info {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1rem;
}
.rc-contact-info__label {
  display: block;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #6a7a55;
  margin-bottom: 0.25rem;
}
.rc-contact-info__value {
  display: block;
  font-size: 1rem;
  font-weight: 600;
  color: var(--charcoal, #1a1a1a);
  text-decoration: none;
  line-height: 1.4;
  overflow-wrap: anywhere;
}
a.rc-contact-info__value:hover {
  color: var(--leaf, #2f6b32);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.rc-contact-quick {
  margin-top: 1.35rem;
  padding-top: 1.15rem;
  border-top: 1px solid rgba(26, 26, 26, 0.07);
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.85rem;
  align-items: center;
}
.rc-contact-quick__label {
  width: 100%;
  margin: 0 0 0.15rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #6a7a55;
}
.rc-contact-quick a {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--leaf, #2f6b32);
  text-decoration: none;
}
.rc-contact-quick a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.rc-contact-form-card {
  background: #fff;
  border: 1px solid rgba(26, 26, 26, 0.07);
  border-radius: 1.25rem;
  padding: clamp(1.35rem, 3vw, 1.85rem);
  box-shadow: 0 14px 40px rgba(26, 26, 26, 0.06);
}
.rc-contact-form-card__head {
  margin-bottom: 1.35rem;
}
.rc-contact-form-card__head h2 {
  font-family: var(--font-display, Outfit, system-ui, sans-serif);
  font-size: clamp(1.35rem, 2.5vw, 1.65rem);
  margin: 0 0 0.4rem;
  color: var(--charcoal, #1a1a1a);
}
.rc-contact-form-card__head p {
  margin: 0;
  color: var(--muted, #5a5a5a);
  font-size: 0.95rem;
  line-height: 1.5;
}
.rc-contact-form .req {
  color: var(--leaf, #2f6b32);
  font-weight: 800;
}
.rc-contact-form__row--2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 1rem;
}
@media (max-width: 600px) {
  .rc-contact-form__row--2 { grid-template-columns: 1fr; }
}
.rc-contact-form .form-group {
  margin-bottom: 1rem;
}
.rc-contact-form .form-input,
.rc-contact-form .form-textarea,
.rc-contact-form select.form-input {
  width: 100%;
  border: 1.5px solid rgba(26, 26, 26, 0.12);
  border-radius: 0.75rem;
  padding: 0.75rem 0.95rem;
  background: #fbfcfa;
  font: inherit;
  color: var(--ink, #222);
  transition: border-color 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.rc-contact-form .form-input:focus,
.rc-contact-form .form-textarea:focus,
.rc-contact-form select.form-input:focus {
  outline: none;
  border-color: rgba(47, 107, 50, 0.45);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(168, 199, 58, 0.22);
}
.rc-contact-form .form-textarea {
  min-height: 9rem;
  resize: vertical;
}
.rc-contact-form .form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.9rem;
  line-height: 1.45;
  color: var(--muted, #5a5a5a);
  cursor: pointer;
}
.rc-contact-form .form-checkbox input {
  margin-top: 0.2rem;
  width: 1.05rem;
  height: 1.05rem;
  accent-color: var(--leaf, #2f6b32);
  flex-shrink: 0;
}
.rc-contact-form .btn--full {
  margin-top: 0.35rem;
  min-height: 3.1rem;
  border-radius: 999px;
  font-weight: 800;
}
.rc-contact-form__note {
  margin: 0.9rem 0 0;
  font-size: 0.8rem;
  line-height: 1.45;
  color: var(--muted, #5a5a5a);
}
.rc-contact-form-card .contact-success {
  text-align: center;
  padding: 2rem 1rem 1.25rem;
  border: 0;
  background: transparent;
}
.rc-contact-form-card .contact-success__icon {
  width: 3.5rem;
  height: 3.5rem;
  margin: 0 auto 1rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, #f0f8dc, #e5f0c8);
  border: 1.5px solid rgba(47, 107, 50, 0.2);
  color: var(--leaf, #2f6b32);
}
.rc-contact-form-card .contact-success h2 {
  font-family: var(--font-display, Outfit, system-ui, sans-serif);
  margin: 0;
  color: var(--charcoal, #1a1a1a);
}
.rc-contact-cta {
  text-align: center;
}
.rc-contact-cta__title {
  margin: 0 0 0.5rem;
  color: #fafcf3;
}
.rc-contact-cta__text {
  margin: 0 0 1.25rem;
  color: rgba(250, 252, 243, 0.88);
  max-width: 32rem;
  margin-left: auto;
  margin-right: auto;
}
.rc-contact-cta .btn--secondary {
  background: transparent;
  border: 1.5px solid rgba(250, 252, 243, 0.45);
  color: #fafcf3;
}
.rc-contact-cta .btn--secondary:hover {
  background: rgba(255, 255, 255, 0.1);
}
@media (max-width: 640px) {
  .rc-contact-form .form-input,
  .rc-contact-form .form-textarea,
  .rc-contact-form select.form-input {
    font-size: 16px !important;
  }
}

/* ==========================================================================
   FAQ page
   ========================================================================== */
.rc-faq-page {
  background: var(--cream, #fafcf3);
}
.rc-faq-hero {
  padding: clamp(2.5rem, 5vw, 4rem) 0 clamp(1.5rem, 3vw, 2rem);
  text-align: center;
  background:
    radial-gradient(ellipse 70% 80% at 15% 0%, rgba(168, 199, 58, 0.14), transparent 55%),
    radial-gradient(ellipse 50% 60% at 90% 30%, rgba(47, 107, 50, 0.08), transparent 50%),
    linear-gradient(180deg, #f4f8e8 0%, var(--cream, #fafcf3) 100%);
  border-bottom: 1px solid rgba(26, 26, 26, 0.06);
}
.rc-faq-hero__title {
  font-family: var(--font-display, Outfit, system-ui, sans-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -0.02em;
  margin: 0.35rem 0 0.75rem;
  color: var(--charcoal, #1a1a1a);
  line-height: 1.15;
}
.rc-faq-hero__lead {
  max-width: 38rem;
  margin: 0 auto;
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--muted, #5a5a5a);
}
.rc-faq-hero__meta {
  margin: 0.85rem 0 0;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--leaf, #2f6b32);
}
.rc-faq-body {
  padding-top: clamp(1.5rem, 3vw, 2.25rem);
}
.rc-faq-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.85rem 1.25rem;
  margin-bottom: 1.15rem;
  max-width: 48rem;
  margin-inline: auto;
}
.rc-faq-search {
  flex: 1 1 16rem;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  background: #fff;
  border: 1.5px solid rgba(26, 26, 26, 0.1);
  border-radius: 999px;
  padding: 0.55rem 1rem;
  box-shadow: 0 4px 16px rgba(26, 26, 26, 0.04);
  max-width: 28rem;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.rc-faq-search:focus-within {
  border-color: rgba(47, 107, 50, 0.45);
  box-shadow: 0 0 0 3px rgba(47, 107, 50, 0.12), 0 4px 16px rgba(26, 26, 26, 0.04);
}
.rc-faq-search svg {
  color: var(--leaf, #2f6b32);
  flex-shrink: 0;
}
.rc-faq-search input {
  flex: 1;
  border: 0;
  background: transparent;
  font: inherit;
  font-size: 1rem;
  min-width: 0;
  outline: none;
  color: var(--ink, #222);
}
.rc-faq-count {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 700;
  color: #6a7a55;
}
.rc-faq-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 0 auto 1.5rem;
  max-width: 48rem;
  justify-content: center;
}
.rc-faq-filter {
  appearance: none;
  border: 1.5px solid rgba(26, 26, 26, 0.1);
  background: #fff;
  color: #3a4a34;
  font: inherit;
  font-size: 0.86rem;
  font-weight: 700;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease, transform 0.12s ease;
}
.rc-faq-filter:hover {
  border-color: rgba(47, 107, 50, 0.35);
  color: var(--leaf, #2f6b32);
}
.rc-faq-filter:focus-visible {
  outline: 2px solid var(--leaf, #2f6b32);
  outline-offset: 2px;
}
.rc-faq-filter.is-active {
  background: var(--leaf, #2f6b32);
  border-color: var(--leaf, #2f6b32);
  color: #fff;
}
.rc-faq-list.faq-list {
  max-width: 48rem;
  margin: 0 auto;
  background: #fff;
  border: 1px solid rgba(26, 26, 26, 0.07);
  border-radius: 1.25rem;
  padding: 0.35rem 1.35rem 0.5rem;
  box-shadow: 0 12px 40px rgba(26, 26, 26, 0.05);
}
.rc-faq-list .faq-item {
  border-bottom: 1px solid rgba(26, 26, 26, 0.07);
  scroll-margin-top: 6rem;
}
.rc-faq-list .faq-item:last-child {
  border-bottom: 0;
}
.rc-faq-list .faq-item.is-highlight {
  animation: rc-faq-flash 1.4s ease;
}
@keyframes rc-faq-flash {
  0%, 100% { background: transparent; }
  20% { background: rgba(168, 199, 58, 0.14); }
  60% { background: rgba(168, 199, 58, 0.08); }
}
.rc-faq-list .faq-item__question {
  font-family: var(--font-display, Outfit, system-ui, sans-serif);
  font-weight: 700;
  font-size: clamp(1rem, 1.5vw, 1.1rem);
  color: var(--charcoal, #1a1a1a);
  padding: 1.15rem 0;
  gap: 1rem;
  align-items: flex-start;
  width: 100%;
  text-align: left;
}
.rc-faq-list .faq-item__q-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.35rem;
  flex: 1;
  min-width: 0;
}
.rc-faq-list .faq-item__cat {
  display: inline-block;
  font-family: system-ui, sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--leaf, #2f6b32);
  background: rgba(47, 107, 50, 0.08);
  border-radius: 999px;
  padding: 0.18rem 0.55rem;
  line-height: 1.3;
}
.rc-faq-list .faq-item__q-text {
  line-height: 1.35;
}
.rc-faq-list .faq-item__question:hover {
  color: var(--leaf, #2f6b32);
}
.rc-faq-list .faq-item__icon {
  margin-top: 0.35rem;
  flex-shrink: 0;
}
.rc-faq-list .faq-item__icon::before,
.rc-faq-list .faq-item__icon::after {
  background: var(--leaf, #2f6b32);
}
.rc-faq-list .faq-item__answer {
  font-size: 0.98rem;
  line-height: 1.65;
  color: var(--muted, #5a5a5a);
  padding: 0 0 1.2rem;
  max-width: 42rem;
}
.rc-faq-list .faq-item__answer p {
  margin: 0 0 0.75rem;
}
.rc-faq-list .faq-item__answer p:last-child {
  margin-bottom: 0;
}
.rc-faq-list .faq-item__answer ul,
.rc-faq-list .faq-item__answer ol {
  margin: 0 0 0.75rem;
  padding-left: 1.25rem;
}
.rc-faq-empty {
  text-align: center;
  margin: 1.5rem auto 0;
  max-width: 28rem;
  color: var(--muted, #5a5a5a);
  font-size: 0.95rem;
}
.rc-faq-none {
  text-align: center;
  padding: 2.5rem 1rem;
  background: #fff;
  border-radius: 1.1rem;
  border: 1px solid rgba(26, 26, 26, 0.07);
  max-width: 48rem;
  margin: 0 auto;
}
.rc-faq-disclaimer {
  max-width: 40rem;
  margin: 1.75rem auto 0;
  text-align: center;
  font-size: 0.82rem;
  line-height: 1.5;
  color: #7a8a6e;
}
.rc-faq-page-content {
  margin: 2.5rem auto 0;
  max-width: 42rem;
}
.rc-faq-links {
  padding: clamp(1.5rem, 3vw, 2.5rem) 0 clamp(2rem, 4vw, 3rem);
  background: var(--cream, #fafcf3);
}
.rc-faq-links__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  max-width: 56rem;
  margin: 0 auto;
}
.rc-faq-link-card {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 1.25rem 1.35rem;
  background: #fff;
  border: 1px solid rgba(26, 26, 26, 0.07);
  border-radius: 1rem;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 8px 24px rgba(26, 26, 26, 0.04);
  transition: transform 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
}
.rc-faq-link-card:hover {
  transform: translateY(-2px);
  border-color: rgba(47, 107, 50, 0.25);
  box-shadow: 0 12px 32px rgba(26, 26, 26, 0.07);
}
.rc-faq-link-card__eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--leaf, #2f6b32);
}
.rc-faq-link-card__title {
  font-family: var(--font-display, Outfit, system-ui, sans-serif);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--charcoal, #1a1a1a);
  line-height: 1.3;
}
.rc-faq-link-card__cta {
  margin-top: 0.35rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: #5a6a4a;
}
.rc-faq-cta__title {
  margin: 0 0 0.5rem;
  color: #fafcf3;
}
.rc-faq-cta__text {
  margin: 0 auto 1.25rem;
  max-width: 32rem;
  color: rgba(250, 252, 243, 0.9);
}
.rc-faq-cta .btn--secondary {
  background: transparent;
  border: 1.5px solid rgba(250, 252, 243, 0.45);
  color: #fafcf3;
}
@media (max-width: 800px) {
  .rc-faq-links__grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 640px) {
  .rc-faq-search input {
    font-size: 16px !important;
  }
  .rc-faq-list.faq-list {
    padding: 0.25rem 1rem 0.35rem;
    border-radius: 1rem;
  }
  .rc-faq-filters {
    justify-content: flex-start;
  }
}
