/* Rishtasangam homepage header + hero (mockup redesign) */
:root {
  --rs-orange: #f37021;
  --rs-orange-dark: #e05f12;
  --rs-red: #e11d48;
  --rs-pink: #51071B;
  --rs-navy: #1e3a5f;
  --rs-text: #1f2937;
  --rs-muted: #6b7280;
  --rs-border: #e5e7eb;
  --rs-gradient: linear-gradient(135deg, #f97316 0%, #e11d48 55%, #51071B 100%);
  --rs-peach-bg: #f4ebe8;
}

/* ---- Header ---- */
.rs-header {
  background: #fff;
  border-bottom: 1px solid var(--rs-border);
  position: sticky;
  top: 0;
  z-index: 1200;
}

.rs-header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
  min-height: 62px;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: nowrap;
}

/* Override legacy style.css / page-level red header rules */
.rs-header.new-header {
  box-shadow: none;
  background: #fff !important;
  border-bottom: 1px solid var(--rs-border);
}

.rs-header .header-container {
  max-width: 1280px;
  padding: 0 20px;
  flex-wrap: nowrap;
  justify-content: flex-start;
  height: auto;
}

.rs-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
  min-width: 0;
}

.rs-logo-img {
  height: 46px;
  width: auto;
  max-width: 210px;
  object-fit: contain;
  display: block;
}

.rs-logo-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f4ebe8 0%, #ffe8d9 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--rs-orange);
  font-size: 20px;
  flex-shrink: 0;
}

.rs-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
  min-width: 0;
}

.rs-logo-text strong {
  font-family: 'Poppins', system-ui, sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--rs-orange);
  letter-spacing: 0.2px;
}

.rs-logo-text small {
  font-size: 11px;
  color: var(--rs-muted);
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.rs-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  flex: 1 1 auto;
  min-width: 0;
  flex-shrink: 1;
}

.rs-nav a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  font-size: 14px;
  font-weight: 600;
  color: #374151;
  text-decoration: none;
  border-radius: 6px;
  white-space: nowrap;
  transition: color 0.2s, background 0.2s;
}

.rs-nav a i {
  font-size: 13px;
  opacity: 0.85;
}

.rs-nav a:hover {
  color: var(--rs-orange);
}

.rs-nav a.active {
  color: var(--rs-red);
  box-shadow: inset 0 -2px 0 var(--rs-red);
}

.rs-header-auth {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  margin-left: auto;
}

.rs-header-login {
  display: flex;
  align-items: center;
  gap: 8px;
}

.rs-header-login input {
  width: 130px;
  height: 36px;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  padding: 0 10px;
  font-size: 12px;
  color: var(--rs-text);
  background: #fff;
  outline: none;
}

.rs-header-login input:focus {
  border-color: var(--rs-orange);
  box-shadow: 0 0 0 2px rgba(243, 112, 33, 0.15);
}

.rs-header-login input::placeholder {
  color: #9ca3af;
}

.rs-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  height: 36px;
  padding: 0 16px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.rs-btn-orange {
  background: var(--rs-gradient);
  color: #fff;
}

.rs-btn-orange:hover {
  filter: brightness(0.96);
  color: #fff;
}

.rs-btn-register {
  background: #fff;
  color: var(--rs-red);
  border: 1.5px solid var(--rs-red);
}

.rs-btn-register:hover {
  background: #fff5f5;
  color: var(--rs-red);
  border-color: var(--rs-red);
}

.rs-btn-outline {
  background: #fff;
  color: var(--rs-text);
  border: 1px solid #d1d5db;
}

.rs-btn-outline:hover {
  border-color: var(--rs-orange);
  color: var(--rs-orange);
}

.rs-header-user {
  display: flex;
  align-items: center;
  gap: 10px;
}

.rs-header-logout {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

.rs-header-logout i {
  font-size: 13px;
}

.rs-header-user .user-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--rs-orange);
}

.rs-member-menu-wrap {
  position: relative;
}

.rs-member-menu-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.rs-member-menu-caret {
  font-size: 10px;
  color: #fff;
  opacity: 0.9;
}

.rs-member-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  min-width: 210px;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.12);
  padding: 8px 0;
  z-index: 1200;
}

.rs-member-dropdown a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  color: #374151 !important;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
}

.rs-member-dropdown a:hover {
  background: #fdf2f4;
  color: #51071B !important;
}

