.elementor-38 .elementor-element.elementor-element-c22d497{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--gap:0px 0px;--row-gap:0px;--column-gap:0px;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-38 .elementor-element.elementor-element-7e19212{margin:0px 0px calc(var(--kit-widget-spacing, 0px) + 0px) 0px;padding:0px 0px 0px 0px;}.elementor-38 .elementor-element.elementor-element-9938e67{margin:0px 0px calc(var(--kit-widget-spacing, 0px) + 0px) 0px;padding:0px 0px 0px 0px;}.elementor-theme-builder-content-area{height:400px;}.elementor-location-header:before, .elementor-location-footer:before{content:"";display:table;clear:both;}/* Start custom CSS for html, class: .elementor-element-7e19212 */.rt-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1200;
  padding: 14px 0 0;
  overflow: visible;
  pointer-events: none;
}

.rt-header__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 18px;
  border: 1px solid rgba(244, 201, 218, 0.9);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow:
    0 18px 40px rgba(237, 79, 143, 0.14),
    0 8px 18px rgba(69, 44, 53, 0.06);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  pointer-events: auto;
}

.rt-header__brand {
  display: flex;
  align-items: center;
  min-width: 0;
}

.rt-header__brand img {
  width: auto;
  max-height: 54px;
}

.rt-header__nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.rt-header__nav a {
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--rt-color-text-strong);
  font: 500 14.5px/1.1 "Quicksand", sans-serif;
  letter-spacing: -0.01em;
  transition: background-color var(--rt-transition-fast), color var(--rt-transition-fast);
}

.rt-header__nav a:hover,
.rt-header__nav a.is-active {
  color: var(--rt-color-primary);
  background: rgba(255, 216, 232, 0.55);
}

.rt-header__actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.rt-header__book {
  display: inline-flex;
}

.rt-cart-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(244, 201, 218, 0.9);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.85);
  box-shadow: var(--rt-shadow-card);
  color: var(--rt-color-primary);
}

.rt-cart-btn svg {
  width: 20px;
  height: 20px;
}

.rt-mobile-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(244, 201, 218, 0.9);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.85);
  color: var(--rt-color-primary);
}

.rt-mobile-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 3px auto;
  background: currentColor;
  border-radius: 2px;
  transition: transform 180ms ease, opacity 180ms ease;
}

.rt-mobile-toggle.is-open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.rt-mobile-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.rt-mobile-toggle.is-open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.rt-mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(69, 44, 53, 0.16);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  z-index: 25;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 240ms ease-out, visibility 0s linear 240ms;
}

.rt-mobile-overlay.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: opacity 240ms ease-out, visibility 0s linear 0s;
}

.rt-mobile-overlay.is-closing {
  opacity: 0;
  visibility: visible;
  pointer-events: none;
  transition: opacity 240ms ease-out, visibility 0s linear 0s;
}

.rt-mobile-panel {
  position: fixed;
  top: 0;
  right: 0;
  width: min(420px, 100vw);
  height: 100vh;
  padding: 0;
  border-left: 1px solid rgba(244, 201, 218, 0.9);
  background: linear-gradient(180deg, rgba(255, 250, 252, 0.96) 0%, rgba(255, 241, 246, 0.96) 100%);
  box-shadow: -18px 0 48px rgba(69, 44, 53, 0.12);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  z-index: 35;
  transform: translateX(100%);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  overflow-y: auto;
  will-change: transform, opacity;
  transition:
    transform 320ms ease-out,
    opacity 320ms ease-out,
    visibility 0s linear 320ms;
}

.rt-mobile-panel.is-open {
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition:
    transform 320ms ease-out,
    opacity 320ms ease-out,
    visibility 0s linear 0s;
}

.rt-mobile-panel.is-closing {
  transform: translateX(100%);
  opacity: 0;
  visibility: visible;
  pointer-events: none;
  transition:
    transform 320ms ease-out,
    opacity 320ms ease-out,
    visibility 0s linear 0s;
}

.rt-mobile-panel__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
  padding: 22px 22px 0;
}

.rt-mobile-panel__brand img {
  width: auto;
  max-height: 46px;
}

.rt-mobile-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(244, 201, 218, 0.9);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.8);
  color: var(--rt-color-primary);
  box-shadow: var(--rt-shadow-card);
  font: 500 24px/1 "Quicksand", sans-serif;
}

