/*
 * Custom CSS — performance-first overrides.
 * This file will not be overwritten by theme updates.
 * Copyright: https://theme.mysellauth.com/
*/

/* Chrome MPA soft transitions between same-origin pages */
@view-transition {
  navigation: auto;
}

/* ------------------------------------------------------------------ */
/* Performance layer — kill expensive GPU effects                      */
/* ------------------------------------------------------------------ */

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Offscreen sections skip layout/paint until needed */
.component,
.products-section-liquid,
.features-section-liquid,
.faq-section-liquid,
.payments-section,
.liquid-footer {
  content-visibility: auto;
  contain-intrinsic-size: auto 600px;
}

/* Soft solids instead of heavy glass blur */
.liquid-product-card,
.liquid-card,
.faq-card-liquid,
.payment-item,
.liquid-status-card,
.liquid-product-container,
.liquid-footer,
.visitor-badge,
.card.p-4,
.search-trigger,
.liquid-blog-card,
.liquid-feedback-card {
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

.navbar-top,
.navbar-bottom,
.navbar-collapse,
.currency-dropdown {
  backdrop-filter: blur(8px) !important;
  -webkit-backdrop-filter: blur(8px) !important;
}

/* Soft radial glow — no filter:blur(100px) */
.liquid-footer-glow,
.navbar-glow-overlay,
.section-glow-container,
.local-glow {
  filter: none !important;
  animation: none !important;
}

.liquid-footer-glow {
  position: absolute;
  bottom: -20%;
  right: -10%;
  width: 60%;
  height: 100%;
  background: radial-gradient(
    circle at center,
    rgba(var(--cl-accent-rgb), 0.12) 0%,
    transparent 70%
  ) !important;
  z-index: -1;
  pointer-events: none;
  border-radius: 50%;
  opacity: 1 !important;
}

.navbar-glow-overlay {
  opacity: 0.15 !important;
}

.section-glow-container {
  display: none !important;
}

/* Cheaper transitions — transform/opacity only */
.liquid-product-card,
.liquid-card,
.faq-card-liquid,
.payment-item,
.liquid-status-card,
.liquid-product-btn,
.liquid-product-image,
.liquid-product-image-wrapper {
  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    background-color 0.25s ease,
    box-shadow 0.25s ease,
    opacity 0.25s ease !important;
}

/* Disable sheen sweeps (repaint-heavy) */
.liquid-product-card::after,
.liquid-card::after,
.faq-card-liquid::after {
  display: none !important;
}

/* ------------------------------------------------------------------ */
/* Shared headers                                                      */
/* ------------------------------------------------------------------ */

.global-header-liquid {
  text-align: center;
  margin-bottom: 3.5rem;
}

.global-header-liquid h2 {
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -1.5px;
  margin-bottom: 0.75rem;
  text-wrap: balance;
}

.global-header-liquid p {
  color: var(--cl-accent);
  text-transform: uppercase;
  letter-spacing: 4px;
  font-weight: 700;
  font-size: 0.8rem;
}

.liquid-header {
  text-align: left;
  margin-bottom: 3.5rem;
  border-left: 4px solid var(--cl-accent);
  padding-left: 1.5rem;
}

.liquid-header h1,
.liquid-header h2 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  color: #fff;
  line-height: 1;
  letter-spacing: -2px;
  margin: 0;
  text-wrap: balance;
}

.liquid-header p {
  color: var(--cl-accent);
  text-transform: uppercase;
  letter-spacing: 4px;
  font-weight: 700;
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
}

@media (max-width: 991.98px) {
  .liquid-header {
    text-align: center;
    border-left: none;
    padding-left: 0;
  }
}

/* ------------------------------------------------------------------ */
/* Product cards                                                       */
/* ------------------------------------------------------------------ */

.liquid-product-card {
  position: relative;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  padding: 1.5rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  text-decoration: none !important;
  overflow: hidden;
  max-width: 480px;
  margin: 0 auto;
}

