/* ReloadTo design system — layered on Bootstrap 4 + stylesheet.css
   Visual language ported from the reloadto-web prototype. */

:root {
  --rt-red: #e3362a;
  --rt-red-hover: #c42b21;
  --rt-red-soft: #fdecea;
  --rt-coral: #e76747;
  --rt-ink: #1a1c2e;
  --rt-text: #3d4258;
  --rt-muted: #6b7089;
  --rt-line: #e6e4df;
  --rt-bg: #faf8f4;
  --rt-card: #ffffff;
  --rt-radius: 16px;
  --rt-radius-sm: 12px;
  --rt-shadow: 0 1px 2px rgba(15, 23, 42, 0.04), 0 12px 32px rgba(15, 23, 42, 0.08);
  --rt-shadow-lg: 0 1px 2px rgba(15, 23, 42, 0.04), 0 20px 50px rgba(15, 23, 42, 0.12);
  --rt-shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.06);
  --main-bg-color: #e3362a;
  --main-bg-border-color: #e3362a;
  --main-bg-color-hover: #c42b21;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--rt-bg);
  color: var(--rt-text);
  font-family: Inter, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6,
.rt-display {
  color: var(--rt-ink);
  font-family: "Plus Jakarta Sans", Inter, sans-serif;
  letter-spacing: -0.03em;
  font-weight: 700;
}

::selection {
  background: rgba(227, 54, 42, 0.18);
  color: var(--rt-ink);
}

a, a:focus {
  color: var(--rt-red);
}

a:hover, a:active {
  color: var(--rt-red-hover);
}

#main-wrapper {
  background: var(--rt-bg);
  min-height: 100vh;
}

#preloader {
  background: #fff;
}

#preloader [data-loader="dual-ring"] {
  border-color: var(--rt-red) transparent var(--rt-red) transparent;
}

img {
  max-width: 100%;
}

/* Buttons */
.btn {
  border-radius: 12px;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.btn-primary,
.btn-primary:not(:disabled):not(.disabled):active {
  background-color: var(--rt-red) !important;
  border-color: var(--rt-red) !important;
  color: #fff !important;
  box-shadow: 0 8px 24px rgba(231, 103, 71, 0.28);
}

.btn-primary:hover {
  background-color: var(--rt-red-hover) !important;
  border-color: var(--rt-red-hover) !important;
}

.btn-outline-primary {
  color: var(--rt-ink) !important;
  border-color: var(--rt-line) !important;
  background: #fff !important;
}

.btn-outline-primary:hover {
  background: var(--rt-ink) !important;
  border-color: var(--rt-ink) !important;
  color: #fff !important;
}

.btn-lg {
  border-radius: 12px;
  padding: 0.75rem 1.25rem;
}

/* Forms */
.form-control,
.custom-select,
.bootstrap-select > .dropdown-toggle {
  border-radius: 12px !important;
  border-color: var(--rt-line) !important;
  min-height: 48px;
  box-shadow: none !important;
}

.form-control:focus,
.custom-select:focus {
  border-color: rgba(227, 54, 42, 0.45) !important;
  box-shadow: 0 0 0 4px rgba(227, 54, 42, 0.12) !important;
}

label {
  font-weight: 600;
  color: var(--rt-ink);
  font-size: 0.92rem;
}

/* Header */
#header.rt-header {
  background: rgba(255, 255, 255, 0.78) !important;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: none;
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
  position: sticky;
  top: 0;
  z-index: 1040;
}

#header.rt-header.header-border .header-row {
  border-bottom: 0;
}

#header.rt-header .header-row,
#header.rt-header .header-column {
  align-items: center;
  align-self: center;
}

#header.rt-header .header-row {
  padding: 0.55rem 0;
  min-height: 64px;
}

#header.rt-header .logo {
  align-self: center;
  height: auto;
  float: none;
}

#header.rt-header .logo a {
  display: flex;
  align-items: center;
  line-height: 0;
}

#header.rt-header .logo img {
  display: block;
  max-width: 200px;
  max-height: 42px;
  height: auto;
  width: auto;
}

#header.rt-header .primary-menu ul.navbar-nav {
  align-items: center;
}

#header.rt-header .primary-menu ul.navbar-nav > li {
  height: auto;
  align-items: center;
}