.rt-mobile-nav {
  display: grid;
  gap: 12px;
  padding: 0 22px;
}

.rt-mobile-nav a {
  display: block;
  padding: 16px 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.8);
  color: var(--rt-color-text-strong);
  font: 500 16.5px/1.18 "Quicksand", sans-serif;
  letter-spacing: -0.01em;
  border: 1px solid rgba(244, 201, 218, 0.8);
  box-shadow: var(--rt-shadow-card);
}

.rt-mobile-nav a:hover,
.rt-mobile-nav a.is-active {
  color: var(--rt-color-primary);
  background: rgba(255, 216, 232, 0.5);
}

.rt-mobile-feature {
  margin-top: 20px;
  margin-inline: 22px;
  padding: 22px;
}

.rt-mobile-feature__title,
.rt-mobile-feature h3.rt-mobile-feature__title {
  display: block;
  margin: 0 0 8px !important;
  color: var(--rt-color-text-strong);
  font-family: "Quicksand", sans-serif !important;
  font-weight: 700 !important;
  font-size: 22px !important;
  line-height: 1.1 !important;
  letter-spacing: -0.02em !important;
  white-space: normal !important;
  word-break: normal !important;
  overflow-wrap: break-word !important;
}

.rt-mobile-feature__text {
  margin: 0 0 16px;
  color: var(--rt-color-text-soft);
  font: 400 15px/1.6 "Open Sans", sans-serif;
}

.rt-mobile-panel__actions {
  display: grid;
  gap: 12px;
  margin-top: 18px;
  padding: 0 22px 22px;
}

.rt-mobile-panel__actions .rt-btn {
  width: 100%;
}

@media (max-width: 1024px) {
  .rt-header__nav {
    display: none;
  }

  .rt-header__book {
    display: none !important;
  }

  .rt-mobile-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }
}

@media (min-width: 1025px) {
  .rt-mobile-toggle,
  .rt-mobile-overlay,
  .rt-mobile-panel {
    display: none !important;
  }
}

@media (max-width: 767px) {
  .rt-header {
    padding-top: 10px;
  }

  .rt-header__actions {
    gap: 8px;
  }

  .rt-mobile-panel {
    width: min(380px, 100vw);
  }

  .rt-mobile-feature__title,
  .rt-mobile-feature h3.rt-mobile-feature__title {
    font-size: 18px !important;
    line-height: 1.22 !important;
  }

  .rt-mobile-feature__text {
    font-size: 14px;
    line-height: 1.55;
  }

  .rt-mobile-panel__brand img {
    max-height: 40px;
  }
}

