/* ── $navbar ── */

/* ── $navbar base ── */
.navbar {
  background-color: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border: none;
  box-shadow: none;
  outline: none;
  transition: background-color 0.4s ease;
}

/* ── $navbar scrolled ── */
.navbar.scrolled {
  background-color: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(20px) saturate(3.5);
  -webkit-backdrop-filter: blur(20px) saturate(3.5);
  border: none;
  box-shadow: none;
  outline: none;
}

/* ── $navbar brand ── */
.navbar-brand img {
  height: 38px !important;
  width: auto !important;
}

/* ── $navbar links ── */
.navbar .navbar-nav .nav-link {
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: normal;
  transition: color 0.2s ease;
}

.navbar .navbar-nav .nav-link:hover {
  color: rgba(255, 255, 255, 0.8);
}

/* ── $navbar buttons ── */
.navbar .btn-outline-primary {
  color: var(--bs-nav-link-color);
  border-color: rgba(255, 255, 255, 0.15);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0em;
  border-radius: 0.25rem !important;
  transition: transform 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.navbar .btn-outline-primary:hover {
  background-color: transparent;
  border-color: rgba(255, 255, 255, 0.35);
  color: rgba(255, 255, 255, 0.8);
  transform: none;
}

/* ── $navbar discord button ── */
.navbar .discord-btn {
  border-color: #5865F2;
  color: #5865F2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.375rem 0.5625rem;
  border-radius: 0.25rem !important;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.navbar .discord-btn:hover {
  background-color: #5865F2;
  border-color: #5865F2;
  color: #ffffff;
  transform: none;
}


/* ── $hero ── */

/* ── $hero base ── */
.hero {
  position: relative;
  overflow: hidden;
}

/* ── $hero glow ── */
.hero::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 40%;
  width: 670px;
  height: 670px;
  border-radius: 50%;
  background: radial-gradient(ellipse at center,
      rgba(130, 150, 190, 0.55) 0%,
      rgba(110, 130, 170, 0.35) 40%,
      transparent 70%);
  opacity: 0;
  filter: blur(90px);
  z-index: 0;
  pointer-events: none;
  animation: aurora-float 16s ease-in-out infinite alternate, hero-fade-in 2s ease 0.2s forwards;
}

/* ── $hero fade overlay ── */
.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: px;
  background: linear-gradient(to bottom,
      transparent 0%,
      rgba(0, 0, 0, 0.4) 40%,
      rgba(0, 0, 0, 0.85) 70%,
      #000000 100%);
  z-index: 2;
  pointer-events: none;
}

/* ── $hero bg overlay animation ── */
.hero .bg-overlay {
  animation: hero-fade-in 1.2s ease forwards;
}

/* ── $hero animations ── */
@keyframes aurora-float {
  0% {
    opacity: 0.5;
    transform: translate(-50%, -50%) scale(1);
  }

  25% {
    opacity: 0.75;
    transform: translate(-52%, -52%) scale(1.05);
  }

  50% {
    opacity: 0.5;
    transform: translate(-48%, -48%) scale(0.97);
  }

  75% {
    opacity: 0.7;
    transform: translate(-51%, -50%) scale(1.04);
  }

  100% {
    opacity: 0.5;
    transform: translate(-50%, -50%) scale(1);
  }
}

@keyframes hero-fade-up {
  0% {
    opacity: 0;
    transform: translateY(28px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes hero-fade-in {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

/* ── $hero divider ── */
.hero-divider {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right,
      transparent 0%,
      rgba(255, 255, 255, 0.05) 20%,
      rgba(255, 255, 255, 0.25) 45%,
      rgba(255, 255, 255, 0.25) 55%,
      rgba(255, 255, 255, 0.05) 80%,
      transparent 100%);
  z-index: 3;
}

.hero-divider::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 120px;
  height: 8px;
  background: rgba(255, 255, 255, 0.15);
  filter: blur(6px);
  border-radius: 50%;
}

/* ── $hero typography ── */
@media (min-width: 992px) {
  .hero .content {
    max-width: 700px;
  }

  .hero .content h1 {
    font-size: 5rem;
    margin-bottom: 1rem;
  }
}

.hero .content h1 {
  color: #ffffff;
  -webkit-text-fill-color: #ffffff;
  background: none;
  word-break: break-word;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0;
  animation: hero-fade-up 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.15s forwards;
}

.hero .content h1 .hero-highlight {
  background: linear-gradient(135deg, #6ea8fe 0%, #4285f4 40%, #1a6fd4 70%, #0d47a1 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero .content p {
  opacity: 0;
  animation: hero-fade-up 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.35s forwards;
}

/* ── $hero buttons ── */
.hero .content .hero-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 2rem;
  opacity: 0;
  animation: hero-fade-up 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.55s forwards;
}

.hero .content .hero-buttons .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.7rem 1.75rem;
  border-radius: 0.25rem !important;
  font-size: 0.95rem;
  font-weight: 500;
  transition: all 0.2s ease;
  background-color: transparent !important;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.75);
}

.hero .content .hero-buttons .btn-dashboard,
.hero .content .hero-buttons .btn-products {
  background-color: transparent !important;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.75);
  border-radius: 0.25rem !important;
}