#header.rt-header .primary-menu ul.navbar-nav > li > a,
#header.rt-header .primary-menu ul.navbar-nav > li a {
  color: var(--rt-muted);
  font-weight: 500;
  font-size: 0.92rem;
  height: auto;
  padding: 0.45rem 0.7rem;
  border-radius: 10px;
  line-height: 1.2;
}

#header.rt-header .primary-menu ul.navbar-nav > li > a:hover {
  color: var(--rt-ink);
}

#header.rt-header .login-signup > a.rt-btn-ghost:hover {
  color: var(--rt-ink) !important;
  background: rgba(15, 23, 42, 0.04);
}

#header.rt-header .primary-menu ul.navbar-nav > li.login-signup > a:before {
  display: none;
}

#header.rt-header .navbar-toggler {
  border: 0;
  padding: 8px;
  margin: 0 8px 0 4px;
}

#header.rt-header .navbar-toggler span {
  background: var(--rt-ink);
}

.rt-nav-link {
  display: inline-flex !important;
  align-items: center;
  text-decoration: none !important;
}

.rt-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.rt-btn-ghost,
.rt-btn-solid {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  padding: 0.45rem 0.95rem;
  font-weight: 600;
  font-size: 0.88rem;
  text-decoration: none !important;
}

.rt-btn-ghost {
  color: var(--rt-muted) !important;
  background: transparent;
}

.rt-btn-ghost:hover {
  background: rgba(15, 23, 42, 0.04);
  color: var(--rt-ink) !important;
}

.rt-btn-solid {
  color: #fff !important;
  background: var(--rt-red);
  box-shadow: 0 6px 16px rgba(231, 103, 71, 0.28);
}

.rt-btn-solid:hover {
  background: var(--rt-red-hover);
  color: #fff !important;
}

@media (min-width: 768px) {
  #header.rt-header .rt-btn-solid {
    height: 36px;
    min-height: 36px;
    padding: 0 0.95rem;
    width: auto;
    align-self: center;
    box-shadow: none;
  }

  #header.rt-header .rt-btn-ghost {
    height: 36px;
    padding: 0 0.7rem;
  }

  #header.rt-header .login-signup {
    margin-left: 0.35rem;
  }
}

.cart-icon {
  position: relative;
  color: var(--rt-ink) !important;
  margin-right: 8px;
  text-decoration: none !important;
  border: 1px solid var(--rt-line);
  background: #fff;
  border-radius: 12px;
  padding: 0.45rem 0.6rem;
}

.cart-icon .badge,
#lblCartCount {
  background: var(--rt-red) !important;
  color: #fff !important;
  border-radius: 999px;
  min-width: 18px;
  font-size: 11px;
}

.rt-lang-toggle {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.45rem;
}

.rt-header .dropdown-menu {
  border: 1px solid var(--rt-line);
  border-radius: 12px;
  box-shadow: var(--rt-shadow);
  padding: 0.4rem 0;
  min-width: 180px;
}

.rt-header .dropdown-menu a {
  display: flex;
  align-items: center;
  padding: 0.45rem 0.9rem;
  color: var(--rt-ink);
  text-decoration: none;
}

.rt-header .dropdown-menu a:hover {
  background: var(--rt-red-soft);
  color: var(--rt-red);
}

.rt-header .dropdown-divider {
  margin: 0.15rem 0;
}

.menu-show {
  color: var(--rt-ink) !important;
  font-weight: 600;
  align-self: center;
  margin: 0 0.15rem 0 0;
  line-height: 1;
}

#header.rt-header .header-column .d-sm-none {
  float: none !important;
  margin-top: 0 !important;
  margin-right: 0.5rem !important;
  display: flex;
  align-items: center;
}

@media (max-width: 991.98px) {
  #header.rt-header .primary-menu {
    align-self: center;
  }

  #header.rt-header .primary-menu > div {
    margin: 0;
  }
}

@media (max-width: 767.98px) {
  #header.rt-header .primary-menu ul.navbar-nav {
    background: #fff;
    padding: 0.75rem 0 1rem;
  }

  #header.rt-header .primary-menu ul.navbar-nav > li {
    display: block;
    height: auto;
  }

  #header.rt-header .rt-btn-ghost,
  #header.rt-header .rt-btn-solid {
    width: 100%;
    margin: 0.25rem 0;
  }
}

/* Landing hero — no form card */
.rt-hero,
.rt-hero-wrap {
  padding: 1.15rem 0 2rem;
  background:
    radial-gradient(ellipse 80% 50% at 20% 40%, rgba(227, 54, 42, 0.12) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 80% 20%, rgba(91, 124, 255, 0.1) 0%, transparent 50%),
    linear-gradient(180deg, rgba(227, 54, 42, 0.05) 0%, var(--rt-bg) 100%);
}

