/**
 * SRL PIXEL LED'S GLOWING HUB - Brand Theme CSS
 * Color Scheme: Pink Glow & Deep Dark
 */

:root {
  --srl-dark: #12151e;
  --srl-dark-surface: #181c28;
  --srl-sidebar-bg: #131722;
  --srl-sidebar-active: #231b2e;
  --srl-pink: #e11d74;
  --srl-pink-glow: #ff2a85;
  --srl-pink-gradient: linear-gradient(135deg, #ff2a85 0%, #e11d74 100%);
  --srl-pink-soft: rgba(255, 42, 133, 0.12);
  --srl-light-bg: #f5f7fb;
  --srl-card-bg: #ffffff;
  --srl-border: #e6ebf1;
  --srl-text-main: #1e293b;
  --srl-text-muted: #64748b;
  --srl-sidebar-text: #9aa4b2;
}

html,
body {
  overflow-x: hidden;
  max-width: 100vw;
}

body {
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--srl-text-main);
  background-color: var(--srl-light-bg);
  margin: 0;
  padding: 0;
}

/* ============================================================
   ADMIN LAYOUT (SIDEBAR + MAIN CONTENT + TOPBAR)
   ============================================================ */
.admin-wrapper {
  display: flex;
  min-height: 100vh;
  background-color: var(--srl-light-bg);
}

/* Sidebar */
.admin-sidebar {
  width: 260px;
  min-width: 260px;
  background-color: var(--srl-sidebar-bg);
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  z-index: 1040;
  transition: all 0.3s ease;
  border-right: 1px solid rgba(255, 255, 255, 0.05);
}

.sidebar-brand {
  padding: 24px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.sidebar-brand img {
  max-height: 42px;
  width: auto;
  object-fit: contain;
}

.sidebar-menu {
  list-style: none;
  padding: 16px 12px;
  margin: 0;
  flex-grow: 1;
  overflow-y: auto;
}

.sidebar-menu .menu-item {
  margin-bottom: 4px;
}

.sidebar-menu .menu-link {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 11px 16px;
  color: var(--srl-sidebar-text);
  text-decoration: none;
  border-radius: 12px;
  font-size: 0.92rem;
  font-weight: 500;
  transition: all 0.2s ease;
}

.sidebar-menu .menu-link i {
  font-size: 1.15rem;
  width: 20px;
  text-align: center;
  color: #838e9e;
}

.sidebar-menu .menu-link:hover {
  color: #ffffff;
  background-color: rgba(255, 255, 255, 0.05);
}

.sidebar-menu .menu-item.active .menu-link {
  background: var(--srl-sidebar-active);
  color: var(--srl-pink-glow);
  font-weight: 600;
  border-left: 3px solid var(--srl-pink-glow);
}

.sidebar-menu .menu-item.active .menu-link i {
  color: var(--srl-pink-glow);
}

.sidebar-footer {
  padding: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.sidebar-footer .btn-sidebar-signout {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 10px 16px;
  border-radius: 10px;
  border: 1px solid rgba(255, 42, 133, 0.35);
  background: rgba(255, 42, 133, 0.08);
  color: var(--srl-pink-glow);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
}

.sidebar-footer .btn-sidebar-signout:hover {
  background: var(--srl-pink-glow);
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(255, 42, 133, 0.35);
}

/* Main Layout */
.admin-main {
  margin-left: 260px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background-color: #f8fafc;
}

/* Top Navbar / Header */
.admin-topbar {
  height: 70px;
  background-color: #ffffff;
  border-bottom: 1px solid var(--srl-border);
  padding: 0 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 1020;
}

.admin-breadcrumb {
  font-size: 0.95rem;
  color: var(--srl-text-muted);
}

.admin-breadcrumb span.active-crumb {
  color: var(--srl-text-main);
  font-weight: 700;
}

/* User Profile in Topbar */
.user-profile-widget {
  position: relative;
}

.user-profile-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 6px 12px;
  border-radius: 30px;
  transition: all 0.2s ease;
}

.user-profile-btn:hover {
  background-color: #f1f5f9;
}

.user-profile-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--srl-pink);
  background: #231b2e;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-weight: 700;
  font-size: 0.95rem;
}

.user-profile-name {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--srl-text-main);
}

/* Profile Dropdown Card (Matches Reference Image) */
.profile-dropdown-card {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  width: 280px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.15);
  border: 1px solid var(--srl-border);
  overflow: hidden;
  display: none;
  z-index: 1050;
  animation: fadeInDown 0.2s ease;
}