.hero .content .hero-buttons .btn-dashboard:hover,
.hero .content .hero-buttons .btn-products:hover {
  background-color: rgba(255, 255, 255, 0.04) !important;
  border-color: rgba(255, 255, 255, 0.25);
  color: #ffffff;
}

/* ── $hero stats ── */
.hero .content .stats-wrapper {
  opacity: 0;
  animation: hero-fade-up 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.75s forwards;
}

/* ── $hero mobile buttons ── */
.btn-text-mobile {
  display: none;
}

@media (max-width: 575px) {
  .btn-text-full {
    display: none;
  }

  .btn-text-mobile {
    display: inline;
  }
}


/* ── $login modal ── */

/* ── $login modal base ── */
.modern-login-dialog {
  max-width: 460px;
}

.modal-backdrop.show {
  opacity: 0.95 !important;
  background-color: #000 !important;
}

.modern-login-modal {
  background-color: #0a0a0a;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 0.25rem;
  overflow: hidden;
}

/* ── $login modal accent bar ── */
.login-accent-bar {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, #808080 0%, transparent 100%);
}

/* ── $login modal inner layout ── */
.login-inner {
  padding: 2.5rem 2.5rem 2rem;
  position: relative;
}

.login-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
}

.login-title {
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

/* ── $login modal actions ── */
.login-actions {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1.75rem;
}

.login-action-btn {
  flex: 1;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.4);
  border-radius: 0.25rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.55rem 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  transition: all 0.15s ease;
}

.login-action-btn i {
  color: #4285f4;
  font-size: 0.8rem;
}

.login-action-btn:hover {
  border-color: rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.75);
}

/* ── $login modal fields ── */
.login-field {
  margin-bottom: 0.75rem;
}

.login-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.5rem;
}

.login-input {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #fff;
  border-radius: 0.25rem;
  padding: 0.7rem 1rem;
  font-size: 0.95rem;
}

.login-input:focus {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.15);
  box-shadow: none;
  outline: none;
  color: #fff;
}

.login-input::placeholder {
  color: rgba(255, 255, 255, 0.18);
}

.login-hint {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.3);
  margin-bottom: 1.25rem;
}

/* ── $login modal submit ── */
.login-submit {
  width: 100%;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  border-radius: 0.25rem;
  padding: 0.7rem;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.15s ease, background 0.15s ease;
}

.login-submit:hover {
  border-color: rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
}

/* ── $login modal otp ── */
.login-otp-input {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #fff;
  border-radius: 0.25rem;
  width: 3rem !important;
  height: 3.5rem !important;
  font-size: 1.5rem !important;
  font-weight: 700;
}

.login-otp-input:focus {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: none;
  outline: none;
  color: #fff;
}

/* ── $login modal footer ── */
.login-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1.75rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.3);
}

/* ── $login modal discord button ── */
.btn-discord-mini {
  background-color: transparent;
  color: #5865F2;
  border: 1px solid #5865F2;
  border-radius: 0.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  width: 38px;
  height: 38px;
  padding: 0;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.btn-discord-mini:hover {
  background-color: #5865F2;
  color: #fff;
}


/* ── $dashboard ── */

/* ── $dashboard sidebar ── */
.dashboard-sidebar {
  background-color: #000;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 0.25rem;
  padding: 1.5rem !important;
}

/* ── $dashboard nav links ── */
.dashboard-nav-link {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.55rem 0.75rem;
  border-radius: 0.2rem;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  text-decoration: none;
  transition: background 0.15s ease, color 0.15s ease;
  cursor: pointer;
  background: none;
  border: none;
}

.dashboard-nav-link i {
  font-size: 0.75rem;
  width: 1rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.2);
  transition: color 0.15s ease;
}

