/* ===================================================================
   RELIVITAL + MILOZOL — Shared Style Sheet
   Desktop-first, BEM, CSS custom properties
   =================================================================== */

/* ─── Google Fonts ─── */
@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;600;700&family=Manrope:wght@400;500;600;700;800&family=Source+Serif+4:wght@400;600&family=Inter:wght@400;500;600;700;800&display=swap");

/* ─── Reset ─── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html,
body {
  overflow-x: hidden;
  scroll-behavior: smooth;
}
body.rl-scroll-lock {
  overflow: hidden;
}

/* ─── Fullscreen image lightbox ─── */
.rl-lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(14, 42, 71, 0.92);
  align-items: center;
  justify-content: center;
  padding: 40px;
}
.rl-lightbox.is-open {
  display: flex;
}

.rl-lightbox__img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}
.rl-lightbox__close {
  position: absolute;
  top: 20px;
  right: 24px;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.15);
  color: var(--rl-white);
  font-size: 28px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
}
.rl-lightbox__close:hover {
  background: rgba(255, 255, 255, 0.3);
}
@media screen and (max-width: 768px) {
  .payment-tabs {
    flex-direction: column;
  }
  .rl-lightbox {
    padding: 20px;
  }
  .rl-lightbox__close {
    top: 12px;
    right: 12px;
    width: 38px;
    height: 38px;
    font-size: 22px;
  }
}
img {
  max-width: 100%;
  display: block;
}
a {
  text-decoration: none;
  color: inherit;
}
button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}
ul,
ol {
  list-style: none;
}

/* ─────────────────────────────────────────────
   RELIVITAL Design Tokens
   ───────────────────────────────────────────── */
:root {
  /* Brand colours */
  --rl-primary: #0e2a47;
  --rl-accent: #1f8a99;
  --rl-accent-dark: #0f6b78;
  --rl-accent-light: #3fb6c0;
  --rl-gold: #d9a441;

  /* Backgrounds */
  --rl-bg: #fbf8f3;
  --rl-bg-section: #faf7f3;
  --rl-bg-blue: #e9f5f6;
  --rl-bg-card: #f7f3ec;
  --rl-bg-dark: #0e2a47;
  --rl-bg-footer: #2c336e;
  --rl-bg-footer-m: #0e2a47;
  --rl-white: #ffffff;

  /* Text */
  --rl-text: #2a2f36;
  --rl-text-muted: #545c66;
  --rl-text-light: #8b95a0;
  --rl-text-blue: #0b173e;
  --rl-text-blue2: #1a1a2e;

  /* Gradients */
  --rl-grad-hero: linear-gradient(180deg, #e9f5f6 0%, #fbf8f3 72%);
  --rl-grad-cta: linear-gradient(180deg, #1f8a99 0%, #0f6b78 100%);
  --rl-grad-dark: linear-gradient(180deg, #0e2a47 0%, #12345b 100%);
  --rl-grad-main: linear-gradient(180deg, #fbf8f3 0%, #e9f5f6 100%);

  /* Shadows */
  --rl-shadow-btn: 0px 10px 24px 0px rgba(15, 107, 120, 0.32);
  --rl-shadow-card: 0px 4px 16px 0px rgba(14, 42, 71, 0.1);

  /* Typography */
  --rl-font-display: "Cormorant Garamond", serif;
  --rl-font-body: "Manrope", sans-serif;
  --rl-font-serif: "Source Serif 4", serif;

  /* Layout */
  --rl-container: 1180px;
  --rl-header-h: 74px;
  --rl-header-px: 130px;

  /* ─── MILOZOL Design Tokens ─── */
  --ml-accent: #2ec4b6;
  --ml-accent-dark: #1a9f93;
  --ml-dark: #0e2a47;
  --ml-red: #dc2626;
  --ml-text: #1f2937;
  --ml-text2: #0f172a;
  --ml-text-muted: #64748b;
  --ml-text-light: #94a3b8;
  --ml-bg: #ffffff;
  --ml-bg-light: #f7fafc;
  --ml-bg-teal: #ecfefb;
  --ml-bg-red: #fef3f2;
  --ml-font: "Inter", sans-serif;
  --ml-font-serif: "Source Serif 4", serif;
  --ml-container: 720px;

  /* ─── QUIZ (Skin Test) Design Tokens ─── */
  --qz-navy: #0e2a47;
  --qz-navy-card: #12365a;
  --qz-ink-soft: #3c4a5c;
  --qz-line: #e6ddcf;
  --qz-gold: #e0a93e;
  --qz-gold-hover: #eab648;
  --qz-gold-ink: #3a2c0d;
  --qz-teal: #2f9aa6;
  --qz-teal-dark: #26808b;
  --qz-teal-line: #40b6c0;
  --qz-red: #d7563f;
  --qz-muted: #9fb2c6;
  --qz-green: #5aa15a;
  --qz-amber: #d9a441;
  --qz-orange: #d87b39;
  --qz-deep-red: #c0503f;
  --qz-shadow: 0 24px 60px rgba(14, 42, 71, 0.18);
  --qz-radius: 26px;

  /* ─── CHECKOUT (payment-methods.html) — exact Figma colours ─── */
  --pay-bg: #e9f5f6;
  --pay-navy: #1a307e;
  --pay-navy-text: #0b173e;
  --pay-border: #eaecf0;
  --pay-field-border: #d0d5df;
  --pay-field-bg: #fbfcfd;
  --pay-muted: #6f7787;
  --pay-orange: #eb5930;

  /* ─── Additional shared tokens (deduped from repeated literals) ─── */
  --rl-text-slate: #5c6873;
  --rl-border-subtle: #e2e8f0;
  --rl-text-dim: #9fb6c9;
  --rl-text-gray: #6b7280;
  --rl-border-faint: #e5e7eb;
  --rl-success-bg: #e4f3ec;
  --rl-success-text: #1d7a4f;
  --rl-border-tan: #e3ded4;
  --rl-text-cool: #9aa4ad;
  --rl-danger: #e03232;
  --rl-icon-delivery: #0e6ac9;
  --rl-icon-guarantee: #ee8e06;
  --rl-icon-secure: #8bbd00;
}

/* ─── Utility ─── */
.desktop-only {
  display: block;
}
.mobile-only {
  display: none;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

/* ─────────────────────────────────────────────
   RELIVITAL — Global
   ───────────────────────────────────────────── */
.rl-body {
  font-family: var(--rl-font-body);
  background: var(--rl-bg);
  color: var(--rl-text);
  font-size: 16px;
  line-height: 1.5;
}

.rl-container {
  max-width: var(--rl-container);
  margin: 0 auto;
  padding: 0 15px;
}

/* ─── HEADER ─── */
.rl-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--rl-bg);
  height: var(--rl-header-h);
  padding: 0 var(--rl-header-px);
  border-bottom: 1px solid rgba(227, 222, 212, 0.6);
}

.rl-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding: 13px 22px;
  max-width: calc(var(--rl-container) + 44px);
  margin: 0 auto;
}

.rl-nav__logo-link {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  text-decoration: none;
}

.rl-nav__logo {
  font-family: var(--rl-font-display);
  font-weight: 700;
  font-size: 24px;
  line-height: 1.21;
  letter-spacing: 2px;
  color: var(--rl-primary);
  display: block;
}

.rl-nav__tagline {
  font-family: var(--rl-font-body);
  font-weight: 400;
  font-size: 9.6px;
  line-height: 1.6;
  letter-spacing: 3.07px;
  color: var(--rl-accent);
  text-transform: uppercase;
  display: block;
}

.rl-nav__links {
  display: flex;
  align-items: center;
  gap: 24px;
}

.rl-nav__link {
  font-family: var(--rl-font-body);
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  color: var(--rl-text);
  transition: color 0.2s;
}
.rl-nav__link:hover {
  color: var(--rl-accent);
}
.rl-nav__link--active {
  color: var(--rl-accent);
}

.rl-nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 0;
  padding: 10px 20px 11px;
  background: var(--rl-grad-cta);
  border-radius: 999px;
  box-shadow: var(--rl-shadow-btn);
  font-family: var(--rl-font-body);
  font-weight: 700;
  font-size: 18px;
  line-height: 1.37;
  color: var(--rl-white);
  transition: opacity 0.2s;
}
.rl-nav__cta:hover {
  opacity: 0.9;
}

.rl-nav__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  gap: 7px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
.rl-nav__burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #147380;
  border-radius: 2px;
  transition:
    transform 0.3s,
    opacity 0.3s;
}
.rl-nav__burger.is-active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}
.rl-nav__burger.is-active span:nth-child(2) {
  opacity: 0;
}
.rl-nav__burger.is-active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/* Mobile menu drawer */
.rl-nav__mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  max-height: 100vh;
  background: var(--rl-bg);
  flex-direction: column;
  z-index: 101;
  box-shadow: 0 8px 24px rgba(14, 42, 71, 0.12);
  overflow-y: auto;
}
.rl-nav__mobile-menu.is-open {
  display: flex;
}

.rl-mobile-drawer__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #f5f0eb;
  padding: 14px 20px;
}
.rl-mobile-drawer__close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  background: none;
  border: none;
  cursor: pointer;
}
.rl-mobile-drawer__close svg {
  width: 20px;
  height: 20px;
}

.rl-mobile-drawer__divider {
  height: 1px;
  background: #e3ddd4;
}

.rl-mobile-drawer__nav {
  background: #f5f0eb;
  display: flex;
  flex-direction: column;
}
.rl-mobile-drawer__item {
  display: flex;
  align-items: center;
  gap: 21px;
  min-height: 56px;
  padding: 0 20px;
  border-bottom: 1px solid #e3ddd4;
}
.rl-mobile-drawer__item:last-child {
  border-bottom: none;
}
.rl-mobile-drawer__accent {
  width: 3px;
  height: 24px;
  border-radius: 2px;
  background: transparent;
  flex-shrink: 0;
}
.rl-mobile-drawer__item--active .rl-mobile-drawer__accent {
  background: #1b4f72;
}
.rl-mobile-drawer__item .rl-nav__link {
  font-size: 16px;
}

.rl-mobile-drawer__footer {
  background: #f5f0eb;
  padding: 20px;
}
.rl-mobile-drawer__footer .rl-nav__cta {
  width: 100%;
  justify-content: center;
}

/* ─── BUTTONS ─── */
.rl-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  background: var(--rl-grad-cta);
  border-radius: 999px;
  box-shadow: var(--rl-shadow-btn);
  font-family: var(--rl-font-body);
  font-weight: 700;
  font-size: 18px;
  line-height: 1.37;
  color: var(--rl-white);
  transition:
    opacity 0.2s,
    transform 0.2s;
  cursor: pointer;
}
.rl-btn:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}
.rl-btn--sm {
  font-size: 16px;
  padding: 10px 24px;
}
.rl-btn--outline {
  background: transparent;
  border: 2px solid var(--rl-accent);
  color: var(--rl-accent);
  box-shadow: none;
}
.rl-btn--white {
  background: var(--rl-white);
  color: var(--rl-primary);
  box-shadow: none;
}

/* ─── SECTION LABEL ─── */
.rl-section-label {
  font-family: var(--rl-font-body);
  font-weight: 700;
  font-size: 13px;
  line-height: 1.54;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--rl-accent);
}