.profile-dropdown-card.show {
  display: block;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.profile-dropdown-header {
  background-color: var(--srl-sidebar-bg);
  padding: 20px;
  text-align: center;
  color: #ffffff;
}

.dropdown-avatar-circle {
  width: 56px;
  height: 56px;
  border-radius: 50% !important;
  margin: 0 auto 10px;
  border: 2px solid var(--srl-pink-glow);
  box-shadow: 0 0 12px rgba(255, 42, 133, 0.4);
  background: #2b1f37;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.4rem;
  font-weight: bold;
  overflow: hidden !important;
}

.dropdown-avatar-circle img {
  width: 100% !important;
  height: 100% !important;
  border-radius: 50% !important;
  object-fit: cover !important;
  display: block !important;
}

.profile-dropdown-header h6 {
  margin: 0 0 4px;
  font-weight: 700;
  font-size: 1.05rem;
  color: #ffffff;
}

.profile-dropdown-header p {
  margin: 0 0 8px;
  font-size: 0.82rem;
  color: #94a3b8;
}

.admin-role-badge {
  display: inline-block;
  padding: 3px 12px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 20px;
  background: rgba(245, 158, 11, 0.15);
  color: #fbbf24;
  border: 1px solid rgba(245, 158, 11, 0.4);
}

.profile-dropdown-links {
  list-style: none;
  padding: 8px 0;
  margin: 0;
}

.profile-dropdown-links li a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 20px;
  color: var(--srl-text-main);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.2s ease;
}

.profile-dropdown-links li a i {
  color: #64748b;
  font-size: 1.05rem;
  width: 18px;
}

.profile-dropdown-links li a:hover {
  background-color: #f8fafc;
  color: var(--srl-pink);
}

.profile-dropdown-links li a:hover i {
  color: var(--srl-pink);
}

.profile-dropdown-links li.divider {
  height: 1px;
  background-color: var(--srl-border);
  margin: 6px 0;
}

.profile-dropdown-links li a.text-signout {
  color: #e11d48;
}

.profile-dropdown-links li a.text-signout i {
  color: #e11d48;
}

/* Page Content Area */
.admin-content {
  padding: 30px;
  flex-grow: 1;
}

/* ============================================================
   GLOBAL BUTTON PRIMITIVES
   ============================================================ */
.btn-srl-primary {
  background: var(--srl-pink-gradient);
  color: #ffffff !important;
  border: none;
  font-weight: 600;
  border-radius: 10px;
  padding: 9px 18px;
  font-size: 0.88rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 4px 12px rgba(255, 42, 133, 0.25);
  transition: all 0.2s ease;
  text-decoration: none;
}

.btn-srl-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(255, 42, 133, 0.35);
}

.btn-srl-outline {
  background: #ffffff;
  color: #0f172a !important;
  border: 1px solid #cbd5e1;
  font-weight: 600;
  border-radius: 10px;
  padding: 9px 18px;
  font-size: 0.88rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s ease;
  text-decoration: none;
}

.btn-srl-outline:hover {
  background: #f8fafc;
  border-color: #94a3b8;
}

/* ============================================================
   GLOBAL AUTH BACKGROUND WRAPPER
   ============================================================ */
.auth-page-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #090b11;
  background-image:
    radial-gradient(circle at 12% 18%, rgba(225, 29, 116, 0.14) 0%, transparent 42%),
    radial-gradient(circle at 88% 82%, rgba(121, 40, 202, 0.16) 0%, transparent 48%),
    radial-gradient(circle at 50% 50%, rgba(255, 42, 133, 0.05) 0%, transparent 60%),
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 100% 100%, 100% 100%, 100% 100%, 36px 36px, 36px 36px;
  padding: 30px 16px 40px 16px;
  position: relative;
  overflow-x: hidden;
}

/* ============================================================
   ADMIN MOBILE RESPONSIVENESS
   ============================================================ */

/* Backdrop overlay for mobile sidebar */
.sidebar-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(10, 13, 20, 0.72);
  backdrop-filter: blur(4px);
  z-index: 1035;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.sidebar-backdrop.show {
  opacity: 1;
  visibility: visible;
}

/* Tablet & Mobile Breakpoints (<= 991px) */
@media (max-width: 991.98px) {
  .admin-sidebar {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    width: 275px;
    max-width: 82vw;
    z-index: 1040;
    transform: translateX(-100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: none;
  }

  .admin-sidebar.show {
    transform: translateX(0);
    box-shadow: 12px 0 35px rgba(0, 0, 0, 0.55);
  }

  .admin-main {
    margin-left: 0 !important;
    width: 100% !important;
    min-width: 0 !important;
  }

  .admin-content {
    padding: 22px 18px;
  }
}

/* Phablets & Mobile Phones (<= 768px) */
@media (max-width: 767.98px) {
  .admin-topbar {
    height: 62px;
    padding: 0 16px;
  }

  .admin-content {
    padding: 16px 12px;
  }

  /* Profile Dropdown Card */
  .profile-dropdown-card {
    width: calc(100vw - 32px);
    max-width: 290px;
    right: 0;
  }
}

/* Small Mobile Screens (<= 575.98px) */
@media (max-width: 575.98px) {
  .admin-topbar {
    height: 58px;
    padding: 0 12px;
  }

  .admin-content {
    padding: 14px 10px;
  }

  .admin-content h4 {
    font-size: 1.2rem;
  }

  /* Card and Form bodies */
  .card-header {
    padding: 14px 16px;
  }

  /* Full-width responsive controls */
  .mobile-w-100 {
    width: 100% !important;
  }

  /* Tables responsiveness */
  .table-responsive {
    border-radius: 12px;
    border: 1px solid var(--srl-border);
  }

  .table-responsive table {
    font-size: 0.82rem;
  }

  /* Action buttons inside forms */
  .btn-srl-primary,
  .btn-srl-outline {
    padding: 8px 14px;
    font-size: 0.82rem;
  }
}

/* ============================================================
   SWEETALERT2 CUSTOM PINK & DARK THEME (HIGH CONTRAST)
   ============================================================ */
.swal2-container {
  z-index: 99999 !important;
}

div:where(.swal2-container) .swal2-popup,
div:where(.swal2-container) div:where(.swal2-popup),
.swal2-popup,
.srl-swal-popup {
  background: #181c28 !important;
  color: #ffffff !important;
  border-radius: 22px !important;
  border: 1px solid rgba(255, 42, 133, 0.35) !important;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.7), 0 0 35px rgba(255, 42, 133, 0.2) !important;
  padding: 34px 28px !important;
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif !important;
  position: relative !important;
  overflow: hidden !important;
}