@media (min-width: 768px) and (max-width: 1024px) {
  .rt-mobile-feature__title,
  .rt-mobile-feature h3.rt-mobile-feature__title {
    font-size: 20px !important;
    line-height: 1.16 !important;
  }

  .rt-mobile-feature__text {
    font-size: 14px;
    line-height: 1.6;
  }
}/* End custom CSS */
/* Start custom CSS for container, class: .elementor-element-c22d497 */@font-face {
  font-family: "Great Vibes";
  src: url("../fonts/great-vibes/GreatVibes-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --rt-color-primary: #ed4f8f;
  --rt-color-primary-soft: #ffd8e8;
  --rt-color-surface: #fff7fb;
  --rt-color-surface-warm: #fff1f6;
  --rt-color-text-strong: #452c35;
  --rt-color-text-soft: #7a5a66;
  --rt-color-white: #ffffff;
  --rt-color-accent-gold: #d8b36a;
  --rt-color-line-soft: #f4c9da;
  --rt-font-script: "Great Vibes", cursive;
  --rt-shadow-soft: 0 18px 45px rgba(237, 79, 143, 0.14);
  --rt-shadow-card: 0 12px 28px rgba(69, 44, 53, 0.08);
  --rt-shadow-hover: 0 18px 35px rgba(237, 79, 143, 0.2);
  --rt-radius-card: 28px;
  --rt-radius-button: 999px;
  --rt-radius-pill: 999px;
  --rt-content-width: 1200px;
  --rt-wide-width: 1320px;
  --rt-space-2xs: 8px;
  --rt-space-xs: 12px;
  --rt-space-sm: 16px;
  --rt-space-md: 24px;
  --rt-space-lg: 32px;
  --rt-space-xl: 48px;
  --rt-space-2xl: 64px;
  --rt-space-3xl: 88px;
  --rt-transition-fast: 180ms ease;
  --rt-transition-base: 260ms ease;
}

/* Rock N Tiara soft body typography
   Applies to reusable HTML sections without editing every block.
   Buttons, nav items, badges, and hero script titles keep their custom styles. */
:where([class^="rta-"], [class*=" rta-"]) :where(p, li, small),
:where([class^="rta-"], [class*=" rta-"]) :where([class*="__lead"], [class*="__text"], [class*="__copy"], [class*="__desc"], [class*="__description"], [class*="__subtitle"], [class*="__note"]),
:where([class^="rta-"], [class*=" rta-"]) :where([class*="__item"], [class*="__card"], [class*="__tile"], [class*="__panel"]) :where(p, span, li) {
  font-family: "Quicksand", system-ui, sans-serif !important;
  font-weight: 500 !important;
  line-height: 1.62 !important;
  letter-spacing: -0.01em;
}

:where([class^="rta-"], [class*=" rta-"]) :where(h2, h3, h4, [class*="__title"], [class*="__name"]) {
  font-family: "Quicksand", system-ui, sans-serif;
  font-weight: 700;
  letter-spacing: -0.035em;
}

:where([class^="rta-"], [class*=" rta-"]) :where(.rt-script-font, .rt-hero-script, [class*="hero__title"], [class*="hero__accent"]) {
  font-family: var(--rt-font-script, "Great Vibes", "GreatVibes", cursive) !important;
  font-weight: 400 !important;
}

:where([class^="rta-"], [class*=" rta-"]) :where([class*="__head"] h2, .rta-home-final h2, .rta-parties-final h2, .rta-book-help h2, .rta-book-notice h2, .rta-book-details__copy h2, .rta-parties-faq h2) {
  font-family: var(--rt-font-script, "Great Vibes", "GreatVibes", cursive) !important;
  font-weight: 400 !important;
  letter-spacing: 0 !important;
  line-height: 0.92 !important;
  color: var(--rt-color-primary);
}

html {
  scroll-behavior: smooth;
  min-height: 100%;
}

body {
  margin: 0;
  color: var(--rt-color-text-strong);
  background:
    radial-gradient(circle at top left, rgba(255, 216, 232, 0.9), transparent 28%),
    radial-gradient(circle at top right, rgba(255, 232, 241, 0.9), transparent 34%),
    linear-gradient(180deg, #fffafb 0%, var(--rt-color-surface) 100%);
  font-family: "Open Sans", sans-serif;
  overflow-x: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

body.rt-menu-open {
  overflow-y: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.rt-shell {
  width: min(100% - 32px, var(--rt-content-width));
  margin-inline: auto;
  position: relative;
  overflow: visible;
}

.rt-shell--wide {
  width: min(100% - 32px, var(--rt-wide-width));
  margin-inline: auto;
}

.rt-section {
  padding: var(--rt-space-3xl) 0;
}

main,
.site-main,
.elementor-location-single,
.elementor-location-archive,
[data-elementor-type="wp-page"],
[data-elementor-type="archive"],
[data-elementor-type="single-page"] {
  width: 100%;
  flex: 1 0 auto;
}

.rt-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: var(--rt-radius-pill);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(244, 201, 218, 0.95);
  color: var(--rt-color-primary);
  font: 700 14px/1 "Quicksand", sans-serif;
  box-shadow: var(--rt-shadow-card);
}

.rt-script {
  font-family: "Homemade Apple", cursive;
}

.rt-title-xl,
.rt-title-lg,
.rt-title-md {
  margin: 0;
  color: var(--rt-color-text-strong);
  font-family: "Quicksand", sans-serif;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.rt-title-xl {
  font-size: clamp(38px, 6vw, 64px);
  line-height: 1.02;
}

.rt-title-lg {
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.08;
}

.rt-title-md {
  font-size: clamp(24px, 2.8vw, 30px);
  line-height: 1.14;
}

.rt-text-lg,
.rt-text-md,
.rt-text-sm {
  margin: 0;
  color: var(--rt-color-text-soft);
}

.rt-text-lg {
  font-size: 18px;
  line-height: 1.7;
}

.rt-text-md {
  font-size: 16px;
  line-height: 1.65;
}

.rt-text-sm {
  font-size: 14px;
  line-height: 1.5;
}

.rt-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: var(--rt-radius-button);
  font: 700 16px/1 "Quicksand", sans-serif;
  transition:
    transform var(--rt-transition-fast),
    box-shadow var(--rt-transition-fast),
    background-color var(--rt-transition-fast),
    border-color var(--rt-transition-fast),
    color var(--rt-transition-fast);
  cursor: pointer;
}

.rt-btn:hover {
  transform: translateY(-2px);
}

.rt-btn--primary {
  color: var(--rt-color-white);
  background: linear-gradient(135deg, #ed4f8f 0%, #f26aa2 100%);
  box-shadow: var(--rt-shadow-soft);
}

.rt-btn--primary:hover {
  box-shadow: var(--rt-shadow-hover);
}

.rt-btn--ghost {
  color: var(--rt-color-primary);
  background: rgba(255, 255, 255, 0.78);
  border-color: rgba(237, 79, 143, 0.18);
  box-shadow: var(--rt-shadow-card);
}

.rt-card {
  border: 1px solid rgba(244, 201, 218, 0.85);
  border-radius: var(--rt-radius-card);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: var(--rt-shadow-card);
  backdrop-filter: blur(10px);
}

.rt-stack-sm > * + * {
  margin-top: var(--rt-space-sm);
}

.rt-stack-md > * + * {
  margin-top: var(--rt-space-md);
}

.rt-stack-lg > * + * {
  margin-top: var(--rt-space-lg);
}

.rt-fade-up {
  animation: rtFadeUp 700ms ease both;
}

@keyframes rtFadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.rt-header {
  position: relative;
  z-index: 20;
  padding: 18px 0;
  overflow: visible;
}

.rt-header__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 18px;
  border: 1px solid rgba(244, 201, 218, 0.9);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: var(--rt-shadow-card);
  backdrop-filter: blur(12px);
}

.rt-header__brand {
  display: flex;
  align-items: center;
  min-width: 0;
}

.rt-header__brand img {
  width: auto;
  max-height: 54px;
}

.rt-header__nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.rt-header__nav a {
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--rt-color-text-strong);
  font: 500 14.5px/1.1 "Quicksand", sans-serif;
  letter-spacing: -0.01em;
  transition: background-color var(--rt-transition-fast), color var(--rt-transition-fast);
}

.rt-header__nav a:hover,
.rt-header__nav a.is-active {
  color: var(--rt-color-primary);
  background: rgba(255, 216, 232, 0.55);
}

.rt-header__actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.rt-header__book {
  display: inline-flex;
}

.rt-cart-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(244, 201, 218, 0.9);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.85);
  box-shadow: var(--rt-shadow-card);
  color: var(--rt-color-primary);
}

