/* ============================================================
   JAZZ CLONE — CSS FIXES
   All rules extracted from the original jazz.com.pk inline
   stylesheets via Playwright. Do NOT modify bootstrap.min.css,
   mdb.min.css, or style.css.
   ============================================================ */

/* Body needs padding-top to compensate for fixed header (recharge only) */
body:has(.desk-header-bx) {
  padding-top: 87px;
}

/* ── TOP NAV ───────────────────────────────────────────────── */
.top-nav {
  height: 25px !important;
  overflow: hidden;
}

.d-tp-nav-bx {
  width: 100%;
  height: auto;
  float: left;
}

.d-tp-nav-bx ul {
  float: right;
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.d-tp-nav-bx ul li {
  width: auto;
  float: left;
  margin: 0;
  padding: 0 8px;
  line-height: 25px;
}

.d-tp-nav-bx ul li a {
  font-size: 0.75rem;
  color: #727375;
  text-transform: uppercase;
  font-weight: 400;
  line-height: 25px;
}

.d-tp-nav-bx ul li a:hover {
  color: #d71920;
}

/* ── LANG DROPDOWN & DARK MODE ─────────────────────────────── */

/* Override: must float left inside the right-col */
.lang-dropdown {
  float: left !important;
  margin: 23px 0 0 !important;
  width: auto;
}

.lang-dropdown a {
  color: #d71920;
  font-size: 14px;
  line-height: normal;
  font-weight: 400;
  display: flex;
  align-items: center;
  gap: 4px;
  text-decoration: none;
}

.lang-dropdown img {
  width: 20px !important;
  height: 20px !important;
  max-width: 20px !important;
  max-height: 20px !important;
}

/* Dark mode toggle */
.dark-mode {
  float: left !important;
  margin: 24px 0 0 10px !important;
}

.jdm {
  width: 70px;
}

.jdm a {
  display: flex;
  align-items: center;
  color: #d71920;
  font-size: 14px;
  line-height: normal;
  font-weight: 400;
  text-decoration: none;
  transition: 0.1s ease-in-out;
}

.jdm a img {
  width: 20px !important;
  height: 20px !important;
  max-width: 20px !important;
  max-height: 20px !important;
  margin-top: 2px;
  transition: 0.5s;
}

.jdm a span#dark_Name {
  padding-left: 5px;
}

/* ── SEARCH ICON ───────────────────────────────────────────── */
.d-search-icon-bx .fa-search {
  font-size: 16px;
}

/* ── MAIN NAV: reduce li padding slightly so items don't wrap ── */
/* Original has items summing to 462px; our font renders ~4px wider */
.d-main-nav-bx ul li {
  padding: 0 6px !important;
}

/* ── NAV CARET ICONS ───────────────────────────────────────── */
.d-main-nav-bx .fa-caret-down,
.d-ext-nav-bx .fa-chevron-down {
  font-size: 12px;
  margin-left: 4px;
}

/* ── AMOUNT RADIO TILES (.radio-2.media) ───────────────────── */
.radio-2.media {
  display: inline-block !important;
  text-align: center;
  margin: 20px 10px 20px 0;
  min-width: 115px;
  vertical-align: top;
}

.radio-2 img.img-amount,
.radio-2 img {
  display: block !important;
  margin: 0 auto !important;
  padding: 0;
  width: 50px !important;
  height: 50px !important;
  max-width: 50px !important;
  max-height: 50px !important;
  object-fit: contain;
  cursor: pointer;
}

.radio-2 span {
  display: flex;
  position: relative;
  margin: 15px auto 0;
  text-align: center;
  align-items: center;
  justify-content: center;
}

.radio-2 input[type="radio"] {
  width: auto;
  height: auto;
  margin-right: 5px;
}

/* ── PAYMENT METHOD RADIO TILES (.radio.media) ─────────────── */
.radio.media {
  display: flex !important;
  align-items: center;
  gap: 12px;
  margin: 12px 0;
  cursor: pointer;
}

.radio.media span {
  display: flex;
  align-items: center;
  gap: 8px;
}

.radio.media img.img-payment-type {
  width: 50px !important;
  height: 50px !important;
  max-width: 50px !important;
  flex-shrink: 0;
  object-fit: contain;
}

.radio.media label {
  margin-bottom: 0;
  cursor: pointer;
  color: #757575;
  position: static !important;
  transform: none !important;
  font-size: 0.9rem !important;
  font-size: 14px;
}

.radio input[type="radio"] {
  width: auto;
  height: auto;
  margin: 0;
}

/* ── FOOTER ICON GRID ──────────────────────────────────────── */
.three-icon-ftr-box img.img-fluid,
.three-icon-ftr-box img {
  width: 72px;
  height: 72px;
  object-fit: contain;
}

/* ── FOOTER PHONE/CONTACT ICONS ────────────────────────────── */
.phone-box .icon-bx i {
  font-size: 18px !important;
}

/* ── SOCIAL ICONS ──────────────────────────────────────────── */
.ftr-follow-us ul li svg {
  width: 24px;
  height: 24px;
  display: block;
}

.ftr-follow-us ul li a i {
  font-size: 24px;
  line-height: 1;
}

/* ── BOOTSTRAP COLLAPSE: keep hidden in clone (no JS) ──────── */
header .collapse {
  display: none !important;
}

/* ── DARK THEME OVERRIDES ──────────────────────────────────── */
html[data-theme="dark"] .desk-header-bx {
  background-color: #121212;
  border-bottom: 0.5px solid rgba(204, 204, 204, 0.89);
}

html[data-theme="dark"] .top-nav {
  background-color: #000 !important;
}

html[data-theme="dark"] .d-tp-nav-bx ul li a {
  color: #fff;
}

html[data-theme="dark"] .lang-dropdown a,
html[data-theme="dark"] .jdm a {
  color: #fff;
}

html[data-theme="dark"] .section.innerBanner {
  background-color: #121212;
}

html[data-theme="dark"] .section-inner-top {
  background-color: #121212;
}

html[data-theme="dark"] .breadcrumb-item a,
html[data-theme="dark"] .breadcrumb-item.active {
  color: #bdbdbd;
}

html[data-theme="dark"] .md-form input.form-control {
  color: #e0e0e0;
  border-bottom-color: #666;
  background: transparent;
}

html[data-theme="dark"] .md-form label {
  color: #aaa;
}

html[data-theme="dark"] .desk-ftr {
  background-color: #121212;
}

html[data-theme="dark"] .copyright-box {
  background-color: #0d0d0d;
  border-top: 1px solid #2a2a2a;
}

html[data-theme="dark"] .g-recaptcha-mock {
  background: #1e1e1e;
  border-color: #444;
}

html[data-theme="dark"] .g-recaptcha-mock-box {
  color: #e0e0e0;
}

html[data-theme="dark"] .g-recaptcha-mock-check {
  background: #2a2a2a;
  border-color: #555;
}

html[data-theme="light"] body {
  background-color: #f5f5f5;
}

html[data-theme="light"] .desk-header-bx {
  background-color: rgba(255, 255, 255, 0.93);
}