div:where(.swal2-container) .swal2-popup::before,
.srl-swal-popup::before {
  content: '';
  position: absolute;
  top: 0;
  left: 15%;
  right: 15%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--srl-pink), var(--srl-pink-glow), transparent);
}

div:where(.swal2-container) h2:where(.swal2-title),
div:where(.swal2-container) .swal2-title,
.swal2-title,
.srl-swal-title {
  color: #ffffff !important;
  font-size: 1.4rem !important;
  font-weight: 700 !important;
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif !important;
  margin-top: 10px !important;
  margin-bottom: 8px !important;
}

div:where(.swal2-container) .swal2-html-container,
div:where(.swal2-container) div:where(.swal2-html-container),
.swal2-html-container,
.srl-swal-html {
  color: #cbd5e1 !important;
  font-size: 0.96rem !important;
  line-height: 1.6 !important;
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif !important;
}

div:where(.swal2-container) .swal2-html-container strong,
.swal2-html-container strong,
.srl-swal-html strong {
  color: #ffffff !important;
}

div:where(.swal2-container) .swal2-close {
  color: #94a3b8 !important;
}

div:where(.swal2-container) .swal2-actions,
.swal2-actions,
.srl-swal-actions {
  display: flex !important;
  flex-wrap: wrap !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 12px !important;
  margin-top: 1.6rem !important;
  width: 100% !important;
}

.srl-swal-confirm {
  background: var(--srl-pink-gradient) !important;
  color: #ffffff !important;
  border: none !important;
  border-radius: 50px !important;
  padding: 11px 26px !important;
  font-weight: 700 !important;
  font-size: 0.92rem !important;
  box-shadow: 0 4px 15px rgba(255, 42, 133, 0.35) !important;
  transition: all 0.2s ease !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.srl-swal-confirm:hover {
  box-shadow: 0 6px 20px rgba(255, 42, 133, 0.55) !important;
  transform: translateY(-1px) !important;
  color: #ffffff !important;
}

.srl-swal-cancel {
  background: rgba(255, 255, 255, 0.08) !important;
  color: #e2e8f0 !important;
  border: 1px solid rgba(255, 255, 255, 0.22) !important;
  border-radius: 50px !important;
  padding: 11px 26px !important;
  font-weight: 600 !important;
  font-size: 0.92rem !important;
  transition: all 0.2s ease !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.srl-swal-cancel:hover {
  background: rgba(255, 255, 255, 0.16) !important;
  color: #ffffff !important;
  border-color: rgba(255, 255, 255, 0.45) !important;
  transform: translateY(-1px) !important;
}

/* Guard: Ensure any outline buttons or secondary buttons inside swal modal are highly visible */
.swal2-popup .btn-outline-dark,
.srl-swal-popup .btn-outline-dark,
.swal2-popup .btn-secondary,
.srl-swal-popup .btn-secondary {
  background: rgba(255, 255, 255, 0.08) !important;
  color: #e2e8f0 !important;
  border: 1px solid rgba(255, 255, 255, 0.22) !important;
  border-radius: 50px !important;
}

.swal2-popup .btn-outline-dark:hover,
.srl-swal-popup .btn-outline-dark:hover,
.swal2-popup .btn-secondary:hover,
.srl-swal-popup .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.16) !important;
  color: #ffffff !important;
  border-color: rgba(255, 255, 255, 0.45) !important;
}

/* Success icon animation fixes on dark background */
div:where(.swal2-container) .swal2-icon.swal2-success {
  border-color: #10b981 !important;
  color: #10b981 !important;
}
div:where(.swal2-container) .swal2-icon.swal2-success [class^='swal2-success-circular-line'] {
  background-color: transparent !important;
}
div:where(.swal2-container) .swal2-icon.swal2-success .swal2-success-fix {
  background-color: transparent !important;
}
div:where(.swal2-container) .swal2-icon.swal2-success .swal2-success-ring {
  border-color: rgba(16, 185, 129, 0.3) !important;
}
div:where(.swal2-container) .swal2-icon.swal2-success [class^='swal2-success-line'] {
  background-color: #10b981 !important;
}

.srl-swal-confirm-danger {
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%) !important;
  color: #ffffff !important;
  border: none !important;
  border-radius: 50px !important;
  padding: 11px 26px !important;
  font-weight: 600 !important;
  font-size: 0.95rem !important;
  box-shadow: 0 4px 15px rgba(239, 68, 68, 0.4) !important;
  transition: all 0.2s ease !important;
}