/* ─── HERO SECTION ─── */
.rl-hero {
  background: var(--rl-grad-hero);
  padding: 40px 0;
}
.rl-hero__container {
  max-width: var(--rl-container);
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.rl-hero__content {
  max-width: 530px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.rl-hero__title {
  font-family: var(--rl-font-display);
  font-weight: 700;
  font-size: 44px;
  line-height: 1.21;
  color: var(--rl-primary);
}
.rl-hero__desc {
  font-family: var(--rl-font-body);
  font-weight: 400;
  font-size: 20px;
  line-height: 1.37;
  color: var(--rl-primary);
}
.rl-hero__features {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.rl-hero__feature {
  display: flex;
  align-items: center;
  gap: 12px;
}
.rl-hero__stars {
  color: var(--rl-gold);
  font-size: 24px;
  letter-spacing: 3px;
}
.rl-hero__feature-text {
  font-family: var(--rl-font-body);
  font-weight: 600;
  font-size: 20px;
  color: var(--rl-text-muted);
}
.rl-hero__image {
  width: 600px;
  height: 450px;
  object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0;
  background: var(--rl-white);
}

/* ─── CARDS SECTION ─── */
.rl-cards-section {
  padding: 40px 0;
  background: var(--rl-bg-section);
}
.rl-cards-section__header {
  text-align: center;
  margin-bottom: 48px;
}
.rl-cards-section__title {
  font-family: var(--rl-font-display);
  font-weight: 600;
  font-size: 42px;
  line-height: 1.21;
  text-align: center;
  color: var(--rl-primary);
}
.rl-cards-section__desc {
  font-family: var(--rl-font-body);
  font-weight: 400;
  font-size: 20px;
  line-height: 1.37;
  color: #020202;
  max-width: 800px;
  margin: 0 auto;
}
.rl-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.rl-card {
  background: var(--rl-white);
  border-radius: 12px;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  box-shadow: var(--rl-shadow-card);
  text-align: center;
}
.rl-card__title {
  font-family: var(--rl-font-body);
  font-weight: 600;
  font-size: 18px;
  line-height: 1.37;
  color: var(--rl-primary);
}
.rl-card__body {
  font-family: var(--rl-font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.37;
  color: var(--rl-primary);
}

/* ─── DARK SECTION (Philosophy) ─── */
.rl-dark-section {
  padding: 40px 0;
  background: var(--rl-bg-dark);
}
.rl-dark-section__header {
  text-align: center;
  margin-bottom: 40px;
}
.rl-dark-section__label {
  color: var(--rl-accent-light);
}
.rl-dark-section__title {
  font-family: var(--rl-font-display);
  font-weight: 700;
  font-size: 40px;
  line-height: 1.21;
  color: var(--rl-white);
  margin-top: 12px;
}
.rl-dark-section__row {
  display: flex;
  gap: 40px;
  margin-bottom: 40px;
}
.rl-dark-section__col {
  flex: 1;
  font-family: var(--rl-font-body);
  font-weight: 400;
  font-size: 20px;
  line-height: 1.37;
  color: var(--rl-white);
}
.rl-dark-section__closing {
  font-family: var(--rl-font-body);
  font-weight: 700;
  font-size: 20px;
  line-height: 1.37;
  color: var(--rl-white);
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

/* ─── CTA BANNER ─── */
.rl-cta-banner {
  background: var(--rl-bg-blue);
  padding: 40px 0;
  min-height: 400px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.rl-cta-banner-about {
  background: var(--rl-grad-cta);
}
.rl-cta-banner__title-about {
  color: var(--rl-white) !important;
}
.rl-cta-banner__container {
  max-width: var(--rl-container);
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row-reverse;
  gap: 40px;
  width: 100%;
}
.rl-cta-banner__container-bestseller {
  flex-direction: row;
}
.rl-cta-banner__container-banner {
  flex-direction: row !important;
}
.rl-cta-banner__content {
  max-width: 565px;
}
.rl-cta-banner__content_footer {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.rl-cta-banner__content_footer p,
.rl-cta-banner__content_footer h2 {
  text-align: center;
}
.rl-cta-banner__title {
  font-family: var(--rl-font-display);
  font-weight: 700;
  font-size: 50px;
  line-height: 1.21;
  color: var(--rl-primary);
}
.rl-cta-banner__title_footer {
  color: var(--rl-white);
}
.rl-cta-banner__image {
  width: 565px;
  height: 500px;
  object-fit: cover;
  border-radius: 35px;
  background: var(--rl-white);
}

/* ─── CLOSING PUNCHLINE ─── */
.rl-punchline {
  background: var(--rl-bg-blue);
  padding: 40px 0;
  text-align: center;
}
.rl-punchline__container {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}
.rl-punchline__title {
  font-family: var(--rl-font-display);
  font-weight: 700;
  font-size: 50px;
  line-height: 1.21;
  color: var(--rl-primary);
}
.rl-punchline__cta-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.rl-punchline__sub {
  font-family: var(--rl-font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.37;
  color: #000000;
}

/* ─── FOOTER ─── */
.rl-footer {
  background: var(--rl-bg-footer-m);
}
.rl-footer__brand {
  height: 145px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.rl-footer__brand span {
  font-family: var(--rl-font-display);
  font-weight: 700;
  font-size: 120px;
  line-height: 1;
  letter-spacing: 72px;
  margin-right: -72px;
  color: var(--rl-white);
  text-transform: uppercase;
  white-space: nowrap;
}
.rl-footer__form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.rl-footer__form-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  background: rgba(255, 255, 255, 0.08);
  border: 2px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  padding: 6px 6px 6px 24px;
}
.rl-footer__input {
  flex: 1;
  min-width: 0;
  padding: 0;
  background: transparent;
  border: none;
  color: var(--rl-white);
  font-family: var(--rl-font-body);
  font-size: 16px;
  outline: none;
}
.rl-footer__input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}
.rl-footer__privacy {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  font-family: var(--rl-font-body);
  font-weight: 400;
  font-size: 14px;
  line-height: 1.37;
  color: rgba(255, 255, 255, 0.7);
}
.rl-footer__checkbox {
  flex-shrink: 0;
  appearance: none;
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  border: 1px solid #767676;
  border-radius: 3px;
  background: var(--rl-white);
  position: relative;
  cursor: pointer;
}
.rl-footer__checkbox:checked {
  border-color: var(--rl-accent);
}
.rl-footer__checkbox:checked::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 1px;
  width: 5px;
  height: 9px;
  border: solid var(--rl-accent);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.rl-footer__link {
  font-family: var(--rl-font-body);
  font-weight: 500;
  font-size: 16px;
  line-height: 1.37;
  color: var(--rl-white);
  transition: opacity 0.2s;
}
.rl-footer__link--underline {
  text-decoration: underline;
}
.rl-footer__link:hover {
  opacity: 0.8;
}

/* ─── ARTICLE PAGES (Policy, Reglament, Kontakt, etc.) ─── */
.rl-back-btn-section {
  background: var(--rl-white);
  padding: 24px 10px;
  display: flex;
  justify-content: center;
}
.rl-back-btn {
  display: inline-flex;
  align-items: center;
  background: var(--rl-grad-cta);
  border-radius: 999px;
  box-shadow: var(--rl-shadow-btn);
  padding: 11px 20px;
  font-family: var(--rl-font-body);
  font-weight: 700;
  font-size: 20px;
  line-height: 1.37;
  color: var(--rl-white);
  transition: opacity 0.2s;
}
.rl-back-btn:hover {
  opacity: 0.9;
}

.rl-article-layout {
  background: var(--rl-bg-card);
  padding: 40px 0;
}
.rl-article-layout__inner {
  max-width: var(--rl-container);
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 60px;
  align-items: start;
}
.rl-article-toc {
  position: sticky;
  top: calc(var(--rl-header-h) + 20px);
}
.rl-article-toc__label {
  font-family: var(--rl-font-body);
  font-weight: 500;
  font-size: 11px;
  line-height: 1.37;
  letter-spacing: 0.55px;
  text-transform: uppercase;
  color: var(--rl-text-gray);
  margin-bottom: 12px;
}
.rl-article-toc__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.rl-article-toc__item {
  font-family: var(--rl-font-body);
  font-size: 13px;
  line-height: 1.37;
  color: var(--rl-text-gray);
  cursor: pointer;
  transition: color 0.2s;
}
.rl-article-toc__item--active {
  font-weight: 600;
  color: #1a6ef7;
}
.rl-article-toc__item:hover {
  color: #1a6ef7;
}

.rl-article-content__header {
  margin-bottom: 40px;
}
.rl-article-content__title {
  font-family: var(--rl-font-body);
  font-weight: 700;
  font-size: 32px;
  line-height: 1.37;
  color: var(--rl-text-blue2);
  margin-bottom: 8px;
}
.rl-article-content__updated {
  font-family: var(--rl-font-body);
  font-weight: 400;
  font-size: 13px;
  color: var(--rl-text-gray);
}
.rl-article-section {
  margin-bottom: 40px;
}
.rl-article-section h2 {
  font-family: var(--rl-font-body);
  font-weight: 600;
  font-size: 22px;
  line-height: 1.37;
  color: var(--rl-text-blue2);
  margin-bottom: 16px;
}
.rl-article-section p {
  font-family: var(--rl-font-body);
  font-weight: 400;
  font-size: 15px;
  line-height: 1.37;
  color: var(--rl-text-blue2);
  margin-bottom: 12px;
}
.rl-article-section ul {
  list-style: disc;
  padding-left: 20px;
  margin-bottom: 12px;
}
.rl-article-section ul li {
  font-family: var(--rl-font-body);
  font-size: 15px;
  color: var(--rl-text-blue2);
  margin-bottom: 6px;
  line-height: 1.5;
}

/* ─── ARTICLE inline link ─── */
.rl-article-link {
  color: var(--rl-accent);
  text-decoration: underline;
  transition: color 0.2s;
}
.rl-article-link:hover {
  color: var(--rl-accent-dark);
}

/* ─── FOOTER extended classes (used in about.html & article pages) ─── */
.rl-footer__grid {
  display: grid;
  grid-template-columns: 415fr 137fr 192fr 255fr;
  gap: 40px;
  padding: 40px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.rl-footer__col {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.rl-footer__col--newsletter {
}
.rl-footer__col-title {
  font-family: var(--rl-font-body);
  font-weight: 700;
  font-size: 40px;
  line-height: 1.2;
  color: var(--rl-white);
  margin-bottom: 8px;
}
.rl-footer__col-desc {
  font-family: var(--rl-font-body);
  font-weight: 500;
  font-size: 18px;
  line-height: 1.4;
  color: var(--rl-white);
  margin-bottom: 16px;
}
.rl-footer__col-heading {
  font-family: var(--rl-font-body);
  font-weight: 700;
  font-size: 18px;
  line-height: 1.37;
  color: var(--rl-white);
  margin-bottom: 14px;
}
.rl-footer__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  list-style: none;
}
.rl-footer__address {
  font-style: normal;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.rl-footer__address p {
  font-family: var(--rl-font-body);
  font-weight: 400;
  font-size: 14px;
  line-height: 1.5;
  color: var(--rl-white);
}
.rl-footer__contact-link {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.2s;
}
.rl-footer__contact-link:hover {
  opacity: 0.8;
  text-decoration: underline;
}
.rl-footer__submit {
  flex-shrink: 0;
  padding: 12px 24px;
  background: var(--rl-white);
  color: var(--rl-bg-footer);
  font-family: var(--rl-font-body);
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  transition: opacity 0.2s;
  white-space: nowrap;
}
.rl-footer__submit:hover {
  opacity: 0.9;
}
.rl-footer__bottom {
  padding: 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.rl-footer__legal-row {
  display: flex;
  gap: 50px;
  margin-bottom: 16px;
}
.rl-footer__legal {
  font-family: var(--rl-font-body);
  font-weight: 400;
  font-size: 14px;
  line-height: 1.5;
  color: var(--rl-white);
}
.rl-footer__copyright {
  font-family: var(--rl-font-body);
  font-weight: 400;
  font-size: 14px;
  line-height: 1.37;
  color: var(--rl-white);
  text-align: center;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* ─── KONTAKT page ─── */
.rl-kontakt-section {
  background: var(--rl-bg);
  padding: 40px 0;
}
.rl-kontakt-section__title {
  font-family: var(--rl-font-body);
  font-weight: 700;
  font-size: 40px;
  line-height: 1.37;
  color: var(--rl-text-blue);
  margin-bottom: 40px;
}
.rl-kontakt-grid {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 40px;
  align-items: stretch;
}
.rl-contact-card {
  background: var(--rl-white);
  border: 1px solid var(--rl-border-faint);
  border-radius: 12px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.rl-contact-card--dark {
  background: var(--rl-bg-dark);
}
.rl-contact-card__title {
  font-family: var(--rl-font-body);
  font-weight: 700;
  font-size: 18px;
  line-height: 1.37;
  color: var(--rl-text-blue);
}
.rl-contact-card--dark .rl-contact-card__title {
  color: var(--rl-white);
}
.rl-contact-card__row {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.rl-contact-card__row-img {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
}
.rl-contact-card__label {
  font-family: var(--rl-font-body);
  font-weight: 500;
  font-size: 12px;
  color: #5e6673;
}
.rl-contact-card--dark .rl-contact-card__label {
  color: #a6b8d1;
}
.rl-contact-card__value {
  font-family: var(--rl-font-body);
  font-weight: 600;
  font-size: 16px;
  color: var(--rl-text-blue);
}
.rl-contact-card--dark .rl-contact-card__value {
  color: var(--rl-white);
}
.rl-contact-card__value--link {
  text-decoration: underline;
}

.rl-maps-container {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--rl-border-faint);
  background: #f3f4f6;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 300px;
  height: 100%;
}

/* ─── SUCCESS PAGE (success.html / success2.html) ─── */
.success-hero {
  position: relative;
  min-height: 631px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 20px;
  overflow: hidden;
}
.success-hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.success-hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(14, 42, 71, 0.22);
}
.success-hero__content {
  position: relative;
  z-index: 1;
  max-width: 780px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}
.success-hero__icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(31, 138, 153, 0.25);
  border: 2px solid rgba(31, 138, 153, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
}
.success-hero__checkmark {
  width: 32px;
  height: 32px;
  color: var(--rl-accent);
}
.success-hero__title {
  font-family: var(--rl-font-body);
  font-weight: 700;
  font-size: 56px;
  line-height: 1.15;
  color: var(--rl-white);
  margin-bottom: 20px;
  text-wrap: balance;
}
.success-hero__desc {
  font-family: var(--rl-font-body);
  font-weight: 500;
  font-size: 20px;
  line-height: 1.55;
  color: var(--rl-white);
  margin-bottom: 40px;
  max-width: 600px;
  text-wrap: balance;
}
.success-hero__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--rl-white);
  color: var(--rl-bg-footer);
  border-radius: 999px;
  padding: 14px 32px;
  font-family: var(--rl-font-body);
  font-weight: 700;
  font-size: 18px;
  line-height: 1.37;
  text-decoration: none;
  transition:
    opacity 0.2s,
    transform 0.2s;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}
.success-hero__btn:hover {
  opacity: 0.92;
  transform: translateY(-1px);
}

/* ─── 404 PAGE ─── */
.rl-404 {
  padding: 120px 20px;
  text-align: center;
}
.rl-404__code {
  margin: 0 0 8px;
}
.rl-404__title {
  margin: 0 0 16px;
}
.rl-404__desc {
  max-width: 480px;
  margin: 0 auto 32px;
}

/* ─────────────────────────────────────────────
   MILOZOL — Global
   ───────────────────────────────────────────── */
.ml-body {
  font-family: var(--ml-font);
  background: var(--ml-bg);
  color: var(--ml-text);
  font-size: 16px;
  line-height: 1.6;
}

.ml-container {
  max-width: var(--ml-container);
  margin: 0 auto;
  padding: 0 20px;
}

/* Note bar */
.ml-note-bar {
  background: #f8fafc;
  padding: 8px 16px;
  display: flex;
  justify-content: center;
  gap: 28px;
  height: 31px;
  align-items: center;
}
.ml-note-bar__text {
  font-family: var(--ml-font);
  font-weight: 500;
  font-size: 12px;
  color: var(--rl-text-gray);
  text-align: center;
}

/* Hero */
.ml-hero {
  max-width: var(--ml-container);
  margin: 0 auto;
  padding: 40px 20px 0;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 40px;
  align-items: start;
}
.ml-hero__content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.ml-hero__h1 {
  font-family: var(--ml-font);
  font-weight: 800;
  font-size: 40px;
  line-height: 1.2;
  color: var(--ml-dark);
}
.ml-hero__lead {
  font-family: var(--ml-font);
  font-weight: 600;
  font-size: 18px;
  line-height: 1.5;
  color: var(--ml-text);
}
.ml-hero__disclaimer {
  font-size: 14px;
  color: var(--ml-text-muted);
  line-height: 1.5;
  padding: 12px;
  background: var(--ml-bg-light);
  border-radius: 4px;
  border-left: 3px solid #cbd5e1;
}
.ml-hero__image {
  width: 420px;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
}

/* CTA buttons Milozol */
.ml-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  background: var(--ml-accent);
  border-radius: 6px;
  font-family: var(--ml-font);
  font-weight: 700;
  font-size: 16px;
  color: var(--ml-bg);
  transition:
    background 0.2s,
    transform 0.2s;
  cursor: pointer;
}
.ml-btn:hover {
  background: var(--ml-accent-dark);
  transform: translateY(-1px);
}

/* Section headings */
.ml-section-h2 {
  font-family: var(--ml-font);
  font-weight: 600;
  font-size: 34px;
  line-height: 1.2;
  color: var(--ml-dark);
  margin-bottom: 20px;
}
.ml-section {
  padding: 40px 0;
}
.ml-section--light {
  background: var(--ml-bg-light);
}

/* Pain check / symptoms */
.ml-symptoms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 24px 0;
}
.ml-symptom-card {
  background: var(--ml-bg);
  border: 1px solid var(--rl-border-subtle);
  border-radius: 8px;
  padding: 16px;
  font-size: 15px;
  line-height: 1.5;
  color: var(--ml-text);
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.ml-symptom-card__num {
  width: 28px;
  height: 28px;
  background: var(--ml-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 13px;
  color: var(--ml-bg);
  flex-shrink: 0;
}

/* Article */
.ml-article {
  max-width: var(--ml-container);
  margin: 0 auto;
  padding: 0 20px;
}
.ml-article h3 {
  font-family: var(--ml-font);
  font-weight: 700;
  font-size: 24px;
  color: var(--ml-dark);
  margin: 32px 0 12px;
}
.ml-article p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--ml-text);
  margin-bottom: 16px;
}
.ml-article p strong {
  font-weight: 600;
}

/* Highlight boxes */
.ml-highlight-red {
  border: 1px solid var(--ml-red);
  border-left-width: 4px;
  border-radius: 6px;
  padding: 20px;
  background: var(--ml-bg-red);
  margin: 20px 0;
  font-size: 18px;
  font-weight: 600;
  color: var(--ml-text2);
  line-height: 1.5;
}
.ml-highlight-teal {
  border: 1px solid var(--ml-accent);
  border-left-width: 4px;
  border-radius: 6px;
  padding: 20px;
  background: var(--ml-bg-teal);
  margin: 20px 0;
  font-size: 18px;
  color: var(--ml-text2);
  line-height: 1.5;
}
.ml-story-timeline {
  background: var(--ml-bg-light);
  border-radius: 8px;
  padding: 24px;
  margin: 24px 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.ml-story-week {
  font-size: 15px;
  line-height: 1.6;
  color: var(--ml-text);
}
.ml-story-week strong {
  font-weight: 700;
  color: var(--ml-dark);
}

/* Testimonials */
.ml-testimonials-header {
  text-align: center;
  margin-bottom: 32px;
}
.ml-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  overflow-x: auto;
}
.ml-testimonial-card {
  background: var(--ml-bg);
  border: 1px solid var(--rl-border-subtle);
  border-radius: 10px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.ml-rating-display {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 16px 0;
}
.ml-stars {
  color: #f59e0b;
  font-size: 24px;
  letter-spacing: 2px;
}
.ml-rating-score {
  font-weight: 800;
  font-size: 48px;
  color: var(--ml-dark);
}
.ml-rating-max {
  font-size: 24px;
  color: var(--ml-text-muted);
}

/* Why others fail */
.ml-fail-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 24px 0;
}
.ml-fail-card {
  border: 1px solid var(--ml-red);
  border-left-width: 4px;
  border-radius: 6px;
  padding: 20px;
  background: var(--ml-bg);
}
.ml-fail-card__title {
  font-weight: 700;
  font-size: 18px;
  color: var(--ml-red);
  margin-bottom: 8px;
}
.ml-fail-card__body {
  font-size: 15px;
  line-height: 1.6;
  color: var(--ml-text);
}

/* Milozol approach box */
.ml-approach-box {
  border: 2px solid var(--ml-accent);
  border-radius: 10px;
  padding: 28px;
  background: var(--ml-bg);
  margin: 24px 0;
}
.ml-approach-box__title {
  font-weight: 700;
  font-size: 22px;
  color: var(--ml-dark);
  margin-bottom: 16px;
}
.ml-approach-direction {
  margin-bottom: 16px;
  padding-left: 16px;
  border-left: 3px solid var(--ml-accent);
}
.ml-approach-direction p {
  font-size: 15px;
  line-height: 1.6;
}

/* Ingredients */
.ml-ingredients-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 24px 0;
}
.ml-ingredient-card {
  background: var(--ml-bg);
  border: 1px solid var(--rl-border-subtle);
  border-radius: 8px;
  padding: 16px;
}
.ml-ingredient-card__name {
  font-weight: 700;
  font-size: 15px;
  color: var(--ml-dark);
  margin-bottom: 6px;
}
.ml-ingredient-card__desc {
  font-size: 13px;
  line-height: 1.5;
  color: var(--ml-text-muted);
}

/* Timeline */
.ml-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin: 24px 0;
}
.ml-timeline-week {
  background: var(--ml-bg-light);
  border-radius: 8px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.ml-timeline-week__num {
  font-weight: 700;
  font-size: 13px;
  color: var(--ml-accent);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.ml-timeline-week__text {
  font-size: 14px;
  line-height: 1.5;
  color: var(--ml-text);
}

/* Instructions */
.ml-steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 24px 0;
}
.ml-step-card {
  background: var(--ml-bg);
  border: 1px solid var(--rl-border-subtle);
  border-radius: 10px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}
.ml-step-card__num {
  width: 40px;
  height: 40px;
  background: var(--ml-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 18px;
  color: var(--ml-bg);
}
.ml-step-card__title {
  font-weight: 700;
  font-size: 18px;
  color: var(--ml-dark);
}
.ml-step-card__body {
  font-size: 15px;
  line-height: 1.6;
  color: var(--ml-text);
}

/* For whom */
.ml-audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 24px 0;
}
.ml-audience-card {
  background: var(--ml-bg);
  border: 1px solid var(--rl-border-subtle);
  border-radius: 10px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.ml-audience-card__icon {
  width: 48px;
  height: 48px;
  background: var(--ml-bg-teal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}
.ml-audience-card__title {
  font-weight: 700;
  font-size: 17px;
  color: var(--ml-dark);
}
.ml-audience-card__body {
  font-size: 14px;
  line-height: 1.5;
  color: var(--ml-text-muted);
}

/* Comparison table */
.ml-comparison-table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
}
.ml-comparison-table th,
.ml-comparison-table td {
  padding: 14px 16px;
  border: 1px solid var(--rl-border-subtle);
  font-size: 14px;
  text-align: left;
}
.ml-comparison-table th {
  background: var(--ml-bg-light);
  font-weight: 700;
  color: var(--ml-dark);
}
.ml-comparison-table td:first-child {
  font-weight: 600;
}
.ml-check {
  color: var(--ml-accent);
  font-size: 18px;
}
.ml-cross {
  color: var(--ml-red);
  font-size: 18px;
}

/* Footer Milozol */
.ml-footer {
  background: #1e293b;
  padding: 24px 20px;
  text-align: center;
}
.ml-footer__text {
  font-family: var(--ml-font);
  font-weight: 400;
  font-size: 12px;
  color: var(--ml-text-light);
  line-height: 1.6;
  max-width: 720px;
  margin: 0 auto;
}

/* ─────────────────────────────────────────────
   RESPONSIVE — Tablet (max-width: 1024px)
   ───────────────────────────────────────────── */
@media screen and (max-width: 1024px) {
  :root {
    --rl-header-px: 40px;
  }

  /* Nav */
  .rl-nav__links {
    display: none;
  }
  .rl-nav__cta.desktop-only {
    display: none;
  }
  .rl-nav__burger {
    display: flex;
  }

  /* Hero */
  .rl-hero__container {
    flex-direction: column;
    align-items: flex-start;
  }
  .rl-hero__image {
    width: 100%;
    height: 300px;
  }
  .rl-hero__content {
    max-width: 100%;
  }
  .rl-hero__title {
    font-size: 44px;
  }

  /* Cards */
  .rl-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Dark section */
  .rl-dark-section__row {
    flex-direction: column;
    gap: 20px;
  }

  /* CTA Banner */
  .rl-cta-banner__container,
  .rl-cta-banner__container-banner {
    flex-direction: column !important;
  }
  .rl-cta-banner__title {
    font-size: 36px;
  }
  .rl-cta-banner__image {
    width: 100%;
    height: 200px;
  }

  /* Punchline */
  .rl-punchline__title {
    font-size: 36px;
  }

  /* Footer */
  .rl-footer__brand span {
    font-size: 80px;
    letter-spacing: 40px;
    margin-right: -40px;
  }

  /* Article */
  .rl-article-layout__inner {
    grid-template-columns: 1fr;
  }
  .rl-article-toc {
    position: static;
  }

  /* Footer grid (about.html / article pages) */
  .rl-footer__grid {
    grid-template-columns: 1fr 1fr;
  }
  .rl-footer__col--newsletter {
    grid-column: 1 / -1;
  }

  /* Kontakt */
  .rl-kontakt-grid {
    grid-template-columns: 1fr;
  }

  /* Milozol */
  .ml-hero {
    grid-template-columns: 1fr;
  }
  .ml-hero__image {
    width: 100%;
  }
  .ml-symptoms-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .ml-ingredients-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .ml-steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .ml-audience-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .ml-timeline {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ─────────────────────────────────────────────
   RESPONSIVE — Mobile (max-width: 768px)
   ───────────────────────────────────────────── */
@media screen and (max-width: 768px) {
  :root {
    --rl-header-px: 15px;
  }

  .desktop-only {
    display: none !important;
  }
  .mobile-only {
    display: block !important;
  }
  /* Sticky CTA bar stays visible on mobile despite the .desktop-only class —
     its own .is-visible toggle (via IntersectionObserver) still controls when it slides in. */
  .rl-sticky-cta.desktop-only {
    display: flex !important;
  }

  /* Header */
  .rl-header {
    padding: 0 15px;
  }
  .rl-nav {
    padding: 13px 0;
  }

  /* Hero */
  .rl-hero {
    padding: 20px 0 40px;
  }
  .rl-hero__title {
    font-size: 44px;
    text-align: center;
  }
  .rl-hero__desc {
    font-size: 14px;
  }
  .rl-section-label-about,
  .rl-hero__desc-about {
    text-align: center;
  }
  .rl-hero__features-about .rl-hero__feature-text,
  .rl-hero__desc-about {
    font-size: 20px;
  }
  .rl-hero__proof {
    margin: 0 auto;
  }
  .rl-section-label {
    margin: 0 auto;
    display: block;
    text-align: center;
  }
  .rl-hero__disclaimer,
  .rl-hero__price-row,
  .rl-hero__price-note {
    text-align: center;
  }
  .rl-hero__price-row {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .rl-hero__image {
    height: 248px;
  }
  .rl-hero__stars {
    font-size: 20px;
  }
  .rl-hero__feature-text {
    font-size: 14px;
    margin: 0 auto;
  }
  .rl-hero__features-about {
    flex-direction: column;
    text-align: center;
  }

  /* Cards section */
  .rl-cards-section {
    padding: 40px 0;
  }
  .rl-cards-section__title {
    font-size: 34px;
  }
  .rl-cards-section__desc {
    font-size: 16px;
  }
  .rl-cards-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  /* Dark section */
  .rl-dark-section {
    padding: 40px 0;
  }
  .rl-dark-section__title {
    font-size: 28px;
  }
  .rl-dark-section__col {
    font-size: 16px;
  }
  .rl-dark-section__closing {
    font-size: 16px;
  }

  /* CTA Banner */
  .rl-cta-banner {
    padding: 40px 0;
    min-height: 470px;
  }
  .rl-cta-banner__title {
    font-size: 28px;
  }
  .rl-cta-banner__image {
    height: 186px;
  }

  /* Punchline */
  .rl-punchline {
    padding: 40px 0;
  }
  .rl-punchline__title {
    font-size: 28px;
  }

  /* Footer */
  .rl-footer {
    background: var(--rl-bg-footer-m);
    padding: 0 20px;
  }
  .rl-footer__brand {
    height: 100px;
  }
  .rl-footer__brand span {
    font-size: 50px !important;
    letter-spacing: 10px !important;
    margin-right: 0px !important;
  }
  .rl-footer__col-title {
    font-size: 30px;
  }
  .rl-footer__legal-row {
    flex-direction: column;
    gap: 12px;
    margin-bottom: 12px;
  }

  /* Article */
  .rl-back-btn-section {
    padding: 12px 15px;
  }
  .rl-article-layout {
    padding: 30px 0 40px;
  }
  .rl-article-content__title {
    font-size: 24px;
  }
  .rl-article-section h2 {
    font-size: 18px;
  }

  /* Footer grid mobile */
  .rl-footer__grid {
    grid-template-columns: 1fr;
    padding: 30px 0;
    gap: 24px;
  }
  .rl-footer__col--newsletter {
    grid-column: 1;
  }

  /* Success */
  .success-hero {
    min-height: auto;
    padding: 40px 20px 40px;
  }
  .success-hero__title {
    font-size: 34px;
  }
  .success-hero__desc {
    font-size: 16px;
  }
  .success-hero__btn {
    font-size: 16px;
    padding: 13px 26px;
  }

  /* Kontakt */
  .rl-kontakt-section__title {
    font-size: 28px;
  }

  /* Milozol */
  .ml-note-bar {
    gap: 10px;
    height: auto;
    padding: 8px;
  }
  .ml-hero {
    padding: 20px 20px 0;
  }
  .ml-hero__h1 {
    font-size: 26px;
  }
  .ml-hero__lead {
    font-size: 16px;
  }
  .ml-section-h2 {
    font-size: 24px;
  }
  .ml-symptoms-grid {
    grid-template-columns: 1fr;
  }
  .ml-ingredients-grid {
    grid-template-columns: 1fr;
  }
  .ml-steps-grid {
    grid-template-columns: 1fr;
  }
  .ml-audience-grid {
    grid-template-columns: 1fr;
  }
  .ml-timeline {
    grid-template-columns: repeat(2, 1fr);
  }
  .ml-testimonials-grid {
    grid-template-columns: 1fr;
  }
  .ml-comparison-table {
    font-size: 12px;
  }
  .ml-comparison-table th,
  .ml-comparison-table td {
    padding: 8px 10px;
  }
}

/* ─── MAIN PAGE (index.html) specific ─── */
.rl-main-hero {
  position: relative;
  background: #6f7787;
  height: 550px;
  overflow: hidden;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 0;
}
.rl-main-hero picture {
  position: absolute;
  inset: 0;
  display: block;
}
.rl-main-hero__bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.rl-main-hero__overlay {
  position: relative;
  z-index: 1;
  padding: 40px 168px 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 840px;
}
.rl-main-hero__title {
  font-family: var(--rl-font-display);
  font-weight: 700;
  font-size: 50px;
  line-height: 1.21;
  color: var(--rl-white);
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.35);
}
.rl-main-hero__desc {
  font-size: 20px;
  line-height: 1.37;
  color: #e6eef5;
}
.rl-main-hero__nav {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-top: 8px;
}
.rl-main-hero__nav .rl-btn {
  font-size: 18px;
}

.rl-stats-section {
  background: var(--rl-bg-blue);
  padding: 40px 0;
}
.rl-stats-section__inner {
  max-width: var(--rl-container);
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.rl-stats-section__rating {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.rl-stats-section__score {
  font-family: var(--rl-font-body);
  font-weight: 800;
  font-size: 55px;
  line-height: 1.37;
  color: var(--rl-primary);
  display: flex;
  align-items: center;
  gap: 5px;
}
.rl-stats-section__stars {
  font-size: 30px;
  color: var(--rl-gold);
  letter-spacing: 3px;
}
.rl-stats-section__desc {
  font-family: var(--rl-font-body);
  font-weight: 700;
  font-size: 20px;
  color: var(--rl-text-slate);
  text-align: center;
}
.rl-stats-section__boxes {
  display: flex;
  gap: 20px;
  justify-content: center;
}
.rl-stats-box {
  background: var(--rl-white);
  border-radius: 12px;
  padding: 24px;
  text-align: center;
  flex: 1;
  max-width: 280px;
  box-shadow: var(--rl-shadow-card);
}
.rl-stats-box__num {
  font-family: var(--rl-font-body);
  font-weight: 700;
  font-size: 55px;
  color: var(--rl-accent);
  line-height: 1;
  margin-bottom: 8px;
}
.rl-stats-box__text {
  font-family: var(--rl-font-body);
  font-weight: 600;
  font-size: 16px;
  color: var(--rl-text-slate);
}
.rl-delivery-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.rl-delivery-logos img {
  height: 40px;
  object-fit: contain;
}

/* ─── PRODUCT PAGE specific ─── */
.rl-product-announcement {
  background: var(--rl-bg-dark);
  padding: 8px 0;
  font-family: var(--rl-font-body);
  font-weight: 600;
  font-size: 16px;
  color: var(--rl-white);
  overflow: hidden;
  white-space: nowrap;
}
.rl-product-announcement__track {
  display: inline-flex;
  width: max-content;
  animation: rl-ticker-scroll 22s linear infinite;
}
.rl-product-announcement__item {
  display: inline-flex;
  flex-shrink: 0;
  padding-right: 60px;
}
@keyframes rl-ticker-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-33.3333%);
  }
}
@media (prefers-reduced-motion: reduce) {
  .rl-product-announcement__track {
    animation: none;
  }
}

.rl-trust-bar {
  background: var(--rl-bg-dark);
  padding: 30px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
}
.rl-trust-bar__item {
  display: flex;
  align-items: center;
  gap: 2px;
  font-family: var(--rl-font-body);
  font-weight: 600;
  font-size: 14px;
  color: var(--rl-white);
}

/* ─── Why Relivital (Accordion) ─── */
.rl-accordion {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.rl-accordion__item {
  padding: 10px;
  background-color: var(--rl-white);
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.02);
  margin-bottom: 10px;
}
.rl-accordion__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  gap: 5px;
  cursor: pointer;
  font-family: var(--rl-font-body);
  font-weight: 600;
  font-size: 18px;
  color: var(--rl-primary);
}
.rl-accordion__icon {
  position: relative;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
.rl-accordion__icon::before,
.rl-accordion__icon::after {
  content: "";
  position: absolute;
  background: var(--rl-accent);
  border-radius: 1px;
  transition: transform 0.25s;
}
.rl-accordion__icon::before {
  left: 1px;
  right: 1px;
  top: 50%;
  height: 2px;
  transform: translateY(-50%);
}
.rl-accordion__icon::after {
  top: 1px;
  bottom: 1px;
  left: 50%;
  width: 2px;
  transform: translateX(-50%);
}
.rl-accordion__item.is-open .rl-accordion__icon::after {
  transform: translateX(-50%) scaleY(0);
}
.rl-accordion__body {
  display: none;
  padding: 0 0 20px;
  font-size: 16px;
  line-height: 1.6;
  color: var(--rl-text-muted);
}
.rl-accordion__item.is-open .rl-accordion__body {
  display: block;
}

/* Skin test section */
.rl-skin-test {
  background: linear-gradient(135deg, #0a1f35 0%, #104379 100%);
  padding: 40px 20px;
}
.rl-skin-test__container {
  max-width: var(--rl-container);
  margin: 0 auto;
  background: #103053;
  border-radius: 35px;
  display: grid;
  grid-template-columns: 1fr 500px;
  gap: 40px;
  align-items: center;
}
.rl-skin-test__title {
  font-family: var(--rl-font-display);
  font-weight: 700;
  font-size: 36px;
  color: var(--rl-white);
  margin-bottom: 16px;
}
.rl-skin-test__desc {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin-bottom: 24px;
}
.rl-skin-test__image {
  width: 100%;
  max-width: 500px;
  height: 100%;
  object-fit: cover;
  border-radius: 0px 35px 35px 0px;
}

@media screen and (max-width: 1024px) {
  .rl-main-hero__overlay {
    padding: 40px 60px 0;
  }
  .rl-main-hero__title {
    font-size: 40px;
  }
  .rl-stats-section__boxes {
    flex-wrap: wrap;
  }
  .rl-skin-test__container {
    grid-template-columns: 1fr;
  }
  .rl-skin-test__image {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 0px 0px 16px 16px;
  }
}

@media screen and (max-width: 768px) {
  .rl-cta-banner__title-about {
    text-align: center;
    font-size: 34px;
  }
  .rl-main-hero {
    height: 530px;
  }
  .rl-main-hero__overlay {
    padding: 30px 15px 0;
  }
  .rl-main-hero__title {
    font-size: 28px;
  }
  .rl-main-hero__desc {
    font-size: 14px;
  }
  .rl-btn {
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 330px;
  }
  .rl-main-hero__nav .rl-btn {
    font-size: 14px;
    padding: 12px 24px;
  }
  .rl-main-hero__slider .slider-arrow--prev {
    left: 15px;
  }
  .rl-main-hero__slider .slider-arrow--next {
    right: 15px;
  }
  .rl-stats-section__score {
    font-size: 40px;
  }
  .rl-stats-section__boxes {
    flex-direction: column;
    align-items: center;
  }
  .rl-stats-box {
    max-width: 100%;
    width: 100%;
  }
}

/* ─────────────────────────────────────────────
   NATIVE SLIDER / CAROUSEL (site-wide, no frameworks)
   Structure: .slider-container[data-slider] > .slider-track > *,
              + .slider-arrow--prev / .slider-arrow--next
   ───────────────────────────────────────────── */
.slider-container {
  overflow: hidden;
  position: relative;
}
.slider-track {
  display: flex;
  transition: transform 0.4s ease-in-out;
  touch-action: pan-y;
}
.slider-track > * {
  flex-shrink: 0;
  width: 100%;
}
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  color: var(--rl-white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--rl-shadow-card);
  z-index: 2;
  transition: background 0.2s;
}
.slider-arrow:hover {
  background: #4a4a4a78;
}
.slider-arrow--prev {
  left: 16px;
}
.slider-arrow--next {
  right: 16px;
}
.slider-arrow--prev::before {
  content: "‹";
  font-size: 22px;
  line-height: 1;
}
.slider-arrow--next::before {
  content: "›";
  font-size: 22px;
  line-height: 1;
}

@media screen and (max-width: 768px) {
  .rl-main-hero__nav {
    margin: 0 auto;
  }
  .slider-arrow {
    width: 36px;
    height: 36px;
  }
  .slider-arrow--prev {
    left: 8px;
  }
  .slider-arrow--next {
    right: 8px;
  }
}

/* about.html additions */

/* Check-icon badge next to "ponad 8 700 sprzedanych słoiczków" in hero features */
.rl-hero__check-icon {
  display: inline-flex;
  flex-shrink: 0;
  line-height: 0;
}

/* Icon badge used inside the 6 "why Relivital" cards on the About page */
.rl-about__card-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--rl-primary);
  color: var(--rl-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  flex-shrink: 0;
}

/* On tablet/mobile the CTA banner stacks into a single column; the copy
   ("Twoja skóra zasługuje...") should sit above the image, matching the
   Figma "O nas_mobile" node order (Container text, then image). */
@media screen and (max-width: 1024px) {
  .rl-cta-banner__content {
    order: 1;
  }
  .rl-cta-banner__image {
    order: 2;
  }
}

/* kontakt.html additions */
/* style.css already defines .rl-kontakt-section*, .rl-kontakt-grid,
   .rl-contact-card* and .rl-maps-container. The rules below only add
   the small pieces that page needed on top of that foundation:
   a vertical stack for the two sidebar cards, a title/date header row
   inside a card, a divider line, the office-address text block, the
   inline VAT/company-number rows, and the photo + callout treatment
   for the map placeholder. */

/* Sidebar column stacking the two contact cards */
.rl-kontakt-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Card title + "last updated" row */
.rl-contact-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}
.rl-contact-card__updated {
  font-family: var(--rl-font-body);
  font-weight: 400;
  font-size: 13px;
  color: var(--rl-text-gray);
}
.rl-contact-card--dark .rl-contact-card__updated {
  color: #a6b8d1;
}

/* Divider line inside cards */
.rl-contact-card__divider {
  border: none;
  height: 1px;
  background: #e0e3e8;
  margin: 0;
}
.rl-contact-card--dark .rl-contact-card__divider {
  background: rgba(255, 255, 255, 0.15);
}

/* Company address text (Adres biura card) */
.rl-contact-card__address {
  font-family: var(--rl-font-body);
  font-weight: 400;
  font-size: 14px;
  line-height: 1.5;
  color: #bfcce0;
}

/* Inline label/value row (VAT, Company number) */
.rl-contact-card__meta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.rl-contact-card__meta-label {
  font-family: var(--rl-font-body);
  font-weight: 500;
  font-size: 12px;
  color: #a6b8d1;
}
.rl-contact-card__meta-value {
  font-family: var(--rl-font-body);
  font-weight: 600;
  font-size: 14px;
  color: var(--rl-white);
}

/* Article block spacing beneath the contact grid */
.rl-kontakt-article {
  margin-top: 48px;
  max-width: 900px;
}

/* Map placeholder — real screenshot + floating address callout + pin */
.rl-maps-container--photo {
  position: relative;
  padding: 0;
  transition:
    box-shadow 0.2s,
    transform 0.2s;
}
.rl-maps-container--photo:hover {
  box-shadow: 0 10px 28px rgba(14, 42, 71, 0.18);
  transform: translateY(-2px);
}
.rl-maps-container__iframe {
  width: 100%;
  height: 100%;
  min-height: 300px;
  border: 0;
  display: block;
}
.rl-maps-container__callout {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(18px, -50%);
  max-width: 260px;
  background: var(--rl-white);
  border-radius: 10px;
  padding: 14px 16px;
  box-shadow: var(--rl-shadow-card);
  display: flex;
  align-items: flex-start;
  gap: 8px;
  text-decoration: none;
}
.rl-maps-container__callout-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #d93725;
  flex-shrink: 0;
  margin-top: 5px;
}
.rl-maps-container__callout-address {
  font-family: var(--rl-font-body);
  font-weight: 600;
  font-size: 13px;
  line-height: 1.4;
  color: var(--rl-text-blue);
}

/* ─── Mobile tweaks ─── */
@media screen and (max-width: 768px) {
  .rl-maps-container__callout {
    /* Narrow viewport: sit below the pin, centered, instead of to its right (which would overflow). */
    top: 50%;
    left: 50%;
    transform: translate(-50%, 18px);
    max-width: calc(100% - 32px);
  }
}

/* index.html additions */

/* ─── Hero slider (composite, synchronized) ─── */
.rl-main-hero__slider {
  position: relative;
}
.rl-main-hero__slider .slider-slide {
  flex: 0 0 100%;
  width: 100%;
}
.rl-main-hero__slider .slider-arrow {
  position: absolute;
  top: 46%;
  transform: translateY(-50%);
  z-index: 5;
  width: 48px;
  height: 48px;
  background: rgba(14, 42, 71, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  box-shadow: none;
}
.rl-main-hero__slider .slider-arrow:hover {
  background: rgba(14, 42, 71, 0.55);
}
.rl-main-hero__slider .slider-arrow--prev {
  left: 18px;
}
.rl-main-hero__slider .slider-arrow--next {
  right: 18px;
}

/* ─── Benefits row (sold jars + checklist) ─── */
.rl-home-benefits-row {
  display: flex;
  gap: 20px;
}
.rl-home-benefits-row__card {
  background: var(--rl-white);
  border-radius: 18px;
  padding: 32px;
  box-shadow: var(--rl-shadow-card);
  min-width: 505px;
}
.rl-home-benefits-row__card--dark {
  background: var(--rl-primary);
  display: flex;
  gap: 40px;
  height: min-content;
}
.rl-home-benefits-row__sold-num {
  display: block;
  font-family: var(--rl-font-body);
  font-weight: 800;
  font-size: 55px;
  color: var(--rl-accent);
  margin-bottom: 8px;
  text-align: center;
}
.rl-home-benefits-row__sold-desc {
  font-family: var(--rl-font-body);
  font-weight: 700;
  font-size: 20px;
  color: var(--rl-primary);
  margin-bottom: 4px;
  text-align: center;
}
.rl-home-benefits-row__sold-growth {
  font-family: var(--rl-font-body);
  font-size: 16px;
  color: var(--rl-text-muted);
  text-align: center;
}
.rl-home-checklist {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.rl-home-checklist__item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--rl-font-body);
  font-weight: 600;
  font-size: 16px;
  color: #dce7ef;
}
.rl-home-checklist__icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--rl-accent-light);
  color: var(--rl-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
}

/* ─── Delivery & payment row ─── */
.rl-home-delivery {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.rl-home-delivery__group {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.rl-home-delivery__text {
  font-family: var(--rl-font-body);
  font-weight: 600;
  font-size: 16px;
  color: var(--rl-primary);
  white-space: nowrap;
}
.rl-payment-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  padding: 0 10px;
  border-radius: 6px;
  background: var(--rl-white);
}
.rl-payment-logo--mastercard {
  width: 62px;
}
.rl-payment-logo--mastercard span {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: inline-block;
}
.rl-payment-logo--mastercard span:first-child {
  background: #eb001b;
  margin-right: -8px;
}
.rl-payment-logo--mastercard span:last-child {
  background: #f79e1b;
  opacity: 0.85;
}
.rl-payment-logo--visa {
  font-family: var(--rl-font-body);
  font-weight: 800;
  font-style: italic;
  font-size: 16px;
  color: #142fbd;
  letter-spacing: 0.5px;
}

/* ─── Generic left-aligned section header (Testimonials / Why / FAQ) ─── */
.rl-home-section-header {
  margin-bottom: 30px;
}
.rl-home-section-header {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.rl-home-section-header .rl-section-label {
  display: block;
  margin-bottom: 12px;
}

/* ─── Testimonials ─── */
.rl-testimonials {
  background: var(--rl-bg);
  padding: 40px 0;
}
.rl-testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}
.rl-testimonial-card {
  background: var(--rl-white);
  border-radius: 18px;
  padding: 24px;
  box-shadow: var(--rl-shadow-card);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.rl-testimonial-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.rl-testimonial-card__stars {
  color: var(--rl-gold);
  font-size: 18px;
  letter-spacing: 2px;
}
.rl-testimonial-card__badge {
  background: var(--rl-success-bg);
  color: var(--rl-success-text);
  font-family: var(--rl-font-body);
  font-weight: 600;
  font-size: 12px;
  padding: 4px 12px;
  border-radius: 999px;
}
.rl-testimonial-card__quote {
  font-family: var(--rl-font-body);
  font-size: 16px;
  line-height: 1.5;
  color: #3a454f;
}
.rl-testimonial-card__image {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 35px;
}
.rl-testimonial-card__footer {
  display: flex;
  align-items: center;
  gap: 12px;
}
.rl-testimonial-card__avatar {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--rl-grad-cta);
  color: var(--rl-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--rl-font-body);
  font-weight: 700;
}
.rl-testimonial-card__info {
  display: flex;
  flex-direction: column;
}
.rl-testimonial-card__name {
  font-family: var(--rl-font-body);
  font-weight: 600;
  font-size: 15px;
  color: var(--rl-primary);
}
.rl-testimonial-card__meta {
  font-family: var(--rl-font-body);
  font-size: 13px;
  color: var(--rl-text-muted);
}
.rl-testimonial-card__caution {
  font-family: var(--rl-font-body);
  font-size: 12px;
  color: #5a6478;
  margin-left: 80px;
}
/* Reviews grid starts collapsed to the first 6 cards; the rest reveal on
   .is-expanded (toggled by initReviewsToggle() in script.js). */
.rl-testimonials__grid--reviews .rl-testimonial-card:nth-child(n + 7) {
  display: none;
}
.rl-testimonials__grid--reviews.is-expanded
  .rl-testimonial-card:nth-child(n + 7) {
  display: flex;
}
.rl-testimonials__more {
  text-align: center;
  margin-bottom: 24px;
}
.rl-testimonials__legal {
  font-family: var(--rl-font-body);
  font-size: 12px;
  line-height: 1.5;
  color: var(--rl-text-light);
  text-align: center;
}

/* ─── Why Relivital ─── */
.rl-why {
  background: var(--rl-bg);
  padding: 40px 0;
}
.rl-why__layout {
  display: grid;
  grid-template-columns: 1fr 651px;
  gap: 40px;
  margin-bottom: 40px;
}
.rl-why-tabs {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.rl-why-tabs__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 24px;
  border-radius: 14px;
  background: var(--rl-white);
  text-align: left;
  transition:
    background 0.2s,
    color 0.2s;
}
.rl-why-tabs__label {
  font-family: var(--rl-font-body);
  font-weight: 700;
  font-size: 18px;
  color: var(--rl-primary);
}
.rl-why-tabs__num {
  font-family: var(--rl-font-display);
  font-weight: 700;
  font-size: 20px;
  color: var(--rl-primary);
  flex-shrink: 0;
}
.rl-why-tabs__item--active {
  background: var(--rl-primary);
}
.rl-why-tabs__item--active .rl-why-tabs__label,
.rl-why-tabs__item--active .rl-why-tabs__num {
  color: var(--rl-white);
}
.rl-why-card {
  background: var(--rl-bg-blue);
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: min-content;
}
.rl-why-card__image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.rl-why-card__text {
  padding: 24px;
  font-family: var(--rl-font-body);
  font-size: 16px;
  line-height: 1.5;
  color: #41505c;
}
.rl-why__cta {
  text-align: center;
}

/* Why Relivital mobile accordion */
.rl-why-accordion.mobile-only {
  display: none;
}
.rl-why-accordion .rl-accordion__item {
  background: var(--rl-white);
  border-radius: 14px;
  border-bottom: none;
  margin-bottom: 10px;
  padding: 0 20px;
}
.rl-why-accordion .rl-accordion__item.is-open {
  background: var(--rl-primary);
}
.rl-why-accordion .rl-accordion__header {
  padding: 16px 0;
  gap: 16px;
  justify-content: flex-start;
}
.rl-why-accordion__num {
  font-family: var(--rl-font-display);
  font-weight: 700;
  font-size: 20px;
  color: var(--rl-primary);
  flex-shrink: 0;
}
.rl-why-accordion__label {
  font-family: var(--rl-font-body);
  font-weight: 700;
  font-size: 16px;
  color: var(--rl-primary);
}
.rl-why-accordion .rl-accordion__item.is-open .rl-why-accordion__num,
.rl-why-accordion .rl-accordion__item.is-open .rl-why-accordion__label {
  color: var(--rl-white);
}
.rl-why-accordion .rl-accordion__body {
  padding: 0 0 20px;
}
.rl-why-accordion .rl-accordion__body .rl-why-card {
  background: var(--rl-bg-blue);
}
.rl-why-accordion .rl-accordion__body .rl-why-card__text {
  color: #41505c;
}

/* ─── Skin test extras ─── */
.rl-skin-test__content {
  display: flex;
  flex-direction: column;
  padding: 20px 40px;
  gap: 4px;
  align-items: flex-start;
}
.rl-skin-test__eyebrow {
  font-family: var(--rl-font-body);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1px;
  color: var(--rl-accent-light);
  margin-bottom: 8px;
}
.rl-skin-test__note {
  font-family: var(--rl-font-body);
  font-size: 14px;
  color: var(--rl-text-dim);
  margin-top: 12px;
}
.rl-skin-test__desc {
  margin-bottom: 24px;
}
.rl-skin-test__title {
  margin-bottom: 12px;
  line-height: 1.21;
}

/* Gold CTA button variant (reused: skin test + guarantee banner) */
.rl-btn--gold {
  background: var(--rl-gold);
  color: #3a2c06;
  box-shadow: none;
}

/* ─── Bestseller CTA banner extras ─── */
.rl-home-badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 16px;
  background: var(--rl-gold);
  color: var(--rl-white);
  font-family: var(--rl-font-body);
  font-weight: 700;
  font-size: 13px;
  border-radius: 999px;
  margin-bottom: 16px;
}
.rl-home-bestseller__desc {
  font-family: var(--rl-font-body);
  font-size: 18px;
  line-height: 1.5;
  color: #41505c;
  margin: 12px 0 24px;
}
.rl-home-benefit-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}
.rl-home-benefit-icon {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--rl-white);
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: var(--rl-shadow-card);
  font-family: var(--rl-font-body);
  font-weight: 600;
  font-size: 14px;
  color: var(--rl-primary);
}
.rl-home-benefit-icon img {
  height: 41px;
  width: 41px;
}
.rl-home-benefit-icon__circle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--rl-primary);
  color: var(--rl-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
}

/* ─── FAQ section ─── */
.rl-home-faq {
  background: var(--rl-bg-card);
  padding: 40px 0;
}
.rl-home-faq__list {
  max-width: 820px;
  margin: 0 auto 40px;
}
.rl-accordion__question {
  font-family: var(--rl-font-body);
  font-weight: 600;
  font-size: 18px;
  color: var(--rl-primary);
}

/* ─── Trust bar layout ─── */
.rl-trust-bar__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 30px;
  max-width: calc(var(--rl-container) + 50px);
}
.rl-trust-bar__check {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--rl-accent-light);
  color: var(--rl-primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  margin-right: 8px;
}
.rl-home-guarantee {
  background: linear-gradient(135deg, #12345b 0%, #0e2a47 100%) !important;
}

/* ─── Final guarantee banner extras ─── */
.rl-home-guarantee__eyebrow {
  font-family: var(--rl-font-body);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1px;
  color: var(--rl-accent-light);
  margin-bottom: 12px;
}
.rl-home-guarantee__desc {
  font-family: var(--rl-font-body);
  font-size: 18px;
  line-height: 1.5;
  color: #c7d6e2;
  margin: 16px 0 24px;
}
.rl-home-guarantee__footer {
  font-family: var(--rl-font-body);
  font-size: 14px;
  color: var(--rl-text-dim);
  margin-top: 16px;
}

/* ─────────────────────────────────────────────
   RESPONSIVE — Tablet (max-width: 1024px)
   ───────────────────────────────────────────── */
@media screen and (max-width: 1024px) {
  .rl-home-benefits-row__card--dark {
    flex-direction: column;
    gap: 15px !important;
    justify-content: center;
  }
  .rl-home-benefits-row__card--dark ul {
    justify-content: center;
  }
  .rl-home-benefits-row__card {
    min-width: 100%;
  }

  .rl-home-benefits-row {
    flex-direction: column;
  }
  .rl-home-delivery {
    flex-direction: column;
    align-items: flex-start;
  }
  .rl-testimonials__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .rl-why__layout {
    grid-template-columns: 1fr;
  }
  .rl-why-card__image {
    height: 220px;
  }
  .rl-home-benefit-icons {
    flex-direction: column;
  }
  .rl-home-benefit-icon {
    width: 100%;
  }
}

/* ─────────────────────────────────────────────
   RESPONSIVE — Mobile (max-width: 768px)
   ───────────────────────────────────────────── */
@media screen and (max-width: 768px) {
  .rl-testimonial-card__caution {
    margin-left: 0px;
    text-align: right;
  }
  .rl-home-benefits-row {
    gap: 16px;
  }
  .rl-home-benefits-row__card {
    padding: 24px;
    border-radius: 14px;
  }

  .rl-home-benefits-row__sold-desc {
    font-size: 17px;
  }

  .rl-home-delivery__group {
    gap: 12px;
    margin: 0 auto;
  }
  .rl-home-delivery__text {
    white-space: normal;
  }

  .rl-testimonials {
    padding: 40px 0;
  }
  .rl-testimonials__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .rl-testimonial-card__image {
    height: 260px;
  }

  .rl-why {
    padding: 40px 0;
  }
  .rl-why .rl-home-section-header {
    text-align: center;
    margin-bottom: 20px;
  }
  .rl-why-accordion .rl-accordion__header {
    gap: 12px;
  }
  .rl-why-accordion .rl-accordion__item:not(.is-open) {
    border-color: var(--rl-border-tan);
  }
  .rl-why-accordion .rl-accordion__body .rl-why-card__image {
    height: auto;
  }
  .rl-why__cta {
    text-align: center;
  }
  .rl-why__cta .rl-btn {
    width: 100%;
    font-size: 18px;
    padding: 16px 24px;
  }

  .rl-skin-test__content {
    align-items: flex-start;
  }

  .rl-home-bestseller__desc {
    font-size: 16px;
  }
  .rl-home-benefit-icons {
    flex-direction: column;
  }

  .rl-home-faq {
    padding: 40px 0;
  }
  .rl-accordion__question {
    font-size: 16px;
  }

  .rl-trust-bar__inner {
    gap: 16px;
    flex-direction: column;
    align-items: flex-start;
  }

  .rl-home-guarantee__desc {
    font-size: 16px;
  }
}

/* product-page.html additions */

/* .rl-testimonials*, .rl-home-section-header, .rl-trust-bar__*, .rl-btn--gold,
   .rl-payment-logo*, .rl-home-faq*, .rl-accordion__question are shared with
   index.html — defined once above (see "index.html additions"). */
.rl-product-reply {
  background: var(--rl-bg-blue);
  border-radius: 12px;
  padding: 12px 16px;
  font-family: var(--rl-font-body);
  font-size: 14px;
  color: #3a454f;
}

/* ─── HERO extras ─── */
.rl-hero__cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.rl-hero__price-block {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.rl-hero__price-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.rl-hero__price-current {
  font-family: var(--rl-font-body);
  font-weight: 700;
  font-size: 26px;
  color: var(--rl-primary);
}
.rl-hero__price-badge {
  background: var(--rl-success-bg);
  color: var(--rl-success-text);
  font-family: var(--rl-font-body);
  font-weight: 700;
  font-size: 14px;
  padding: 4px 14px;
  border-radius: 999px;
}
.rl-hero__price-original {
  font-family: var(--rl-font-body);
  font-size: 16px;
  color: var(--rl-text-cool);
  text-decoration: line-through;
}
.rl-hero__price-note {
  font-family: var(--rl-font-body);
  font-size: 15px;
  color: var(--rl-primary);
}
.rl-hero__disclaimer {
  font-family: var(--rl-font-body);
  font-size: 13px;
  color: #5a6478;
}
.rl-hero__proof {
  max-width: 483px;
}
.rl-hero__media {
  position: relative;
  flex-shrink: 0;
}
.rl-hero__photo {
  width: 380px;
  height: 507px;
  object-fit: cover;
  border-radius: 35px;
  background: var(--rl-white);
}
.rl-hero__media-badge {
  position: absolute;
  right: 20px;
  bottom: 20px;
  background: var(--rl-white);
  border-radius: 16px;
  box-shadow: var(--rl-shadow-card);
  padding: 14px 18px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.rl-hero__media-badge-vol {
  font-family: var(--rl-font-body);
  font-weight: 700;
  font-size: 18px;
  color: var(--rl-accent);
}
.rl-hero__media-badge-note {
  font-family: var(--rl-font-body);
  font-size: 13px;
  line-height: 1.3;
  color: var(--rl-text-slate);
}

/* ─── Benefit listicle pills ─── */
.rl-product-benefits {
  background: var(--rl-white);
  padding: 24px 0;
}
.rl-product-benefits__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}
.rl-product-benefits__item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--rl-bg-blue);
  border-radius: 999px;
  padding: 10px 20px;
  font-family: var(--rl-font-body);
  font-weight: 600;
  font-size: 15px;
  color: var(--rl-primary);
}
.rl-product-benefits__check {
  color: var(--rl-accent);
  font-weight: 700;
}