.rt-landing .rt-hero-copy {
  text-align: center;
  max-width: 46rem;
  margin: 0 auto 1.75rem;
}

.rt-landing .rt-hero-copy h1,
.rt-landing .rt-hero-copy #dynamic-text {
  font-size: 2.15rem;
  line-height: 1.12;
  margin: 0 0 1rem;
}

@media (min-width: 768px) {
  .rt-hero,
  .rt-hero-wrap {
    padding: 1.6rem 0 2.5rem;
  }

  .rt-landing .rt-hero-copy h1,
  .rt-landing .rt-hero-copy #dynamic-text {
    font-size: 3.35rem;
  }
}

.rt-flow-page .rt-hero-copy {
  text-align: center;
  max-width: 40rem;
  margin: 0 auto 1.25rem;
}

.rt-flow-page .rt-hero-copy h1,
.rt-flow-page .rt-hero-copy #dynamic-text {
  font-size: 2rem;
  line-height: 1.2;
  margin: 0 0 0.65rem;
}

@media (min-width: 768px) {
  .rt-flow-page .rt-hero-copy h1,
  .rt-flow-page .rt-hero-copy #dynamic-text {
    font-size: 2.5rem;
  }
}

.rt-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--rt-red);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 0.85rem;
}

.rt-lead,
#seo-text-container {
  color: var(--rt-muted);
  max-width: 38rem;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.05rem;
  line-height: 1.7;
}

.rt-trust-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin: 1rem 0 0;
}

.rt-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--rt-line);
  border-radius: 999px;
  padding: 0.4rem 0.8rem;
  font-size: 0.82rem;
  color: var(--rt-muted);
  font-weight: 500;
  box-shadow: var(--rt-shadow-sm);
}

.rt-chip i {
  color: var(--rt-red);
}

.rt-lookup {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  align-items: flex-end;
  justify-content: center;
  max-width: 36rem;
  margin: 1.5rem auto 0;
}

.rt-lookup .form-group,
.rt-lookup .iti {
  margin-bottom: 0;
}

.rt-lookup .form-control-lg,
.rt-lookup #phone {
  min-height: 54px;
}

.rt-recipient {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  width: 100%;
  max-width: 36rem;
  margin: 1.35rem auto 0;
  padding: 0.85rem 1rem;
  border: 1px dashed var(--rt-line);
  border-radius: 16px;
  background: #fff;
  color: inherit;
  text-align: left;
  box-shadow: var(--rt-shadow-sm);
}

.rt-recipient:hover,
.rt-recipient:focus {
  border-color: rgba(227, 54, 42, 0.4);
  box-shadow: 0 0 0 4px rgba(227, 54, 42, 0.08);
  outline: none;
}

.rt-recipient.is-filled {
  border-style: solid;
}

.rt-recipient-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 50%;
  background: rgba(227, 54, 42, 0.08);
  color: var(--rt-red);
  flex-shrink: 0;
}

.rt-recipient-copy {
  flex: 1;
  min-width: 0;
}

.rt-recipient-empty,
.rt-recipient-label {
  display: block;
  color: var(--rt-muted);
  font-size: 0.82rem;
  font-weight: 600;
}

.rt-recipient-filled strong {
  display: block;
  font-size: 1.02rem;
  line-height: 1.3;
  word-break: break-word;
}

.rt-recipient-change {
  color: var(--rt-red);
  font-size: 0.82rem;
  font-weight: 700;
  flex-shrink: 0;
}

.rt-recipient-desc {
  color: var(--rt-muted);
  margin-bottom: 0.75rem;
}

.rt-recipient-product {
  display: inline-block;
  margin-bottom: 0.85rem;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: rgba(227, 54, 42, 0.08);
  color: var(--rt-ink);
  font-size: 0.82rem;
  font-weight: 600;
}

.rt-recipient-error {
  color: #b42318;
  font-size: 0.88rem;
}

#phoneModal .rt-lookup {
  flex-direction: column;
  align-items: stretch;
  max-width: none;
  margin: 0;
}

#phoneModal .iti,
#phoneModal #phone {
  width: 100%;
}

#phoneModal #submit {
  margin-left: 0;
}

#phoneModal .iti__country-list {
  z-index: 2060;
}