.srl-swal-confirm-danger:hover {
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.6) !important;
  transform: translateY(-1px) !important;
}

/* SweetAlert Toast Mode - Ultra-sleek & Compact for Mobile & Desktop */
.swal2-container.swal2-top-end,
.swal2-container.swal2-top-right,
.swal2-container.swal2-top {
  z-index: 10050 !important;
  padding: 12px !important;
}

.srl-swal-toast {
  background: #111520 !important;
  color: #ffffff !important;
  border: 1px solid rgba(255, 42, 133, 0.45) !important;
  border-radius: 12px !important;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.45), 0 0 16px rgba(255, 42, 133, 0.2) !important;
  padding: 8px 14px !important;
  width: auto !important;
  max-width: 330px !important;
  display: flex !important;
  align-items: center !important;
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif !important;
}

.srl-swal-toast.swal2-show {
  animation: swal2-toast-show 0.25s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.srl-swal-toast .swal2-icon {
  width: 22px !important;
  height: 22px !important;
  min-width: 22px !important;
  margin: 0 10px 0 0 !important;
  border-width: 2px !important;
}

.srl-swal-toast .swal2-icon .swal2-success-ring {
  width: 22px !important;
  height: 22px !important;
}

.srl-swal-toast .swal2-icon [class^='swal2-success-line'] {
  height: 3px !important;
}

.srl-swal-toast .swal2-title {
  color: #f8fafc !important;
  font-size: 0.82rem !important;
  font-weight: 600 !important;
  line-height: 1.35 !important;
  margin: 0 !important;
  padding: 0 !important;
  text-align: left !important;
  display: inline-block !important;
}

@media (max-width: 576px) {
  .swal2-container.swal2-top-end,
  .swal2-container.swal2-top {
    top: 10px !important;
    right: 10px !important;
    left: 10px !important;
    padding: 0 !important;
  }
  .srl-swal-toast {
    max-width: calc(100vw - 24px) !important;
    margin: 0 auto !important;
    padding: 8px 12px !important;
    border-radius: 10px !important;
  }
  .srl-swal-toast .swal2-title {
    font-size: 0.78rem !important;
  }
  .srl-swal-toast .swal2-icon {
    width: 20px !important;
    height: 20px !important;
    min-width: 20px !important;
    margin-right: 8px !important;
  }
}

.swal2-popup .swal2-icon.swal2-success {
  border-color: #10b981 !important;
  color: #10b981 !important;
}

.swal2-popup .swal2-icon.swal2-success [class^='swal2-success-line'] {
  background-color: #10b981 !important;
}

.swal2-popup .swal2-icon.swal2-success .swal2-success-ring {
  border-color: rgba(16, 185, 129, 0.3) !important;
}

.swal2-popup .swal2-icon.swal2-error {
  border-color: var(--srl-pink) !important;
  color: var(--srl-pink) !important;
}

.swal2-popup .swal2-icon.swal2-error [class^='swal2-x-mark-line'] {
  background-color: var(--srl-pink) !important;
}

.swal2-popup .swal2-icon.swal2-warning {
  border-color: #f59e0b !important;
  color: #f59e0b !important;
}

/* ============================================================
   SRL PIXEL MODERN PAGINATION & FILTER TOOLBAR
   ============================================================ */
.pagination-srl {
  display: flex;
  gap: 6px;
  align-items: center;
  list-style: none;
  padding: 0;
  margin: 0;
  flex-wrap: wrap;
}

.pagination-srl .page-item .page-link {
  min-width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 12px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.875rem;
  color: #475569;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  text-decoration: none;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.03);
}

.pagination-srl .page-item .page-link:hover {
  background: #fdf2f8;
  color: var(--srl-pink);
  border-color: rgba(255, 42, 133, 0.35);
  transform: translateY(-1px);
  box-shadow: 0 4px 10px rgba(255, 42, 133, 0.15);
}

.pagination-srl .page-item.active .page-link {
  background: var(--srl-pink-gradient);
  color: #ffffff !important;
  border-color: transparent;
  box-shadow: 0 4px 14px rgba(225, 29, 116, 0.4);
  font-weight: 700;
  transform: translateY(-1px);
}

.pagination-srl .page-item.disabled .page-link {
  opacity: 0.45;
  pointer-events: none;
  background: #f8fafc;
  border-color: #e2e8f0;
  color: #94a3b8;
  cursor: not-allowed;
}

.pagination-srl .page-item.disabled .page-link.dots {
  background: transparent;
  border-color: transparent;
  font-weight: 700;
  letter-spacing: 2px;
  color: #94a3b8;
  min-width: 28px;
  box-shadow: none;
}

/* SRL Filter Toolbar */
.srl-filter-card {
  background: #ffffff;
  border: 1px solid var(--srl-border);
  border-radius: 14px;
  padding: 16px 20px;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
}

.srl-filter-input-wrap {
  position: relative;
}

.srl-filter-input-wrap i {
  position: absolute;
  top: 50%;
  left: 14px;
  transform: translateY(-50%);
  color: #94a3b8;
  font-size: 0.95rem;
  pointer-events: none;
}

.srl-filter-input {
  padding-left: 38px !important;
  border-radius: 10px !important;
  border: 1px solid #e2e8f0 !important;
  font-size: 0.9rem !important;
  transition: all 0.2s ease !important;
}

.srl-filter-input:focus,
.srl-filter-select:focus {
  border-color: var(--srl-pink-glow) !important;
  box-shadow: 0 0 0 3px rgba(255, 42, 133, 0.15) !important;
  outline: none !important;
}

.srl-filter-select {
  border-radius: 10px !important;
  border: 1px solid #e2e8f0 !important;
  font-size: 0.9rem !important;
  padding: 8px 14px !important;
  color: #334155 !important;
  background-color: #ffffff !important;
  transition: all 0.2s ease !important;
}

/* Table AJAX Loading Transition */
.table-responsive-container {
  position: relative;
  min-height: 200px;
  transition: opacity 0.2s ease;
}

.table-responsive-container.loading {
  opacity: 0.5;
  pointer-events: none;
}

.table-loading-spinner {
  display: none;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 20;
}

.table-responsive-container.loading .table-loading-spinner {
  display: block;
}

/* ============================================================
   CUSTOMER / USER FRONTEND LAYOUT & NAVBAR
   ============================================================ */

/* Navbar Brand & Links */
.customer-navbar {
  background: #12151e !important;
  border-bottom: 1px solid rgba(255, 42, 133, 0.2);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.35);
  padding: 14px 0;
  transition: all 0.3s ease;
  z-index: 1020;
}