/* ─── 3 zones intro ─── */
.rl-product-zones-intro {
  background: var(--rl-bg-card);
  padding: 40px 0;
}
.rl-product-zones-intro__grid {
  display: grid;
  grid-template-columns: 480px 1fr;
  gap: 60px;
  align-items: center;
}
.rl-product-zones-intro__text {
  font-family: var(--rl-font-body);
  font-size: 16px;
  line-height: 1.5;
  color: var(--rl-text-slate);
  margin-top: 12px;
}
.rl-product-zones-intro__media img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 35px;
}
.rl-product-stats-mini {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 24px;
}
.rl-product-stats-mini__item {
  background: var(--rl-white);
  border-radius: 14px;
  padding: 20px;
  box-shadow: var(--rl-shadow-card);
  text-align: center;
}
.rl-product-stats-mini__num {
  display: block;
  font-family: var(--rl-font-body);
  font-weight: 700;
  font-size: 24px;
  color: var(--rl-accent);
  margin-bottom: 4px;
}
.rl-product-stats-mini__label {
  font-family: var(--rl-font-body);
  font-size: 14px;
  color: var(--rl-text-slate);
}

/* ─── Delivery / payment logos bar ─── */
.rl-product-logos-bar {
  background: var(--rl-bg-blue);
  padding: 20px 0;
}
.rl-product-logos-bar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px 48px;
}
.rl-product-logos-bar__group {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin: 0 auto;
  justify-content: center;
}
.rl-product-logos-bar__text {
  font-family: var(--rl-font-body);
  font-weight: 600;
  font-size: 16px;
  color: var(--rl-primary);
  white-space: nowrap;
}