/* Country search — prototype style */
.rt-search {
  max-width: 36rem;
  margin: 0 auto;
}

.rt-search-wrap {
  position: relative;
}

.rt-search-box {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  background: #fff;
  border: 1px solid var(--rt-line);
  border-radius: 18px;
  padding: 0.4rem 0.45rem 0.4rem 1rem;
  box-shadow: var(--rt-shadow-lg);
}

.rt-search-box:focus-within {
  border-color: rgba(227, 54, 42, 0.45);
  box-shadow: 0 0 0 4px rgba(227, 54, 42, 0.1), var(--rt-shadow-lg);
}

.rt-search-box i {
  color: var(--rt-muted);
}

.rt-search-box input {
  border: 0 !important;
  box-shadow: none !important;
  min-height: 46px;
  flex: 1;
  padding-left: 0;
  background: transparent !important;
  font-size: 1rem;
}

.rt-search-box input[type="search"]::-webkit-search-decoration,
.rt-search-box input[type="search"]::-webkit-search-cancel-button,
.rt-search-box input[type="search"]::-webkit-search-results-button,
.rt-search-box input[type="search"]::-webkit-search-results-decoration {
  display: none;
}

.rt-search-go {
  display: none;
  align-items: center;
  gap: 0.4rem;
  height: 46px;
  padding: 0 1.15rem;
  border: 0;
  border-radius: 12px;
  background: var(--rt-red);
  color: #fff;
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: 0 8px 20px rgba(231, 103, 71, 0.3);
}

.rt-search-go:hover {
  background: var(--rt-red-hover);
  color: #fff;
}

@media (min-width: 576px) {
  .rt-search-go {
    display: inline-flex;
  }
}

.rt-search-results {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 8px);
  background: #fff;
  border: 1px solid var(--rt-line);
  border-radius: 16px;
  box-shadow: var(--rt-shadow-lg);
  z-index: 30;
  max-height: 320px;
  overflow: auto;
  display: none;
  text-align: left;
}

.rt-search-results.is-open {
  display: block;
}

.rt-search-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  width: 100%;
  padding: 0.7rem 1rem;
  background: transparent;
  border: 0;
  text-align: left;
  color: var(--rt-ink);
  font-weight: 500;
}

.rt-search-item:hover,
.rt-search-item.is-active {
  background: rgba(15, 23, 42, 0.04);
}

.rt-search-item img,
.rt-pop-chip img {
  width: 22px;
  height: 16px;
  object-fit: cover;
  border-radius: 2px;
}

.rt-popular {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.45rem;
  margin-top: 1.15rem;
}

.rt-popular-label {
  width: 100%;
  text-align: center;
  font-size: 0.88rem;
  color: var(--rt-muted);
  margin-bottom: 0.15rem;
}

.rt-pop-chip,
.rt-popular button {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  border: 1px solid var(--rt-line);
  background: #fff;
  border-radius: 10px;
  padding: 0.4rem 0.7rem;
  font-size: 0.85rem;
  font-weight: 550;
  color: var(--rt-ink);
}

.rt-pop-chip:hover,
.rt-popular button:hover {
  border-color: rgba(227, 54, 42, 0.4);
  background: var(--rt-red-soft);
  color: var(--rt-ink);
}

.rt-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.5rem;
  max-width: 28rem;
  margin: 1.35rem auto 0;
  padding-top: 0.85rem;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
  text-align: center;
}

.rt-stat-value {
  font-family: "Plus Jakarta Sans", Inter, sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--rt-ink);
  line-height: 1.2;
}

@media (min-width: 768px) {
  .rt-stats {
    max-width: 32rem;
    margin-top: 1.6rem;
    padding-top: 1rem;
  }

  .rt-stat-value {
    font-size: 1.2rem;
  }
}

.rt-stat-label {
  margin: 0.1rem 0 0;
  font-size: 0.72rem;
  color: var(--rt-muted);
}

/* Services / how / CTA */
.rt-block {
  padding: 4.5rem 0;
}

.rt-block-tight {
  padding: 1.75rem 0 3rem;
}

@media (min-width: 768px) {
  .rt-block-tight {
    padding: 2.25rem 0 3.5rem;
  }
}

.rt-block-head {
  text-align: center;
  max-width: 36rem;
  margin: 0 auto 2.5rem;
}