.rs-member-dropdown a.is-logout {
  color: #dc2626 !important;
  border-top: 1px solid #f3f4f6;
  margin-top: 4px;
}

.rs-member-dropdown a i {
  width: 16px;
  text-align: center;
  color: #9ca3af;
}

.rs-member-dropdown a:hover i {
  color: #51071B;
}

.rs-member-dropdown a.is-logout i {
  color: #dc2626;
}

.rs-header .home-hamburger {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  padding: 0;
  border: none;
  border-radius: 10px;
  background: var(--rs-gradient);
  box-shadow: 0 8px 18px rgba(225, 29, 72, 0.28);
  cursor: pointer;
  flex-shrink: 0;
}

.rs-header .home-hamburger .bar {
  display: block;
  width: 22px;
  height: 3px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.28s ease, opacity 0.2s ease;
  transform-origin: center;
}

.rs-header .home-hamburger.active .bar:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.rs-header .home-hamburger.active .bar:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

/* Hide leftover per-page floating hamburgers when universal header is present */
body:has(.rs-header) .sp-hamburger,
body:has(.rs-header) .menu-toggle {
  display: none !important;
}

.rs-header .home-hamburger.active .bar:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* ---- Hero ---- */
.rs-hero {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  background: #f4ebe8;
}

.rs-hero-peach .rs-hero-slides .slide,
.rs-hero-peach .hero-slides .slide {
  background-size: cover;
  background-position: center;
}

.rs-hero-peach .rs-hero-overlay {
  background: linear-gradient(
    90deg,
    rgba(255, 248, 244, 0.35) 0%,
    rgba(255, 248, 244, 0.08) 42%,
    transparent 100%
  );
}

.rs-hero-peach .rs-hero-text {
  color: inherit;
}

.rs-hero-peach .rs-hero-tagline {
  color: #6b4f4f;
  text-shadow: none;
}

.rs-hero-peach .rs-hero-stats {
  background: #fff;
  box-shadow: 0 10px 28px rgba(183, 83, 40, 0.12);
  backdrop-filter: none;
  grid-template-columns: repeat(4, 1fr);
  width: min(1140px, calc(100% - 48px));
  padding: 18px 28px;
  gap: 0;
}

.rs-hero-peach .rs-stat {
  color: #374151;
  border-right: 1px solid #f1e3dc;
  padding: 0 16px;
}

.rs-hero-peach .rs-stat:last-child {
  border-right: none;
}

.rs-hero-peach .rs-stat i {
  color: var(--rs-red);
}

.rs-hero-peach .rs-stat-title strong {
  color: var(--rs-red);
}

.rs-hero-slides,
.rs-hero .hero-slides {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.rs-hero-slides .slide,
.rs-hero .hero-slides .slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease;
}

.rs-hero-slides .slide.active,
.rs-hero .hero-slides .slide.active {
  opacity: 1;
}

.rs-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.35) 0%,
    rgba(0, 0, 0, 0.12) 45%,
    rgba(0, 0, 0, 0.05) 100%
  );
  pointer-events: none;
}

.rs-hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 48px 24px 100px;
  display: grid;
  grid-template-columns: minmax(300px, 400px) 1fr;
  gap: 40px;
  align-items: center;
  min-height: 560px;
}

/* Search card */
.rs-search-card {
  background: #fff;
  border-radius: 14px;
  padding: 22px 22px 18px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.22);
}

.rs-search-card h2,
.rs-search-title-desktop {
  margin: 0 0 6px;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--rs-text);
  line-height: 1.25;
}

.rs-card-eyebrow,
.rs-mobile-eyebrow {
  margin: 0 0 8px;
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #d4af37;
}

.rs-search-card h2 span,
.rs-search-title-desktop .rs-script-accent {
  font-family: 'Dancing Script', cursive;
  color: var(--rs-red);
  font-size: 1.15em;
  font-weight: 700;
}

.rs-search-card .rs-card-sub {
  margin: 0 0 16px;
  font-size: 13px;
  color: var(--rs-muted);
  line-height: 1.45;
}

.rs-search-form .rs-field {
  margin-bottom: 12px;
}

.rs-search-form label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: #374151;
  margin-bottom: 5px;
}

.rs-search-form select,
.rs-search-form input[type="text"] {
  width: 100%;
  height: 36px;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  padding: 0 10px;
  font-size: 13px;
  color: var(--rs-text);
  background: #fff;
  outline: none;
}