.dashboard-nav-link:hover {
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.8);
}

.dashboard-nav-link:hover i {
  color: rgba(255, 255, 255, 0.4);
}

.dashboard-nav-link.active {
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.85);
  border-left: 2px solid rgba(255, 255, 255, 0.25);
  padding-left: calc(0.75rem - 2px);
}

.dashboard-nav-link.active i {
  color: rgba(255, 255, 255, 0.5);
}

/* ── $dashboard stat cards ── */
.dash-stat-card {
  background: #0d0d0d;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0.25rem;
  padding: 1.4rem 1.6rem;
  position: relative;
  overflow: hidden;
  transition: border-color 0.25s ease;
}

.dash-stat-card:hover {
  border-color: rgba(255, 255, 255, 0.15);
}

.dash-stat-label {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.3);
  margin-bottom: 0.6rem;
}

.dash-stat-value {
  font-size: 1.6rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 0;
  letter-spacing: -0.03em;
}

/* ── $dashboard content cards ── */
.dash-card {
  background: #0d0d0d;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0.25rem;
  padding: 1.4rem 1.6rem;
  height: auto !important;
  min-height: unset !important;
  transition: border-color 0.25s ease;
  position: relative;
  overflow: hidden;
}

.dash-card:hover {
  border-color: rgba(255, 255, 255, 0.15);
}

.dash-card-label {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.3);
  margin-bottom: 0.6rem;
}

.dash-card-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0;
  letter-spacing: -0.01em;
}

/* ── $dashboard misc ── */
.dash-aurora {
  display: none !important;
}

.py-5-nav {
  overflow: visible;
}

/* ── $dashboard status badges ── */
.dash-status-badge {
  display: inline-block;
  font-size: 0.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.2rem 0.5rem;
  border-radius: 0.15rem;
  border: 1px solid;
}

.dash-status-completed,
.dash-status-paid {
  color: #4ade80;
  border-color: rgba(74, 222, 128, 0.25);
  background: rgba(74, 222, 128, 0.05);
}

.dash-status-pending {
  color: #fbbf24;
  border-color: rgba(251, 191, 36, 0.25);
  background: rgba(251, 191, 36, 0.05);
}

.dash-status-cancelled,
.dash-status-refunded {
  color: rgba(255, 255, 255, 0.3);
  border-color: rgba(255, 255, 255, 0.1);
  background: transparent;
}

/* ── $dashboard table ── */
.dash-card .table {
  --bs-table-bg: transparent;
  --bs-table-color: rgba(255, 255, 255, 0.7);
  --bs-table-border-color: rgba(255, 255, 255, 0.05);
  font-size: 0.82rem;
}

.dash-card .table thead th {
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: rgba(255, 255, 255, 0.25);
  border-bottom-color: rgba(255, 255, 255, 0.06);
  padding-bottom: 0.75rem;
}

.dash-card .table td {
  border-color: rgba(255, 255, 255, 0.04);
  vertical-align: middle;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  color: rgba(255, 255, 255, 0.65);
}

/* ── $dashboard outline button ── */
.dashboard-outline-btn {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-radius: 0.2rem;
  padding: 0.3rem 0.75rem;
  transition: border-color 0.15s ease, color 0.15s ease, background 0.15s ease;
}

.dashboard-outline-btn:hover {
  border-color: #4285f4;
  color: #6ea8fe;
  background: rgba(66, 133, 244, 0.06);
}

/* ── $dashboard affiliate modal ── */
#affiliate-edit-code-modal .modern-login-modal {
  background-color: #030303;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0.25rem;
}

#affiliate-edit-code-modal .login-accent-bar {
  background: linear-gradient(180deg, #4285f4 0%, rgba(66, 133, 244, 0) 100%);
}

#affiliate-edit-code-modal .login-title {
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #fff;
}

#affiliate-edit-code-modal .login-label {
  color: rgba(255, 255, 255, 0.28);
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

#affiliate-edit-code-modal .login-input {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #fff;
  border-radius: 0.2rem;
  font-size: 0.9rem;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

#affiliate-edit-code-modal .login-input:focus {
  border-color: rgba(66, 133, 244, 0.5);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 0 0 3px rgba(66, 133, 244, 0.1);
  outline: none;
}