.rt-block-head h2 {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

@media (min-width: 768px) {
  .rt-block-head h2 {
    font-size: 2.35rem;
  }
}

.rt-services-grid {
  display: grid;
  gap: 1.15rem;
  max-width: 52rem;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .rt-services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.rt-service-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--rt-line);
  border-radius: 18px;
  padding: 1.7rem;
  text-decoration: none !important;
  color: inherit;
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.rt-service-card:hover {
  border-color: rgba(227, 54, 42, 0.4);
  transform: translateY(-2px);
  box-shadow: var(--rt-shadow);
  color: inherit;
}

.rt-service-icon {
  display: inline-flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: var(--rt-red-soft);
  color: var(--rt-red);
  font-size: 1.2rem;
}

.rt-service-card h3 {
  margin: 1.15rem 0 0.5rem;
  font-size: 1.25rem;
}

.rt-service-card p {
  color: var(--rt-muted);
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.7;
}

.rt-service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: auto;
  padding-top: 1.1rem;
  color: var(--rt-red);
  font-weight: 700;
  font-size: 0.9rem;
}

.rt-how {
  background: #f3f1ec;
  border-top: 1px solid var(--rt-line);
  border-bottom: 1px solid var(--rt-line);
}

.rt-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 0.5rem;
  max-width: 56rem;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 768px) {
  .rt-steps {
    grid-template-columns: repeat(3, 1fr);
  }
}

.rt-step {
  background: transparent;
  border: 0;
  box-shadow: none;
  padding: 0;
}

.rt-step-num {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--rt-ink);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Plus Jakarta Sans", Inter, sans-serif;
  font-weight: 800;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.rt-step h3 {
  font-size: 1.1rem;
  margin-bottom: 0.45rem;
}

.rt-step p {
  color: var(--rt-muted);
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.7;
}

.rt-cta .rt-cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.rt-cta .btn {
  min-width: 11rem;
}

/* Operator / brand tiles */
.operator-cards,
.rt-brand-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

@media (min-width: 576px) {
  .operator-cards {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 992px) {
  .operator-cards {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (min-width: 1200px) {
  .operator-cards {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
}

.rt-brand-grid {
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .rt-brand-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1200px) {
  .rt-brand-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.operator-card,
.rt-brand-tile {
  flex: none !important;
  width: 100%;
  min-width: 0 !important;
  max-width: none !important;
  background: #fff;
  border: 1px solid var(--rt-line);
  border-radius: 14px;
  padding: 16px 12px;
  text-align: center;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
  box-shadow: none;
}

.operator-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  height: 100%;
  min-height: 104px;
  padding: 10px 8px;
}

.operator-card .card-content {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.rt-brand-tile {
  display: flex;
  align-items: center;
  text-align: left;
  gap: 1rem;
  padding: 1rem 1.1rem;
}

.operator-card:hover,
.rt-brand-tile:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
  border-color: rgba(26, 28, 46, 0.18);
}

.operator-card.selected {
  border-color: var(--rt-red);
  box-shadow: 0 0 0 3px rgba(227, 54, 42, 0.12);
}

.operator-logo {
  width: 100%;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 6px;
}

.operator-logo img {
  max-height: 36px;
  max-width: 80%;
  width: auto;
  height: auto;
  object-fit: contain;
}

.rt-brand-logo img {
  max-height: 48px;
  max-width: 88%;
  width: auto;
  height: auto;
  object-fit: contain;
}

.operator-card .card-title {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 2.2em;
  line-height: 1.2;
  font-size: 0.74rem !important;
  font-weight: 600;
  margin: 0 !important;
  width: 100%;
  color: var(--rt-ink);
  word-break: break-word;
}

.rt-brand-logo {
  width: 72px;
  height: 72px;
  flex: 0 0 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0;
  background: #f4f2ed;
  border-radius: 14px;
  padding: 8px;
}

.rt-brand-copy {
  min-width: 0;
  flex: 1;
}

.rt-brand-tile h6 {
  font-size: 0.98rem;
  margin: 0;
  color: var(--rt-ink);
  font-weight: 650;
}

.rt-brand-meta {
  display: block;
  margin-top: 0.3rem;
  color: var(--rt-muted);
  font-size: 0.8rem;
  font-weight: 500;
}

.rt-brand-arrow {
  color: var(--rt-muted);
  flex: 0 0 auto;
}

/* Product cards */
@media (max-width: 767.98px) {
  #tabs-container {
    padding-left: 0;
    padding-right: 0;
    max-width: none;
  }

  .rt-product-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.65rem;
    margin-left: 0;
    margin-right: 0;
    width: 100%;
  }

  .airtime-product-card,
  .bundle-product-card,
  .data-product-card,
  .internet-product-card,
  .giftcard-product-card,
  .subservice-product-card {
    flex: none !important;
    width: 100% !important;
    max-width: none !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    margin-bottom: 0 !important;
  }
}

@media (min-width: 768px) {
  .airtime-product-card,
  .bundle-product-card,
  .data-product-card,
  .internet-product-card,
  .giftcard-product-card,
  .subservice-product-card {
    flex: 0 1 calc(33.333% - 10px);
    max-width: calc(33.333% - 10px);
  }
}

.rt-product-card {
  background: #fff;
  border: 1px solid var(--rt-line) !important;
  border-radius: 16px !important;
  box-shadow: none;
}

.rt-product-price {
  font-weight: 800;
  font-family: "Plus Jakarta Sans", Inter, sans-serif;
  color: var(--rt-ink);
}

.nav-pills .nav-link {
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--rt-line);
  color: var(--rt-text);
  font-weight: 600;
  margin: 0 8px 8px 0;
}

.nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
  background: var(--rt-red) !important;
  border-color: var(--rt-red);
  color: #fff !important;
}