.liquid-product-card:hover {
  border-radius: 20px;
  background: rgba(var(--cl-accent-rgb), 0.06);
  border-color: rgba(var(--cl-accent-rgb), 0.35);
  transform: translateY(-6px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.35);
}

.liquid-product-image-wrapper {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 1.25rem;
  aspect-ratio: var(--product-card-image-aspect-ratio, 16/9);
  background: rgba(0, 0, 0, 0.25);
}

.liquid-product-card:hover .liquid-product-image-wrapper {
  border-radius: 14px;
}

.liquid-product-image {
  width: 100%;
  height: 100%;
  object-fit: var(--product-image-fit, cover);
}

.liquid-product-card:hover .liquid-product-image {
  transform: scale(1.04);
}

.liquid-product-badges {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.4rem;
  z-index: 10;
  pointer-events: none;
}

.liquid-product-badge {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.35rem 0.7rem;
  border-radius: 8px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
  letter-spacing: 0.4px;
  background: rgba(0, 0, 0, 0.55);
}

.liquid-product-info {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.liquid-product-name {
  color: #fff;
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  letter-spacing: -0.3px;
  line-height: 1.25;
}

.liquid-product-price-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.liquid-product-price {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--cl-accent);
  font-variant-numeric: tabular-nums;
}

.liquid-product-price-slash {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.3);
  text-decoration: line-through;
}

.liquid-product-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.liquid-product-stock {
  font-size: 0.7rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.liquid-product-stock i {
  font-size: 0.8rem;
  color: var(--cl-accent);
}

.liquid-product-btn {
  margin-top: 1.1rem;
  width: 100%;
  padding: 0.8rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

.liquid-product-card:hover .liquid-product-btn {
  background: var(--cl-accent);
  border-color: transparent;
  box-shadow: 0 8px 16px rgba(var(--cl-accent-rgb), 0.25);
  transform: translateY(-1px);
}

/* ------------------------------------------------------------------ */
/* Policy / product page                                               */
/* ------------------------------------------------------------------ */

.policy-section-liquid {
  padding-top: 12rem !important;
  padding-bottom: 4rem;
}

@media (max-width: 991.98px) {
  .policy-section-liquid {
    padding-top: 10rem !important;
  }
}

@media (max-width: 575.98px) {
  .policy-section-liquid {
    padding-top: 8.5rem !important;
  }
}

.liquid-product-container {
  background: rgba(255, 255, 255, 0.02);
  border-radius: 24px;
  padding: 2.5rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
  margin-top: 2rem;
}

.liquid-product-title {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -1.5px;
  line-height: 1.1;
  margin-bottom: 1.25rem;
  text-wrap: balance;
}

.liquid-variant-card {
  background: rgba(255, 255, 255, 0.03) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  border-radius: 12px !important;
  padding: 1.1rem !important;
  transition: border-color 0.2s ease, background-color 0.2s ease !important;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.liquid-variant-card.active {
  background: rgba(var(--cl-accent-rgb), 0.1) !important;
  border-color: var(--cl-accent) !important;
  box-shadow: none;
}

.liquid-variant-card:hover:not(.active) {
  background: rgba(255, 255, 255, 0.05) !important;
  border-color: rgba(255, 255, 255, 0.2) !important;
}

.liquid-price-tag {
  font-size: 1.85rem;
  font-weight: 800;
  color: var(--cl-accent);
  text-shadow: none;
  font-variant-numeric: tabular-nums;
}

.liquid-tab-btn {
  background: rgba(255, 255, 255, 0.03) !important;
  border: 1px solid rgba(255, 255, 255, 0.06) !important;
  border-radius: 10px !important;
  padding: 0.7rem 1.25rem !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 1px !important;
  color: rgba(255, 255, 255, 0.5) !important;
  transition: background-color 0.2s ease, color 0.2s ease !important;
}

.liquid-tab-btn.active {
  background: var(--cl-accent) !important;
  color: #fff !important;
  border-color: transparent !important;
  box-shadow: none;
}

.liquid-image-main {
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
}

.liquid-thumb {
  border-radius: 10px !important;
  overflow: hidden;
  border: 2px solid transparent !important;
  transition: opacity 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
  opacity: 0.5;
}

.liquid-thumb.active {
  border-color: var(--cl-accent) !important;
  opacity: 1;
  transform: translateY(-2px);
}

.liquid-stats-item {
  background: rgba(var(--cl-accent-rgb), 0.05);
  border-left: 3px solid var(--cl-accent);
  padding: 0.75rem 1rem;
  border-radius: 0 10px 10px 0;
  font-weight: 600;
}

@media (max-width: 991px) {
  .liquid-product-container {
    padding: 1.25rem;
    border-radius: 16px;
  }
}

/* ------------------------------------------------------------------ */
/* Status                                                              */
/* ------------------------------------------------------------------ */

.liquid-status-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 1.5rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  text-decoration: none !important;
  margin-bottom: 0.75rem;
}

.liquid-status-card:hover {
  background: rgba(255, 255, 255, 0.05);
  transform: translateX(6px);
  border-color: rgba(var(--cl-accent-rgb), 0.3);
}

.liquid-status-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin: 0;
}

.liquid-status-group-title {
  font-size: 1.35rem;
  font-weight: 800;
  color: #fff;
  margin: 2.5rem 0 1.25rem 0;
  padding-left: 1.25rem;
  border-left: 3px solid var(--cl-accent);
}

/* ------------------------------------------------------------------ */
/* Footer                                                              */
/* ------------------------------------------------------------------ */

.liquid-footer {
  position: relative;
  background: rgba(var(--cl-background-secondary-rgb), 0.85);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 4rem 0 0 0;
  overflow: hidden;
}

.liquid-footer-brand p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.visitor-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0.5rem 1rem;
  border-radius: 10px;
}

