/* ==========================================================================
   RVKS — rvx-header
   Self-contained, namespaced site header. Requires NO Bootstrap JS, no jQuery,
   no popper, no yit-* asset. Pairs with js/rvx-header.js.

   Scope discipline: every rule below is scoped to .rvx-header, .rvx-scrim,
   .rvx-drawer or body.rvx-lock. Nothing leaks outside those.

   Palette + type lifted from css/rvk-premium-chrome.css and
   css/rvk-home-premium.css so the header reads as one system with the site.
   ========================================================================== */

.rvx-header {
  /* --- brand tokens (extracted from rvk-premium-chrome / rvk-home-premium) --- */
  --rvx-navy: #0a0f18;
  --rvx-navy-2: #121a28;
  --rvx-navy-3: #162238;
  --rvx-ink: #101827;
  --rvx-ink-nav: #141c2c;
  --rvx-ink-soft: #52607a;
  --rvx-gold: #c4a035;
  --rvx-gold-bright: #dfc465;
  --rvx-blue: #12325b;
  --rvx-white: #ffffff;
  --rvx-surface: #f6f8fc;
  --rvx-surface-2: #eef2f8;
  --rvx-hairline: rgba(16, 24, 39, 0.10);
  --rvx-hairline-soft: rgba(16, 24, 39, 0.06);
  --rvx-topbar-ink: rgba(234, 240, 247, 0.72);

  --rvx-shadow-bar: 0 6px 24px rgba(10, 15, 24, 0.10);
  --rvx-shadow-panel: 0 18px 44px rgba(10, 15, 24, 0.14);
  --rvx-shadow-drawer: -18px 0 48px rgba(10, 15, 24, 0.22);

  --rvx-font-nav: "Montserrat", "Plus Jakarta Sans", system-ui, -apple-system,
    "Segoe UI", Arial, sans-serif;
  --rvx-font-body: "Roboto", system-ui, -apple-system, "Segoe UI", Arial, sans-serif;

  --rvx-ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --rvx-dur: 220ms;

  --rvx-logo-h: 58px;
  --rvx-bar-pad: 16px;

  /* --- shell --- */
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  left: 0;
  z-index: 1080;
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  background: var(--rvx-white);
  font-family: var(--rvx-font-body);
  font-size: 16px;
  line-height: 1.5;
  color: var(--rvx-ink);
  text-align: left;
  box-shadow: 0 1px 0 var(--rvx-hairline-soft);
  transition: box-shadow var(--rvx-dur) ease-out;
}

/* Defend against bootstrap.css + yit-*.css leaking in --------------------
   Every reset below is wrapped in :where() so it carries the specificity of
   the bare element selector only. That keeps it strong enough to beat the
   theme's element-level rules (this file loads last) while staying weaker
   than the .rvx-* component rules further down, which must always win. */

:where(.rvx-header, .rvx-scrim, .rvx-drawer),
:where(.rvx-header, .rvx-drawer) *,
:where(.rvx-header, .rvx-drawer) *::before,
:where(.rvx-header, .rvx-drawer) *::after {
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

:where(.rvx-header, .rvx-drawer) ul,
:where(.rvx-header, .rvx-drawer) ol,
:where(.rvx-header, .rvx-drawer) li {
  margin: 0;
  padding: 0;
  list-style: none;
  list-style-type: none;
  text-indent: 0;
  background: none;
  border: 0;
  float: none;
  line-height: inherit;
}

/* yit-style.css ships `ul li { display: inline-block }` (and a 767px override).
   Match its specificity — this file loads last, so the tie goes to us. */
:where(.rvx-header, .rvx-drawer) ul li,
:where(.rvx-header, .rvx-drawer) ol li {
  display: block;
  line-height: inherit;
}

:where(.rvx-header, .rvx-drawer) ul::before,
:where(.rvx-header, .rvx-drawer) li::before {
  content: none;
}

/* bootstrap's `html [type="button"] { appearance: button }` outranks a bare
   `button` reset, and every toggle here is type="button". */
.rvx-header [type="button"],
.rvx-drawer [type="button"] {
  -webkit-appearance: none;
  appearance: none;
  background-image: none;
}

:where(.rvx-header, .rvx-drawer) a {
  text-decoration: none;
  background-color: transparent;
  color: inherit;
  outline-offset: 2px;
}

:where(.rvx-header, .rvx-drawer) a:hover,
:where(.rvx-header, .rvx-drawer) a:focus {
  text-decoration: none;
}

:where(.rvx-header, .rvx-drawer) button {
  margin: 0;
  padding: 0;
  border: 0;
  background: none;
  font: inherit;
  color: inherit;
  line-height: inherit;
  text-align: left;
  text-transform: none;
  border-radius: 0;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  overflow: visible;
}

:where(.rvx-header, .rvx-drawer) img {
  max-width: none;
  border: 0;
  vertical-align: middle;
}

:where(.rvx-header, .rvx-drawer) svg {
  display: block;
  flex: none;
  fill: none;
  overflow: visible;
}

/* yit-style.css declares `a { outline: none !important }`, which would erase
   every keyboard focus ring in here. !important is the only way back. */
.rvx-header :focus-visible,
.rvx-drawer :focus-visible {
  outline: 2px solid var(--rvx-gold) !important;
  outline-offset: 2px !important;
  border-radius: 2px;
}

.rvx-container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 15px;
}