.rt-section {
  padding: 2.5rem 0 3rem;
}

.rt-section h2 {
  font-size: 1.5rem;
  margin-bottom: 0.4rem;
}

/* Category chips */
.rt-filters {
  display: flex;
  flex-wrap: nowrap;
  gap: 0.35rem;
  margin: 0.75rem 0 1rem;
  overflow-x: auto;
}

.rt-filter {
  border: 0;
  background: transparent;
  border-radius: 10px;
  padding: 0.45rem 0.85rem;
  font-size: 0.86rem;
  font-weight: 550;
  color: var(--rt-muted);
  white-space: nowrap;
}

.rt-filter.is-active,
.rt-filter:hover {
  background: var(--rt-ink);
  color: #fff;
}

/* Footer */
#footer.rt-footer {
  background: #1a1c2e;
  border-top: 0;
  margin-top: 0;
  color: rgba(255, 255, 255, 0.5);
}

#footer.rt-footer h4 {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: rgba(255, 255, 255, 0.38);
}

#footer.rt-footer .nav-link {
  color: rgba(255, 255, 255, 0.52) !important;
  padding: 0.3rem 0;
}

#footer.rt-footer .nav-link:hover {
  color: #fff !important;
}

#footer.rt-footer .form-control {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12) !important;
  color: #fff;
}

#footer.rt-footer .newsletter {
  display: flex;
  align-items: stretch;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
}

#footer.rt-footer .newsletter .form-control {
  height: auto !important;
  min-height: 44px;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent;
  box-shadow: none;
}

#footer.rt-footer .newsletter .input-group-append {
  margin: 0;
}

#footer.rt-footer .newsletter .btn {
  height: auto !important;
  min-height: 44px;
  border: 0;
  border-radius: 0 !important;
  padding: 0 0.9rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

#footer.rt-footer .form-text,
#footer.rt-footer .text-muted,
#footer.rt-footer .copyright-text {
  color: rgba(255, 255, 255, 0.32) !important;
}

#footer.rt-footer .footer-copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.rt-payments img {
  height: 28px;
  width: auto;
  filter: grayscale(0.2);
}

/* Shared page shells */
.body_container,
#payment_section .container,
#tab_login,
#tab_register,
#container_login_register {
  padding-top: 1.5rem;
  padding-bottom: 2rem;
}

.bg-light.shadow-md,
.bg-light.shadow-sm,
#login-signup-page,
#payment_section .bg-light {
  background: #fff !important;
  border: 1px solid var(--rt-line);
  border-radius: 18px !important;
  box-shadow: var(--rt-shadow-sm) !important;
}

.nav-tabs .nav-link {
  font-weight: 600;
  color: var(--rt-muted);
}

.nav-tabs .nav-link.active {
  color: var(--rt-red);
  border-color: var(--rt-line) var(--rt-line) #fff;
}

.nav-pills.alternate .nav-link {
  border-radius: 10px;
  color: var(--rt-text);
}

.nav-pills.alternate .nav-link.active {
  background: var(--rt-red-soft) !important;
  color: var(--rt-red) !important;
  border-color: transparent;
}

.nav-pills.alternate .nav-link i {
  margin-right: 0.5rem;
  width: 1.1rem;
  text-align: center;
}

