/* ===================================================================
   RELIVITAL — Common styles
   Shared by every page: fonts, reset, tokens, body, header, footer
   =================================================================== */


/* ─── Reset ─── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  padding-top: var(--rl-header-h);
}

body.rl-scroll-lock {
  overflow: hidden;
}

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;
}


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

  /* 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-white:         #ffffff;

  /* Text */
  --rl-text:          #2a2f36;
  --rl-text-muted:    #545c66;
  --rl-text-light:    #8b95a0;

  /* 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.10);

  /* Typography */
  --rl-font-display:  'Cormorant Garamond', serif;
  --rl-font-body:     'Manrope', sans-serif;

  /* Layout */
  --rl-container:     1210px;
  --rl-header-h:      57px;   /* 56px nav + 1px border */
}


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


/* ─────────────────────────────────────────────
   HEADER
   ───────────────────────────────────────────── */

.rl-header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  background: rgba(251, 248, 243, 0.93);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid #e3ded4;
}

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

/* Logo */
.rl-nav__logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.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);
}

/* Desktop nav links */
.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);
}

/* Cart button */
.rl-nav__cart {
  position: relative;
  display: flex;
  align-items: center;
  flex-shrink: 0;
  width: 30px;
  height: 30px;
}

.rl-nav__cart img {
  width: 30px;
  height: 30px;
}

.rl-nav__cart-badge {
  position: absolute;
  top: 0.5px;
  left: 15px;
  min-width: 16px;
  height: 16px;
  padding: 0 3px;
  border-radius: 16px;
  background: var(--rl-accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--rl-font-body);
  font-weight: 700;
  font-size: 12px;
  line-height: 1;
  color: var(--rl-white);
}

/* Burger — hidden on desktop */
.rl-nav__burger {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 7px;
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  overflow: hidden;
}

.rl-nav__burger span {
  display: block;
  width: 26px;
  height: 2.5px;
  background: var(--rl-teal-burger);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.rl-nav__burger.is-active span:nth-child(1) {
  transform: translateY(9.5px) rotate(45deg);
}
.rl-nav__burger.is-active span:nth-child(2) {
  opacity: 0;
}
.rl-nav__burger.is-active span:nth-child(3) {
  transform: translateY(-9.5px) rotate(-45deg);
}

/* ─── Mobile Menu (inline dropdown, overlays content) ─── */
.rl-mobile-menu {
  display: none;
  flex-direction: column;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 99;
  background: #f5f0eb;
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.35s ease;
  box-shadow: 0px 8px 24px 0px rgba(27, 79, 114, 0.18);
}

.rl-mobile-menu.is-open {
  max-height: 500px;
}

.rl-mobile-menu__divider {
  height: 1px;
  background: #e3ddd4;
  flex-shrink: 0;
}

.rl-mobile-menu__nav {
  display: flex;
  flex-direction: column;
}

.rl-mobile-menu__item {
  display: flex;
  align-items: center;
  gap: 21px;
  padding: 16px 24px 16px 0;
  font-family: var(--rl-font-body);
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  color: var(--rl-text);
  text-decoration: none;
}

.rl-mobile-menu__accent {
  width: 3px;
  align-self: stretch;
  background: transparent;
  flex-shrink: 0;
}

.rl-mobile-menu__item--active .rl-mobile-menu__accent {
  background: #1b4f72;
}

.rl-mobile-menu__item--active .rl-mobile-menu__label {
  color: var(--rl-accent);
}

.rl-mobile-menu__footer {
  display: flex;
  justify-content: center;
  padding: 20px 24px 24px;
}

.rl-mobile-menu__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 32px;
  border-radius: 999px;
  background: linear-gradient(180deg, #e0a93e 0%, #d9a441 100%);
  box-shadow: 0px 10px 24px 0px rgba(217, 164, 65, 0.34);
  font-family: var(--rl-font-body);
  font-weight: 700;
  font-size: 15px;
  color: #3a2c0d;
  text-decoration: none;
  white-space: nowrap;
}


/* ─────────────────────────────────────────────
   CART PANEL
   ───────────────────────────────────────────── */

/* Backdrop overlay */
.rl-cart-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99;
  background: rgba(14, 42, 71, 0.35);
}