.rs-search-form select:focus,
.rs-search-form input[type="text"]:focus {
  border-color: var(--rs-orange);
}

.rs-age-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.rs-age-dash {
  display: none;
}

.rs-field-pair {
  display: block;
}

.rs-radio-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.rs-radio-row label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin: 0;
  font-weight: 500;
  font-size: 13px;
  cursor: pointer;
}

/* Search card tab (mobile) */
.rs-search-card-head {
  display: none;
}

/* Mobile hero intro (desktop hidden) */
.rs-mobile-hero-intro {
  display: none;
}

.rs-mobile-header-register {
  display: none;
}

.rs-hero-peach .rs-hero-stats .rs-stat {
  flex-direction: row;
  align-items: flex-start;
  text-align: left;
  gap: 12px;
}

.rs-hero-peach .rs-btn-search {
  background: var(--rs-gradient);
}

.rs-hero-peach .rs-btn-search:hover {
  filter: brightness(0.96);
}

.rs-hero-peach .rs-radio-row input[type="radio"],
.rs-hero-peach .rs-radio-row input[type="checkbox"] {
  accent-color: var(--rs-red);
}

.rs-radio-row input[type="radio"],
.rs-radio-row input[type="checkbox"] {
  accent-color: var(--rs-orange);
  width: 15px;
  height: 15px;
}

.rs-btn-search {
  width: 100%;
  height: 44px;
  margin-top: 4px;
  border: none;
  border-radius: 10px;
  background: var(--rs-gradient);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: filter 0.2s;
}

.rs-btn-search:hover {
  filter: brightness(0.96);
}

/* Hero copy (right) */
.rs-hero-text {
  text-align: left;
  padding-left: 12px;
  align-self: center;
}

.rs-better-together {
  margin: 0 0 14px;
  line-height: 0.95;
}

.rs-better {
  display: block;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(42px, 4.5vw, 64px);
  font-weight: 700;
  color: var(--rs-navy);
  letter-spacing: -0.5px;
}

.rs-together {
  display: block;
  font-family: 'Dancing Script', cursive;
  font-size: clamp(56px, 6.5vw, 92px);
  font-weight: 700;
  color: var(--rs-red);
  margin-top: -4px;
}

.rs-hero-tagline {
  margin: 0;
  max-width: 380px;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(16px, 1.6vw, 21px);
  font-weight: 600;
  line-height: 1.5;
  color: #6b4f4f;
}

/* Stats bar */
.rs-hero-stats {
  position: absolute;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  z-index: 3;
  width: min(1140px, calc(100% - 48px));
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding: 18px 28px;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(183, 83, 40, 0.12);
}

.rs-stat {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 12px;
  color: #374151;
  font-size: 14px;
  font-weight: 500;
  text-align: left;
}

.rs-stat i {
  font-size: 22px;
  color: var(--rs-red);
  flex-shrink: 0;
  margin-top: 2px;
}

.rs-stat-text {
  min-width: 0;
}

.rs-stat-title {
  font-size: 14px;
  font-weight: 600;
  color: #374151;
  line-height: 1.3;
}

.rs-stat-title strong {
  font-weight: 800;
  color: var(--rs-red);
  font-size: 15px;
}

.rs-stat-desc {
  display: block;
  margin-top: 4px;
  font-size: 12px;
  color: var(--rs-muted);
  line-height: 1.35;
  font-weight: 400;
}

.rs-stat-desktop-only {
  display: flex;
}