.rt-cart-btn svg {
  width: 20px;
  height: 20px;
}

.rt-mobile-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(244, 201, 218, 0.9);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.85);
  color: var(--rt-color-primary);
}

.rt-mobile-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 3px auto;
  background: currentColor;
  border-radius: 2px;
  transition: transform var(--rt-transition-fast), opacity var(--rt-transition-fast);
}

.rt-mobile-toggle.is-open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.rt-mobile-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.rt-mobile-toggle.is-open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.rt-mobile-panel {
  position: fixed;
  top: 0;
  right: 0;
  width: min(420px, 100vw);
  height: 100vh;
  padding: 0;
  border-left: 1px solid rgba(244, 201, 218, 0.9);
  background:
    linear-gradient(180deg, rgba(255, 250, 252, 0.96) 0%, rgba(255, 241, 246, 0.96) 100%);
  box-shadow: -18px 0 48px rgba(69, 44, 53, 0.12);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  z-index: 35;
  transform: translateX(calc(100% + 32px));
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    transform 320ms ease-out,
    opacity var(--rt-transition-base),
    visibility 0s linear var(--rt-transition-base);
  overflow-y: auto;
  will-change: transform, opacity;
}

.rt-mobile-panel.is-open {
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition:
    transform 320ms ease-out,
    opacity var(--rt-transition-base),
    visibility 0s linear 0s;
}

.rt-mobile-panel.is-closing {
  transform: translateX(calc(100% + 32px));
  opacity: 0;
  visibility: visible;
  pointer-events: none;
}