.rl-cart-overlay.is-open {
  display: block;
}

/* Panel — fixed, full viewport height, slides in from right */
.rl-cart {
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  width: 420px;
  display: flex;
  flex-direction: column;
  background: var(--rl-white);
  border-radius: 20px 0 0 20px;
  box-shadow: -12px 0 40px 0 rgba(14, 42, 71, 0.18);
  overflow: hidden;
  z-index: 100;
  /* Hidden by default */
  opacity: 0;
  pointer-events: none;
  transform: translateX(20px);
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.rl-cart.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
}

/* ─── Cart header ─── */
.rl-cart__head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 16px 16px 24px;
  border-bottom: 1px solid #e6ddcf;
  flex-shrink: 0;
}

.rl-cart__title {
  flex: 1;
  font-family: var(--rl-font-body);
  font-weight: 700;
  font-size: 20px;
  line-height: 28px;
  color: var(--rl-primary);
}

.rl-cart__close {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: var(--rl-bg-card);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--rl-font-body);
  font-weight: 700;
  font-size: 14px;
  line-height: 20px;
  color: var(--rl-text-muted);
  flex-shrink: 0;
  cursor: pointer;
  transition: background 0.15s;
}

@media (hover: hover) {
  .rl-cart__close:hover {
    background: #ede6da;
  }
}

/* ─── Free delivery progress ─── */
.rl-cart__delivery {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 16px 24px;
  background: var(--rl-bg-blue);
  flex-shrink: 0;
}

.rl-cart__delivery-text {
  font-family: var(--rl-font-body);
  font-weight: 700;
  font-size: 13px;
  line-height: 18px;
  color: var(--rl-accent-dark);
}

.rl-cart__delivery-track {
  height: 6px;
  border-radius: 99px;
  background: rgba(14, 42, 71, 0.12);
}

/* ─── Empty state ─── */
.rl-cart__empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 56px 40px;
  flex: 1;
}

.rl-cart__empty-title {
  font-family: var(--rl-font-body);
  font-weight: 700;
  font-size: 18px;
  line-height: 26px;
  color: var(--rl-primary);
  text-align: center;
}

.rl-cart__empty-desc {
  font-family: var(--rl-font-body);
  font-weight: 400;
  font-size: 14px;
  line-height: 19px;
  color: #000;
  text-align: center;
}

/* ─── Cart footer ─── */
.rl-cart__actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 18px 24px 22px;
  background: var(--rl-bg-section);
  border-top: 1px solid #e6ddcf;
  margin-top: auto;
}

.rl-cart__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 10px;
  border-radius: 999px;
  background: linear-gradient(180deg, #e0a93e 0%, #d9a441 100%);
  font-family: var(--rl-font-body);
  font-weight: 700;
  font-size: 16px;
  line-height: 22px;
  color: #3a2c0d;
  text-decoration: none;
}

.rl-cart__link {
  font-family: var(--rl-font-body);
  font-weight: 600;
  font-size: 13px;
  line-height: 18px;
  color: var(--rl-accent-dark);
  text-decoration: underline;
}

/* ─── Cart body (scrollable zone) ─── */
.rl-cart__scroll {
  flex: 1;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  min-height: 0;
}