.rt-account .col-lg-9 > .bg-light,
.rt-page .col-lg-9 > .bg-light {
  min-height: 280px;
}

#login-signup-page,
.rt-auth-page .bg-light {
  max-width: 520px;
}

.rt-auth-page .col-sm-8 {
  max-width: 640px;
}

.rt-payment .nav-tabs .nav-link {
  border-radius: 10px 10px 0 0;
  padding: 0.7rem 1rem;
}

.rt-payment .col-md-5.col-lg-4 > .bg-light-2 {
  background: #fff;
  border: 1px solid var(--rt-line);
  box-shadow: var(--rt-shadow-sm);
}

.rt-payment .product-details .accordion .card,
.rt-payment .product-details .accordion .card-header,
.rt-payment .product-details .accordion .card-body,
.rt-payment .rt-cart-body {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}

.rt-payment .product-details .accordion .card-header {
  padding: 0 0 0.65rem;
}

.rt-payment .product-details .accordion .card-header a {
  color: var(--rt-ink);
  text-decoration: none;
}

.rt-payment .product-details .accordion .card-body {
  padding: 0 !important;
}

.rt-payment .rt-cart-item {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
  background: var(--rt-bg);
  border: 1px solid var(--rt-line);
  border-radius: 12px;
  padding: 0.95rem 1rem;
  margin: 0 0 0.9rem;
}

.rt-payment .rt-cart-item-info {
  min-width: 0;
}

.rt-payment .rt-cart-item-recipient {
  display: block;
  font-weight: 700;
  color: var(--rt-ink);
  line-height: 1.3;
}

.rt-payment .rt-cart-item-name {
  display: block;
  margin-top: 0.2rem;
  color: var(--rt-muted);
  font-size: 0.85rem;
  line-height: 1.35;
}

.rt-payment .rt-cart-item-meta {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  gap: 0.55rem;
  padding-top: 0.05rem;
}

.rt-payment .rt-cart-item-price {
  font-weight: 700;
  color: var(--rt-ink);
  white-space: nowrap;
}

.rt-payment .rt-cart-item .delete {
  cursor: pointer;
  color: var(--rt-muted);
}

.rt-payment .rt-cart-item .delete:hover {
  color: var(--rt-red);
}

.rt-payment .rt-cart-totals {
  margin: 0;
}

.rt-payment .rt-cart-total {
  padding-top: 0.35rem;
  border-top: 1px solid var(--rt-line);
}

.rt-payment #add_to_cart {
  background: transparent !important;
  color: var(--rt-ink) !important;
  border: 1px solid var(--rt-line) !important;
  border-radius: var(--rt-radius-sm) !important;
  box-shadow: none !important;
  font-weight: 600;
  font-size: 0.92rem;
}

.rt-payment #add_to_cart:hover {
  background: #fff !important;
  border-color: var(--rt-red) !important;
  color: var(--rt-red) !important;
}

.rt-cart-add-wrap {
  display: block;
  text-decoration: none !important;
}

.account-card {
  position: relative;
  overflow: hidden;
  min-height: 0;
  border-radius: 14px !important;
  box-shadow: var(--rt-shadow-sm);
}

.account-card-primary .text-4:first-of-type {
  padding-right: 4.75rem;
}

.account-card .account-card-overlay {
  z-index: 2;
}

.rt-card-primary-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 1;
  display: inline-block;
  min-height: 0 !important;
  height: auto !important;
  max-width: none;
  flex: 0 0 auto;
  white-space: nowrap;
  background: rgba(255, 255, 255, 0.94);
  color: var(--rt-ink);
  border-radius: 999px;
  padding: 0.18rem 0.55rem;
  font-size: 0.68rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.02em;
  text-transform: capitalize;
}

#payment_section h3,
#login-signup-page,
.rt-auth-page,
.rt-page {
  color: var(--rt-ink);
}

#seo-footer-text {
  color: var(--rt-muted);
  font-size: 0.92rem;
}

#seo-footer-text p + p {
  margin-top: 0.75rem;
}

.alert-info {
  border-radius: 12px;
  border: 1px solid #bfdbfe;
}

.modal-content {
  border-radius: 16px;
  border: 1px solid var(--rt-line);
}