#affiliate-edit-code-modal .login-input::placeholder {
  color: rgba(255, 255, 255, 0.15);
}

#affiliate-edit-code-modal .login-submit {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 0.2rem;
  transition: border-color 0.15s ease, background 0.15s ease, color 0.15s ease;
}

#affiliate-edit-code-modal .login-submit:hover {
  border-color: #4285f4;
  background: rgba(66, 133, 244, 0.08);
  color: #6ea8fe;
}


/* ── $cart page ── */

/* ── $cart title ── */
.cart .section-title h1 {
  font-size: 1.4rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #fff;
}

/* ── $cart empty state ── */
.cart .p-4.border.rounded {
  background: #0d0d0d;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  border-radius: 0.25rem !important;
  color: rgba(255, 255, 255, 0.4);
}

/* ── $cart item rows ── */
.cart-item-bg {
  background: #0d0d0d !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  border-radius: 0.25rem !important;
  transition: border-color 0.25s ease;
  position: relative;
  overflow: hidden;
}

.cart-item-bg::after {
  display: none !important;
}

.cart-item-bg:hover {
  border-color: rgba(255, 255, 255, 0.28) !important;
}

/* ── $cart product name ── */
.cart-product-link {
  font-weight: 700;
  font-size: 0.9rem;
  color: #fff !important;
  letter-spacing: -0.01em;
  white-space: normal !important;
  overflow: visible !important;
  text-overflow: unset !important;
}

.cart-product-link:hover {
  color: #6ea8fe !important;
  text-decoration: none !important;
}

.cart-item-bg .text-truncate {
  overflow: visible !important;
  text-overflow: unset !important;
  white-space: normal !important;
}

/* ── $cart text variants ── */
.cart-variant-text {
  color: rgba(255, 255, 255, 0.35) !important;
  font-size: 0.75rem;
}

.cart-discount-text {
  color: rgba(255, 255, 255, 0.3) !important;
  font-size: 0.75rem;
}

.cart-addon-badge {
  background: rgba(66, 133, 244, 0.08) !important;
  border: 1px solid rgba(66, 133, 244, 0.2) !important;
  color: rgba(110, 168, 254, 0.8) !important;
  font-size: 0.68rem;
  border-radius: 0.2rem !important;
}

/* ── $cart quantity controls ── */
.cart-qty-btn {
  background: rgba(255, 255, 255, 0.06) !important;
  border: none;
  color: rgba(255, 255, 255, 0.6);
  width: 2rem;
  height: 2rem;
  transition: background 0.2s ease, color 0.2s ease;
}

.cart-qty-btn:hover:not(:disabled) {
  background: #4285f4 !important;
  color: #fff;
}

.cart-qty-btn:disabled {
  opacity: 0.25 !important;
}

.cart-qty-input {
  background: rgba(255, 255, 255, 0.04) !important;
  border: none !important;
  color: #fff !important;
  font-size: 0.85rem;
  font-weight: 600;
}

.cart-qty-input:focus {
  background: rgba(255, 255, 255, 0.06) !important;
  color: #fff !important;
  box-shadow: none !important;
}

/* ── $cart price ── */
.cart-price-text {
  font-weight: 700;
  font-size: 1rem;
  color: #fff;
  letter-spacing: -0.01em;
}

/* ── $cart remove buttons ── */
.cart-remove-mobile,
.cart-remove-desktop {
  color: rgba(255, 255, 255, 0.25) !important;
  transition: color 0.15s ease;
}

.cart-remove-mobile:hover,
.cart-remove-desktop:hover {
  color: #ef4444 !important;
}

/* ── $cart order summary ── */
.cart .form {
  background: #0d0d0d !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  border-radius: 0.25rem !important;
  padding: 1.5rem !important;
}

.cart .form .form-label {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.3);
  margin-bottom: 0.75rem;
}

.cart .form .text-muted {
  color: rgba(255, 255, 255, 0.4) !important;
  font-size: 0.82rem;
}

.cart .form .fw-bold {
  font-weight: 800 !important;
  font-size: 1rem;
  color: #fff;
  letter-spacing: -0.01em;
}

.cart .form .border-bottom {
  border-color: rgba(255, 255, 255, 0.06) !important;
}