/* ─── Comparison ─── */
.rl-product-comparison {
  background: var(--rl-bg-card);
  padding: 40px 0;
  text-align: center;
}
.rl-product-comparison__header {
  max-width: 820px;
  margin: 0 auto 32px;
}
.rl-product-comparison__image {
  max-width: 800px;
  width: 100%;
  height: auto;
  border-radius: 35px;
  margin: 0 auto;
  box-shadow: var(--rl-shadow-card);
}
.rl-product-comparison__footnote {
  font-family: var(--rl-font-body);
  font-size: 13px;
  color: var(--rl-text-light);
  margin-top: 16px;
}

/* ─── CTA strip ─── */
.rl-product-cta-strip {
  background: var(--rl-grad-cta);
  padding: 40px 0;
}
.rl-product-zones__highlight {
  border-left: 4px solid #1f8a99;
  border-top-left-radius: 0 !important;
  border-bottom-left-radius: 0 !important;
}
.rl-cards-section__title-zones {
  text-align: left;
}
.rl-product-cta-strip__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 24px;
}
.rl-product-cta-strip__title {
  font-family: var(--rl-font-display);
  font-weight: 700;
  font-size: 32px;
  line-height: 1.21;
  color: var(--rl-white);
  max-width: 680px;
}

/* ─── Zones (detailed) ─── */
.rl-product-zones {
  background: var(--rl-grad-main);
  padding: 40px 0;
}
.rl-product-zones__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.rl-product-zones__media {
  position: relative;
  border-radius: 35px;
  overflow: hidden;
}
.rl-product-zones__media img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  display: block;
}
.rl-product-zones__pills {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
  padding: 24px;
}
.rl-product-zones__pill {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: var(--rl-white);
  border-radius: 16px;
  padding: 14px 16px;
  max-width: 300px;
  width: 100%;
  box-shadow: var(--rl-shadow-card);
}
.rl-product-zones__pill-dot {
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--rl-accent);
  margin-top: 6px;
}
.rl-product-zones__pill-title {
  font-family: var(--rl-font-body);
  font-weight: 600;
  font-size: 15px;
  color: var(--rl-primary);
}
.rl-product-zones__pill-desc {
  font-family: var(--rl-font-body);
  font-size: 13px;
  color: var(--rl-text-muted);
}
.rl-product-zones__highlight {
  background: var(--rl-white);
  border-radius: 12px;
  padding: 20px;
  margin: 16px 0;
}
.rl-product-zones__highlight p {
  font-family: var(--rl-font-body);
  font-size: 16px;
  color: var(--rl-primary);
}
.rl-product-zones__subheading {
  font-family: var(--rl-font-body);
  font-weight: 600;
  font-size: 20px;
  color: var(--rl-primary);
  margin-bottom: 8px;
}
.rl-product-zones__content .rl-btn {
  margin-top: 16px;
}