.customer-navbar .navbar-brand {
  display: inline-flex;
  align-items: center;
}

.customer-brand-logo {
  height: 56px;
  max-height: 60px;
  width: auto;
  object-fit: contain;
  mix-blend-mode: screen;
  transition: transform 0.25s ease;
  filter: drop-shadow(0 2px 10px rgba(255, 42, 133, 0.3));
  display: block;
}

.customer-brand-logo:hover {
  transform: scale(1.03);
}

.customer-nav-link,
.nav-link-customer {
  color: #e2e8f0 !important;
  font-weight: 600;
  font-size: 0.94rem;
  padding: 8px 16px !important;
  border-radius: 12px;
  transition: all 0.22s ease-in-out;
  display: inline-flex;
  align-items: center;
  border: 1px solid transparent;
}

.customer-nav-link i,
.nav-link-customer i {
  color: #94a3b8;
  font-size: 1.05rem;
  transition: color 0.2s ease;
}

.customer-nav-link:hover,
.nav-link-customer:hover {
  color: #ffffff !important;
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 255, 255, 0.12);
  transform: translateY(-1px);
}

.customer-nav-link:hover i,
.nav-link-customer:hover i {
  color: var(--srl-pink);
}

.customer-nav-link.active,
.nav-link-customer.active {
  color: #ffffff !important;
  background: var(--srl-pink-gradient) !important;
  border-color: transparent !important;
  box-shadow: 0 4px 14px rgba(225, 29, 116, 0.35);
  font-weight: 700;
}

.customer-nav-link.active i,
.nav-link-customer.active i {
  color: #ffffff !important;
}

/* Circular action button for cart */
.nav-icon-circle-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1.5px solid rgba(255, 255, 255, 0.16);
  color: #ffffff !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative !important;
  text-decoration: none;
  transition: all 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-icon-circle-btn:hover {
  background: rgba(255, 42, 133, 0.22);
  border-color: var(--srl-pink);
  color: #ffffff !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(255, 42, 133, 0.35);
}

.nav-icon-circle-btn i {
  font-size: 1.2rem;
  line-height: 1;
}

.nav-cart-badge,
.cart-badge-count,
.cart-badge-dot {
  position: absolute !important;
  top: -4px !important;
  right: -4px !important;
  background: var(--srl-pink-gradient) !important;
  color: #ffffff !important;
  font-size: 0.72rem !important;
  font-weight: 800 !important;
  min-width: 20px !important;
  height: 20px !important;
  border-radius: 10px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 0 4px !important;
  border: 2px solid #12151e !important;
  box-shadow: 0 2px 8px rgba(225, 29, 116, 0.6) !important;
  line-height: 1 !important;
  z-index: 10 !important;
  pointer-events: none;
}

/* User avatar button with chevron */
.nav-avatar-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50px;
  padding: 4px 12px 4px 4px;
  color: #ffffff !important;
  text-decoration: none;
  cursor: pointer;
  height: 42px;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-avatar-btn:hover {
  background: rgba(255, 42, 133, 0.18);
  border-color: rgba(255, 42, 133, 0.4);
  box-shadow: 0 4px 14px rgba(255, 42, 133, 0.25);
  transform: translateY(-1px);
}

.nav-avatar-circle {
  width: 32px;
  height: 32px;
  border-radius: 50% !important;
  background: var(--srl-pink-gradient);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  overflow: hidden !important;
  flex-shrink: 0;
}

.nav-avatar-circle img {
  width: 100% !important;
  height: 100% !important;
  border-radius: 50% !important;
  object-fit: cover !important;
  display: block !important;
}

.nav-user-firstname {
  font-size: 0.88rem;
  font-weight: 700;
  color: #ffffff;
  max-width: 120px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  letter-spacing: 0.2px;
}

