/* Rosey-owned public app styles. Keep the legacy theme base in style.css; put custom features and overrides here. */
:root {
  --rf-paper: #ffffff;
  --rf-ivory: #fffaf3;
  --rf-cream: #fff4e5;
  --rf-cream-strong: #f4dfc5;
  --rf-cream-soft: #fff7ec;
  --rf-brown-900: #38231a;
  --rf-brown-800: #4e2f22;
  --rf-brown-700: #6a4a39;
  --rf-brown-600: #7a5845;
  --rf-brown-500: #8f6e5c;
  --rf-accent: #a15b2d;
  --rf-accent-soft: #bd7441;
  --rf-heading-font: "Roboto Slab", Georgia, "Times New Roman", serif;
  --rf-line: rgba(112, 66, 38, 0.14);
  --rf-line-strong: rgba(112, 66, 38, 0.22);
  --rf-shadow-sm: 0 12px 32px rgba(77, 47, 28, 0.08);
  --rf-shadow-md: 0 18px 50px rgba(77, 47, 28, 0.12);
  --rf-shadow-lg: 0 24px 70px rgba(77, 47, 28, 0.16);
  --rf-control-blue-bg: #e8f1ff;
  --rf-control-blue-bg-hover: #dbeaff;
  --rf-control-blue-border: rgba(66, 100, 150, 0.18);
  --rf-control-blue-text: #31506f;
  --rf-control-blue-text-strong: #243f5c;
  --rf-status-green-bg: #ecf8ee;
  --rf-status-green-border: rgba(34, 85, 45, 0.2);
  --rf-status-green-text: #2d6533;
}

/* Public control roles: filters/pagers are blue; normal workflow statuses are green. */
.rf-library-filter-bar .rf-library-filter-menu > .rf-open-book-dropdown > .rf-library-filter-pill,
.rf-library-filter-bar .rf-library-filter-clear,
.rf-library-page-button,
.rf-filter-row .rf-chip,
.rf-narrator-filter-panel .rf-chip,
.rf-home-voice-pill,
.rf-books-collection-pill {
  background: var(--rf-control-blue-bg) !important;
  border-color: var(--rf-control-blue-border) !important;
  color: var(--rf-control-blue-text) !important;
}

.rf-library-filter-bar .rf-library-filter-menu > .rf-open-book-dropdown > .rf-library-filter-pill strong,
.rf-books-collection-pill strong {
  color: var(--rf-control-blue-text-strong) !important;
}

.rf-library-filter-bar .rf-library-filter-menu > .rf-open-book-dropdown > .rf-library-filter-pill:hover,
.rf-library-filter-bar .rf-library-filter-menu > .rf-open-book-dropdown > .rf-library-filter-pill:focus,
.rf-library-filter-bar .rf-library-filter-menu > .rf-open-book-dropdown[open] > .rf-library-filter-pill,
.rf-library-filter-bar .rf-library-filter-clear:hover,
.rf-library-filter-bar .rf-library-filter-clear:focus,
.rf-library-page-button:hover,
.rf-library-page-button:focus,
.rf-filter-row .rf-chip:hover,
.rf-filter-row .rf-chip.is-selected,
.rf-narrator-filter-panel .rf-chip:hover,
.rf-narrator-filter-panel .rf-chip.is-selected,
.rf-home-voice-pill:hover,
.rf-home-voice-pill:focus-visible,
.rf-home-voice-pill.is-active,
.rf-books-collection-pill:hover,
.rf-books-collection-pill.is-active {
  background: var(--rf-control-blue-bg-hover) !important;
  border-color: rgba(66, 100, 150, 0.28) !important;
  color: var(--rf-control-blue-text-strong) !important;
}

.rf-filter-row .rf-chip.is-selected,
.rf-narrator-filter-panel .rf-chip.is-selected,
.rf-home-voice-pill.is-active {
  background: var(--rf-control-blue-text) !important;
  color: #fff !important;
}

.rf-library-filter-bar .rf-library-filter-menu > .rf-open-book-dropdown > .rf-library-filter-panel .rf-library-filter-option:hover,
.rf-library-filter-bar .rf-library-filter-menu > .rf-open-book-dropdown > .rf-library-filter-panel .rf-library-filter-option:focus,
.rf-library-filter-bar .rf-library-filter-menu > .rf-open-book-dropdown > .rf-library-filter-panel .rf-library-filter-option.is-selected {
  background: var(--rf-control-blue-bg) !important;
  color: var(--rf-control-blue-text-strong) !important;
}

.rf-library-filter-bar .rf-library-filter-menu > .rf-open-book-dropdown > .rf-library-filter-panel .rf-library-filter-option.is-selected::after {
  content: "\F222" !important;
  font-family: "Material Design Icons" !important;
}

.rf-lifecycle-pill:not(.is-needs-attention):not(.is-payment-issue),
.rf-status-pill,
.rf-generating-pill {
  background: var(--rf-status-green-bg) !important;
  border: 1px solid var(--rf-status-green-border) !important;
  color: var(--rf-status-green-text) !important;
}

.rf-generating-spinner {
  border-color: rgba(45, 101, 51, 0.2) !important;
  border-right-color: var(--rf-status-green-text) !important;
}

.rf-icon-spin {
  animation: rf-icon-spin 0.8s linear infinite;
}

@keyframes rf-icon-spin {
  to {
    transform: rotate(360deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  .rf-icon-spin {
    animation: none;
  }
}

html {
  font-size: 16px;
}

body {
  background:
    radial-gradient(circle at top left, rgba(255, 223, 174, 0.45), transparent 30rem),
    linear-gradient(180deg, #fffaf3 0%, #ffffff 46%, #fff7ec 100%);
  color: var(--rf-brown-700);
  margin-bottom: 0;
}

.page {
  background: transparent;
}

::selection {
  background: rgba(189, 116, 65, 0.22);
  color: var(--rf-brown-900);
}

.rf-account-section {
  min-height: calc(100vh - 180px);
  padding: 64px 24px;
  background:
    radial-gradient(circle at 20% 18%, rgba(248, 226, 195, 0.56), transparent 32rem),
    radial-gradient(circle at 84% 12%, rgba(197, 119, 77, 0.16), transparent 30rem),
    #fffaf4;
  color: var(--rf-brown-700);
  font-family: "Open Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  text-align: center;
}

.rf-account-section .container {
  max-width: 760px;
}

.rf-account-card {
  display: grid;
  gap: 22px;
  max-width: 720px;
  margin: 0 auto;
  padding: 48px;
  border: 1px solid var(--rf-line);
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--rf-shadow-lg);
}

.rf-account-card h1 {
  margin: 0;
  color: var(--rf-brown-900);
  font-family: "Roboto Slab", Georgia, "Times New Roman", serif;
  font-size: 54px;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.08;
}

.rf-account-kicker {
  margin: 0;
  color: var(--rf-accent-soft);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.22em;
  line-height: 1.2;
  text-transform: uppercase;
}

.rf-account-intro,
.rf-account-note,
.rf-account-email {
  margin: 0 auto;
  max-width: 60ch;
  color: var(--rf-brown-600);
  font-size: 17px;
  line-height: 1.6;
}

.rf-account-email {
  display: inline-flex;
  justify-self: center;
  max-width: 100%;
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--rf-cream-strong);
  color: var(--rf-brown-800);
  font-weight: 700;
  overflow-wrap: anywhere;
}

.rf-account-form,
.rf-account-resend {
  display: grid;
  gap: 18px;
  width: 100%;
  max-width: 640px;
  margin: 0 auto;
}

.rf-account-field {
  display: grid;
  gap: 8px;
  justify-items: center;
  text-align: center;
}

.rf-account-label {
  color: var(--rf-brown-700);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.3;
}

.rf-account-input {
  width: 100%;
  min-height: 54px;
  padding: 0 20px;
  border: 1px solid var(--rf-line-strong);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--rf-brown-900);
  font-family: "Open Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.4;
}

.rf-account-input:focus {
  border-color: rgba(161, 91, 45, 0.34);
  box-shadow: 0 0 0 0.18rem rgba(189, 116, 65, 0.14);
  outline: 0;
}

.rf-account-code {
  max-width: 340px;
  margin: 0 auto;
  font-size: 28px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-align: center;
  text-transform: uppercase;
}

.rf-account-actions {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  width: 100%;
}

.rf-account-dashboard-actions .rf-account-sign-out-button {
  grid-column: 1 / -1;
}

.rf-account-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 28px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-family: "Open Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: background-color 160ms ease, border-color 160ms ease, box-shadow 160ms ease, color 160ms ease;
}

.rf-account-button-primary {
  background: var(--rf-brown-800);
  border-color: var(--rf-brown-800);
  color: #fffaf4;
}

.rf-account-button-primary:hover,
.rf-account-button-primary:focus {
  background: var(--rf-brown-900);
  border-color: var(--rf-brown-900);
  color: #fffaf4;
}

.rf-account-button-secondary {
  background: rgba(255, 250, 244, 0.72);
  border-color: var(--rf-line-strong);
  color: var(--rf-brown-800);
}

.rf-account-button-secondary:hover,
.rf-account-button-secondary:focus {
  background: var(--rf-cream-strong);
  border-color: rgba(112, 66, 38, 0.26);
  color: var(--rf-brown-900);
}

.rf-account-button:disabled {
  cursor: not-allowed;
  opacity: 0.62;
}

.rf-account-form > .rf-account-button,
.rf-account-resend .rf-account-button {
  width: 100%;
  max-width: 340px;
  justify-self: center;
}

.rf-account-note {
  width: 100%;
  font-size: 15px;
  text-align: center;
}

.rf-account-help,
.rf-account-status {
  margin: 0;
  color: var(--rf-brown-600);
  font-size: 14px;
  line-height: 1.5;
  text-align: center;
}

.rf-account-help {
  width: 100%;
}

.rf-account-status {
  display: inline-flex;
  justify-self: center;
  width: auto;
  padding: 10px 16px;
  border-radius: 999px;
  background: #fff4df;
  color: var(--rf-brown-800);
  font-weight: 700;
}

.rf-account-validation {
  text-align: center;
}

.rf-account-details {
  display: grid;
  grid-template-columns: minmax(120px, 0.35fr) 1fr;
  gap: 14px 22px;
  margin: 4px 0;
  padding: 24px;
  border-radius: 24px;
  background: var(--rf-cream-soft);
  text-align: left;
}

.rf-account-details dt {
  color: var(--rf-accent);
  font-weight: 800;
}

.rf-account-details dd {
  margin: 0;
  color: var(--rf-brown-900);
  overflow-wrap: anywhere;
}

@media (max-width: 575px) {
  .rf-account-section {
    padding: 40px 16px;
  }

  .rf-account-card {
    gap: 20px;
    padding: 30px 22px;
    border-radius: 24px;
  }

  .rf-account-card h1 {
    font-size: 42px;
    line-height: 1.08;
  }

  .rf-account-actions,
  .rf-account-details {
    grid-template-columns: 1fr;
  }
}

body,
input,
textarea,
select,
button {
  color: var(--rf-brown-700);
}

h1,
h2,
h3,
h4,
h5,
h6,
.home-headings-custom,
.font-accent {
  color: var(--rf-brown-900);
  font-family: "Roboto Slab", Georgia, "Times New Roman", serif;
}

.home-headings-custom .first-word {
  color: var(--rf-accent-soft) !important;
}

h1,
h2,
h3 {
  letter-spacing: -0.02em;
}

.rf-visually-hidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

a {
  color: var(--rf-accent);
  transition: color 0.18s ease, opacity 0.18s ease, transform 0.18s ease;
}

a:hover,
a:focus {
  color: var(--rf-brown-800);
}

.rf-button {
  align-items: center;
  background: var(--rf-cream-soft);
  border: 1px solid rgba(112, 66, 38, 0.16);
  border-radius: 999px;
  color: var(--rf-brown-800);
  cursor: pointer;
  display: inline-flex;
  font-weight: 900;
  justify-content: center;
  min-height: 44px;
  padding: 0.72rem 1.1rem;
  text-decoration: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
  white-space: nowrap;
}

.rf-button:hover,
.rf-button:focus {
  box-shadow: 0 12px 24px rgba(77, 47, 28, 0.13);
  color: #3a2318;
  text-decoration: none;
  transform: translateY(-1px);
}

.rf-button:disabled {
  cursor: not-allowed;
  opacity: 0.55;
  transform: none;
}

.rf-button-primary {
  background: var(--rf-brown-800);
  border-color: var(--rf-brown-800);
  box-shadow: 0 14px 34px rgba(78, 47, 34, 0.18);
  color: #fff9ef;
}

.rf-button-primary:hover,
.rf-button-primary:focus {
  background: #3f2419;
  border-color: #3f2419;
  color: #fff9ef;
}

.rf-button-secondary {
  background: var(--rf-ivory);
  border-color: rgba(112, 66, 38, 0.2);
  color: var(--rf-brown-800);
}

.rf-button-secondary:hover,
.rf-button-secondary:focus {
  background: var(--rf-cream-strong);
  border-color: rgba(112, 66, 38, 0.26);
  color: #3a2318;
}

.rf-site-dialog {
  background: transparent;
  border: 0;
  color: var(--rf-brown-700);
  max-width: min(92vw, 34rem);
  padding: 0;
  width: 100%;
}

.rf-site-dialog::backdrop {
  background: rgba(42, 28, 20, 0.56);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.rf-site-dialog[open] {
  animation: rf-site-dialog-in 0.16s ease-out;
}

.rf-site-dialog-panel {
  background:
    radial-gradient(circle at top right, rgba(255, 220, 170, 0.36), transparent 15rem),
    linear-gradient(180deg, rgba(255, 253, 248, 0.98), rgba(255, 246, 235, 0.98));
  border: 1px solid var(--rf-line-strong);
  border-radius: 28px;
  box-shadow: var(--rf-shadow-lg);
  padding: clamp(1.25rem, 3vw, 1.85rem);
  text-align: left;
}

.rf-site-dialog-header {
  align-items: start;
  display: grid;
  gap: 1rem;
  grid-template-columns: minmax(0, 1fr) auto;
}

.rf-site-dialog-eyebrow {
  color: var(--rf-accent);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  margin: 0 0 0.35rem;
  text-transform: uppercase;
}

.rf-site-dialog-title {
  color: var(--rf-brown-900);
  font-family: "Roboto Slab", Georgia, "Times New Roman", serif;
  font-size: clamp(1.65rem, 4vw, 2.2rem);
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin: 0;
}

.rf-site-dialog-close {
  align-items: center;
  background: var(--rf-ivory);
  border: 1px solid var(--rf-line);
  border-radius: 999px;
  color: var(--rf-brown-700);
  cursor: pointer;
  display: inline-flex;
  height: 2.4rem;
  justify-content: center;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
  width: 2.4rem;
}

.rf-site-dialog-close:hover,
.rf-site-dialog-close:focus {
  background: var(--rf-cream-strong);
  box-shadow: var(--rf-shadow-sm);
  transform: translateY(-1px);
}

.rf-site-dialog-message {
  color: var(--rf-brown-700);
  font-size: 1rem;
  line-height: 1.65;
  margin: 1rem 0 0;
}

.rf-site-dialog-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: flex-end;
  margin-top: 1.4rem;
}

body.rf-site-dialog-open {
  overflow: hidden;
}

.rf-checkout-auth-form {
  display: grid;
  gap: 1rem;
  margin-top: 1.25rem;
}

.rf-checkout-auth-step {
  display: grid;
  gap: 0.45rem;
}

.rf-checkout-auth-label {
  color: var(--rf-brown-700);
  font-size: 0.92rem;
  font-weight: 900;
  margin: 0;
}

.rf-checkout-auth-input {
  background: #fffdf9;
  border: 1px solid var(--rf-line);
  border-radius: 999px;
  color: var(--rf-brown-900);
  font: inherit;
  font-size: 1rem;
  min-height: 48px;
  padding: 0.65rem 1rem;
  width: 100%;
}

.rf-checkout-auth-input:focus {
  border-color: rgba(169, 91, 45, 0.48);
  box-shadow: 0 0 0 4px rgba(169, 91, 45, 0.12);
  outline: none;
}

.rf-checkout-auth-code {
  font-size: 1.18rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-align: center;
}

.rf-checkout-auth-note {
  color: var(--rf-brown-700);
  line-height: 1.55;
  margin: 0 0 0.25rem;
}

.rf-checkout-auth-link {
  background: transparent;
  border: 0;
  color: var(--rf-accent);
  cursor: pointer;
  font: inherit;
  font-weight: 900;
  justify-self: start;
  padding: 0;
  text-decoration: underline;
}

.rf-checkout-auth-link:disabled {
  cursor: not-allowed;
  opacity: 0.55;
}

.rf-checkout-auth-help {
  color: var(--rf-brown-700);
  line-height: 1.45;
  margin: -0.1rem 0 0;
}

.rf-checkout-auth-status {
  background: rgba(250, 239, 223, 0.66);
  border: 1px solid rgba(112, 66, 38, 0.14);
  border-radius: 18px;
  color: var(--rf-brown-700);
  line-height: 1.5;
  margin: 0;
  padding: 0.75rem 0.9rem;
}

.rf-checkout-auth-status.is-error {
  background: #fff0f1;
  border-color: rgba(156, 26, 45, 0.22);
  color: #92162c;
}

