/* ==========================================================================
   📌 1. المتغيرات والتهيئة العامة (VARIABLES & GENERAL RESET)
   ========================================================================== */
:root {
  --primary: #2454ff;
  --primary-dark: #1a3fd1;
  --primary-light: #4a72ff;
  --accent-blue: #18a8ff;
  --accent-green: #1ac472;
  --accent-orange: #ff8c00;
  --bg: #ffffff;
  --bg-soft: #f6f8fc;
  --bg-gray: #eef1f7;
  --text: #0c1437;
  --muted: #5b6485;
  --border: #e6eaf2;
  --shadow-sm: 0 6px 18px rgba(20, 35, 80, 0.06);
  --shadow-md: 0 14px 36px rgba(20, 35, 80, 0.1);
  --shadow-lg: 0 24px 56px rgba(20, 35, 80, 0.14);
  --radius: 14px;
  --radius-lg: 20px;
  --container: 1240px;
  --header-h: 76px;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

/* 🌙 إعدادات الوضع المظلم الشامل (Global Dark Mode Variables) */
body.dark {
  --bg: #121833 !important;
  --bg-soft: #1a2240 !important;
  --bg-gray: #1e2a50 !important;
  --text: #e8ecf5 !important;
  --muted: #9aa3c5 !important;
  --border: #2b3566 !important;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family:
    "Cairo",
    system-ui,
    -apple-system,
    sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
  direction: rtl;
  -webkit-font-smoothing: antialiased;
  font-size: 17px;
  transition:
    background 0.3s var(--ease),
    color 0.3s var(--ease);
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
ul {
  list-style: none;
}
button {
  font: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

/* ─── شريط العلوي الملون ─── */
.topbar {
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--primary),
    var(--accent-blue),
    var(--accent-green)
  );
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 500;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: saturate(180%) blur(18px);
  -webkit-backdrop-filter: saturate(180%) blur(18px);
  border-bottom: 1px solid transparent;
  transition: all 0.3s var(--ease);
}
body.dark .site-header {
  background: rgba(18, 24, 51, 0.85) !important;
}
.site-header.scrolled {
  background: var(--bg);
  box-shadow: 0 8px 28px rgba(20, 35, 80, 0.08);
  border-color: var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 60px;
  gap: 8px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.brand img {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  object-fit: contain;
  box-shadow: 0 4px 10px rgba(36, 84, 255, 0.15);
}
.brand-text strong {
  display: block;
  font-size: 13px;
  font-weight: 800;
  color: var(--text);
  line-height: 1.2;
}
.brand-text span {
  display: none;
}

.search {
  display: flex;
  flex: 1;
  min-width: 0;
  background: var(--bg-soft);
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 6px 12px;
  gap: 6px;
  align-items: center;
  transition: 0.25s var(--ease);
}
.search input {
  flex: 1;
  border: none;
  background: transparent;
  outline: none;
  font-size: 12px;
  font-family: inherit;
  direction: rtl;
  width: 100%;
  color: var(--text);
}
.search button {
  color: var(--muted);
  display: flex;
  flex-shrink: 0;
}
.search button svg {
  width: 14px;
  height: 14px;
}

.btn-login {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--text);
  background: var(--bg);
  transition: 0.25s var(--ease);
  flex-shrink: 0;
}
.btn-login:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

.burger {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: var(--bg);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
  z-index: 700;
}
.burger span {
  width: 18px;
  height: 2px;
  background: var(--text);
  transition: all 0.3s var(--ease);
}

@media (min-width: 480px) {
  .header-inner {
    min-height: var(--header-h);
    gap: 14px;
  }
  .brand img {
    width: 44px;
    height: 44px;
  }
  .brand-text strong {
    font-size: 15px;
  }
  .search {
    padding: 8px 16px;
  }
  .search input {
    font-size: 13.5px;
  }
  .btn-login,
  .burger {
    width: 44px;
    height: 44px;
  }
}

/* ─── MOBILE DRAWER ─── */
.main-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(12, 20, 55, 0.6);
  backdrop-filter: blur(4px);
  z-index: 600;
  opacity: 0;
  transition: opacity 0.3s var(--ease);
}
.main-nav.open {
  display: block;
  opacity: 1;
}
.nav-panel {
  position: fixed;
  top: 0;
  right: 0;
  width: min(300px, 80vw);
  height: 100dvh;
  background: var(--bg);
  box-shadow: -10px 0 40px rgba(20, 35, 80, 0.2);
  transform: translateX(110%);
  transition: transform 0.4s var(--ease);
  display: flex;
  flex-direction: column;
  padding-bottom: 30px;
}
.main-nav.open .nav-panel {
  transform: translateX(0);
}
.nav-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
  background: var(--bg);
}
.nav-panel > ul {
  display: flex;
  flex-direction: column;
  padding: 10px;
}
.nav-panel > ul > li > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  font-weight: 600;
  font-size: 15px;
  color: var(--text);
}
.nav-panel > ul > li > a.active,
.nav-panel > ul > li > a:hover {
  background: rgba(36, 84, 255, 0.06);
  color: var(--primary);
}
.submenu {
  max-height: 0;
  overflow: hidden;
  background: var(--bg-soft);
  border-radius: 8px;
  margin: 0 8px;
  transition: max-height 0.3s var(--ease);
}
.has-sub.open-sub > .submenu {
  max-height: 600px;
}