/* ==========================================================================
   1. Utility bar
   ========================================================================== */

.rvx-utility {
  overflow: hidden;
  max-height: 46px;
  background: linear-gradient(105deg, var(--rvx-navy) 0%, var(--rvx-navy-2) 46%, var(--rvx-navy-3) 100%);
  border-bottom: 1px solid rgba(196, 160, 53, 0.26);
  opacity: 1;
  transition: max-height var(--rvx-dur) ease-out, opacity 160ms ease-out;
}

.rvx-utility__inner {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px 26px;
  min-height: 36px;
  padding-top: 6px;
  padding-bottom: 6px;
}

.rvx-utility__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--rvx-font-nav);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--rvx-topbar-ink);
  white-space: nowrap;
  transition: color var(--rvx-dur) ease-out;
}

.rvx-utility__link:hover,
.rvx-utility__link:focus {
  color: var(--rvx-gold-bright);
}

.rvx-utility__icon {
  width: 14px;
  height: 14px;
  stroke: var(--rvx-gold);
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: 0.95;
  transition: stroke var(--rvx-dur) ease-out;
}

.rvx-utility__link:hover .rvx-utility__icon {
  stroke: var(--rvx-gold-bright);
}

/* ==========================================================================
   2. Main bar
   ========================================================================== */

.rvx-bar {
  background: var(--rvx-white);
  transition: padding var(--rvx-dur) ease-out;
  padding-top: var(--rvx-bar-pad);
  padding-bottom: var(--rvx-bar-pad);
}

.rvx-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

/* --- logo --- */
.rvx-logo {
  display: inline-flex;
  align-items: center;
  flex: none;
  line-height: 0;
}

.rvx-logo__img {
  display: block;
  width: auto;
  max-width: 100%;
  margin: 0;   /* yit-responsive.css centres bare <img> below 767px */
  height: var(--rvx-logo-h);
  /* intrinsic 300x67 — height drives, width follows, ratio never squashed */
  aspect-ratio: 300 / 67;
  object-fit: contain;
  image-rendering: auto;
  transition: height var(--rvx-dur) ease-out;
}

/* ==========================================================================
   3. Desktop navigation (>= 992px)
   ========================================================================== */

.rvx-nav {
  display: none;
}

.rvx-menu {
  display: flex;
  align-items: center;
  gap: 2px;
}

.rvx-item {
  position: relative;
  display: block;
}

.rvx-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 11px;
  font-family: var(--rvx-font-nav);
  font-size: 12.5px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
  color: var(--rvx-ink-nav);
  background: transparent;
  transition: color var(--rvx-dur) ease-out;
}

.rvx-link::after {
  content: "";
  position: absolute;
  left: 11px;
  right: 11px;
  bottom: 2px;
  height: 2px;
  border-radius: 1px;
  background: linear-gradient(90deg, var(--rvx-gold), var(--rvx-gold-bright));
  transform: scaleX(0);
  transform-origin: left center;
  opacity: 0;
  pointer-events: none;
  transition: transform var(--rvx-dur) var(--rvx-ease), opacity 140ms ease-out;
}

.rvx-link:hover,
.rvx-link:focus {
  color: var(--rvx-navy);
}

.rvx-link:hover::after,
.rvx-link:focus-visible::after,
.rvx-item.rvx-open > .rvx-link::after,
.rvx-item.rvx-active > .rvx-link::after {
  transform: scaleX(1);
  opacity: 1;
}

.rvx-item.rvx-active > .rvx-link {
  color: var(--rvx-navy);
}