/* ── $cart checkout button ── */
.cart .form .btn-outline-primary {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 0.2rem;
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: border-color 0.15s ease, background 0.15s ease, color 0.15s ease;
}

.cart .form .btn-outline-primary:hover:not(:disabled) {
  border-color: #4285f4;
  background: rgba(66, 133, 244, 0.08);
  color: #6ea8fe;
}

.cart .form .btn-outline-primary:disabled {
  opacity: 0.4;
}

/* ── $cart error alert ── */
.cart .alert-danger {
  background: rgba(239, 68, 68, 0.06);
  border: 1px solid rgba(239, 68, 68, 0.2);
  border-radius: 0.25rem;
  color: #fca5a5;
  font-size: 0.82rem;
}

/* ── $cart controls border ── */
.cart-controls {
  border-top-color: rgba(255, 255, 255, 0.05) !important;
}


/* ── $products section ── */

/* ── $products section layout ── */
.products-section {
  position: relative;
  isolation: isolate;
}

.products-section .section-title,
.products-section .section-subtitle {
  justify-content: center;
  text-align: center;
}

.products-section>* {
  position: relative;
  z-index: 1;
}

/* ── $products section title ── */
.products-section .section-title h2,
.products-section .section-title h1,
.py-5-nav .section-title h1 {
  font-size: 3rem !important;
  font-weight: 900 !important;
  letter-spacing: -0.02em;
  line-height: 1;
  color: #fff;
}

.products-section .section-title h2 .products-highlight,
.section-title h1 .products-highlight,
.products-section .section-title .word-gradient {
  background: linear-gradient(135deg, #6ea8fe 0%, #4285f4 50%, #1a6fd4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── $products section subtitle ── */
.products-section .section-subtitle,
.py-5-nav .section-subtitle {
  margin-top: -0.35rem !important;
  color: rgba(255, 255, 255, 0.45) !important;
  font-size: 0.9rem !important;
}

/* ── $products section title animation ── */
.products-section .section-title {
  animation: hero-fade-up 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.1s both;
}

.products-section .section-subtitle {
  animation: hero-fade-up 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.2s both;
}

/* ── $products section glow ── */
.products-section::before {
  content: '';
  position: absolute;
  top: 200px;
  left: 50%;
  transform: translateX(-50%);
  width: 1300px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(ellipse at center,
      rgba(55, 115, 235, 0.28) 0%,
      rgba(66, 133, 244, 0.14) 35%,
      rgba(110, 168, 254, 0.05) 60%,
      transparent 72%);
  filter: blur(90px);
  pointer-events: none;
  z-index: -1;
  animation: dash-aurora-pulse 9s ease-in-out infinite alternate;
}

.products-section::after {
  content: '';
  position: absolute;
  top: 100px;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 250px;
  border-radius: 50%;
  background: radial-gradient(ellipse at center,
      rgba(100, 160, 255, 0.13) 0%,
      transparent 70%);
  filter: blur(55px);
  pointer-events: none;
  z-index: -1;
  animation: dash-aurora-pulse 13s ease-in-out infinite alternate-reverse;
}

/* ── $products section grid ── */
.products-section .products .col,
.products-section .products [class*="col-"] {
  flex: 0 0 auto;
  width: 33.3333% !important;
}

@media (max-width: 991px) {

  .products-section .products .col,
  .products-section .products [class*="col-"] {
    width: 50% !important;
  }
}

@media (max-width: 575px) {

  .products-section .products .col,
  .products-section .products [class*="col-"] {
    width: 100% !important;
  }
}


/* ── $product card ── */

/* ── $product card base ── */
.products .card {
  background: #0d0d0d !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  border-radius: 0.4rem !important;
  overflow: hidden;
  position: relative;
  transition: border-color 0.35s ease !important;
  transform: none !important;
}

.products .card:hover {
  border-color: rgba(255, 255, 255, 0.28) !important;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.04) inset !important;
  transform: none !important;
}

/* ── $product card image ── */
.products .card .card-img-top img.object-product-image {
  object-fit: cover !important;
  width: 100%;
  height: 100%;
}

/* ── $product card body ── */
.products .card .card-body {
  background: transparent !important;
  padding: 0.75rem 0.85rem !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 0.4rem !important;
}

/* ── $product card title ── */
.products .card .card-title {
  display: block !important;
  font-size: 1rem !important;
  font-weight: 800 !important;
  color: #fff !important;
  letter-spacing: -0.015em;
  line-height: 1.2;
  margin: 0 !important;
}

/* ── $product card info (legacy) ── */
.products .card .info {
  display: none !important;
}

/* ── $product card price row ── */
.card-price-row {
  display: flex;
  align-items: center;
}

.card-price {
  display: inline-flex !important;
  align-items: center;
  gap: 0.3rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0.2rem;
  padding: 0.15rem 0.5rem;
  font-size: 0.78rem;
  font-weight: 700;
  color: #6ea8fe;
  white-space: nowrap;
  line-height: 1.5;
}

.card-price-sep {
  color: rgba(110, 168, 254, 0.5);
  font-weight: 400;
}

.card-price-slash {
  color: rgba(110, 168, 254, 0.3);
  font-size: 0.68rem;
  font-weight: 400;
  text-decoration: line-through;
}

/* ── $product card badges ── */
.card-badges {
  position: absolute;
  top: 0.55rem;
  left: 0.55rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.3rem;
  z-index: 5;
}

.card-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 0.22rem 0.6rem;
  border-radius: 0.2rem;
  backdrop-filter: blur(6px);
  line-height: 1.4;
}