.nav-dropdown-chevron {
  font-size: 0.72rem;
  color: #cbd5e1;
  transition: transform 0.22s ease;
  margin-right: 2px;
}

.nav-avatar-btn[aria-expanded="true"] .nav-dropdown-chevron {
  transform: rotate(180deg);
  color: var(--srl-pink);
}

/* Fixed Mobile Bottom Navigation Bar */
.srl-mobile-bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #0d1017 !important;
  border-top: 1px solid rgba(255, 42, 133, 0.3) !important;
  box-shadow: 0 -4px 25px rgba(0, 0, 0, 0.6) !important;
  z-index: 1040 !important;
  height: 60px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-around !important;
  padding: 0 4px !important;
  margin: 0 !important;
}

@media (min-width: 768px) {
  .srl-mobile-bottom-nav {
    display: none !important;
  }
}

.srl-bottom-nav-item,
.srl-mobile-nav-item {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  color: #94a3b8 !important;
  text-decoration: none !important;
  padding: 6px 4px !important;
  border-radius: 10px !important;
  font-size: 0.68rem !important;
  font-weight: 600 !important;
  transition: all 0.2s ease !important;
  position: relative !important;
  flex: 1 1 0 !important;
  max-width: 25% !important;
  text-align: center !important;
  line-height: 1.15 !important;
}

.srl-bottom-nav-item i,
.srl-mobile-nav-item i {
  font-size: 1.25rem !important;
  margin-bottom: 2px !important;
  transition: transform 0.2s ease, color 0.2s ease !important;
  display: inline-block !important;
  color: #94a3b8 !important;
}

.srl-bottom-nav-item:hover,
.srl-mobile-nav-item:hover {
  color: #ffffff !important;
  text-decoration: none !important;
}

.srl-bottom-nav-item:hover i,
.srl-mobile-nav-item:hover i {
  color: #ffffff !important;
}

.srl-bottom-nav-item.active,
.srl-mobile-nav-item.active {
  color: var(--srl-pink-glow) !important;
  text-decoration: none !important;
  font-weight: 700 !important;
}

.srl-bottom-nav-item.active i,
.srl-mobile-nav-item.active i {
  transform: translateY(-2px) scale(1.08) !important;
  color: var(--srl-pink-glow) !important;
  filter: drop-shadow(0 2px 8px rgba(255, 42, 133, 0.55)) !important;
}

.srl-mobile-nav-badge {
  position: absolute;
  top: 4px;
  right: calc(50% - 18px);
  background: var(--srl-pink);
  color: #ffffff;
  font-size: 0.62rem;
  font-weight: 700;
  min-width: 16px;
  height: 16px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 3px;
}

body.srl-has-bottom-nav {
  padding-bottom: 0 !important;
}

@media (max-width: 767.98px) {
  body.srl-has-bottom-nav {
    padding-bottom: 0 !important;
  }

  body.srl-has-bottom-nav main {
    padding-bottom: 20px !important;
  }

  .customer-footer {
    padding-bottom: 84px !important;
  }
}

/* Mobile Header Navbar Refinement */
@media (max-width: 767.98px) {
  .customer-navbar {
    padding-top: 10px !important;
    padding-bottom: 10px !important;
  }

  .customer-navbar .navbar-brand img,
  .customer-brand-logo {
    height: 48px !important;
    max-height: 52px !important;
    width: auto !important;
    object-fit: contain;
    mix-blend-mode: screen;
    filter: drop-shadow(0 2px 8px rgba(255, 42, 133, 0.35));
    display: block !important;
  }

  .nav-icon-circle-btn {
    width: 40px !important;
    height: 40px !important;
  }

  .nav-icon-circle-btn i {
    font-size: 1.15rem !important;
  }

  .nav-cart-badge,
  .cart-badge-count,
  .cart-badge-dot {
    top: -4px !important;
    right: -4px !important;
    min-width: 18px !important;
    height: 18px !important;
    font-size: 0.65rem !important;
    padding: 0 3px !important;
  }

  .nav-avatar-btn {
    padding: 2px 8px 2px 2px !important;
    height: 40px !important;
  }

  .nav-avatar-circle {
    width: 34px !important;
    height: 34px !important;
    font-size: 0.8rem !important;
  }

  .nav-user-firstname {
    display: none !important;
  }
}

/* Profile Navbar Dropdown Menu */
#profileDropdownMenu {
  background: #181c28 !important;
  border: 1px solid rgba(255, 42, 133, 0.3) !important;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.55), 0 0 16px rgba(255, 42, 133, 0.15) !important;
  min-width: 230px;
}

#profileDropdownMenu .srl-dropdown-item {
  color: #f1f5f9 !important;
  border-radius: 8px !important;
  font-size: 0.88rem;
  font-weight: 500;
  padding: 8px 14px;
  transition: all 0.18s ease;
  background: transparent !important;
  text-decoration: none;
}

#profileDropdownMenu .srl-dropdown-item i.text-pink {
  color: var(--srl-pink-glow) !important;
  font-size: 1.05rem;
  transition: transform 0.18s ease;
}

#profileDropdownMenu .srl-dropdown-item:hover,
#profileDropdownMenu .srl-dropdown-item:focus {
  background: rgba(225, 29, 116, 0.16) !important;
  color: #ffffff !important;
  transform: translateX(3px);
}