/* ---- Desktop mockup (981px+) ---- */
@media (min-width: 981px) {
  .rs-hero {
    min-height: 640px;
  }

  .rs-hero-content {
    max-width: 1180px;
    grid-template-columns: minmax(300px, 380px) minmax(250px, 320px) 1fr;
    gap: 16px 24px;
    padding: 36px 24px 130px;
    min-height: 640px;
    align-items: center;
  }

  .rs-search-card {
    grid-column: 1;
    grid-row: 1;
    border-radius: 16px;
    padding: 24px 22px 20px;
    box-shadow: 0 14px 44px rgba(183, 83, 40, 0.14);
  }

  .rs-search-title-desktop {
    font-size: 24px;
    margin-bottom: 8px;
  }

  .rs-field-pair {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 12px;
  }

  .rs-field-pair .rs-field {
    margin-bottom: 0;
  }

  .rs-hero-text {
    grid-column: 2;
    grid-row: 1;
    padding-left: 0;
    max-width: 300px;
    justify-self: start;
    align-self: center;
    position: relative;
    z-index: 2;
  }

  .rs-better {
    font-size: clamp(36px, 3.2vw, 52px);
  }

  .rs-together {
    font-size: clamp(48px, 4.8vw, 72px);
    margin-top: -2px;
  }

  .rs-hero-tagline {
    max-width: 280px;
    font-size: clamp(15px, 1.4vw, 19px);
    color: #5c3d3d;
  }

  .rs-hero-peach .rs-hero-slides .slide,
  .rs-hero-peach .hero-slides .slide {
    background-position: 88% center;
  }

  .rs-hero-peach .rs-hero-overlay {
    background: linear-gradient(
      90deg,
      rgba(255, 248, 244, 0.72) 0%,
      rgba(255, 248, 244, 0.35) 42%,
      rgba(255, 248, 244, 0.08) 58%,
      transparent 72%
    );
  }
}

/* Responsive */
@media (max-width: 1100px) {
  .rs-header-login input {
    width: 100px;
    font-size: 11px;
    padding: 0 8px;
  }

  .rs-nav a {
    padding: 8px 6px;
    font-size: 12px;
  }

  .rs-btn {
    padding: 0 12px;
    font-size: 12px;
  }
}