/* ── $product card status dot ── */
.card-status-dot {
  position: absolute;
  top: 0.6rem;
  right: 0.6rem;
  z-index: 5;
}

.card-status-dot .indicator {
  position: relative;
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.card-status-dot .pulsating {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  opacity: 0;
  pointer-events: none;
  animation: pulsating 1.25s linear infinite;
}

/* Hide legacy CSS-only green dot */
.products .card .card-img-top::before {
  display: none !important;
}

/* ── $product card overlay button ── */
.products .card .card-img-top .overlay .btn,
.products .card .card-img-top .overlay .btn:hover,
.products .card .card-img-top .overlay .btn:focus {
  background: rgba(8, 8, 8, 0.82) !important;
  border: 1px solid rgba(255, 255, 255, 0.18) !important;
  color: #fff !important;
  backdrop-filter: blur(8px);
  font-size: 0.75rem !important;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* ── $product card scroll reveal ── */
@keyframes card-reveal {
  0% {
    opacity: 0;
    transform: translateY(24px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.products-section .card-reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1), transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

.products-section .card-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Remove old CSS-only animation on cards */
.products-section .products .col-12 .card,
.products-section .row.products>div .card {
  animation: none !important;
}


/* ── $footer ── */

/* ── $footer base ── */
.footer {
  position: relative;
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
}

/* ── $footer divider ── */
.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right,
      transparent 0%,
      rgba(255, 255, 255, 0.05) 20%,
      rgba(255, 255, 255, 0.25) 45%,
      rgba(255, 255, 255, 0.25) 55%,
      rgba(255, 255, 255, 0.05) 80%,
      transparent 100%);
  z-index: 3;
}

.footer::after {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120px;
  height: 8px;
  background: rgba(255, 255, 255, 0.15);
  filter: blur(6px);
  border-radius: 50%;
  z-index: 3;
}



/* ── $animations ── */

/* ── $animations aurora pulse ── */
@keyframes dash-aurora-pulse {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0.5;
  }
}

/* ── Product Page Custom ── */
/* ── Product Page Custom ── */

.pp-title-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.pp-title {
  font-size: 2rem;
  line-height: 1.2;
}

.pp-carousel {
  border-radius: var(--bs-border-radius);
  overflow: hidden;
}

.pp-panel {
  background: var(--bs-gray-bg);
  border: var(--bs-border-width) solid var(--bs-border-color);
  border-radius: var(--bs-border-radius);
  padding: 1.5rem;
  position: sticky;
  top: 5rem;
}

.pp-price-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  padding-bottom: 1rem;
  border-bottom: var(--bs-border-width) solid var(--bs-border-color);
  margin-bottom: 1rem;
}

.pp-price {
  font-size: 1.5rem;
  font-weight: 700;
}

/* ── $product page body layout (Moved to HEAD to prevent FOUC) ── */
.pp-body {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 992px) {
  .pp-body {
    grid-template-columns: 1.65fr 1fr;
    gap: 2.5rem;
    align-items: start;
  }
}

.pp-image-wrap {
  background: #0a0a0a;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 0.2rem;
  overflow: hidden;
}

.pp-main-image {
  width: 100%;
  display: block;
}