.no-scrollbar {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.no-scrollbar::-webkit-scrollbar {
  display: none;
}

.rt-sr-only {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.rt-hero-card {
  background: transparent;
  border: 0;
  box-shadow: none;
  padding: 0;
}

/* eSIM destination tiles + plans */
.rt-esim-page {
  padding-top: 1.25rem;
  padding-bottom: 2rem;
}

.rt-esim-hero {
  max-width: 720px;
  margin: 0 auto 1.5rem;
  text-align: center;
}

.rt-esim-hero h1 {
  font-size: 2rem;
  margin-bottom: 0.35rem;
}

.rt-esim-hero #dynamic-text {
  color: var(--rt-ink);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.rt-esim-hero p {
  color: var(--rt-muted);
  margin-bottom: 0;
}

.rt-esim-search {
  max-width: 420px;
  margin: 0 auto 1.15rem;
}

.rt-esim-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

@media (min-width: 576px) {
  .rt-esim-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 768px) {
  .rt-esim-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (min-width: 992px) {
  .rt-esim-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}

@media (min-width: 1200px) {
  .rt-esim-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
}

.rt-esim-tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 0.7rem;
  width: 100%;
  min-width: 0;
  margin: 0;
  padding: 1.05rem 0.75rem 0.95rem;
  background: #fff;
  border: 1px solid var(--rt-line);
  border-radius: 14px;
  cursor: pointer;
  text-align: center;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.rt-esim-tile:hover {
  transform: translateY(-2px);
  border-color: rgba(26, 28, 46, 0.18);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
}

.rt-esim-flag {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--rt-bg);
  border-radius: 12px;
  color: var(--rt-red);
  font-size: 1.2rem;
}

.rt-esim-flag img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rt-esim-tile-name {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 2.4em;
  margin: 0;
  color: var(--rt-ink);
  font-size: 0.86rem;
  font-weight: 650;
  line-height: 1.25;
}

.rt-esim-plan {
  height: 100%;
  background: #fff !important;
  border: 1px solid var(--rt-line) !important;
  border-radius: 16px !important;
  box-shadow: none;
  text-align: left !important;
  cursor: default !important;
  flex: none !important;
  max-width: none !important;
  padding: 0 !important;
  transform: none !important;
}

.rt-esim-plan:hover {
  transform: none !important;
  box-shadow: var(--rt-shadow-sm);
}

.rt-esim-plan .card-header {
  background: var(--rt-bg) !important;
  border-bottom: 1px solid var(--rt-line);
  padding: 0.9rem 1rem;
}

.rt-esim-plan .card-header h5 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--rt-ink);
}

.rt-esim-plan .card-body {
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  padding: 1rem !important;
}

.rt-esim-plan .card-text {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.65rem;
  color: var(--rt-text);
  font-size: 0.92rem;
}

.rt-esim-plan-price {
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--rt-ink);
}

.esim-logo {
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.esim-logo img {
  max-width: 72px;
  max-height: 42px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.rt-esim-step {
  height: 100%;
  border: 1px solid var(--rt-line) !important;
  border-radius: 16px !important;
  box-shadow: none !important;
  flex: none !important;
  max-width: none !important;
  padding: 0 !important;
  text-align: center;
  cursor: default !important;
  transform: none !important;
}

.rt-esim-step:hover {
  transform: none !important;
}

.rt-esim-step .card-body {
  background: transparent !important;
  border: 0 !important;
  padding: 1.4rem 1.1rem !important;
}

.rt-esim-step .card-text {
  display: block;
  color: var(--rt-muted);
}

.rt-country-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

@media (min-width: 768px) {
  .rt-country-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 1200px) {
  .rt-country-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.rt-country-card {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  min-width: 0;
  width: 100%;
  margin: 0;
  padding: 1.05rem 1.1rem;
  background: #fff;
  border: 1px solid var(--rt-line);
  border-radius: 14px;
  cursor: pointer;
  text-align: left;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.rt-country-card:hover {
  transform: translateY(-2px);
  border-color: rgba(26, 28, 46, 0.18);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
}

.rt-country-card h5 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0;
  color: var(--rt-ink);
  font-size: 1.02rem;
  font-weight: 700;
  line-height: 1.25;
}

.rt-country-card .flag-icon {
  flex-shrink: 0;
}

.rt-country-meta {
  margin: 0;
  color: var(--rt-muted);
  font-size: 0.8rem;
  font-weight: 600;
}

.rt-country-ops {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin: 0;
  color: var(--rt-text);
  font-size: 0.86rem;
  line-height: 1.4;
}

.rt-country-search {
  max-width: 420px;
  margin: 0 auto 1.25rem;
}