#profileDropdownMenu .srl-dropdown-item:hover i.text-pink {
  transform: scale(1.15);
}

#profileDropdownMenu .srl-dropdown-signout {
  color: #f87171 !important;
}

#profileDropdownMenu .srl-dropdown-signout i {
  color: #f87171 !important;
  font-size: 1.05rem;
}

#profileDropdownMenu .srl-dropdown-signout:hover,
#profileDropdownMenu .srl-dropdown-signout:focus {
  background: rgba(239, 68, 68, 0.16) !important;
  color: #fca5a5 !important;
  transform: translateX(3px);
}

@media (max-width: 767.98px) {
  #profileDropdownMenu {
    position: absolute !important;
    right: 0 !important;
    left: auto !important;
    min-width: 220px !important;
    border-radius: 14px !important;
  }
}

/* Modern E-Commerce Footer - High Contrast & Crisp Readability */
.customer-footer {
  background: #0b0e17;
  color: #cbd5e1;
  padding-top: 50px;
  padding-bottom: 24px;
  border-top: 2px solid var(--srl-pink);
  box-shadow: 0 -8px 30px rgba(0, 0, 0, 0.45);
  margin-top: auto;
}

.customer-footer .footer-desc {
  color: #cbd5e1;
  font-size: 0.9rem;
  line-height: 1.6;
  max-width: 400px;
}

.customer-footer .footer-title {
  color: #ffffff;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-bottom: 18px;
  position: relative;
  padding-bottom: 8px;
}

.customer-footer .footer-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 28px;
  height: 2px;
  background: var(--srl-pink-glow);
  border-radius: 2px;
}

.customer-footer .footer-link {
  color: #94a3b8;
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 500;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.customer-footer .footer-link:hover {
  color: #ffffff;
  transform: translateX(4px);
}

.customer-footer .footer-link:hover i {
  color: var(--srl-pink-glow);
}

.customer-footer .footer-social-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #cbd5e1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: all 0.2s ease;
  text-decoration: none;
}

.customer-footer .footer-social-btn:hover {
  background: var(--srl-pink-glow);
  border-color: var(--srl-pink-glow);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(255, 42, 133, 0.45);
}

.customer-footer .footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 0.88rem;
  color: #cbd5e1;
}

.customer-footer .footer-contact-item i {
  font-size: 1.15rem;
  flex-shrink: 0;
  margin-top: 1px;
}

.customer-footer .footer-bottom-bar {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 20px;
  color: #94a3b8;
  font-size: 0.84rem;
}

/* ============================================================
   COMMON ORDER STATUS BADGES
   ============================================================ */
.order-status-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.76rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 8px;
  letter-spacing: 0.3px;
  white-space: nowrap;
}

.status-awaiting-payment {
  background: #fef3c7;
  color: #92400e;
  border: 1px solid #fde68a;
}

.status-placed {
  background: #e0f2fe;
  color: #0369a1;
  border: 1px solid #bae6fd;
}

.status-confirmed {
  background: #ede9fe;
  color: #6d28d9;
  border: 1px solid #ddd6fe;
}

.status-packed {
  background: #ffedd5;
  color: #c2410c;
  border: 1px solid #fed7aa;
}

.status-out-for-delivery {
  background: #fef9c3;
  color: #854d0e;
  border: 1px solid #fef08a;
}

.status-delivered {
  background: #dcfce7;
  color: #15803d;
  border: 1px solid #bbf7d0;
}

.status-cancelled {
  background: #fee2e2;
  color: #b91c1c;
  border: 1px solid #fecaca;
}

/* ============================================================
   SRL BRAND PAGINATION (Shared across Catalog & Admin)
   ============================================================ */
.srl-pagination-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 24px;
}

.srl-pagination-info {
  font-size: 0.85rem;
  color: #64748b;
  font-weight: 500;
}

.srl-pagination {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  list-style: none;
  padding: 0;
  margin: 0;
  flex-wrap: wrap;
}

.srl-pagination li {
  list-style: none;
  display: inline-block;
  margin: 0;
  padding: 0;
}

.srl-page-btn {
  min-width: 38px;
  height: 38px;
  padding: 0 12px;
  border-radius: 10px;
  border: 1.5px solid #e2e8f0;
  background: #ffffff;
  color: #1e293b;
  font-weight: 700;
  font-size: 0.86rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
  user-select: none;
}

.srl-page-btn:hover:not(.disabled):not(.active) {
  border-color: var(--srl-pink);
  color: var(--srl-pink);
  background: #fff5f9;
  transform: translateY(-1px);
}

.srl-page-btn.active {
  background: var(--srl-pink-gradient) !important;
  border-color: var(--srl-pink) !important;
  color: #ffffff !important;
  box-shadow: 0 4px 14px rgba(225, 29, 116, 0.35);
  cursor: default;
}

.srl-page-btn.disabled {
  opacity: 0.38;
  cursor: not-allowed;
  pointer-events: none;
  background: #f8fafc;
  border-color: #e2e8f0;
  color: #94a3b8;
}

/* Bootstrap standard pagination styling */
.pagination {
  gap: 4px;
  margin-bottom: 0;
}