/* ─── Ingredients ─── */
.rl-product-ingredients {
  background: var(--rl-bg-blue);
  padding: 40px 0;
}
/* Ingredients carousel — native scroll-snap, one card per step */
.rl-ingredients-slider__track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-bottom: 2px;
}
.rl-ingredients-slider__track::-webkit-scrollbar {
  display: none;
}
.rl-ingredient-card {
  scroll-snap-align: start;
  flex: 0 0 calc((100% - 72px) / 3.5);
  background: var(--rl-white);
  border: 1px solid var(--rl-border-tan);
  border-radius: 18px;
  overflow: hidden;
}
.rl-ingredient-card__image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.rl-ingredient-card__body {
  padding: 20px;
}
.rl-ingredient-card__title {
  font-family: var(--rl-font-display);
  font-weight: 700;
  font-size: 20px;
  color: var(--rl-primary);
  margin-bottom: 8px;
}
.rl-ingredient-card__desc {
  font-family: var(--rl-font-body);
  font-size: 14px;
  line-height: 1.5;
  color: var(--rl-text-slate);
  margin-bottom: 12px;
}
.rl-ingredient-card__tag {
  display: inline-block;
  background: #e3f3f4;
  color: var(--rl-accent);
  font-family: var(--rl-font-body);
  font-weight: 600;
  font-size: 13px;
  padding: 4px 14px;
  border-radius: 999px;
}

.rl-ingredients-slider__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 24px;
}
.rl-ingredients-slider__arrow {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border-radius: 999px;
  background: var(--rl-white);
  border: 1px solid var(--rl-border-tan);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
}
.rl-ingredients-slider__arrow svg {
  width: 7px;
  height: 12px;
}
.rl-ingredients-slider__arrow:hover {
  background: var(--rl-bg-blue);
}
.rl-ingredients-slider__arrow:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}
.rl-ingredients-slider__dots {
  display: flex;
  align-items: center;
  gap: 8px;
}
.rl-ingredients-slider__dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--rl-text-dim);
  padding: 0;
  cursor: pointer;
  transition:
    background 0.2s,
    transform 0.2s;
}
.rl-ingredients-slider__dot--active {
  width: 10px;
  height: 10px;
  background: var(--rl-accent);
}
.rl-product-ingredients__cta {
  text-align: center;
  margin-top: 32px;
}

/* ─── Timeline / expectations ─── */
.rl-product-timeline {
  background: var(--rl-grad-hero);
  padding: 40px 0;
}
.rl-product-timeline__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.rl-product-timeline__media img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 35px;
}
.rl-product-timeline__caption {
  font-family: var(--rl-font-body);
  font-size: 13px;
  color: var(--rl-text-cool);
  margin-top: 12px;
}
.rl-product-timeline__content .rl-product-zones-intro__text {
  margin-top: 8px;
  margin-bottom: 24px;
}
.rl-product-timeline__list {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-left: 40px;
  margin-bottom: 24px;
}
.rl-product-timeline__list::before {
  content: "";
  position: absolute;
  left: 11px;
  top: 12px;
  bottom: 12px;
  width: 2px;
  background: #d7e3ea;
}
.rl-product-timeline__item {
  position: relative;
}
.rl-product-timeline__marker {
  position: absolute;
  left: -40px;
  top: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--rl-white);
  border: 2px solid #d7e3ea;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: var(--rl-white);
}
.rl-product-timeline__item--active .rl-product-timeline__marker {
  background: var(--rl-accent);
  border-color: var(--rl-accent);
}
.rl-product-timeline__item-title {
  font-family: var(--rl-font-body);
  font-weight: 700;
  font-size: 18px;
  color: var(--rl-primary);
}
.rl-product-timeline__item-title em {
  font-style: normal;
  font-weight: 600;
  color: var(--rl-accent-dark);
}
.rl-product-timeline__item-text {
  font-family: var(--rl-font-body);
  font-size: 15px;
  color: #5a6478;
  margin-top: 4px;
}
.rl-home-benefit-icons-about {
  flex-direction: row !important;
  flex-wrap: nowrap !important;
}
.rl-home-benefit-icons-about .rl-home-benefit-icon {
  background-color: transparent !important;
  border: none !important;
  box-shadow: none !important;
  justify-content: center !important;
  flex-direction: column !important;
  color: #5c6873;
  font-weight: 400;
}
.rl-product-timeline__tip {
  background: var(--rl-bg);
  border-radius: 16px;
  padding: 18px 20px;
  border: 1px solid #e8e3dc;
  box-shadow: 0 4px 12px rgba(180, 170, 160, 0.15);
}
.rl-product-timeline__tip p {
  font-family: var(--rl-font-body);
  font-size: 15px;
  color: var(--rl-primary);
}

/* ─── Reviews rating pill ─── */
.rl-product-rating-pill {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--rl-white);
  border-radius: 999px;
  padding: 14px 28px;
  box-shadow: var(--rl-shadow-card);
  margin-top: 8px;
}
.rl-product-rating-pill__num {
  font-family: var(--rl-font-body);
  font-weight: 700;
  font-size: 20px;
  color: var(--rl-primary);
}
.rl-product-rating-pill__stars {
  color: var(--rl-gold);
  font-size: 18px;
  letter-spacing: 2px;
}
.rl-product-rating-pill__label {
  font-family: var(--rl-font-body);
  font-size: 14px;
  color: var(--rl-text-slate);
}

/* .rl-home-benefit-icons / .rl-home-benefit-icon / .rl-home-benefit-icon__circle
   are shared with index.html — defined once above. */

/* ─── Offer / pricing section ─── */
.rl-product-offer {
  background: var(--rl-grad-dark);
  padding: 40px 0;
}
.rl-product-offer__header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 40px;
}
.rl-product-offer__desc {
  font-family: var(--rl-font-body);
  font-size: 18px;
  line-height: 1.4;
  color: #c7d6e2;
  margin-top: 12px;
}
/* ── Compact package picker: quantity tabs + single detail card ── */
.rl-offer-select {
  max-width: 600px;
  margin: 0 auto 24px;
  background: var(--rl-white);
  border-radius: 22px;
  padding: 22px 18px;
}
.rl-offer-select__title {
  font-family: var(--rl-font-body);
  font-size: 15px;
  font-weight: 800;
  color: var(--rl-primary);
  margin-bottom: 12px;
  text-align: center;
}

.rl-offer-select__cta a {
  text-align: center;
  margin: 32px 0 0;
  position:relative;
  overflow:hidden;
  width:100%;
  border:none;
  border-radius:40px;
  background:var(--rl-grad-cta);
  color:#fff;
  font-size:16px;
  font-weight:800;
  padding:15px;
  cursor:pointer;
  box-shadow:0 12px 26px rgba(23,165,170,.4);
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
}
.rl-offer-select__cta a:hover{
  opacity: 0.9;
}
.rl-offer-select__cta a::before{
  content:"";
  position:absolute;
  top:0;
  left:-60%;
  width:45%;
  height:100%;
  background:linear-gradient(100deg, rgba(255,255,255,0) 0%, rgba(255,255,255,.55) 50%, rgba(255,255,255,0) 100%);
  transform:skewX(-20deg);
  animation:shine 2.6s ease-in-out infinite;
}
@keyframes shine{
  0%   {left:-60%}
  55%  {left:120%}
  100% {left:120%}
}
.rl-offer-select__cta a > *{position:relative;z-index:1}



.rl-offer-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 8px;
  margin-bottom: 18px;
}
/* Desktop-only card content (photo, description, full price block, delivery row) and the
   always-visible desktop gift card — hidden here, shown in the ≥1025px block below. */
.rl-offer-tab__img,
.rl-offer-tab__desc,
.rl-offer-tab__prices,
.rl-offer-tab__deliv,
.rl-offer-gift--desktop {
  display: none;
}
.rl-offer-tab {
  position: relative;
  border: 2px solid var(--rl-border-subtle);
  border-radius: 12px;
  padding: 30px 4px 12px;
  text-align: center;
  cursor: pointer;
  background: var(--rl-white);
  overflow: hidden;
  transition:
    border-color 0.15s,
    box-shadow 0.15s;
}
.rl-offer-tab:hover {
  border-color: #b9c6d2;
}
.rl-offer-tab--active {
  border-color: var(--rl-accent-light);
  box-shadow: 0 8px 20px rgba(63, 182, 192, 0.25);
}
.rl-offer-tab__qty {
  display: block;
  font-family: var(--rl-font-body);
  font-size: 14.5px;
  font-weight: 800;
  line-height: 1.15;
  color: var(--rl-primary);
}
.rl-offer-tab__save {
  display: block;
  margin-top: 7px;
  font-family: var(--rl-font-body);
  font-size: 12px;
  font-weight: 800;
  color: var(--rl-danger);
  line-height: 1.2;
}
.rl-offer-tab__save small {
  display: block;
  font-size: 9px;
  color: var(--rl-text-slate);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 1px;
}
.rl-offer-tab__badge {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  font-family: var(--rl-font-body);
  font-size: 8px;
  font-weight: 800;
  color: var(--rl-white);
  padding: 4px 2px;
  line-height: 1.1;
  white-space: normal;
  border-radius: 9px 9px 0 0;
}
.rl-offer-tab__badge--rec {
  background: var(--rl-accent-light);
}
.rl-offer-tab__badge--best {
  background: var(--rl-gold);
}