.rt-mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(69, 44, 53, 0.16);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  z-index: 25;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 240ms ease-out,
    visibility 0s linear var(--rt-transition-base);
}

.rt-mobile-overlay.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition:
    opacity 240ms ease-out,
    visibility 0s linear 0s;
}

.rt-mobile-overlay.is-closing {
  opacity: 0;
  visibility: visible;
  pointer-events: none;
}

.rt-mobile-panel__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
  padding: 22px 22px 0;
}

.rt-mobile-panel__brand img {
  width: auto;
  max-height: 46px;
}

.rt-mobile-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(244, 201, 218, 0.9);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.8);
  color: var(--rt-color-primary);
  box-shadow: var(--rt-shadow-card);
  font: 500 24px/1 "Quicksand", sans-serif;
}

.rt-mobile-nav {
  display: grid;
  gap: 12px;
  padding: 0 22px;
}

.rt-mobile-nav a {
  display: block;
  padding: 16px 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.8);
  color: var(--rt-color-secondary);
  font: 500 16.5px/1.18 "Quicksand", sans-serif;
  letter-spacing: -0.01em;
  border: 1px solid rgba(244, 201, 218, 0.8);
  box-shadow: var(--rt-shadow-card);
}

.rt-mobile-nav a:hover,
.rt-mobile-nav a.is-active {
  color: var(--rt-color-primary);
  background: rgba(255, 216, 232, 0.5);
}

.rt-mobile-feature {
  margin-top: 20px;
  margin-inline: 22px;
  padding: 22px;
}

.rt-mobile-feature__title {
  margin: 0 0 8px;
  color: var(--rt-color-secondary);
  font: 700 22px/1.1 "Quicksand", sans-serif;
  letter-spacing: -0.02em;
  text-wrap: balance;
}

.rt-mobile-feature h3.rt-mobile-feature__title {
  display: block;
  margin: 0 0 8px !important;
  font-family: "Quicksand", sans-serif !important;
  font-weight: 700 !important;
  font-size: 22px !important;
  line-height: 1.1 !important;
  letter-spacing: -0.02em !important;
  white-space: normal !important;
  word-break: normal !important;
  overflow-wrap: break-word !important;
}

.rt-mobile-feature__text {
  margin: 0 0 16px;
  color: var(--rt-color-text-soft);
  font: 400 15px/1.6 "Open Sans", sans-serif;
}

.rt-mobile-panel__actions {
  display: grid;
  gap: 12px;
  margin-top: 18px;
  padding: 0 22px 22px;
}

.rt-mobile-panel__actions .rt-btn {
  width: 100%;
}

@media (max-width: 1024px) {
  .rt-header__nav {
    display: none;
  }

  .rt-header__book {
    display: none;
  }

  .rt-mobile-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }
}

@media (min-width: 1025px) {
  .rt-mobile-toggle,
  .rt-mobile-overlay,
  .rt-mobile-panel {
    display: none !important;
  }
}

@media (max-width: 767px) {
  .rt-shell,
  .rt-shell--wide {
    width: min(100% - 20px, var(--rt-content-width));
  }

  .rt-section {
    padding: 48px 0;
  }

  .rt-header__bar {
    padding: 12px 14px;
  }

  .rt-header__brand img {
    max-height: 44px;
  }

  .rt-header__actions {
    gap: 8px;
  }

  .rt-mobile-panel {
    width: min(380px, 100vw);
  }

  .rt-mobile-feature__title,
  .rt-mobile-feature h3.rt-mobile-feature__title {
    font-size: 18px !important;
    line-height: 1.22 !important;
    letter-spacing: -0.01em !important;
  }

  .rt-mobile-feature__text {
    font-size: 14px;
    line-height: 1.55;
  }

  .rt-btn {
    min-height: 48px;
    padding: 0 20px;
    font-size: 15px;
  }

  .rt-mobile-panel__brand img {
    max-height: 40px;
  }
}

@media (min-width: 768px) and (max-width: 1024px) {
  .rt-mobile-feature__title,
  .rt-mobile-feature h3.rt-mobile-feature__title {
    font-size: 20px !important;
    line-height: 1.16 !important;
  }

  .rt-mobile-feature__text {
    font-size: 14px;
    line-height: 1.6;
  }
}/* End custom CSS */