@media (min-width: 1025px) {
  .burger,
  .nav-panel-head {
    display: none;
  }
  .main-nav {
    display: block !important;
    position: static !important;
    background: none !important;
    backdrop-filter: none !important;
    opacity: 1 !important;
  }
  .nav-panel {
    position: static !important;
    width: auto !important;
    height: auto !important;
    background: transparent !important;
    box-shadow: none !important;
    transform: none !important;
    overflow: visible !important;
    padding: 0 !important;
  }
  .nav-panel > ul {
    flex-direction: row;
    gap: 4px;
  }
  .nav-panel > ul > li > a {
    padding: 8px 12px;
    font-size: 14px;
    color: var(--text);
  }
  .has-sub {
    position: relative;
  }
  .submenu {
    position: absolute;
    top: 100%;
    right: 0;
    width: 240px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    max-height: none !important;
  }
  .has-sub:hover > .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  .brand-text span {
    display: block;
    color: var(--muted);
    font-size: 11px;
  }
  .btn-login {
    width: auto;
    height: auto;
    padding: 10px 20px;
    border-radius: 12px;
    gap: 8px;
  }
  .btn-login span {
    display: block;
  }
}

/* ==========================================================================
   📌 3. بانر هيدر الصفحة والكتب العائمة (GIFTS / TRAINERS BANNER)
   ========================================================================== */
.gifts-banner-section {
  position: relative;
  background: var(--bg-soft);
  padding: 60px 0;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.gifts-banner-content {
  position: relative;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
}
.gifts-page-title {
  font-size: 32px;
  font-weight: 800;
  color: #5e35b1; /* اللون البنفسجي لعنوان الصفحة الفرعية */
  margin-bottom: 12px;
}
.gifts-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
}
.gifts-breadcrumb a {
  color: var(--muted);
  transition: color 0.2s;
}
.gifts-breadcrumb a:hover {
  color: var(--primary);
}
.breadcrumb-separator {
  font-size: 11px;
  color: var(--muted);
}
.breadcrumb-current {
  color: var(--text);
}

/* الأشكال الخلفية أُزيلت */
50% {
    transform: translateY(-8px);
  }
}

/* ==========================================================================
   📌 4. تصميم شبكة كروت فريق العمل والمدربين (TRAINERS SHIELD GRID)
   ========================================================================== */
.trainers-grid-section {
  padding: 70px 0;
  background-color: var(--bg);
}
.trainers-cards-layout-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  padding: 10px 0;
}