.visitor-dot {
  width: 8px;
  height: 8px;
  background: #22c55e;
  border-radius: 50%;
  position: relative;
  box-shadow: none;
}

.visitor-dot::after {
  content: '';
  position: absolute;
  inset: 0;
  background: #22c55e;
  border-radius: 50%;
  animation: visitor-pulse 2.5s ease-out infinite;
}

@keyframes visitor-pulse {
  0% { transform: scale(1); opacity: 0.7; }
  100% { transform: scale(2.4); opacity: 0; }
}

.visitor-text {
  font-size: 0.85rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.4px;
}

.visitor-count {
  color: var(--cl-accent);
  font-variant-numeric: tabular-nums;
}

.liquid-footer h5 {
  color: #fff;
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 1.5rem;
  position: relative;
}

.liquid-footer h5::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 28px;
  height: 2px;
  background: var(--cl-accent);
}

.liquid-footer .nav-link {
  color: rgba(255, 255, 255, 0.45) !important;
  font-weight: 500;
  padding: 0.4rem 0 !important;
  transition: color 0.2s ease;
  display: inline-block;
}

.liquid-footer .nav-link:hover {
  color: var(--cl-accent) !important;
}

.liquid-footer .nav-link i {
  transition: color 0.2s ease;
}

.liquid-footer .nav-link.discord:hover i { color: #5865F2 !important; }
.liquid-footer .nav-link.telegram:hover i { color: #26A5E4 !important; }
.liquid-footer .nav-link.instagram:hover i { color: #E4405F !important; }
.liquid-footer .nav-link.tiktok:hover i { color: #00f2ea !important; }
.liquid-footer .nav-link.youtube:hover i { color: #FF0000 !important; }

.liquid-footer-bottom {
  margin-top: 3rem;
  padding: 1.25rem 0;
  background: rgba(0, 0, 0, 0.25);
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.liquid-footer-copyright {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.35);
  margin: 0;
}

.liquid-footer-copyright a {
  color: var(--cl-accent);
  text-decoration: none;
  font-weight: 600;
}

.card.p-4 {
  background: rgba(var(--cl-background-secondary-rgb), 0.6);
}

button.w-100.mt-4.btn.btn-outline-primary {
  color: #ffffff;
  border-color: #ffffff;
}

/* Soften body paint vs pure black + heavy red orbs */
body {
  background:
    radial-gradient(ellipse 60% 40% at 15% 0%, rgba(var(--cl-accent-rgb), 0.08) 0%, transparent 55%),
    linear-gradient(180deg, #0a0a0a 0%, #0a0a0a 100%) !important;
}

.bg-image {
  opacity: 0.35;
  will-change: auto;
}

/* ------------------------------------------------------------------ */
/* Nav progress bar (MPA hop feedback)                                 */
/* ------------------------------------------------------------------ */

#sa-nav-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  width: 0;
  z-index: 99999;
  pointer-events: none;
  background: var(--cl-accent, #e11d48);
  box-shadow: 0 0 8px rgba(var(--cl-accent-rgb, 225, 29, 72), 0.45);
  opacity: 0;
  transition: width 0.35s ease, opacity 0.2s ease;
}

#sa-nav-progress.sa-nav-progress--active {
  opacity: 1;
  width: 28%;
  transition: width 1.2s cubic-bezier(0.1, 0.05, 0, 1), opacity 0.15s ease;
}

#sa-nav-progress.sa-nav-progress--done {
  width: 100% !important;
  opacity: 0;
  transition: width 0.12s ease, opacity 0.25s ease 0.1s;
}

/* ------------------------------------------------------------------ */
/* Navbar (moved from inline <style> for cacheable CSS)                */
/* ------------------------------------------------------------------ */

:root {
  --nav-glass: rgba(var(--cl-background-primary-rgb), 0.65);
  --nav-border: rgba(255, 255, 255, 0.08);
  --accent-glow: rgba(var(--cl-accent-rgb), 0.25);
}

.navbar-component {
  position: relative;
  z-index: 1050;
  width: 100%;
}

.navbar-glow-container {
  display: none;
}

.navbar-glow-overlay {
  display: none;
}

.navbar-top {
  background: rgba(var(--cl-background-primary-rgb), 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--nav-border);
  padding: 0.85rem 0;
  position: relative;
  z-index: 10;
}

.navbar-brand span {
  font-size: 1.35rem;
  font-weight: 800;
  background: linear-gradient(to right, #fff, #999);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.nav-divider {
  width: 1px;
  height: 20px;
  background: rgba(255, 255, 255, 0.15);
  margin: 0 0.5rem;
}

.social-link {
  color: rgba(255, 255, 255, 0.6) !important;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: color 0.2s ease;
}

.social-link:hover {
  color: var(--cl-accent) !important;
}

.btn-glow {
  background: var(--cl-accent);
  color: #fff !important;
  border: none;
  border-radius: 12px;
  padding: 0.65rem 1.4rem;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.btn-glow i {
  font-size: 1.1rem;
  margin-top: -1px;
}

.btn-glow:hover {
  box-shadow: 0 8px 25px rgba(var(--cl-accent-rgb), 0.4);
  transform: translateY(-1px);
}

.btn-glow:active {
  transform: translateY(0);
}

.currency-selector-premium {
  position: relative;
  user-select: none;
}

.currency-trigger {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--nav-border);
  border-radius: 12px;
  padding: 0.5rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  color: #fff;
  font-size: 0.85rem;
  font-weight: 700;
}

.currency-trigger:hover,
.currency-trigger.active {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--cl-accent);
  box-shadow: 0 0 20px rgba(var(--cl-accent-rgb), 0.15);
}

.currency-trigger i.chevron {
  font-size: 0.7rem;
  transition: transform 0.3s ease;
  opacity: 0.5;
}

.currency-trigger.active i.chevron {
  transform: rotate(180deg);
  color: var(--cl-accent);
  opacity: 1;
}

.currency-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  min-width: 160px;
  background: rgba(var(--cl-background-secondary-rgb), 0.96);
  border: 1px solid var(--nav-border);
  border-radius: 16px;
  padding: 0.75rem;
  z-index: 1100;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.45);
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  max-height: 380px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--cl-accent) transparent;
}

.currency-dropdown::-webkit-scrollbar {
  width: 4px;
}

.currency-dropdown::-webkit-scrollbar-track {
  background: transparent;
}

.currency-dropdown::-webkit-scrollbar-thumb {
  background: var(--cl-accent);
  border-radius: 10px;
}

.currency-option {
  padding: 0.75rem 1rem;
  border-radius: 10px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background-color 0.2s ease, color 0.2s ease;
  cursor: pointer;
  text-decoration: none !important;
}

.currency-option:hover {
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
}

.currency-option.selected {
  background: rgba(var(--cl-accent-rgb), 0.1);
  color: var(--cl-accent);
}

.currency-option i.check {
  font-size: 0.8rem;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.currency-option.selected i.check {
  opacity: 1;
}

.currency-symbol-tag {
  background: rgba(255, 255, 255, 0.05);
  padding: 0.2rem 0.4rem;
  border-radius: 6px;
  font-size: 0.7rem;
  color: var(--cl-accent);
  font-family: monospace;
}

.navbar-bottom {
  background: rgba(var(--cl-background-secondary-rgb), 0.75);
  border-bottom: 1px solid var(--nav-border);
  position: relative;
  z-index: 5;
}

.navbar-bottom .nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.5) !important;
  padding: 0.85rem 1.25rem !important;
  transition: color 0.2s ease, background-color 0.2s ease;
}