/* --- chevron on dropdown toggles --- */
.rvx-chev {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-left: 1px;
  border-right: 1.8px solid currentColor;
  border-bottom: 1.8px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  opacity: 0.65;
  transition: transform var(--rvx-dur) ease-out, opacity var(--rvx-dur) ease-out;
}

.rvx-item.rvx-open > .rvx-link .rvx-chev {
  transform: translateY(1px) rotate(-135deg);
  opacity: 1;
}

/* --- dropdown panel --- */
.rvx-panel {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 20;
  min-width: 250px;
  margin-top: 8px;
  padding: 6px;
  background: var(--rvx-white);
  border: 1px solid var(--rvx-hairline);
  border-radius: 8px;
  box-shadow: var(--rvx-shadow-panel);
  opacity: 0;
  visibility: hidden;
  transform: translateY(4px);
  pointer-events: none;
  transition: opacity 180ms ease-out, transform 180ms ease-out, visibility 0s linear 180ms;
}

.rvx-item:last-child .rvx-panel,
.rvx-panel--right {
  left: auto;
  right: 0;
}

.rvx-item.rvx-open > .rvx-panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
  transition: opacity 180ms ease-out, transform 180ms ease-out, visibility 0s linear 0s;
}

/* invisible bridge so the 8px gap never drops the hover */
.rvx-panel::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -9px;
  height: 9px;
}

.rvx-panel__link {
  position: relative;
  display: block;
  padding: 11px 14px 11px 16px;
  border-radius: 5px;
  font-family: var(--rvx-font-body);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.35;
  color: var(--rvx-ink);
  transition: background-color 160ms ease-out, color 160ms ease-out, padding 160ms ease-out;
}

.rvx-panel__link::before {
  content: "";
  position: absolute;
  left: 6px;
  top: 9px;
  bottom: 9px;
  width: 2px;
  border-radius: 1px;
  background: var(--rvx-gold);
  transform: scaleY(0);
  transform-origin: center;
  opacity: 0;
  transition: transform 160ms ease-out, opacity 160ms ease-out;
}

.rvx-panel__link:hover,
.rvx-panel__link:focus {
  background: var(--rvx-surface);
  color: var(--rvx-navy);
  padding-left: 20px;
}

.rvx-panel__link:hover::before,
.rvx-panel__link:focus::before {
  transform: scaleY(1);
  opacity: 1;
}

.rvx-panel__link.rvx-active-sub {
  color: var(--rvx-blue);
  font-weight: 600;
}

/* --- CTA --- */
.rvx-item--cta {
  margin-left: 10px;
}

.rvx-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 20px;
  border-radius: 4px;
  font-family: var(--rvx-font-nav);
  font-size: 12.5px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
  color: var(--rvx-white);
  background: linear-gradient(180deg, var(--rvx-navy-3) 0%, var(--rvx-navy) 100%);
  box-shadow: 0 4px 14px rgba(10, 15, 24, 0.20);
  transition: transform var(--rvx-dur) ease-out, box-shadow var(--rvx-dur) ease-out,
    background-color var(--rvx-dur) ease-out;
}

.rvx-cta:hover,
.rvx-cta:focus {
  color: var(--rvx-navy);
  background: linear-gradient(180deg, var(--rvx-gold-bright) 0%, var(--rvx-gold) 100%);
  box-shadow: 0 6px 18px rgba(196, 160, 53, 0.34);
  transform: translateY(-1px);
}

.rvx-item--cta.rvx-active > .rvx-cta {
  background: linear-gradient(180deg, var(--rvx-gold-bright) 0%, var(--rvx-gold) 100%);
  color: var(--rvx-navy);
}

/* ==========================================================================
   4. Hamburger (< 992px)
   ========================================================================== */

.rvx-burger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: none;
  width: 46px;
  height: 46px;
  margin-right: -8px;
  border-radius: 5px;
  background: transparent;
  color: var(--rvx-ink-nav);
  transition: background-color var(--rvx-dur) ease-out;
}

.rvx-burger:hover {
  background: var(--rvx-surface-2);
}

.rvx-burger__box {
  position: relative;
  display: block;
  width: 24px;
  height: 16px;
}

.rvx-burger__bar {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  transition: transform var(--rvx-dur) ease-out, opacity 120ms ease-out;
}

.rvx-burger__bar:nth-child(1) { top: 0; }
.rvx-burger__bar:nth-child(2) { top: 7px; }
.rvx-burger__bar:nth-child(3) { top: 14px; }