.rl-offer-detail {
  border: 2px solid var(--rl-accent-light);
  border-radius: 16px;
  padding: 18px 16px;
  background: var(--rl-bg-card);
  position: relative;
}
.rl-offer-detail__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 10px;
}
.rl-offer-detail__radio-row {
  display: flex;
  gap: 12px;
}
.rl-offer-detail__radio {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 6px solid var(--rl-accent-light);
  flex: none;
  margin-top: 3px;
  background: var(--rl-white);
}
.rl-offer-detail__title {
  font-family: var(--rl-font-body);
  font-size: 19px;
  font-weight: 800;
  line-height: 1.15;
  color: var(--rl-primary);
}
.rl-offer-detail__tag {
  font-family: var(--rl-font-body);
  font-size: 12.5px;
  color: var(--rl-accent-light);
  font-weight: 700;
  margin-top: 2px;
}
.rl-offer-detail__price {
  text-align: right;
  flex: none;
}
.rl-offer-detail__price-old-row {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
  flex-wrap: wrap;
}
.rl-offer-detail__price-old {
  color: var(--rl-text-cool);
  text-decoration: line-through;
  font-size: 15px;
  font-weight: 600;
  white-space: nowrap;
}
.rl-offer-detail__disc {
  background: var(--rl-danger);
  color: var(--rl-white);
  font-size: 11px;
  font-weight: 800;
  padding: 2px 7px;
  border-radius: 6px;
  letter-spacing: 0.02em;
}
.rl-offer-detail__price-new {
  font-family: var(--rl-font-body);
  font-size: 28px;
  font-weight: 800;
  color: var(--rl-primary);
  display: block;
  line-height: 1.05;
  margin-top: 2px;
}
.rl-offer-detail__price-per {
  font-family: var(--rl-font-body);
  font-size: 12px;
  color: var(--rl-text-slate);
  font-weight: 700;
  letter-spacing: 0.02em;
}

.rl-offer-save-pill {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: #fdeceb;
  color: var(--rl-danger);
  font-family: var(--rl-font-body);
  font-size: 14px;
  font-weight: 700;
  border-radius: 10px;
  padding: 10px;
  margin: 16px 0 12px;
}
.rl-offer-save-pill b {
  font-weight: 800;
}

.rl-offer-gift {
  border-radius: 12px;
  overflow: hidden;
  margin: 12px 0;
  border: 1px solid #d3e7e8;
}
.rl-offer-gift.is-hidden {
  display: none;
}
.rl-offer-gift__head {
  background: linear-gradient(90deg, var(--rl-primary), var(--rl-accent-light));
  color: var(--rl-white);
  font-family: var(--rl-font-body);
  font-size: 12.5px;
  font-weight: 800;
  padding: 8px 12px;
  display: flex;
  align-items: center;
  gap: 7px;
}
.rl-offer-gift__body {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 12px;
  background: var(--rl-white);
}
.rl-offer-gift__img {
  width: 64px;
  height: 64px;
  border-radius: 10px;
  flex: none;
  object-fit: cover;
  border: 1px solid #d3e7e8;
  background: #eef7f7;
}
.rl-offer-gift__title {
  font-family: var(--rl-font-body);
  font-size: 14px;
  font-weight: 800;
  color: var(--rl-primary);
  margin-bottom: 3px;
}
.rl-offer-gift__sub {
  font-family: var(--rl-font-body);
  font-size: 11.5px;
  color: var(--rl-text-slate);
  line-height: 1.45;
}
.rl-offer-gift__val {
  color: var(--rl-accent-light);
  font-weight: 800;
}

.rl-offer-deliv {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--rl-white);
  border: 1px solid var(--rl-border-subtle);
  border-radius: 10px;
  padding: 12px 14px;
  font-family: var(--rl-font-body);
  font-size: 13.5px;
  font-weight: 700;
  margin-top: 4px;
}
.rl-offer-deliv__label {
  color: var(--rl-text-slate);
  font-weight: 600;
}
.rl-offer-deliv__value--free {
  color: var(--rl-accent-light);
}
.rl-offer-deliv__value--paid {
  color: var(--rl-text-slate);
}

.rl-offer-nudge {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  text-align: center;
  background: #eef7f7;
  border: 1px dashed var(--rl-accent-light);
  color: var(--rl-accent-light);
  font-family: var(--rl-font-body);
  font-size: 12.5px;
  font-weight: 700;
  line-height: 1.35;
  border-radius: 10px;
  padding: 10px 12px;
  margin-top: 12px;
}
.rl-offer-nudge.is-hidden {
  display: none;
}

/* Very narrow screens (≤380px) — free up room for the tab labels */
@media (max-width: 380px) {
  .rl-offer-select {
    padding: 20px 12px;
  }
  .rl-offer-tabs {
    gap: 6px;
  }
  .rl-offer-tab {
    padding: 28px 3px 10px;
  }
  .rl-offer-tab__qty {
    font-size: 13.5px;
  }
  .rl-offer-tab__save {
    font-size: 11.5px;
  }
  .rl-offer-detail__title {
    font-size: 17px;
  }
  .rl-offer-detail__price-new {
    font-size: 25px;
  }
}

.rl-product-offer__disclaimer {
  font-family: var(--rl-font-body);
  font-size: 12px;
  color: var(--rl-text-dim);
  text-align: center;
  max-width: 900px;
  margin: 0 auto 32px;
}

.rl-offer-trust {
  position: relative;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: var(--rl-white);
  border-radius: 18px;
  padding: 28px;
  max-width: 820px;
  margin: 0 auto;
}
.rl-offer-trust img {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: -30px;
}
.rl-offer-trust__icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--rl-success-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}
.rl-offer-trust__title {
  font-family: var(--rl-font-display);
  font-weight: 700;
  font-size: 18px;
  color: var(--rl-primary);
  margin-bottom: 8px;
  text-align: center;
}
.rl-offer-trust__text {
  font-family: var(--rl-font-body);
  font-size: 15px;
  line-height: 1.5;
  color: var(--rl-text-slate);
  text-align: center;
}

/* ── Desktop card layout for the offer/pricing section (product-page only — scoped to
   .rl-product-offer--cards so pages/index.php's identical markup keeps the mobile picker). ── */
@media screen and (min-width: 1025px) {
  .rl-product-offer--cards .rl-product-offer__desc {
    font-size: 20px;
  }

  .rl-product-offer--cards .rl-offer-select {
    max-width: 1080px;
    background: transparent;
    border-radius: 0;
    padding: 0;
    margin: 0 auto;
  }
  .rl-product-offer--cards .rl-offer-select__title,
  .rl-product-offer--cards .rl-offer-detail {
    display: none;
  }

  .rl-product-offer--cards .rl-offer-tabs {
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    align-items: stretch;
    padding-top: 21px;
    margin-bottom: 0;
  }
  .rl-product-offer--cards .rl-offer-tab {
    overflow: visible;
    border-width: 5px;
    border-color: transparent;
    border-radius: 18px;
    padding: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-align: center;
  }
  .rl-product-offer--cards .rl-offer-tab:hover {
    border-color: #cfe9ec;
  }
  .rl-product-offer--cards .rl-offer-tab--active {
    border-color: var(--rl-accent-light);
    box-shadow: 0 0 0 6px rgba(63, 182, 192, 0.18);
  }
  .rl-product-offer--cards .rl-offer-tab--active:hover {
    border-color: var(--rl-accent-light);
  }

  .rl-product-offer--cards .rl-offer-tab__badge {
    position: absolute;
    top: -15px;
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    padding: 5px 13px;
    border-radius: 5px;
    font-size: 16px;
    white-space: nowrap;
  }

  .rl-product-offer--cards .rl-offer-tab__img {
    display: block;
    width: 100%;
    aspect-ratio: 300 / 170;
    overflow: hidden;
    border-radius: 8px;
  }
  .rl-product-offer--cards .rl-offer-tab__img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  .rl-product-offer--cards .rl-offer-tab__img--4 img {
    object-position: 55% 30%;
  }
  .rl-product-offer--cards .rl-offer-tab__img--2 img {
    object-position: 50% 30%;
  }
  .rl-product-offer--cards .rl-offer-tab__img--1 img {
    object-position: 50% 30%;
  }

  .rl-product-offer--cards .rl-offer-tab__qty {
    font-size: 20px;
    font-weight: 700;
  }
  .rl-product-offer--cards .rl-offer-tab__desc {
    display: block;
    font-family: var(--rl-font-body);
    font-size: 18px;
    font-weight: 400;
    color: var(--rl-text-blue2);
  }
  .rl-product-offer--cards .rl-offer-tab__save {
    font-size: 16px;
  }
  .rl-product-offer--cards .rl-offer-tab__save small {
    display: inline;
    font-size: inherit;
    color: inherit;
    font-weight: inherit;
    text-transform: none;
    letter-spacing: normal;
    margin-bottom: 0;
  }

  .rl-product-offer--cards .rl-offer-tab__prices {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    width: 100%;
  }
  .rl-product-offer--cards .rl-offer-tab__price-row {
    display: flex;
    gap: 5px;
    align-items: center;
    justify-content: center;
  }
  .rl-product-offer--cards .rl-offer-tab__price-now {
    font-size: 36px;
    font-weight: 700;
    color: var(--rl-primary);
    white-space: nowrap;
  }
  .rl-product-offer--cards .rl-offer-tab__price-old {
    font-size: 20px;
    font-weight: 500;
    color: var(--rl-text-cool);
    text-decoration: line-through;
    white-space: nowrap;
  }
  .rl-product-offer--cards .rl-offer-tab__disc {
    background: var(--rl-danger);
    color: var(--rl-white);
    font-weight: 700;
    font-size: 14px;
    padding: 4px 10px;
    border-radius: 999px;
    white-space: nowrap;
  }
  .rl-product-offer--cards .rl-offer-tab__perday {
    font-size: 18px;
    font-weight: 700;
    color: var(--rl-primary);
    white-space: nowrap;
  }

  .rl-product-offer--cards .rl-offer-tab__deliv {
    display: flex;
    width: 100%;
    justify-content: space-between;
    font-weight: 600;
    font-size: 14px;
    color: var(--rl-text-slate);
    white-space: nowrap;
  }

  .rl-product-offer--cards .rl-offer-select__cta {
    max-width: 1080px;
    margin: 32px auto 0;
  }

  .rl-product-offer--cards .rl-offer-gift--desktop {
    display: flex;
    flex-direction: column;
    width: 394px;
    margin: 20px auto;
    border-radius: 24px;
    border: 1px solid var(--rl-border-faint);
    box-shadow: 0 18px 40px -12px rgba(0, 0, 0, 0.08);
    overflow: hidden;
  }
  .rl-product-offer--cards .rl-offer-gift--desktop .rl-offer-gift__head {
    font-size: 16px;
  }
  .rl-product-offer--cards .rl-offer-gift--desktop .rl-offer-gift__img {
    width: 75px;
    height: 75px;
    border-radius: 15px;
  }
  .rl-product-offer--cards .rl-offer-gift--desktop .rl-offer-gift__title {
    font-size: 16px;
  }
  .rl-product-offer--cards .rl-offer-gift--desktop .rl-offer-gift__sub {
    font-size: 12px;
  }

  .rl-product-offer--cards .rl-offer-trust {
    border: 1px solid var(--rl-border-tan);
    filter: drop-shadow(0 10px 15px rgba(14, 42, 71, 0.08));
  }
}

/* ─── Sticky CTA (desktop) ─── */
.rl-sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 90;
  background: var(--rl-grad-cta);
  padding: 16px var(--rl-header-px);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  box-shadow: 0 -6px 20px rgba(0, 0, 0, 0.15);
  transform: translateY(100%);
  transition: transform 0.3s ease;
}
.rl-sticky-cta.is-visible {
  transform: translateY(0);
}
.rl-sticky-cta__btn {
  background: var(--rl-white);
  color: var(--rl-primary);
  box-shadow: none;
}
.rl-sticky-cta__price {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--rl-font-body);
  font-weight: 700;
  font-size: 18px;
  color: var(--rl-white);
}
.rl-sticky-cta__badge {
  background: #fa5050;
  color: var(--rl-white);
  font-size: 13px;
  padding: 4px 12px;
  border-radius: 999px;
}

/* ─────────────────────────────────────────────
   RESPONSIVE — Tablet (max-width: 1024px)
   ───────────────────────────────────────────── */
@media screen and (max-width: 1024px) {
  .rl-testimonials__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .rl-hero__media {
    width: 100%;
  }
  .rl-hero__photo {
    width: 100%;
    height: 360px;
  }
  .rl-product-zones-intro__grid {
    grid-template-columns: 1fr;
  }
  .rl-product-zones-intro__media img {
    height: 280px;
  }
  .rl-product-stats-mini {
    grid-template-columns: repeat(2, 1fr);
  }
  .rl-product-zones__grid {
    grid-template-columns: 1fr;
  }
  .rl-product-zones__media img {
  }
  .rl-ingredient-card {
    flex-basis: calc((100% - 24px) / 2);
  }
  .rl-product-timeline__grid {
    grid-template-columns: 1fr;
  }
  .qz-cards {
    flex-direction: column-reverse !important;
    gap: 20px;
  }

  .qz-pc {
    height: min-content !important;
  }
  .rl-product-cta-strip__inner {
    justify-content: center;
    text-align: center;
  }
}

/* ─────────────────────────────────────────────
   RESPONSIVE — Mobile (max-width: 768px)
   ───────────────────────────────────────────── */
@media screen and (max-width: 768px) {
  .qz-bonus {
    max-width: 330px !important;
  }
  .rl-skin-test__eyebrow,
  .rl-btn--gold,
  .rl-skin-test__note {
    margin: 0 auto;
  }
  .rl-skin-test__title,
  .rl-skin-test__desc {
    text-align: center;
  }
  .qz-bonus__banner-text {
    max-width: 150px;
  }
  .rl-product-announcement {
    font-size: 13px;
    padding: 8px 12px;
  }
  .rl-sticky-cta__btn {
    padding: 5px;
    font-size: 12px;
    margin: 0;
  }
  .rl-sticky-cta__price {
    font-size: 12px !important;
  }

  .rl-hero__container {
    flex-direction: column;
  }
  .rl-hero__photo {
    height: 280px;
    border-radius: 24px;
  }
  .rl-hero__title {
    font-size: 44px;
  }
  .rl-hero__price-current {
    font-size: 22px;
  }
  .rl-hero__proof {
    max-width: 100%;
  }

  .rl-product-benefits__list {
    gap: 8px;
  }
  .rl-product-benefits__item {
    font-size: 13px;
    padding: 8px 14px;
  }

  .rl-testimonials {
    padding: 40px 0;
  }
  .rl-testimonials__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .rl-testimonial-card__image {
    height: 260px;
  }

  .rl-product-zones-intro {
    padding: 40px 0;
  }
  .rl-product-stats-mini {
    grid-template-columns: 1fr 1fr;
  }

  .rl-product-logos-bar__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .rl-product-comparison {
    padding: 40px 0;
  }

  .rl-product-cta-strip {
    padding: 32px 0;
  }
  .rl-product-cta-strip__title {
    font-size: 24px;
  }

  .rl-product-zones {
    padding: 40px 0;
  }
  .rl-product-zones__media img {
    height: 471px;
  }
  .rl-product-zones__pills {
    padding: 12px;
  }
  .rl-product-zones__pill {
    padding: 10px 12px;
    max-width: 100%;
  }
  .rl-product-zones__pill-title {
    font-size: 13px;
  }
  .rl-product-zones__pill-desc {
    font-size: 11px;
  }

  .rl-product-ingredients {
    padding: 40px 0;
  }
  .rl-ingredient-card {
    flex-basis: 88%;
  }
  .rl-ingredients-slider__track {
    gap: 16px;
  }

  .rl-product-timeline {
    padding: 40px 0;
  }
  .rl-product-timeline__media img {
    height: 260px;
  }

  .rl-product-rating-pill {
    flex-wrap: wrap;
    justify-content: center;
    padding: 12px 20px;
  }

  .rl-home-benefit-icons {
    flex-direction: column;
  }

  .rl-product-offer {
    padding: 40px 0;
  }
  .rl-offer-detail__price-new {
    font-size: 25px;
  }

  .rl-offer-trust {
    flex-direction: column;
  }

  .rl-sticky-cta {
    padding: 12px 15px;
    gap: 12px;
    flex-wrap: wrap;
  }
  .rl-sticky-cta__price {
    font-size: 15px;
  }
}

/* ─────────────────────────────────────────────
   QUIZ APP (quiz.html) — dark navy card, gold pills
   ───────────────────────────────────────────── */
.quiz-app {
  background: var(--rl-bg);
}
.qz-wrap {
  max-width: 1240px;
  margin: 0 auto;
  padding: 40px 24px 40px;
}