/* ─── Progress fill ─── */
.rl-cart__delivery-fill {
  height: 6px;
  border-radius: 99px;
  background: linear-gradient(90deg, #3fb6c0 0%, #1f8a99 100%);
  transition: width 0.4s ease;
  width: 0%;
}

.rl-cart__delivery--gift {
  background: #e4f3ec;
}

.rl-cart__delivery--gift .rl-cart__delivery-text {
  color: #1d7a4f;
}

.rl-cart__delivery--gift .rl-cart__delivery-fill {
  background: linear-gradient(90deg, #3fb6c0 0%, #1d7a4f 100%);
}

/* ─── Items list ─── */
.rl-cart__items {
  display: flex;
  flex-direction: column;
}

.rl-cart__item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 24px;
  border-top: 1px solid #f2ece1;
}

.rl-cart__item:first-child {
  border-top: none;
}

.rl-cart__item-photo {
  position: relative;
  width: 90px;
  height: 90px;
  border-radius: 12px;
  border: 1px solid #dce7ef;
  background: #e9edf1;
  flex-shrink: 0;
  overflow: visible;
}

.rl-cart__item-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

.rl-cart__item-badge {
  position: absolute;
  top: -5px;
  left: -5px;
  background: #ff3e2f;
  color: #fff;
  font-family: var(--rl-font-body);
  font-weight: 700;
  font-size: 11px;
  line-height: 1;
  padding: 3px 6px;
  border-radius: 999px;
  white-space: nowrap;
}

.rl-cart__item-details {
  flex: 1;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
}

.rl-cart__item-name {
  font-family: var(--rl-font-body);
  font-weight: 700;
  font-size: 14px;
  line-height: 19px;
  color: #0e2a47;
}

.rl-cart__item-sub {
  font-family: var(--rl-font-body);
  font-weight: 400;
  font-size: 13px;
  line-height: 18px;
  color: #8b95a0;
}

/* Stepper */
.rl-cart__stepper {
  display: inline-flex;
  align-items: center;
  border: 1px solid #dce7ef;
  border-radius: 999px;
  overflow: hidden;
}

.rl-cart__stepper-btn {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--rl-font-body);
  font-weight: 700;
  font-size: 16px;
  color: #0f6b78;
  background: none;
  border: none;
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.15s, color 0.15s;
}

.rl-cart__stepper-btn.is-tap-flash {
  background: #0f6b78;
  color: #fff;
  transition: none;
}

.rl-cart__stepper-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

@media (hover: hover) {
  .rl-cart__stepper-btn:hover {
    background: var(--rl-bg-blue);
  }
}

.rl-cart__stepper-val {
  width: 34px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--rl-font-body);
  font-weight: 700;
  font-size: 14px;
  color: #0e2a47;
  border-left: 1px solid #dce7ef;
  border-right: 1px solid #dce7ef;
}

/* Stepper row: stepper + remove button */
.rl-cart__item-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.rl-cart__item-remove {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  color: #8b95a0;
  background: transparent;
  transition: color 0.15s, background 0.15s;
  flex-shrink: 0;
}

@media (hover: hover) {
  .rl-cart__item-remove:hover {
    color: #c0392b;
    background: #fdecea;
  }
}

/* Item price column */
.rl-cart__item-price {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
  flex-shrink: 0;
  height: 100%;
  justify-content: space-between;
}

.rl-cart__item-price-cur {
  font-family: var(--rl-font-body);
  font-weight: 700;
  font-size: 20px;
  line-height: 26px;
  color: #0e2a47;
}

.rl-cart__item-price-old {
  font-family: var(--rl-font-body);
  font-weight: 400;
  font-size: 13px;
  line-height: 18px;
  color: #8b95a0;
  text-decoration: line-through;
}

/* Gift badge (PREZENT OD 350 ZŁ) */
.rl-cart__item-gift-badge {
  display: inline-flex;
  align-items: center;
  background: #fdf3dd;
  color: #8a6314;
  font-family: var(--rl-font-body);
  font-weight: 800;
  font-size: 10px;
  line-height: 1;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 4px 8px;
  border-radius: 999px;
  white-space: nowrap;
}

/* ─── Nudge bar ─── */
.rl-cart__nudge {
  background: #e4f3ec;
  border-top: 1px solid #d4ece0;
  border-bottom: 1px solid #d4ece0;
  padding: 12px 24px;
  font-family: var(--rl-font-body);
  font-weight: 700;
  font-size: 13px;
  line-height: 18px;
  color: #1d7a4f;
  text-align: center;
}