@keyframes rf-site-dialog-in {
  from {
    opacity: 0;
    transform: translateY(8px) scale(0.98);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (max-width: 575px) {
  .rf-site-dialog-actions .rf-button {
    width: 100%;
  }
}

.text-primary,
.text-madison {
  color: var(--rf-accent) !important;
}

.text-dark,
.text-black {
  color: var(--rf-brown-900) !important;
}

.bg-index-body {
  background-image: none;
  background:
    radial-gradient(circle at top right, rgba(255, 214, 152, 0.26), transparent 24rem),
    linear-gradient(180deg, rgba(255, 250, 243, 0.88), rgba(255, 255, 255, 0.96));
}

.bg-madison {
  background:
    linear-gradient(135deg, #4e2f22 0%, #6a402d 52%, #8f5a37 100%) !important;
}

.rd-navbar-wrap {
  padding-inline: 1rem;
}

.rd-navbar-default.rd-navbar-static,
.rd-navbar-transparent.rd-navbar-static {
  background: rgba(255, 250, 243, 0.92);
  border-bottom: 1px solid var(--rf-line);
  box-shadow: var(--rf-shadow-sm);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.rd-navbar-default.rd-navbar-fixed,
.rd-navbar-transparent.rd-navbar-fixed {
  background: transparent;
  border-bottom: 0;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.rd-navbar-default.rd-navbar-static .rd-navbar-inner,
.rd-navbar-default.rd-navbar-fixed .rd-navbar-inner,
.rd-navbar-transparent.rd-navbar-static .rd-navbar-inner,
.rd-navbar-transparent.rd-navbar-fixed .rd-navbar-inner {
  max-width: 1240px;
  margin: 0 auto;
}

@media (min-width: 1400px) {
  .rd-navbar-default.rd-navbar-static .rd-navbar-inner,
  .rd-navbar-transparent.rd-navbar-static .rd-navbar-inner {
    max-width: 100rem;
    width: calc(100% - 2rem);
  }
}

.rd-navbar-default.rd-navbar-static .rd-navbar-panel,
.rd-navbar-default.rd-navbar-fixed .rd-navbar-panel,
.rd-navbar-transparent.rd-navbar-static .rd-navbar-panel,
.rd-navbar-transparent.rd-navbar-fixed .rd-navbar-panel {
  background: transparent;
}

.rd-navbar-brand img,
.rd-navbar-mobile-brand img {
  height: auto;
  max-height: 64px;
  width: auto;
}

.rd-navbar-default.rd-navbar-fixed .rd-navbar-panel,
.rd-navbar-transparent.rd-navbar-fixed .rd-navbar-panel {
  --rf-mobile-panel-height: 56px;
  --rf-mobile-control-size: 2.35rem;
  --rf-mobile-actions-optical-shift: -7px;
  background: rgba(255, 250, 243, 0.92);
  border-bottom: 1px solid var(--rf-line);
  box-sizing: border-box;
  box-shadow: var(--rf-shadow-sm);
  display: flex;
  align-items: center;
  height: var(--rf-mobile-panel-height);
  justify-content: space-between;
  min-height: 0;
  padding: 0 0.65rem 0 0.4rem;
  position: relative;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.rd-navbar-default.rd-navbar-fixed .rd-navbar-toggle,
.rd-navbar-transparent.rd-navbar-fixed .rd-navbar-toggle {
  align-items: center;
  display: inline-flex;
  flex: 0 0 auto;
  justify-content: center;
  margin: 0;
  position: relative;
  transform: none;
  vertical-align: middle;
  z-index: 18;
}

.rd-navbar-default.rd-navbar-fixed .panel-title,
.rd-navbar-transparent.rd-navbar-fixed .panel-title {
  left: 50%;
  line-height: 1.15;
  margin: 0;
  max-width: calc(100% - 10rem);
  overflow: hidden;
  padding-inline: 0.5rem;
  position: absolute;
  text-align: center;
  text-overflow: ellipsis;
  top: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  z-index: 10;
}

.rd-navbar-default.rd-navbar-fixed .rf-mobile-menu-toggle span,
.rd-navbar-transparent.rd-navbar-fixed .rf-mobile-menu-toggle span,
.rd-navbar-default.rd-navbar-fixed .rf-mobile-menu-toggle span:before,
.rd-navbar-transparent.rd-navbar-fixed .rf-mobile-menu-toggle span:before,
.rd-navbar-default.rd-navbar-fixed .rf-mobile-menu-toggle span:after,
.rd-navbar-transparent.rd-navbar-fixed .rf-mobile-menu-toggle span:after {
  background: transparent;
}

.rd-navbar-default.rd-navbar-fixed .rf-mobile-menu-toggle span:before,
.rd-navbar-transparent.rd-navbar-fixed .rf-mobile-menu-toggle span:before {
  align-items: center;
  color: var(--rf-accent);
  content: "\f142";
  display: flex;
  font-family: "FontAwesome";
  font-size: 1.65rem;
  inset: 0;
  justify-content: center;
  line-height: 1;
}

.rd-navbar-default.rd-navbar-fixed .rf-mobile-menu-toggle span:after,
.rd-navbar-transparent.rd-navbar-fixed .rf-mobile-menu-toggle span:after {
  color: var(--rf-accent);
}

.rd-navbar-default.rd-navbar-fixed .rf-mobile-menu-toggle,
.rd-navbar-transparent.rd-navbar-fixed .rf-mobile-menu-toggle,
.rf-mobile-header-action {
  height: var(--rf-mobile-control-size);
}

.rd-navbar-default.rd-navbar-fixed .rf-mobile-menu-toggle,
.rd-navbar-transparent.rd-navbar-fixed .rf-mobile-menu-toggle {
  align-self: center;
  width: var(--rf-mobile-control-size);
}

.rd-navbar-default.rd-navbar-fixed .rf-mobile-menu-toggle span,
.rd-navbar-transparent.rd-navbar-fixed .rf-mobile-menu-toggle span {
  height: var(--rf-mobile-control-size);
  line-height: 1;
  margin: 0;
  transform: none;
  width: var(--rf-mobile-control-size);
}

.rf-mobile-header-actions {
  align-items: center;
  display: flex;
  flex: 0 0 auto;
  gap: 0.45rem;
  justify-content: flex-end;
  position: absolute;
  right: 0.65rem;
  top: calc((var(--rf-mobile-panel-height) - var(--rf-mobile-control-size)) / 2 + var(--rf-mobile-actions-optical-shift));
  transform: none;
  z-index: 18;
}

.rd-navbar-default.rd-navbar-fixed .rd-navbar-panel > .rf-mobile-menu-toggle,
.rd-navbar-default.rd-navbar-fixed .rd-navbar-panel > .panel-title,
.rd-navbar-default.rd-navbar-fixed .rd-navbar-panel > .rf-mobile-header-actions,
.rd-navbar-transparent.rd-navbar-fixed .rd-navbar-panel > .rf-mobile-menu-toggle,
.rd-navbar-transparent.rd-navbar-fixed .rd-navbar-panel > .panel-title,
.rd-navbar-transparent.rd-navbar-fixed .rd-navbar-panel > .rf-mobile-header-actions {
  align-self: center;
}

.rd-navbar-default.rd-navbar-fixed .rd-navbar-panel > .rf-mobile-header-actions,
.rd-navbar-transparent.rd-navbar-fixed .rd-navbar-panel > .rf-mobile-header-actions {
  margin-top: 0;
}

.rf-mobile-header-action {
  align-items: center;
  background: rgba(255, 255, 255, 0.72);
  box-sizing: border-box;
  border: 1px solid rgba(112, 66, 38, 0.14);
  border-radius: 999px;
  box-shadow: 0 8px 20px rgba(77, 47, 28, 0.08);
  color: var(--rf-brown-800) !important;
  display: inline-flex;
  gap: 0.35rem;
  justify-content: center;
  line-height: 1;
  min-width: 2.35rem;
  padding: 0 0.7rem;
  vertical-align: middle;
}

.rf-mobile-header-action:hover,
.rf-mobile-header-action:focus {
  background: rgba(255, 250, 243, 0.96);
  color: var(--rf-brown-900) !important;
}

.rf-mobile-header-action .icon {
  color: var(--rf-accent);
  font-size: 1.1rem;
  line-height: 1;
}

.rf-mobile-header-cart-count {
  color: var(--rf-brown-700);
  font-size: 0.94rem;
  font-weight: 800;
  line-height: 1;
}

.rf-mobile-contact-toggle {
  padding-inline: 0.65rem;
}

.rd-navbar-default.rd-navbar-fixed .rd-navbar-nav-wrap,
.rd-navbar-transparent.rd-navbar-fixed .rd-navbar-nav-wrap {
  background: rgba(255, 250, 243, 0.98);
  border-right: 1px solid var(--rf-line);
  box-shadow: var(--rf-shadow-lg);
  height: 100dvh;
  max-height: 100dvh;
  overflow: hidden;
  top: 0;
  width: min(22rem, 86vw);
}

.rd-navbar-default.rd-navbar-fixed .rd-navbar-cart,
.rd-navbar-transparent.rd-navbar-fixed .rd-navbar-cart,
.rd-navbar-default.rd-navbar-fixed .rd-navbar-search,
.rd-navbar-transparent.rd-navbar-fixed .rd-navbar-search {
  display: none !important;
}

.rd-navbar-default.rd-navbar-fixed .rd-navbar-mobile-scroll,
.rd-navbar-transparent.rd-navbar-fixed .rd-navbar-mobile-scroll {
  height: calc(100dvh - 56px);
  max-height: calc(100dvh - 56px);
  overflow-x: hidden;
  overflow-y: auto;
}

.rd-navbar-default.rd-navbar-fixed .rd-navbar-nav,
.rd-navbar-transparent.rd-navbar-fixed .rd-navbar-nav {
  margin-top: 1rem;
  padding: 0 1rem 1.5rem;
}

.rd-navbar-default.rd-navbar-fixed .rd-navbar-nav li a,
.rd-navbar-transparent.rd-navbar-fixed .rd-navbar-nav li a {
  border-radius: 1rem;
  color: var(--rf-brown-800);
  font-weight: 800;
  padding: 0.85rem 3rem 0.85rem 1rem;
}

.rd-navbar-default.rd-navbar-fixed .rd-navbar-nav li.opened > a,
.rd-navbar-default.rd-navbar-fixed .rd-navbar-nav li.active > a,
.rd-navbar-default.rd-navbar-fixed .rd-navbar-nav li.focus > a,
.rd-navbar-default.rd-navbar-fixed .rd-navbar-nav li:hover > a,
.rd-navbar-transparent.rd-navbar-fixed .rd-navbar-nav li.opened > a,
.rd-navbar-transparent.rd-navbar-fixed .rd-navbar-nav li.active > a,
.rd-navbar-transparent.rd-navbar-fixed .rd-navbar-nav li.focus > a,
.rd-navbar-transparent.rd-navbar-fixed .rd-navbar-nav li:hover > a {
  background: rgba(244, 223, 197, 0.92);
  color: var(--rf-brown-900);
}

.rd-navbar-default.rd-navbar-fixed .rd-navbar-nav > li + li:before,
.rd-navbar-transparent.rd-navbar-fixed .rd-navbar-nav > li + li:before {
  background: var(--rf-line);
  top: -0.45rem;
}

.rd-navbar-default.rd-navbar-fixed .rd-navbar-submenu-toggle,
.rd-navbar-transparent.rd-navbar-fixed .rd-navbar-submenu-toggle {
  color: var(--rf-brown-700);
  line-height: 2.75rem;
  right: 0.25rem;
  text-align: center;
  top: 50%;
  transform: translateY(-50%);
  width: 2.75rem;
}

.rd-navbar-default.rd-navbar-fixed .rd-navbar-dropdown,
.rd-navbar-transparent.rd-navbar-fixed .rd-navbar-dropdown {
  background: rgba(255, 252, 247, 0.92) !important;
  border: 1px solid var(--rf-line);
  border-radius: 1rem;
  margin: 0.55rem 0 0.9rem;
  padding: 0.65rem 0.35rem 0.65rem 0.75rem !important;
}

.rd-navbar-default.rd-navbar-fixed .rd-navbar-dropdown > li > a,
.rd-navbar-transparent.rd-navbar-fixed .rd-navbar-dropdown > li > a {
  color: var(--rf-brown-700) !important;
  font-size: 0.95rem;
  font-weight: 700;
  padding: 0.45rem 0.85rem 0.45rem 1.15rem;
}

.rd-navbar-nav > li > a {
  border-radius: 999px;
  color: var(--rf-brown-800);
  font-size: 0.96rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  padding: 0.7rem 0.88rem !important;
}

.rd-navbar-nav > li > a:hover,
.rd-navbar-nav > li.focus > a,
.rd-navbar-nav > li.active > a {
  background: rgba(244, 223, 197, 0.9);
  color: var(--rf-brown-900);
}

.rd-navbar-dropdown {
  background: rgba(255, 252, 247, 0.98) !important;
  border: 1px solid var(--rf-line);
  border-radius: 20px;
  box-shadow: var(--rf-shadow-md);
  padding-block: 0.35rem !important;
}

.rd-navbar-dropdown li > a {
  color: var(--rf-brown-700) !important;
  font-weight: 700;
  padding-block: 0.7rem !important;
}

.rd-navbar-dropdown li > a:hover {
  background: rgba(244, 223, 197, 0.72) !important;
  color: var(--rf-brown-900) !important;
}

.rd-navbar-top-panel,
.rd-navbar-top-panel a,
.panel-title {
  color: var(--rf-brown-700) !important;
}

.rd-navbar-default.rd-navbar-static .rd-navbar-top-panel,
.rd-navbar-transparent.rd-navbar-static .rd-navbar-top-panel,
.rd-navbar-default.rd-navbar-fixed .rd-navbar-top-panel,
.rd-navbar-transparent.rd-navbar-fixed .rd-navbar-top-panel {
  background:
    radial-gradient(circle at top left, rgba(255, 224, 177, 0.38), transparent 16rem),
    linear-gradient(135deg, rgba(255, 248, 238, 0.98) 0%, rgba(252, 237, 216, 0.96) 52%, rgba(244, 223, 197, 0.92) 100%);
  border-bottom: 1px solid rgba(112, 66, 38, 0.12);
  box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.45);
  padding: 0.55rem 1.2rem 0.6rem !important;
}

.rd-navbar-top-panel ul li,
.rd-navbar-top-panel .unit-body,
.rd-navbar-top-panel .unit-body a {
  color: var(--rf-brown-700) !important;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.rd-navbar-top-panel a:hover,
.rd-navbar-top-panel a:focus {
  color: var(--rf-brown-900) !important;
}

.rd-navbar-top-panel .icon {
  opacity: 1 !important;
}

.rd-navbar-top-panel-left-part .unit {
  gap: 0.45rem;
}

.rf-navbar-account-actions {
  align-items: center;
  display: inline-flex;
  gap: 0.5rem;
  justify-content: flex-end;
}

.rd-navbar-top-panel-right-part .unit-body a,
.rf-navbar-account-action {
  align-items: center;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(112, 66, 38, 0.12);
  border-radius: 999px;
  box-shadow: 0 8px 20px rgba(77, 47, 28, 0.06);
  display: inline-flex;
  gap: 0.42rem;
  min-height: 2.3rem;
  padding: 0.35rem 0.9rem;
  text-decoration: none;
  white-space: nowrap;
}

.rf-navbar-account-action .icon {
  color: var(--rf-accent) !important;
  font-size: 1.05rem;
  line-height: 1;
}

.rf-navbar-account-action:hover,
.rf-navbar-account-action:focus {
  background: rgba(255, 250, 243, 0.98);
  border-color: rgba(161, 91, 45, 0.2);
  box-shadow: 0 12px 24px rgba(77, 47, 28, 0.1);
  text-decoration: none;
}

.rd-navbar-top-panel .icon,
.rd-navbar-search-toggle,
.rd-navbar-cart,
.rd-navbar-cart a {
  color: var(--rf-accent) !important;
}

.rd-navbar-search-form .rd-navbar-search-form-input,
.rd-navbar-search-mobile .rd-navbar-search-form-input,
.form-subscribe .form-input {
  background: rgba(255, 255, 255, 0.92) !important;
  border: 1px solid var(--rf-line) !important;
  border-radius: 999px !important;
  color: var(--rf-brown-900) !important;
  min-height: 3rem;
  padding-inline: 1rem !important;
}

.rd-navbar-search-form .form-label,
.rd-navbar-search-mobile .form-label {
  color: var(--rf-brown-500) !important;
}

.rd-navbar-cart {
  align-items: center;
  background: rgba(255, 244, 229, 0.95);
  border: 1px solid var(--rf-line);
  border-radius: 999px;
  gap: 0.35rem;
  padding: 0.45rem 0.8rem;
}

@media (min-width: 1200px) {
  .rd-navbar-cart {
    display: inline-flex !important;
  }
}

.rf-navbar-desktop-tools {
  align-items: center;
  display: inline-flex;
}

.rf-navbar-currency-menu {
  position: relative;
}

.rf-navbar-currency-toggle {
  align-items: center;
  background: rgba(255, 244, 229, 0.95);
  border: 1px solid var(--rf-line);
  border-radius: 999px;
  color: var(--rf-brown-900);
  cursor: pointer;
  display: inline-flex;
  font-size: 0.86rem;
  font-weight: 900;
  gap: 0.3rem;
  letter-spacing: 0.02em;
  min-height: 3rem;
  padding: 0.35rem 0.95rem;
  transition: background 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease, color 0.18s ease;
}

.rf-navbar-currency-toggle::after {
  color: var(--rf-accent);
  content: "\f107";
  font-family: "FontAwesome";
  font-size: 0.84rem;
  line-height: 1;
  transform: translateY(-0.02rem);
}

.rf-navbar-currency-toggle:hover,
.rf-navbar-currency-toggle:focus,
.rf-navbar-currency-menu.is-open .rf-navbar-currency-toggle {
  background: rgba(255, 250, 243, 0.98);
  border-color: rgba(161, 91, 45, 0.26);
  box-shadow: 0 12px 24px rgba(77, 47, 28, 0.1);
  color: var(--rf-brown-900);
  outline: none;
}

.rf-navbar-currency-dropdown {
  background: rgba(255, 252, 247, 0.98);
  border: 1px solid var(--rf-line);
  border-radius: 18px;
  box-shadow: var(--rf-shadow-md);
  display: grid;
  gap: 0.2rem;
  min-width: 6.4rem;
  opacity: 0;
  padding: 0.35rem;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: calc(100% + 0.45rem);
  transform: translateY(-0.35rem);
  transition: opacity 0.18s ease, transform 0.18s ease;
  z-index: 40;
}

.rf-navbar-currency-menu.is-open .rf-navbar-currency-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.rf-navbar-currency-option,
.rf-navbar-mobile-currency-list [data-rf-currency-option] {
  appearance: none;
  background: transparent;
  border: 0;
  border-radius: 12px;
  color: var(--rf-brown-700) !important;
  cursor: pointer;
  display: flex;
  font-size: 0.88rem;
  font-weight: 900;
  justify-content: space-between;
  line-height: 1.2;
  padding: 0.62rem 0.75rem;
  text-align: left;
  text-decoration: none;
  width: 100%;
}

.rf-navbar-currency-option.is-active,
.rf-navbar-mobile-currency-list [data-rf-currency-option].is-active {
  display: none;
}

.rf-navbar-currency-option:hover,
.rf-navbar-currency-option:focus,
.rf-navbar-currency-option.is-active,
.rf-navbar-mobile-currency-list [data-rf-currency-option]:hover,
.rf-navbar-mobile-currency-list [data-rf-currency-option]:focus,
.rf-navbar-mobile-currency-list [data-rf-currency-option].is-active {
  background: rgba(244, 223, 197, 0.86) !important;
  color: var(--rf-brown-900) !important;
  text-decoration: none;
}

.rf-navbar-currency-option.is-active::after,
.rf-navbar-mobile-currency-list [data-rf-currency-option].is-active::after {
  color: var(--rf-accent);
  content: "\f00c";
  font-family: "FontAwesome";
  font-size: 0.78rem;
  margin-left: 0.8rem;
}

.rf-navbar-mobile-currency-current {
  align-items: center;
  display: flex !important;
  justify-content: space-between;
}

@media (min-width: 992px) {
  .rd-navbar-default.rd-navbar-static .rd-navbar-menu-wrap,
  .rd-navbar-transparent.rd-navbar-static .rd-navbar-menu-wrap {
    align-items: center;
    display: flex;
    gap: 0.75rem;
    justify-content: space-between;
    text-align: left;
  }

  .rd-navbar-default.rd-navbar-static .rd-navbar-brand,
  .rd-navbar-transparent.rd-navbar-static .rd-navbar-brand {
    flex: 0 0 auto;
    float: none;
    max-width: none;
  }

  .rd-navbar-default.rd-navbar-static .rd-navbar-nav-wrap,
  .rd-navbar-transparent.rd-navbar-static .rd-navbar-nav-wrap {
    display: flex;
    flex: 1 1 auto;
    justify-content: center;
    margin-top: 0;
    min-width: 0;
  }

  .rd-navbar-default.rd-navbar-static .rd-navbar-nav,
  .rd-navbar-transparent.rd-navbar-static .rd-navbar-nav {
    align-items: center;
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    margin: 0 auto;
    width: max-content;
  }

  .rd-navbar-default.rd-navbar-static .rd-navbar-nav > li + li,
  .rd-navbar-transparent.rd-navbar-static .rd-navbar-nav > li + li {
    margin-left: 1rem;
  }

  .rd-navbar-default.rd-navbar-static .rf-navbar-desktop-tools,
  .rd-navbar-transparent.rd-navbar-static .rf-navbar-desktop-tools {
    display: flex;
    flex: 0 0 auto;
    gap: 0.55rem;
    margin-left: auto;
  }

  .rd-navbar-default.rd-navbar-static .rd-navbar-nav > li.rd-navbar--has-dropdown,
  .rd-navbar-default.rd-navbar-static .rd-navbar-nav > li.rd-navbar--has-megamenu,
  .rd-navbar-transparent.rd-navbar-static .rd-navbar-nav > li.rd-navbar--has-dropdown,
  .rd-navbar-transparent.rd-navbar-static .rd-navbar-nav > li.rd-navbar--has-megamenu {
    align-items: center;
    display: inline-flex;
  }

  .rd-navbar-default.rd-navbar-static .rd-navbar-nav > li.rd-navbar--has-dropdown > a,
  .rd-navbar-default.rd-navbar-static .rd-navbar-nav > li.rd-navbar--has-megamenu > a,
  .rd-navbar-transparent.rd-navbar-static .rd-navbar-nav > li.rd-navbar--has-dropdown > a,
  .rd-navbar-transparent.rd-navbar-static .rd-navbar-nav > li.rd-navbar--has-megamenu > a {
    align-items: center;
    border-radius: 999px 0 0 999px;
    display: inline-flex;
    min-height: 2.7rem;
    padding-right: 0.3rem !important;
  }

  .rd-navbar-default.rd-navbar-static .rd-navbar-nav > li.rd-navbar--has-dropdown > .rd-navbar-submenu-toggle,
  .rd-navbar-default.rd-navbar-static .rd-navbar-nav > li.rd-navbar--has-megamenu > .rd-navbar-submenu-toggle,
  .rd-navbar-transparent.rd-navbar-static .rd-navbar-nav > li.rd-navbar--has-dropdown > .rd-navbar-submenu-toggle,
  .rd-navbar-transparent.rd-navbar-static .rd-navbar-nav > li.rd-navbar--has-megamenu > .rd-navbar-submenu-toggle {
    align-items: center;
    border-radius: 0 999px 999px 0;
    display: inline-flex;
    justify-content: center;
    margin-left: -0.18rem;
    min-height: 2.7rem;
    min-width: 2rem;
    padding: 0 0.72rem 0 0.2rem;
  }

  .rd-navbar-default.rd-navbar-static .rd-navbar-nav > li.rd-navbar--has-dropdown > .rd-navbar-submenu-toggle:after,
  .rd-navbar-default.rd-navbar-static .rd-navbar-nav > li.rd-navbar--has-megamenu > .rd-navbar-submenu-toggle:after,
  .rd-navbar-transparent.rd-navbar-static .rd-navbar-nav > li.rd-navbar--has-dropdown > .rd-navbar-submenu-toggle:after,
  .rd-navbar-transparent.rd-navbar-static .rd-navbar-nav > li.rd-navbar--has-megamenu > .rd-navbar-submenu-toggle:after {
    font-size: 0.72rem;
    padding-left: 0;
  }

  .rd-navbar-default.rd-navbar-static .rd-navbar-nav > li.active > a,
  .rd-navbar-default.rd-navbar-static .rd-navbar-nav > li.focus > a,
  .rd-navbar-default.rd-navbar-static .rd-navbar-nav > li.opened > a,
  .rd-navbar-default.rd-navbar-static .rd-navbar-nav > li:hover > a,
  .rd-navbar-default.rd-navbar-static .rd-navbar-nav > li.active > .rd-navbar-submenu-toggle,
  .rd-navbar-default.rd-navbar-static .rd-navbar-nav > li.focus > .rd-navbar-submenu-toggle,
  .rd-navbar-default.rd-navbar-static .rd-navbar-nav > li.opened > .rd-navbar-submenu-toggle,
  .rd-navbar-default.rd-navbar-static .rd-navbar-nav > li:hover > .rd-navbar-submenu-toggle,
  .rd-navbar-transparent.rd-navbar-static .rd-navbar-nav > li.active > a,
  .rd-navbar-transparent.rd-navbar-static .rd-navbar-nav > li.focus > a,
  .rd-navbar-transparent.rd-navbar-static .rd-navbar-nav > li.opened > a,
  .rd-navbar-transparent.rd-navbar-static .rd-navbar-nav > li:hover > a,
  .rd-navbar-transparent.rd-navbar-static .rd-navbar-nav > li.active > .rd-navbar-submenu-toggle,
  .rd-navbar-transparent.rd-navbar-static .rd-navbar-nav > li.focus > .rd-navbar-submenu-toggle,
  .rd-navbar-transparent.rd-navbar-static .rd-navbar-nav > li.opened > .rd-navbar-submenu-toggle,
  .rd-navbar-transparent.rd-navbar-static .rd-navbar-nav > li:hover > .rd-navbar-submenu-toggle {
    background: rgba(244, 223, 197, 0.9);
    color: var(--rf-brown-900);
    text-decoration: none !important;
  }

.rd-navbar-default.rd-navbar-static .rd-navbar-dropdown,
.rd-navbar-transparent.rd-navbar-static .rd-navbar-dropdown {
  margin-top: 1rem;
  padding: 0.4rem 0.5rem !important;
  width: 19.25rem;
}

.rd-navbar-default.rd-navbar-static .rd-navbar-dropdown li + li:before,
.rd-navbar-transparent.rd-navbar-static .rd-navbar-dropdown li + li:before {
  top: -0.2rem;
}

.rd-navbar-default.rd-navbar-static .rd-navbar-dropdown li + li,
.rd-navbar-transparent.rd-navbar-static .rd-navbar-dropdown li + li {
  margin-top: 0.4rem;
}

.rd-navbar-default.rd-navbar-static .rd-navbar-dropdown li > a,
.rd-navbar-transparent.rd-navbar-static .rd-navbar-dropdown li > a {
  align-items: center;
  border-radius: 14px;
  display: flex;
  min-height: 2.85rem;
  padding: 0.42rem 1.05rem 0.42rem 2.1rem !important;
  position: relative;
}

.rd-navbar-default.rd-navbar-static .rd-navbar-dropdown li > a:before,
.rd-navbar-transparent.rd-navbar-static .rd-navbar-dropdown li > a:before {
  left: 0.7rem;
}

.rd-navbar-default.rd-navbar-static .rd-navbar-dropdown li:hover > a,
.rd-navbar-transparent.rd-navbar-static .rd-navbar-dropdown li:hover > a {
  padding-left: 2.1rem !important;
}

.rd-navbar-default.rd-navbar-static .rd-navbar-dropdown li:hover > a:before,
.rd-navbar-transparent.rd-navbar-static .rd-navbar-dropdown li:hover > a:before {
  left: 0.7rem;
}

.rd-navbar-default.rd-navbar-static .rd-navbar-search,
.rd-navbar-transparent.rd-navbar-static .rd-navbar-search,
.rd-navbar-default.rd-navbar-static .rd-navbar-cart,
.rd-navbar-transparent.rd-navbar-static .rd-navbar-cart {
    align-items: center;
    display: inline-flex;
    margin-left: 0;
    top: auto;
  }

  .rd-navbar-default.rd-navbar-static .rd-navbar-search-toggle,
  .rd-navbar-transparent.rd-navbar-static .rd-navbar-search-toggle {
    align-items: center;
    background: rgba(255, 250, 243, 0.96);
    border: 1px solid var(--rf-line);
    border-radius: 999px;
    box-shadow: var(--rf-shadow-sm);
    display: inline-flex;
    justify-content: center;
    margin-left: 0;
    min-height: 2.7rem;
    min-width: 2.5rem;
    padding: 0 0.7rem;
  }

  .rd-navbar-default.rd-navbar-static .rd-navbar-search-toggle:hover,
  .rd-navbar-default.rd-navbar-static .rd-navbar-search-toggle:focus,
  .rd-navbar-transparent.rd-navbar-static .rd-navbar-search-toggle:hover,
  .rd-navbar-transparent.rd-navbar-static .rd-navbar-search-toggle:focus {
    background: rgba(244, 223, 197, 0.9);
  }

  .rd-navbar-default.rd-navbar-static .rd-navbar-search-toggle span,
  .rd-navbar-transparent.rd-navbar-static .rd-navbar-search-toggle span {
    display: inline-flex;
    height: 1rem;
    width: 1rem;
  }

.rd-navbar-default.rd-navbar-static .rd-navbar-cart,
.rd-navbar-transparent.rd-navbar-static .rd-navbar-cart {
  background: rgba(255, 250, 243, 0.96);
  box-shadow: var(--rf-shadow-sm);
  min-height: 2.7rem;
  padding: 0 0.78rem;
  text-decoration: none;
  transition: background 0.18s ease, color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}
}

@media (min-width: 992px) and (max-width: 1399.98px) {
  .rd-navbar-default.rd-navbar-static .rd-navbar-brand img,
  .rd-navbar-transparent.rd-navbar-static .rd-navbar-brand img {
    max-width: 13rem;
  }

  .rd-navbar-default.rd-navbar-static .rd-navbar-menu-wrap,
  .rd-navbar-transparent.rd-navbar-static .rd-navbar-menu-wrap {
    gap: 0.5rem;
  }

  .rd-navbar-default.rd-navbar-static .rd-navbar-nav > li + li,
  .rd-navbar-transparent.rd-navbar-static .rd-navbar-nav > li + li {
    margin-left: 0.55rem;
  }

  .rd-navbar-default.rd-navbar-static .rd-navbar-nav > li > a,
  .rd-navbar-transparent.rd-navbar-static .rd-navbar-nav > li > a {
    font-size: 0.92rem;
    padding: 0.65rem 0.72rem !important;
  }

  .rd-navbar-default.rd-navbar-static .rd-navbar-nav > li.rd-navbar--has-dropdown > .rd-navbar-submenu-toggle,
  .rd-navbar-default.rd-navbar-static .rd-navbar-nav > li.rd-navbar--has-megamenu > .rd-navbar-submenu-toggle,
  .rd-navbar-transparent.rd-navbar-static .rd-navbar-nav > li.rd-navbar--has-dropdown > .rd-navbar-submenu-toggle,
  .rd-navbar-transparent.rd-navbar-static .rd-navbar-nav > li.rd-navbar--has-megamenu > .rd-navbar-submenu-toggle {
    min-width: 1.8rem;
    padding: 0 0.56rem 0 0.12rem;
  }

  .rd-navbar-default.rd-navbar-static .rf-navbar-desktop-tools,
  .rd-navbar-transparent.rd-navbar-static .rf-navbar-desktop-tools {
    gap: 0.4rem;
  }

  .rd-navbar-default.rd-navbar-static .rd-navbar-search-toggle,
  .rd-navbar-transparent.rd-navbar-static .rd-navbar-search-toggle {
    min-width: 2.35rem;
    padding: 0 0.6rem;
  }

  .rd-navbar-default.rd-navbar-static .rd-navbar-cart,
  .rd-navbar-transparent.rd-navbar-static .rd-navbar-cart {
    padding: 0 0.65rem;
  }
}

@media (min-width: 1800px) {
  .rd-navbar-default.rd-navbar-static .rd-navbar-menu-wrap,
  .rd-navbar-transparent.rd-navbar-static .rd-navbar-menu-wrap {
    padding: 20px;
  }
}

.rd-navbar-default.rd-navbar-static .rd-navbar-cart:hover,
.rd-navbar-default.rd-navbar-static .rd-navbar-cart:focus,
.rd-navbar-transparent.rd-navbar-static .rd-navbar-cart:hover,
.rd-navbar-transparent.rd-navbar-static .rd-navbar-cart:focus {
  background: rgba(244, 223, 197, 0.9);
  color: var(--rf-brown-900) !important;
}

.rf-navbar-cart-count {
  color: inherit;
  font-family: "Roboto Slab", "Times New Roman", Times, serif;
  font-weight: 700;
}

.swiper-slide {
  position: relative;
}

.swiper-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(35, 20, 13, 0.84) 0%, rgba(35, 20, 13, 0.62) 34%, rgba(35, 20, 13, 0.24) 68%, rgba(35, 20, 13, 0.12) 100%),
    linear-gradient(180deg, rgba(19, 11, 8, 0.1) 0%, rgba(19, 11, 8, 0.22) 100%);
  z-index: 0;
}

.swiper-slide-caption {
  position: relative;
  z-index: 1;
}

.rf-hero-slide {
  background-position: var(--rf-hero-focus-desktop-x, 50%) center;
}

.rf-home-hero .rf-hero-slide--copy-right::before {
  background:
    linear-gradient(270deg, rgba(35, 20, 13, 0.84) 0%, rgba(35, 20, 13, 0.62) 34%, rgba(35, 20, 13, 0.24) 68%, rgba(35, 20, 13, 0.12) 100%),
    linear-gradient(180deg, rgba(19, 11, 8, 0.1) 0%, rgba(19, 11, 8, 0.22) 100%);
}

.rf-hero-responsive-media {
  display: none;
}

.rf-home-hero:not(.swiper-container-initialized) .swiper-slide:not(.rf-hero-slide--initial) {
  visibility: hidden;
}

.header-transparent-slide-caption {
  padding-bottom: clamp(2.5rem, 4vw, 4.25rem);
  padding-top: clamp(4.75rem, 6.5vw, 6.5rem);
}

.rf-hero-content-shell {
  background: linear-gradient(180deg, rgba(42, 24, 17, 0.72), rgba(42, 24, 17, 0.56));
  border: 1px solid rgba(255, 248, 237, 0.18);
  border-radius: 1.75rem;
  box-shadow: 0 28px 70px rgba(16, 9, 6, 0.28);
  display: inline-block;
  max-width: min(100%, 42rem);
  padding: clamp(1.1rem, 2.2vw, 1.65rem);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.swiper-slide-caption .rf-hero-title {
  color: #fff9ef;
  font-size: clamp(2.15rem, 4.3vw, 4rem);
  line-height: 0.97;
  max-width: 13.5ch;
  text-shadow: 0 18px 36px rgba(0, 0, 0, 0.4);
  text-wrap: balance;
}

.swiper-slide-caption h5,
.swiper-slide-caption .font-default {
  color: rgba(255, 248, 237, 0.98);
  font-size: clamp(0.98rem, 1.25vw, 1.1rem);
  line-height: 1.58;
  max-width: 31rem;
  text-shadow: 0 8px 22px rgba(0, 0, 0, 0.28);
}

.rf-hero-copy-wrap {
  margin-top: clamp(0.85rem, 1.6vw, 1.25rem);
}

.rf-hero-actions-wrap {
  margin-top: clamp(0.85rem, 1.6vw, 1.15rem);
}

.btn {
  border-radius: 999px !important;
  font-weight: 900;
  letter-spacing: 0.01em;
  min-height: 3rem;
  padding: 0.82rem 1.3rem;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}

.btn:hover,
.btn:focus {
  transform: translateY(-1px);
}

.btn-primary,
.btn-madison {
  background: var(--rf-brown-800) !important;
  border-color: var(--rf-brown-800) !important;
  box-shadow: 0 14px 34px rgba(78, 47, 34, 0.18);
  color: #fff8ed !important;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-madison:hover,
.btn-madison:focus {
  background: #3f2419 !important;
  border-color: #3f2419 !important;
  color: #fff8ed !important;
}

.btn-default,
.btn-primary-transparent {
  background: rgba(255, 250, 243, 0.96) !important;
  border-color: var(--rf-line-strong) !important;
  box-shadow: 0 10px 24px rgba(77, 47, 28, 0.08);
  color: var(--rf-brown-800) !important;
}

.btn-default:hover,
.btn-default:focus,
.btn-primary-transparent:hover,
.btn-primary-transparent:focus {
  background: var(--rf-paper) !important;
  border-color: rgba(161, 91, 45, 0.3) !important;
  color: var(--rf-brown-900) !important;
}

.product,
.post-news,
.quote-classic-boxed .quote-body,
.section-image-aside-body,
.thumbnail-default,
.page-footer .section-60,
.SharedContactUsDetails,
.rf-dashboard-section,
.rf-empty-card {
  border-radius: 24px;
}

.product,
.post-news,
.quote-classic-boxed .quote-body,
.section-image-aside-body,
.thumbnail-default {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid var(--rf-line);
  box-shadow: var(--rf-shadow-sm);
}

.product,
.post-news {
  height: 100%;
  overflow: hidden;
}

.product-body,
.post-news-body,
.post-news-body-variant-1 {
  padding: 1.25rem;
}

.product-body p,
.post-news-body p,
.post-news-body-variant-1 p,
.section-image-aside-body,
.quote-classic-boxed q,
.rights,
.contact-info,
.unit-body,
.rf-hero-copy {
  color: var(--rf-brown-700);
}

.product img,
.post-news img,
.img-wrap-2 img,
.section-image-aside-img,
.thumbnail-default img {
  border-radius: 20px;
}

.post-news > a:first-child:not(.rf-square-card-media) {
  aspect-ratio: 1 / 1;
  background: linear-gradient(180deg, rgba(255, 247, 236, 0.96), rgba(255, 255, 255, 0.98));
  border: 1px solid var(--rf-line);
  border-radius: 28px;
  box-shadow: var(--rf-shadow-sm);
  display: block;
  overflow: hidden;
  padding: 0.9rem;
  position: relative;
}

.post-news > a:first-child:not(.rf-square-card-media)::after {
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: inherit;
  content: "";
  inset: 0.5rem;
  pointer-events: none;
  position: absolute;
}

.post-news > a:first-child:not(.rf-square-card-media) img {
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.product .text-primary a,
.post-news-body h6 a,
.post-news-body-variant-1 h6 a {
  color: var(--rf-brown-900) !important;
}

.product .text-primary a:hover,
.post-news-body h6 a:hover,
.post-news-body-variant-1 h6 a:hover {
  color: var(--rf-accent) !important;
}

.product-meta-info {
  background: transparent;
  opacity: 1;
  position: static;
  transform: none;
  visibility: visible;
}

.product-meta-info ul {
  border-top: 1px solid rgba(112, 66, 38, 0.1);
  margin: 0 1.25rem 1.1rem;
  padding-top: 0.9rem;
}

.product-meta-info a {
  align-items: center;
  background: var(--rf-cream-soft);
  border: 1px solid rgba(112, 66, 38, 0.08);
  border-radius: 999px;
  color: var(--rf-accent) !important;
  display: inline-flex;
  height: 2.25rem;
  justify-content: center;
  width: 2.25rem;
}

.product-meta-info a:hover {
  background: var(--rf-cream-strong);
  color: var(--rf-brown-900) !important;
}

.section-image-aside-body {
  padding: clamp(1.5rem, 4vw, 2.5rem);
  position: relative;
  z-index: 1;
}

.rf-square-photo-frame,
.rf-square-book-frame,
.rf-square-card-media {
  border: 1px solid var(--rf-line);
  border-radius: 28px;
  box-shadow: var(--rf-shadow-md);
  overflow: hidden;
  position: relative;
}

.rf-square-photo-frame::after,
.rf-square-book-frame::after,
.rf-square-card-media::after {
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: inherit;
  content: "";
  inset: 0.5rem;
  pointer-events: none;
  position: absolute;
}

.rf-square-photo-frame,
.rf-square-card-media {
  aspect-ratio: 1 / 1;
  background: linear-gradient(180deg, rgba(255, 247, 236, 0.96), rgba(255, 255, 255, 0.98));
}

.rf-square-book-frame {
  align-items: center;
  aspect-ratio: 1 / 1;
  background: linear-gradient(180deg, rgba(255, 247, 236, 0.96), rgba(255, 255, 255, 0.98));
  display: flex;
  justify-content: center;
  padding: clamp(0.95rem, 2vw, 1.35rem);
}

.rf-square-photo-frame figure,
.rf-square-book-frame figure,
.rf-square-intro-frame,
.rf-square-mobile-figure {
  margin: 0;
}

.rf-square-photo-frame img,
.rf-square-book-frame img,
.rf-square-card-media img {
  display: block;
  height: 100%;
  width: 100%;
}

.rf-square-photo-frame img {
  object-fit: cover;
}

.rf-square-book-frame img {
  filter: drop-shadow(0 18px 28px rgba(84, 52, 35, 0.18));
  object-fit: cover;
}

.rf-square-card-media {
  align-items: center;
  display: flex;
  justify-content: center;
  padding: 0.9rem;
}

.rf-square-card-media img {
  object-fit: cover;
}

.rf-book-thumbnail-rotator {
  border-radius: 24px;
  display: block;
  flex: 1 1 auto;
  height: 100%;
  overflow: hidden;
  position: relative;
  width: 100%;
}

.rf-book-thumbnail-frame {
  border-radius: inherit;
  display: block;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  transform: scale(1.015);
  transition: opacity 1s ease, transform 1.25s ease;
}

.rf-book-thumbnail-frame.is-active {
  opacity: 1;
  transform: scale(1);
}

.rf-books-grid-media .rf-book-thumbnail-frame,
.rf-square-card-media--book .rf-book-thumbnail-frame {
  object-fit: cover;
}

.rf-square-card-media--book {
  padding: 1.1rem;
}

.rf-square-intro-frame {
  margin-inline: auto;
  max-width: min(100%, 34rem);
}

.rf-square-mobile-figure {
  margin: 0 auto 1.5rem;
  max-width: min(100%, 26rem);
}

.rf-square-aside-media {
  aspect-ratio: auto;
  bottom: 0;
  height: auto;
  top: 0;
  transform: none;
  width: min(48vw, 44rem);
}

.section-image-aside-img {
  background-position: center center;
  background-size: cover;
  box-shadow: var(--rf-shadow-lg);
  min-height: 100%;
  overflow: hidden;
  position: absolute;
  z-index: 0;
}

.section-image-aside-img::before {
  background: linear-gradient(90deg, rgba(255, 250, 243, 0.16), rgba(56, 35, 26, 0.08));
  border-radius: inherit;
  content: "";
  inset: 0;
  position: absolute;
}

.section-image-aside-right .section-image-aside-body::after,
.section-image-aside-left .section-image-aside-body::after {
  content: "";
  pointer-events: none;
  position: absolute;
  top: 12%;
  bottom: 12%;
  width: 5.5rem;
}

.section-image-aside-right .section-image-aside-body::after {
  background: linear-gradient(90deg, rgba(255, 250, 243, 0.94), rgba(255, 250, 243, 0));
  right: -4rem;
}

.section-image-aside-left .section-image-aside-body::after {
  background: linear-gradient(270deg, rgba(255, 250, 243, 0.94), rgba(255, 250, 243, 0));
  left: -4rem;
}

.quote-classic-boxed .quote-body::before {
  color: rgba(161, 91, 45, 0.18) !important;
}

.quote-classic-boxed q {
  display: block;
  font-size: 1.04rem;
  line-height: 1.75;
}

.quote-classic-boxed cite {
  color: var(--rf-brown-900);
  font-family: "Roboto Slab", Georgia, "Times New Roman", serif;
  font-size: 1rem;
}

.thumbnail-default {
  overflow: hidden;
  padding: 0.35rem;
}

.thumbnail-default .icon {
  background: rgba(78, 47, 34, 0.82);
  border-radius: 999px;
  color: #fff8ed;
  padding: 0.7rem;
}

.page-footer {
  background:
    radial-gradient(circle at top left, rgba(255, 214, 152, 0.22), transparent 22rem),
    linear-gradient(180deg, rgba(255, 250, 243, 0.86) 0%, rgba(255, 244, 229, 0.96) 100%);
  color: var(--rf-brown-700);
  margin-top: 3rem;
}

.page-footer .hr,
.text-subline {
  background: rgba(112, 66, 38, 0.14) !important;
}

.page-footer .bg-madison.context-dark {
  background: linear-gradient(135deg, #4e2f22 0%, #6a402d 100%) !important;
}

.page-footer .rights,
.page-footer .rights a,
.page-footer .context-dark,
.page-footer .context-dark a {
  color: #fff8ed !important;
}

.page-footer .rf-footer-explore .list a {
  color: var(--rf-brown-700);
}

.page-footer .rf-footer-explore .list a:hover,
.page-footer .rf-footer-explore .list a:focus-visible {
  color: var(--rf-brown-900);
}

.page-footer .list-inline-madison a:hover,
.page-footer .list-inline-madison a:focus-visible {
  color: var(--rf-brown-700) !important;
}

.page-footer .rf-footer-explore .list a:focus-visible,
.page-footer .list-inline-madison a:focus-visible {
  border-radius: 3px;
  outline: 2px solid var(--rf-brown-900) !important;
  outline-offset: 3px;
}

.contact-info a,
.page-footer .unit-body a {
  color: var(--rf-brown-700);
}

.contact-info a:hover,
.page-footer .unit-body a:hover {
  color: var(--rf-brown-900);
}

@media (min-width: 768px) {
  .rf-contact-details-grid [class*='col-'] + [class*='col-']::before {
    content: none;
  }
}

.form-subscribe {
  align-items: center;
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.form-subscribe .form-wrap {
  flex: 1 1 18rem;
}

.form-subscribe .form-button {
  flex: 0 0 auto;
}

.rf-footer-newsletter {
  display: flex;
  flex-direction: column;
}

.rf-footer-subscribe-form {
  align-items: stretch;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.rf-footer-subscribe-form .form-wrap {
  flex: 0 0 auto;
  margin-bottom: 0;
  width: 100%;
}

.rf-footer-subscribe-form .form-input {
  border-radius: 20px !important;
  height: 40px;
  min-height: 40px;
  width: 100%;
  padding-right: 1rem;
}

.rf-footer-subscribe-form .form-validation {
  left: 1rem;
  margin-top: 0;
  right: auto;
  top: calc(100% + 0.15rem);
}

.rf-footer-subscribe-form .form-button {
  align-self: flex-start;
  flex: 0 0 auto;
  margin-left: 0;
  width: auto;
}

.rf-footer-subscribe-form .btn {
  align-items: center;
  border-radius: 20px;
  display: inline-flex;
  height: 40px;
  justify-content: center;
  line-height: 1;
  min-height: 40px;
  min-width: 11.5rem;
  width: auto;
  padding-inline: 1.75rem;
}

.rf-home-section {
  isolation: isolate;
  overflow: visible;
  position: relative;
}

.rf-books-intro-section {
  padding-bottom: clamp(2.75rem, 5vw, 4.5rem);
  padding-top: clamp(2.75rem, 5vw, 4.5rem);
}

.rf-books-intro-grid {
  align-items: flex-start !important;
}

.rf-books-intro-copy {
  padding-top: clamp(0.25rem, 1vw, 0.75rem);
}

.rf-books-intro-copy .offset-top-30,
.rf-books-intro-copy .offset-top-35 {
  margin-top: 1rem !important;
}

.rf-books-intro-copy .offset-top-20 {
  margin-top: 0.75rem !important;
}

.breadcrumb-classic {
  background:
    radial-gradient(circle at top center, rgba(255, 241, 215, 0.56), transparent 22rem),
    radial-gradient(circle at bottom right, rgba(244, 223, 197, 0.34), transparent 18rem),
    linear-gradient(135deg, #b56d3d 0%, #cc8851 38%, #e0a064 100%) !important;
  border-bottom: 1px solid rgba(112, 66, 38, 0.12);
  overflow: hidden;
}

.breadcrumb-classic::before {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0)),
    radial-gradient(circle at center, rgba(255, 244, 229, 0.16), transparent 62%);
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
}

.breadcrumb-classic > .container {
  position: relative;
  z-index: 1;
}

.breadcrumb-classic h1 {
  color: #fff8ef;
  text-shadow: 0 10px 30px rgba(83, 44, 20, 0.18);
}

.breadcrumb-classic .list-inline-dashed > li,
.breadcrumb-classic .list-inline-dashed > li:last-child,
.breadcrumb-classic .list-inline-dashed > li::before {
  color: rgba(255, 247, 236, 0.86) !important;
}

.breadcrumb-classic a {
  color: #fffdf8 !important;
  font-weight: 700;
}

.breadcrumb-classic a:hover,
.breadcrumb-classic a:focus {
  color: #fff4de !important;
}

.rf-page-banner {
  padding-bottom: clamp(2rem, 4vw, 3rem) !important;
  padding-top: clamp(2.6rem, 5vw, 4rem) !important;
}

.rf-page-banner h1 {
  font-size: clamp(2.6rem, 5.2vw, 4.9rem);
  line-height: 1.02;
  margin-bottom: 0;
  text-wrap: balance;
}

.rf-page-banner .list-inline-dashed {
  margin-bottom: 0;
}

.rf-page-banner .offset-md-top-35 {
  margin-top: 1rem !important;
}

.breadcrumb-classic + .rf-home-section {
  padding-top: clamp(2.75rem, 5vw, 4.5rem);
}

.breadcrumb-classic + .rf-home-section.section-70.section-lg-114.bg-index-body {
  padding-bottom: clamp(2.75rem, 5vw, 4.5rem);
  padding-top: clamp(2.75rem, 5vw, 4rem);
}

.breadcrumb-classic + .rf-home-section.section-70.section-lg-114.bg-index-body > .container > .row.text-md-start.justify-content-md-between.align-items-center {
  align-items: flex-start !important;
}

.breadcrumb-classic + .rf-home-section.section-70.section-lg-114.bg-index-body .col-md-6:last-child {
  padding-top: clamp(0.25rem, 1vw, 0.75rem);
}

.breadcrumb-classic + .rf-home-section.section-70.section-lg-114.bg-index-body .offset-top-30,
.breadcrumb-classic + .rf-home-section.section-70.section-lg-114.bg-index-body .offset-top-35 {
  margin-top: 1rem !important;
}

.breadcrumb-classic + .rf-home-section.section-70.section-lg-114.bg-index-body .offset-top-20 {
  margin-top: 0.75rem !important;
}

.rf-home-section + .rf-home-section {
  margin-top: clamp(1.5rem, 4vw, 2.5rem);
}

.rf-home-section + .rf-home-section::before {
  background: linear-gradient(90deg, transparent, rgba(161, 91, 45, 0.22), transparent);
  content: "";
  height: 1px;
  left: 50%;
  position: absolute;
  top: -1.25rem;
  transform: translateX(-50%);
  width: min(16rem, 32vw);
  z-index: 3;
}

.rf-home-section + .rf-home-section::after {
  background: radial-gradient(circle, rgba(244, 223, 197, 0.96) 0%, rgba(255, 250, 243, 0.96) 48%, rgba(255, 250, 243, 0) 76%);
  border: 1px solid rgba(161, 91, 45, 0.12);
  border-radius: 999px;
  content: "";
  height: 0.85rem;
  left: 50%;
  position: absolute;
  top: -1.65rem;
  transform: translateX(-50%);
  width: 0.85rem;
  z-index: 4;
}

.rf-home-section-intro {
  margin-inline: auto;
  max-width: 50rem;
}

.rf-home-section-intro p,
.rf-home-section-intro-dark p,
.rf-home-note,
.rf-home-callout,
.rf-home-list li,
.rf-home-mini-card h6,
.rf-home-mini-card p {
  line-height: 1.7;
}

.rf-home-section-intro-dark,
.rf-home-note-inverse {
  color: rgba(255, 248, 237, 0.92);
}

.rf-home-eyebrow,
.rf-hero-eyebrow {
  color: var(--rf-accent-soft);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.rf-hero-eyebrow {
  color: rgba(255, 248, 237, 0.95);
}

.rf-home-hero-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.rf-badge,
.rf-home-stat-chip,
.rf-home-step-number {
  align-items: center;
  border-radius: 999px;
  display: inline-flex;
  font-size: 0.8rem;
  font-weight: 900;
  gap: 0.35rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.rf-badge {
  background: rgba(244, 223, 197, 0.95);
  color: var(--rf-brown-900);
  margin-bottom: 1rem;
  padding: 0.5rem 0.9rem;
}

.rf-badge--coming {
  background: rgba(255, 239, 214, 0.98);
  color: #8a4d24;
}

.rf-badge-inverse {
  background: rgba(255, 248, 237, 0.16);
  color: #fff8ed;
}

.rf-offer-title {
  color: var(--rf-brown-900);
  font-size: 1.18rem;
  font-weight: 800;
}

.rf-home-callout {
  background: linear-gradient(180deg, rgba(255, 247, 236, 0.96), rgba(255, 255, 255, 0.98));
  border: 1px solid var(--rf-line);
  border-radius: 20px;
  box-shadow: var(--rf-shadow-sm);
  color: var(--rf-brown-900);
  font-weight: 700;
  padding: 1rem 1.1rem;
}

.rf-home-callout + .rf-home-list {
  margin-top: 1.35rem !important;
}

.rf-difference-grid {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--rf-line);
  border-radius: 26px;
  box-shadow: var(--rf-shadow-sm);
  overflow: hidden;
}

.rf-difference-header,
.rf-difference-row {
  display: grid;
  gap: 1rem;
  grid-template-columns: 0.9fr 1.05fr 1.25fr;
  text-align: left;
}

.rf-difference-header {
  background: linear-gradient(180deg, rgba(255, 247, 236, 0.98), rgba(244, 223, 197, 0.9));
  color: var(--rf-brown-800);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  padding: 1rem 1.25rem;
  text-transform: uppercase;
}

.rf-difference-row {
  align-items: start;
  color: var(--rf-brown-700);
  line-height: 1.65;
  padding: 1.15rem 1.25rem;
}

.rf-difference-row + .rf-difference-row {
  border-top: 1px solid rgba(120, 82, 64, 0.13);
}

.rf-difference-row strong {
  color: var(--rf-brown-900);
  display: block;
  font-family: "Roboto Slab", Georgia, "Times New Roman", serif;
  font-size: 1.12rem;
  line-height: 1.3;
}

.rf-difference-mobile-label {
  color: var(--rf-accent-soft);
  display: none;
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  margin-bottom: 0.25rem;
  text-transform: uppercase;
}

.rf-home-list {
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: left;
}

.rf-home-list li {
  padding-left: 1.45rem;
  position: relative;
}

.rf-home-list li + li {
  margin-top: 0.7rem;
}

.rf-home-list li::before {
  color: var(--rf-accent);
  content: "\2022";
  font-size: 1.05rem;
  left: 0;
  position: absolute;
  top: 0;
}

.rf-home-list-spacious li + li {
  margin-top: 0.95rem;
}

@media (max-width: 767px) {
  .rf-difference-header {
    display: none;
  }

  .rf-difference-row {
    display: block;
    padding: 1.2rem;
  }

  .rf-difference-row > div + div {
    margin-top: 0.95rem;
  }

  .rf-difference-mobile-label {
    display: block;
  }
}

.rf-policy-layout {
  align-items: flex-start;
}

.rf-policy-prose {
  max-width: 54rem;
}

.rf-policy-prose h2 {
  color: var(--rf-brown-900);
  font-size: clamp(1.55rem, 2.6vw, 2.2rem);
  line-height: 1.15;
  margin-top: 2.35rem;
}

.rf-policy-prose h2:first-of-type {
  margin-top: 1.4rem;
}

.rf-policy-prose p + p,
.rf-policy-prose ul + p,
.rf-policy-prose p + ul,
.rf-policy-prose ul + h2 {
  margin-top: 1rem;
}

.rf-policy-side-card {
  position: sticky;
  top: 7rem;
}

.rf-home-stat-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.rf-home-stat-chip {
  background: rgba(255, 247, 236, 0.96);
  border: 1px solid var(--rf-line);
  color: var(--rf-brown-900);
  padding: 0.55rem 0.9rem;
}

.rf-home-stat-chip-muted {
  background: rgba(255, 255, 255, 0.82);
  color: var(--rf-brown-700);
}

.rf-home-voice-library {
  background: linear-gradient(180deg, rgba(255, 247, 236, 0.78), rgba(255, 255, 255, 0.94));
  border: 1px solid var(--rf-line);
  border-radius: 24px;
  box-shadow: var(--rf-shadow-sm);
  padding: 1.1rem 1.15rem;
}

.rf-home-voice-meta {
  align-items: baseline;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
  justify-content: center;
}

.rf-home-voice-count {
  color: var(--rf-brown-900);
  font-size: 0.92rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.rf-home-voice-label {
  color: var(--rf-brown-500);
  font-size: 0.95rem;
  font-style: italic;
}

.rf-home-voice-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  justify-content: center;
  margin-top: 0.95rem;
}

.rf-home-voice-pill {
  align-items: center;
  appearance: none;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(112, 66, 38, 0.12);
  border-radius: 999px;
  color: var(--rf-brown-700);
  cursor: pointer;
  display: inline-flex;
  font-family: inherit;
  font-size: 0.92rem;
  font-weight: 700;
  justify-content: center;
  line-height: 1.2;
  padding: 0.55rem 0.9rem;
  transition: background 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease, color 0.18s ease;
}

.rf-home-voice-pill:hover,
.rf-home-voice-pill:focus-visible,
.rf-home-voice-pill.is-active {
  background: #4e2f22;
  border-color: #4e2f22;
  color: #fff8ed;
}

.rf-home-voice-pill:focus-visible {
  box-shadow: 0 0 0 3px rgba(189, 116, 65, 0.22);
  outline: 0;
}

.rf-home-narrator-preview-grid {
  display: grid;
  gap: 0.9rem;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  margin-top: 1.15rem;
  text-align: left;
}

.rf-home-narrator-preview-grid .rf-home-narrator-card[hidden] {
  display: none;
}

.rf-home-narrator-preview-grid .rf-narrator-card {
  align-items: center;
  background: #fffaf3;
  border: 1px solid var(--rf-line);
  border-radius: 22px;
  box-shadow: 0 12px 32px rgba(77, 47, 28, 0.08);
  color: var(--rf-brown-800);
  display: grid;
  gap: 0.85rem;
  grid-template-columns: auto minmax(0, 1fr);
  padding: 1rem;
}

.rf-home-narrator-preview-grid .rf-narrator-preview-icon {
  align-items: center;
  align-self: start;
  background: #f4dfc5;
  border: 0;
  border-radius: 999px;
  color: #4e2f22;
  cursor: pointer;
  display: inline-flex;
  height: 64px;
  justify-content: center;
  padding: 0;
  position: relative;
  transition: background 0.18s ease, color 0.18s ease, transform 0.18s ease;
  width: 64px;
}

.rf-home-narrator-preview-grid .rf-narrator-preview-icon:hover,
.rf-home-narrator-preview-grid .rf-narrator-preview-icon:focus-visible,
.rf-home-narrator-preview-grid .rf-narrator-preview-icon.is-playing {
  background: #4e2f22;
  color: #fff8ed;
}

.rf-home-narrator-preview-grid .rf-narrator-preview-icon:focus-visible {
  outline: 3px solid rgba(189, 116, 65, 0.28);
  outline-offset: 3px;
}

.rf-home-narrator-preview-grid .rf-narrator-preview-icon:disabled {
  cursor: not-allowed;
  opacity: 0.55;
}

.rf-home-narrator-preview-grid .rf-narrator-mic {
  color: inherit;
  display: block;
  font-size: 2rem;
  line-height: 1;
  margin: 0;
}

.rf-home-narrator-preview-grid .rf-narrator-mic::before {
  content: "🎙️";
  display: block;
  line-height: 1;
  transform: translateY(-0.03em);
}

.rf-home-narrator-preview-grid .rf-narrator-preview-glyph {
  align-items: center;
  background: #4e2f22;
  border: 2px solid #fffaf3;
  border-radius: 999px;
  bottom: -3px;
  color: #fff8ed;
  display: inline-flex;
  height: 22px;
  justify-content: center;
  line-height: 1;
  margin: 0;
  position: absolute;
  right: -3px;
  width: 22px;
}

.rf-home-narrator-preview-grid .rf-narrator-preview-glyph::before {
  border-bottom: 5px solid transparent;
  border-left: 8px solid currentColor;
  border-top: 5px solid transparent;
  content: "";
  display: block;
  height: 0;
  margin-left: 2px;
  width: 0;
}

.rf-home-narrator-preview-grid .rf-narrator-preview-icon.is-playing .rf-narrator-preview-glyph {
  background: var(--rf-accent);
}

.rf-home-narrator-preview-grid .rf-narrator-preview-icon.is-playing .rf-narrator-preview-glyph::before {
  background: currentColor;
  border: 0;
  border-radius: 2px;
  content: "";
  display: block;
  height: 8px;
  margin-left: 0;
  width: 8px;
}

.rf-home-narrator-preview-grid .rf-narrator-card-body {
  min-width: 0;
}

.rf-home-narrator-preview-grid .rf-narrator-card strong {
  color: var(--rf-brown-900);
  display: block;
  font-size: 1.05rem;
}

.rf-home-narrator-preview-grid .rf-narrator-card-body > span {
  color: var(--rf-brown-700);
  display: block;
  font-size: 0.9rem;
  line-height: 1.35;
  margin-top: 0.2rem;
}

.rf-home-narrator-pagination {
  align-items: center;
  display: flex;
  gap: 0.7rem;
  justify-content: center;
  margin-top: 1.15rem;
}

.rf-home-narrator-pagination[hidden] {
  display: none;
}

.rf-home-narrator-page-dot {
  appearance: none;
  background: rgba(112, 66, 38, 0.1);
  border: 2px solid rgba(112, 66, 38, 0.18);
  border-radius: 999px;
  cursor: pointer;
  display: inline-flex;
  height: 0.85rem;
  padding: 0;
  transition: background 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
  width: 0.85rem;
}

.rf-home-narrator-page-dot:hover,
.rf-home-narrator-page-dot:focus-visible,
.rf-home-narrator-page-dot.is-active {
  background: #f7c64c;
  border-color: #f7c64c;
}

.rf-home-narrator-page-dot:focus-visible {
  outline: 3px solid rgba(247, 198, 76, 0.28);
  outline-offset: 3px;
}

.rf-home-mini-card {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--rf-line);
  border-radius: 20px;
  box-shadow: var(--rf-shadow-sm);
  height: 100%;
  padding: 1.15rem;
}

.rf-home-card-meta {
  align-items: center;
  display: flex;
  gap: 0.8rem;
  justify-content: space-between;
  margin-bottom: 0.9rem;
}

.rf-home-icon-badge {
  align-items: center;
  background: linear-gradient(180deg, rgba(255, 247, 236, 0.98), rgba(244, 223, 197, 0.88));
  border: 1px solid var(--rf-line);
  border-radius: 999px;
  color: var(--rf-accent);
  display: inline-flex;
  height: 3rem;
  justify-content: center;
  width: 3rem;
}

.rf-home-icon-badge .icon {
  color: inherit;
  font-size: 1.35rem;
  line-height: 1;
}

.rf-home-card-title {
  color: var(--rf-brown-800);
  font-family: "Roboto Slab", Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
  font-weight: 800;
  line-height: 1.22;
  margin-bottom: 0.7rem;
}

.rf-home-step-card {
  position: relative;
}

.rf-purchase-timeline-card {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.rf-purchase-timeline-card .rf-home-step-number {
  align-self: flex-start;
}

.rf-purchase-timeline-card .rf-home-card-title {
  margin-bottom: 0;
}

.rf-home-step-number {
  background: var(--rf-cream-soft);
  border: 1px solid var(--rf-line);
  color: var(--rf-brown-900);
  padding: 0.45rem 0.75rem;
}

.rf-collection-card .post-news-meta,
.rf-book-card .post-news-meta {
  margin-bottom: 0.6rem;
}

.rf-home-note {
  font-size: 0.96rem;
}

.rf-books-intro-actions,
.rf-books-cta-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.rf-books-figure img {
  border-radius: 0;
  box-shadow: none;
  width: 100%;
}

.rf-books-collection-pills {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.rf-books-collection-pill {
  align-items: center;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--rf-line);
  border-radius: 999px;
  box-shadow: var(--rf-shadow-sm);
  color: var(--rf-brown-700);
  display: inline-flex;
  gap: 0.7rem;
  line-height: 1.2;
  padding: 0.7rem 1rem;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.rf-books-collection-pill strong {
  background: rgba(244, 223, 197, 0.85);
  border-radius: 999px;
  color: var(--rf-brown-900);
  font-size: 0.82rem;
  font-weight: 900;
  min-width: 2rem;
  padding: 0.35rem 0.55rem;
  text-align: center;
}

.rf-books-collection-pill:hover,
.rf-books-collection-pill.is-active {
  border-color: rgba(161, 91, 45, 0.28);
  box-shadow: 0 18px 32px rgba(87, 54, 35, 0.12);
  color: var(--rf-brown-900);
  transform: translateY(-1px);
}

.rf-books-collection-pill.is-active {
  background: linear-gradient(180deg, rgba(255, 247, 236, 0.98), rgba(255, 255, 255, 0.98));
}

.rf-books-grid-card {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--rf-line);
  border-radius: 24px;
  box-shadow: var(--rf-shadow-sm);
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
}

.rf-books-grid-media {
  align-items: center;
  aspect-ratio: 1 / 1;
  background: linear-gradient(180deg, rgba(255, 247, 236, 0.86), rgba(255, 255, 255, 0.96));
  border-bottom: 1px solid var(--rf-line);
  display: flex;
  justify-content: center;
  min-height: 0;
  overflow: hidden;
  padding: 1.25rem;
  position: relative;
}

.rf-books-grid-media::after {
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 18px;
  content: "";
  inset: 0.55rem;
  pointer-events: none;
  position: absolute;
}

.rf-books-grid-media img {
  filter: drop-shadow(0 16px 26px rgba(84, 52, 35, 0.18));
  height: 100%;
  object-fit: cover;
  width: 100%;
}

@media (prefers-reduced-motion: reduce) {
  .rf-book-thumbnail-frame {
    transition: none;
  }
}

.rf-books-grid-body {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  gap: 0.85rem;
  padding: 1.3rem 1.25rem 1.4rem;
}

.rf-books-grid-title {
  color: var(--rf-brown-900);
  font-family: "Roboto Slab", Georgia, "Times New Roman", serif;
  font-size: 1.32rem;
  font-weight: 800;
  line-height: 1.24;
  margin: 0;
}

.rf-books-grid-title a {
  color: inherit;
  text-decoration: none;
}

.rf-books-grid-actions {
  margin-top: auto;
  padding-top: 0.4rem;
}

.rf-sample-card-grid .rf-books-grid-card {
  transition: box-shadow 180ms ease, transform 180ms ease;
}

.rf-sample-card-grid .rf-books-grid-card:hover {
  box-shadow: var(--rf-shadow-lg);
  transform: translateY(-3px);
}

.rf-reader-experience-group + .rf-reader-experience-group {
  margin-top: 30px;
}

.rf-sample-card-grid .rf-books-grid-media picture {
  display: block;
  height: 100%;
  width: 100%;
}

.rf-sample-card-grid .rf-books-grid-media:focus-visible,
.rf-sample-card-grid .rf-books-grid-title a:focus-visible {
  outline: 3px solid rgba(161, 91, 45, 0.4);
  outline-offset: 3px;
}

.rf-reader-feature-card {
  border-color: rgba(161, 91, 45, 0.2);
}

.rf-reader-feature-media {
  align-items: center;
  aspect-ratio: 4 / 3;
  background:
    radial-gradient(circle at 82% 18%, rgba(255, 255, 255, 0.72) 0 12%, transparent 13%),
    linear-gradient(145deg, #f9e2df, #fff8f1);
  border-bottom: 1px solid rgba(161, 91, 45, 0.16);
  display: flex;
  justify-content: center;
  overflow: hidden;
  padding: 2rem 1.4rem;
  position: relative;
  text-align: center;
}

.rf-reader-feature-card[data-reader-feature-tone="gold"] .rf-reader-feature-media {
  background:
    radial-gradient(circle at 82% 18%, rgba(255, 255, 255, 0.72) 0 12%, transparent 13%),
    linear-gradient(145deg, #f8e8bd, #fffaf0);
}

.rf-reader-feature-card[data-reader-feature-tone="sage"] .rf-reader-feature-media {
  background:
    radial-gradient(circle at 82% 18%, rgba(255, 255, 255, 0.72) 0 12%, transparent 13%),
    linear-gradient(145deg, #dce9da, #f8fbf5);
}

.rf-reader-feature-card[data-reader-feature-tone="sky"] .rf-reader-feature-media {
  background:
    radial-gradient(circle at 82% 18%, rgba(255, 255, 255, 0.72) 0 12%, transparent 13%),
    linear-gradient(145deg, #dceaf0, #f7fbfc);
}

.rf-reader-feature-card[data-reader-feature-tone="plum"] .rf-reader-feature-media {
  background:
    radial-gradient(circle at 82% 18%, rgba(255, 255, 255, 0.68) 0 12%, transparent 13%),
    linear-gradient(145deg, #e7dce9, #fcf7fc);
}

.rf-reader-feature-media::after {
  border: 1px solid rgba(255, 255, 255, 0.56);
  border-radius: 18px;
  content: "";
  inset: 0.55rem;
  pointer-events: none;
  position: absolute;
}

.rf-reader-feature-media p {
  color: var(--rf-brown-900);
  font-family: "Roboto Slab", Georgia, "Times New Roman", serif;
  font-size: clamp(1.2rem, 1.6vw, 1.52rem);
  font-weight: 800;
  line-height: 1.25;
  margin: 0;
  max-width: 13rem;
  position: relative;
  z-index: 1;
}

.rf-reader-feature-number {
  color: rgba(87, 54, 35, 0.1);
  font-family: "Roboto Slab", Georgia, "Times New Roman", serif;
  font-size: 7rem;
  font-weight: 900;
  left: -0.25rem;
  line-height: 1;
  position: absolute;
  top: -0.6rem;
}

.rf-reader-feature-copy {
  color: var(--rf-brown-700);
  line-height: 1.65;
  margin: 0;
}

.rf-reader-feature-highlight {
  border-left: 3px solid rgba(161, 91, 45, 0.32);
  color: var(--rf-brown-900);
  font-weight: 700;
  line-height: 1.5;
  margin: auto 0 0;
  padding-left: 0.8rem;
}

@media (max-width: 575.98px) {
  .rf-sample-card-grid {
    margin-left: -0.5rem;
    margin-right: -0.5rem;
  }

  .rf-sample-card-grid > [class*="col-"] {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }

  .rf-sample-card-grid .rf-books-grid-media {
    padding: 0.65rem;
  }

  .rf-sample-card-grid .rf-books-grid-body {
    gap: 0.55rem;
    padding: 0.9rem 0.7rem 1rem;
  }

  .rf-sample-card-grid .rf-books-grid-title {
    font-size: clamp(0.98rem, 4.2vw, 1.18rem);
  }

  .rf-sample-card-grid .rf-sample-card-copy {
    display: none;
  }

  .rf-sample-card-grid .rf-badge,
  .rf-sample-card-grid .rf-home-note {
    font-size: 0.68rem;
  }

  .rf-sample-card-grid .btn {
    font-size: 0.76rem;
    padding: 0.55rem 0.7rem;
    width: 100%;
  }

  .rf-reader-experience-grid .rf-books-grid-body {
    gap: 0.75rem;
    padding: 1.15rem 1rem 1.25rem;
  }

  .rf-reader-experience-grid .rf-sample-card-copy {
    display: block;
  }

  .rf-reader-feature-media {
    max-height: 15rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .rf-sample-card-grid .rf-books-grid-card {
    transition: none;
  }

  .rf-sample-card-grid .rf-books-grid-card:hover {
    transform: none;
  }
}

.rf-books-empty,
.rf-books-cta-panel {
  background: linear-gradient(180deg, rgba(255, 247, 236, 0.98), rgba(255, 255, 255, 0.98));
  border: 1px solid var(--rf-line);
  border-radius: 26px;
  box-shadow: var(--rf-shadow-sm);
}

.rf-books-empty {
  padding: 2rem 1.5rem;
}

.rf-books-cta-panel {
  margin-inline: auto;
  max-width: 52rem;
  padding: 2.25rem 1.5rem;
}

.rf-how-link-card {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.rf-how-link-card .rf-home-card-meta {
  align-items: flex-start;
  margin-bottom: 0;
}

.rf-how-link-card .rf-home-eyebrow {
  margin-bottom: 0;
  text-align: right;
}

.rf-how-link-card-actions {
  margin-top: auto;
  padding-top: 0.35rem;
}

.rf-about-tabs-nav {
  border-bottom: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  justify-content: center;
}

.rf-about-tabs-nav .nav-item {
  margin: 0;
}

.rf-about-tabs-nav .nav-link {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--rf-line);
  border-radius: 999px;
  color: var(--rf-brown-700);
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  padding: 0.8rem 1.2rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.rf-about-tabs-nav .nav-link:hover,
.rf-about-tabs-nav .nav-link:focus,
.rf-about-tabs-nav .nav-link.active {
  background: linear-gradient(180deg, rgba(255, 247, 236, 0.98), rgba(255, 255, 255, 0.98));
  border-color: rgba(161, 91, 45, 0.22);
  box-shadow: var(--rf-shadow-sm);
  color: var(--rf-brown-900);
  transform: translateY(-1px);
}

.rf-about-tabs-content {
  margin-top: 1.5rem;
}

.rf-about-tabs-panel {
  background: linear-gradient(180deg, rgba(255, 247, 236, 0.98), rgba(255, 255, 255, 0.98));
  border: 1px solid var(--rf-line);
  border-radius: 24px;
  box-shadow: var(--rf-shadow-sm);
  padding: 1.5rem;
}

.rf-about-tabs-panel p {
  margin-bottom: 0;
}

.rf-journal-card {
  background: linear-gradient(180deg, rgba(255, 247, 236, 0.98), rgba(255, 255, 255, 0.98));
  border: 1px solid var(--rf-line);
  border-radius: 30px;
  box-shadow: var(--rf-shadow-sm);
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
}

.rf-journal-card-media {
  aspect-ratio: 1 / 1;
  display: block;
  overflow: hidden;
}

.rf-journal-card-media img {
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
  width: 100%;
}

.rf-journal-card:hover .rf-journal-card-media img {
  transform: scale(1.03);
}

.rf-journal-card-body {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  gap: 0.9rem;
  padding: 1.4rem;
}

.rf-journal-card-meta,
.rf-journal-entry-meta {
  align-items: center;
  color: var(--rf-brown-600);
  display: flex;
  flex-wrap: wrap;
  font-size: 0.9rem;
  gap: 0.65rem 1rem;
}

.rf-journal-card-title {
  margin-bottom: 0;
}

.rf-journal-card-title a {
  color: var(--rf-brown-900);
  text-decoration: none;
}

.rf-journal-card-title a:hover {
  color: var(--rf-accent);
}

.rf-journal-card-body p {
  margin-bottom: 0;
}

.rf-journal-card-actions {
  margin-top: auto;
}

.rf-journal-entry {
  background: linear-gradient(180deg, rgba(255, 251, 246, 0.98), rgba(255, 255, 255, 0.98));
  border: 1px solid var(--rf-line);
  border-radius: 34px;
  box-shadow: var(--rf-shadow-md);
  padding: clamp(1.5rem, 2vw, 2.4rem);
}

.rf-journal-entry-figure {
  margin-bottom: 0;
}

.rf-journal-entry-title {
  margin-bottom: 1rem;
  text-align: left;
}

.rf-journal-entry-excerpt {
  color: var(--rf-brown-700);
  font-size: 1.15rem;
  font-weight: 600;
  line-height: 1.6;
  margin-bottom: 1.4rem;
}

.rf-journal-entry-callout strong {
  color: var(--rf-brown-900);
  display: block;
  font-family: "Roboto Slab", serif;
  font-size: 1.05rem;
}

.rf-journal-entry-body {
  margin-left: auto;
  margin-right: auto;
  max-width: 840px;
}

.rf-journal-entry-section + .rf-journal-entry-section {
  margin-top: 2rem;
}

.rf-journal-entry-section-title {
  color: var(--rf-brown-900);
  font-family: "Roboto Slab", serif;
  font-size: clamp(1.45rem, 2vw, 1.9rem);
  margin-bottom: 1rem;
}

.rf-journal-entry-closing {
  color: var(--rf-brown-800);
  font-weight: 600;
}

.rf-how-faq-panel .card {
  background: linear-gradient(180deg, rgba(255, 247, 236, 0.98), rgba(255, 255, 255, 0.98));
  border: 1px solid var(--rf-line);
  border-radius: 22px;
  box-shadow: var(--rf-shadow-sm);
  overflow: hidden;
}

.rf-how-faq-panel .card + .card {
  margin-top: 1rem;
}

.rf-how-faq-panel .card-header {
  background: transparent;
  border-bottom: 0;
  padding: 0;
}

.rf-how-faq-panel .card-title {
  margin: 0;
}

.rf-how-faq-panel .card-title button {
  align-items: center;
  background: transparent;
  border: 0;
  color: var(--rf-brown-900);
  cursor: pointer;
  display: flex;
  font-family: "Roboto Slab", Georgia, "Times New Roman", serif;
  font-size: 1.2rem;
  font-weight: 800;
  gap: 1rem;
  justify-content: space-between;
  line-height: 1.35;
  padding: 1.2rem 1.35rem;
  text-align: left;
  text-decoration: none;
  width: 100%;
}

.rf-how-faq-panel .card-title button:hover,
.rf-how-faq-panel .card-title button:focus {
  color: var(--rf-accent);
}

.rf-how-faq-panel .card-arrow {
  align-items: center;
  background: rgba(181, 109, 61, 0.12);
  border: 1px solid rgba(181, 109, 61, 0.18);
  border-radius: 999px;
  display: inline-flex;
  flex: 0 0 auto;
  height: 2rem;
  justify-content: center;
  margin-left: auto;
  position: static;
  width: 2rem;
}

.rf-how-faq-panel .card-arrow::before {
  color: var(--rf-accent);
  font-size: 1rem;
}

.rf-how-faq-panel .card-title button.collapsed .card-arrow::before {
  content: '\f505';
}

.rf-how-faq-panel .card-body {
  border-top: 1px solid rgba(112, 66, 38, 0.08);
  color: var(--rf-brown-700);
  padding: 0 1.35rem 1.3rem;
}

.rf-how-faq-panel .card-body p {
  margin-bottom: 0;
}

.rf-testimonials {
  position: relative;
}

.rf-testimonials::before {
  background: linear-gradient(180deg, rgba(58, 33, 20, 0.24), rgba(58, 33, 20, 0.38));
  content: "";
  inset: 0;
  position: absolute;
}

.rf-testimonials > div {
  position: relative;
  z-index: 1;
}

.rf-testimonials .quote-classic-boxed .quote-body {
  background: rgba(255, 250, 245, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.42);
  box-shadow: 0 20px 44px rgba(56, 35, 26, 0.18);
  min-height: 18rem;
  padding: 2rem 2rem 1.65rem;
}

.rf-testimonials .quote-classic-boxed .quote-body::before {
  color: rgba(161, 91, 45, 0.2) !important;
  left: 1.15rem;
  top: 1rem;
}

.rf-testimonials .quote-classic-boxed q {
  color: var(--rf-brown-900) !important;
  display: block;
  font-size: 1.06rem;
  font-weight: 700;
  line-height: 1.7;
  min-height: 7.6rem;
  text-shadow: none;
}

.rf-testimonials .quote-classic-boxed cite {
  color: var(--rf-brown-900) !important;
  font-size: 1.05rem;
  font-weight: 800;
}

.rf-testimonials .quote-classic-boxed .text-dark,
.rf-testimonials .quote-classic-boxed .unit-body,
.rf-testimonials .quote-classic-boxed .unit-body p {
  color: var(--rf-brown-600) !important;
}

.rf-testimonials .quote-classic-boxed .unit-left img {
  border: 4px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 10px 24px rgba(56, 35, 26, 0.16);
}

.rf-testimonial-viewport {
  touch-action: pan-y;
}

.rf-testimonial-carousel {
  position: relative;
}

.rf-testimonial-track {
  display: grid;
  gap: 30px;
}

.rf-testimonial-carousel.is-initialized .rf-testimonial-viewport {
  overflow: hidden;
}

.rf-testimonial-carousel.is-initialized .rf-testimonial-track {
  display: flex;
  transition: transform 300ms ease;
  will-change: transform;
}

.rf-testimonial-carousel.is-initialized .rf-testimonial-slide {
  flex: 0 0 100%;
  min-width: 0;
}

.rf-testimonial-controls {
  align-items: center;
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 1.5rem;
}

.rf-testimonial-controls[hidden] {
  display: none;
}

.rf-testimonial-navigation,
.rf-testimonial-autoplay,
.rf-testimonial-dot {
  appearance: none;
  background: rgba(255, 255, 255, 0.72);
  border: 0;
  color: var(--rf-brown-900);
  cursor: pointer;
}

.rf-testimonial-navigation {
  align-items: center;
  border-radius: 50%;
  display: inline-flex;
  font-size: 1.5rem;
  height: 2.75rem;
  justify-content: center;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 2.75rem;
  z-index: 2;
}

.rf-testimonial-navigation[hidden],
.rf-testimonial-autoplay[hidden] {
  display: none;
}

.rf-testimonial-navigation--previous {
  left: 0.35rem;
}

.rf-testimonial-navigation--next {
  right: 0.35rem;
}

.rf-testimonial-autoplay {
  align-items: center;
  border-radius: 50%;
  display: inline-flex;
  font-size: 1rem;
  height: 2rem;
  justify-content: center;
  padding: 0;
  width: 2rem;
}

.rf-testimonial-dots {
  align-items: center;
  display: flex;
  gap: 0.6rem;
}

.rf-testimonial-dot {
  border-radius: 50%;
  height: 0.75rem;
  padding: 0;
  width: 0.75rem;
}

.rf-testimonial-navigation:hover,
.rf-testimonial-navigation:focus-visible,
.rf-testimonial-autoplay:hover,
.rf-testimonial-autoplay:focus-visible,
.rf-testimonial-dot:hover,
.rf-testimonial-dot:focus-visible,
.rf-testimonial-dot[aria-current="true"] {
  background: #f7c64c;
}

.rf-testimonial-navigation:focus-visible,
.rf-testimonial-autoplay:focus-visible,
.rf-testimonial-dot:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 3px;
}

@media (min-width: 768px) {
  .rf-testimonial-track {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .rf-testimonial-carousel.is-initialized .rf-testimonial-slide {
    flex-basis: calc((100% - 30px) / 2);
  }

  .rf-testimonial-navigation--previous {
    left: -3.5rem;
  }

  .rf-testimonial-navigation--next {
    right: -3.5rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .rf-testimonial-carousel.is-initialized .rf-testimonial-track {
    transition: none;
  }
}

.rf-help-form-panel {
  background: linear-gradient(180deg, rgba(255, 251, 246, 0.98), rgba(255, 255, 255, 0.98));
  border: 1px solid var(--rf-line);
  border-radius: 32px;
  box-shadow: var(--rf-shadow-md);
  margin-inline: auto;
  max-width: 68rem;
  padding: clamp(1.5rem, 3vw, 2.5rem);
}

.rf-help-form-status,
.rf-help-form-validation {
  border-radius: 20px;
  font-weight: 700;
  margin: 1.25rem auto 0;
  max-width: 54rem;
  padding: 0.95rem 1.15rem;
}

.rf-help-form-status {
  border: 1px solid transparent;
}

.rf-help-form-status.is-success {
  background: rgba(231, 245, 231, 0.9);
  border-color: rgba(99, 140, 92, 0.28);
  color: #44643d;
}

.rf-help-form-status.is-error,
.rf-help-form-validation {
  background: rgba(255, 245, 240, 0.96);
  border: 1px solid rgba(161, 91, 45, 0.18);
  color: var(--rf-brown-800);
}

.rf-help-form-validation:empty {
  display: none;
}

.rf-help-form-grid {
  display: grid;
  gap: 1rem 1.15rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-inline: auto;
  max-width: 54rem;
}

.rf-help-form-grid .form-wrap {
  margin-bottom: 0;
  margin-top: 0;
}

.rf-help-form-grid .form-label {
  color: var(--rf-brown-800);
  display: block;
  font-size: 0.94rem;
  font-weight: 800;
  margin-bottom: 0.45rem;
  padding-left: 0;
  position: static;
  transform: none;
}

.rf-help-form-grid .form-input {
  background: rgba(255, 255, 255, 0.94) !important;
  border: 1px solid var(--rf-line) !important;
  border-radius: 18px !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.65);
  color: var(--rf-brown-900) !important;
  min-height: 3.35rem;
  padding: 0.9rem 1rem !important;
}

.rf-help-form-grid .form-input:focus {
  border-color: rgba(161, 91, 45, 0.34) !important;
  box-shadow: 0 0 0 0.18rem rgba(189, 116, 65, 0.14) !important;
  outline: none;
}

.rf-help-form-grid textarea.form-input {
  min-height: 11rem;
  resize: vertical;
}

.rf-help-form-grid select.form-input {
  appearance: auto;
}

.rf-testimonial-field-help,
.rf-testimonial-character-count {
  color: var(--rf-brown-600);
  font-size: 0.85rem;
  margin-top: 0.4rem;
}

.rf-testimonial-character-count {
  text-align: right;
}

.rf-help-form-message {
  grid-column: 1 / -1;
}

.rf-help-form-grid .text-danger {
  display: block;
  font-size: 0.9rem;
  margin-top: 0.45rem;
}

.rf-help-form-actions {
  display: flex;
  justify-content: center;
  margin-top: 1.4rem;
}

.rf-testimonial-consent {
  align-items: flex-start;
  color: var(--rf-brown-700);
  cursor: pointer;
  display: flex;
  gap: 0.75rem;
  line-height: 1.55;
  margin: 1.25rem auto 0;
  max-width: 54rem;
}

.rf-testimonial-consent input {
  flex: 0 0 auto;
  margin-top: 0.3rem;
}

.rf-avatar-create-page {
  background:
    radial-gradient(circle at top right, rgba(244, 203, 141, 0.28), transparent 32rem),
    linear-gradient(180deg, #fffaf3 0%, #ffffff 52%, #fff7ec 100%);
  padding: clamp(3.5rem, 7vw, 6rem) 0;
}

.rf-avatar-create-shell {
  margin: 0 auto;
  max-width: 1180px;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

.rf-avatar-create-hero {
  align-items: end;
  display: grid;
  gap: clamp(1rem, 3vw, 2rem);
  grid-template-columns: minmax(0, 1fr) minmax(220px, 320px);
  margin: 0 auto 2.6rem;
}

.rf-avatar-create-kicker {
  color: var(--rf-accent-soft);
  font-size: 0.9rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  margin-bottom: 0.9rem;
  text-transform: uppercase;
}

.rf-avatar-create-hero h1 {
  font-size: clamp(3rem, 8vw, 5.8rem);
  line-height: 0.98;
  margin: 0 0 1.2rem;
  max-width: 12ch;
}

.rf-avatar-create-hero p {
  color: var(--rf-brown-600);
  font-size: clamp(1.05rem, 2vw, 1.28rem);
  line-height: 1.55;
  margin: 0;
  max-width: 760px;
}

.rf-avatar-create-summary {
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid var(--rf-line);
  border-radius: 1.5rem;
  box-shadow: var(--rf-shadow-md);
  padding: 1.15rem;
}

.rf-avatar-create-summary span,
.rf-avatar-create-summary small {
  color: var(--rf-brown-500);
  display: block;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.rf-avatar-create-summary strong {
  color: var(--rf-brown-900);
  display: block;
  font-family: "Roboto Slab", Georgia, "Times New Roman", serif;
  font-size: 1.55rem;
  line-height: 1.1;
  margin: 0.35rem 0;
}

.rf-avatar-create-builder {
  align-items: start;
  display: grid;
  gap: 1rem;
  grid-template-columns: 210px minmax(0, 1fr);
}

.rf-avatar-create-steps {
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid var(--rf-line);
  border-radius: 1.4rem;
  box-shadow: var(--rf-shadow-sm);
  display: grid;
  gap: 0.45rem;
  padding: 0.65rem;
  position: sticky;
  top: 7rem;
}

.rf-avatar-create-step-button {
  align-items: center;
  background: transparent;
  border: 0;
  border-radius: 1rem;
  color: var(--rf-brown-700);
  cursor: pointer;
  display: flex;
  gap: 0.6rem;
  padding: 0.75rem;
  text-align: left;
  transition: background 0.18s ease, color 0.18s ease, opacity 0.18s ease;
}

.rf-avatar-create-step-button span {
  align-items: center;
  background: var(--rf-cream-strong);
  border-radius: 999px;
  color: var(--rf-brown-800);
  display: inline-flex;
  font-weight: 900;
  height: 1.9rem;
  justify-content: center;
  min-width: 1.9rem;
}

.rf-avatar-create-step-button strong {
  color: inherit;
  font-weight: 900;
}

.rf-avatar-create-step-button.is-active {
  background: var(--rf-brown-800);
  color: #fff9ef;
}

.rf-avatar-create-step-button.is-active span {
  background: #ffd698;
  color: var(--rf-brown-900);
}

.rf-avatar-create-step-button.is-complete span {
  background: #e8f5e9;
  color: #22552d;
}

.rf-avatar-create-panel {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--rf-line);
  border-radius: 1.8rem;
  box-shadow: var(--rf-shadow-md);
  overflow: hidden;
}

.rf-avatar-create-screen {
  display: none;
  padding: clamp(1.25rem, 3vw, 2rem);
}

.rf-avatar-create-screen.is-active {
  display: block;
}

.rf-avatar-create-step-grid {
  align-items: start;
  display: grid;
  gap: clamp(1rem, 3vw, 2rem);
  grid-template-columns: minmax(0, 1fr) minmax(270px, 360px);
}

.rf-avatar-create-screen h2 {
  font-size: clamp(2.2rem, 5vw, 4.2rem);
  line-height: 1.03;
  margin: 0 0 1rem;
}

.rf-avatar-create-screen p:not(.rf-avatar-create-kicker) {
  color: var(--rf-brown-600);
  font-size: 1rem;
  line-height: 1.6;
}

.rf-avatar-create-field-hint {
  color: var(--rf-brown-500);
  font-size: 0.92rem;
  margin: 0.45rem 0 0;
}

.rf-avatar-create-check-row {
  align-items: flex-start;
  background: var(--rf-cream-soft);
  border: 1px solid var(--rf-line);
  border-radius: 1rem;
  color: var(--rf-brown-700);
  display: flex;
  gap: 0.75rem;
  line-height: 1.5;
  margin-top: 1.1rem;
  padding: 0.9rem;
}

.rf-avatar-create-check-row input {
  margin-top: 0.24rem;
  transform: scale(1.15);
}

.rf-avatar-create-live-card,
.rf-avatar-create-status-card,
.rf-avatar-create-requirements article,
.rf-avatar-create-review-list > div {
  background: linear-gradient(180deg, #fffaf3, #ffffff);
  border: 1px solid var(--rf-line);
  border-radius: 1.35rem;
  box-shadow: var(--rf-shadow-sm);
  padding: 1rem;
}

.rf-avatar-create-live-card .mdi,
.rf-avatar-create-status-card .mdi,
.rf-avatar-create-requirements .mdi {
  align-items: center;
  background: var(--rf-cream-strong);
  border-radius: 999px;
  color: var(--rf-accent);
  display: inline-flex;
  font-size: 1.45rem;
  height: 2.8rem;
  justify-content: center;
  margin-bottom: 0.8rem;
  width: 2.8rem;
}

.rf-avatar-create-live-card h3,
.rf-avatar-create-requirements strong,
.rf-avatar-create-status-card strong {
  color: var(--rf-brown-900);
  display: block;
  font-family: "Roboto Slab", Georgia, "Times New Roman", serif;
  font-size: 1.28rem;
  line-height: 1.15;
  margin: 0;
}

.rf-avatar-create-live-card p,
.rf-avatar-create-requirements p,
.rf-avatar-create-status-card p {
  margin: 0.55rem 0 0;
}

.rf-avatar-create-requirements {
  display: grid;
  gap: 0.8rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 1.2rem 0;
}

.rf-avatar-create-status-card {
  align-items: flex-start;
  display: grid;
  gap: 0.9rem;
  grid-template-columns: auto 1fr;
  margin-top: 1.1rem;
}

.rf-avatar-create-status-card.is-success {
  background: #ecf8ee;
  border-color: rgba(34, 85, 45, 0.2);
}

.rf-avatar-create-status-card.is-error {
  background: #fff0ee;
  border-color: rgba(139, 45, 31, 0.22);
}

.rf-avatar-create-status-card .mdi {
  margin-bottom: 0;
}

.rf-avatar-create-review-list {
  display: grid;
  gap: 0.75rem;
  margin-top: 1.2rem;
}

.rf-avatar-create-review-list > div {
  align-items: center;
  box-shadow: none;
  display: grid;
  gap: 0.75rem;
  grid-template-columns: minmax(110px, auto) minmax(0, 1fr);
}

.rf-avatar-create-review-list span {
  color: var(--rf-brown-500);
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.rf-avatar-create-review-list strong {
  color: var(--rf-brown-900);
  text-align: right;
}

.rf-avatar-create-inline-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem;
}

.rf-avatar-create-actions {
  align-items: center;
  background: rgba(255, 250, 243, 0.92);
  border-top: 1px solid var(--rf-line);
  display: flex;
  gap: 0.75rem;
  justify-content: flex-end;
  padding: 1rem clamp(1.25rem, 3vw, 2rem);
}

.rf-avatar-create-layout {
  align-items: start;
  display: grid;
  gap: clamp(1.25rem, 3vw, 2rem);
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.65fr);
}

.rf-avatar-create-card,
.rf-avatar-create-guidance {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--rf-line);
  border-radius: 2rem;
  box-shadow: var(--rf-shadow-md);
  padding: clamp(1.25rem, 3vw, 2rem);
}

.rf-avatar-create-step {
  align-items: flex-start;
  display: grid;
  gap: 0.9rem;
  grid-template-columns: auto 1fr;
  margin: 1.2rem 0 1rem;
}

.rf-avatar-create-step:first-child {
  margin-top: 0;
}

.rf-avatar-create-step span {
  align-items: center;
  background: var(--rf-cream-strong);
  border-radius: 999px;
  color: var(--rf-brown-800);
  display: inline-flex;
  font-weight: 900;
  height: 2.25rem;
  justify-content: center;
  width: 2.25rem;
}

.rf-avatar-create-step h2,
.rf-avatar-create-guidance h2,
.rf-avatar-create-guidance h3 {
  margin: 0;
}

.rf-avatar-create-step p {
  color: var(--rf-brown-600);
  line-height: 1.5;
  margin: 0.3rem 0 0;
}

.rf-avatar-create-label {
  color: var(--rf-brown-700);
  display: block;
  font-weight: 900;
  margin-bottom: 0.45rem;
}

.rf-avatar-create-input {
  background: var(--rf-paper);
  border: 1px solid rgba(112, 66, 38, 0.16);
  border-radius: 1.1rem;
  color: var(--rf-brown-800);
  display: block;
  min-height: 3.35rem;
  padding: 0.85rem 1rem;
  width: 100%;
}

.rf-avatar-create-input:focus {
  border-color: rgba(161, 91, 45, 0.34);
  box-shadow: 0 0 0 0.18rem rgba(189, 116, 65, 0.14);
  outline: none;
}

.rf-avatar-create-crop {
  margin-top: 1.15rem;
}

.rf-avatar-create-crop-actions {
  align-items: center;
  color: var(--rf-brown-600);
  display: flex;
  gap: 0.75rem;
  justify-content: space-between;
  margin-bottom: 0.75rem;
}

.rf-avatar-create-crop-help {
  color: var(--rf-brown-600);
  font-size: 0.95rem;
  line-height: 1.45;
  margin: -0.2rem 0 0.8rem;
}

.rf-avatar-create-crop-frame {
  align-items: center;
  background: linear-gradient(180deg, #fff7ec, #ffffff);
  border: 1px solid var(--rf-line);
  border-radius: 1.5rem;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.7);
  display: flex;
  justify-content: center;
  overflow: hidden;
  position: relative;
  touch-action: none;
}

.rf-avatar-create-crop-frame.is-cropping {
  cursor: crosshair;
}

.rf-avatar-create-crop-frame img {
  display: block;
  max-height: min(72vh, 720px);
  object-fit: contain;
  user-select: none;
  width: 100%;
}

.rf-avatar-create-crop-box {
  border: 2px solid rgba(255, 250, 243, 0.95);
  border-radius: 1rem;
  box-sizing: border-box;
  box-shadow: 0 0 0 9999px rgba(42, 24, 17, 0.38), 0 8px 24px rgba(42, 24, 17, 0.25);
  cursor: move;
  display: none;
  min-height: 24px;
  min-width: 24px;
  position: absolute;
}

.rf-avatar-create-crop-box.is-visible {
  display: block;
}

.rf-avatar-create-crop-box [data-crop-handle] {
  background: var(--rf-cream-strong);
  border: 2px solid var(--rf-paper);
  border-radius: 999px;
  box-shadow: 0 3px 10px rgba(42, 24, 17, 0.24);
  height: 1rem;
  padding: 0;
  position: absolute;
  width: 1rem;
  z-index: 2;
}

.rf-avatar-create-crop-box [data-crop-handle="nw"] {
  cursor: nwse-resize;
  left: 0.35rem;
  top: 0.35rem;
}

.rf-avatar-create-crop-box [data-crop-handle="ne"] {
  cursor: nesw-resize;
  right: 0.35rem;
  top: 0.35rem;
}

.rf-avatar-create-crop-box [data-crop-handle="sw"] {
  bottom: 0.35rem;
  cursor: nesw-resize;
  left: 0.35rem;
}

.rf-avatar-create-crop-box [data-crop-handle="se"] {
  bottom: 0.35rem;
  cursor: nwse-resize;
  right: 0.35rem;
}

.rf-avatar-create-crop-review {
  background: linear-gradient(180deg, #fffaf3, #fff);
  border: 1px solid var(--rf-line);
  border-radius: 1.35rem;
  margin: 1.2rem 0;
  padding: 1rem;
  text-align: center;
}

.rf-avatar-create-crop-review span {
  color: var(--rf-accent);
  display: block;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
}

.rf-avatar-create-crop-review canvas,
.rf-avatar-create-crop-review img {
  background: #fff;
  border-radius: 1rem;
  display: block;
  margin: 0 auto;
  max-height: 20rem;
  max-width: 100%;
  object-fit: contain;
}

.rf-avatar-create-price {
  align-items: center;
  background: linear-gradient(180deg, #fffaf3, #fff);
  border: 1px solid var(--rf-line);
  border-radius: 1.35rem;
  display: flex;
  gap: 0.75rem;
  justify-content: space-between;
  margin: 1.4rem 0;
  padding: 1rem 1.1rem;
}

.rf-avatar-create-price span {
  color: var(--rf-brown-600);
}

.rf-avatar-create-price strong {
  color: var(--rf-brown-900);
  font-size: 1.15rem;
}

.rf-avatar-create-submit {
  width: 100%;
}

.rf-avatar-create-spinner {
  animation: rf-avatar-create-spin 0.85s linear infinite;
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-top-color: #fff;
  border-radius: 999px;
  display: inline-block;
  height: 1rem;
  margin-left: 0.65rem;
  width: 1rem;
}

.rf-avatar-create-message {
  background: var(--rf-cream-soft);
  border: 1px solid var(--rf-line);
  border-radius: 1.1rem;
  color: var(--rf-brown-800);
  font-weight: 800;
  margin-bottom: 1rem;
  padding: 0.9rem 1rem;
}

.rf-avatar-create-message.is-error {
  background: #fff1ed;
  border-color: rgba(181, 80, 54, 0.25);
  color: #8c3827;
}

.rf-avatar-create-message.is-info {
  background: #fff8eb;
  border-color: rgba(189, 116, 65, 0.22);
}

.rf-avatar-create-message.is-success {
  background: #ecf8ee;
  border-color: rgba(34, 85, 45, 0.2);
  color: #22552d;
}

.rf-avatar-create-message.is-waiting {
  align-items: center;
  display: inline-flex;
  gap: 0.5rem;
}

.rf-avatar-create-wait-icon {
  animation: rf-avatar-create-spin 0.85s linear infinite;
  display: inline-flex;
}

.rf-avatar-create-guidance {
  position: sticky;
  top: 7rem;
}

.rf-avatar-create-guidance h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.05;
}

.rf-avatar-create-guidance-list {
  display: grid;
  gap: 0.9rem;
  margin-top: 1.35rem;
}

.rf-avatar-create-guidance-list article {
  background: var(--rf-ivory);
  border: 1px solid var(--rf-line);
  border-radius: 1.35rem;
  padding: 1rem;
}

.rf-avatar-create-guidance-list .mdi {
  align-items: center;
  background: var(--rf-cream-strong);
  border-radius: 999px;
  color: var(--rf-accent);
  display: inline-flex;
  font-size: 1.4rem;
  height: 2.65rem;
  justify-content: center;
  margin-bottom: 0.75rem;
  width: 2.65rem;
}

.rf-avatar-create-guidance-list p,
.rf-avatar-create-note {
  color: var(--rf-brown-600);
  line-height: 1.5;
  margin: 0.35rem 0 0;
}

.rf-avatar-create-note {
  margin-top: 1.25rem;
}

@keyframes rf-avatar-create-spin {
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 991.98px) {
  .rd-navbar-wrap {
    padding-inline: 0;
  }

  .rd-navbar-default.rd-navbar-static .rd-navbar-top-panel,
  .rd-navbar-transparent.rd-navbar-static .rd-navbar-top-panel,
  .rd-navbar-default.rd-navbar-fixed .rd-navbar-top-panel,
  .rd-navbar-transparent.rd-navbar-fixed .rd-navbar-top-panel {
    padding-inline: 0.9rem !important;
  }

  .rf-home-hero .swiper-slide {
    align-items: flex-start;
    background-image: none !important;
    display: flex;
    flex-direction: column;
    height: auto;
    min-height: 0;
  }

  .rf-home-hero,
  .rf-home-hero .swiper-wrapper {
    height: auto;
    min-height: 0;
  }

  .rf-home-hero .swiper-wrapper {
    align-items: stretch;
  }

  .rf-home-hero .swiper-slide::before {
    display: none;
  }

  .rf-home-hero .swiper-slide-caption::before,
  .rf-home-hero .swiper-slide-caption::after {
    display: none;
  }

  .rf-home-hero .swiper-slide-caption {
    background: var(--rf-brown-900);
  }

  .rf-home-hero .swiper-slide-caption .container {
    display: block;
    padding: 1rem;
    vertical-align: top;
  }

  .rf-home-hero .header-transparent-slide-caption {
    padding: 0 0 2.5rem;
  }

  .rf-hero-responsive-media {
    aspect-ratio: 16 / 9;
    display: block;
    flex: 0 0 auto;
    overflow: hidden;
    width: 100%;
  }

  .rf-hero-responsive-media img {
    display: block;
    height: 100%;
    object-fit: cover;
    object-position: var(--rf-hero-focus-tablet-x, 50%) center;
    width: 100%;
  }

  .rf-hero-content-shell {
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    padding: clamp(0.35rem, 2vw, 1rem);
    text-align: left;
    width: 100%;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .swiper-slide-caption .rf-hero-title {
    max-width: 12.5ch;
  }

  .rf-home-hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .rf-books-intro-copy {
    padding-top: 0;
  }

  .rf-policy-side-card {
    position: static;
  }

  .rf-hero-copy-wrap,
  .rf-hero-actions-wrap {
    margin-top: 1rem;
  }

  .rf-books-intro-actions,
  .rf-books-cta-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .rf-testimonials .quote-classic-boxed .quote-body {
    min-height: 16rem;
  }

  .rf-help-form-grid {
    grid-template-columns: 1fr;
  }

  .section-image-aside-right .section-image-aside-body::after,
  .section-image-aside-left .section-image-aside-body::after {
    display: none;
  }

  .rf-avatar-create-layout {
    grid-template-columns: 1fr;
  }

  .rf-avatar-create-guidance {
    position: static;
  }

  .rf-avatar-create-hero,
  .rf-avatar-create-builder,
  .rf-avatar-create-step-grid {
    grid-template-columns: 1fr;
  }

  .rf-avatar-create-steps {
    display: flex;
    overflow-x: auto;
    position: static;
  }

  .rf-avatar-create-step-button {
    flex: 0 0 auto;
    min-width: 8.5rem;
  }

  .rf-avatar-create-requirements {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767.98px) {
  .rf-hero-responsive-media img {
    object-position: var(--rf-hero-focus-mobile-x, 50%) center;
  }

  .rf-home-hero .swiper-slide-caption .rf-hero-title {
    font-size: clamp(2rem, 9vw, 2.45rem);
    line-height: 1.02;
    max-width: 100%;
  }

  .rf-page-banner-title {
    clip: rect(0, 0, 0, 0);
    clip-path: inset(50%);
    height: 1px;
    overflow: hidden;
    position: absolute;
    white-space: nowrap;
    width: 1px;
  }

  .rd-navbar-cart {
    padding: 0.35rem 0.7rem;
  }

  .rd-navbar-default.rd-navbar-fixed .panel-title,
  .rd-navbar-transparent.rd-navbar-fixed .panel-title {
    max-width: calc(100% - 8.5rem);
    padding-inline: 0.35rem;
  }

  .rd-navbar-default.rd-navbar-fixed .rd-navbar-nav-wrap,
  .rd-navbar-transparent.rd-navbar-fixed .rd-navbar-nav-wrap {
    width: min(20rem, 88vw);
  }

  .rd-navbar-default.rd-navbar-fixed .rd-navbar-panel,
  .rd-navbar-transparent.rd-navbar-fixed .rd-navbar-panel {
    --rf-mobile-control-size: 2.15rem;
  }

  .rf-mobile-header-actions {
    gap: 0.35rem;
    position: absolute;
    right: 0.65rem;
    top: 50%;
    transform: translateY(-50%);
  }

  .rf-mobile-header-action {
    height: var(--rf-mobile-control-size);
    min-width: var(--rf-mobile-control-size);
    padding: 0.28rem 0.58rem;
  }

  .rd-navbar-default.rd-navbar-fixed .rf-mobile-menu-toggle,
  .rd-navbar-transparent.rd-navbar-fixed .rf-mobile-menu-toggle,
  .rd-navbar-default.rd-navbar-fixed .rf-mobile-menu-toggle span,
  .rd-navbar-transparent.rd-navbar-fixed .rf-mobile-menu-toggle span {
    height: var(--rf-mobile-control-size);
    width: var(--rf-mobile-control-size);
  }

  .rf-mobile-header-cart-count {
    font-size: 0.88rem;
  }

  .rd-navbar-top-panel ul li,
  .rd-navbar-top-panel .unit-body,
  .rd-navbar-top-panel .unit-body a {
    font-size: 0.78rem;
  }

  .product-body,
  .post-news-body,
  .post-news-body-variant-1,
  .section-image-aside-body {
    padding: 1rem;
  }

  .form-subscribe {
    align-items: stretch;
    flex-direction: column;
  }

  .rf-footer-newsletter {
    gap: 0;
  }

  .rf-footer-subscribe-form .form-wrap {
    flex: 0 0 auto;
    width: 100%;
  }

  .rf-footer-subscribe-form .form-button {
    width: 100%;
  }

  .rf-footer-subscribe-form .btn {
    width: 100%;
  }

  .rf-home-stat-row {
    flex-direction: column;
  }

  .rf-books-grid-media {
    padding: 1rem;
  }

  .rf-home-voice-meta,
  .rf-home-voice-cloud,
  .rf-home-narrator-pagination {
    justify-content: flex-start;
  }

  .rf-home-card-meta {
    align-items: flex-start;
    flex-direction: column;
  }

  .rf-testimonials .quote-classic-boxed .quote-body {
    min-height: auto;
    padding: 1.5rem 1.25rem 1.25rem;
  }

  .rf-testimonials .quote-classic-boxed q {
    min-height: auto;
  }

  .rf-home-hero-actions .btn {
    width: 100%;
  }

  .rf-avatar-create-actions {
    bottom: 0;
    justify-content: space-between;
    position: sticky;
    z-index: 20;
  }

  .rf-avatar-create-actions .rf-button {
    flex: 1;
  }

  .rf-avatar-create-review-list > div {
    grid-template-columns: 1fr;
  }

  .rf-avatar-create-review-list strong {
    text-align: left;
  }
}

/* Dashboard collection pages */
.rf-dashboard-page {
    background: radial-gradient(circle at top left, rgba(255, 223, 174, 0.45), transparent 32rem), linear-gradient(180deg, #fffaf3 0%, #fff 46%, #fff7ec 100%);
    min-height: 100vh;
    padding: clamp(1rem, 3vw, 3rem);
    text-align: left;
}

.rf-dashboard-shell {
    margin: 0 auto;
    max-width: 1180px;
}

.rf-dashboard-hero {
    align-items: end;
    display: grid;
    gap: 1.25rem;
    grid-template-columns: 1fr minmax(220px, 320px);
    margin-bottom: 1.5rem;
}

.rf-eyebrow,
.rf-card-kicker {
    color: #a15b2d;
    display: block;
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    margin: 0 0 0.4rem;
    text-transform: uppercase;
}

.rf-dashboard-hero h1,
.rf-section-heading h2,
.rf-book-card h3,
.rf-child-library-card h3,
.rf-empty-card h3 {
    color: #38231a;
    font-family: var(--rf-heading-font, Georgia, "Times New Roman", serif);
    font-weight: 800;
    line-height: 1.05;
}

.rf-dashboard-hero h1 {
    font-size: clamp(2.3rem, 7vw, 5.4rem);
    margin: 0;
    max-width: 720px;
}

.rf-hero-copy {
    color: #694938;
    font-size: clamp(1rem, 2vw, 1.24rem);
    line-height: 1.6;
    margin: 1rem 0 0;
    max-width: 680px;
}

.rf-summary-card,
.rf-dashboard-section,
.rf-empty-card,
.rf-book-card,
.rf-child-library-card {
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(112, 66, 38, 0.12);
    box-shadow: 0 18px 50px rgba(77, 47, 28, 0.1);
}

.rf-summary-card {
    border-radius: 24px;
    padding: 1.2rem;
}

.rf-summary-label {
    color: #9d735c;
    display: block;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.rf-summary-card strong {
    color: #3a2318;
    display: block;
    font-size: 1.55rem;
    line-height: 1.1;
    margin-top: 0.3rem;
}

.rf-summary-card span:last-child {
    color: #795642;
    display: block;
    margin-top: 0.35rem;
}

.rf-dashboard-section {
    border-radius: 28px;
    margin-top: 1rem;
    padding: clamp(1rem, 3vw, 2rem);
}

.rf-section-heading {
    align-items: start;
    display: flex;
    gap: 1rem;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.rf-section-heading h2 {
    font-size: clamp(1.7rem, 3vw, 2.45rem);
    margin: 0;
}

.rf-section-heading p {
    color: #765548;
    line-height: 1.55;
    margin: 0.5rem 0 0;
}

.rf-button {
    align-items: center;
    background: #fff7ec;
    border: 1px solid rgba(112, 66, 38, 0.16);
    border-radius: 999px;
    color: #4e2f22;
    display: inline-flex;
    font-weight: 800;
    justify-content: center;
    min-height: 42px;
    padding: 0.65rem 1rem;
    text-decoration: none;
    transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
    white-space: nowrap;
}

.rf-button:hover,
.rf-button:focus-visible {
    box-shadow: 0 12px 24px rgba(77, 47, 28, 0.13);
    color: #3a2318;
    text-decoration: none;
    transform: translateY(-1px);
}

.rf-button-primary {
    background: #4e2f22;
    color: #fff9ef;
}

.rf-button-primary:hover,
.rf-button-primary:focus-visible {
    color: #fff9ef;
}

.rf-button-secondary-small {
    background: #f4dfc5;
    border-color: rgba(112, 66, 38, 0.1);
    color: #7a4a2f;
    font-size: 0.78rem;
    min-height: 34px;
    padding: 0.45rem 0.75rem;
}

.rf-dashboard-filter-bar {
    display: grid;
    gap: 0.65rem;
    margin: 0 0 1rem;
    position: relative;
}

.rf-dashboard-filter-primary {
    align-items: center;
    display: grid;
    gap: 0.75rem;
    grid-template-columns: minmax(240px, 1fr) auto;
}

.rf-dashboard-filter-search {
    min-width: 0;
}

.rf-dashboard-filter-search input {
    appearance: none;
    background-color: var(--rf-control-blue-bg);
    border: 1px solid var(--rf-control-blue-border);
    border-radius: 999px;
    box-sizing: border-box;
    color: var(--rf-control-blue-text);
    font-size: 0.86rem;
    font-weight: 800;
    min-height: 36px;
    padding: 0.5rem 0.9rem;
    width: 100%;
}

.rf-dashboard-filter-search input::placeholder {
    color: var(--rf-control-blue-text);
    opacity: 0.72;
}

.rf-dashboard-filter-search input:hover,
.rf-dashboard-filter-search input:focus-visible {
    background-color: var(--rf-control-blue-bg-hover);
    border-color: rgba(66, 100, 150, 0.28);
    color: var(--rf-control-blue-text-strong);
}

.rf-dashboard-result-controls,
.rf-dashboard-refinement-controls,
.rf-dashboard-refinement-row {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.rf-dashboard-result-controls {
    justify-content: flex-end;
}

.rf-dashboard-result-controls .rf-open-book-menu-panel {
    left: auto;
    right: 0;
}

.rf-dashboard-refinement-row {
    justify-content: space-between;
}

.rf-dashboard-refinement-controls {
    min-width: 0;
}

.rf-dashboard-refinement-row .rf-library-filter-clear {
    flex: 0 0 auto;
    margin-left: auto;
}

.rf-dashboard-filter-search input:focus-visible {
    box-shadow: 0 0 0 3px rgba(66, 100, 150, 0.14);
    outline: none;
}

.rf-open-book-menu {
    align-items: stretch;
    display: inline-flex;
    position: relative;
    z-index: 2;
}

.rf-open-book-menu:has(.rf-open-book-dropdown[open]) {
    z-index: 20;
}

.rf-open-book-dropdown {
    display: inline-flex;
    margin: 0;
}

.rf-open-book-menu-panel {
    background: #fffaf3;
    border: 1px solid rgba(112, 66, 38, 0.16);
    border-radius: 16px;
    box-shadow: 0 18px 44px rgba(77, 47, 28, 0.18);
    display: none;
    gap: 0.25rem;
    left: 0;
    min-width: 190px;
    padding: 0.4rem;
    position: absolute;
    top: calc(100% + 0.45rem);
    z-index: 30;
}

.rf-open-book-dropdown[open] .rf-open-book-menu-panel {
    display: grid;
}

.rf-library-filter-menu {
    z-index: 3;
}

.rf-library-filter-menu:has(.rf-open-book-dropdown[open]) {
    z-index: 22;
}

.rf-library-filter-pill {
    align-items: center;
    display: inline-flex;
    gap: 0.35rem;
    min-height: 36px;
    padding-inline: 0.85rem 0.65rem;
}

.rf-library-filter-panel {
    max-height: 320px;
    min-width: 210px;
    overflow: auto;
}

.rf-library-filter-option {
    align-items: center;
    background: transparent;
    border: 0;
    border-radius: 12px;
    color: #4e2f22;
    cursor: pointer;
    display: flex;
    font-size: 0.9rem;
    font-weight: 800;
    justify-content: space-between;
    padding: 0.62rem 0.75rem;
    text-align: left;
    white-space: nowrap;
    width: 100%;
}

.rf-library-filter-clear {
    min-height: 36px;
}

.rf-dashboard-filter-progress {
    animation: rf-dashboard-filter-progress-reveal 0.12s ease 0.1s forwards;
    background: rgba(66, 100, 150, 0.08);
    border-radius: 999px;
    bottom: -0.55rem;
    height: 3px;
    left: 0;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    position: absolute;
    right: 0;
}

@keyframes rf-dashboard-filter-progress-reveal {
    to {
        opacity: 1;
    }
}

.rf-dashboard-filter-progress[hidden] {
    display: none !important;
}

.rf-dashboard-filter-progress-bar {
    animation: rf-dashboard-filter-progress 1.05s ease-in-out infinite;
    background: var(--rf-control-blue-text);
    border-radius: inherit;
    display: block;
    height: 100%;
    transform: translateX(-125%);
    width: 38%;
}

@keyframes rf-dashboard-filter-progress {
    0% {
        transform: translateX(-125%);
    }

    100% {
        transform: translateX(365%);
    }
}

.rf-dashboard-live {
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    height: 1px;
    overflow: hidden;
    position: absolute;
    white-space: nowrap;
    width: 1px;
}

@media (prefers-reduced-motion: reduce) {
    .rf-dashboard-filter-progress {
        animation: none;
        opacity: 1;
    }

    .rf-dashboard-filter-progress-bar {
        animation: none;
        transform: none;
        width: 100%;
    }
}

.rf-dashboard-alert {
    border-radius: 16px;
    color: #2d6533;
    font-weight: 800;
    margin: 0 0 1rem;
    padding: 0.8rem 1rem;
}

.rf-dashboard-alert.is-error {
    background: #fff0ec;
    color: #8a3527;
}

[data-dashboard-collection-region] {
    position: relative;
}

.rf-book-grid {
    display: grid;
    gap: 1.25rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
}

.rf-book-grid-empty {
  align-items: flex-start;
  background: #fffaf3;
  border: 1px dashed rgba(78, 47, 34, 0.3);
  border-radius: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  grid-column: 1 / -1;
  padding: 1.25rem;
}

.rf-book-grid-empty strong {
  color: #3b2119;
  font-family: "Roboto Slab", serif;
  font-size: 1.1rem;
}

.rf-book-card {
    border-radius: 28px;
    display: flex;
    flex-direction: column;
    overflow: visible;
    padding: 1rem;
}

.rf-order-card {
    border-top: 4px solid #2d6533;
}

.rf-order-card.is-failed {
    border-top-color: #9c3f30;
}

.rf-order-card .rf-book-card-body {
    padding-top: 0.25rem;
}

.rf-order-card .rf-lifecycle-pill.is-failed {
    background: #fff0ec;
    border-color: rgba(138, 53, 39, 0.22);
    color: #8a3527;
}

.rf-book-card-link {
    color: inherit;
    cursor: pointer;
    text-decoration: none;
}

.rf-book-card-link:hover,
.rf-book-card-link:focus {
    color: inherit;
    text-decoration: none;
}

.rf-book-card-link:focus-visible {
    outline: 3px solid rgba(161, 91, 45, 0.35);
    outline-offset: 4px;
}

.rf-book-cover {
    aspect-ratio: 1 / 1;
    background: #f4dfc5;
    border-radius: 22px;
    margin-inline: auto;
    max-width: 420px;
    overflow: hidden;
    width: 100%;
}

.rf-book-cover img {
    border-radius: inherit;
    display: block;
    height: 100%;
    object-fit: cover;
    object-position: center;
    width: 100%;
}

.rf-avatar-cover img {
    object-fit: contain;
}

.rf-voice-cover {
    align-items: center;
    display: flex;
    justify-content: center;
}

.rf-voice-icon {
    color: #6f3f2b;
    font-size: clamp(5rem, 15vw, 9rem);
}

.rf-book-card-body {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 1.1rem 0.25rem 0.25rem;
}

.rf-book-card h3 {
    font-size: clamp(1.65rem, 2.8vw, 2.35rem);
    margin: 0;
}

.rf-lifecycle-pill {
    align-self: flex-start;
    background: #ecf8ee;
    border: 1px solid rgba(34, 85, 45, 0.2);
    border-radius: 999px;
    color: #2d6533;
    font-size: 0.76rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    margin-top: 0.75rem;
    padding: 0.45rem 0.7rem;
    text-transform: uppercase;
}

.rf-book-status-copy {
    color: #765548;
    line-height: 1.5;
    margin: 0.65rem 0 0;
}

.rf-meta-list {
    display: grid;
    gap: 0.45rem;
    margin: 1rem 0 0;
}

.rf-meta-list div {
    display: grid;
    gap: 0.6rem;
    grid-template-columns: 72px minmax(0, 1fr);
}

.rf-meta-list dt {
    color: #9d735c;
    font-size: 0.85rem;
    font-weight: 800;
    margin: 0;
}

.rf-meta-list dd {
    color: #3a2318;
    margin: 0;
    min-width: 0;
    overflow-wrap: anywhere;
}

.rf-action-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    margin-top: 1.25rem;
}

.rf-voice-preview {
    margin-top: 1rem;
    max-width: 100%;
    width: 100%;
}

.rf-narration-manager {
    background: #fffaf3;
    border: 1px solid rgba(112, 66, 38, 0.12);
    border-radius: 18px;
    margin-top: 1rem;
    padding: 0.85rem;
}

.rf-narration-manager summary {
    align-items: center;
    color: #4e2f22;
    cursor: pointer;
    display: flex;
    font-weight: 800;
    gap: 0.75rem;
    justify-content: space-between;
}

.rf-narration-summary-meta {
    color: #8b6a58;
    font-size: 0.82rem;
    font-weight: 700;
}

.rf-narration-error,
.rf-narration-empty,
.rf-narrator-note {
    color: #765548;
    line-height: 1.45;
    margin: 0.65rem 0 0;
}

.rf-narration-error {
    color: #8a2f23;
}

.rf-narration-status {
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 800;
    margin: 0.75rem 0 0;
    padding: 0.6rem 0.75rem;
}

.rf-narration-status.is-success {
    background: #eef8ed;
    color: #2d6533;
}

.rf-narration-status.is-error {
    background: #fff1ee;
    color: #8a2f23;
}

.rf-add-narrator-form {
    background: rgba(255, 255, 255, 0.72);
    border: 1px dashed rgba(112, 66, 38, 0.22);
    border-radius: 16px;
    display: grid;
    gap: 0.75rem;
    margin-top: 0.85rem;
    padding: 0.85rem;
}

.rf-add-narrator-grid {
    display: grid;
    gap: 0.65rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.rf-add-narrator-form label {
    color: #765548;
    display: grid;
    font-size: 0.82rem;
    font-weight: 800;
    gap: 0.35rem;
}

.rf-add-narrator-form input,
.rf-add-narrator-form select {
    background: #ffffff;
    border: 1px solid rgba(112, 66, 38, 0.18);
    border-radius: 12px;
    color: #3a2318;
    min-height: 38px;
    padding: 0.45rem 0.6rem;
    width: 100%;
}

.rf-add-narrator-help {
    color: #8b6a58;
    font-size: 0.86rem;
    line-height: 1.45;
    margin: 0;
}

.rf-add-narrator-provider-menu,
.rf-add-narrator-voice-menu,
.rf-add-narrator-provider-menu .rf-open-book-dropdown,
.rf-add-narrator-voice-menu .rf-open-book-dropdown,
.rf-add-narrator-provider-menu .rf-library-filter-panel,
.rf-add-narrator-voice-menu .rf-library-filter-panel {
    width: 100%;
}

.rf-add-narrator-provider-pill,
.rf-add-narrator-voice-pill {
    justify-content: space-between;
    width: 100%;
}

.rf-narrator-list {
    display: grid;
    gap: 0.75rem;
    margin-top: 0.85rem;
}

.rf-narrator-card {
    background: rgba(255, 255, 255, 0.84);
    border: 1px solid rgba(112, 66, 38, 0.12);
    border-radius: 16px;
    display: grid;
    gap: 0.75rem;
    padding: 0.85rem;
}

.rf-narrator-card.is-default {
    background: #fff7ec;
}

.rf-narrator-card.is-disabled {
    opacity: 0.76;
}

.rf-narrator-badges,
.rf-narrator-status-row,
.rf-narrator-actions {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.rf-narrator-badges {
    justify-content: flex-end;
}

.rf-disabled-pill,
.rf-default-pill,
.rf-generating-pill {
    border-radius: 999px;
    flex: 0 0 auto;
    font-size: 0.72rem !important;
    font-weight: 800;
    letter-spacing: 0.06em;
    padding: 0.35rem 0.6rem;
    text-transform: uppercase;
}

.rf-disabled-pill {
    background: #f3e4dc;
    color: #765548 !important;
}

.rf-default-pill {
    background: #4e2f22;
    color: #fff9ef !important;
}

.rf-generating-pill {
    align-items: center;
    background: #f4dfc5;
    color: #6b3f24 !important;
    display: inline-flex;
    gap: 0.4rem;
    white-space: nowrap;
}

.rf-generating-spinner {
    animation: rf-dashboard-spinner-rotate 0.8s linear infinite;
    border: 0.14rem solid rgba(107, 63, 36, 0.2);
    border-radius: 999px;
    border-right-color: #6b3f24;
    display: inline-block;
    flex: 0 0 auto;
    height: 0.9rem;
    width: 0.9rem;
}

@keyframes rf-dashboard-spinner-rotate {
    to {
        transform: rotate(360deg);
    }
}

.rf-narrator-card-header {
    align-items: center;
    display: flex;
    gap: 0.75rem;
    justify-content: space-between;
}

.rf-narrator-card-header strong {
    color: #3a2318;
    display: block;
    font-family: var(--rf-heading-font, Georgia, 'Times New Roman', serif);
    font-size: 1.1rem;
}

.rf-narrator-card-header span {
    color: #8b6a58;
    display: block;
    font-size: 0.82rem;
    overflow-wrap: anywhere;
}

.rf-narrator-form {
    align-items: end;
    display: grid;
    gap: 0.65rem;
    grid-template-columns: minmax(0, 1fr) auto;
    margin: 0;
}

.rf-narrator-form label {
    color: #765548;
    display: grid;
    font-size: 0.82rem;
    font-weight: 800;
    gap: 0.35rem;
}

.rf-narrator-form input {
    background: #ffffff;
    border: 1px solid rgba(112, 66, 38, 0.18);
    border-radius: 12px;
    color: #3a2318;
    min-height: 38px;
    padding: 0.45rem 0.6rem;
    width: 100%;
}

.rf-narrator-regenerate-button {
    min-width: 42px;
    padding-left: 0.75rem;
    padding-right: 0.75rem;
}

@media (max-width: 620px) {
    .rf-narrator-form,
    .rf-add-narrator-grid {
        grid-template-columns: 1fr;
    }
}

.rf-child-library-list {
    display: grid;
    gap: 1rem;
}

.rf-child-library-card {
    align-items: start;
    border-radius: 24px;
    display: grid;
    gap: 1.25rem;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 1.25fr);
    padding: 1.25rem;
}

.rf-child-library-card h3 {
    font-size: clamp(1.6rem, 2.8vw, 2.25rem);
    margin: 0;
}

.rf-child-library-actions {
    display: grid;
    gap: 0.8rem;
}

.rf-child-library-link {
    align-items: end;
    display: grid;
    gap: 0.55rem;
    grid-template-columns: minmax(0, 1fr) auto auto auto;
}

.rf-child-library-link label {
    color: #8b6a58;
    display: grid;
    font-size: 0.74rem;
    font-weight: 800;
    gap: 0.35rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.rf-child-library-link input {
    background: #fffaf3;
    border: 1px solid rgba(112, 66, 38, 0.14);
    border-radius: 12px;
    color: #4e2f22;
    min-height: 38px;
    padding: 0.5rem 0.7rem;
    text-transform: none;
    width: 100%;
}

.rf-library-pagination {
    align-items: center;
    display: flex;
    gap: 0.55rem;
    justify-content: flex-end;
    margin-top: 1.25rem;
}

.rf-library-page-form {
    display: contents;
}

.rf-dashboard-top-pagination .rf-library-pagination {
    margin-bottom: 1rem;
    margin-top: 0.75rem;
}

.rf-library-page-summary {
    color: #5c6f86;
    font-size: 0.88rem;
    font-weight: 800;
}

.rf-library-page-button {
    align-items: center;
    background: #eaf3ff;
    border: 1px solid rgba(66, 100, 150, 0.18);
    border-radius: 999px;
    color: #31506f;
    cursor: pointer;
    display: inline-flex;
    font-family: inherit;
    font-size: 0.78rem;
    font-weight: 800;
    justify-content: center;
    min-height: 34px;
    padding: 0.45rem 0.75rem;
    text-decoration: none;
}

.rf-library-page-button[aria-disabled="true"] {
    background: #f3f6fa;
    color: #9ba9b9;
}

.rf-empty-card {
    border-radius: 22px;
    padding: 1.2rem;
}

.rf-empty-card h3 {
    margin: 0;
}

.rf-empty-card p {
    color: #765548;
    line-height: 1.55;
    margin: 0.55rem 0 0;
}

@media (max-width: 900px) {
    .rf-dashboard-hero,
    .rf-child-library-card {
        grid-template-columns: 1fr;
    }

    .rf-section-heading {
        align-items: stretch;
        flex-direction: column;
    }
}

@media (max-width: 760px) {
    .rf-dashboard-filter-primary {
        align-items: stretch;
        grid-template-columns: 1fr;
    }

    .rf-dashboard-result-controls {
        justify-content: flex-start;
    }

    .rf-dashboard-result-controls .rf-open-book-menu-panel {
        left: 0;
        right: auto;
    }

    .rf-book-grid {
        grid-template-columns: 1fr;
    }

    .rf-child-library-link {
        grid-template-columns: 1fr 1fr;
    }

    .rf-child-library-link label {
        grid-column: 1 / -1;
    }
}

@media (max-width: 620px) {
    .rf-dashboard-page {
        padding: 1rem;
    }

    .rf-book-card {
        padding: 0.85rem;
    }

    .rf-library-pagination {
        justify-content: flex-start;
    }
}

@media (max-width: 520px) {
    .rf-dashboard-refinement-row {
        align-items: stretch;
        flex-direction: column;
    }

    .rf-dashboard-refinement-controls {
        align-items: stretch;
    }

    .rf-dashboard-refinement-row .rf-library-filter-clear {
        align-self: flex-end;
        margin-left: 0;
    }
}

@media (prefers-reduced-motion: reduce) {
    [data-dashboard-collection-region],
    .rf-button {
        transition: none;
    }
}
.rf-product-format-badge {
    align-items: center;
    background: #fff3df;
    border: 1px solid #9a5b2f;
    border-radius: 999px;
    color: #6b351d;
    display: inline-flex;
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.11em;
    line-height: 1;
    padding: 0.52rem 0.72rem;
    text-transform: uppercase;
}

.rf-digital-price-line {
    color: #4d3328;
    font-size: 0.92rem;
    font-weight: 900;
    line-height: 1.45;
    margin-top: 0.65rem;
}

.rf-hero-value-line {
    color: #38231a;
    font-size: clamp(0.95rem, 1.5vw, 1.15rem);
    font-weight: 900;
    line-height: 1.45;
    margin: 0.9rem 0 0;
}

.rf-hero-supporting-line {
    color: #563326;
    font-size: 0.92rem;
    font-weight: 800;
    margin: 0.5rem 0 0;
}

.rf-hero-format-clarification {
    color: #563f34;
    font-size: 0.86rem;
    line-height: 1.5;
    margin: 1rem 0 0;
    max-width: 44rem;
}

.rf-home-hero .rf-hero-value-line {
    color: var(--rf-cream);
    text-shadow: 0 8px 22px rgba(0, 0, 0, 0.32);
}

.rf-home-hero .rf-hero-supporting-line {
    color: #ffd8bf;
    text-shadow: 0 8px 22px rgba(0, 0, 0, 0.32);
}

.rf-home-hero .rf-hero-format-clarification {
    color: rgba(255, 248, 237, 0.9);
    text-shadow: 0 8px 22px rgba(0, 0, 0, 0.32);
}

.rf-digital-product-panel {
    background: linear-gradient(145deg, #fff9ef 0%, #ffffff 100%);
    border: 1px solid rgba(107, 53, 29, 0.2);
    border-radius: 24px;
    box-shadow: 0 18px 45px rgba(71, 43, 27, 0.08);
    margin-top: 1.4rem;
    padding: clamp(1rem, 3vw, 1.5rem);
}

.rf-digital-product-panel-heading {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.rf-digital-product-panel-heading h3 {
    color: #38231a;
    font-family: var(--rf-heading-font, Georgia, "Times New Roman", serif);
    font-size: 1.25rem;
    margin: 0;
}

.rf-digital-product-panel dl {
    display: grid;
    gap: 0;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin: 1rem 0 0;
}

.rf-digital-product-panel dl > div {
    border-top: 1px solid rgba(107, 53, 29, 0.12);
    display: grid;
    gap: 0.2rem;
    padding: 0.75rem 0;
}

.rf-digital-product-panel dl > div:nth-child(odd) {
    padding-right: 1rem;
}

.rf-digital-product-panel dt {
    color: #8b4f2d;
    font-size: 0.7rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.rf-digital-product-panel dd {
    color: #4d3328;
    line-height: 1.45;
    margin: 0;
}

.rf-digital-purchase-disclosure {
    background: #f7eadc;
    border-radius: 15px;
    color: #4d3328;
    font-size: 0.9rem;
    font-weight: 800;
    line-height: 1.5;
    margin: 0.75rem 0 0;
    padding: 0.85rem 1rem;
}

.rf-print-launch-inline {
    white-space: nowrap;
}

.rf-print-preview-media {
    overflow: hidden;
    position: relative;
}

.section-image-aside-img.rf-print-preview-media {
    position: absolute;
}

.rf-print-preview-overlay {
    background: rgba(48, 28, 21, 0.92);
    bottom: 0;
    color: #ffffff;
    font-size: 0.78rem;
    font-weight: 900;
    left: 0;
    letter-spacing: 0.02em;
    line-height: 1.35;
    padding: 0.7rem 0.8rem;
    position: absolute;
    right: 0;
    text-align: center;
}

.rf-print-not-available,
.rf-planned-price {
    color: #6e4b3b;
    font-size: 0.84rem;
    font-weight: 800;
    line-height: 1.45;
}

.rf-print-not-available {
    margin-top: 0.65rem;
    text-transform: uppercase;
}

.rf-print-interest-panel {
    align-items: center;
    background: #fff9ef;
    border: 1px solid rgba(255, 255, 255, 0.65);
    border-radius: 28px;
    color: #4d3328;
    display: grid;
    gap: clamp(1.25rem, 4vw, 3rem);
    grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
    padding: clamp(1.25rem, 4vw, 2.5rem);
    text-align: left;
}

.rf-print-interest-panel h3 {
    color: #38231a;
    font-family: var(--rf-heading-font, Georgia, "Times New Roman", serif);
    font-size: clamp(1.7rem, 3vw, 2.5rem);
    margin: 0.35rem 0 0;
}

.rf-print-interest-panel p {
    line-height: 1.55;
    margin: 0.55rem 0 0;
}

.rf-print-interest-form label {
    color: #563326;
    display: block;
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.rf-print-interest-controls {
    align-items: stretch;
    display: flex;
    gap: 0.65rem;
}

.rf-print-interest-controls input {
    background: #ffffff;
    border: 1px solid #9d7968;
    border-radius: 999px;
    color: #38231a;
    flex: 1 1 16rem;
    min-height: 3.25rem;
    padding: 0.7rem 1.1rem;
}

.rf-print-interest-controls input:focus-visible {
    border-color: #5d321f;
    box-shadow: 0 0 0 3px rgba(93, 50, 31, 0.22);
    outline: none;
}

.rf-print-interest-consent,
.rf-print-interest-status {
    color: #6e4b3b;
    font-size: 0.78rem;
}

.rf-print-interest-status.is-error {
    color: #8e3527;
    font-weight: 800;
}

@media (max-width: 760px) {
    .rf-digital-product-panel dl,
    .rf-print-interest-panel {
        grid-template-columns: 1fr;
    }

    .rf-digital-product-panel dl > div:nth-child(odd) {
        padding-right: 0;
    }

    .rf-print-interest-controls {
        align-items: stretch;
        flex-direction: column;
    }

    .rf-print-interest-controls input {
        flex-basis: auto;
        width: 100%;
    }

    .rf-hero-format-clarification,
    .rf-hero-value-line {
        max-width: 100%;
    }
}