/* Question card */
.qz-card {
  background: var(--qz-navy);
  border-radius: var(--qz-radius);
  box-shadow: var(--qz-shadow);
  overflow: hidden;
  color: #f4efe6;
}
.qz-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.qz-left {
  padding: 44px 46px 40px;
}
.qz-right {
  position: relative;
  min-height: 520px;
  background: radial-gradient(
    120% 90% at 70% 15%,
    #d8c3ad 0%,
    #c2a689 45%,
    #9d7f63 100%
  );
}
.qz-right .qz-photo {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.96;
}
.qz-right::after {
  content: "";
  position: absolute;
  inset: 0;
  box-shadow: inset 40px 0 60px -30px rgba(14, 42, 71, 0.65);
  pointer-events: none;
}

.qz-prog {
  display: flex;
  gap: 8px;
  margin-bottom: 30px;
}
.qz-prog i {
  flex: 1;
  height: 7px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  transition: background 0.3s;
  font-style: normal;
}
.qz-prog i.qz-prog__done {
  background: rgba(255, 255, 255, 0.16);
}
.qz-prog i.qz-prog__cur {
  background: #5fae6e;
}

.qz-qtext {
  font-family: var(--rl-font-display);
  font-size: 33px;
  line-height: 1.18;
  margin: 0 0 14px;
  font-weight: 700;
  color: #fbf8f3;
}
.qz-qhint {
  font-size: 16px;
  color: var(--qz-muted);
  font-family: var(--rl-font-body);
  margin: 0 0 26px;
}
.qz-opts {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.qz-opt {
  display: block;
  width: 100%;
  text-align: center;
  font-size: 17px;
  font-weight: 600;
  color: var(--qz-gold-ink);
  background: var(--qz-gold);
  padding: 17px 20px;
  border-radius: 999px;
  transition: 0.15s;
  box-shadow: 0 8px 20px rgba(224, 169, 62, 0.22);
  font-family: var(--rl-font-body);
}
.qz-opt:hover {
  background: var(--qz-gold-hover);
  transform: translateY(-1px);
}
.qz-opt.qz-opt--sel {
  background: #f2c25b;
  box-shadow:
    0 0 0 3px rgba(255, 255, 255, 0.85),
    0 8px 22px rgba(224, 169, 62, 0.35);
}

.qz-nav-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 30px;
  gap: 12px;
}
.qz-lnk {
  background: none;
  color: var(--qz-muted);
  font-family: var(--rl-font-body);
  font-size: 15px;
  cursor: pointer;
  text-decoration: underline;
  padding: 6px 2px;
}
.qz-lnk:hover {
  color: var(--rl-white);
}
.qz-btn {
  font-family: var(--rl-font-body);
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  border-radius: 999px;
  padding: 14px 30px;
  transition: 0.15s;
}
.qz-btn--gold {
  background: var(--qz-gold);
  color: var(--qz-gold-ink);
}
.qz-btn--gold:hover {
  background: var(--qz-gold-hover);
}
.qz-btn--gold:disabled {
  background: rgba(224, 169, 62, 0.35);
  color: rgba(58, 44, 13, 0.5);
  cursor: not-allowed;
}
.qz-fullbtn {
  width: 100%;
}

/* Fact card floating over the image */
.qz-fact {
  position: absolute;
  left: 26px;
  bottom: 26px;
  right: 26px;
  max-width: 360px;
  background: rgba(251, 248, 243, 0.96);
  border-radius: 16px;
  padding: 14px 18px;
  box-shadow: 0 14px 34px rgba(14, 42, 71, 0.28);
}
.qz-fact__lbl {
  font-family: var(--rl-font-body);
  font-size: 11px;
  letter-spacing: 0.14em;
  font-weight: 800;
  color: var(--qz-gold);
  text-transform: uppercase;
  margin-bottom: 5px;
}
.qz-fact p {
  margin: 0;
  font-size: 13.5px;
  color: var(--qz-ink-soft);
  line-height: 1.45;
  font-family: var(--rl-font-body);
}

/* Email + age fields */
.qz-field {
  width: 100%;
  font-family: var(--rl-font-body);
  font-size: 17px;
  padding: 16px 20px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.08);
  color: var(--rl-white);
  margin-bottom: 14px;
}
.qz-field::placeholder {
  color: rgba(244, 239, 230, 0.55);
}
.qz-field:focus {
  outline: none;
  border-color: var(--qz-gold);
}
.qz-field--error {
  border-color: #e07a5f;
}
.qz-field-err {
  font-family: var(--rl-font-body);
  font-size: 13px;
  color: #f2a48c;
  margin: -8px 0 14px;
}

.qz-checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  font-family: var(--rl-font-body);
  font-size: 14px;
  line-height: 1.4;
  color: rgba(244, 239, 230, 0.75);
  margin-bottom: 14px;
}
.qz-checkbox {
  flex-shrink: 0;
  appearance: none;
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.08);
  position: relative;
  cursor: pointer;
}
.qz-checkbox:checked {
  border-color: var(--qz-gold);
}
.qz-checkbox:checked::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 1px;
  width: 5px;
  height: 9px;
  border: solid var(--qz-gold);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

@media (max-width: 820px) {
  .qz-grid {
    grid-template-columns: 1fr;
  }
  .qz-right {
    display: none;
  }
  .qz-left {
    padding: 30px 24px 30px;
  }
  .qz-qtext {
    font-size: 26px;
  }
}

/* Result screen */
.qz-rhero {
  background: var(--qz-navy);
  border-radius: var(--qz-radius);
  box-shadow: var(--qz-shadow);
  padding: 44px 46px;
  color: #f4efe6;
}
.qz-rgrid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px;
}
.qz-r-eyebrow {
  font-family: var(--rl-font-body);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--qz-muted);
  font-weight: 700;
  margin-bottom: 16px;
}
.qz-scale {
  display: flex;
  gap: 10px;
  margin-bottom: 8px;
}
.qz-seg {
  flex: 1;
}
.qz-seg .qz-barseg {
  height: 9px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
}
.qz-seg .qz-rn {
  display: block;
  text-align: center;
  margin-top: 10px;
  font-family: var(--rl-font-body);
  font-size: 14px;
  font-weight: 700;
  color: var(--qz-muted);
}
.qz-seg.qz-seg--on .qz-rn {
  color: var(--rl-white);
}
.qz-scap {
  display: flex;
  justify-content: space-between;
  font-family: var(--rl-font-body);
  font-size: 12px;
  color: var(--qz-muted);
  margin-top: 4px;
}
.qz-rtype {
  font-family: var(--rl-font-serif), serif;
  font-size: 32px;
  font-weight: 700;
  margin: 22px 0 16px;
}
.qz-rage {
  font-family: var(--rl-font-body);
  font-size: 17px;
  margin: 0 0 10px;
}
.qz-rage b {
  color: var(--qz-gold);
}
.qz-rlead {
  font-family: var(--rl-font-body);
  font-size: 16px;
  color: #e7e0d4;
  margin: 0 0 26px;
  max-width: 560px;
}
.qz-r-cta {
  display: inline-block;
  text-decoration: none;
  background: var(--qz-gold);
  color: var(--qz-gold-ink);
  font-family: var(--rl-font-body);
  font-weight: 700;
  font-size: 17px;
  padding: 16px 34px;
  border-radius: 999px;
  box-shadow: 0 12px 26px rgba(224, 169, 62, 0.32);
  transition: 0.15s;
}
.qz-r-cta:hover {
  background: var(--qz-gold-hover);
  transform: translateY(-1px);
}

.qz-reco {
  background: var(--qz-navy-card);
  border-radius: 20px;
  padding: 26px 28px;
}
.qz-reco h3 {
  font-family: var(--rl-font-serif), serif;
  margin: 0 0 12px;
  font-size: 22px;
  color: #fbf8f3;
}
.qz-reco p {
  margin: 0 0 16px;
  font-family: var(--rl-font-body);
  font-size: 15px;
  color: #dfe6ef;
  line-height: 1.55;
}
.qz-reco .qz-subh {
  font-family: var(--rl-font-body);
  font-weight: 700;
  color: var(--rl-white);
  font-size: 14.5px;
  margin: 0 0 12px;
}
.qz-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.qz-pill {
  border: 1px solid rgba(224, 169, 62, 0.55);
  color: var(--qz-gold);
  font-family: var(--rl-font-body);
  font-size: 13.5px;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 999px;
}

@media (max-width: 820px) {
  .qz-rgrid {
    grid-template-columns: 1fr;
    gap: 26px;
  }
  .qz-rhero {
    padding: 30px 24px;
  }
  .qz-rtype {
    font-size: 26px;
  }
}

/* Offer panel (dark navy gradient, per Figma) */
.qz-offer {
  background: linear-gradient(180deg, var(--qz-navy) 0%, #12345b 100%);
  border-radius: var(--qz-radius);
  padding: 44px 40px;
  margin-top: 28px;
}
.qz-offer .qz-eye {
  text-align: center;
  font-family: var(--rl-font-body);
  font-size: 13px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--rl-accent-light);
  font-weight: 700;
  margin-bottom: 8px;
}
.qz-offer h2 {
  font-family: var(--rl-font-serif), serif;
  text-align: center;
  font-size: 34px;
  margin: 0 0 12px;
  color: var(--rl-white);
}
.qz-offer .qz-sub {
  text-align: center;
  font-family: var(--rl-font-body);
  font-size: 16px;
  color: #c7d6e2;
  max-width: 620px;
  margin: 0 auto 30px;
}
.qz-cards {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin: 0 auto;
}
.qz-pc {
  position: relative;
  width: 330px;
  height: 208px;
  background: var(--rl-white);
  border-radius: 18px;
  padding: 28px 24px 24px;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  transition:
    box-shadow 0.15s,
    transform 0.15s;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.qz-pc:hover {
  transform: translateY(-2px);
}
.qz-pc.qz-pc--best {
  box-shadow: 0 18px 40px rgba(63, 182, 192, 0.22);
}
.qz-pc.is-selected {
  border: 5px solid var(--rl-accent-light);
}
.qz-pc .qz-tag {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--qz-gold);
  color: var(--rl-white);
  font-family: var(--rl-font-body);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 5px;
  white-space: nowrap;
}
.qz-pc .qz-pname {
  font-family: var(--rl-font-body);
  font-size: 18px;
  font-weight: 700;
  color: var(--qz-navy);
  margin: 4px 0 6px;
}
.qz-pc .qz-save {
  color: #d82f2f;
  font-family: var(--rl-font-body);
  font-weight: 700;
  font-size: 14px;
}

.qz-pc .qz-perday {
  color: var(--qz-navy);
  font-family: var(--rl-font-body);
  font-size: 13px;
  margin-top: 2px;
}
.qz-pc .qz-prices {
  margin: 12px 0 4px;
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.qz-pc .qz-now {
  font-family: var(--rl-font-body);
  font-size: 24px;
  font-weight: 700;
  color: var(--qz-navy);
}
.qz-pc .qz-old {
  font-family: var(--rl-font-body);
  font-size: 15px;
  color: var(--rl-text-cool);
  text-decoration: line-through;
}
.qz-pc .qz-ship {
  font-family: var(--rl-font-body);
  font-size: 13px;
  color: #157684;
  font-weight: 600;
  margin-top: 2px;
}
.qz-pc .qz-ship.qz-ship--plain {
  color: var(--rl-text-slate);
  font-weight: 500;
}
.qz-pc .qz-gift {
  display: inline-block;
  margin-top: 8px;
  background: #fa5050;
  color: var(--rl-white);
  font-family: var(--rl-font-body);
  font-size: 12px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 5px;
}
.qz-offer-cta {
  display: flex;
  justify-content: center;
  margin: 32px 0 6px;
}
.qz-zbtn {
  display: inline-block;
  text-decoration: none;
  background: var(--qz-teal);
  color: var(--rl-white);
  font-family: var(--rl-font-body);
  font-weight: 700;
  font-size: 18px;
  padding: 16px 44px;
  border-radius: 999px;
  transition: 0.15s;
  box-shadow: 0 12px 26px rgba(47, 154, 166, 0.28);
}
.qz-zbtn:hover {
  background: var(--qz-teal-dark);
  transform: translateY(-1px);
}

/* Gift promo card: banner + product info, per Figma "Promo Card" */
.qz-bonus {
  background: var(--rl-white);
  border: 1px solid var(--rl-border-faint);
  border-radius: 24px;
  overflow: hidden;
  margin: 26px auto 0;
  max-width: 396px;
}
.qz-bonus__banner {
  background: linear-gradient(135deg, var(--qz-navy), var(--rl-accent-light));
  padding: 30px 20px;
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
}
.qz-bonus__banner-text {
  flex: 1;
  color: var(--rl-white);
  font-family: var(--rl-font-body);
  font-weight: 800;
  font-size: 15px;
}
.qz-bonus__banner img {
  width: 117px;
  height: 117px;
  position: absolute;
  z-index: 1;
  border-radius: 12px;
  object-fit: cover;
  right: 20px;
  flex-shrink: 0;
}
.qz-bonus__divider {
  height: 1px;
  background: var(--rl-border-faint);
}
.qz-bonus__product {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 16px;
  padding: 18px 20px;
  background: var(--rl-bg-card);
  align-items: flex-start;
}
.qz-bonus__product img {
  width: 129px;
  height: 113px;
  border-radius: 12px;
  object-fit: cover;
  flex-shrink: 0;
}
.qz-bonus__stars {
  display: block;
  color: var(--qz-gold);
  font-size: 13px;
  letter-spacing: 2px;
}
.qz-bonus__name {
  display: block;
  font-family: var(--rl-font-body);
  font-weight: 800;
  font-size: 15px;
  color: #111827;
  margin: 3px 0;
}
.qz-bonus__desc {
  font-family: var(--rl-font-body);
  font-size: 12px;
  line-height: 1.4;
  color: var(--qz-navy);
}
.qz-finep {
  font-family: var(--rl-font-body);
  font-size: 11px;
  color: var(--rl-text-dim);
  text-align: center;
  max-width: 760px;
  margin: 22px auto 0;
  line-height: 1.5;
}

/* Trust note (centered card, badge overlapping the top edge, per Figma) */
.qz-guarantee {
  position: relative;
  background: var(--rl-white);
  border: 1px solid var(--rl-border-tan);
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(14, 42, 71, 0.08);
  padding: 33px 32px 25px;
  margin: 40px auto 0;
  max-width: 820px;
  text-align: center;
}
.qz-guarantee__badge {
  position: absolute;
  top: -24px;
  left: 50%;
  transform: translateX(-50%);
  width: 56px;
  height: 56px;
  border-radius: 999px;
  background: var(--rl-success-bg);
  border: 4px solid var(--rl-white);
  box-shadow:
    0 1px 2px -1px rgba(0, 0, 0, 0.1),
    0 1px 3px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}
.qz-guarantee__badge svg {
  width: 16px;
  height: 20px;
}
.qz-guarantee h4 {
  font-family: var(--rl-font-serif), serif;
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 700;
  color: var(--qz-navy);
}
.qz-guarantee p {
  margin: 0 auto;
  max-width: 640px;
  font-family: var(--rl-font-body);
  font-size: 14px;
  color: var(--rl-text-slate);
  line-height: 1.37;
}
.qz-guarantee a {
  color: #157684;
}

.qz-disc {
  font-family: var(--rl-font-body);
  font-size: 12px;
  color: #9aa4af;
  max-width: 820px;
  margin: 26px auto 0;
  text-align: center;
  line-height: 1.55;
}
.qz-restart {
  display: block;
  margin: 18px auto 0;
  background: none;
  color: var(--qz-ink-soft);
  font-family: var(--rl-font-body);
  font-size: 14px;
  text-decoration: underline;
  cursor: pointer;
}

@media (max-width: 720px) {
  .qz-cards {
    grid-template-columns: 1fr;
    gap: 26px;
  }
  .qz-offer {
    padding: 30px 20px;
  }
  .qz-offer h2 {
    font-size: 24px;
  }
}

@media (max-width: 640px) {
  .qz-wrap {
    padding: 24px 14px 40px;
  }
}

/* ─────────────────────────────────────────────
   CHECKOUT (payment-methods.html)
   ───────────────────────────────────────────── */
.checkout {
  background: var(--pay-bg);
  padding-bottom: 40px;
}
.checkout__title-strip {
  padding: 28px var(--rl-header-px) 8px;
}
.checkout__page-title {
  font-family: var(--rl-font-body);
  font-weight: 700;
  font-size: 28px;
  color: var(--pay-navy-text);
}
.checkout__content {
  max-width: calc(var(--rl-container) + 44px);
  margin: 0 auto;
  padding: 24px 10px 0;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 40px;
  align-items: start;
}
.checkout-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Cards */
.checkout-card {
  background: var(--rl-white);
  border: 1px solid var(--pay-border);
  border-radius: 12px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.checkout-card--consents {
  padding: 24px 28px;
}
.checkout-card__header {
  display: flex;
  align-items: center;
  gap: 12px;
}
.checkout-card__badge {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
  border-radius: 999px;
  background: var(--pay-navy);
  color: var(--rl-white);
  font-family: var(--rl-font-body);
  font-weight: 700;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.checkout-card__title {
  font-family: var(--rl-font-body);
  font-weight: 700;
  font-size: 20px;
  color: var(--pay-navy-text);
}
.checkout-card__disclaimer {
  font-family: var(--rl-font-body);
  font-size: 12px;
  line-height: 1.55;
  color: #59616b;
}
.checkout-card__disclaimer a {
  color: var(--rl-accent);
  text-decoration: underline;
}
.checkout-card__sec-note {
  font-family: var(--rl-font-body);
  font-size: 13px;
  color: var(--rl-text-muted);
  margin-top: -8px;
}

/* Fields */
.checkout-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.checkout-field--narrow {
  max-width: 220px;
}
.checkout-field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.checkout-field__label {
  font-family: var(--rl-font-body);
  font-weight: 500;
  font-size: 13px;
  color: #1d1d1b;
}
.checkout-field__wrap {
  position: relative;
}
.checkout-field__input {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--pay-field-border);
  border-radius: 8px;
  font-family: var(--rl-font-body);
  font-size: 15px;
  color: var(--rl-text);
  background: var(--pay-field-bg);
  outline: none;
  transition: border-color 0.2s;
}
.checkout-field__input--white {
  border-color: #e9ecf0;
}
.checkout-field__input--select {
  appearance: auto;
  cursor: pointer;
}
.checkout-field__input:focus {
  border-color: var(--pay-navy);
}
.checkout-field__input--error {
  border-color: var(--qz-red);
}
.checkout-field__error {
  display: block;
  font-family: var(--rl-font-body);
  font-size: 12px;
  color: var(--qz-red);
  margin-top: 4px;
}

/* Checkboxes / consents */
.checkout-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
}
.checkout-checkbox__box {
  position: relative;
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border: 1px solid #dbe0e8;
  border-radius: 4px;
  background: var(--rl-white);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
  transition: border-color 0.2s;
}
.checkout-checkbox__box--error {
  border-color: var(--qz-red);
}
.checkout-checkbox__input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
  margin: 0;
}
.checkout-checkbox__check {
  width: 12px;
  height: 10px;
  opacity: 0;
  transition: opacity 0.15s;
}
.checkout-checkbox__input:checked ~ .checkout-checkbox__check {
  opacity: 1;
}
.checkout-checkbox__text {
  font-family: var(--rl-font-body);
  font-size: 13px;
  line-height: 1.5;
  color: var(--rl-text-muted);
}
.checkout-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
}
.checkout-link {
  color: var(--rl-accent);
  text-decoration: underline;
}