/* ─── Upsell section ─── */
.rl-cart__upsell {
  padding: 18px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.rl-cart__upsell-title {
  font-family: var(--rl-font-body);
  font-weight: 700;
  font-size: 16px;
  line-height: 22px;
  color: #0e2a47;
}

.rl-cart__upsell-item {
  background: #fff;
  border: 1px solid #dce7ef;
  border-radius: 14px;
  padding: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.rl-cart__upsell-photo {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  object-fit: cover;
  flex-shrink: 0;
  border: 1px solid #dce7ef;
  background: #e9edf1;
}

.rl-cart__upsell-copy {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}

.rl-cart__upsell-name {
  font-family: var(--rl-font-body);
  font-weight: 700;
  font-size: 13px;
  line-height: 17px;
  color: #0e2a47;
}

.rl-cart__upsell-sub {
  font-family: var(--rl-font-body);
  font-weight: 400;
  font-size: 12px;
  line-height: 16px;
  color: #8b95a0;
}

.rl-cart__upsell-price-row {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.rl-cart__upsell-delta {
  font-family: var(--rl-font-body);
  font-weight: 700;
  font-size: 15px;
  color: #0e2a47;
}

.rl-cart__upsell-sep {
  font-family: var(--rl-font-body);
  font-weight: 400;
  font-size: 12px;
  color: #8b95a0;
  text-decoration: line-through;
}

.rl-cart__upsell-tag {
  display: inline-flex;
  align-items: center;
  background: #e4f3ec;
  color: #1d7a4f;
  font-family: var(--rl-font-body);
  font-weight: 700;
  font-size: 11px;
  padding: 2px 7px;
  border-radius: 5px;
}

.rl-cart__upsell-btn {
  border: 1.5px solid #1f8a99;
  background: #e9f5f6;
  color: #0f6b78;
  font-family: var(--rl-font-body);
  font-weight: 700;
  font-size: 13px;
  border-radius: 999px;
  padding: 9px 16px;
  flex-shrink: 0;
  cursor: pointer;
  transition: background 0.15s;
}

@media (hover: hover) {
  .rl-cart__upsell-btn:hover {
    background: #d4edf0;
  }
}

/* ─── Footer two-state ─── */
.rl-cart__actions-empty,
.rl-cart__actions-filled {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  /*padding: 18px 24px 22px;*/
  background: var(--rl-bg-section);
  /*border-top: 1px solid #e6ddcf;*/
  flex-shrink: 0;
}

.rl-cart__summary {
  width: 100%;
}

/* Sum rows */
.rl-cart__sum-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  line-height: 20px;
  margin-bottom: 6px;
}

.rl-cart__sum-label {
  font-family: var(--rl-font-body);
  font-weight: 400;
  font-size: 14px;
  color: #545c66;
}

.rl-cart__sum-value {
  font-family: var(--rl-font-body);
  font-weight: 700;
  font-size: 16px;
  color: #0e2a47;
}

.rl-cart__sum-value--green {
  color: #1d7a4f;
}

.rl-cart__divider {
  width: 100%;
  height: 1px;
  background: #e6ddcf;
  margin: 2px 0;
}

.rl-cart__total-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  width: 100%;
  margin-top: 6px;
}

.rl-cart__total-label {
  font-family: var(--rl-font-body);
  font-weight: 700;
  font-size: 15px;
  color: #0e2a47;
}

.rl-cart__total-value {
  font-family: var(--rl-font-body);
  font-weight: 700;
  font-size: 26px;
  line-height: 1;
  color: #0e2a47;
}

/* Checkout CTA (teal) */
.rl-cart__cta--checkout {
  background: linear-gradient(180deg, #1f8a99 0%, #0f6b78 100%);
  color: #fff;
  box-shadow: 0px 10px 24px 0px rgba(15, 107, 120, 0.32);
}

/* hidden attribute support */
[hidden] {
  display: none !important;
}


/* ─────────────────────────────────────────────
   FOOTER
   ───────────────────────────────────────────── */
.rl-footer {
  background: #0e2a47;
  color: #fff;
  padding: 50px 130px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  font-family: 'Manrope', sans-serif;
}

.rl-footer__brand {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  font-size: 120px;
  letter-spacing: 72px;
  text-transform: uppercase;
  text-align: center;
  line-height: normal;
  padding-left: 72px; /* compensates letter-spacing so text appears visually centered */
}

.rl-footer__body {
  display: flex;
  flex-wrap: wrap;
  gap: 73px 50px;
  width: 100%;
}

.rl-footer__newsletter {
  flex: 0 0 415px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.rl-footer__nl-heading {
  font-weight: 700;
  font-size: 40px;
  line-height: normal;
  margin: 0;
}

.rl-footer__nl-desc {
  font-weight: 500;
  font-size: 18px;
  line-height: normal;
  margin: 0;
}

.rl-footer__form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.rl-footer__form-pill {
  background: rgba(255, 255, 255, 0.08);
  border: 2px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 6px 6px 24px;
}

.rl-footer__input {
  background: transparent;
  border: none;
  outline: none;
  color: #fff;
  font-family: 'Manrope', sans-serif;
  font-size: 16px;
  flex: 1;
  min-width: 0;
  padding: 14px 0;
}

.rl-footer__input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.rl-footer__submit {
  background: #fff;
  color: #2c336e;
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  border: none;
  border-radius: 999px;
  padding: 12px 24px;
  width: 136px;
  flex-shrink: 0;
  cursor: pointer;
}

.rl-footer__consent {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 14px;
  font-weight: 400;
  line-height: normal;
  cursor: pointer;
}

.rl-footer__checkbox {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  border-radius: 3px;
  accent-color: #fff;
  margin: 0;
}

.rl-footer__nav {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  gap: 40px;
  justify-content: flex-end;
}

.rl-footer__col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.rl-footer__col-heading {
  font-weight: 700;
  font-size: 18px;
  text-transform: uppercase;
  line-height: normal;
  margin: 0;
}

.rl-footer__links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.rl-footer__links a {
  color: #fff;
  font-weight: 500;
  font-size: 16px;
  text-decoration: underline;
  line-height: normal;
}

.rl-footer__links a:hover {
  opacity: 0.8;
}

.rl-footer__address {
  font-style: normal;
  font-size: 14px;
  line-height: normal;
  display: flex;
  flex-direction: column;
}

.rl-footer__address p {
  margin: 0;
}

.rl-footer__address a {
  color: #fff;
  text-decoration: none;
}

.rl-footer__hours {
  margin-top: 10px !important;
  margin-bottom: 10px !important;
}

.rl-footer__legal-row {
  display: flex;
  gap: 50px;
  width: 100%;
  font-size: 14px;
  font-weight: 400;
  line-height: normal;
}

.rl-footer__legal-row p {
  flex: 1;
  margin: 0;
}

.rl-footer__copyright {
  font-size: 14px;
  font-weight: 400;
  text-align: center;
  margin: 0;
}


/* ─────────────────────────────────────────────
   RESPONSIVE — Tablet (≤1024px)
   ───────────────────────────────────────────── */
@media (max-width: 1024px) {
  .rl-nav__links {
    gap: 16px;
  }

  .rl-nav__link {
    font-size: 15px;
  }

  .rl-footer {
    padding: 50px 40px;
  }

  .rl-footer__brand {
    font-size: 80px;
    letter-spacing: 40px;
    padding-left: 40px;
  }

  .rl-footer__newsletter {
    flex: 0 0 100%;
  }

  .rl-footer__nav {
    justify-content: flex-start;
  }
}


/* ─────────────────────────────────────────────
   RESPONSIVE — Mobile (≤768px)
   ───────────────────────────────────────────── */
@media (max-width: 768px) {

  :root {
    --rl-header-h: 66px;
  }

  /* Cart: full width on mobile */
  .rl-cart {
    width: 100%;
    border-radius: 0;
  }

  /* Header: show burger + mobile menu, hide desktop nav links */
  .rl-header {
    padding: 0;
  }

  .rl-nav {
    padding: 13px 15px;
  }

  .rl-nav__burger {
    display: flex;
  }

  .rl-nav__links {
    display: none;
  }

  .rl-mobile-menu {
    display: flex;
  }

  /* Footer mobile */
  .rl-footer {
    padding: 50px 15px;
  }

  .rl-footer__brand {
    font-size: 50px;
    letter-spacing: 10px;
    padding-left: 10px;
  }

  .rl-footer__nl-heading {
    font-size: 30px;
  }

  .rl-footer__body {
    flex-direction: column;
    gap: 30px;
  }

  .rl-footer__newsletter {
    flex: 0 0 auto;
  }

  .rl-footer__nav {
    flex-direction: column;
    gap: 20px;
    justify-content: flex-start;
  }

  .rl-footer__legal-row {
    flex-direction: column;
    gap: 30px;
  }
}

.t-left {
  text-align: left !important;
}