@media (max-width: 980px) {
  :root {
    --rs-pink: #51071B;
    --rs-peach: #fff4ed;
    --rs-gradient: linear-gradient(135deg, #f97316 0%, #e11d48 55%, #51071B 100%);
    --rs-mobile-header-h: 92px;
  }

  /* Lock header on scroll (mobile) */
  .rs-header {
    position: fixed !important;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1200;
    box-shadow: 0 2px 14px rgba(0, 0, 0, 0.06);
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
  }

  body:has(header.rs-header),
  body.rs-page-home {
    padding-top: var(--rs-mobile-header-h) !important;
  }

  .rs-nav,
  .rs-header-login,
  .rs-header-register-desktop {
    display: none !important;
  }

  .rs-mobile-header-register {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-left: auto;
    padding: 7px 14px;
    border: 1.5px solid #e11d48;
    border-radius: 8px;
    background: #fff;
    color: #e11d48;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
  }

  .rs-header-auth {
    display: none;
  }

  .rs-header-auth.rs-header-user {
    display: flex !important;
    margin-left: auto;
  }

  .rs-header-logout span {
    display: none;
  }

  .rs-header-logout {
    padding: 8px 10px;
    min-width: 36px;
    justify-content: center;
  }

  .rs-header-user {
    gap: 8px;
  }

  .rs-header .home-hamburger {
    display: inline-flex !important;
    flex-direction: column !important;
    margin-left: auto !important;
    position: relative;
    z-index: 1202;
  }

  .rs-header-inner {
    min-height: 72px;
    padding: 0 14px;
    gap: 10px;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    align-items: center !important;
    justify-content: flex-start !important;
  }

  .rs-header .header-container {
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 10px !important;
    padding: 0 14px !important;
  }

  .rs-header .rs-logo {
    flex: 0 1 auto;
    min-width: 0;
  }

  .rs-header .home-hamburger {
    margin-left: auto !important;
  }

  .rs-logo-img {
    height: 40px;
    max-width: 155px;
  }

  /* Hero: peach mobile layout */
  .rs-hero-slides,
  .rs-hero-overlay {
    display: none;
  }

  .rs-hero {
    min-height: 0;
    overflow: visible;
    background: #f4ebe8;
  }

  .rs-mobile-hero-intro {
    display: block;
    position: relative;
    padding: 22px 16px 40px;
    min-height: 260px;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background:
      url('../Image/mobile-hero-banner.jpg') no-repeat center / cover;
    background-position: 72% center;
  }

  .rs-mobile-hero-copy {
    position: relative;
    z-index: 2;
    max-width: 58%;
    padding-top: 4px;
  }

  .rs-mobile-headline {
    margin: 0;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 26px;
    line-height: 1.2;
    font-weight: 700;
    color: #5c2e2e;
  }

  .rs-mobile-headline span {
    color: #7f1d1d;
  }

  .rs-mobile-headline i {
    display: block;
    margin-top: 6px;
    font-size: 14px;
    color: #e11d48;
  }

  .rs-mobile-heart-divider {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 10px 0;
    max-width: 170px;
  }

  .rs-mobile-heart-divider span {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, #c4a484, transparent);
  }

  .rs-mobile-heart-divider i {
    font-size: 10px;
    color: #e11d48;
  }

  .rs-mobile-sub {
    margin: 0;
    font-size: 12px;
    line-height: 1.45;
    color: #6b4f4f;
    max-width: 200px;
  }

  .rs-hero-content {
    grid-template-columns: 1fr;
    padding: 0 16px;
    margin-top: -28px;
    min-height: 0;
    position: relative;
    z-index: 3;
  }

  .rs-hero-text {
    display: none;
  }

  .rs-search-card {
    width: 100%;
    margin: 0 auto;
    padding: 0 16px 18px;
    border-radius: 16px;
    box-shadow: 0 14px 40px rgba(183, 83, 40, 0.16);
    overflow: hidden;
  }

  .rs-search-card-head {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 -16px 14px;
    padding: 0 16px 0 0;
  }

  .rs-search-tab {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px 10px 14px;
    background: var(--rs-gradient);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    border-radius: 0 0 14px 0;
    clip-path: polygon(0 0, 100% 0, 92% 100%, 0 100%);
    white-space: nowrap;
  }

  .rs-search-tab-deco {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 6px;
    min-width: 0;
  }

  .rs-search-tab-deco span {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, #e11d48, transparent);
  }

  .rs-search-tab-deco span:last-child {
    background: linear-gradient(270deg, #e11d48, transparent);
  }

  .rs-search-tab-deco i {
    font-size: 9px;
    color: #e11d48;
    flex-shrink: 0;
  }

  .rs-search-title-desktop,
  .rs-card-sub,
  .rs-card-eyebrow {
    display: none;
  }

  .rs-age-row {
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
  }

  .rs-age-dash {
    display: block;
    color: #9ca3af;
    font-weight: 600;
    text-align: center;
  }

  .rs-field-pair {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .rs-field-pair .rs-field {
    margin-bottom: 0;
  }

  .rs-radio-row input[type="radio"],
  .rs-radio-row input[type="checkbox"] {
    accent-color: #e11d48;
  }

  .rs-btn-search {
    height: 46px;
    border-radius: 10px;
    background: var(--rs-gradient);
    font-size: 16px;
    position: relative;
    overflow: hidden;
  }

  .rs-btn-search::after {
    content: "♥ ♥ ♥";
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 11px;
    letter-spacing: 4px;
    color: rgba(255, 255, 255, 0.35);
  }

  .rs-hero-stats {
    position: static;
    transform: none;
    width: calc(100% - 32px);
    margin: 14px auto 18px;
    padding: 14px 8px;
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 10px 28px rgba(183, 83, 40, 0.12);
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
  }

  .rs-stat-desktop-only {
    display: none;
  }

  .rs-hero-stats .rs-stat {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    text-align: center;
    color: #374151;
    padding: 4px 6px;
    border-right: 1px solid #f1e3dc;
  }

  .rs-hero-stats .rs-stat:last-child {
    border-right: none;
  }

  .rs-hero-stats .rs-stat i {
    font-size: 22px;
    color: #e11d48;
    margin: 0 0 2px;
  }

  .rs-hero-stats .rs-stat-text {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .rs-hero-stats .rs-stat-title {
    font-size: 10px;
    color: #6b7280;
    font-weight: 500;
  }

  .rs-hero-stats .rs-stat-title strong {
    display: block;
    font-size: 16px;
    color: #e11d48;
    line-height: 1.1;
    margin-bottom: 2px;
  }

  .rs-hero-stats .rs-stat-desc {
    display: none;
  }
}

@media (max-width: 480px) {
  .rs-logo-img {
    height: 36px;
    max-width: 140px;
  }

  .rs-mobile-header-register {
    padding: 6px 10px;
    font-size: 12px;
  }

  .rs-mobile-headline {
    font-size: 23px;
  }

  .rs-mobile-hero-intro {
    min-height: 220px;
    background-position: 78% center;
  }

  .rs-hero-stats {
    width: calc(100% - 24px);
  }

  .rs-hero-stats .rs-stat-title {
    font-size: 9px;
  }
}