/* Payment tabs (Online / COD) */
.payment-tabs {
  display: flex;
  gap: 14px;
}
.payment-tab {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
  text-align: left;
  padding: 14px 16px;
  border: 1.5px solid #e9ecf0;
  border-radius: 10px;
  background: var(--rl-white);
  transition:
    border-color 0.2s,
    background 0.2s;
}
.payment-tab:hover {
  border-color: var(--pay-navy);
}
.payment-tab--active {
  border-color: var(--pay-navy);
  border-width: 2px;
  background: #f4f7ff;
}
.payment-tab__radio {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  border-radius: 999px;
  border: 1.5px solid #e9ecf0;
  background: var(--rl-white);
  position: relative;
}
.payment-tab__radio--filled {
  border-color: var(--pay-navy);
  background: var(--pay-navy);
}
.payment-tab__content {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.payment-tab__title {
  font-family: var(--rl-font-body);
  font-weight: 600;
  font-size: 14px;
  color: var(--pay-navy-text);
}
.payment-tab__subtitle {
  font-family: var(--rl-font-body);
  font-size: 12px;
  color: #6f7788;
}

.payment-panel {
  margin-top: 18px;
}
.payment-panel.is-hidden {
  display: none;
}

/* Karta / BLIK method switch */
.method-switch {
  display: flex;
  gap: 4px;
  background: #eef1f6;
  border-radius: 11px;
  padding: 4px;
  margin-bottom: 18px;
}
.method-switch__seg {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 8px;
  font-family: var(--rl-font-body);
  font-weight: 600;
  font-size: 13px;
  color: #6f7788;
  text-align: center;
  transition:
    background 0.2s,
    color 0.2s;
}
.method-switch__seg:hover:not(.method-switch__seg--active) {
  background: rgba(255, 255, 255, 0.6);
  color: var(--pay-navy-text);
}
.method-switch__seg--active {
  background: var(--rl-white);
  color: var(--pay-navy-text);
}
.method-switch__logos {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.method-switch__logo--mastercard {
  display: inline-flex;
}
.method-switch__logo--mastercard span {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  display: inline-block;
}
.method-switch__logo--mastercard span:first-child {
  background: #eb001b;
  margin-right: -6px;
}
.method-switch__logo--mastercard span:last-child {
  background: #f79e1b;
  opacity: 0.85;
}
.method-switch__logo--visa {
  font-family: var(--rl-font-body);
  font-weight: 800;
  font-style: italic;
  font-size: 12px;
  color: #142fbd;
}
.method-switch__logo--blik {
  width: 32px;
  height: 20px;
  border-radius: 4px;
  object-fit: contain;
  background: var(--rl-white);
}

/* Stripe / BLIK detail panels (active-method styling per Figma) */
.stripe-panel,
.blik-panel,
.payment-panel--cod .cod-panel {
  background: #f4f7ff;
  border: 1.5px solid var(--pay-navy);
  border-radius: 10px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.stripe-panel.is-hidden,
.blik-panel.is-hidden {
  display: none;
}
.stripe-panel__header,
.blik-panel__header {
  display: flex;
  align-items: center;
  gap: 10px;
}
.stripe-panel__title,
.blik-panel__title {
  font-family: var(--rl-font-body);
  font-weight: 600;
  font-size: 14px;
  color: var(--pay-navy-text);
}
.stripe-panel__badge {
  background: #6a40f5;
  color: var(--rl-white);
  font-family: var(--rl-font-body);
  font-weight: 700;
  font-size: 11px;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 4px;
}
.blik-panel__badge {
  background: #000000;
  color: var(--rl-white);
  font-family: var(--rl-font-body);
  font-weight: 700;
  font-size: 11px;
  padding: 3px 10px;
  border-radius: 4px;
}
.stripe-panel__desc,
.blik-panel__desc,
.blik-panel__hint {
  font-family: var(--rl-font-body);
  font-size: 13px;
  color: #6f7788;
  margin-top: -6px;
}

/* COD panel */
.cod-panel__title-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.cod-panel__icon-wrap {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  border-radius: 999px;
  background: #d9d9d9;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}
.cod-panel__title-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.cod-panel__title {
  font-family: var(--rl-font-body);
  font-weight: 600;
  font-size: 14px;
  color: var(--pay-navy-text);
}
.cod-panel__desc {
  font-family: var(--rl-font-body);
  font-size: 12px;
  color: #6f7788;
}
.cod-panel__divider {
  border-top: 1px solid var(--pay-border);
}
.cod-panel__label {
  font-family: var(--rl-font-body);
  font-weight: 500;
  font-size: 12px;
  color: #6f7788;
}
.cod-panel__summary {
  background: #f3f4f7;
  border-radius: 8px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.cod-panel__row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-family: var(--rl-font-body);
  font-size: 12px;
}
.cod-panel__row-key {
  color: #6f7788;
}
.cod-panel__row-val {
  color: var(--pay-navy-text);
  font-weight: 600;
}
.cod-panel__edit-hint {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--rl-font-body);
  font-size: 12px;
  color: #6f7788;
}
.cod-panel__edit-hint a {
  color: var(--rl-accent);
  text-decoration: underline;
}

/* Legal + CTA */
.checkout-legal {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 4px 4px 0;
}
.checkout-legal__text {
  font-family: var(--rl-font-body);
  font-size: 13px;
  line-height: 1.6;
  color: #1f2429;
}
.checkout-legal__text a {
  color: var(--rl-accent);
  text-decoration: underline;
}
.checkout-cta-wrap {
  margin-top: 4px;
}
.checkout-cta {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 18px 24px;
  border-radius: 999px;
  background: var(--rl-grad-cta);
  box-shadow: var(--rl-shadow-btn);
  font-family: var(--rl-font-body);
  font-weight: 700;
  font-size: 18px;
  color: var(--rl-white);
  transition: opacity 0.2s;
}
.checkout-cta:hover {
  opacity: 0.92;
}
.checkout-cta:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.checkout-cta__text {
  display: none;
  align-items: center;
  gap: 8px;
}
.checkout-cta--online .checkout-cta__text--online {
  display: inline-flex;
}
.checkout-cta--cod .checkout-cta__text--cod {
  display: inline-flex;
}
.btn-arrow-icon {
  width: 18px;
  height: 18px;
  filter: brightness(0) invert(1);
}

/* Order summary sidebar */
.checkout-summary {
  background: var(--rl-white);
  border: 1px solid var(--pay-border);
  border-radius: 12px;
  padding: 24px;
}
.checkout-summary__product {
  display: flex;
  gap: 14px;
}
.checkout-summary__img-wrap {
  position: relative;
  width: 80px;
  height: 80px;
  flex-shrink: 0;
  border-radius: 10px;
  overflow: hidden;
  background: #dee8f5;
}
.checkout-summary__qty-badge {
  position: absolute;
  top: 4px;
  right: 4px;
  min-width: 20px;
  height: 20px;
  padding: 0 4px;
  border-radius: 999px;
  background: #77bac0;
  border: 1px solid var(--rl-white);
  color: var(--rl-white);
  font-family: var(--rl-font-body);
  font-weight: 700;
  font-size: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.checkout-summary__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.checkout-summary__product-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.checkout-summary__product-name-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.checkout-summary__product-name {
  font-family: var(--rl-font-body);
  font-weight: 700;
  font-size: 16px;
  color: var(--rl-text-blue);
}
.checkout-summary__product-vol {
  font-family: var(--rl-font-body);
  font-size: 13px;
  color: var(--rl-text-muted);
}
.checkout-summary__product-price-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.checkout-summary__new-price {
  font-family: var(--rl-font-body);
  font-weight: 700;
  font-size: 15px;
  color: var(--pay-orange);
}
.checkout-summary__gift-price {
  font-family: var(--rl-font-body);
  font-weight: 700;
  font-size: 15px;
  color: var(--pay-orange);
}
.checkout-summary__product--gift {
  margin-top: 16px;
  display: none;
}
.checkout-summary__product--gift .checkout-summary__qty {
  margin-top: 8px;
}
.checkout-summary__product--gift.is-visible {
  display: flex;
}
.checkout-summary__illunex-hint {
  display: none;
  font-family: var(--rl-font-body);
  font-size: 11.5px;
  font-weight: 600;
  color: var(--rl-accent-dark);
}
.checkout-summary__illunex-remove {
  display: none;
  font-family: var(--rl-font-body);
  font-size: 12px;
  color: var(--pay-muted);
  text-decoration: underline;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
}
.checkout-summary__illunex-remove:hover {
  color: var(--pay-orange);
}
.checkout-illunex {
  display: none;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
  padding: 12px;
  border: 1px solid var(--rl-accent);
  border-radius: 10px;
  background: var(--rl-bg-blue);
}
.checkout-illunex.is-visible {
  display: flex;
}
.checkout-illunex__img {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  border-radius: 8px;
  object-fit: cover;
  background: #dee8f5;
}
.checkout-illunex__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.checkout-illunex__name {
  font-family: var(--rl-font-body);
  font-weight: 700;
  font-size: 14px;
  color: var(--rl-text-blue);
}
.checkout-illunex__desc {
  font-family: var(--rl-font-body);
  font-size: 12px;
  color: var(--rl-text-muted);
  line-height: 1.4;
}
.checkout-illunex__desc b {
  color: var(--rl-accent-dark);
}
.checkout-illunex__action {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
  flex-shrink: 0;
}
.checkout-illunex__price {
  font-family: var(--rl-font-body);
  font-weight: 700;
  font-size: 14px;
  color: var(--rl-text-blue);
}
.checkout-illunex__btn {
  font-family: var(--rl-font-body);
  font-weight: 700;
  font-size: 13px;
  color: var(--rl-white);
  background: var(--rl-accent);
  border: none;
  border-radius: 999px;
  padding: 8px 20px;
  cursor: pointer;
  transition: background 0.15s;
}
.checkout-illunex__btn:hover {
  background: var(--rl-accent-dark);
}
.checkout-summary__old-price {
  font-family: var(--rl-font-body);
  font-size: 13px;
  color: var(--pay-muted);
  text-decoration: line-through;
}
.checkout-summary__qty {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #f0f0f2;
  border: 1px solid var(--pay-muted);
  border-radius: 999px;
  padding: 2px 4px;
  width: fit-content;
}
.checkout-summary__qty-btn {
  width: 26px;
  height: 26px;
  border-radius: 999px;
  color: #2c3369;
  font-size: 16px;
  font-weight: 700;
  transition: opacity 0.2s;
}
.checkout-summary__qty-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}
.checkout-summary__qty-count {
  min-width: 16px;
  text-align: center;
  font-family: var(--rl-font-body);
  font-weight: 600;
  font-size: 14px;
  color: #2c3369;
}
.checkout-summary__divider {
  border-top: 1px solid var(--pay-border);
  margin: 18px 0;
}
.checkout-summary__price-row {
  display: flex;
  justify-content: space-between;
  font-family: var(--rl-font-body);
  font-size: 14px;
  color: #1d1d1b;
  margin-bottom: 10px;
}
.checkout-summary__price-row:last-of-type {
  margin-bottom: 0;
}
.checkout-summary__price-label--muted {
  color: var(--pay-muted);
}
.checkout-summary__price-val--discount {
  color: var(--pay-orange);
}
.checkout-summary__total-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.checkout-summary__total-label {
  font-family: var(--rl-font-body);
  font-weight: 600;
  font-size: 17px;
  color: #1d1d1b;
}
.checkout-summary__total-val {
  font-family: var(--rl-font-body);
  font-weight: 700;
  font-size: 22px;
  color: var(--rl-success-text);
  text-align: right;
}
.checkout-summary__tax-note {
  display: inline-block;
  margin-top: 4px;
  font-family: var(--rl-font-body);
  font-weight: 400;
  font-size: 12px;
  color: var(--pay-navy-text);
}
.checkout-summary__omnibus {
  font-family: var(--rl-font-body);
  font-size: 12px;
  line-height: 1.5;
  color: #59616b;
  margin-top: 14px;
}
.checkout-summary__pack-note {
  font-family: var(--rl-font-body);
  font-size: 12px;
  line-height: 1.45;
  color: var(--pay-navy-text);
  background: #eef7f7;
  border: 1px dashed var(--rl-accent-light);
  border-radius: 8px;
  padding: 8px 10px;
  margin-top: 10px;
}
.checkout-summary__pack-note.is-hidden {
  display: none;
}

/* Sidebar extras */
.checkout__sidebar {
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: sticky;
  top: calc(var(--rl-header-h) + 20px);
}
.checkout-money-back {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--pay-navy-text);
  border-radius: 12px;
  padding: 18px 20px;
}
.checkout-money-back__icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border-radius: 999px;
  background: var(--pay-orange);
  color: var(--rl-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}
.checkout-money-back__icon img {
  width: 18px;
  height: 18px;
}
.checkout-money-back__text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.checkout-money-back__title {
  font-family: var(--rl-font-body);
  font-weight: 700;
  font-size: 15px;
  color: var(--rl-white);
}
.checkout-money-back__sub {
  font-family: var(--rl-font-body);
  font-size: 12px;
  color: #b2bfd9;
}
.checkout-help-card {
  background: var(--rl-white);
  border: 1px solid var(--pay-border);
  border-radius: 12px;
  padding: 18px 20px;
}
.checkout-help-card__title {
  font-family: var(--rl-font-body);
  font-weight: 600;
  font-size: 14px;
  color: var(--pay-navy-text);
  margin-bottom: 6px;
}
.checkout-help-card__text {
  font-family: var(--rl-font-body);
  font-size: 13px;
  color: var(--pay-muted);
  margin-bottom: 2px;
}
.checkout-help-card__text a {
  color: var(--rl-accent);
}

.mobile-only.checkout__sidebar-mobile,
.mobile-only.checkout__bottom-mobile {
  display: none;
}
.checkout__bottom-mobile {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 8px;
}

@media screen and (max-width: 1024px) {
  .checkout__title-strip {
    padding: 24px 40px 8px;
  }
  .checkout__content {
    grid-template-columns: 1fr;
    padding: 24px 40px 0;
  }
  .checkout__sidebar.desktop-only {
    display: none;
  }
  .checkout__sidebar-mobile.mobile-only {
    display: block;
  }
  .checkout__bottom-mobile.mobile-only {
    display: flex;
  }
}

@media screen and (max-width: 768px) {
  .checkout__title-strip {
    padding: 20px 15px 8px;
  }
  .checkout__page-title {
    font-size: 24px;
  }
  .checkout__content {
    padding: 16px 15px 0;
  }
  .checkout-card {
    padding: 20px;
  }
  .checkout-field-row {
    grid-template-columns: 1fr;
  }
  .method-switch {
    flex-direction: column;
  }
}
@media screen and (max-width: 1240px) {
  .rl-footer__brand span {
    font-size: 80px;
    letter-spacing: 40px;
    margin-right: -40px;
  }
  .rl-footer {
    padding: 10px;
  }
  .rl-footer__form-row {
    max-width: 330px !important;
  }
}