.trainer-profile-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: all 0.3s var(--ease);
  width: 100%;
  max-width: 380px;
  margin: 0 auto;
}
.trainer-profile-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(94, 53, 177, 0.25);
}
.trainer-card-media-top {
  position: relative;
  aspect-ratio: 1.2 / 1;
  background-color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
  border-bottom: 1px solid var(--bg-soft);
}
.trainer-bg-watermark {
  max-height: 100%;
  object-fit: contain;
  width: auto;
}
.trainer-tag-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background-color: #e91e63; /* الشارة الوردية لعلامة "صورة" */
  color: #ffffff;
  padding: 4px 14px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 700;
}
.trainer-card-body-info {
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.trainer-specialty-label {
  color: #ff0000; /* التصنيف باللون الأحمر العريض */
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 8px;
}
.trainer-main-name {
  font-size: 19px;
  font-weight: 800;
  color: #4a148c; /* الاسم باللون البنفسجي الداكن */
  margin-bottom: 8px;
}
.trainer-sub-title {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
  min-height: 44px;
  margin-bottom: 20px;
}
.trainer-card-action-bar {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px dashed var(--border);
  padding-top: 16px;
}
.btn-trainer-profile {
  background-color: #007bff; /* الزر الأزرق لتصفح الملف */
  color: #ffffff;
  padding: 8px 18px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 700;
}
.trainer-avatar-thumbnail {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  border: 1px solid var(--border);
}

/* ==========================================================================
   📌 5. تذييل الصفحة والقائمة البريدية (FOOTER & SOCIAL UTILITIES)
   ========================================================================== */
.site-footer {
  background: #0c1437;
  color: #cdd3ea;
  padding: 60px 0 24px;
  margin-top: 30px;
}
.whatsapp-subscribe-container {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 35px;
  margin-bottom: 40px;
}
.whatsapp-subscribe-inner {
  background-color: #111a42;
  border-radius: 12px;
  padding: 30px 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  text-align: center;
}
.whatsapp-subscribe-text h3 {
  color: #ffffff;
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 6px;
}
.whatsapp-subscribe-text p {
  color: #9aa3c5;
  font-size: 15px;
}
.whatsapp-subscribe-form {
  display: flex;
  width: 100%;
  max-width: 500px;
  background-color: #1c2554;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  overflow: hidden;
  padding: 5px;
}
.whatsapp-subscribe-form input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  padding: 12px 18px;
  color: #ffffff;
  font-family: inherit;
  font-size: 15px;
}
.whatsapp-subscribe-form input::placeholder {
  color: #5d6790;
}
.whatsapp-subscribe-form button {
  background-color: #5e35b1;
  color: #ffffff;
  padding: 0 30px;
  font-weight: 700;
  font-size: 15px;
  border-radius: 6px;
  transition: background-color 0.25s;
}
.whatsapp-subscribe-form button:hover {
  background-color: #4e279b;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 38px;
  text-align: right;
}
.brand-footer {
  color: #fff;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand-footer img {
  background: #fff;
  border-radius: 10px;
  padding: 4px;
  width: 38px;
  height: 38px;
}
.brand-footer strong {
  font-size: 15px;
}
.footer-grid h4 {
  color: #fff;
  margin-bottom: 14px;
  font-size: 14.5px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  padding-bottom: 10px;
  font-weight: 800;
}
.footer-grid ul li {
  padding: 6px 0;
  font-size: 13.5px;
  color: #cdd3ea;
}
.footer-grid ul li a:hover {
  color: var(--accent-blue);
}

.copyright-wrapper {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 40px;
  padding-top: 25px;
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  gap: 20px;
}
.copyright-wrapper .copyright {
  font-size: 13px;
  color: #8b93b5;
}
.footer-social-icons {
  display: flex;
  gap: 10px;
  direction: ltr;
}
.social-icon {
  width: 36px;
  height: 36px;
  background-color: #1c2554;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
}
.social-icon:hover {
  background-color: var(--primary);
  transform: translateY(-3px);
}

/* العناصر العائمة الصعود والواتساب */
.scroll-to-top-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  background-color: var(--bg);
  color: var(--text);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  z-index: 998;
  opacity: 1;
  transform: translateY(0);
  transition: all 0.3s var(--ease);
}
.scroll-to-top-btn:hover {
  background-color: var(--primary);
  color: #fff;
  transform: translateY(-3px);
}
.whatsapp-floating-action-node {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 999;
}
.whatsapp-anchor-element {
  width: 56px;
  height: 56px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.3);
}