.navbar-bottom .nav-link:hover,
.navbar-bottom .nav-link.active {
  color: #fff !important;
  background: rgba(255, 255, 255, 0.03);
}

@media (max-width: 991.98px) {
  .navbar-top .social-links,
  .navbar-top .nav-divider,
  .navbar-top .program-links {
    display: none !important;
  }

  .navbar-bottom {
    background: transparent;
    border-bottom: none;
  }

  .navbar-collapse {
    background: rgba(var(--cl-background-secondary-rgb), 0.98);
    border: 1px solid var(--nav-border);
    border-radius: 16px;
    margin-top: 0.5rem;
    padding: 1rem;
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.5);
    max-height: 85vh;
    overflow-y: auto;
  }

  .navbar-nav {
    flex-direction: row !important;
    flex-wrap: wrap;
    margin: 0 -4px 0.5rem -4px;
  }

  .navbar-nav .nav-item {
    flex: 0 0 50%;
    padding: 4px;
  }

  .navbar-bottom .nav-link {
    padding: 0.75rem 0.5rem !important;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 48px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    margin: 0;
    width: 100%;
  }

  .nav-mobile-actions {
    margin-top: 0.75rem;
    padding-top: 0.75rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }

  .nav-mobile-extra-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
    margin-top: 0.5rem;
    padding-top: 0.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

  .nav-mobile-socials {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem 1.5rem;
    margin-top: 0.5rem;
    padding-top: 0.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

  .nav-mobile-extra-links .social-link {
    background: rgba(255, 255, 255, 0.02);
    padding: 0.5rem;
    border-radius: 8px;
    justify-content: center;
    font-size: 0.8rem;
  }

  .liquid-footer {
    text-align: center;
    padding-top: 3rem;
  }

  .liquid-footer-brand {
    margin-bottom: 3rem;
  }

  .liquid-footer-brand img {
    margin-left: auto;
    margin-right: auto;
  }

  .liquid-footer h5 {
    margin-bottom: 1.5rem;
    display: inline-block;
  }

  .liquid-footer h5::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .liquid-footer .nav {
    align-items: center;
    margin-bottom: 2rem;
  }

  .visitor-badge {
    margin: 0 auto;
    display: flex;
    width: fit-content;
  }
}

body.navbar-open-lock {
  overflow: hidden !important;
  height: 100vh;
  touch-action: none;
}

body.navbar-open-lock .navbar-collapse {
  touch-action: auto;
}