.rvx-burger[aria-expanded="true"] .rvx-burger__bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.rvx-burger[aria-expanded="true"] .rvx-burger__bar:nth-child(2) {
  opacity: 0;
  transform: scaleX(0.2);
}

.rvx-burger[aria-expanded="true"] .rvx-burger__bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ==========================================================================
   5. Condensed (sticky) state
   ========================================================================== */

.rvx-header--condensed {
  --rvx-bar-pad: 8px;
  --rvx-logo-h: 46px;
  box-shadow: var(--rvx-shadow-bar);
}

.rvx-header--condensed .rvx-utility {
  max-height: 0;
  opacity: 0;
  border-bottom-color: transparent;
}

/* ==========================================================================
   6. Scrim + drawer (< 992px)
   ========================================================================== */

.rvx-scrim {
  position: fixed;
  inset: 0;
  z-index: 1085;
  background: rgba(10, 15, 24, 0.52);
  opacity: 0;
  transition: opacity var(--rvx-dur, 220ms) ease-out;
}

.rvx-scrim[hidden] {
  display: none;
}

.rvx-scrim.rvx-scrim--on {
  opacity: 1;
}

.rvx-drawer {
  --rvx-navy: #0a0f18;
  --rvx-navy-3: #162238;
  --rvx-ink: #101827;
  --rvx-ink-nav: #141c2c;
  --rvx-ink-soft: #52607a;
  --rvx-gold: #c4a035;
  --rvx-gold-bright: #dfc465;
  --rvx-white: #ffffff;
  --rvx-surface: #f6f8fc;
  --rvx-surface-2: #eef2f8;
  --rvx-hairline: rgba(16, 24, 39, 0.10);
  --rvx-hairline-soft: rgba(16, 24, 39, 0.06);
  --rvx-font-nav: "Montserrat", "Plus Jakarta Sans", system-ui, -apple-system,
    "Segoe UI", Arial, sans-serif;
  --rvx-font-body: "Roboto", system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
  --rvx-dur: 220ms;

  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 1090;
  display: flex;
  flex-direction: column;
  width: 88%;
  max-width: 360px;
  margin: 0;
  padding: 0;
  background: var(--rvx-white);
  box-shadow: var(--rvx-shadow-drawer, -18px 0 48px rgba(10, 15, 24, 0.22));
  font-family: var(--rvx-font-body);
  font-size: 16px;
  line-height: 1.5;
  color: var(--rvx-ink);
  text-align: left;
  transform: translateX(100%);
  visibility: hidden;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  transition: transform var(--rvx-dur) ease-out, visibility 0s linear var(--rvx-dur);
}

.rvx-drawer.rvx-drawer--open {
  transform: translateX(0);
  visibility: visible;
  transition: transform var(--rvx-dur) ease-out, visibility 0s linear 0s;
}

.rvx-drawer__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--rvx-hairline-soft);
}

.rvx-drawer__title {
  font-family: var(--rvx-font-nav);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rvx-ink-soft);
}

.rvx-drawer__close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-right: -10px;
  border-radius: 5px;
  color: var(--rvx-ink-nav);
  transition: background-color var(--rvx-dur) ease-out;
}

.rvx-drawer__close:hover {
  background: var(--rvx-surface-2);
}

.rvx-drawer__close svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
}

.rvx-drawer__nav {
  flex: 1 1 auto;
  padding: 8px 0;
}

.rvx-dmenu {
  display: block;
}

.rvx-ditem {
  border-bottom: 1px solid var(--rvx-hairline-soft);
}

.rvx-dlink {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  width: 100%;
  min-height: 52px;
  padding: 12px 20px;
  font-family: var(--rvx-font-nav);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--rvx-ink-nav);
  background: transparent;
  transition: background-color 160ms ease-out, color 160ms ease-out;
}

.rvx-dlink:hover,
.rvx-dlink:focus {
  background: var(--rvx-surface);
  color: var(--rvx-navy);
}

.rvx-ditem.rvx-active > .rvx-dlink {
  color: var(--rvx-navy);
  box-shadow: inset 3px 0 0 var(--rvx-gold);
}

.rvx-dlink .rvx-chev {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  opacity: 0.6;
  transition: transform var(--rvx-dur) ease-out, opacity var(--rvx-dur) ease-out;
}

.rvx-ditem.rvx-open > .rvx-dlink .rvx-chev {
  transform: translateY(2px) rotate(-135deg);
  opacity: 1;
}