@media (min-width: 768px) {
  .whatsapp-subscribe-inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: right;
  }
  .whatsapp-subscribe-form {
    max-width: 440px;
  }
  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 60px;
  }
  .copyright-wrapper {
    flex-direction: row;
    justify-content: space-between;
  }
}


/* ==========================================================================
   🌙 6. Dark Mode — شامل كل السيلكتورات (body.dark / html.dark / data-theme / data-bs-theme)
   ========================================================================== */

/* ── CSS Variables ── */
body.dark,
html.dark body,
[data-theme="dark"] body,
[data-bs-theme="dark"] body {
  --bg: #121833 !important;
  --bg-soft: #1a2240 !important;
  --bg-gray: #1e2a50 !important;
  --text: #e8ecf5 !important;
  --muted: #9aa3c5 !important;
  --border: #2b3566 !important;
}

/* ── Header ── */
body.dark .site-header,
html.dark .site-header,
[data-theme="dark"] .site-header,
[data-bs-theme="dark"] .site-header {
  background: rgba(18, 24, 51, 0.85) !important;
}

/* ── Banner ── */
body.dark .gifts-banner-section,
body.dark .trainers-grid-section,
html.dark .gifts-banner-section,
html.dark .trainers-grid-section,
[data-theme="dark"] .gifts-banner-section,
[data-theme="dark"] .trainers-grid-section,
[data-bs-theme="dark"] .gifts-banner-section,
[data-bs-theme="dark"] .trainers-grid-section {
  background-color: #121833 !important;
}

body.dark .gifts-page-title,
html.dark .gifts-page-title,
[data-theme="dark"] .gifts-page-title,
[data-bs-theme="dark"] .gifts-page-title {
  color: #b39ddb !important;
}

/* ── Trainer Cards ── */
body.dark .trainer-profile-card,
html.dark .trainer-profile-card,
[data-theme="dark"] .trainer-profile-card,
[data-bs-theme="dark"] .trainer-profile-card {
  background-color: #1c2347 !important;
  border-color: #2b3566 !important;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3) !important;
}
body.dark .trainer-profile-card:hover,
html.dark .trainer-profile-card:hover,
[data-theme="dark"] .trainer-profile-card:hover,
[data-bs-theme="dark"] .trainer-profile-card:hover {
  box-shadow: 0 20px 40px rgba(0,0,0,0.45) !important;
  border-color: rgba(179,157,219,0.35) !important;
}

body.dark .trainer-card-media-top,
html.dark .trainer-card-media-top,
[data-theme="dark"] .trainer-card-media-top,
[data-bs-theme="dark"] .trainer-card-media-top {
  background-color: #161b3d !important;
  border-bottom-color: #2b3566 !important;
}

body.dark .trainer-card-body-info,
html.dark .trainer-card-body-info,
[data-theme="dark"] .trainer-card-body-info,
[data-bs-theme="dark"] .trainer-card-body-info {
  background-color: #1c2347 !important;
}

body.dark .trainer-main-name,
html.dark .trainer-main-name,
[data-theme="dark"] .trainer-main-name,
[data-bs-theme="dark"] .trainer-main-name {
  color: #ffffff !important;
}

body.dark .trainer-specialty-label,
html.dark .trainer-specialty-label,
[data-theme="dark"] .trainer-specialty-label,
[data-bs-theme="dark"] .trainer-specialty-label {
  color: #ff6b6b !important;
}

body.dark .trainer-sub-title,
html.dark .trainer-sub-title,
[data-theme="dark"] .trainer-sub-title,
[data-bs-theme="dark"] .trainer-sub-title {
  color: #9aa3c5 !important;
}

body.dark .trainer-card-action-bar,
html.dark .trainer-card-action-bar,
[data-theme="dark"] .trainer-card-action-bar,
[data-bs-theme="dark"] .trainer-card-action-bar {
  border-top-color: #2b3566 !important;
}

body.dark .trainer-avatar-thumbnail,
html.dark .trainer-avatar-thumbnail,
[data-theme="dark"] .trainer-avatar-thumbnail,
[data-bs-theme="dark"] .trainer-avatar-thumbnail {
  border-color: #2b3566 !important;
}