.pagination .page-item .page-link {
  min-width: 36px;
  height: 36px;
  border-radius: 8px !important;
  margin: 0 2px;
  border: 1px solid #e2e8f0;
  color: #1e293b;
  font-weight: 600;
  font-size: 0.85rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  transition: all 0.2s ease;
}

.pagination .page-item.active .page-link {
  background: var(--srl-pink-gradient) !important;
  border-color: var(--srl-pink) !important;
  color: #ffffff !important;
  box-shadow: 0 3px 10px rgba(225, 29, 116, 0.3);
}

.pagination .page-item .page-link:hover:not(.disabled) {
  border-color: var(--srl-pink);
  color: var(--srl-pink);
  background: #fff5f9;
}

/* ============================================================
   SHARED PRODUCT CARD COMPONENT
   (Used across Home Shelves, Category View, Product Catalog, & Related)
   ============================================================ */
.srl-product-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  box-sizing: border-box;
  width: 100%;
}

.srl-product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.06);
  border-color: #cbd5e1;
}

.srl-discount-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--srl-pink);
  color: #ffffff;
  font-weight: 800;
  font-size: 0.72rem;
  padding: 3px 7px;
  border-radius: 6px;
  z-index: 3;
  letter-spacing: 0.2px;
}

.srl-product-img-box {
  height: 200px;
  background: #0c0f17;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  overflow: hidden;
  position: relative;
}

.srl-product-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.srl-product-card:hover .srl-product-img-box img {
  transform: scale(1.06);
}

.srl-product-body {
  padding: 14px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.srl-product-title {
  font-size: 0.92rem;
  font-weight: 700;
  color: #0f172a;
  text-decoration: none;
  line-height: 1.35;
  margin-bottom: 4px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: 2.55rem;
  transition: color 0.2s ease;
}

.srl-product-title:hover {
  color: var(--srl-pink);
}

.srl-product-brand {
  font-size: 0.72rem;
  font-weight: 600;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.srl-product-rating {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-bottom: 6px;
  font-size: 0.75rem;
}

.srl-product-rating .active-star {
  color: #f59e0b;
}

.srl-stock-check {
  font-size: 0.74rem;
  font-weight: 600;
  color: #10b981;
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 8px;
}

.srl-stock-check.out-of-stock {
  color: #ef4444;
}

.srl-price-box {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 10px;
  margin-top: auto;
  flex-wrap: wrap;
}

.srl-sale-price {
  font-size: 1.12rem;
  font-weight: 800;
  color: var(--srl-pink);
}

.srl-old-price {
  font-size: 0.82rem;
  color: #94a3b8;
  text-decoration: line-through;
}

.btn-add-to-cart {
  width: 100%;
  padding: 8px 12px;
  background: var(--srl-pink);
  color: #ffffff;
  border: none;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.84rem;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 2px 8px rgba(225, 29, 116, 0.25);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.btn-add-to-cart:hover:not(:disabled) {
  background: #ff2a85;
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(225, 29, 116, 0.4);
  transform: translateY(-1px);
}

.btn-add-to-cart:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  background: #94a3b8;
  box-shadow: none;
}

/* Mobile Product Card Scaling (< 768px) */
@media (max-width: 767.98px) {
  .srl-product-card {
    border-radius: 12px;
  }

  .srl-product-img-box {
    height: 145px;
  }

  .srl-product-body {
    padding: 8px 10px 10px;
  }

  .srl-product-title {
    font-size: 0.8rem;
    height: 2.2rem;
    margin-bottom: 2px;
  }

  .srl-product-brand {
    font-size: 0.65rem;
    margin-bottom: 2px;
  }

  .srl-product-rating {
    font-size: 0.68rem;
    margin-bottom: 4px;
  }

  .srl-stock-check {
    font-size: 0.68rem;
    margin-bottom: 6px;
  }

  .srl-price-box {
    margin-bottom: 6px;
    gap: 4px;
  }

  .srl-sale-price {
    font-size: 0.95rem;
  }

  .srl-old-price {
    font-size: 0.72rem;
  }

  .btn-add-to-cart {
    padding: 6px 8px;
    font-size: 0.76rem;
    border-radius: 6px;
  }

  .srl-discount-badge {
    top: 6px;
    left: 6px;
    font-size: 0.65rem;
    padding: 2px 5px;
  }

  /* Responsive Headings & Viewport Containment on Mobile (< 768px) */
  h1,
  .h1 {
    font-size: clamp(1.4rem, 5vw, 1.85rem) !important;
  }

  h2,
  .h2 {
    font-size: clamp(1.25rem, 4.5vw, 1.6rem) !important;
  }

  h3,
  .h3 {
    font-size: clamp(1.1rem, 4vw, 1.35rem) !important;
  }

  h4,
  .h4 {
    font-size: clamp(0.95rem, 3.5vw, 1.2rem) !important;
  }

  .display-5 {
    font-size: clamp(1.6rem, 5.5vw, 2.2rem) !important;
  }

  .display-6 {
    font-size: clamp(1.4rem, 5vw, 1.9rem) !important;
  }

  .container {
    padding-left: 14px;
    padding-right: 14px;
    max-width: 100%;
  }
}