.rvx-acc {
  max-height: 0;
  overflow: hidden;
  background: var(--rvx-surface);
  transition: max-height var(--rvx-dur) ease-out;
}

.rvx-acc__list {
  padding: 4px 0 8px;
}

.rvx-acc__link {
  display: flex;
  align-items: center;
  min-height: 44px;
  padding: 10px 20px 10px 32px;
  font-family: var(--rvx-font-body);
  font-size: 14.5px;
  font-weight: 400;
  color: var(--rvx-ink-soft);
  transition: color 160ms ease-out, background-color 160ms ease-out;
}

.rvx-acc__link:hover,
.rvx-acc__link:focus {
  color: var(--rvx-navy);
  background: var(--rvx-surface-2);
}

.rvx-acc__link.rvx-active-sub {
  color: var(--rvx-navy);
  font-weight: 600;
}

.rvx-ditem--cta {
  border-bottom: 0;
  padding: 18px 20px 6px;
}

.rvx-dcta {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 12px 20px;
  border-radius: 4px;
  font-family: var(--rvx-font-nav);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--rvx-white);
  background: linear-gradient(180deg, var(--rvx-navy-3) 0%, var(--rvx-navy) 100%);
  transition: background-color var(--rvx-dur) ease-out, box-shadow var(--rvx-dur) ease-out;
}

.rvx-dcta:hover,
.rvx-dcta:focus {
  color: var(--rvx-navy);
  background: linear-gradient(180deg, var(--rvx-gold-bright) 0%, var(--rvx-gold) 100%);
}

.rvx-drawer__contact {
  flex: none;
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 10px 20px 26px;
}

.rvx-drawer__contact a {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 48px;
  padding: 8px 0;
  font-family: var(--rvx-font-body);
  font-size: 15px;
  font-weight: 500;
  color: var(--rvx-ink);
  transition: color 160ms ease-out;
}

.rvx-drawer__contact a:hover,
.rvx-drawer__contact a:focus {
  color: var(--rvx-gold);
}

.rvx-drawer__contact svg {
  width: 17px;
  height: 17px;
  stroke: var(--rvx-gold);
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Sticky-positioning fix: yit-style.css sets body { overflow-x: hidden },
   which turns <body> into a scroll container while <html> does the real
   scrolling. That double-scroller confines/confuses position:sticky (and
   caused compositing glitches with the old fixed nav too). `clip` keeps the
   horizontal clamp WITHOUT creating a scroll container, so the header sticks
   to the real viewport. `html body` outranks the theme's `body` selector
   regardless of stylesheet order. */
html {
  overflow-x: clip;
}
html body {
  overflow: clip visible;
}

html body.rvx-lock {
  overflow: hidden;
}

/* ==========================================================================
   7. The single breakpoint — 992px. No dead zone.
   ========================================================================== */

@media (min-width: 992px) {
  .rvx-nav {
    display: block;
  }

  .rvx-burger,
  .rvx-scrim,
  .rvx-drawer {
    display: none !important;
  }
}

@media (max-width: 991.98px) {
  .rvx-header {
    --rvx-logo-h: 44px;
    --rvx-bar-pad: 10px;
  }

  .rvx-header--condensed {
    --rvx-logo-h: 40px;
    --rvx-bar-pad: 7px;
  }

  .rvx-utility {
    max-height: 40px;
  }

  .rvx-utility__inner {
    min-height: 32px;
    gap: 6px 18px;
    padding-top: 5px;
    padding-bottom: 5px;
  }

  .rvx-utility__link {
    font-size: 11.5px;
    letter-spacing: 0.04em;
  }
}

@media (max-width: 479.98px) {
  .rvx-utility__link--email {
    display: none;
  }

  .rvx-header {
    --rvx-logo-h: 40px;
  }

  .rvx-container {
    padding: 0 14px;
  }
}

/* ==========================================================================
   8. Reduced motion
   ========================================================================== */

@media (prefers-reduced-motion: reduce) {
  .rvx-header,
  .rvx-header *,
  .rvx-header *::before,
  .rvx-header *::after,
  .rvx-scrim,
  .rvx-drawer,
  .rvx-drawer *,
  .rvx-drawer *::before,
  .rvx-drawer *::after {
    transition-duration: 0.01ms !important;
    transition-delay: 0s !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

/* ==========================================================================
   9. Print
   ========================================================================== */

@media print {
  .rvx-header {
    position: static;
    box-shadow: none;
  }

  .rvx-burger,
  .rvx-scrim,
  .rvx-drawer {
    display: none !important;
  }
}