body.dark .btn-trainer-profile,
html.dark .btn-trainer-profile,
[data-theme="dark"] .btn-trainer-profile,
[data-bs-theme="dark"] .btn-trainer-profile {
  background-color: #1a6fd4 !important;
}
body.dark .btn-trainer-profile:hover,
html.dark .btn-trainer-profile:hover,
[data-theme="dark"] .btn-trainer-profile:hover,
[data-bs-theme="dark"] .btn-trainer-profile:hover {
  background-color: #1558b0 !important;
}

/* ── Scroll to top btn ── */
body.dark .scroll-to-top-btn,
html.dark .scroll-to-top-btn,
[data-theme="dark"] .scroll-to-top-btn,
[data-bs-theme="dark"] .scroll-to-top-btn {
  background-color: #1a2240 !important;
  color: #ffffff !important;
  border-color: #2b3566 !important;
}

/* ── Nav Panel (Mobile Drawer) ── */
body.dark .nav-panel,
html.dark .nav-panel,
[data-theme="dark"] .nav-panel,
[data-bs-theme="dark"] .nav-panel {
  background: #121833 !important;
}
body.dark .nav-panel-head,
html.dark .nav-panel-head,
[data-theme="dark"] .nav-panel-head,
[data-bs-theme="dark"] .nav-panel-head {
  border-bottom-color: #2b3566 !important;
}
body.dark .submenu,
html.dark .submenu,
[data-theme="dark"] .submenu,
[data-bs-theme="dark"] .submenu {
  background: #1a2240 !important;
  border-color: #2b3566 !important;
}

/* ── Search bar ── */
body.dark .search,
html.dark .search,
[data-theme="dark"] .search,
[data-bs-theme="dark"] .search {
  background: #1a2240 !important;
}
body.dark .search input,
html.dark .search input,
[data-theme="dark"] .search input,
[data-bs-theme="dark"] .search input {
  color: #e8ecf5 !important;
}

/* ── Buttons ── */
body.dark .btn-login,
body.dark .burger,
html.dark .btn-login,
html.dark .burger,
[data-theme="dark"] .btn-login,
[data-theme="dark"] .burger,
[data-bs-theme="dark"] .btn-login,
[data-bs-theme="dark"] .burger {
  background: #1a2240 !important;
  border-color: #2b3566 !important;
  color: #e8ecf5 !important;
}

/* ── prefers-color-scheme fallback ── */
@media (prefers-color-scheme: dark) {
  body:not(.light) {
    --bg: #121833;
    --bg-soft: #1a2240;
    --bg-gray: #1e2a50;
    --text: #e8ecf5;
    --muted: #9aa3c5;
    --border: #2b3566;
  }
  body:not(.light) .gifts-banner-section,
  body:not(.light) .trainers-grid-section { background-color: #121833 !important; }
  body:not(.light) .gifts-page-title { color: #b39ddb !important; }
  body:not(.light) .trainer-profile-card { background-color: #1c2347 !important; border-color: #2b3566 !important; }
  body:not(.light) .trainer-card-media-top { background-color: #161b3d !important; border-bottom-color: #2b3566 !important; }
  body:not(.light) .trainer-card-body-info { background-color: #1c2347 !important; }
  body:not(.light) .trainer-main-name { color: #ffffff !important; }
  body:not(.light) .trainer-specialty-label { color: #ff6b6b !important; }
  body:not(.light) .trainer-sub-title { color: #9aa3c5 !important; }
  body:not(.light) .trainer-card-action-bar { border-top-color: #2b3566 !important; }
  body:not(.light) .trainer-avatar-thumbnail { border-color: #2b3566 !important; }
  body:not(.light) .btn-trainer-profile { background-color: #1a6fd4 !important; }
  body:not(.light) .scroll-to-top-btn { background-color: #1a2240 !important; color: #fff !important; border-color: #2b3566 !important; }
  body:not(.light) .site-header { background: rgba(18,24,51,0.85) !important; }
  body:not(.light) .search { background: #1a2240 !important; }
  body:not(.light) .search input { color: #e8ecf5 !important; }
  body:not(.light) .btn-login,
  body:not(.light) .burger { background: #1a2240 !important; border-color: #2b3566 !important; color: #e8ecf5 !important; }
}