@import url("https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&display=swap");

/* ============================================
   FUTURISTIC BACKGROUND
   ============================================ */

html, body {
  min-height: 100%;
}

body {
  background: #0a0b10;
  position: relative;
}

/* Remove old pseudo-element backgrounds */
body::before,
body::after {
  display: none;
}

/* ---- Glow Container ---- */
.bg-glows {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  min-height: 100vh;
  z-index: -5;
  pointer-events: none;
  overflow: hidden;
}

/* ---- Individual Glow ---- */
.bg-glow {
  position: absolute;
  border-radius: 9999px;
  filter: blur(60px);
  will-change: transform, opacity;
}

/* ============================================
   GLOW DEFINITIONS
   Mix of circles and ellipses, spread across page
   ============================================ */

/* Circle â€“ top left */
.bg-glow--1 {
  width: 280px;
  height: 280px;
  top: 3%;
  left: 10%;
  background: rgba(183, 80, 255, 0.12);
  animation: glowBreath1 8s ease-in-out infinite;
}

/* Tall ellipse â€“ top right */
.bg-glow--2 {
  width: 140px;
  height: 320px;
  top: 2%;
  right: 12%;
  background: rgba(255, 72, 166, 0.10);
  animation: glowBreath2 11s ease-in-out infinite;
}

/* Wide ellipse â€“ upper middle */
.bg-glow--3 {
  width: 360px;
  height: 140px;
  top: 20%;
  left: 55%;
  background: rgba(118, 87, 255, 0.09);
  animation: glowBreath3 9s ease-in-out infinite;
}

/* Circle â€“ left side */
.bg-glow--4 {
  width: 220px;
  height: 220px;
  top: 38%;
  left: 5%;
  background: rgba(255, 72, 166, 0.10);
  animation: glowBreath4 13s ease-in-out infinite;
}

/* Tall ellipse â€“ right middle */
.bg-glow--5 {
  width: 120px;
  height: 300px;
  top: 35%;
  right: 8%;
  background: rgba(183, 80, 255, 0.11);
  animation: glowBreath5 7s ease-in-out infinite;
}

/* Wide ellipse â€“ center */
.bg-glow--6 {
  width: 400px;
  height: 120px;
  top: 55%;
  left: 25%;
  background: rgba(118, 87, 255, 0.08);
  animation: glowBreath6 10s ease-in-out infinite;
}

/* Circle â€“ lower left */
.bg-glow--7 {
  width: 260px;
  height: 260px;
  top: 68%;
  left: 8%;
  background: rgba(183, 80, 255, 0.10);
  animation: glowBreath7 12s ease-in-out infinite;
}

/* Tall ellipse â€“ lower right */
.bg-glow--8 {
  width: 150px;
  height: 350px;
  top: 65%;
  right: 15%;
  background: rgba(255, 72, 166, 0.09);
  animation: glowBreath8 9s ease-in-out infinite;
}

/* Wide ellipse â€“ bottom */
.bg-glow--9 {
  width: 380px;
  height: 130px;
  top: 85%;
  left: 40%;
  background: rgba(183, 80, 255, 0.08);
  animation: glowBreath9 11s ease-in-out infinite;
}

/* Circle â€“ bottom left corner */
.bg-glow--10 {
  width: 200px;
  height: 200px;
  top: 90%;
  left: 3%;
  background: rgba(118, 87, 255, 0.07);
  animation: glowBreath10 8s ease-in-out infinite;
}

/* ============================================
   INDEPENDENT ANIMATIONS
   Each glow breathes on its own rhythm
   ============================================ */

@keyframes glowBreath1 {
  0%, 100% { transform: scale(1); opacity: 1; }
  30%      { transform: scale(0.6); opacity: 0.5; }
  70%      { transform: scale(1.1); opacity: 0.9; }
}

@keyframes glowBreath2 {
  0%, 100% { transform: scale(1); opacity: 0.9; }
  25%      { transform: scale(1.15); opacity: 1; }
  60%      { transform: scale(0.55); opacity: 0.45; }
}

@keyframes glowBreath3 {
  0%, 100% { transform: scale(1); opacity: 0.85; }
  40%      { transform: scale(0.5); opacity: 0.4; }
  75%      { transform: scale(1.1); opacity: 0.95; }
}

@keyframes glowBreath4 {
  0%, 100% { transform: scale(1); opacity: 0.9; }
  20%      { transform: scale(1.2); opacity: 1; }
  55%      { transform: scale(0.5); opacity: 0.4; }
  80%      { transform: scale(0.9); opacity: 0.8; }
}

@keyframes glowBreath5 {
  0%, 100% { transform: scale(1); opacity: 1; }
  35%      { transform: scale(0.55); opacity: 0.45; }
  65%      { transform: scale(1.15); opacity: 0.95; }
}

@keyframes glowBreath6 {
  0%, 100% { transform: scale(1); opacity: 0.8; }
  30%      { transform: scale(1.1); opacity: 0.95; }
  50%      { transform: scale(0.5); opacity: 0.35; }
  80%      { transform: scale(1.05); opacity: 0.85; }
}

@keyframes glowBreath7 {
  0%, 100% { transform: scale(1); opacity: 0.9; }
  45%      { transform: scale(0.5); opacity: 0.4; }
  70%      { transform: scale(1.2); opacity: 1; }
}

@keyframes glowBreath8 {
  0%, 100% { transform: scale(1); opacity: 0.85; }
  20%      { transform: scale(0.6); opacity: 0.5; }
  50%      { transform: scale(1.15); opacity: 1; }
  75%      { transform: scale(0.7); opacity: 0.55; }
}

@keyframes glowBreath9 {
  0%, 100% { transform: scale(1); opacity: 0.8; }
  35%      { transform: scale(1.2); opacity: 0.95; }
  60%      { transform: scale(0.5); opacity: 0.35; }
}

@keyframes glowBreath10 {
  0%, 100% { transform: scale(1); opacity: 0.85; }
  25%      { transform: scale(0.55); opacity: 0.4; }
  55%      { transform: scale(1.1); opacity: 0.95; }
  80%      { transform: scale(0.6); opacity: 0.5; }
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 768px) {
  .bg-glow--1  { width: 180px; height: 180px; }
  .bg-glow--2  { width: 90px;  height: 200px; }
  .bg-glow--3  { width: 220px; height: 90px; }
  .bg-glow--4  { width: 150px; height: 150px; }
  .bg-glow--5  { width: 80px;  height: 200px; }
  .bg-glow--6  { width: 250px; height: 80px; }
  .bg-glow--7  { width: 170px; height: 170px; }
  .bg-glow--8  { width: 100px; height: 220px; }
  .bg-glow--9  { width: 240px; height: 80px; }
  .bg-glow--10 { width: 130px; height: 130px; }

  .bg-glow {
    filter: blur(45px);
  }
}

@media (max-width: 480px) {
  .bg-glow--1  { width: 140px; height: 140px; }
  .bg-glow--2  { width: 70px;  height: 160px; }
  .bg-glow--3  { width: 180px; height: 70px; }
  .bg-glow--4  { width: 120px; height: 120px; }
  .bg-glow--5  { width: 60px;  height: 150px; }
  .bg-glow--6  { width: 190px; height: 60px; }
  .bg-glow--7  { width: 130px; height: 130px; }
  .bg-glow--8  { width: 80px;  height: 170px; }
  .bg-glow--9  { width: 180px; height: 60px; }
  .bg-glow--10 { width: 100px; height: 100px; }

  .bg-glow {
    filter: blur(35px);
  }
}







/* ============================================
   ANNOUNCEMENT BAR â€“ Marquee Glass Design
   ============================================ */

.announce {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 102;
  overflow: hidden;
}

.announce__bar {
  position: relative;
  display: flex;
  align-items: center;
  padding: 14px 0;
  background: rgba(8, 9, 12, 0.35);
  border-bottom: 1px solid rgba(255, 72, 166, 0.12);
  backdrop-filter: blur(22px) saturate(1.35);
  -webkit-backdrop-filter: blur(22px) saturate(1.35);
  box-shadow:
    0 4px 24px rgba(0, 0, 0, 0.25),
    inset 0 0 30px rgba(255, 72, 166, 0.03),
    inset 0 -1px 0 rgba(255, 72, 166, 0.08);
  overflow: hidden;
}

/* ---- Marquee Container ---- */
.announce__marquee {
  display: flex;
  width: 100%;
  overflow: hidden;
  mask-image: linear-gradient(
    90deg,
    transparent 0%,
    black 5%,
    black 95%,
    transparent 100%
  );
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent 0%,
    black 5%,
    black 95%,
    transparent 100%
  );
}

/* ---- Scrolling Track ---- */
.announce__track {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  animation: announceScroll 50s linear infinite;
}

/* ---- Individual Item ---- */
.announce__item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  padding: 0 24px;
}

/* ---- Pink Dot Separator ---- */
.announce__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 72, 166, 0.9);
  box-shadow: 0 0 8px rgba(255, 72, 166, 0.5);
  flex-shrink: 0;
}

/* ---- Text ---- */
.announce__label {
  font-size: 0.92rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.02em;
  user-select: none;
}

/* ---- Infinite Scroll Keyframes ---- */
@keyframes announceScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

/* ---- Close Button ---- */
.announce__close {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 8px;
  background: rgba(8, 9, 12, 0.6);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  cursor: pointer;
  padding: 0;
  z-index: 2;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.announce__close svg {
  width: 14px;
  height: 14px;
  color: rgba(255, 255, 255, 0.35);
  transition: color 0.2s ease;
}

.announce__close:hover {
  background: rgba(255, 72, 166, 0.1);
  border-color: rgba(255, 72, 166, 0.2);
}

.announce__close:hover svg {
  color: rgba(255, 72, 166, 0.8);
}

/* ---- Responsive ---- */
@media (max-width: 640px) {
  .announce__bar {
    padding: 11px 0;
  }

  .announce__label {
    font-size: 0.82rem;
  }

  .announce__item {
    gap: 8px;
    padding: 0 18px;
  }

  .announce__dot {
    width: 5px;
    height: 5px;
  }

  .announce__close {
    right: 8px;
    width: 24px;
    height: 24px;
  }

  .announce__close svg {
    width: 12px;
    height: 12px;
  }

  .announce__track {
    animation-duration: 20s;
  }
}








/* ============================================
   TWO-PART HEADER
   ============================================ */

[data-component-id="navbar"] {
  position: relative;
  z-index: 100;
}

/* â”€â”€â”€ TOP BAR (fixed, full-bleed) â”€â”€â”€ */
.hdr-top {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 101;
  transition: top 0.2s ease;
  background:
    linear-gradient(to top, rgba(168, 85, 247, 0.28) 0%, rgba(139, 92, 246, 0.12) 18%, rgba(139, 92, 246, 0.04) 40%, transparent 55%),
    radial-gradient(ellipse at 20% 50%, rgba(139, 92, 246, 0.12) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 50%, rgba(192, 38, 211, 0.08) 0%, transparent 50%),
    linear-gradient(180deg, rgba(12, 10, 22, 0.99) 0%, rgba(10, 8, 20, 0.99) 100%);
  border-bottom: 1px solid rgba(168, 85, 247, 0.3);
}

/* Thin glow line at bottom edge */
.hdr-top::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent 5%,
    rgba(139, 92, 246, 0.5) 20%,
    rgba(168, 85, 247, 0.8) 35%,
    rgba(192, 132, 252, 1) 50%,
    rgba(168, 85, 247, 0.8) 65%,
    rgba(139, 92, 246, 0.5) 80%,
    transparent 95%
  );
  pointer-events: none;
  filter: blur(0.5px);
}

.hdr-top__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 85rem;
  margin: 0 auto;
  padding: 0 2.5rem;
  height: 72px;
}

/* Spacer to push content below both fixed header bars */
.hdr-top-spacer {
  height: 120px;
  transition: height 0.2s ease;
}

/* When announcement bar is active, shift header + spacer down */
body.announce-active .hdr-top {
  top: 44px;
}
body.announce-active .hdr-sub {
  top: 116px;
}
body.announce-active .hdr-top-spacer {
  height: 164px;
}
@media (max-width: 640px) {
  body.announce-active .hdr-top {
    top: 39px;
  }
  body.announce-active .hdr-top-spacer {
    height: 159px;
  }
}

/* â”€â”€â”€ Logo (image) â”€â”€â”€ */
.hdr-top__logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
  transition: opacity 0.2s ease;
}

.hdr-top__logo:hover {
  opacity: 0.88;
}

.hdr-top__logo-img {
  height: 48px;
  width: auto;
  display: block;
  margin-left: -4px;
}

/* â”€â”€â”€ Right side items â”€â”€â”€ */
.hdr-top__right {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* â”€â”€â”€ Online counter pill â”€â”€â”€ */
.hdr-top__online {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 7px 14px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.hdr-top__online-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 6px #22c55e;
  animation: hdr-pulse 2s ease infinite;
}

@keyframes hdr-pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 6px #22c55e; }
  50%      { opacity: 0.5; box-shadow: 0 0 14px #22c55e, 0 0 28px rgba(34, 197, 94, 0.25); }
}

.hdr-top__online-count {
  font-size: 0.82rem;
  font-weight: 700;
  color: #22c55e;
  min-width: 16px;
}

.hdr-top__online-label {
  font-size: 0.65rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* â”€â”€â”€ Icon buttons (discord, cart) â”€â”€â”€ */
.hdr-top__icon-btn {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.55);
  font-size: 15px;
  cursor: pointer;
  position: relative;
  text-decoration: none;
  transition: all 0.25s ease;
  padding: 0;
}

.hdr-top__icon-btn:hover {
  background: rgba(168, 85, 247, 0.15);
  border-color: rgba(168, 85, 247, 0.4);
  color: #ffffff;
  box-shadow: 0 0 12px rgba(168, 85, 247, 0.2);
}

/* Cart badge */
.hdr-top__badge {
  position: absolute;
  top: -5px;
  right: -5px;
  min-width: 17px;
  height: 17px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
  border-radius: 999px;
  background: linear-gradient(135deg, #a855f7, #d946ef);
  color: #fff;
  font-size: 0.58rem;
  font-weight: 700;
  box-shadow: 0 0 10px rgba(168, 85, 247, 0.6);
  z-index: 2;
}

/* â”€â”€â”€ Dashboard / Sign In button (CosmoCheats-inspired) â”€â”€â”€ */
.hdr-top__dash-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 38px;
  padding: 0 20px;
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #ffffff;
  background: linear-gradient(135deg, #8b5cf6 0%, #a855f7 50%, #c026d3 100%);
  border: 1px solid rgba(168, 85, 247, 0.5);
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.3s ease;
  box-shadow:
    0 0 20px rgba(168, 85, 247, 0.35),
    0 0 40px rgba(192, 38, 211, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
  position: relative;
  overflow: hidden;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.35);
}

.hdr-top__dash-btn:hover {
  box-shadow:
    0 0 28px rgba(168, 85, 247, 0.5),
    0 0 50px rgba(192, 38, 211, 0.25),
    0 4px 16px rgba(140, 60, 240, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
  transform: translateY(-1px);
  border-color: rgba(200, 120, 255, 0.7);
  filter: brightness(1.12);
}

.hdr-top__dash-btn i {
  font-size: 12px;
}

/* â”€â”€â”€ Mobile hamburger â”€â”€â”€ */
.hdr-top__hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
  width: 38px;
  height: 38px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  cursor: pointer;
  padding: 0;
  transition: all 0.25s ease;
}

.hdr-top__hamburger:hover {
  border-color: rgba(168, 85, 247, 0.4);
  background: rgba(168, 85, 247, 0.12);
}

.hdr-top__hamburger span {
  display: block;
  width: 16px;
  height: 2px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hdr-top__hamburger.is-active span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}
.hdr-top__hamburger.is-active span:nth-child(2) {
  opacity: 0;
}
.hdr-top__hamburger.is-active span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* â”€â”€â”€ SUB NAV (fixed, full-bleed, flush below top bar) â”€â”€â”€ */
.hdr-sub {
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  z-index: 100;
  background: linear-gradient(
    180deg,
    rgba(14, 11, 26, 0.96) 0%,
    rgba(10, 8, 20, 0.94) 100%
  );
  backdrop-filter: blur(20px) saturate(1.3);
  -webkit-backdrop-filter: blur(20px) saturate(1.3);
  border-bottom: 1px solid rgba(160, 100, 255, 0.08);
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
              opacity 0.35s cubic-bezier(0.22, 1, 0.36, 1),
              filter 0.35s ease,
              top 0.2s ease;
  will-change: transform, opacity;
}

.hdr-sub--visible {
  transform: translateY(0);
  opacity: 1;
  filter: blur(0);
}

.hdr-sub--hidden {
  transform: translateY(-110%);
  opacity: 0;
  filter: blur(4px);
  pointer-events: none;
}

.hdr-sub__inner {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 6px;
  max-width: 85rem;
  margin: 0 auto;
  padding: 8px 2.5rem;
}

/* â”€â”€â”€ Sub nav links â”€â”€â”€ */
.hdr-sub__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  position: relative;
  white-space: nowrap;
  border: 1px solid transparent;
  background: transparent;
  overflow: hidden;
  transition: color 0.3s ease,
              background 0.3s ease,
              border-color 0.3s ease,
              box-shadow 0.3s ease,
              transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}

.hdr-sub__link::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: 7px;
  pointer-events: none;
  opacity: 0;
  background:
    radial-gradient(circle at 16% 22%, rgba(236, 72, 153, 0.2), transparent 58%),
    radial-gradient(circle at 82% 78%, rgba(192, 132, 252, 0.16), transparent 60%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0) 58%);
  transform: scale(0.96);
  transform-origin: center;
  transition: opacity 0.3s ease, transform 0.36s cubic-bezier(0.22, 1, 0.36, 1);
}

.hdr-sub__link i {
  font-size: 13px;
  color: rgba(192, 132, 252, 0.55);
  transition: color 0.3s ease, filter 0.3s ease;
}

.hdr-sub__link:hover {
  color: #ffffff;
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.14) 0%, rgba(236, 72, 153, 0.11) 100%);
  border-color: rgba(168, 85, 247, 0.28);
  box-shadow: 0 8px 22px rgba(168, 85, 247, 0.16),
              inset 0 0 14px rgba(168, 85, 247, 0.08);
  transform: translateY(-2px);
}

.hdr-sub__link:hover::before {
  opacity: 1;
  transform: scale(1);
}

.hdr-sub__link:hover i {
  color: #c084fc;
  filter: drop-shadow(0 0 7px rgba(192, 132, 252, 0.28));
}

/* Active / highlighted link */
.hdr-sub__link--active {
  color: #ffffff;
  background: linear-gradient(
    135deg,
    rgba(139, 92, 246, 0.2) 0%,
    rgba(168, 85, 247, 0.15) 100%
  );
  border: 1px solid rgba(168, 85, 247, 0.35);
  box-shadow: 0 0 14px rgba(168, 85, 247, 0.12),
              inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.hdr-sub__link--active i {
  color: #c084fc;
}

/* â”€â”€â”€ MOBILE DRAWER â”€â”€â”€ */
.hdr-mobile {
  position: fixed;
  inset: 0;
  z-index: 200;
  pointer-events: none;
  visibility: hidden;
}

.hdr-mobile--open {
  pointer-events: auto;
  visibility: visible;
}

.hdr-mobile__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0);
  transition: background 0.3s ease;
}

.hdr-mobile--open .hdr-mobile__overlay {
  background: rgba(0, 0, 0, 0.6);
}

.hdr-mobile__drawer {
  position: absolute;
  top: 0;
  right: 0;
  width: 280px;
  max-width: 85vw;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(18, 14, 30, 0.98) 0%,
    rgba(10, 8, 18, 0.99) 100%
  );
  border-left: 1px solid rgba(160, 100, 255, 0.12);
  backdrop-filter: blur(24px);
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
}

.hdr-mobile--open .hdr-mobile__drawer {
  transform: translateX(0);
}

.hdr-mobile__links {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 80px 16px 24px;
}

.hdr-mobile__link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 16px;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  border: 1px solid transparent;
  background: transparent;
  cursor: pointer;
  width: 100%;
  text-align: left;
  transition: all 0.2s ease;
  overflow: hidden;
}

.hdr-mobile__link i {
  width: 18px;
  text-align: center;
  font-size: 14px;
  color: rgba(180, 120, 255, 0.5);
  transition: color 0.2s ease;
}

.hdr-mobile__link:hover {
  background: rgba(168, 85, 247, 0.1);
  border-color: rgba(168, 85, 247, 0.2);
  color: #ffffff;
}

.hdr-mobile__link:hover i {
  color: #c084fc;
}

.hdr-mobile__sep {
  border: none;
  border-top: 1px solid rgba(160, 100, 255, 0.1);
  margin: 8px 0;
}

/* â”€â”€â”€ Desktop: hide hamburger â”€â”€â”€ */
@media (min-width: 1024px) {
  .hdr-top__hamburger {
    display: none;
  }

  .hdr-top__inner {
    height: 72px;
  }

  .hdr-top-spacer {
    height: 120px;
  }
}

/* â”€â”€â”€ Mobile: hide sub nav, compact layout â”€â”€â”€ */
@media (max-width: 1023px) {
  .hdr-sub {
    display: none;
  }

  .hdr-top__inner {
    height: 56px;
    padding: 0 1rem;
  }

  .hdr-top-spacer {
    height: 56px;
  }

  .hdr-top__online-label {
    display: none;
  }

  .hdr-top__dash-btn span {
    display: none;
  }

  .hdr-top__dash-btn {
    width: 38px;
    height: 38px;
    padding: 0;
    justify-content: center;
    border-radius: 8px;
  }

  .hdr-top__dash-btn i {
    font-size: 14px;
  }
}

@media (max-width: 640px) {
  .hdr-top__logo-img {
    height: 30px;
  }

  .hdr-top__online {
    padding: 5px 10px;
    gap: 5px;
  }

  .hdr-top__online-dot {
    width: 6px;
    height: 6px;
  }

  .hdr-top__online-count {
    font-size: 0.72rem;
  }
}





/* ============================================
   HERO / CTA SECTION â€” NEW STASIS STYLE
   ============================================ */

.xhero {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
  padding: 3.5rem 1.5rem 2rem;
  min-height: auto;
  margin-top: -120px;
  padding-top: calc(120px + 3.5rem);
  background:
    radial-gradient(ellipse 80% 50% at 50% 10%, rgba(139, 92, 246, 0.18) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 30% 5%, rgba(192, 38, 211, 0.10) 0%, transparent 50%),
    radial-gradient(ellipse 60% 40% at 70% 5%, rgba(139, 92, 246, 0.08) 0%, transparent 50%);
}

/* â”€â”€â”€ Ambient Light Rays â”€â”€â”€ */
.xhero__rays {
  position: absolute;
  top: -40%;
  left: 10%;
  width: 50%;
  height: 120%;
  background: conic-gradient(
    from 200deg at 50% 0%,
    transparent 0deg,
    rgba(139, 92, 246, 0.06) 20deg,
    transparent 40deg,
    rgba(192, 38, 211, 0.04) 80deg,
    transparent 100deg,
    rgba(139, 92, 246, 0.05) 140deg,
    transparent 170deg,
    transparent 360deg
  );
  filter: blur(40px);
  pointer-events: none;
  z-index: 0;
  animation: xheroRayPulse 8s ease-in-out infinite;
}

.xhero__rays--right {
  left: auto;
  right: 10%;
  animation-delay: -4s;
  transform: scaleX(-1);
}

@keyframes xheroRayPulse {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}

/* â”€â”€â”€ Floating Particles â”€â”€â”€ */
.xhero__particles {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.xhero__dot {
  position: absolute;
  left: var(--x);
  top: var(--y);
  width: var(--size);
  height: var(--size);
  background: rgba(192, 132, 252, 0.6);
  border-radius: 50%;
  box-shadow: 0 0 6px rgba(139, 92, 246, 0.4);
  animation: xheroDotFloat var(--dur) ease-in-out var(--delay) infinite;
}

@keyframes xheroDotFloat {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.4; }
  25% { transform: translate(12px, -18px) scale(1.3); opacity: 0.8; }
  50% { transform: translate(-8px, -30px) scale(1); opacity: 0.5; }
  75% { transform: translate(15px, -12px) scale(1.2); opacity: 0.7; }
}

/* â”€â”€â”€ Fade-in Animation â”€â”€â”€ */
.xhero__fade {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.xhero__fade--visible {
  opacity: 1;
  transform: translateY(0);
}

/* â”€â”€â”€ Content Wrapper â”€â”€â”€ */
.xhero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  max-width: 800px;
  width: 100%;
}

/* â”€â”€â”€ Brand Eyebrow â”€â”€â”€ */
.xhero__brand {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.xhero__brand-line {
  display: block;
  width: 50px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.5));
}

.xhero__brand-line:last-child {
  background: linear-gradient(90deg, rgba(139, 92, 246, 0.5), transparent);
}

.xhero__brand-name {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: rgba(139, 92, 246, 0.9);
  text-transform: none;
}

/* â”€â”€â”€ Title â”€â”€â”€ */
.xhero__title {
  font-size: clamp(2.2rem, 5.5vw, 3.8rem);
  font-weight: 800;
  color: #ffffff;
  margin: 0;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.xhero__title-accent {
  background: linear-gradient(135deg, rgba(139, 92, 246, 1) 0%, rgba(192, 38, 211, 1) 50%, rgba(236, 72, 153, 1) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* â”€â”€â”€ Subtitle â”€â”€â”€ */
.xhero__subtitle {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.45);
  margin: 0;
  max-width: 500px;
  line-height: 1.65;
}

/* â”€â”€â”€ CTA Buttons â”€â”€â”€ */
.xhero__buttons {
  display: flex;
  gap: 0.85rem;
  margin-top: 0.75rem;
  flex-wrap: wrap;
  justify-content: center;
  position: relative;
  z-index: 3;
}

.xhero__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.72rem 1.65rem;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 12px;
  text-decoration: none;
  cursor: pointer;
  transition:
    background 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease,
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.xhero__btn svg { width: 18px; height: 18px; }
.xhero__btn i { font-size: 15px; }

.xhero__btn--primary {
  color: #ffffff;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.9), rgba(192, 38, 211, 0.9));
  border: 1px solid rgba(139, 92, 246, 0.4);
  box-shadow: 0 4px 24px rgba(139, 92, 246, 0.3);
  position: relative;
  overflow: visible;
}

.xhero__btn--primary:hover {
  background: linear-gradient(135deg, rgba(139, 92, 246, 1), rgba(192, 38, 211, 1));
  box-shadow:
    0 8px 36px rgba(139, 92, 246, 0.45),
    0 0 50px rgba(139, 92, 246, 0.2);
  transform: translateY(-3px);
  border-color: rgba(139, 92, 246, 0.6);
}

.xhero__btn--primary::before {
  content: "";
  position: absolute;
  inset: -18px;
  border-radius: 20px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.15) 0%, transparent 70%);
  z-index: -1;
  pointer-events: none;
  animation: xheroBtnGlow 3s ease-in-out infinite;
}

@keyframes xheroBtnGlow {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.12); }
}

.xhero__btn--ghost {
  color: rgba(255, 255, 255, 0.75);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.xhero__btn--ghost:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.22);
  transform: translateY(-3px);
  box-shadow: 0 4px 20px rgba(255, 255, 255, 0.06);
}

/* --- Video Showcase --- */
.xhero__showcase {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 920px;
  margin-top: 3rem;
}

.xhero__showcase-card {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  transition: box-shadow 0.5s ease;
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(139, 92, 246, 0.15),
    0 0 80px rgba(139, 92, 246, 0.08);
  aspect-ratio: 16/9;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transform: translateZ(0);
  isolation: isolate;
}

.xhero__showcase-card:hover {
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.6),
    0 0 0 1px rgba(139, 92, 246, 0.3),
    0 0 120px rgba(139, 92, 246, 0.15);
}

/* Direct YouTube iframe embed */
.xhero__showcase-iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* Glow border effect */
.xhero__showcase-glow {
  position: absolute;
  inset: -1px;
  border-radius: 19px;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.3) 0%, rgba(192, 38, 211, 0.15) 50%, rgba(139, 92, 246, 0.3) 100%);
  z-index: -1;
  opacity: 0;
  transition: opacity 0.5s ease;
  filter: blur(1px);
  pointer-events: none;
}

.xhero__showcase-card:hover .xhero__showcase-glow {
  opacity: 1;
}

/* --- Scroll Indicator --- */
.xhero__scroll {
  position: relative;
  margin-top: 2.5rem;
  margin-bottom: 0.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  z-index: 2;
  animation: xheroScrollFloat 2.5s ease-in-out infinite;
}

@keyframes xheroScrollFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

.xhero__scroll-mouse {
  width: 22px;
  height: 34px;
  border: 2px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  position: relative;
  display: block;
}

.xhero__scroll-mouse::before {
  content: "";
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 7px;
  background: rgba(139, 92, 246, 0.6);
  border-radius: 999px;
  animation: xheroScrollDot 2s ease-in-out infinite;
}

@keyframes xheroScrollDot {
  0%, 100% { opacity: 1; top: 6px; }
  50% { opacity: 0.3; top: 14px; }
}

.xhero__scroll-arrow {
  display: block;
  width: 10px;
  height: 10px;
  border-right: 2px solid rgba(255, 255, 255, 0.1);
  border-bottom: 2px solid rgba(255, 255, 255, 0.1);
  transform: rotate(45deg);
}

/* â”€â”€â”€ Responsive â”€â”€â”€ */
@media (max-width: 768px) {
  .xhero {
    padding: 3rem 1rem 4rem;
    min-height: auto;
    margin-top: -56px;
    padding-top: calc(56px + 3rem);
  }

  .xhero__title {
    font-size: clamp(1.8rem, 7vw, 2.6rem);
  }

  .xhero__showcase {
    margin-top: 2.5rem;
  }

  .xhero__rays {
    width: 80%;
    display: none;
  }

  .xhero__buttons {
    flex-direction: column;
    align-items: center;
  }

  .xhero__btn {
    width: 100%;
    max-width: 260px;
    justify-content: center;
  }

  .xhero__play-btn {
    width: 54px;
    height: 54px;
  }

  .xhero__play-btn svg {
    width: 22px;
    height: 22px;
  }
}

@media (max-width: 1023px) {
  .xhero {
    margin-top: -56px;
    padding-top: calc(56px + 3rem);
  }
}

@media (max-width: 480px) {
  .xhero {
    padding: 2.5rem 1rem 3.5rem;
    padding-top: calc(56px + 2.5rem);
  }

  .xhero__brand-line {
    width: 30px;
  }

  .xhero__subtitle {
    font-size: 0.92rem;
  }

  .xhero__showcase-card {
    border-radius: 12px;
  }

  .xhero__play-btn {
    width: 48px;
    height: 48px;
  }

  .xhero__play-btn svg {
    width: 20px;
    height: 20px;
  }
}

/* Hide old CTA */
.cta-text { display: none; }













/* ============================================
   STATUS PAGE — CARD LAYOUT (.sp)
   Standard display width: 100% viewport, padding 2.5rem 2rem
   ============================================ */

.sp {
  position: relative;
  padding: 2.5rem 2rem 4rem;
  max-width: 100%;
  margin: 0 auto;
}

/* ---- Green Glow (same approach as global bg-glows but green) ---- */
.sp__glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: visible;
}

.sp__glow-orb {
  position: absolute;
  border-radius: 9999px;
  filter: blur(100px);
  will-change: transform, opacity;
  transition: background 0.8s ease, width 0.8s ease, height 0.8s ease;
}

.sp__glow-orb--1 {
  width: 550px;
  height: 550px;
  top: 0%;
  left: 8%;
  background: rgba(34, 197, 94, 0.30);
  animation: spGlowBreath1 8s ease-in-out infinite;
}

.sp__glow-orb--2 {
  width: 450px;
  height: 450px;
  top: 0%;
  right: 8%;
  background: rgba(74, 222, 128, 0.25);
  animation: spGlowBreath2 11s ease-in-out infinite;
}

.sp__glow-orb--3 {
  width: 650px;
  height: 350px;
  top: 2%;
  left: 25%;
  background: rgba(22, 163, 74, 0.20);
  animation: spGlowBreath3 9s ease-in-out infinite;
}

.sp__glow-orb--4 {
  width: 380px;
  height: 380px;
  top: 20%;
  left: 2%;
  background: rgba(74, 222, 128, 0.16);
  animation: spGlowBreath4 13s ease-in-out infinite;
}

.sp__glow-orb--5 {
  width: 320px;
  height: 480px;
  top: 18%;
  right: 5%;
  background: rgba(34, 197, 94, 0.18);
  animation: spGlowBreath5 7s ease-in-out infinite;
}

@keyframes spGlowBreath1 {
  0%, 100% { transform: scale(1); opacity: 1; }
  30%      { transform: scale(0.7); opacity: 0.6; }
  70%      { transform: scale(1.15); opacity: 0.9; }
}

@keyframes spGlowBreath2 {
  0%, 100% { transform: scale(1); opacity: 0.85; }
  40%      { transform: scale(1.2); opacity: 1; }
  80%      { transform: scale(0.75); opacity: 0.55; }
}

@keyframes spGlowBreath3 {
  0%, 100% { transform: scale(1); opacity: 0.8; }
  50%      { transform: scale(0.85); opacity: 0.5; }
}

@keyframes spGlowBreath4 {
  0%, 100% { transform: scale(1); opacity: 0.85; }
  35%      { transform: scale(0.6); opacity: 0.5; }
  65%      { transform: scale(1.1); opacity: 1; }
}

@keyframes spGlowBreath5 {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%      { transform: scale(1.25); opacity: 0.65; }
}

/* ---- Fade-in animation ---- */
.sp__fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.sp__fade-in--visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---- Header ---- */
.sp__header {
  position: relative;
  z-index: 1;
  text-align: center;
  margin-bottom: 2.5rem;
}

.sp__header-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.sp__eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 0.5rem;
}

.sp__eyebrow-line {
  width: 36px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(34, 197, 94, 0.5), transparent);
}

.sp__eyebrow-text {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #22c55e;
  display: flex;
  align-items: center;
  gap: 6px;
}

.sp__eyebrow-text i { font-size: 0.6rem; }

.sp__title {
  font-size: 2.5rem;
  font-weight: 800;
  color: #ffffff;
  margin: 0;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.sp__title-accent {
  background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.sp__subtitle {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.55);
  margin: 0;
  font-weight: 400;
}

/* ---- Legend bar ---- */
.sp__legend {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 28px;
  margin-bottom: 16px;
  background: linear-gradient(135deg, rgba(20, 18, 38, 0.8) 0%, rgba(16, 14, 30, 0.75) 100%);
  border: 1px solid rgba(34, 197, 94, 0.12);
  border-radius: 14px;
  box-shadow:
    0 0 30px rgba(34, 197, 94, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  flex-wrap: wrap;
  gap: 12px;
}

.sp__legend-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  margin: 0;
}

.sp__legend-badges {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.sp__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 5px 14px;
  border-radius: 8px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  min-width: 130px;
  color: var(--badge-color);
  background: color-mix(in srgb, var(--badge-color) 15%, transparent);
  border: 1px solid color-mix(in srgb, var(--badge-color) 25%, transparent);
  box-shadow: 0 0 12px color-mix(in srgb, var(--badge-color) 15%, transparent);
}

.sp__badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 6px currentColor;
}

/* ---- Card list ---- */
.sp__list {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* ---- Group label ---- */
.sp__group-label {
  padding: 18px 4px 6px;
  font-size: 0.78rem;
  font-weight: 700;
  color: #4ade80;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  text-shadow: 0 0 20px rgba(34, 197, 94, 0.4);
}

/* ---- Product Card ---- */
.sp__card {
  display: flex;
  align-items: center;
  min-height: 72px;
  text-decoration: none;
  color: inherit;
  background: linear-gradient(135deg, rgba(22, 20, 40, 0.85) 0%, rgba(16, 14, 30, 0.8) 100%);
  border: 1px solid rgba(34, 197, 94, 0.1);
  border-radius: 14px;
  overflow: hidden;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow:
    0 2px 12px rgba(0, 0, 0, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.sp__card:hover {
  background: linear-gradient(135deg, rgba(30, 26, 55, 0.95) 0%, rgba(22, 18, 42, 0.9) 100%);
  border-color: rgba(34, 197, 94, 0.3);
  box-shadow:
    0 8px 32px rgba(34, 197, 94, 0.15),
    0 2px 12px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

/* ---- Card: Left (Product Name) ---- */
.sp__card-left {
  display: flex;
  align-items: center;
  padding: 16px 28px;
  min-width: 220px;
  width: 220px;
}

.sp__card-name {
  font-size: 0.88rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #ffffff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: color 0.3s ease;
}

.sp__card:hover .sp__card-name {
  color: #e9d5ff;
}

/* ---- Card: Right (Supported + Status inline) ---- */
.sp__card-right {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
  padding: 12px 24px;
  min-width: 0;
}

.sp__card-supported {
  display: flex;
  flex-direction: column;
  gap: 1px;
  text-align: right;
}

.sp__card-sup-label {
  font-size: 0.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.3);
}

.sp__card-sup-value {
  font-size: 0.95rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.88);
  white-space: nowrap;
}

/* ---- Card: Divider ---- */
.sp__card-divider {
  width: 1px;
  height: 42px;
  background: linear-gradient(180deg, transparent, rgba(34, 197, 94, 0.18), transparent);
  flex-shrink: 0;
  transition: height 0.3s ease;
}

.sp__card:hover .sp__card-divider {
  background: linear-gradient(180deg, transparent, rgba(34, 197, 94, 0.3), transparent);
}

/* ---- Card: Action ---- */
.sp__card-action {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  min-width: 180px;
  width: 180px;
}

/* ---- Status tag ---- */
.sp__status-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 6px 16px;
  border-radius: 8px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  min-width: 140px;
  flex-shrink: 0;
  color: var(--status-color);
  background: color-mix(in srgb, var(--status-color) 14%, transparent);
  border: 1px solid color-mix(in srgb, var(--status-color) 24%, transparent);
  box-shadow: 0 0 16px color-mix(in srgb, var(--status-color) 14%, transparent);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.sp__card:hover .sp__status-tag {
  box-shadow: 0 0 24px color-mix(in srgb, var(--status-color) 22%, transparent);
}

.sp__status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
  position: relative;
  box-shadow: 0 0 8px currentColor;
}

.sp__status-dot::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: inherit;
  animation: spPulse 2s ease-in-out infinite;
}

@keyframes spPulse {
  0%, 100% { transform: scale(1); opacity: 0.6; }
  50% { transform: scale(2.2); opacity: 0; }
}

/* ---- Purchase button ---- */
.sp__purchase-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 22px;
  border-radius: 10px;
  font-size: 0.74rem;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.25) 0%, rgba(22, 163, 74, 0.2) 100%);
  border: 1px solid rgba(34, 197, 94, 0.35);
  white-space: nowrap;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow:
    0 0 14px rgba(34, 197, 94, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.sp__card:hover .sp__purchase-btn {
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.45) 0%, rgba(22, 163, 74, 0.35) 100%);
  border-color: rgba(34, 197, 94, 0.6);
  box-shadow:
    0 0 28px rgba(34, 197, 94, 0.25),
    0 4px 20px rgba(34, 197, 94, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

/* ---- Responsive ---- */
@media (max-width: 900px) {
  .sp__card-left {
    min-width: 160px;
    width: 160px;
    padding: 14px 20px;
  }

  .sp__card-right {
    gap: 14px;
    padding: 10px 16px;
  }

  .sp__card-sup-value {
    font-size: 0.82rem;
  }

  .sp__card-action {
    min-width: 150px;
    width: 150px;
    padding: 10px 16px;
  }
}

@media (max-width: 768px) {
  .sp__card {
    flex-wrap: wrap;
    min-height: auto;
  }

  .sp__card-left {
    width: auto;
    min-width: auto;
    flex: 1;
  }

  .sp__card-right {
    flex: none;
    width: 100%;
    order: 5;
    justify-content: space-between;
    padding: 10px 20px 14px;
  }

  .sp__card-supported {
    text-align: left;
  }

  .sp__card-action {
    width: auto;
    min-width: auto;
    padding: 12px 16px;
  }

  .sp__purchase-btn {
    padding: 10px 18px;
  }

  .sp__legend {
    flex-direction: column;
    align-items: flex-start;
    padding: 14px 20px;
  }
}

@media (max-width: 500px) {
  .sp {
    padding: 2rem 1rem 3rem;
  }

  .sp__card {
    flex-direction: column;
    align-items: stretch;
  }

  .sp__card-left {
    width: 100%;
    padding: 14px 18px 8px;
  }

  .sp__card-right {
    flex-direction: column;
    gap: 10px;
    padding: 8px 18px 12px;
    align-items: flex-start;
  }

  .sp__card-supported {
    text-align: left;
  }

  .sp__card-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(34, 197, 94, 0.12), transparent);
  }

  .sp__card-action {
    width: 100%;
    padding: 10px 18px 14px;
  }

  .sp__purchase-btn {
    width: 100%;
    justify-content: center;
  }

  .sp__legend-badges {
    gap: 6px;
  }

  .sp__badge {
    font-size: 0.62rem;
    padding: 3px 8px;
    min-width: 105px;
  }
}


/* ============================================
   SHOP PAGE
   ============================================ */

.shop {
  position: relative;
  padding: 2.5rem 2rem 4rem;
  max-width: 100%;
  margin: 0 auto;
}

/* ---- Purple Glow ---- */
.shop__glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: visible;
}

.shop__glow-orb {
  position: absolute;
  border-radius: 9999px;
  filter: blur(100px);
  will-change: transform, opacity;
}

.shop__glow-orb--1 {
  width: 550px;
  height: 550px;
  top: -10%;
  left: 5%;
  background: rgba(59, 130, 246, 0.22);
  animation: shopGlow1 9s ease-in-out infinite;
}

.shop__glow-orb--2 {
  width: 450px;
  height: 450px;
  top: -8%;
  right: 8%;
  background: rgba(99, 102, 241, 0.18);
  animation: shopGlow2 12s ease-in-out infinite;
}

.shop__glow-orb--3 {
  width: 650px;
  height: 400px;
  top: -5%;
  left: 30%;
  background: rgba(56, 189, 248, 0.16);
  animation: shopGlow3 10s ease-in-out infinite;
}

.shop__glow-orb--4 {
  width: 400px;
  height: 400px;
  top: 25%;
  left: 0%;
  background: rgba(59, 130, 246, 0.14);
  animation: shopGlow4 14s ease-in-out infinite;
}

.shop__glow-orb--5 {
  width: 350px;
  height: 450px;
  top: 20%;
  right: 3%;
  background: rgba(99, 102, 241, 0.15);
  animation: shopGlow5 8s ease-in-out infinite;
}

@keyframes shopGlow1 {
  0%, 100% { transform: scale(1); opacity: 1; }
  30%      { transform: scale(0.75); opacity: 0.6; }
  70%      { transform: scale(1.1); opacity: 0.85; }
}

@keyframes shopGlow2 {
  0%, 100% { transform: scale(1); opacity: 0.85; }
  40%      { transform: scale(1.15); opacity: 1; }
  80%      { transform: scale(0.8); opacity: 0.55; }
}

@keyframes shopGlow3 {
  0%, 100% { transform: scale(1); opacity: 0.8; }
  50%      { transform: scale(0.85); opacity: 0.5; }
}

@keyframes shopGlow4 {
  0%, 100% { transform: scale(1); opacity: 0.85; }
  35%      { transform: scale(0.65); opacity: 0.5; }
  65%      { transform: scale(1.1); opacity: 1; }
}

@keyframes shopGlow5 {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%      { transform: scale(1.2); opacity: 0.6; }
}

/* ---- Fade-in ---- */
.shop__fade {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1), transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.shop__fade--visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---- Header ---- */
.shop__header {
  position: relative;
  z-index: 1;
  text-align: center;
  margin-bottom: 2.5rem;
}

.shop__header-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.shop__eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 0.5rem;
}

.shop__eyebrow-line {
  width: 36px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.5), transparent);
}

.shop__eyebrow-text {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #3b82f6;
  display: flex;
  align-items: center;
  gap: 6px;
}

.shop__eyebrow-text i { font-size: 0.6rem; }

.shop__title {
  font-size: 2.5rem;
  font-weight: 800;
  color: #ffffff;
  margin: 0;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.shop__title-accent {
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.shop__subtitle {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.55);
  margin: 0;
  font-weight: 400;
}

/* ---- Box Container ---- */
.shop__box {
  position: relative;
  z-index: 1;
  background: linear-gradient(135deg, rgba(16, 14, 30, 0.6) 0%, rgba(10, 10, 18, 0.5) 100%);
  border: 1px solid rgba(59, 130, 246, 0.1);
  border-radius: 18px;
  padding: 1.75rem;
  margin-bottom: 2rem;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.shop__box-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(59, 130, 246, 0.1);
}

.shop__box-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(59, 130, 246, 0.12);
  border: 1px solid rgba(59, 130, 246, 0.2);
  color: #3b82f6;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.shop__box-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
  letter-spacing: 0.01em;
}

.shop__timer-box {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  white-space: nowrap;
  padding: 0.42rem 0.58rem;
  border-radius: 10px;
  border: 1px solid rgba(59, 130, 246, 0.2);
  background: rgba(59, 130, 246, 0.08);
}

.shop__timer-box i {
  font-size: 0.72rem;
  color: rgba(59, 130, 246, 0.86);
}

.shop__timer {
  font-size: 0.76rem;
  color: rgba(59, 130, 246, 0.95);
  font-weight: 800;
  letter-spacing: 0.05em;
  font-variant-numeric: tabular-nums;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  text-shadow: 0 0 10px rgba(37, 99, 235, 0.24);
}

/* ---- Empty State ---- */
.shop__empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 3rem 1rem;
  text-align: center;
}

.shop__empty-icon {
  font-size: 2rem;
  color: rgba(59, 130, 246, 0.3);
}

.shop__empty-text {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.4);
  margin: 0;
  font-weight: 400;
}

/* ---- Grid ---- */
.shop__grid {
  display: grid;
  gap: 1.25rem;
  position: relative;
}

.shop__grid--4 {
  grid-template-columns: repeat(4, 1fr);
}

/* ---- Product Card ---- */
.shop__card-wrap {
  position: relative;
}

.shop__card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: rgba(14, 15, 22, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  color: #ffffff;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  isolation: isolate;
  backface-visibility: hidden;
}

.shop__card:hover {
  border-color: rgba(59, 130, 246, 0.25);
  box-shadow:
    0 12px 40px rgba(0, 0, 0, 0.35),
    0 0 24px rgba(37, 99, 235, 0.08);
}

/* ---- Card Image ---- */
.shop__card-image {
  position: relative;
  overflow: hidden;
}

.shop__card-image img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.shop__card:hover .shop__card-image img {
  transform: scale(1.04);
}

.shop__card-placeholder {
  aspect-ratio: 16 / 9;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(18, 18, 28, 0.65);
  color: rgba(37, 99, 235, 0.4);
}

/* Group card: image fills as rounded */
.shop__card--group {
  border-radius: 16px;
}

.shop__card-image--group {
  position: relative;
}

.shop__card-image--group img {
  border-radius: 16px;
}

.shop__card-placeholder--group {
  border-radius: 16px;
}

.shop__card-group-label {
  position: absolute;
  bottom: 50%;
  left: 50%;
  transform: translate(-50%, 50%);
  padding: 8px 18px;
  background: rgba(10, 11, 16, 0.85);
  border: 1px solid rgba(59, 130, 246, 0.25);
  color: #ffffff;
  font-size: 0.8rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 9999px;
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: 2;
}

.shop__card--group:hover .shop__card-group-label {
  opacity: 1;
}

.shop__card-group-label i {
  font-size: 0.7rem;
  color: #3b82f6;
}

/* Shimmer */
.shop__card-shimmer {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.03), transparent);
  transition: left 0.6s ease;
  pointer-events: none;
}

.shop__card:hover .shop__card-shimmer {
  left: 100%;
}

/* ---- Card Info (product cards only) ---- */
.shop__card-info {
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(8, 9, 12, 0.5);
  margin-top: auto;
  transition: border-color 0.3s ease, background 0.3s ease;
}

.shop__card:hover .shop__card-info {
  border-top-color: rgba(37, 99, 235, 0.12);
  background: rgba(8, 9, 12, 0.65);
}

.shop__card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.shop__card-name {
  font-size: 0.85rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  flex: 1;
  min-width: 0;
  transition: text-shadow 0.3s ease;
}

.shop__card:hover .shop__card-name {
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.08);
}

/* Status */
.shop__card-status {
  display: flex;
  align-items: center;
  gap: 5px;
  flex-shrink: 0;
}

.shop__card-status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
  animation: pcardPulse 2s ease-in-out infinite;
}

.shop__card-status-label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

/* Bottom row */
.shop__card-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  min-height: 24px;
}

.shop__card-badge-area {
  flex: 1;
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 4px;
  overflow: hidden;
}

.shop__card-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 2px 8px;
  border-radius: 6px;
  border: 1px solid;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
  transition: box-shadow 0.25s ease;
}

.shop__card:hover .shop__card-badge {
  box-shadow: 0 0 8px currentColor;
}

.shop__card-badge-icon {
  font-size: 0.55rem;
  flex-shrink: 0;
}

.shop__card-price-area {
  display: flex;
  align-items: baseline;
  gap: 5px;
  flex-shrink: 0;
  white-space: nowrap;
}

.shop__card-price-label {
  font-size: 0.65rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.3);
}

.shop__card-price {
  font-size: 0.95rem;
  font-weight: 700;
  color: #ffffff;
  text-shadow: 0 0 12px rgba(59, 130, 246, 0.15);
  transition: text-shadow 0.3s ease;
}

.shop__card:hover .shop__card-price {
  text-shadow: 0 0 16px rgba(59, 130, 246, 0.3);
}

/* ---- Payment Methods Box ---- */
.shop__box--payments {
  padding: 1.25rem 2rem;
}

.shop__payments {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.shop__payment-icon {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.3s ease;
}

.shop__payment-icon svg {
  width: 40px;
  height: 40px;
}

.shop__payment-icon--text svg {
  width: 28px;
  height: 28px;
}

.shop__payment-icon--text span {
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: rgba(255, 255, 255, 0.7);
}

.shop__payment-icon:hover {
  color: #ffffff;
}

.shop__payment-icon:hover span {
  color: #ffffff;
}

.shop__payment-crypto {
  display: flex;
  align-items: center;
  gap: 8px;
}

.shop__payment-crypto-icon {
  width: 22px;
  height: 22px;
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.3s ease;
}

.shop__payment-crypto-icon:hover {
  color: rgba(255, 255, 255, 0.85);
}

/* ---- Group Modal ---- */
.shop__modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.shop__modal-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.shop__modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.shop__modal-content {
  position: relative;
  z-index: 10;
  width: 92%;
  max-width: 1500px;
  max-height: 88vh;
  overflow-y: auto;
}

.shop__modal-container {
  background: linear-gradient(135deg, rgba(16, 14, 30, 0.95) 0%, rgba(10, 10, 18, 0.95) 100%);
  border: 1px solid rgba(59, 130, 246, 0.15);
  border-radius: 20px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow:
    0 24px 80px rgba(0, 0, 0, 0.6),
    0 0 40px rgba(37, 99, 235, 0.06);
  overflow: hidden;
}

.shop__modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 2rem;
  border-bottom: 1px solid rgba(59, 130, 246, 0.1);
}

.shop__modal-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.shop__modal-accent {
  width: 4px;
  height: 22px;
  border-radius: 2px;
  background: linear-gradient(180deg, #3b82f6, #2563eb);
  flex-shrink: 0;
}

.shop__modal-close {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.shop__modal-close:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

.shop__modal-body {
  padding: 2rem;
}

.shop__modal-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.25rem;
}

/* ---- Responsive ---- */
@media (max-width: 1200px) {
  .shop__grid--4 {
    grid-template-columns: repeat(3, 1fr);
  }

  .shop__modal-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 900px) {
  .shop__grid--4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .shop__modal-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .shop {
    padding: 2rem 1rem 3rem;
  }

  .shop__box {
    padding: 1.25rem;
  }
}

@media (max-width: 600px) {
  .shop__grid--4 {
    grid-template-columns: 1fr;
  }

  .shop__modal-grid {
    grid-template-columns: 1fr;
  }

  .shop__title {
    font-size: 1.85rem;
  }

  .shop__modal-content {
    width: 95%;
  }

  .shop__payments {
    justify-content: center;
    gap: 1.25rem;
  }

  .shop__payment-icon svg {
    width: 30px;
    height: 30px;
  }

  .shop__payment-icon--text svg {
    width: 22px;
    height: 22px;
  }

  .shop__payment-icon--text span {
    font-size: 1.1rem;
  }
}


/* Login modal - glass design */
.login-modal {
  background: rgba(10, 11, 16, 0.92) !important;
  border: 1px solid rgba(255,255,255,0.07) !important;
  border-radius: 20px;
  box-shadow:
    0 25px 70px rgba(0,0,0,0.6),
    0 0 0 1px rgba(255,255,255,0.04),
    inset 0 1px 0 rgba(255,255,255,0.04);
  backdrop-filter: blur(30px) saturate(1.4);
  -webkit-backdrop-filter: blur(30px) saturate(1.4);
}

.login-modal h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #ffffff !important;
}

.login-modal label {
  font-size: 0.95rem;
  font-weight: 600;
  color: rgba(255,255,255,0.9) !important;
}

.login-modal small {
  color: rgba(255,255,255,0.45) !important;
  font-size: 0.82rem;
}

/* Close button */
.login-modal .size-7 {
  color: rgba(255,255,255,0.4) !important;
  transition: color 0.2s ease;
}

.login-modal .size-7:hover {
  color: rgba(255,255,255,0.8) !important;
}

/* Inputs */
.login-modal input {
  background: rgba(255,255,255,0.03) !important;
  border: 1.5px solid rgba(120, 100, 255, 0.5) !important;
  border-radius: 12px;
  color: #ffffff !important;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.login-modal input::placeholder {
  color: rgba(255,255,255,0.3) !important;
}

.login-modal input:focus {
  border-color: rgba(120, 100, 255, 0.8) !important;
  box-shadow: 0 0 0 3px rgba(120, 100, 255, 0.15), 0 0 20px rgba(120, 100, 255, 0.1) !important;
  outline: none !important;
}

/* OTP digit inputs */
.login-modal .flex.gap-2 input {
  border-radius: 10px;
}

/* Glass button */
.login-modal button[type="submit"] {
  border-radius: 12px;
  background: rgba(255,255,255,0.08) !important;
  border: 1px solid rgba(255,255,255,0.12) !important;
  color: #ffffff !important;
  font-weight: 600;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: background 0.25s ease, border-color 0.25s ease;
}

.login-modal button[type="submit"]:hover {
  background: rgba(255,255,255,0.14) !important;
  border-color: rgba(255,255,255,0.2) !important;
}

/* Error text */
.login-modal .text-red-500 {
  color: #f87171 !important;
  font-size: 0.82rem;
}




/* ============================================
   WHY FEATURES SECTION (.wf)
   ============================================ */

/* --- Section Layout --- */
.wf {
  position: relative;
  max-width: 100%;
  margin: 0 auto;
  padding: 6rem 2rem 4rem;
}

/* --- Section Header --- */
.wf__header {
  text-align: center;
  margin-bottom: 3rem;
}

.wf__eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 0.75rem;
}

.wf__eyebrow-line {
  width: 36px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(168, 85, 247, 0.5), transparent);
}

.wf__eyebrow-text {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #a855f7;
  display: flex;
  align-items: center;
  gap: 6px;
}

.wf__eyebrow-text i { font-size: 0.6rem; }

.wf__title {
  font-size: 1.75rem;
  font-weight: 800;
  color: #fff;
  margin: 0 0 0.5rem;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.wf__subtitle {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.4);
  max-width: 520px;
  margin: 0 auto;
  font-weight: 400;
  line-height: 1.6;
}

/* --- Rows --- */
.wf__row {
  display: grid;
  gap: 18px;
  margin-bottom: 18px;
}

.wf__row--top {
  grid-template-columns: repeat(3, 1fr);
}

.wf__row--mid {
  grid-template-columns: repeat(3, 1fr);
}

/* --- Cards --- */
.wf__card {
  background: rgba(12, 12, 18, 0.75);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 20px;
  overflow: hidden;
  transition: border-color 0.35s ease, transform 0.35s ease;
}

.wf__card:hover {
  border-color: rgba(167, 139, 250, 0.2);
  transform: translateY(-3px);
}

.wf__card-visual {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.wf__card--lg .wf__card-visual {
  height: 160px;
}

.wf__card--md .wf__card-visual {
  height: 135px;
}

.wf__card-body {
  padding: 16px 22px 20px;
}

.wf__card-title {
  font-size: 14px;
  font-weight: 400;
  color: rgba(255,255,255,0.55);
  margin: 0;
  line-height: 1.55;
}

.wf__card-title strong {
  color: #fff;
  font-weight: 700;
}

/* =====================
   1. INSTANT DELIVERY
   ===================== */
.wf-delivery {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.wf-delivery__ring {
  width: 130px;
  height: 130px;
  transform: rotate(-90deg);
}

.wf-delivery__ring-bg {
  fill: none;
  stroke: rgba(255,255,255,0.06);
  stroke-width: 6;
}

.wf-delivery__ring-fill {
  fill: none;
  stroke: #a78bfa;
  stroke-width: 6;
  stroke-linecap: round;
  stroke-dasharray: 327px;
  stroke-dashoffset: 327px;
  transition: stroke-dashoffset 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.wf-delivery__label {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  pointer-events: none;
}

.wf-delivery__step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  color: rgba(255,255,255,0.8);
  font-size: 13px;
  font-weight: 600;
  animation: wf-stepPop 0.35s ease;
}

.wf-delivery__step i {
  font-size: 22px;
  color: #a78bfa;
}

.wf-delivery__step--done i {
  color: #34d399;
}

.wf-delivery__step--done span {
  color: #34d399;
}

@keyframes wf-stepPop {
  0% { opacity: 0; transform: scale(0.7); }
  100% { opacity: 1; transform: scale(1); }
}



/* =====================
   2. NO HIDDEN FEES
   ===================== */
.wf-fees {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.wf-fees__text {
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 1;
}

.wf-fees__big {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 900;
  color: rgba(255,255,255,0.08);
  text-transform: uppercase;
  line-height: 1.05;
  letter-spacing: 0.03em;
}



/* =====================
   3. DASHBOARD
   ===================== */
.wf-dash {
  width: 92%;
  height: 88%;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 14px;
}

.wf-dash__frame {
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  background: #0a0a10;
}

.wf-dash__titlebar {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 8px 10px;
  background: rgba(255,255,255,0.03);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.wf-dash__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.wf-dash__dot--r { background: #ff5f57; }
.wf-dash__dot--y { background: #ffbd2e; }
.wf-dash__dot--g { background: #28ca41; }

.wf-dash__url {
  margin-left: 8px;
  font-size: 10px;
  color: rgba(255,255,255,0.3);
}

.wf-dash__body {
  display: flex;
  min-height: 140px;
}

.wf-dash__sidebar {
  width: 36px;
  flex-shrink: 0;
  background: rgba(255,255,255,0.02);
  border-right: 1px solid rgba(255,255,255,0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 10px 0;
}

.wf-dash__sidebar-item {
  width: 24px;
  height: 24px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  color: rgba(255,255,255,0.25);
  transition: background 0.2s;
}

.wf-dash__sidebar-item--active {
  background: rgba(167, 139, 250, 0.2);
  color: #a78bfa;
}

.wf-dash__main {
  flex: 1;
  padding: 10px 12px;
}

.wf-dash__stats {
  display: flex;
  gap: 8px;
  margin-bottom: 10px;
}

.wf-dash__stat {
  flex: 1;
  background: rgba(255,255,255,0.03);
  border-radius: 8px;
  padding: 8px 6px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.wf-dash__stat-val {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
}

.wf-dash__stat-lbl {
  font-size: 9px;
  color: rgba(255,255,255,0.35);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.wf-dash__orders-label {
  font-size: 10px;
  font-weight: 600;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  margin-bottom: 6px;
  letter-spacing: 0.04em;
}

.wf-dash__order-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px 8px;
  border-radius: 6px;
  background: rgba(255,255,255,0.02);
  margin-bottom: 4px;
}

.wf-dash__order-name {
  font-size: 10px;
  color: rgba(255,255,255,0.55);
}

.wf-dash__order-tag {
  font-size: 9px;
  font-weight: 600;
  color: #34d399;
  background: rgba(52, 211, 153, 0.1);
  padding: 2px 6px;
  border-radius: 4px;
}

/* =====================
   4. EASY TO USE (CHEAT MENU)
   ===================== */
.wf-menu {
  width: 88%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 0;
}

.wf-menu__panel {
  width: 100%;
  background: rgba(8, 8, 14, 0.95);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}

/* Title bar */
.wf-menu__titlebar {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 7px 10px;
  background: rgba(255,255,255,0.025);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.wf-menu__titlebar-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
}

.wf-menu__titlebar-dot--r { background: #ff5f57; }
.wf-menu__titlebar-dot--y { background: #ffbd2e; }
.wf-menu__titlebar-dot--g { background: #28ca41; }

.wf-menu__titlebar-label {
  margin-left: 6px;
  font-size: 10px;
  font-weight: 600;
  color: rgba(255,255,255,0.25);
  letter-spacing: 0.03em;
}

/* Tab nav */
.wf-menu__tabs {
  display: flex;
  gap: 2px;
  padding: 6px 8px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.wf-menu__tab {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 5px 0;
  border: none;
  border-radius: 6px;
  background: transparent;
  font-size: 10px;
  font-weight: 500;
  color: rgba(255,255,255,0.3);
  cursor: default;
  transition: background 0.2s, color 0.2s;
}

.wf-menu__tab i { font-size: 10px; }

.wf-menu__tab--active {
  background: rgba(167, 139, 250, 0.12);
  color: #a78bfa;
}

/* Options */
.wf-menu__options {
  padding: 6px 10px 8px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.wf-menu__opt {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 3px 0;
}

.wf-menu__opt-label {
  font-size: 11px;
  font-weight: 500;
  color: rgba(255,255,255,0.55);
}

/* Toggle switch */
.wf-menu__toggle {
  position: relative;
  width: 30px;
  height: 16px;
  background: rgba(255,255,255,0.08);
  border: none;
  border-radius: 9px;
  cursor: pointer;
  transition: background 0.25s ease;
  padding: 0;
  flex-shrink: 0;
}

.wf-menu__toggle--on {
  background: #a78bfa;
}

.wf-menu__toggle-knob {
  position: absolute;
  top: 2px;
  left: 2px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #fff;
  transition: transform 0.25s ease;
  pointer-events: none;
}

.wf-menu__toggle--on .wf-menu__toggle-knob {
  transform: translateX(14px);
}

/* Slider */
.wf-menu__slider-wrap {
  display: flex;
  align-items: center;
  gap: 6px;
}

.wf-menu__slider {
  -webkit-appearance: none;
  appearance: none;
  width: 64px;
  height: 3px;
  border-radius: 3px;
  background: rgba(255,255,255,0.08);
  outline: none;
  cursor: pointer;
}

.wf-menu__slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #a78bfa;
  cursor: pointer;
  box-shadow: 0 0 6px rgba(167, 139, 250, 0.4);
}

.wf-menu__slider::-moz-range-thumb {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #a78bfa;
  border: none;
  cursor: pointer;
}

.wf-menu__slider-val {
  font-size: 10px;
  font-weight: 600;
  color: #a78bfa;
  min-width: 22px;
  text-align: right;
  font-variant-numeric: tabular-nums;
}

/* =====================
   5. SAFE & QUALITY
   ===================== */
.wf-safe {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.wf-safe__rings {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.wf-safe__ring {
  position: absolute;
  border-radius: 50%;
  border: 1.5px solid rgba(167, 139, 250, 0.12);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  animation-direction: alternate;
}

.wf-safe__ring--1 {
  width: 90px;
  height: 90px;
  animation: wf-ringPulse1 3s ease-in-out infinite alternate;
}

.wf-safe__ring--2 {
  width: 130px;
  height: 130px;
  animation: wf-ringPulse2 3.5s ease-in-out infinite alternate;
}

.wf-safe__ring--3 {
  width: 170px;
  height: 170px;
  animation: wf-ringPulse3 4s ease-in-out infinite alternate;
}

@keyframes wf-ringPulse1 {
  0% { width: 90px; height: 90px; opacity: 0.6; }
  100% { width: 105px; height: 105px; opacity: 0.2; }
}

@keyframes wf-ringPulse2 {
  0% { width: 130px; height: 130px; opacity: 0.4; }
  100% { width: 150px; height: 150px; opacity: 0.12; }
}

@keyframes wf-ringPulse3 {
  0% { width: 170px; height: 170px; opacity: 0.3; }
  100% { width: 195px; height: 195px; opacity: 0.06; }
}

.wf-safe__icon {
  position: relative;
  z-index: 1;
  font-size: 42px;
  color: #a78bfa;
  filter: drop-shadow(0 0 20px rgba(167, 139, 250, 0.35));
}

/* =====================
   6. SECURE PAYMENTS
   ===================== */
.wf-pay {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  overflow: hidden;
}

.wf-pay__track {
  width: 100%;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, #000 15%, #000 85%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, #000 15%, #000 85%, transparent);
}

.wf-pay__icons {
  display: flex;
  gap: 14px;
  width: max-content;
  animation: wf-payScroll 18s linear infinite;
}

.wf-pay__icons--reverse {
  animation: wf-payScrollReverse 20s linear infinite;
}

@keyframes wf-payScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes wf-payScrollReverse {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

.wf-pay__icon {
  width: 56px;
  height: 40px;
  border-radius: 8px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: rgba(255,255,255,0.4);
  flex-shrink: 0;
}

/* =====================
   7. 24/7 SUPPORT
   ===================== */
.wf__support {
  margin-top: 18px;
  margin-bottom: 2rem;
}

.wf__support-inner {
  position: relative;
  background: rgba(12, 12, 18, 0.75);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 20px;
  padding: 2rem 2rem;
  text-align: center;
  overflow: hidden;
}

.wf-support__glow {
  position: absolute;
  top: -40%;
  left: 50%;
  transform: translateX(-50%);
  width: 320px;
  height: 200px;
  background: radial-gradient(ellipse, rgba(167, 139, 250, 0.15), transparent 70%);
  pointer-events: none;
}

.wf-support__number {
  font-size: clamp(42px, 7vw, 64px);
  font-weight: 900;
  color: #fff;
  margin: 0;
  line-height: 1;
  text-shadow: 0 0 40px rgba(167, 139, 250, 0.4), 0 0 80px rgba(167, 139, 250, 0.15);
  animation: wf-glowPulse 3s ease-in-out infinite alternate;
}

.wf-support__label {
  font-size: clamp(14px, 2vw, 18px);
  font-weight: 600;
  color: rgba(255,255,255,0.45);
  margin: 2px 0 16px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

@keyframes wf-glowPulse {
  0% { text-shadow: 0 0 30px rgba(167, 139, 250, 0.3), 0 0 60px rgba(167, 139, 250, 0.1); }
  100% { text-shadow: 0 0 50px rgba(167, 139, 250, 0.55), 0 0 100px rgba(167, 139, 250, 0.2); }
}

.wf-support__buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.wf-support__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.wf-support__btn:hover {
  transform: translateY(-2px);
}

.wf-support__btn--primary {
  background: #a78bfa;
  color: #fff;
  box-shadow: 0 4px 20px rgba(167, 139, 250, 0.25);
}

.wf-support__btn--primary:hover {
  box-shadow: 0 6px 28px rgba(167, 139, 250, 0.4);
  background: #b89dff;
}

.wf-support__btn--ghost {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.7);
}

.wf-support__btn--ghost:hover {
  background: rgba(255,255,255,0.1);
  color: #fff;
}

/* --- Fade-in animations --- */
.wf-fade {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.wf-fade--visible {
  opacity: 1;
  transform: translateY(0);
}

/* =====================
   RESPONSIVE
   ===================== */
@media (max-width: 900px) {
  .wf__row--top,
  .wf__row--mid {
    grid-template-columns: 1fr 1fr;
  }

  .wf__row--top .wf__card:last-child {
    grid-column: 1 / -1;
  }

  .wf__row--mid .wf__card:last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 600px) {
  .wf {
    padding: 4rem 1rem 3rem;
  }

  .wf__row--top,
  .wf__row--mid {
    grid-template-columns: 1fr;
  }

  .wf__row--top .wf__card:last-child,
  .wf__row--mid .wf__card:last-child {
    grid-column: auto;
  }

  .wf__card--lg .wf__card-visual {
    height: 180px;
  }

  .wf__card--md .wf__card-visual {
    height: 150px;
  }

  .wf-delivery__badge {
    display: none;
  }

  .wf-support__buttons {
    flex-direction: column;
  }

  .wf-support__btn {
    width: 100%;
    justify-content: center;
  }
}


/* ============================================
   FEATURED PRODUCTS SECTION
   ============================================ */

.fp-section {
  position: relative;
  padding: 14rem 1.5rem 10rem;
  max-width: 1200px;
  margin: 0 auto;
  overflow: hidden;
}

/* Subtle ambient glow behind section */
.fp-section__glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 600px;
  height: 400px;
  transform: translate(-50%, -50%);
  background: radial-gradient(ellipse, rgba(139, 92, 246, 0.06) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* ---- Section Header ---- */
.fp-section__header {
  text-align: center;
  margin-bottom: 2.5rem;
  position: relative;
  z-index: 1;
}

.fp-section__eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 0.75rem;
}

.fp-section__eyebrow-line {
  width: 36px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(168, 85, 247, 0.5), transparent);
}

.fp-section__eyebrow-text {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #a855f7;
  display: flex;
  align-items: center;
  gap: 6px;
}

.fp-section__eyebrow-text i {
  font-size: 0.6rem;
}

.fp-section__title {
  font-size: 1.75rem;
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 0.5rem;
  letter-spacing: -0.01em;
}

.fp-section__subtitle {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.4);
  margin: 0;
  font-weight: 400;
}

/* ---- Featured Grid ---- */
.fp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  position: relative;
  z-index: 1;
}

/* ---- Featured Card ---- */
.fp-card-wrap {
  position: relative;
}

.fp-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: rgba(8, 9, 12, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  color: #ffffff;
  transition:
    transform 0.3s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.3s ease,
    box-shadow 0.3s ease;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  isolation: isolate;
  backface-visibility: hidden;
}

.fp-card:hover {
  transform: translateY(-4px);
  border-color: rgba(168, 85, 247, 0.2);
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.4),
    0 0 30px rgba(139, 92, 246, 0.08);
}

/* ---- Card Image ---- */
.fp-card__image {
  position: relative;
  overflow: hidden;
}

.fp-card__image img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.fp-card:hover .fp-card__image img {
  transform: scale(1.04);
}

.fp-card__placeholder {
  aspect-ratio: 16 / 9;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(11, 11, 17, 0.6);
  color: rgba(139, 92, 246, 0.35);
}

/* Hover shimmer */
.fp-card__shimmer {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.03),
    transparent
  );
  transition: left 0.6s ease;
  pointer-events: none;
}

.fp-card:hover .fp-card__shimmer {
  left: 100%;
}

/* ---- Card Info ---- */
.fp-card__info {
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(8, 9, 12, 0.5);
  margin-top: auto;
  transition: border-color 0.3s ease, background 0.3s ease;
}

.fp-card:hover .fp-card__info {
  border-top-color: rgba(139, 92, 246, 0.12);
  background: rgba(8, 9, 12, 0.65);
}

.fp-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.fp-card__name {
  font-size: 0.85rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  flex: 1;
  min-width: 0;
  transition: text-shadow 0.3s ease;
}

.fp-card:hover .fp-card__name {
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.08);
}

/* Status */
.fp-card__status {
  display: flex;
  align-items: center;
  gap: 5px;
  flex-shrink: 0;
}

.fp-card__status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
  animation: pcardPulse 2s ease-in-out infinite;
}

.fp-card__status-label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

/* Bottom row */
.fp-card__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  min-height: 24px;
}

.fp-card__badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 2px 8px;
  border-radius: 6px;
  border: 1px solid rgba(168, 85, 247, 0.3);
  background: rgba(168, 85, 247, 0.1);
  color: #a855f7;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  white-space: nowrap;
  transition: box-shadow 0.25s ease;
}

.fp-card:hover .fp-card__badge {
  box-shadow: 0 0 8px rgba(168, 85, 247, 0.4);
}

.fp-card__badge-icon {
  font-size: 0.55rem;
}

.fp-card__price-area {
  display: flex;
  align-items: baseline;
  gap: 5px;
  flex-shrink: 0;
  white-space: nowrap;
}

.fp-card__price-label {
  font-size: 0.65rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.3);
}

.fp-card__price {
  font-size: 0.95rem;
  font-weight: 700;
  color: #ffffff;
  text-shadow: 0 0 12px rgba(168, 85, 247, 0.15);
  transition: text-shadow 0.3s ease;
}

.fp-card:hover .fp-card__price {
  text-shadow: 0 0 16px rgba(168, 85, 247, 0.3);
}

/* ---- Browse All CTA ---- */
.fp-section__cta {
  text-align: center;
  margin-top: 2rem;
  position: relative;
  z-index: 1;
}

.fp-section__cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0.6rem 1.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.03);
  text-decoration: none;
  transition:
    color 0.25s ease,
    border-color 0.25s ease,
    background 0.25s ease,
    transform 0.25s ease;
}

.fp-section__cta-btn:hover {
  color: #ffffff;
  border-color: rgba(168, 85, 247, 0.3);
  background: rgba(168, 85, 247, 0.08);
  transform: translateY(-1px);
}

.fp-section__cta-btn i {
  font-size: 0.7rem;
  transition: transform 0.25s ease;
}

.fp-section__cta-btn:hover i {
  transform: translateX(3px);
}

/* ---- Fade-in Animations ---- */
.fp-fade {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.fp-fade--visible {
  opacity: 1;
  transform: translateY(0);
}

.fp-loading {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem 0;
  grid-column: 1 / -1;
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .fp-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .fp-section {
    padding: 3rem 1rem 2rem;
  }

  .fp-section__title {
    font-size: 1.4rem;
  }

  .fp-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}



/* ============================================
   PRODUCT CARD â€“ Info Section (Products only)
   ============================================ */

.pcard-info {
  position: relative;
  z-index: 1;
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(8, 9, 12, 0.5);
  border-radius: 0 0 1rem 1rem;
  margin-top: auto;
}

/* ---- Top Row: Name + Status ---- */
.pcard-info__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.pcard-info__name {
  font-size: 0.85rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  flex: 1;
  min-width: 0;
}

/* Status Badge */
.pcard-status {
  display: flex;
  align-items: center;
  gap: 5px;
  flex-shrink: 0;
}

.pcard-status__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
  animation: pcardPulse 2s ease-in-out infinite;
}

@keyframes pcardPulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.6;
    transform: scale(0.85);
  }
}

.pcard-status__label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

/* ---- Bottom Row: Badge + Price ---- */
.pcard-info__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  min-height: 24px;
}

/* Badge Area (left) */
.pcard-info__badge-area {
  flex: 1;
  min-width: 0;
  display: flex;
  align-items: center;
}

.pcard-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 2px 8px;
  border-radius: 6px;
  border: 1px solid;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
  transition:
    background 0.25s ease,
    box-shadow 0.25s ease;
}

.pcard-badge__icon {
  font-size: 0.55rem;
  flex-shrink: 0;
}

/* Badge hover glow */
section[data-component-id="products"] .group:hover .pcard-badge,
.product-modal-container .group:hover .pcard-badge {
  box-shadow: 0 0 8px currentColor;
}

/* Price Area (right) */
.pcard-info__price-area {
  display: flex;
  align-items: baseline;
  gap: 5px;
  flex-shrink: 0;
  white-space: nowrap;
}

.pcard-info__price-label {
  font-size: 0.65rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.3);
}

.pcard-info__price {
  font-size: 0.95rem;
  font-weight: 700;
  color: #ffffff;
  text-shadow: 0 0 12px rgba(183, 80, 255, 0.15);
}

/* ---- Hover Enhancements ---- */
section[data-component-id="products"] .group:hover .pcard-info,
.product-modal-container .group:hover .pcard-info {
  border-top-color: rgba(183, 80, 255, 0.12);
  background: rgba(8, 9, 12, 0.65);
}

section[data-component-id="products"] .group:hover .pcard-info__name,
.product-modal-container .group:hover .pcard-info__name {
  color: #ffffff;
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.08);
}

section[data-component-id="products"] .group:hover .pcard-info__price,
.product-modal-container .group:hover .pcard-info__price {
  text-shadow: 0 0 16px rgba(183, 80, 255, 0.3);
}

/* ---- Responsive ---- */
@media (max-width: 768px) {
  .pcard-info {
    padding: 10px 12px;
    gap: 7px;
  }

  .pcard-info__name {
    font-size: 0.8rem;
  }

  .pcard-info__price {
    font-size: 0.88rem;
  }

  .pcard-status__label {
    font-size: 0.6rem;
  }

  .pcard-badge {
    font-size: 0.58rem;
    padding: 2px 6px;
  }

  .pcard-info__price-label {
    font-size: 0.6rem;
  }
}

@media (max-width: 480px) {
  .pcard-info {
    padding: 9px 10px;
    gap: 6px;
  }

  .pcard-info__name {
    font-size: 0.78rem;
  }

  .pcard-info__price {
    font-size: 0.82rem;
  }
}



/* Footer */
.rev-card__footer {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid rgba(168, 85, 247, 0.08);
  overflow: hidden;
}

.rev-card__footer-icon {
  font-size: 0.6875rem;
  color: rgba(168, 85, 247, 0.4);
  flex-shrink: 0;
}

.rev-card__footer-text {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* ---- Empty state ---- */
.rev__empty {
  text-align: center;
  padding: 4rem 2rem;
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.9375rem;
}

.rev__empty-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: rgba(168, 85, 247, 0.3);
}

/* ---- Pagination ---- */
.rev__pagination {
  margin-top: 2rem;
}

/* ---- Responsive ---- */
@media (max-width: 768px) {
  .rev {
    padding: 3rem 0;
  }

  .rev__header {
    margin-bottom: 2rem;
  }

  .rev__sort {
    flex-direction: column;
    align-items: flex-start;
  }

  .rev__sort-select-wrap {
    width: 100%;
  }

  .rev-card__inner {
    padding: 1.25rem;
  }
}

/* ============================================
   FOOTER — Header-Matching Full-Bleed Design
   Content aligns with page sections (padding: 0 2rem inside parent container)
   Background breaks out to full viewport width
   ============================================ */

.site-footer {
  margin-top: 6rem;
  position: relative;
  z-index: 10;
}

/*
 * Full-bleed background: breaks out of the max-w-[85rem] parent container
 * by using 100vw width + negative margin trick.
 */
.site-footer::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 100vw;
  transform: translateX(-50%);
  background:
    linear-gradient(to bottom,
      rgba(168, 85, 247, 0.28) 0%,
      rgba(139, 92, 246, 0.12) 18%,
      rgba(139, 92, 246, 0.04) 40%,
      transparent 55%
    ),
    radial-gradient(ellipse at 20% 50%, rgba(139, 92, 246, 0.12) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 50%, rgba(192, 38, 211, 0.08) 0%, transparent 50%),
    linear-gradient(0deg, rgba(12, 10, 22, 0.99) 0%, rgba(10, 8, 20, 0.99) 100%);
  border-top: 1px solid rgba(168, 85, 247, 0.3);
  z-index: -1;
  pointer-events: none;
}

/* Full-bleed glow line at top edge */
.site-footer::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 50%;
  width: 100vw;
  height: 2px;
  transform: translateX(-50%);
  background: linear-gradient(
    90deg,
    transparent 5%,
    rgba(139, 92, 246, 0.5) 20%,
    rgba(168, 85, 247, 0.8) 35%,
    rgba(192, 132, 252, 1) 50%,
    rgba(168, 85, 247, 0.8) 65%,
    rgba(139, 92, 246, 0.5) 80%,
    transparent 95%
  );
  pointer-events: none;
  filter: blur(0.5px);
  z-index: 1;
}

/*
 * Inner container: provides horizontal padding to match other sections
 * (.sp has padding: 2.5rem 2rem, so 2rem horizontal = alignment)
 */
.site-footer__inner {
  position: relative;
  z-index: 1;
  padding: 0 2rem;
}

/* --- Top section (Logo + Socials) --- */
.site-footer__top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 2.5rem 0;
}

/* Brand (Logo) */
.site-footer__brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
  transition: opacity 0.2s ease;
}

.site-footer__brand:hover {
  opacity: 0.88;
}

.site-footer__logo {
  height: 48px;
  width: auto;
  display: block;
}

/* Social icons — matches header icon-btn style */
.site-footer__socials {
  display: flex;
  gap: 10px;
}

.site-footer__social-link {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.55);
  font-size: 15px;
  text-decoration: none;
  transition: all 0.25s ease;
}

.site-footer__social-link:hover {
  background: rgba(168, 85, 247, 0.15);
  border-color: rgba(168, 85, 247, 0.4);
  color: #ffffff;
  box-shadow: 0 0 12px rgba(168, 85, 247, 0.2);
}

.site-footer__social-icon {
  width: 18px;
  height: 18px;
}

/* Divider */
.site-footer__divider {
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(139, 92, 246, 0.12) 20%,
    rgba(168, 85, 247, 0.18) 50%,
    rgba(139, 92, 246, 0.12) 80%,
    transparent 100%
  );
}

/* --- Bottom bar (Copyright + Links) --- */
.site-footer__bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 2.5rem 0;
}

.site-footer__copyright {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
  margin: 0;
}

.site-footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.site-footer__link {
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  position: relative;
  transition: color 0.25s ease;
}

.site-footer__link:hover {
  color: #c084fc;
}

/* Hover underline */
.site-footer__link::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(139, 92, 246, 0.8), rgba(168, 85, 247, 0.8));
  transition: width 0.3s ease;
}

.site-footer__link:hover::after {
  width: 100%;
}

/* --- Responsive --- */
@media (max-width: 640px) {
  .site-footer__inner {
    padding: 0 1rem;
  }

  .site-footer__top {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    padding: 2rem 0;
  }

  .site-footer__bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 2rem 0;
  }

  .site-footer__logo {
    height: 36px;
  }
}


.tos-page {
  max-width: 54rem;
  margin: 0 auto;
  padding: 3rem 1rem 4rem;
}

/* ---- Header ---- */
.tos-header {
  text-align: center;
  margin-bottom: 3rem;
}

.tos-header__eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  margin: 0 0 8px;
}

.tos-header__title {
  font-size: clamp(28px, 4.5vw, 48px);
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 16px;
  line-height: 1.1;
}

.tos-header__accent {
  width: 60px;
  height: 3px;
  margin: 0 auto 16px;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    rgba(183, 80, 255, 1) 0%,
    rgba(255, 72, 166, 1) 100%
  );
  box-shadow: 0 0 14px rgba(183, 80, 255, 0.5);
}

.tos-header__updated {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.35);
  margin: 0;
  letter-spacing: 0.02em;
}

/* ---- Glass Container ---- */
.tos-container {
  background: rgba(8, 9, 12, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  backdrop-filter: blur(22px) saturate(1.35);
  -webkit-backdrop-filter: blur(22px) saturate(1.35);
  box-shadow:
    0 14px 40px rgba(0, 0, 0, 0.35),
    inset 0 0 40px rgba(255, 255, 255, 0.06);
  padding: 2rem;
  position: relative;
  overflow: hidden;
}

/* Inner light effect */
.tos-container::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    radial-gradient(120% 80% at 5% 0%, rgba(255, 255, 255, 0.06), transparent 45%),
    radial-gradient(100% 80% at 95% 100%, rgba(183, 80, 255, 0.06), transparent 50%);
  pointer-events: none;
}

/* ---- Intro text ---- */
.tos-intro {
  position: relative;
  z-index: 1;
  padding: 1.25rem 1.5rem;
  margin-bottom: 1.5rem;
  background: rgba(183, 80, 255, 0.06);
  border: 1px solid rgba(183, 80, 255, 0.15);
  border-radius: 14px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  line-height: 1.7;
}

.tos-intro p {
  margin: 0;
}

/* ---- Section Card ---- */
.tos-section {
  position: relative;
  z-index: 1;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 14px;
  margin-bottom: 1rem;
  overflow: hidden;
  transition:
    border-color 0.3s ease,
    background 0.3s ease,
    box-shadow 0.3s ease;
}

.tos-section:last-child {
  margin-bottom: 0;
}

.tos-section:hover {
  border-color: rgba(183, 80, 255, 0.2);
  background: rgba(255, 255, 255, 0.03);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.2);
}

/* Section Header */
.tos-section__header {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.5rem 0;
}

.tos-section__number {
  font-size: 13px;
  font-weight: 700;
  color: rgba(183, 80, 255, 0.8);
  background: rgba(183, 80, 255, 0.1);
  border: 1px solid rgba(183, 80, 255, 0.2);
  border-radius: 8px;
  min-width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  letter-spacing: 0.04em;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.tos-section:hover .tos-section__number {
  background: rgba(183, 80, 255, 0.18);
  box-shadow: 0 0 12px rgba(183, 80, 255, 0.25);
}

.tos-section__title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
  line-height: 1.3;
}

/* Section Body */
.tos-section__body {
  padding: 1rem 1.5rem 1.25rem;
}

.tos-section__body p {
  font-size: 0.88rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.55);
  margin: 0 0 0.75rem;
}

.tos-section__body p:last-child {
  margin-bottom: 0;
}

/* ---- Responsive ---- */
@media (max-width: 640px) {
  .tos-page {
    padding: 2rem 0.75rem 3rem;
  }

  .tos-container {
    padding: 1.25rem;
    border-radius: 16px;
  }

  .tos-intro {
    padding: 1rem 1.25rem;
  }

  .tos-section__header {
    padding: 1rem 1.25rem 0;
  }

  .tos-section__body {
    padding: 0.75rem 1.25rem 1rem;
  }

  .tos-section__number {
    min-width: 32px;
    height: 32px;
    font-size: 12px;
  }

  .tos-section__title {
    font-size: 0.95rem;
  }
}





/* ============================================
   PRIVACY POLICY â€“ ErgÃ¤nzungen zum TOS-Design
   ============================================ */

/* AufzÃ¤hlungslisten */
.pp-list {
  list-style: none;
  padding: 0;
  margin: 0.75rem 0;
}

.pp-list li {
  position: relative;
  padding-left: 1.4rem;
  font-size: 0.88rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 0.35rem;
}

.pp-list li:last-child {
  margin-bottom: 0;
}

/* Bullet-Punkt im Lila-Gradient */
.pp-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 6px;
  height: 6px;
  border-radius: 9999px;
  background: linear-gradient(
    135deg,
    rgba(183, 80, 255, 0.9) 0%,
    rgba(255, 72, 166, 0.9) 100%
  );
  box-shadow: 0 0 6px rgba(183, 80, 255, 0.35);
}

/* Links im Privacy-Policy Stil */
.pp-link {
  color: rgba(183, 80, 255, 0.85);
  text-decoration: none;
  border-bottom: 1px solid rgba(183, 80, 255, 0.25);
  transition: color 0.2s ease, border-color 0.2s ease, text-shadow 0.2s ease;
}

.pp-link:hover {
  color: #ffffff;
  border-color: rgba(255, 72, 166, 0.6);
  text-shadow: 0 0 10px rgba(183, 80, 255, 0.4);
}

/* Legal basis badges */
.pp-legal-basis {
  display: inline-block;
  font-size: 0.78rem !important;
  color: rgba(183, 80, 255, 0.65) !important;
  background: rgba(183, 80, 255, 0.06);
  border: 1px solid rgba(183, 80, 255, 0.12);
  border-radius: 8px;
  padding: 0.3rem 0.75rem;
  margin-top: 0.5rem;
  letter-spacing: 0.01em;
}

/* GDPR article references */
.pp-article {
  color: rgba(183, 80, 255, 0.6);
  font-size: 0.82rem;
}











/* ============================================
   PRODUCT DETAIL PAGE (PDP)
   ============================================ */

/* -- Wrapper -- */
.pdp {
  position: relative;
  max-width: 100%;
  margin: 0 auto;
  padding: 2rem 0 3rem;
}

/* -- Purple Glow -- */
.pdp__glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: visible;
}

.pdp__glow-orb {
  position: absolute;
  border-radius: 9999px;
  filter: blur(100px);
  will-change: transform, opacity;
}

.pdp__glow-orb--1 {
  width: 500px;
  height: 500px;
  top: -5%;
  left: 5%;
  background: rgba(168, 85, 247, 0.22);
  animation: pdpGlow1 9s ease-in-out infinite;
}

.pdp__glow-orb--2 {
  width: 400px;
  height: 400px;
  top: -3%;
  right: 10%;
  background: rgba(192, 38, 211, 0.18);
  animation: pdpGlow2 12s ease-in-out infinite;
}

.pdp__glow-orb--3 {
  width: 600px;
  height: 300px;
  top: 0;
  left: 25%;
  background: rgba(139, 92, 246, 0.15);
  animation: pdpGlow3 10s ease-in-out infinite;
}

.pdp__glow-orb--4 {
  width: 350px;
  height: 350px;
  top: 30%;
  left: 0;
  background: rgba(168, 85, 247, 0.12);
  animation: pdpGlow4 14s ease-in-out infinite;
}

.pdp__glow-orb--5 {
  width: 300px;
  height: 420px;
  top: 25%;
  right: 3%;
  background: rgba(139, 92, 246, 0.14);
  animation: pdpGlow5 8s ease-in-out infinite;
}

@keyframes pdpGlow1 {
  0%, 100% { transform: scale(1); opacity: 1; }
  30%      { transform: scale(0.75); opacity: 0.6; }
  70%      { transform: scale(1.1); opacity: 0.85; }
}

@keyframes pdpGlow2 {
  0%, 100% { transform: scale(1); opacity: 0.85; }
  40%      { transform: scale(1.15); opacity: 1; }
  80%      { transform: scale(0.8); opacity: 0.55; }
}

@keyframes pdpGlow3 {
  0%, 100% { transform: scale(1); opacity: 0.8; }
  50%      { transform: scale(0.85); opacity: 0.5; }
}

@keyframes pdpGlow4 {
  0%, 100% { transform: scale(1); opacity: 0.85; }
  35%      { transform: scale(0.65); opacity: 0.5; }
  65%      { transform: scale(1.1); opacity: 1; }
}

@keyframes pdpGlow5 {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%      { transform: scale(1.2); opacity: 0.6; }
}

/* -- Fade-in animation -- */
.pdp__fade {
  opacity: 0;
  transform: translateY(24px) scale(0.98);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.pdp__fade--visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* -- Layout Grid -- */
.pdp-layout {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

@media (min-width: 1024px) {
  .pdp-layout {
    flex-direction: row;
    gap: 1.75rem;
  }

  .pdp-left {
    width: 58%;
  }

  .pdp-right {
    width: 42%;
  }
}

.pdp-left,
.pdp-right {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

/* -- Card (base) -- */
.pdp-card {
  background: linear-gradient(135deg, rgba(22, 20, 40, 0.7) 0%, rgba(14, 14, 26, 0.6) 100%);
  border: 1px solid rgba(168, 85, 247, 0.12);
  border-radius: 18px;
  backdrop-filter: blur(18px) saturate(1.3);
  -webkit-backdrop-filter: blur(18px) saturate(1.3);
  box-shadow:
    0 12px 40px rgba(0, 0, 0, 0.3),
    0 0 30px rgba(139, 92, 246, 0.04);
  overflow: hidden;
  position: relative;
  transition:
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.pdp-card:hover {
  border-color: rgba(168, 85, 247, 0.22);
  box-shadow:
    0 16px 50px rgba(0, 0, 0, 0.35),
    0 0 40px rgba(139, 92, 246, 0.06);
}

/* -- Card Header -- */
.pdp-card__header {
  position: relative;
  z-index: 1;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid rgba(168, 85, 247, 0.08);
  background: linear-gradient(
    90deg,
    rgba(168, 85, 247, 0.04) 0%,
    transparent 100%
  );
}

.pdp-card__header-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

/* -- Product Title -- */
.pdp-card__title {
  flex: 1;
  font-size: clamp(1.15rem, 2.5vw, 1.55rem);
  font-weight: 700;
  color: #ffffff;
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* -- Status Badge -- */
.pdp-status {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.pdp-status__dot {
  position: relative;
  width: 14px;
  height: 14px;
  border-radius: 9999px;
}

.pdp-status__label {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

/* -- Media Area -- */
.pdp-card__media {
  position: relative;
  z-index: 1;
  aspect-ratio: 16 / 9;
  border-top: 1px solid rgba(168, 85, 247, 0.06);
  background: rgba(10, 10, 18, 0.4);
}

/* -- Card Body -- */
.pdp-card__body {
  position: relative;
  z-index: 1;
  padding: 1.25rem 1.5rem;
}

/* -- Tabs -- */
.pdp-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.pdp-tab {
  padding: 0.5rem 1.1rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  cursor: pointer;
  transition:
    color 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.pdp-tab:hover {
  color: rgba(255, 255, 255, 0.8);
  background: rgba(168, 85, 247, 0.06);
  border-color: rgba(168, 85, 247, 0.15);
}

.pdp-tab--active {
  color: #ffffff !important;
  background: rgba(168, 85, 247, 0.15) !important;
  border-color: rgba(168, 85, 247, 0.4) !important;
  box-shadow: 0 0 16px rgba(168, 85, 247, 0.15);
}

/* -- Price Row -- */
.pdp-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.pdp-price {
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  font-weight: 800;
  color: #ffffff;
  text-shadow: 0 0 24px rgba(168, 85, 247, 0.25);
}

.pdp-stock__label {
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
}

.pdp-stock__label--hold {
  color: rgba(255, 255, 255, 0.5);
}

.pdp-stock__label--out {
  color: rgba(239, 68, 68, 0.85);
}

/* -- Badges -- */
.pdp-badges {
  position: relative;
  z-index: 1;
  padding: 0.75rem 1.5rem;
  border-top: 1px solid rgba(168, 85, 247, 0.08);
}

/* -- Live Stats -- */
.pdp-livestats {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1rem 1.5rem;
  border-top: 1px solid rgba(168, 85, 247, 0.08);
  background: rgba(168, 85, 247, 0.02);
}

.pdp-livestats__row {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.5);
}

.pdp-livestats__row p {
  margin: 0;
}

/* -- Features ("What's Included") -- */
.pdp-card--features {
  padding: 1.5rem;
}

.pdp-features__header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
  position: relative;
  z-index: 1;
}

.pdp-features__accent {
  width: 4px;
  height: 1.6rem;
  border-radius: 999px;
  background: linear-gradient(180deg, #a855f7 0%, #c026d3 100%);
  box-shadow: 0 0 14px rgba(168, 85, 247, 0.5);
  flex-shrink: 0;
}

.pdp-features__title {
  font-size: 1.15rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
}

.pdp-features__list {
  list-style: none;
  padding: 0;
  margin: 0;
  position: relative;
  z-index: 1;
}

.pdp-features__item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.75rem 1rem;
  margin-bottom: 0.5rem;
  border-radius: 12px;
  background: rgba(168, 85, 247, 0.03);
  border: 1px solid rgba(168, 85, 247, 0.06);
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.9rem;
  font-weight: 500;
  transition:
    background 0.25s ease,
    border-color 0.25s ease,
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.pdp-features__item:last-child {
  margin-bottom: 0;
}

.pdp-features__item:hover {
  background: rgba(168, 85, 247, 0.08);
  border-color: rgba(168, 85, 247, 0.2);
  transform: translateX(4px);
  box-shadow: 0 4px 16px rgba(168, 85, 247, 0.1);
}

.pdp-features__check {
  width: 28px;
  height: 28px;
  min-width: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.2) 0%, rgba(192, 38, 211, 0.2) 100%);
  border: 1px solid rgba(168, 85, 247, 0.25);
  transition:
    background 0.25s ease,
    box-shadow 0.25s ease;
}

.pdp-features__check svg {
  width: 14px;
  height: 14px;
  color: rgba(168, 85, 247, 0.9);
  transition: color 0.25s ease;
}

.pdp-features__item:hover .pdp-features__check {
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.35) 0%, rgba(192, 38, 211, 0.35) 100%);
  box-shadow: 0 0 14px rgba(168, 85, 247, 0.3);
}

.pdp-features__item:hover .pdp-features__check svg {
  color: #ffffff;
}

/* -- Upsells Section -- */
.pdp-upsells {
  position: relative;
  z-index: 1;
  margin-top: 2rem;
  background: linear-gradient(135deg, rgba(22, 20, 40, 0.7) 0%, rgba(14, 14, 26, 0.6) 100%);
  border: 1px solid rgba(168, 85, 247, 0.12);
  border-radius: 18px;
  padding: 1.75rem;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.pdp-upsells__header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(168, 85, 247, 0.1);
}

.pdp-upsells__accent {
  width: 4px;
  height: 1.6rem;
  border-radius: 999px;
  background: linear-gradient(180deg, #a855f7 0%, #c026d3 100%);
  box-shadow: 0 0 14px rgba(168, 85, 247, 0.5);
  flex-shrink: 0;
}

.pdp-upsells__title {
  font-size: 1.15rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
}

.pdp-upsells__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.pdp-upsells__item {
  min-width: 0;
}

@media (max-width: 1200px) {
  .pdp-upsells__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 900px) {
  .pdp-upsells__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .pdp-upsells__grid {
    grid-template-columns: 1fr;
  }

  .pdp-upsells {
    padding: 1.25rem;
  }
}

/* -- Responsive -- */
@media (max-width: 640px) {
  .pdp {
    padding: 1.5rem 0 2rem;
  }

  .pdp-card__header {
    padding: 1rem 1.25rem;
  }

  .pdp-card__body {
    padding: 1rem 1.25rem;
  }

  .pdp-card--features {
    padding: 1.25rem;
  }

  .pdp-badges {
    padding: 0.75rem 1.25rem;
  }

  .pdp-livestats {
    padding: 0.85rem 1.25rem;
  }
}

/* ============================================
   PRODUCT BADGES -- Unified Design Override
   ============================================ */

.pdp-badges .badges > div {
  background: rgba(168, 85, 247, 0.10) !important;
  color: rgba(255, 255, 255, 0.85) !important;
  border: 1px solid rgba(168, 85, 247, 0.25);
  border-radius: 10px;
  padding: 6px 14px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow:
    0 0 12px rgba(168, 85, 247, 0.08),
    inset 0 0 10px rgba(255, 255, 255, 0.03);
  transition:
    background 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.25s ease;
}

.pdp-badges .badges > div:hover {
  background: rgba(168, 85, 247, 0.18) !important;
  border-color: rgba(168, 85, 247, 0.4);
  box-shadow:
    0 0 20px rgba(168, 85, 247, 0.15),
    0 4px 14px rgba(168, 85, 247, 0.1),
    inset 0 0 12px rgba(255, 255, 255, 0.04);
  transform: translateY(-1px);
}

.pdp-badges .badges > div i {
  color: rgba(168, 85, 247, 0.8);
  font-size: 13px;
  transition: color 0.25s ease;
}

.pdp-badges .badges > div:hover i {
  color: rgba(168, 85, 247, 1);
}


/* ============================================
   PRODUCT FORM â€“ GlasDesign
   ============================================ */

.pdp-form {
  position: relative;
  z-index: 1;
  padding: 1.5rem;
}

/* ---- Sections (dividers) ---- */
.pdp-form__section {
  margin-bottom: 1.25rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

/* ---- Labels ---- */
.pdp-form__label {
  display: block;
  margin-bottom: 0.6rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

/* ---- Dropdown Select ---- */
.pdp-form__select {
  width: 100%;
  padding: 0.65rem 1rem;
  font-size: 0.88rem;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  -webkit-appearance: none;
  appearance: none;
}

.pdp-form__select:focus {
  border-color: rgba(183, 80, 255, 0.5);
  box-shadow: 0 0 0 3px rgba(183, 80, 255, 0.15);
}

/* ---- Variant Buttons ---- */
.pdp-variants {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.pdp-variant {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 1rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  color: #ffffff;
  cursor: pointer;
  transition:
    background 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.25s ease;
}

.pdp-variant:hover:not(:disabled) {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.12);
}

.pdp-variant--active {
  background: rgba(183, 80, 255, 0.08) !important;
  border-color: rgba(183, 80, 255, 0.45) !important;
  box-shadow: 0 0 18px rgba(183, 80, 255, 0.12);
}

.pdp-variant--disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.pdp-variant__info {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.2rem;
  text-align: left;
}

.pdp-variant__name {
  font-size: 0.95rem;
  font-weight: 600;
  color: #ffffff;
  margin: 0;
}

.pdp-variant__desc {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
  margin: 0 0 0.15rem;
}

.pdp-variant__stock {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
}

.pdp-variant__price {
  padding: 0.35rem 0.75rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 8px;
  white-space: nowrap;
}

.pdp-variant__price-slash {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.35);
  text-decoration: line-through;
  margin-left: 0.35rem;
}

/* ---- Quantity ---- */
.pdp-quantity {
  display: flex;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.pdp-quantity:focus-within {
  border-color: rgba(183, 80, 255, 0.5);
  box-shadow: 0 0 0 3px rgba(183, 80, 255, 0.15);
}

.pdp-quantity__btn {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.7);
  border: none;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.pdp-quantity__btn:hover:not(:disabled) {
  background: rgba(183, 80, 255, 0.2);
  color: #ffffff;
}

.pdp-quantity__btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.pdp-quantity__input {
  flex: 1;
  min-width: 0;
  padding: 0.55rem 1rem;
  font-size: 0.88rem;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.02);
  border: none;
  outline: none;
  text-align: center;
  -moz-appearance: textfield;
  appearance: textfield;
}

.pdp-quantity__input::-webkit-outer-spin-button,
.pdp-quantity__input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  appearance: none;
  margin: 0;
}

.pdp-quantity__input:disabled {
  opacity: 0.4;
}

/* Volume Discount Hint */
.pdp-volume-hint {
  margin-top: 0.6rem;
  padding: 0.5rem 0.85rem;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.55);
  text-align: center;
  background: rgba(183, 80, 255, 0.06);
  border: 1px solid rgba(183, 80, 255, 0.12);
  border-radius: 10px;
}

/* ---- Addons ---- */
.pdp-addons {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.pdp-addon {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.7rem 1rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.pdp-addon:hover {
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
}

.pdp-addon__info {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-align: left;
  min-width: 0;
}

.pdp-addon__img {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.pdp-addon__name {
  font-size: 0.9rem;
  font-weight: 600;
  color: #ffffff;
  margin: 0;
}

.pdp-addon__desc {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
  margin: 0.15rem 0 0;
}

.pdp-addon__actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.pdp-addon__price {
  padding: 0.3rem 0.65rem;
  font-size: 0.85rem;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 8px;
}

.pdp-addon__btn {
  min-width: 6.5rem;
  padding: 0.35rem 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  font-size: 0.82rem;
  font-weight: 600;
  border-radius: 10px;
  cursor: pointer;
  transition:
    background 0.25s ease,
    border-color 0.25s ease,
    color 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.25s ease;
}

.pdp-addon__btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.pdp-addon__btn--add {
  color: rgba(183, 80, 255, 0.9);
  background: rgba(183, 80, 255, 0.08);
  border: 1px solid rgba(183, 80, 255, 0.2);
}

.pdp-addon__btn--add:hover:not(:disabled) {
  background: rgba(183, 80, 255, 0.18);
  border-color: rgba(183, 80, 255, 0.4);
  box-shadow: 0 4px 14px rgba(183, 80, 255, 0.15);
  transform: translateY(-1px);
}

.pdp-addon__btn--added {
  color: rgba(183, 80, 255, 0.9);
  background: rgba(183, 80, 255, 0.08);
  border: 1px solid rgba(183, 80, 255, 0.2);
}

.pdp-addon__btn--remove {
  color: rgba(239, 68, 68, 0.9);
  background: rgba(239, 68, 68, 0.08);
  border: 1px solid rgba(239, 68, 68, 0.2);
}

.pdp-addon__btn--remove:hover:not(:disabled) {
  background: rgba(239, 68, 68, 0.18);
  border-color: rgba(239, 68, 68, 0.4);
}

/* ---- Error ---- */
.pdp-form__error {
  padding: 0.85rem 1rem;
  margin-top: 1rem;
  font-size: 0.85rem;
  color: #ffffff;
  background: rgba(239, 68, 68, 0.2);
  border: 1px solid rgba(239, 68, 68, 0.35);
  border-radius: 12px;
}

/* ---- CTA Buttons ---- */
.pdp-form__buttons {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

@media (min-width: 480px) {
  .pdp-form__buttons {
    flex-direction: row;
  }
}

.pdp-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: 14px;
  cursor: pointer;
  transition:
    background 0.3s ease,
    border-color 0.3s ease,
    color 0.3s ease,
    box-shadow 0.3s ease,
    transform 0.3s ease;
}

.pdp-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  transform: none !important;
  box-shadow: none !important;
}

.pdp-btn__inner {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
}

/* Add to Cart â€“ Gradient Button */
.pdp-btn--cart {
  color: #ffffff;
  background: linear-gradient(
    135deg,
    rgba(183, 80, 255, 0.85) 0%,
    rgba(255, 72, 166, 0.85) 100%
  );
  border: 1px solid rgba(183, 80, 255, 0.3);
  box-shadow:
    0 6px 20px rgba(183, 80, 255, 0.25),
    inset 0 0 20px rgba(255, 255, 255, 0.06);
}

.pdp-btn--cart:hover:not(:disabled) {
  background: linear-gradient(
    135deg,
    rgba(183, 80, 255, 1) 0%,
    rgba(255, 72, 166, 1) 100%
  );
  box-shadow:
    0 10px 30px rgba(183, 80, 255, 0.4),
    0 0 0 1px rgba(183, 80, 255, 0.3),
    inset 0 0 25px rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
}

.pdp-btn--cart:active:not(:disabled) {
  transform: translateY(0);
}

/* Buy Now â€“ Glass Outline Button */
.pdp-btn--buy {
  color: rgba(255, 255, 255, 0.85);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.pdp-btn--buy:hover:not(:disabled) {
  color: #ffffff;
  background: rgba(183, 80, 255, 0.1);
  border-color: rgba(183, 80, 255, 0.4);
  box-shadow:
    0 8px 24px rgba(183, 80, 255, 0.2),
    inset 0 0 20px rgba(183, 80, 255, 0.05);
  transform: translateY(-2px);
}

.pdp-btn--buy:active:not(:disabled) {
  transform: translateY(0);
}

/* ---- Responsive ---- */
@media (max-width: 640px) {
  .pdp-form {
    padding: 1.25rem;
  }

  .pdp-variant {
    padding: 0.65rem 0.85rem;
  }

  .pdp-addon {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.6rem;
  }

  .pdp-addon__actions {
    width: 100%;
    justify-content: space-between;
  }
}







/* ============================================
   SHOPPING CART PAGE
   ============================================ */

.cart-page {
  position: relative;
  max-width: 85rem;
  margin: 0 auto;
  padding: 2.5rem 2rem 6rem;
}

/* ---- Purple Glow (same approach as shop/status pages) ---- */
.cart__glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: visible;
}

.cart__glow-orb {
  position: absolute;
  border-radius: 9999px;
  filter: blur(100px);
  will-change: transform, opacity;
}

.cart__glow-orb--1 {
  width: 550px;
  height: 550px;
  top: -10%;
  left: 5%;
  background: rgba(139, 92, 246, 0.22);
  animation: cartGlow1 9s ease-in-out infinite;
}

.cart__glow-orb--2 {
  width: 450px;
  height: 450px;
  top: -8%;
  right: 8%;
  background: rgba(99, 102, 241, 0.18);
  animation: cartGlow2 12s ease-in-out infinite;
}

.cart__glow-orb--3 {
  width: 650px;
  height: 400px;
  top: -5%;
  left: 30%;
  background: rgba(168, 85, 247, 0.16);
  animation: cartGlow3 10s ease-in-out infinite;
}

.cart__glow-orb--4 {
  width: 400px;
  height: 400px;
  top: 25%;
  left: 0%;
  background: rgba(139, 92, 246, 0.14);
  animation: cartGlow4 14s ease-in-out infinite;
}

.cart__glow-orb--5 {
  width: 350px;
  height: 450px;
  top: 20%;
  right: 3%;
  background: rgba(99, 102, 241, 0.15);
  animation: cartGlow5 8s ease-in-out infinite;
}

@keyframes cartGlow1 {
  0%, 100% { transform: scale(1); opacity: 1; }
  30%      { transform: scale(0.75); opacity: 0.6; }
  70%      { transform: scale(1.1); opacity: 0.85; }
}

@keyframes cartGlow2 {
  0%, 100% { transform: scale(1); opacity: 0.85; }
  40%      { transform: scale(1.15); opacity: 1; }
  80%      { transform: scale(0.8); opacity: 0.55; }
}

@keyframes cartGlow3 {
  0%, 100% { transform: scale(1); opacity: 0.8; }
  50%      { transform: scale(0.85); opacity: 0.5; }
}

@keyframes cartGlow4 {
  0%, 100% { transform: scale(1); opacity: 0.85; }
  35%      { transform: scale(0.65); opacity: 0.5; }
  65%      { transform: scale(1.1); opacity: 1; }
}

@keyframes cartGlow5 {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%      { transform: scale(1.2); opacity: 0.6; }
}

/* ---- Header ---- */
.cart-header {
  position: relative;
  z-index: 1;
  text-align: center;
  margin-bottom: 2.5rem;
}

.cart-header__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.cart-header__eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 0.5rem;
}

.cart-header__eyebrow-line {
  width: 36px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(168, 85, 247, 0.5), transparent);
}

.cart-header__eyebrow-text {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #a855f7;
  display: flex;
  align-items: center;
  gap: 6px;
}

.cart-header__eyebrow-text i { font-size: 0.6rem; }

.cart-header__title {
  font-size: 1.75rem;
  font-weight: 800;
  color: #ffffff;
  margin: 0;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.cart-header__title-accent {
  background: linear-gradient(135deg, #a855f7 0%, #c026d3 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cart-header__subtitle {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
  font-weight: 400;
}

/* ---- Layout ---- */
.cart-layout {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: relative;
  z-index: 1;
}

@media (min-width: 1024px) {
  .cart-layout {
    flex-direction: row;
    gap: 2rem;
  }

  .cart-items-col {
    width: 72%;
  }

  .cart-summary-col {
    width: 28%;
  }
}

/* ---- Messages ---- */
.cart-message {
  padding: 1rem 1.25rem;
  margin-bottom: 1rem;
  font-size: 0.88rem;
  color: rgba(168, 85, 247, 0.9);
  background: rgba(168, 85, 247, 0.08);
  border: 1px solid rgba(168, 85, 247, 0.2);
  border-radius: 14px;
}

.cart-message p {
  margin: 0;
}

/* ---- Empty / Loading State ---- */
.cart-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 3rem 1.5rem;
  background: linear-gradient(135deg, rgba(16, 14, 30, 0.6) 0%, rgba(10, 10, 18, 0.5) 100%);
  border: 1px solid rgba(168, 85, 247, 0.1);
  border-radius: 18px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow:
    0 2px 12px rgba(0, 0, 0, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.cart-empty__icon {
  font-size: 2rem;
  color: rgba(168, 85, 247, 0.5);
}

.cart-empty__bag {
  width: 56px;
  height: 56px;
  color: rgba(255, 255, 255, 0.15);
}

.cart-empty__text {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.35);
  margin: 0;
}

/* ---- Cart Items ---- */
.cart-items {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

/* ---- Single Cart Item ---- */
.cart-item {
  display: flex;
  flex-direction: column;
  background: linear-gradient(135deg, rgba(22, 20, 40, 0.85) 0%, rgba(16, 14, 30, 0.8) 100%);
  border: 1px solid rgba(168, 85, 247, 0.1);
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow:
    0 2px 12px rgba(0, 0, 0, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.cart-item:hover {
  background: linear-gradient(135deg, rgba(30, 26, 55, 0.95) 0%, rgba(22, 18, 42, 0.9) 100%);
  border-color: rgba(168, 85, 247, 0.3);
  box-shadow:
    0 8px 32px rgba(168, 85, 247, 0.15),
    0 2px 12px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

@media (min-width: 640px) {
  .cart-item {
    flex-direction: row;
    align-items: center;
  }
}

/* Image */
.cart-item__image {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 140px;
  aspect-ratio: 16 / 9;
  padding: 0.5rem;
  flex-shrink: 0;
}

@media (max-width: 639px) {
  .cart-item__image {
    max-width: 120px;
  }
}

.cart-item__img {
  width: 100%;
  height: 100%;
  object-fit: scale-down;
  border-radius: 10px;
}

.cart-item__placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(168, 85, 247, 0.35);
}

/* Info */
.cart-item__info {
  flex: 1;
  min-width: 0;
  padding: 0.65rem 0.85rem;
  position: relative;
  z-index: 1;
}

@media (min-width: 640px) {
  .cart-item__info {
    padding: 0.85rem 0.5rem 0.85rem 0;
  }
}

.cart-item__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}

.cart-item__name {
  font-size: 0.95rem;
  font-weight: 700;
  color: #ffffff;
  text-decoration: none;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: color 0.2s ease;
}

.cart-item__name:hover {
  color: rgba(168, 85, 247, 0.9);
  text-shadow: 0 0 12px rgba(168, 85, 247, 0.3);
}

.cart-item__variant {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.4);
  margin: 0.15rem 0 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.cart-item__discount {
  font-size: 0.72rem;
  color: rgba(168, 85, 247, 0.6);
  margin-top: 0.2rem;
}

.cart-item__addons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-top: 0.4rem;
}

.cart-item__addon-tag {
  padding: 0.2rem 0.55rem;
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 6px;
}

/* Actions (Quantity + Price + Remove) */
.cart-item__actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.65rem 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  position: relative;
  z-index: 1;
}

@media (min-width: 640px) {
  .cart-item__actions {
    border-top: none;
    justify-content: flex-end;
    gap: 1.5rem;
    padding: 0.85rem 1.25rem 0.85rem 0;
  }
}

/* Quantity */
.cart-item__qty {
  display: flex;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  max-width: 120px;
}

.cart-item__qty:focus-within {
  border-color: rgba(168, 85, 247, 0.5);
  box-shadow: 0 0 0 3px rgba(168, 85, 247, 0.12);
}

.cart-item__qty-btn {
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.03);
  color: rgba(255, 255, 255, 0.5);
  border: none;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.cart-item__qty-btn:hover:not(:disabled) {
  background: rgba(168, 85, 247, 0.2);
  color: #ffffff;
}

.cart-item__qty-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.cart-item__qty-input {
  width: calc(100% - 68px);
  min-width: 0;
  padding: 0.4rem 0.5rem;
  font-size: 0.85rem;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.02);
  border: none;
  outline: none;
  text-align: center;
  -moz-appearance: textfield;
  appearance: textfield;
}

.cart-item__qty-input::-webkit-outer-spin-button,
.cart-item__qty-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  appearance: none;
  margin: 0;
}

/* Price */
.cart-item__price {
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
  white-space: nowrap;
  min-width: 70px;
  text-align: center;
}

/* Remove Button */
.cart-item__remove {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  color: rgba(255, 255, 255, 0.3);
  background: transparent;
  border: 1px solid transparent;
  border-radius: 8px;
  cursor: pointer;
  transition: color 0.25s ease, background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.cart-item__remove:hover {
  color: rgba(239, 68, 68, 0.9);
  background: rgba(239, 68, 68, 0.08);
  border-color: rgba(239, 68, 68, 0.15);
  transform: rotate(90deg);
}

.cart-item__remove--mobile {
  display: flex;
}

.cart-item__remove--desktop {
  display: none;
}

@media (min-width: 640px) {
  .cart-item__remove--mobile {
    display: none;
  }

  .cart-item__remove--desktop {
    display: flex;
  }
}

/* ============================================
   ORDER SUMMARY
   ============================================ */

.cart-summary {
  background: linear-gradient(135deg, rgba(16, 14, 30, 0.6) 0%, rgba(10, 10, 18, 0.5) 100%);
  border: 1px solid rgba(168, 85, 247, 0.1);
  border-radius: 18px;
  padding: 1.5rem;
  position: relative;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow:
    0 2px 12px rgba(0, 0, 0, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

@media (min-width: 1024px) {
  .cart-summary {
    position: sticky;
    top: 1.5rem;
  }
}

/* Summary Header */
.cart-summary__header {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 1.25rem;
  position: relative;
  z-index: 1;
}

.cart-summary__accent {
  width: 4px;
  height: 1.4rem;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(139, 92, 246, 1) 0%, rgba(168, 85, 247, 1) 100%);
  box-shadow: 0 0 10px rgba(139, 92, 246, 0.4);
  flex-shrink: 0;
}

.cart-summary__title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
}

/* Rows */
.cart-summary__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.4rem 0;
  position: relative;
  z-index: 1;
}

.cart-summary__row--total {
  padding-top: 0.75rem;
}

.cart-summary__label {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.4);
}

.cart-summary__value {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
}

.cart-summary__value--total {
  font-size: 1.15rem;
  font-weight: 700;
  color: #ffffff;
}

.cart-summary__divider {
  height: 1px;
  margin: 0.5rem 0;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.06) 20%, rgba(255, 255, 255, 0.06) 80%, transparent 100%);
  position: relative;
  z-index: 1;
}

/* Error */
.cart-summary__error {
  padding: 0.75rem 1rem;
  margin: 1rem 0;
  font-size: 0.82rem;
  color: #ffffff;
  background: rgba(239, 68, 68, 0.12);
  border: 1px solid rgba(239, 68, 68, 0.25);
  border-radius: 12px;
  position: relative;
  z-index: 1;
}

/* Checkout Button */
.cart-summary__checkout {
  width: 100%;
  margin-top: 1.25rem;
  padding: 0.8rem 1.5rem;
  font-size: 0.95rem;
  font-weight: 700;
  color: #ffffff;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.85) 0%, rgba(168, 85, 247, 0.85) 100%);
  border: 1px solid rgba(139, 92, 246, 0.25);
  border-radius: 14px;
  cursor: pointer;
  position: relative;
  z-index: 1;
  box-shadow: 0 6px 20px rgba(139, 92, 246, 0.2);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.cart-summary__checkout:hover:not(:disabled) {
  background: linear-gradient(135deg, rgba(139, 92, 246, 1) 0%, rgba(168, 85, 247, 1) 100%);
  box-shadow: 0 10px 30px rgba(139, 92, 246, 0.35), 0 0 0 1px rgba(139, 92, 246, 0.2);
}

.cart-summary__checkout:active:not(:disabled) {
  transform: translateY(0);
}

.cart-summary__checkout:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.cart-summary__checkout-inner {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
}

/* ---- Responsive ---- */
@media (max-width: 640px) {
  .cart-page {
    padding: 2rem 1rem 4rem;
  }

  .cart-item__actions {
    gap: 0.75rem;
  }

  .cart-item__price {
    font-size: 0.9rem;
    min-width: 60px;
  }

  .cart-summary {
    padding: 1.25rem;
  }
}


/* ============================================
   CUSTOMER DASHBOARD
   ============================================ */

.cdash {
  position: relative;
  max-width: 85rem;
  margin: 0 auto;
  padding: 0 1rem;
}

.cdash__inner {
  position: relative;
  padding: 3rem 0 5rem;
}

/* ---- Purple Glow ---- */
.cdash__glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: visible;
}

.cdash__glow-orb {
  position: absolute;
  border-radius: 9999px;
  filter: blur(100px);
  will-change: transform, opacity;
}

.cdash__glow-orb--1 {
  width: 550px;
  height: 550px;
  top: -10%;
  left: 5%;
  background: rgba(139, 92, 246, 0.22);
  animation: cdashGlow1 9s ease-in-out infinite;
}

.cdash__glow-orb--2 {
  width: 450px;
  height: 450px;
  top: -8%;
  right: 8%;
  background: rgba(99, 102, 241, 0.18);
  animation: cdashGlow2 12s ease-in-out infinite;
}

.cdash__glow-orb--3 {
  width: 650px;
  height: 400px;
  top: -5%;
  left: 30%;
  background: rgba(168, 85, 247, 0.16);
  animation: cdashGlow3 10s ease-in-out infinite;
}

.cdash__glow-orb--4 {
  width: 400px;
  height: 400px;
  top: 25%;
  left: 0%;
  background: rgba(139, 92, 246, 0.14);
  animation: cdashGlow4 14s ease-in-out infinite;
}

.cdash__glow-orb--5 {
  width: 350px;
  height: 450px;
  top: 20%;
  right: 3%;
  background: rgba(99, 102, 241, 0.15);
  animation: cdashGlow5 8s ease-in-out infinite;
}

@keyframes cdashGlow1 {
  0%, 100% { transform: scale(1); opacity: 1; }
  30%      { transform: scale(0.75); opacity: 0.6; }
  70%      { transform: scale(1.1); opacity: 0.85; }
}

@keyframes cdashGlow2 {
  0%, 100% { transform: scale(1); opacity: 0.85; }
  40%      { transform: scale(1.15); opacity: 1; }
  80%      { transform: scale(0.8); opacity: 0.55; }
}

@keyframes cdashGlow3 {
  0%, 100% { transform: scale(1); opacity: 0.8; }
  50%      { transform: scale(0.85); opacity: 0.5; }
}

@keyframes cdashGlow4 {
  0%, 100% { transform: scale(1); opacity: 0.85; }
  35%      { transform: scale(0.65); opacity: 0.5; }
  65%      { transform: scale(1.1); opacity: 1; }
}

@keyframes cdashGlow5 {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%      { transform: scale(1.2); opacity: 0.6; }
}

/* ---- Header ---- */
.cdash-header {
  position: relative;
  z-index: 1;
  text-align: center;
  margin-bottom: 2.5rem;
}

.cdash-header__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.cdash-header__eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 0.5rem;
}

.cdash-header__eyebrow-line {
  width: 36px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(168, 85, 247, 0.5), transparent);
}

.cdash-header__eyebrow-text {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #a855f7;
  display: flex;
  align-items: center;
  gap: 6px;
}

.cdash-header__eyebrow-text i { font-size: 0.6rem; }

.cdash-header__title {
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 800;
  color: #ffffff;
  margin: 0;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.cdash-header__title-accent {
  background: linear-gradient(135deg, #a855f7 0%, #c026d3 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cdash-header__subtitle {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
  font-weight: 400;
}

/* ---- Layout ---- */
.cdash-layout {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: relative;
  z-index: 1;
}

@media (min-width: 1024px) {
  .cdash-layout {
    flex-direction: row;
    gap: 2rem;
  }
}

.cdash-sidebar-col {
  width: 100%;
}

@media (min-width: 1024px) {
  .cdash-sidebar-col {
    width: 260px;
    flex-shrink: 0;
  }
}

.cdash-content-col {
  flex: 1;
  min-width: 0;
}

/* ---- Stats Row ---- */
.cdash-stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}

@media (min-width: 600px) {
  .cdash-stats {
    grid-template-columns: repeat(3, 1fr);
  }
}

.cdash-stat {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 1.25rem 1.5rem;
  background: linear-gradient(135deg, rgba(16, 14, 30, 0.6) 0%, rgba(10, 10, 18, 0.5) 100%);
  border: 1px solid rgba(168, 85, 247, 0.1);
  border-radius: 16px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow:
    0 2px 12px rgba(0, 0, 0, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  position: relative;
  transition:
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.cdash-stat:hover {
  border-color: rgba(168, 85, 247, 0.3);
  box-shadow:
    0 8px 32px rgba(168, 85, 247, 0.15),
    0 2px 12px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.cdash-stat__icon {
  width: 42px;
  height: 42px;
  min-width: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  transition: box-shadow 0.3s ease;
}

.cdash-stat__icon svg {
  width: 22px;
  height: 22px;
}

.cdash-stat__icon--orders {
  background: rgba(168, 85, 247, 0.12);
  border: 1px solid rgba(168, 85, 247, 0.2);
  color: rgba(168, 85, 247, 0.85);
}

.cdash-stat:hover .cdash-stat__icon--orders {
  box-shadow: 0 0 14px rgba(168, 85, 247, 0.3);
}

.cdash-stat__icon--spent {
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(34, 197, 94, 0.2);
  color: rgba(34, 197, 94, 0.85);
}

.cdash-stat:hover .cdash-stat__icon--spent {
  box-shadow: 0 0 14px rgba(34, 197, 94, 0.3);
}

.cdash-stat__icon--since {
  background: rgba(59, 130, 246, 0.12);
  border: 1px solid rgba(59, 130, 246, 0.2);
  color: rgba(59, 130, 246, 0.85);
}

.cdash-stat:hover .cdash-stat__icon--since {
  box-shadow: 0 0 14px rgba(59, 130, 246, 0.3);
}

.cdash-stat__info {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  min-width: 0;
}

.cdash-stat__label {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.45);
  font-weight: 500;
}

.cdash-stat__value {
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ---- Cards Row (Latest Order + Balance) ---- */
.cdash-row2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  margin-top: 0.75rem;
}

@media (min-width: 768px) {
  .cdash-row2 {
    grid-template-columns: 2fr 1fr;
  }
}

.cdash-card {
  padding: 1.25rem 1.5rem;
  background: linear-gradient(135deg, rgba(22, 20, 40, 0.85) 0%, rgba(16, 14, 30, 0.8) 100%);
  border: 1px solid rgba(168, 85, 247, 0.1);
  border-radius: 16px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow:
    0 2px 12px rgba(0, 0, 0, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  position: relative;
  overflow: hidden;
  transition:
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.cdash-card:hover {
  border-color: rgba(168, 85, 247, 0.3);
  box-shadow:
    0 8px 32px rgba(168, 85, 247, 0.15),
    0 2px 12px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.cdash-card__header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
}

.cdash-card__icon {
  width: 36px;
  height: 36px;
  min-width: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(168, 85, 247, 0.1);
  border: 1px solid rgba(168, 85, 247, 0.18);
  color: rgba(168, 85, 247, 0.8);
  transition: box-shadow 0.3s ease;
}

.cdash-card__icon svg {
  width: 18px;
  height: 18px;
}

.cdash-card:hover .cdash-card__icon {
  box-shadow: 0 0 12px rgba(168, 85, 247, 0.25);
}

.cdash-card__title {
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
}

.cdash-card__body {
  position: relative;
}

.cdash-card__value {
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.cdash-card__meta {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 0.5rem;
  font-size: 0.8rem;
}

.cdash-card__link {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: color 0.2s ease;
}

.cdash-card__link:hover {
  color: rgba(255, 255, 255, 0.8);
}

.cdash-card__link-id {
  color: rgba(168, 85, 247, 0.8);
  transition: color 0.2s ease, text-shadow 0.2s ease;
}

.cdash-card__link:hover .cdash-card__link-id {
  color: rgba(168, 85, 247, 1);
  text-shadow: 0 0 10px rgba(168, 85, 247, 0.4);
}

.cdash-card__date {
  color: rgba(255, 255, 255, 0.3);
}

/* Top Up Button */
.cdash-topup {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.6rem;
  padding: 0.35rem 0.85rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(168, 85, 247, 0.85);
  background: rgba(168, 85, 247, 0.08);
  border: 1px solid rgba(168, 85, 247, 0.18);
  border-radius: 8px;
  text-decoration: none;
  transition:
    background 0.25s ease,
    border-color 0.25s ease,
    color 0.25s ease,
    box-shadow 0.25s ease;
}

.cdash-topup svg {
  width: 14px;
  height: 14px;
}

.cdash-topup:hover {
  background: rgba(168, 85, 247, 0.18);
  border-color: rgba(168, 85, 247, 0.4);
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(168, 85, 247, 0.2);
}

/* ---- Info Box ---- */
.cdash-infobox {
  margin-top: 0.75rem;
}

.cdash-infobox__inner {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 1.25rem 1.5rem;
  background: linear-gradient(135deg, rgba(16, 14, 30, 0.6) 0%, rgba(10, 10, 18, 0.5) 100%);
  border: 1px solid rgba(168, 85, 247, 0.1);
  border-radius: 16px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow:
    0 2px 12px rgba(0, 0, 0, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  position: relative;
  overflow: hidden;
}

@media (min-width: 768px) {
  .cdash-infobox__inner {
    flex-direction: row;
    align-items: center;
  }
}

.cdash-infobox__item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.75rem 0.5rem;
  border-radius: 12px;
  flex: 1;
  transition: background 0.3s ease;
}

.cdash-infobox__item:hover {
  background: rgba(168, 85, 247, 0.05);
}

.cdash-infobox__icon {
  width: 38px;
  height: 38px;
  min-width: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.15) 0%, rgba(192, 38, 211, 0.15) 100%);
  border: 1px solid rgba(168, 85, 247, 0.2);
  transition: box-shadow 0.3s ease;
}

.cdash-infobox__icon svg {
  width: 18px;
  height: 18px;
  color: rgba(168, 85, 247, 0.85);
}

.cdash-infobox__item:hover .cdash-infobox__icon {
  box-shadow: 0 0 14px rgba(168, 85, 247, 0.25);
}

.cdash-infobox__title {
  font-size: 0.85rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 0.15rem;
}

.cdash-infobox__desc {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
  margin: 0;
  line-height: 1.5;
}

.cdash-infobox__sep {
  width: 1px;
  height: 40px;
  background: rgba(168, 85, 247, 0.1);
  flex-shrink: 0;
  display: none;
}

@media (min-width: 768px) {
  .cdash-infobox__sep {
    display: block;
  }
}

@media (max-width: 767px) {
  .cdash-infobox__sep {
    display: block;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(168, 85, 247, 0.15) 20%, rgba(168, 85, 247, 0.15) 80%, transparent 100%);
  }
}

/* ---- Action Buttons ---- */
.cdash-actions {
  display: flex;
  justify-content: flex-end;
  gap: 0.75rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}

.cdash-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.6rem 1.25rem;
  font-size: 0.82rem;
  font-weight: 600;
  border-radius: 12px;
  cursor: pointer;
  transition:
    background 0.3s ease,
    border-color 0.3s ease,
    color 0.3s ease,
    box-shadow 0.3s ease;
}

.cdash-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.cdash-btn--outline {
  color: rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.cdash-btn--outline:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.2);
}

.cdash-btn--danger {
  color: rgba(239, 68, 68, 0.85);
  background: rgba(239, 68, 68, 0.06);
  border: 1px solid rgba(239, 68, 68, 0.2);
}

.cdash-btn--danger:hover {
  color: #ffffff;
  background: rgba(239, 68, 68, 0.15);
  border-color: rgba(239, 68, 68, 0.4);
  box-shadow: 0 4px 16px rgba(239, 68, 68, 0.15);
}

/* ---- Delete Modal ---- */
.cdash-modal {
  display: inline-block;
  width: 100%;
  max-width: 480px;
  padding: 1.75rem;
  margin: 2rem auto;
  text-align: left;
  vertical-align: middle;
  background: linear-gradient(135deg, rgba(16, 14, 30, 0.95) 0%, rgba(10, 10, 18, 0.9) 100%);
  border: 1px solid rgba(168, 85, 247, 0.15);
  border-radius: 20px;
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  box-shadow:
    0 25px 60px rgba(0, 0, 0, 0.6),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  position: relative;
  z-index: 10;
}

.cdash-modal__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.cdash-modal__title {
  font-size: 1.15rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
}

.cdash-modal__close {
  color: rgba(255, 255, 255, 0.4);
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.25rem;
  border-radius: 8px;
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.cdash-modal__close:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.06);
  transform: rotate(90deg);
}

.cdash-modal__desc {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.6;
  margin: 0 0 1.5rem;
}

.cdash-modal__buttons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.cdash-btn--ghost {
  color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.cdash-btn--ghost:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
}

.cdash-btn--danger-fill {
  color: #ffffff;
  background: rgba(239, 68, 68, 0.8);
  border: 1px solid rgba(239, 68, 68, 0.5);
}

.cdash-btn--danger-fill:hover:not(:disabled) {
  background: rgba(239, 68, 68, 1);
  box-shadow: 0 8px 24px rgba(239, 68, 68, 0.3);
}

/* ---- Responsive ---- */
@media (max-width: 640px) {
  .cdash__inner {
    padding: 2rem 0 3rem;
  }

  .cdash-stat {
    padding: 1rem 1.25rem;
  }

  .cdash-card {
    padding: 1rem 1.25rem;
  }

  .cdash-infobox__inner {
    padding: 1rem 1.25rem;
  }

  .cdash-modal {
    padding: 1.25rem;
    margin: 1rem;
  }

  .cdash-modal__buttons {
    grid-template-columns: 1fr;
  }
}


/* ============================================
   CUSTOMER SIDEBAR â€“ GlasDesign
   ============================================ */

.csidebar {
  background: linear-gradient(135deg, rgba(16, 14, 30, 0.6) 0%, rgba(10, 10, 18, 0.5) 100%);
  border: 1px solid rgba(168, 85, 247, 0.1);
  border-radius: 18px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow:
    0 2px 12px rgba(0, 0, 0, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  overflow: hidden;
  position: relative;
}

/* ---- Header ---- */
.csidebar__header {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid rgba(168, 85, 247, 0.08);
  background: rgba(168, 85, 247, 0.03);
  position: relative;
  z-index: 1;
}

.csidebar__avatar {
  width: 42px;
  height: 42px;
  min-width: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: linear-gradient(
    135deg,
    rgba(183, 80, 255, 0.15) 0%,
    rgba(255, 72, 166, 0.15) 100%
  );
  border: 1px solid rgba(183, 80, 255, 0.2);
}

.csidebar__avatar svg {
  width: 22px;
  height: 22px;
  color: rgba(183, 80, 255, 0.85);
}

.csidebar__user {
  min-width: 0;
}

.csidebar__title {
  font-size: 0.92rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.csidebar__email {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
  margin: 0.2rem 0 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ---- Navigation ---- */
.csidebar__nav {
  list-style: none;
  padding: 0.75rem;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  position: relative;
  z-index: 1;
}

.csidebar__link {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.6rem 0.85rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  border-radius: 12px;
  border: 1px solid transparent;
  background: transparent;
  cursor: pointer;
  width: 100%;
  text-align: left;
  transition:
    color 0.25s ease,
    background 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.25s ease;
}

.csidebar__link:hover {
  color: rgba(255, 255, 255, 0.85);
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.06);
  transform: translateX(3px);
}

/* Active state */
.csidebar__link--active {
  color: #ffffff !important;
  background: rgba(183, 80, 255, 0.1) !important;
  border-color: rgba(183, 80, 255, 0.25) !important;
  box-shadow: 0 0 14px rgba(183, 80, 255, 0.1);
}

.csidebar__link--active .csidebar__link-icon {
  color: rgba(183, 80, 255, 0.9);
  background: rgba(183, 80, 255, 0.15);
  border-color: rgba(183, 80, 255, 0.3);
  box-shadow: 0 0 10px rgba(183, 80, 255, 0.2);
}

/* Logout */
.csidebar__link--logout {
  color: rgba(239, 68, 68, 0.6);
}

.csidebar__link--logout:hover {
  color: rgba(239, 68, 68, 0.9);
  background: rgba(239, 68, 68, 0.06);
  border-color: rgba(239, 68, 68, 0.12);
}

.csidebar__link--logout .csidebar__link-icon {
  color: rgba(239, 68, 68, 0.6);
  background: rgba(239, 68, 68, 0.06);
  border-color: rgba(239, 68, 68, 0.12);
}

.csidebar__link--logout:hover .csidebar__link-icon {
  color: rgba(239, 68, 68, 0.9);
  background: rgba(239, 68, 68, 0.12);
  box-shadow: 0 0 10px rgba(239, 68, 68, 0.15);
}

/* Link Icons */
.csidebar__link-icon {
  width: 32px;
  height: 32px;
  min-width: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.35);
  transition:
    color 0.25s ease,
    background 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.csidebar__link-icon svg {
  width: 16px;
  height: 16px;
}

.csidebar__link:hover .csidebar__link-icon {
  color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.1);
}

/* Balance badge */
.csidebar__link-text {
  flex: 1;
}

.csidebar__link-badge {
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(183, 80, 255, 0.7);
  background: rgba(183, 80, 255, 0.08);
  border: 1px solid rgba(183, 80, 255, 0.15);
  padding: 0.2rem 0.55rem;
  border-radius: 6px;
  margin-left: auto;
  transition: background 0.25s ease, box-shadow 0.25s ease;
}

.csidebar__link:hover .csidebar__link-badge {
  background: rgba(183, 80, 255, 0.14);
  box-shadow: 0 0 10px rgba(183, 80, 255, 0.15);
}

/* Separator */
.csidebar__sep {
  height: 1px;
  margin: 0.35rem 0.5rem;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(168, 85, 247, 0.1) 20%,
    rgba(168, 85, 247, 0.1) 80%,
    transparent 100%
  );
}









/* ============================================
   CUSTOMER BALANCE PAGE
   ============================================ */

/* ---- Balance + Top Up Row ---- */
.cbal-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}

@media (min-width: 768px) {
  .cbal-row {
    grid-template-columns: 1fr 1fr;
  }
}

/* ---- Card Base ---- */
.cbal-card {
  padding: 1.5rem;
  background: linear-gradient(135deg, rgba(22, 20, 40, 0.85) 0%, rgba(16, 14, 30, 0.8) 100%);
  border: 1px solid rgba(168, 85, 247, 0.1);
  border-radius: 16px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow:
    0 2px 12px rgba(0, 0, 0, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  position: relative;
  overflow: hidden;
  transition:
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.cbal-card:hover {
  border-color: rgba(168, 85, 247, 0.3);
  box-shadow:
    0 8px 32px rgba(168, 85, 247, 0.15),
    0 2px 12px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

/* Card Header */
.cbal-card__header {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.cbal-card__icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 11px;
  transition: box-shadow 0.3s ease;
}

.cbal-card__icon svg {
  width: 20px;
  height: 20px;
}

.cbal-card__icon--balance {
  background: rgba(168, 85, 247, 0.1);
  border: 1px solid rgba(168, 85, 247, 0.18);
  color: rgba(168, 85, 247, 0.8);
}

.cbal-card:hover .cbal-card__icon--balance {
  box-shadow: 0 0 14px rgba(168, 85, 247, 0.25);
}

.cbal-card__icon--topup {
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.18);
  color: rgba(34, 197, 94, 0.8);
}

.cbal-card:hover .cbal-card__icon--topup {
  box-shadow: 0 0 14px rgba(34, 197, 94, 0.25);
}

.cbal-card__icon--history {
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.18);
  color: rgba(59, 130, 246, 0.8);
}

.cbal-card__title {
  font-size: 0.92rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
}

.cbal-card__desc {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.4);
  margin: 0.2rem 0 0;
  line-height: 1.5;
}

/* Balance Amount */
.cbal-card__amount {
  font-size: clamp(1.6rem, 3vw, 2rem);
  font-weight: 700;
  color: #ffffff;
  text-shadow: 0 0 20px rgba(168, 85, 247, 0.2);
  position: relative;
  z-index: 1;
}

.cbal-card__body {
  position: relative;
  z-index: 1;
}

.cbal-card__na {
  font-size: 1.1rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.35);
  margin: 0;
}

/* Altcha */
.cbal-altcha {
  margin-bottom: 0.75rem;
}

/* ---- Top Up Amounts ---- */
.cbal-amounts {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.cbal-amount-btn {
  position: relative;
  padding: 0.55rem 1.15rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(168, 85, 247, 0.15);
  border-radius: 12px;
  cursor: pointer;
  transition:
    background 0.3s ease,
    border-color 0.3s ease,
    color 0.3s ease,
    box-shadow 0.3s ease;
}

.cbal-amount-btn:hover:not(:disabled) {
  background: rgba(168, 85, 247, 0.12);
  border-color: rgba(168, 85, 247, 0.35);
  box-shadow: 0 4px 16px rgba(168, 85, 247, 0.2);
}

.cbal-amount-btn:disabled {
  cursor: not-allowed;
}

.cbal-amount-btn__text {
  transition: opacity 0.2s ease;
}

.cbal-amount-btn__spinner {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(168, 85, 247, 0.8);
}

/* ============================================
   TRANSACTION HISTORY
   ============================================ */

.cbal-history {
  margin-top: 0.75rem;
}

.cbal-history__card {
  background: linear-gradient(135deg, rgba(16, 14, 30, 0.6) 0%, rgba(10, 10, 18, 0.5) 100%);
  border: 1px solid rgba(168, 85, 247, 0.1);
  border-radius: 16px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow:
    0 2px 12px rgba(0, 0, 0, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  overflow: hidden;
  position: relative;
}

.cbal-history__header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid rgba(168, 85, 247, 0.08);
  position: relative;
  z-index: 1;
}

.cbal-history__title {
  font-size: 0.92rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
}

.cbal-history__body {
  position: relative;
  z-index: 1;
}

.cbal-history__pagination {
  padding: 1rem 1.5rem;
  border-top: 1px solid rgba(168, 85, 247, 0.08);
  position: relative;
  z-index: 1;
}

/* ---- Empty State ---- */
.cbal-history__empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 3rem 1.5rem;
}

.cbal-history__empty svg {
  width: 40px;
  height: 40px;
  color: rgba(255, 255, 255, 0.15);
}

.cbal-history__empty p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.35);
  margin: 0;
}

/* ---- Table ---- */
.cbal-table-wrap {
  overflow-x: auto;
}

.cbal-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 0.82rem;
}

.cbal-table thead tr {
  border-bottom: 1px solid rgba(168, 85, 247, 0.08);
}

.cbal-table th {
  padding: 0.85rem 1.5rem;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.35);
  background: rgba(168, 85, 247, 0.03);
  white-space: nowrap;
}

.cbal-table tbody tr {
  border-bottom: 1px solid rgba(168, 85, 247, 0.06);
  transition: background 0.2s ease;
}

.cbal-table tbody tr:last-child {
  border-bottom: none;
}

.cbal-table tbody tr:hover {
  background: rgba(168, 85, 247, 0.04);
}

.cbal-table td {
  padding: 0.85rem 1.5rem;
  color: rgba(255, 255, 255, 0.55);
  white-space: nowrap;
}

/* Type Badge */
.cbal-type-badge {
  display: inline-block;
  padding: 0.2rem 0.6rem;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: capitalize;
  color: rgba(168, 85, 247, 0.85);
  background: rgba(168, 85, 247, 0.08);
  border: 1px solid rgba(168, 85, 247, 0.15);
  border-radius: 6px;
}

/* Table Link */
.cbal-table__link {
  color: rgba(168, 85, 247, 0.7);
  text-decoration: none;
  transition: color 0.2s ease, text-shadow 0.2s ease;
}

.cbal-table__link:hover {
  color: rgba(168, 85, 247, 1);
  text-shadow: 0 0 10px rgba(168, 85, 247, 0.3);
}

/* Table Amount */
.cbal-table__amount {
  font-weight: 600;
  color: rgba(255, 255, 255, 0.75);
}

/* ---- Responsive ---- */
@media (max-width: 640px) {
  .cbal-card {
    padding: 1.25rem;
  }

  .cbal-history__header {
    padding: 1rem 1.25rem;
  }

  .cbal-table th,
  .cbal-table td {
    padding: 0.75rem 1rem;
  }

  .cbal-amounts {
    gap: 0.4rem;
  }

  .cbal-amount-btn {
    padding: 0.5rem 0.9rem;
    font-size: 0.82rem;
  }
}


/* ============================================
   CUSTOMER INVOICES / ORDERS
   ============================================ */

.cinv-card {
  background: linear-gradient(135deg, rgba(16, 14, 30, 0.6) 0%, rgba(10, 10, 18, 0.5) 100%);
  border: 1px solid rgba(168, 85, 247, 0.1);
  border-radius: 18px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow:
    0 2px 12px rgba(0, 0, 0, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  overflow: hidden;
  position: relative;
}

/* ---- Card Header ---- */
.cinv-card__header {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid rgba(168, 85, 247, 0.08);
  position: relative;
  z-index: 1;
}

.cinv-card__icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 11px;
  background: rgba(168, 85, 247, 0.1);
  border: 1px solid rgba(168, 85, 247, 0.18);
  color: rgba(168, 85, 247, 0.8);
}

.cinv-card__icon svg {
  width: 20px;
  height: 20px;
}

.cinv-card__title {
  font-size: 0.95rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
}

.cinv-card__subtitle {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.38);
  margin: 0.15rem 0 0;
}

/* ---- Card Body ---- */
.cinv-card__body {
  position: relative;
  z-index: 1;
}

.cinv-card__pagination {
  padding: 1rem 1.5rem;
  border-top: 1px solid rgba(168, 85, 247, 0.08);
  position: relative;
  z-index: 1;
}

/* ---- Empty State ---- */
.cinv-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 3.5rem 1.5rem;
}

.cinv-empty svg {
  width: 48px;
  height: 48px;
  color: rgba(255, 255, 255, 0.12);
}

.cinv-empty p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.35);
  margin: 0;
}

/* ---- Table ---- */
.cinv-table-wrap {
  overflow-x: auto;
}

.cinv-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 0.82rem;
}

.cinv-table thead tr {
  border-bottom: 1px solid rgba(168, 85, 247, 0.08);
}

.cinv-table th {
  padding: 0.85rem 1.5rem;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.35);
  background: rgba(168, 85, 247, 0.03);
  white-space: nowrap;
}

.cinv-table tbody tr {
  border-bottom: 1px solid rgba(168, 85, 247, 0.06);
  transition: background 0.25s ease;
}

.cinv-table tbody tr:last-child {
  border-bottom: none;
}

.cinv-table tbody tr:hover {
  background: rgba(168, 85, 247, 0.04);
}

.cinv-table td {
  padding: 0.95rem 1.5rem;
  color: rgba(255, 255, 255, 0.55);
  white-space: nowrap;
}

/* ---- ID Link ---- */
.cinv-id-link {
  font-weight: 600;
  color: rgba(168, 85, 247, 0.75);
  text-decoration: none;
  transition: color 0.2s ease, text-shadow 0.2s ease;
}

.cinv-id-link:hover {
  color: rgba(168, 85, 247, 1);
  text-shadow: 0 0 12px rgba(168, 85, 247, 0.35);
}

/* ---- Status Badge ---- */
.cinv-status {
  display: inline-block;
  padding: 0.25rem 0.65rem;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: capitalize;
  border-radius: 6px;
  border: 1px solid;
}

.cinv-status--pending {
  color: rgba(234, 179, 8, 0.9);
  background: rgba(234, 179, 8, 0.1);
  border-color: rgba(234, 179, 8, 0.2);
}

.cinv-status--confirming {
  color: rgba(59, 130, 246, 0.9);
  background: rgba(59, 130, 246, 0.1);
  border-color: rgba(59, 130, 246, 0.2);
}

.cinv-status--partially_completed {
  color: rgba(234, 179, 8, 0.9);
  background: rgba(234, 179, 8, 0.1);
  border-color: rgba(234, 179, 8, 0.2);
}

.cinv-status--completed {
  color: rgba(34, 197, 94, 0.9);
  background: rgba(34, 197, 94, 0.1);
  border-color: rgba(34, 197, 94, 0.2);
}

.cinv-status--out_of_stock {
  color: rgba(249, 115, 22, 0.9);
  background: rgba(249, 115, 22, 0.1);
  border-color: rgba(249, 115, 22, 0.2);
}

.cinv-status--refunded {
  color: rgba(20, 184, 166, 0.9);
  background: rgba(20, 184, 166, 0.1);
  border-color: rgba(20, 184, 166, 0.2);
}

/* Date below status */
.cinv-date {
  display: block;
  margin-top: 0.3rem;
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.28);
}

/* ---- Product ---- */
.cinv-product {
  color: rgba(255, 255, 255, 0.6);
  max-width: 250px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
}

.cinv-product__more {
  color: rgba(255, 255, 255, 0.35);
  font-style: italic;
}

.cinv-product__deleted {
  color: rgba(239, 68, 68, 0.6);
}

/* ---- Price ---- */
.cinv-price {
  font-weight: 700;
  color: rgba(255, 255, 255, 0.75);
}

/* ---- Action Button/Link ---- */
.cinv-action {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(168, 85, 247, 0.8);
  background: rgba(168, 85, 247, 0.06);
  border: 1px solid rgba(168, 85, 247, 0.15);
  border-radius: 8px;
  text-decoration: none;
  cursor: pointer;
  transition:
    background 0.25s ease,
    border-color 0.25s ease,
    color 0.25s ease,
    box-shadow 0.25s ease;
}

.cinv-action svg {
  width: 14px;
  height: 14px;
}

.cinv-action:hover {
  color: #ffffff;
  background: rgba(168, 85, 247, 0.15);
  border-color: rgba(168, 85, 247, 0.35);
  box-shadow: 0 4px 14px rgba(168, 85, 247, 0.18);
}

/* ---- Responsive ---- */
@media (max-width: 640px) {
  .cinv-card__header {
    padding: 1rem 1.25rem;
  }

  .cinv-table th,
  .cinv-table td {
    padding: 0.75rem 1rem;
  }

  .cinv-product {
    max-width: 160px;
  }
}

/* ============================================
   CUSTOMER TICKETS LIST
   ============================================ */

/* Info banner */
.ctick-info {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.08) 0%, rgba(139, 92, 246, 0.04) 100%);
  border: 1px solid rgba(168, 85, 247, 0.15);
  border-radius: 12px;
  margin-bottom: 1.5rem;
}

.ctick-info__icon {
  flex-shrink: 0;
  color: rgba(168, 85, 247, 0.8);
  font-size: 0.875rem;
  margin-top: 0.15rem;
}

.ctick-info__text {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.5;
}

.ctick-info__link {
  color: rgba(168, 85, 247, 0.9);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.ctick-info__link:hover {
  color: #c084fc;
}

/* Tickets card */
.ctick-card {
  background: linear-gradient(135deg, rgba(22, 20, 40, 0.85) 0%, rgba(16, 14, 30, 0.8) 100%);
  border: 1px solid rgba(168, 85, 247, 0.1);
  border-radius: 16px;
  backdrop-filter: blur(12px);
  overflow: hidden;
}

.ctick-card__header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid rgba(168, 85, 247, 0.08);
}

.ctick-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 10px;
  background: rgba(168, 85, 247, 0.1);
  color: #a855f7;
  font-size: 0.875rem;
  flex-shrink: 0;
}

.ctick-card__title {
  font-size: 1rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.95);
}

.ctick-card__subtitle {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 0.1rem;
}

.ctick-card__body {
  padding: 0;
}

/* Table */
.ctick-table-wrap {
  overflow-x: auto;
}

.ctick-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.8125rem;
}

.ctick-table thead th {
  padding: 0.875rem 1.5rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.45);
  background: rgba(168, 85, 247, 0.04);
  border-bottom: 1px solid rgba(168, 85, 247, 0.08);
  white-space: nowrap;
}

.ctick-table tbody tr {
  border-bottom: 1px solid rgba(168, 85, 247, 0.06);
  transition: background 0.2s ease;
}

.ctick-table tbody tr:last-child {
  border-bottom: none;
}

.ctick-table tbody tr:hover {
  background: rgba(168, 85, 247, 0.04);
}

.ctick-table td {
  padding: 0.875rem 1.5rem;
  color: rgba(255, 255, 255, 0.7);
  white-space: nowrap;
}

.ctick-subject-link {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.ctick-subject-link:hover {
  color: #a855f7;
}

/* Status badges */
.ctick-status {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.625rem;
  border-radius: 6px;
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: capitalize;
  letter-spacing: 0.02em;
}

.ctick-status--pending {
  background: rgba(234, 179, 8, 0.15);
  color: #facc15;
  border: 1px solid rgba(234, 179, 8, 0.2);
}

.ctick-status--open {
  background: rgba(59, 130, 246, 0.15);
  color: #60a5fa;
  border: 1px solid rgba(59, 130, 246, 0.2);
}

.ctick-status--closed {
  background: rgba(34, 197, 94, 0.15);
  color: #4ade80;
  border: 1px solid rgba(34, 197, 94, 0.2);
}

/* Empty state */
.ctick-empty {
  padding: 3rem 1.5rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.875rem;
}

/* Pagination */
.ctick-card__pagination {
  padding: 1rem 1.5rem;
  border-top: 1px solid rgba(168, 85, 247, 0.08);
}

/* Responsive */
@media (max-width: 768px) {
  .ctick-card__header {
    padding: 1rem 1.25rem;
  }

  .ctick-table thead th,
  .ctick-table td {
    padding: 0.75rem 1rem;
  }
}


/* ============================================
   CUSTOMER TICKET DETAIL
   ============================================ */

/* Ticket info card */
.ctick-detail-card {
  background: linear-gradient(135deg, rgba(22, 20, 40, 0.85) 0%, rgba(16, 14, 30, 0.8) 100%);
  border: 1px solid rgba(168, 85, 247, 0.1);
  border-radius: 16px;
  backdrop-filter: blur(12px);
  padding: 1.25rem 1.5rem;
  margin-bottom: 1.5rem;
}

.ctick-detail-card__subject {
  font-size: 1.125rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.95);
  margin: 0 0 0.75rem 0;
  max-width: 32rem;
  word-break: break-word;
}

.ctick-detail-card__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
}

.ctick-detail-card__badge {
  display: inline-flex;
  align-items: center;
  padding: 0.3rem 0.75rem;
  border-radius: 8px;
  font-size: 0.75rem;
  font-weight: 500;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.ctick-detail-card__badge--link {
  text-decoration: none;
  transition: all 0.2s ease;
}

.ctick-detail-card__badge--link:hover {
  background: rgba(168, 85, 247, 0.1);
  border-color: rgba(168, 85, 247, 0.2);
  color: #c084fc;
}

.ctick-detail-card__badge--pending {
  background: rgba(234, 179, 8, 0.12);
  color: #facc15;
  border-color: rgba(234, 179, 8, 0.2);
}

.ctick-detail-card__badge--open {
  background: rgba(59, 130, 246, 0.12);
  color: #60a5fa;
  border-color: rgba(59, 130, 246, 0.2);
}

.ctick-detail-card__badge--closed {
  background: rgba(34, 197, 94, 0.12);
  color: #4ade80;
  border-color: rgba(34, 197, 94, 0.2);
}

/* Chat container */
.ctick-chat {
  background: linear-gradient(135deg, rgba(22, 20, 40, 0.85) 0%, rgba(16, 14, 30, 0.8) 100%);
  border: 1px solid rgba(168, 85, 247, 0.1);
  border-radius: 16px;
  backdrop-filter: blur(12px);
  overflow: hidden;
  position: relative;
}

.ctick-chat__messages {
  height: calc(100vh - 440px);
  min-height: 300px;
  overflow-y: auto;
  padding: 1.5rem;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.ctick-chat__messages::-webkit-scrollbar {
  display: none;
}

/* Message */
.ctick-msg {
  margin-bottom: 1rem;
}

.ctick-msg:last-child {
  margin-bottom: 0;
}

.ctick-msg__row {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.ctick-msg__row--reverse {
  flex-direction: row-reverse;
}

/* Avatars */
.ctick-msg__avatar-wrap {
  flex-shrink: 0;
}

.ctick-msg__avatar-img {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: rgba(168, 85, 247, 0.1);
  object-fit: scale-down;
  padding: 0.2rem;
}

.ctick-msg__avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: rgba(168, 85, 247, 0.1);
  color: #a855f7;
}

.ctick-msg__avatar--customer {
  background: rgba(139, 92, 246, 0.12);
  color: #c084fc;
}

.ctick-msg__avatar-svg {
  width: 1.375rem;
  height: 1.375rem;
}

/* Content */
.ctick-msg__content {
  flex: 1;
  min-width: 0;
}

.ctick-msg__content--right {
  text-align: right;
}

.ctick-msg__header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
}

.ctick-msg__header--reverse {
  flex-direction: row-reverse;
}

.ctick-msg__sender {
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}

.ctick-msg__sender--customer {
  color: #a855f7;
}

.ctick-msg__time {
  font-size: 0.625rem;
  color: rgba(255, 255, 255, 0.35);
}

.ctick-msg__body {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 0.5rem;
}

.ctick-msg__text {
  flex: 1;
  overflow: visible;
  white-space: normal;
  overflow-wrap: anywhere;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.55;
  margin: 0;
}

/* Input area */
.ctick-chat__input-area {
  border-top: 1px solid rgba(168, 85, 247, 0.08);
  background: rgba(168, 85, 247, 0.03);
  padding: 1rem 1.5rem;
}

.ctick-chat__input-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  position: relative;
}

.ctick-chat__textarea {
  flex: 1;
  padding: 0.625rem 1rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(168, 85, 247, 0.12);
  border-radius: 10px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.8125rem;
  resize: none;
  max-height: 6rem;
  scrollbar-width: none;
  -ms-overflow-style: none;
  outline: none;
  transition: border-color 0.2s ease;
}

.ctick-chat__textarea::-webkit-scrollbar {
  display: none;
}

.ctick-chat__textarea:focus {
  border-color: rgba(168, 85, 247, 0.4);
  box-shadow: 0 0 0 2px rgba(168, 85, 247, 0.1);
}

.ctick-chat__textarea::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.ctick-chat__send-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.625rem 1rem;
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.2) 0%, rgba(139, 92, 246, 0.15) 100%);
  border: 1px solid rgba(168, 85, 247, 0.25);
  border-radius: 10px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.8125rem;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.ctick-chat__send-btn:hover:not(:disabled) {
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.3) 0%, rgba(139, 92, 246, 0.25) 100%);
  border-color: rgba(168, 85, 247, 0.4);
}

.ctick-chat__send-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.ctick-chat__send-text {
  display: none;
}

.ctick-chat__error {
  position: absolute;
  left: 0;
  top: 100%;
  margin-top: 0.25rem;
  font-size: 0.75rem;
  color: #f87171;
}

.ctick-chat__closed-msg {
  text-align: center;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.45);
  margin: 0;
}

@media (min-width: 1280px) {
  .ctick-chat__send-text {
    display: inline;
  }
}


/* ============================================
   CUSTOMER AFFILIATE
   ============================================ */

.caff-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .caff-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* Card */
.caff-card {
  background: linear-gradient(135deg, rgba(22, 20, 40, 0.85) 0%, rgba(16, 14, 30, 0.8) 100%);
  border: 1px solid rgba(168, 85, 247, 0.1);
  border-radius: 16px;
  backdrop-filter: blur(12px);
  padding: 1.25rem 1.5rem;
  display: flex;
  flex-direction: column;
}

.caff-card__header {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.caff-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 10px;
  background: rgba(168, 85, 247, 0.1);
  color: #a855f7;
  font-size: 0.875rem;
  flex-shrink: 0;
}

.caff-card__title {
  font-size: 1rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.95);
  margin: 0;
}

.caff-card__desc {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.5);
  margin: 0.25rem 0 0 0;
  line-height: 1.5;
}

.caff-card__value {
  font-size: 1.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, #a855f7, #c026d3);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: auto 0 0 0;
}

/* Link row */
.caff-link-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: auto;
}

.caff-link-row__url {
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  text-align: left;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  transition: color 0.2s ease;
}

.caff-link-row__url:hover {
  color: #a855f7;
}

.caff-link-row__copied {
  font-size: 0.875rem;
  font-weight: 500;
  color: #a855f7;
  flex-shrink: 0;
}

/* Action links */
.caff-action {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  background: linear-gradient(135deg, rgba(16, 14, 30, 0.6) 0%, rgba(10, 10, 18, 0.5) 100%);
  border: 1px solid rgba(168, 85, 247, 0.1);
  border-radius: 12px;
  backdrop-filter: blur(12px);
  text-decoration: none;
  transition: all 0.25s ease;
}

.caff-action:hover {
  background: rgba(168, 85, 247, 0.08);
  border-color: rgba(168, 85, 247, 0.2);
}

.caff-action__label {
  font-size: 0.9375rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
}

.caff-action__arrow {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
  transition: color 0.2s ease;
}

.caff-action:hover .caff-action__arrow {
  color: #a855f7;
}

/* Referred Users */
.caff-referred {
  background: linear-gradient(135deg, rgba(22, 20, 40, 0.85) 0%, rgba(16, 14, 30, 0.8) 100%);
  border: 1px solid rgba(168, 85, 247, 0.1);
  border-radius: 16px;
  backdrop-filter: blur(12px);
  overflow: hidden;
}

.caff-referred__header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid rgba(168, 85, 247, 0.08);
}

.caff-referred__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 10px;
  background: rgba(168, 85, 247, 0.1);
  color: #a855f7;
  font-size: 0.875rem;
  flex-shrink: 0;
}

.caff-referred__title {
  font-size: 1rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.95);
  margin: 0;
}

.caff-referred__subtitle {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.45);
  margin: 0.1rem 0 0 0;
}

.caff-referred__body {
  padding: 0;
}

.caff-referred__empty {
  padding: 3rem 1.5rem;
  text-align: center;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.4);
  margin: 0;
}

.caff-referred__pagination {
  padding: 1rem 1.5rem;
  border-top: 1px solid rgba(168, 85, 247, 0.08);
}

/* Table */
.caff-table-wrap {
  overflow-x: auto;
}

.caff-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.8125rem;
  text-align: left;
}

.caff-table thead th {
  padding: 0.875rem 1.5rem;
  font-weight: 600;
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.45);
  background: rgba(168, 85, 247, 0.04);
  border-bottom: 1px solid rgba(168, 85, 247, 0.08);
  white-space: nowrap;
}

.caff-table tbody tr {
  border-bottom: 1px solid rgba(168, 85, 247, 0.06);
  transition: background 0.2s ease;
}

.caff-table tbody tr:last-child {
  border-bottom: none;
}

.caff-table tbody tr:hover {
  background: rgba(168, 85, 247, 0.04);
}

.caff-table td {
  padding: 0.875rem 1.5rem;
  color: rgba(255, 255, 255, 0.7);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .caff-card {
    padding: 1rem 1.125rem;
  }

  .caff-referred__header {
    padding: 1rem 1.25rem;
  }

  .caff-table thead th,
  .caff-table td {
    padding: 0.75rem 1rem;
  }
}


/* ============================================
   MAINTENANCE PAGE
   ============================================ */

.maint {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  overflow: hidden;
  padding: 2rem 1rem;
}

/* Background canvas (removed â€“ sphere is inline now) */
.maint__canvas {
  display: none;
}

/* ---- Content ---- */
.maint__content {
  position: relative;
  z-index: 2;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  max-width: 560px;
}

/* ============================================
   PARTICLE SPHERE (above text)
   ============================================ */

.maint__sphere-wrap {
  width: 260px;
  height: 260px;
  margin-bottom: 0.5rem;
  position: relative;
}

.maint__sphere-canvas {
  width: 100%;
  height: 100%;
  display: block;
  cursor: default;
  pointer-events: auto;
}

/* ---- Eyebrow ---- */
.maint__eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.35);
  margin: 0;
}

/* ---- Title ---- */
.maint__title {
  font-size: clamp(2rem, 6vw, 3.2rem);
  font-weight: 800;
  color: #ffffff;
  margin: 0;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.maint__title-accent {
  background: linear-gradient(135deg, rgba(183, 80, 255, 1) 0%, rgba(255, 72, 166, 1) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ---- Subtitle ---- */
.maint__subtitle {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.38);
  margin: 0;
  line-height: 1.6;
}

.maint__br-desktop {
  display: none;
}

/* ---- Admin Button ---- */
.maint__actions {
  margin-top: 0.75rem;
}

.maint__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.65rem 1.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: 14px;
  text-decoration: none;
  cursor: pointer;
  color: rgba(183, 80, 255, 0.9);
  background: rgba(183, 80, 255, 0.06);
  border: 1px solid rgba(183, 80, 255, 0.2);
  transition:
    background 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease,
    transform 0.3s ease,
    color 0.3s ease;
}

.maint__btn:hover {
  color: #ffffff;
  background: rgba(183, 80, 255, 0.12);
  border-color: rgba(183, 80, 255, 0.35);
  box-shadow:
    0 4px 20px rgba(183, 80, 255, 0.2),
    0 0 30px rgba(183, 80, 255, 0.1);
  transform: translateY(-2px);
}

.maint__btn i {
  font-size: 14px;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (min-width: 768px) {
  .maint__br-desktop {
    display: block;
  }

  .maint__subtitle {
    font-size: 1.05rem;
  }
}

@media (max-width: 640px) {
  .maint {
    min-height: calc(100vh - 2rem);
    padding: 1.5rem 1rem;
  }

  .maint__content {
    gap: 0.75rem;
  }

  .maint__sphere-wrap {
    width: 180px;
    height: 180px;
  }

  .maint__subtitle {
    font-size: 0.9rem;
  }

  .maint__btn {
    padding: 0.6rem 1.25rem;
    font-size: 0.82rem;
  }
}







/* ============================================
   MAINTENANCE PAGE
   ============================================ */

.maint {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  overflow: hidden;
  padding: 2rem 1rem;
}

/* Background canvas (unused) */
.maint__canvas {
  display: none;
}

/* ---- Content ---- */
.maint__content {
  position: relative;
  z-index: 2;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  max-width: 560px;
}

/* ============================================
   PARTICLE SPHERE
   ============================================ */

.maint__sphere-wrap {
  width: 260px;
  height: 260px;
  margin-bottom: 0.25rem;
  position: relative;
}

.maint__sphere-canvas {
  width: 100%;
  height: 100%;
  display: block;
  cursor: default;
  pointer-events: auto;
}

/* ---- Title ---- */
.maint__title {
  font-size: clamp(2rem, 6vw, 3.2rem);
  font-weight: 800;
  color: #ffffff;
  margin: 0;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.maint__title-accent {
  background: linear-gradient(135deg, rgba(183, 80, 255, 1) 0%, rgba(255, 72, 166, 1) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ---- Buttons ---- */
.maint__actions {
  display: flex;
  gap: 0.75rem;
  margin-top: 0.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.maint__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: 14px;
  text-decoration: none;
  cursor: pointer;
  transition:
    background 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease,
    transform 0.3s ease,
    color 0.3s ease;
}

.maint__btn i {
  font-size: 16px;
}

/* Ghost button (Admin Access) */
.maint__btn--ghost {
  color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.maint__btn--ghost:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

/* Discord button */
.maint__btn--discord {
  color: #ffffff;
  background: rgba(88, 101, 242, 0.2);
  border: 1px solid rgba(88, 101, 242, 0.35);
}

.maint__btn--discord:hover {
  background: rgba(88, 101, 242, 0.35);
  border-color: rgba(88, 101, 242, 0.55);
  box-shadow:
    0 4px 20px rgba(88, 101, 242, 0.25),
    0 0 30px rgba(88, 101, 242, 0.1);
  transform: translateY(-2px);
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 640px) {
  .maint {
    min-height: calc(100vh - 2rem);
    padding: 1.5rem 1rem;
  }

  .maint__content {
    gap: 1rem;
  }

  .maint__sphere-wrap {
    width: 180px;
    height: 180px;
  }

  .maint__actions {
    flex-direction: column;
    align-items: center;
  }

  .maint__btn {
    width: 100%;
    max-width: 220px;
    justify-content: center;
    padding: 0.6rem 1.25rem;
    font-size: 0.82rem;
  }
}




/* ============================================
   MAINTENANCE LOGIN MODAL
   ============================================ */

.maint-modal {
  position: relative;
  display: inline-block;
  width: 100%;
  max-width: 420px;
  margin: 2rem 0;
  padding: 0;
  text-align: left;
  vertical-align: middle;
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(8, 9, 12, 0.85);
  backdrop-filter: blur(30px) saturate(1.4);
  -webkit-backdrop-filter: blur(30px) saturate(1.4);
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.5),
    0 0 40px rgba(0, 0, 0, 0.3),
    inset 0 0 40px rgba(255, 255, 255, 0.04);
}

/* ---- Header ---- */
.maint-modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 20px 24px;
}

.maint-modal__header-left {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.maint-modal__icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(183, 80, 255, 0.08);
  border: 1px solid rgba(183, 80, 255, 0.15);
  flex-shrink: 0;
}

.maint-modal__icon i {
  font-size: 16px;
  color: rgba(183, 80, 255, 0.8);
}

.maint-modal__title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
  line-height: 1.2;
}

.maint-modal__desc {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.35);
  margin: 2px 0 0 0;
  line-height: 1.3;
}

/* ---- Close Button ---- */
.maint-modal__close {
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  border: none;
  background: rgba(255, 255, 255, 0.04);
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
  flex-shrink: 0;
  padding: 0;
}

.maint-modal__close svg {
  width: 18px;
  height: 18px;
  color: rgba(255, 255, 255, 0.4);
  transition: color 0.2s ease;
}

.maint-modal__close:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: scale(1.05);
}

.maint-modal__close:hover svg {
  color: rgba(255, 255, 255, 0.7);
}

/* ---- Divider ---- */
.maint-modal__divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.06);
  margin: 0;
}

/* ---- Form ---- */
.maint-modal__form {
  padding: 20px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.maint-modal__field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.maint-modal__label {
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.02em;
}

/* ---- Input with Icon ---- */
.maint-modal__input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.maint-modal__input-icon {
  position: absolute;
  left: 14px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.25);
  pointer-events: none;
  z-index: 1;
}

.maint-modal__input {
  width: 100%;
  padding: 10px 14px 10px 40px;
  font-size: 0.88rem;
  font-weight: 500;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  outline: none;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.maint-modal__input::placeholder {
  color: rgba(255, 255, 255, 0.25);
  font-weight: 400;
}

.maint-modal__input:focus {
  border-color: rgba(183, 80, 255, 0.4);
  background: rgba(255, 255, 255, 0.06);
  box-shadow:
    0 0 0 3px rgba(183, 80, 255, 0.1),
    0 0 20px rgba(183, 80, 255, 0.06);
}

/* ---- Error ---- */
.maint-modal__error {
  font-size: 0.78rem;
  font-weight: 500;
  color: rgba(239, 68, 68, 0.9);
  margin: 2px 0 0 0;
}

/* ---- Submit Button ---- */
.maint-modal__submit {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 11px 1.5rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: #ffffff;
  background: linear-gradient(135deg, rgba(183, 80, 255, 0.85), rgba(255, 72, 166, 0.85));
  border: 1px solid rgba(183, 80, 255, 0.4);
  border-radius: 12px;
  cursor: pointer;
  transition: background 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 20px rgba(183, 80, 255, 0.2);
}

.maint-modal__submit:hover:enabled {
  background: linear-gradient(135deg, rgba(183, 80, 255, 1), rgba(255, 72, 166, 1));
  box-shadow:
    0 8px 30px rgba(183, 80, 255, 0.35),
    0 0 40px rgba(183, 80, 255, 0.15);
  transform: translateY(-1px);
}

.maint-modal__submit:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.maint-modal__submit i {
  font-size: 14px;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 640px) {
  .maint-modal {
    max-width: 100%;
    margin: 1rem 0;
    border-radius: 16px;
  }

  .maint-modal__header {
    padding: 16px 18px;
  }

  .maint-modal__form {
    padding: 16px 18px 20px;
  }

  .maint-modal__icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
  }

  .maint-modal__icon i {
    font-size: 14px;
  }

  .maint-modal__title {
    font-size: 0.95rem;
  }

  .maint-modal__input {
    padding: 9px 12px 9px 36px;
    font-size: 0.85rem;
    border-radius: 10px;
  }

  .maint-modal__submit {
    padding: 10px 1.25rem;
    border-radius: 10px;
    font-size: 0.85rem;
  }
}


/* ============================================
   RESELLING PAGE
   ============================================ */

.rsl {
  position: relative;
  max-width: 100%;
  margin: 0 auto;
  padding: 2.5rem 0 4rem;
}

/* ── Red Glow ── */
.rsl__glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: visible;
}

.rsl__glow-orb {
  position: absolute;
  border-radius: 9999px;
  filter: blur(100px);
  will-change: transform, opacity;
}

.rsl__glow-orb--1 {
  width: 550px;
  height: 550px;
  top: -2%;
  left: 8%;
  background: rgba(239, 68, 68, 0.28);
  animation: rslGlow1 9s ease-in-out infinite;
}

.rsl__glow-orb--2 {
  width: 450px;
  height: 450px;
  top: -1%;
  right: 8%;
  background: rgba(248, 113, 113, 0.22);
  animation: rslGlow2 12s ease-in-out infinite;
}

.rsl__glow-orb--3 {
  width: 650px;
  height: 350px;
  top: 1%;
  left: 25%;
  background: rgba(220, 38, 38, 0.18);
  animation: rslGlow3 10s ease-in-out infinite;
}

.rsl__glow-orb--4 {
  width: 380px;
  height: 380px;
  top: 18%;
  left: 2%;
  background: rgba(248, 113, 113, 0.14);
  animation: rslGlow4 14s ease-in-out infinite;
}

.rsl__glow-orb--5 {
  width: 320px;
  height: 480px;
  top: 16%;
  right: 5%;
  background: rgba(239, 68, 68, 0.16);
  animation: rslGlow5 8s ease-in-out infinite;
}

@keyframes rslGlow1 {
  0%, 100% { transform: scale(1); opacity: 1; }
  30%      { transform: scale(0.75); opacity: 0.6; }
  70%      { transform: scale(1.1); opacity: 0.85; }
}

@keyframes rslGlow2 {
  0%, 100% { transform: scale(1); opacity: 0.85; }
  40%      { transform: scale(1.15); opacity: 1; }
  80%      { transform: scale(0.8); opacity: 0.55; }
}

@keyframes rslGlow3 {
  0%, 100% { transform: scale(1); opacity: 0.8; }
  50%      { transform: scale(0.85); opacity: 0.5; }
}

@keyframes rslGlow4 {
  0%, 100% { transform: scale(1); opacity: 0.85; }
  35%      { transform: scale(0.65); opacity: 0.5; }
  65%      { transform: scale(1.1); opacity: 1; }
}

@keyframes rslGlow5 {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%      { transform: scale(1.2); opacity: 0.6; }
}

/* ── Fade-in animation (sections) ── */
.rsl__fade-in {
  opacity: 0;
  transform: translateY(30px) scale(0.98);
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.rsl__fade-in--visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* ── Stagger children (tier cards, plan cards) ── */
.rsl__stagger {
  opacity: 0;
  transform: translateY(20px) scale(0.96);
  transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: calc(var(--stagger, 0) * 0.12s);
}

.rsl__stagger--revealed {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* ── Header ── */
.rsl__header {
  position: relative;
  z-index: 1;
  text-align: center;
  margin-bottom: 3rem;
}

.rsl__eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.rsl__eyebrow-line {
  width: 2rem;
  height: 1px;
  background: rgba(239, 68, 68, 0.5);
}

.rsl__eyebrow-text {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #ef4444;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.rsl__title {
  font-size: 2.5rem;
  font-weight: 800;
  color: #fff;
  margin: 0 0 0.5rem;
  letter-spacing: -0.02em;
}

.rsl__subtitle {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.55);
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ═══════════════════════════
   RESELLER TIERS
   ═══════════════════════════ */

.rsl__tiers {
  position: relative;
  z-index: 1;
  margin-bottom: 4rem;
}

.rsl__tiers-grid {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .rsl__tiers-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .rsl__tiers-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* -- Tier Card -- */
.rsl__tier {
  position: relative;
}

.rsl__tier-inner {
  position: relative;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: 2rem 1.75rem;
  text-align: center;
  transition: border-color 0.35s ease, transform 0.35s ease, box-shadow 0.35s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.rsl__tier-inner:hover {
  border-color: rgba(239, 68, 68, 0.18);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(239, 68, 68, 0.08);
}

/* Featured tier (Pro) */
.rsl__tier--featured .rsl__tier-inner {
  border-color: rgba(239, 68, 68, 0.25);
  background: rgba(239, 68, 68, 0.04);
  box-shadow: 0 0 50px rgba(239, 68, 68, 0.06);
}

.rsl__tier--featured .rsl__tier-inner:hover {
  border-color: rgba(239, 68, 68, 0.35);
  box-shadow: 0 12px 60px rgba(239, 68, 68, 0.12);
}

.rsl__tier-ribbon {
  position: absolute;
  top: 12px;
  right: 12px;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  padding: 0.2rem 0.65rem;
  background: linear-gradient(135deg, #ef4444, #dc2626);
  border-radius: 6px;
  z-index: 2;
  box-shadow: 0 2px 12px rgba(239, 68, 68, 0.3);
}

.rsl__tier-badge {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0.75rem;
  text-transform: uppercase;
}

.rsl__tier-badge--starter { color: rgba(255, 255, 255, 0.6); }
.rsl__tier-badge--pro     { color: #ef4444; }
.rsl__tier-badge--master  { color: #f59e0b; }

.rsl__tier-discount {
  font-size: 3.5rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  margin-bottom: 0.25rem;
}

.rsl__tier-pct {
  font-size: 1.5rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.5);
  margin-left: 2px;
}

.rsl__tier-discount-label {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 1.25rem;
}

.rsl__tier-divider {
  width: 60%;
  height: 1px;
  background: rgba(255, 255, 255, 0.06);
  margin: 0 auto 1.25rem;
}

.rsl__tier-deposit {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin-bottom: 1.5rem;
}

.rsl__tier-deposit-label {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.rsl__tier-deposit-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
}

.rsl__tier-perks {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
  width: 100%;
}

.rsl__tier-perks li {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
  padding: 0.45rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.rsl__tier-perks li i {
  font-size: 0.7rem;
  color: #ef4444;
  flex-shrink: 0;
}

/* -- CTA Box -- */
.rsl__cta {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px dashed rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
  transition: border-color 0.3s ease;
}

.rsl__cta:hover {
  border-color: rgba(255, 255, 255, 0.15);
}

.rsl__cta > i {
  font-size: 1.25rem;
  color: rgba(239, 68, 68, 0.6);
  margin-top: 2px;
  flex-shrink: 0;
}

.rsl__cta strong {
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  display: block;
  margin-bottom: 0.25rem;
}

.rsl__cta p {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.35);
  line-height: 1.5;
  margin: 0;
}

/* ── Responsive ── */
@media (max-width: 640px) {
  .rsl__title {
    font-size: 1.85rem;
  }

  .rsl__subtitle {
    font-size: 0.9rem;
  }

  .rsl__tier-discount {
    font-size: 2.75rem;
  }

  .rsl__cta {
    flex-direction: column;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
  }
}


/* ============================================
   MEDIA PROGRAM PAGE
   ============================================ */

.mpr {
  position: relative;
  max-width: 100%;
  margin: 0 auto;
  padding: 2.5rem 0 4rem;
}

/* ── Yellow Glow ── */
.mpr__glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: visible;
}

.mpr__glow-orb {
  position: absolute;
  border-radius: 9999px;
  filter: blur(100px);
  will-change: transform, opacity;
}

.mpr__glow-orb--1 {
  width: 550px;
  height: 550px;
  top: -2%;
  left: 8%;
  background: rgba(234, 179, 8, 0.26);
  animation: mprGlow1 9s ease-in-out infinite;
}

.mpr__glow-orb--2 {
  width: 450px;
  height: 450px;
  top: -1%;
  right: 8%;
  background: rgba(250, 204, 21, 0.20);
  animation: mprGlow2 12s ease-in-out infinite;
}

.mpr__glow-orb--3 {
  width: 650px;
  height: 350px;
  top: 1%;
  left: 25%;
  background: rgba(202, 138, 4, 0.16);
  animation: mprGlow3 10s ease-in-out infinite;
}

.mpr__glow-orb--4 {
  width: 380px;
  height: 380px;
  top: 18%;
  left: 2%;
  background: rgba(250, 204, 21, 0.12);
  animation: mprGlow4 14s ease-in-out infinite;
}

.mpr__glow-orb--5 {
  width: 320px;
  height: 480px;
  top: 16%;
  right: 5%;
  background: rgba(234, 179, 8, 0.14);
  animation: mprGlow5 8s ease-in-out infinite;
}

@keyframes mprGlow1 {
  0%, 100% { transform: scale(1); opacity: 1; }
  30%      { transform: scale(0.75); opacity: 0.6; }
  70%      { transform: scale(1.1); opacity: 0.85; }
}

@keyframes mprGlow2 {
  0%, 100% { transform: scale(1); opacity: 0.85; }
  40%      { transform: scale(1.15); opacity: 1; }
  80%      { transform: scale(0.8); opacity: 0.55; }
}

@keyframes mprGlow3 {
  0%, 100% { transform: scale(1); opacity: 0.8; }
  50%      { transform: scale(0.85); opacity: 0.5; }
}

@keyframes mprGlow4 {
  0%, 100% { transform: scale(1); opacity: 0.85; }
  35%      { transform: scale(0.65); opacity: 0.5; }
  65%      { transform: scale(1.1); opacity: 1; }
}

@keyframes mprGlow5 {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%      { transform: scale(1.2); opacity: 0.6; }
}

/* ── Fade-in ── */
.mpr__fade-in {
  opacity: 0;
  transform: translateY(30px) scale(0.98);
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.mpr__fade-in--visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* ── Stagger ── */
.mpr__stagger {
  opacity: 0;
  transform: translateY(20px) scale(0.96);
  transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: calc(var(--stagger, 0) * 0.12s);
}

.mpr__stagger--revealed {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* ── Header ── */
.mpr__header {
  position: relative;
  z-index: 1;
  text-align: center;
  margin-bottom: 3rem;
}

.mpr__eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.mpr__eyebrow-line {
  width: 2rem;
  height: 1px;
  background: rgba(234, 179, 8, 0.5);
}

.mpr__eyebrow-text {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #eab308;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.mpr__title {
  font-size: 2.5rem;
  font-weight: 800;
  color: #fff;
  margin: 0 0 0.5rem;
  letter-spacing: -0.02em;
}

.mpr__subtitle {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.55);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ═══════════════════════════
   INFO CARDS (Requirements + Benefits)
   ═══════════════════════════ */

.mpr__info {
  position: relative;
  z-index: 1;
  margin-bottom: 3.5rem;
}

.mpr__info-grid {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .mpr__info-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* -- Card -- */
.mpr__card {
  position: relative;
}

.mpr__card-inner {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: 1.75rem;
  height: 100%;
  transition: border-color 0.35s ease, transform 0.35s ease, box-shadow 0.35s ease;
}

.mpr__card-inner:hover {
  border-color: rgba(234, 179, 8, 0.18);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(234, 179, 8, 0.06);
}

.mpr__card-header {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1rem;
}

.mpr__card-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.mpr__card-icon--yellow { background: rgba(234, 179, 8, 0.12); color: #eab308; }
.mpr__card-icon--green  { background: rgba(34, 197, 94, 0.12); color: #22c55e; }

.mpr__card-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  margin: 0;
}

.mpr__card-note {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
  margin: 0 0 1rem;
  line-height: 1.5;
}

.mpr__card-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mpr__card-list li {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
  padding: 0.45rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  line-height: 1.45;
}

.mpr__card-list li i {
  font-size: 0.7rem;
  color: #eab308;
  flex-shrink: 0;
  margin-top: 3px;
}

.mpr__card-list li strong {
  color: rgba(255, 255, 255, 0.8);
  font-weight: 600;
}

/* ═══════════════════════════
   MEDIA RANKS
   ═══════════════════════════ */

.mpr__ranks {
  position: relative;
  z-index: 1;
  margin-bottom: 3.5rem;
}

.mpr__section-title {
  font-size: 1.35rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 0.35rem;
  text-align: center;
}

.mpr__section-desc {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.45);
  text-align: center;
  margin: 0 0 1.5rem;
  line-height: 1.55;
}

.mpr__ranks-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

@media (min-width: 640px) {
  .mpr__ranks-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .mpr__ranks-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}

.mpr__rank {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  padding: 1rem;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  transition: border-color 0.35s ease, transform 0.35s ease, box-shadow 0.35s ease;
}

.mpr__rank:hover {
  border-color: rgba(255, 255, 255, 0.12);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.mpr__rank-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 8px currentColor;
}

.mpr__rank-name {
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
}

/* ═══════════════════════════
   OUR MEDIA (YouTube Embeds)
   ═══════════════════════════ */

.mpr__media {
  position: relative;
  z-index: 1;
  margin-bottom: 3.5rem;
}

.mpr__media-grid {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 1rem;
}

@media (min-width: 640px) {
  .mpr__media-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .mpr__media-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.mpr__video {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  border-radius: 14px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: border-color 0.35s ease, transform 0.35s ease, box-shadow 0.35s ease;
}

.mpr__video:hover {
  border-color: rgba(234, 179, 8, 0.18);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(234, 179, 8, 0.06);
}

.mpr__video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* ── CTA Box ── */
.mpr__cta {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px dashed rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
  transition: border-color 0.3s ease;
}

.mpr__cta:hover {
  border-color: rgba(255, 255, 255, 0.15);
}

.mpr__cta > i {
  font-size: 1.25rem;
  color: rgba(234, 179, 8, 0.6);
  margin-top: 2px;
  flex-shrink: 0;
}

.mpr__cta strong {
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  display: block;
  margin-bottom: 0.25rem;
}

.mpr__cta p {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.35);
  line-height: 1.5;
  margin: 0;
}

/* ── Responsive ── */
@media (max-width: 640px) {
  .mpr__title {
    font-size: 1.85rem;
  }

  .mpr__subtitle {
    font-size: 0.9rem;
  }

  .mpr__cta {
    flex-direction: column;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
  }

  .mpr__card-inner {
    padding: 1.25rem;
  }
}


/* =========================================================================
   SUPPORT PAGE (.sp / .sp__* / .sp-*)
   ========================================================================= */

.sp {
  position: relative;
  max-width: 100%;
  margin: 0 auto;
  padding: 2.5rem 0 4rem;
}

/* ── Green Glow (Support page) ── */
.sp__glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: visible;
}

.sp__glow-orb {
  position: absolute;
  border-radius: 9999px;
  filter: blur(100px);
  will-change: transform, opacity;
}

.sp__glow-orb--1 {
  width: 550px;
  height: 550px;
  top: -2%;
  left: 8%;
  background: rgba(34, 197, 94, 0.25);
  animation: spGlow1 9s ease-in-out infinite;
}

.sp__glow-orb--2 {
  width: 450px;
  height: 450px;
  top: -1%;
  right: 8%;
  background: rgba(22, 163, 74, 0.20);
  animation: spGlow2 12s ease-in-out infinite;
}

.sp__glow-orb--3 {
  width: 650px;
  height: 350px;
  top: 1%;
  left: 25%;
  background: rgba(21, 128, 61, 0.16);
  animation: spGlow3 10s ease-in-out infinite;
}

.sp__glow-orb--4 {
  width: 380px;
  height: 380px;
  top: 18%;
  left: 2%;
  background: rgba(34, 197, 94, 0.12);
  animation: spGlow4 14s ease-in-out infinite;
}

.sp__glow-orb--5 {
  width: 320px;
  height: 480px;
  top: 16%;
  right: 5%;
  background: rgba(22, 163, 74, 0.14);
  animation: spGlow5 8s ease-in-out infinite;
}

@keyframes spGlow1 {
  0%, 100% { transform: scale(1); opacity: 1; }
  30%      { transform: scale(0.75); opacity: 0.6; }
  70%      { transform: scale(1.1); opacity: 0.85; }
}
@keyframes spGlow2 {
  0%, 100% { transform: scale(1); opacity: 0.85; }
  40%      { transform: scale(1.15); opacity: 1; }
  80%      { transform: scale(0.8); opacity: 0.55; }
}
@keyframes spGlow3 {
  0%, 100% { transform: scale(1); opacity: 0.8; }
  50%      { transform: scale(0.85); opacity: 0.5; }
}
@keyframes spGlow4 {
  0%, 100% { transform: scale(1); opacity: 0.85; }
  35%      { transform: scale(0.65); opacity: 0.5; }
  65%      { transform: scale(1.1); opacity: 1; }
}
@keyframes spGlow5 {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%      { transform: scale(1.2); opacity: 0.6; }
}

/* ── Staff mode: full orange branding (/support only) ── */
.sp.staff-mode .sp__glow-orb {
  transition: background 0.8s ease, width 0.8s ease, height 0.8s ease;
}
.sp.staff-mode .sp__glow-orb--1 {
  width: 820px;
  height: 820px;
  background: rgba(251, 146, 60, 0.55);
}
.sp.staff-mode .sp__glow-orb--2 {
  width: 680px;
  height: 680px;
  background: rgba(249, 115, 22, 0.45);
}
.sp.staff-mode .sp__glow-orb--3 {
  width: 900px;
  height: 500px;
  background: rgba(234, 88, 12, 0.38);
}
.sp.staff-mode .sp__glow-orb--4 {
  width: 560px;
  height: 560px;
  background: rgba(251, 146, 60, 0.32);
}
.sp.staff-mode .sp__glow-orb--5 {
  width: 480px;
  height: 640px;
  background: rgba(249, 115, 22, 0.36);
}

.sp.staff-mode .sp__eyebrow-line {
  background: rgba(249, 115, 22, 0.5);
}
.sp.staff-mode .sp__eyebrow-text {
  color: #f97316;
}
.sp.staff-mode .sp__accent {
  background: linear-gradient(135deg, #fb923c, #ea580c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.sp.staff-mode .sp-chat {
  border-color: rgba(249, 115, 22, 0.2);
}
.sp.staff-mode .sp-chat__header {
  border-bottom-color: rgba(249, 115, 22, 0.12);
  background: rgba(249, 115, 22, 0.05);
}
.sp.staff-mode .sp-chat__avatar {
  background: linear-gradient(135deg, #fb923c, #ea580c);
}
.sp.staff-mode .sp-chat__status-dot {
  background: #f97316;
}
.sp.staff-mode .sp-chat__clear {
  border-color: rgba(249, 115, 22, 0.28);
  background: rgba(249, 115, 22, 0.1);
  color: rgba(251, 146, 60, 0.95);
}
.sp.staff-mode .sp-chat__clear:hover {
  background: rgba(249, 115, 22, 0.16);
  border-color: rgba(249, 115, 22, 0.45);
}

.sp.staff-mode .sp-chat__messages {
  scrollbar-color: rgba(249, 115, 22, 0.4) transparent;
}
.sp.staff-mode .sp-chat__messages::-webkit-scrollbar-thumb {
  background: rgba(249, 115, 22, 0.4);
}

.sp.staff-mode .sp-chat__welcome-icon {
  background: linear-gradient(135deg, rgba(251, 146, 60, 0.2), rgba(234, 88, 12, 0.14));
  border-color: rgba(249, 115, 22, 0.3);
  color: #fb923c;
}
.sp.staff-mode .sp-chip {
  border-color: rgba(249, 115, 22, 0.24);
  background: rgba(249, 115, 22, 0.08);
}
.sp.staff-mode .sp-chip:hover {
  background: rgba(249, 115, 22, 0.16);
  border-color: rgba(249, 115, 22, 0.45);
}
.sp.staff-mode .sp-chip i {
  color: #fb923c;
}

.sp.staff-mode .sp-msg__avatar {
  background: linear-gradient(135deg, rgba(251, 146, 60, 0.2), rgba(234, 88, 12, 0.14));
  border-color: rgba(249, 115, 22, 0.22);
  color: #fb923c;
}
.sp.staff-mode .sp-msg--user .sp-msg__bubble {
  background: linear-gradient(135deg, #fb923c, #ea580c);
}
.sp.staff-mode .sp-msg__bubble a {
  color: #fb923c;
}
.sp.staff-mode .sp-msg__typing span {
  background: rgba(249, 115, 22, 0.55);
}

.sp.staff-mode .sp-chat__input {
  border-top-color: rgba(249, 115, 22, 0.12);
  background: rgba(249, 115, 22, 0.04);
}
.sp.staff-mode .sp-chat__field {
  border-color: rgba(249, 115, 22, 0.22);
}
.sp.staff-mode .sp-chat__field:focus {
  border-color: rgba(249, 115, 22, 0.5);
}
.sp.staff-mode .sp-chat__send {
  background: linear-gradient(135deg, #fb923c, #ea580c);
}
.sp.staff-mode .sp-chat__send:hover:not(:disabled) {
  box-shadow: 0 0 24px rgba(249, 115, 22, 0.45);
}

.sp.staff-mode .sp-card:hover {
  border-color: rgba(249, 115, 22, 0.28);
  background: rgba(249, 115, 22, 0.06);
  box-shadow: 0 8px 30px rgba(249, 115, 22, 0.12);
}
.sp.staff-mode .sp-card__icon--ai {
  background: rgba(251, 146, 60, 0.16);
  border-color: rgba(249, 115, 22, 0.28);
  color: #fb923c;
}
.sp.staff-mode .sp-card__tag i {
  color: rgba(251, 146, 60, 0.9);
}

/* ── Fade-in animation (sections) ── */
.sp__fade-in {
  opacity: 0;
  transform: translateY(30px) scale(0.98);
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.sp__fade-in--visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* ── Header (matching rsl/mpr) ── */
.sp__header {
  position: relative;
  z-index: 1;
  text-align: center;
  margin-bottom: 3rem;
}
.sp__eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}
.sp__eyebrow-line {
  width: 2rem;
  height: 1px;
  background: rgba(34, 197, 94, 0.5);
}
.sp__eyebrow-text {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #22c55e;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.sp__title {
  font-size: 2.5rem;
  font-weight: 800;
  color: #fff;
  margin: 0 0 0.5rem;
  letter-spacing: -0.02em;
}
.sp__accent {
  background: linear-gradient(135deg, #22c55e, #16a34a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.sp__subtitle {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.55);
  max-width: 550px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ── Content wrapper ── */
.sp__content {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto 3.5rem;
  padding: 0 1.5rem;
}

/* ── Inline Chat ── */
.sp-chat {
  border: 1px solid rgba(34, 197, 94, 0.18);
  border-radius: 18px;
  background: rgba(16, 14, 28, 0.7);
  backdrop-filter: blur(20px);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  max-height: 600px;
}

.sp-chat__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid rgba(34, 197, 94, 0.1);
  background: rgba(34, 197, 94, 0.04);
}
.sp-chat__header-info {
  display: flex;
  align-items: center;
  gap: 12px;
}
.sp-chat__avatar {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #fff;
  position: relative;
  flex-shrink: 0;
}
.sp-chat__status-dot {
  position: absolute;
  bottom: -2px;
  right: -2px;
  width: 12px;
  height: 12px;
  background: #22c55e;
  border-radius: 50%;
  border: 2px solid rgba(16, 14, 28, 0.9);
}
.sp-chat__name {
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
}
.sp-chat__status {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.45);
}
.sp-chat__clear {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 8px;
  border: 1px solid rgba(34, 197, 94, 0.2);
  background: rgba(34, 197, 94, 0.08);
  color: rgba(34, 197, 94, 0.8);
  font-size: 0.78rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}
.sp-chat__clear:hover {
  background: rgba(34, 197, 94, 0.15);
  border-color: rgba(34, 197, 94, 0.35);
}
.sp-chat__testing {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 12px;
  border-radius: 20px;
  background: rgba(245, 158, 11, 0.12);
  border: 1px solid rgba(245, 158, 11, 0.25);
  color: #f59e0b;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.sp-chat__testing i {
  font-size: 0.65rem;
}

/* Messages area */
.sp-chat__messages {
  flex: 1;
  overflow-y: auto;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 340px;
  max-height: 420px;
  scrollbar-width: thin;
  scrollbar-color: rgba(34, 197, 94, 0.3) transparent;
}
.sp-chat__messages::-webkit-scrollbar { width: 5px; }
.sp-chat__messages::-webkit-scrollbar-thumb {
  background: rgba(34, 197, 94, 0.3);
  border-radius: 10px;
}

/* Welcome state */
.sp-chat__welcome {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 24px 0;
}
.sp-chat__welcome-icon {
  width: 64px;
  height: 64px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.15), rgba(21, 128, 61, 0.1));
  border: 1px solid rgba(34, 197, 94, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: #22c55e;
  margin-bottom: 16px;
}
.sp-chat__welcome-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}
.sp-chat__welcome-text {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.45);
  max-width: 440px;
  line-height: 1.5;
  margin-bottom: 20px;
}
.sp-chat__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}
.sp-chip {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: 20px;
  border: 1px solid rgba(34, 197, 94, 0.2);
  background: rgba(34, 197, 94, 0.06);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.82rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.25s;
}
.sp-chip:hover {
  background: rgba(34, 197, 94, 0.14);
  border-color: rgba(34, 197, 94, 0.4);
  color: #fff;
  transform: translateY(-1px);
}
.sp-chip i {
  font-size: 0.74rem;
  color: #22c55e;
}

/* Message bubbles */
.sp-msg {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  animation: spMsgIn 0.3s ease;
}
.sp-msg--user {
  justify-content: flex-end;
}
.sp-msg__avatar {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.15), rgba(21, 128, 61, 0.1));
  border: 1px solid rgba(34, 197, 94, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: #22c55e;
  flex-shrink: 0;
}
.sp-msg__bubble {
  padding: 12px 16px;
  border-radius: 14px;
  font-size: 0.9rem;
  line-height: 1.55;
  max-width: 70%;
  word-wrap: break-word;
}
.sp-msg--user .sp-msg__bubble {
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: #fff;
  border-bottom-right-radius: 4px;
}
.sp-msg--ai .sp-msg__bubble {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.85);
  border-bottom-left-radius: 4px;
}
.sp-msg__bubble a {
  color: #22c55e;
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* Typing indicator */
.sp-msg__typing {
  display: flex;
  gap: 4px;
  padding: 14px 18px;
}
.sp-msg__typing span {
  width: 7px;
  height: 7px;
  background: rgba(34, 197, 94, 0.5);
  border-radius: 50%;
  animation: spTyping 1.4s infinite;
}
.sp-msg__typing span:nth-child(2) { animation-delay: 0.15s; }
.sp-msg__typing span:nth-child(3) { animation-delay: 0.3s; }

@keyframes spMsgIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes spTyping {
  0%, 60%, 100% { opacity: 0.3; transform: translateY(0); }
  30% { opacity: 1; transform: translateY(-4px); }
}

/* Error */
.sp-chat__error {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: rgba(239, 68, 68, 0.08);
  border-top: 1px solid rgba(239, 68, 68, 0.15);
  color: #f87171;
  font-size: 0.82rem;
  font-weight: 500;
}

/* Input area */
.sp-chat__input {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  padding: 14px 16px;
  border-top: 1px solid rgba(34, 197, 94, 0.1);
  background: rgba(34, 197, 94, 0.03);
}
.sp-chat__field {
  flex: 1;
  border: 1px solid rgba(34, 197, 94, 0.15);
  border-radius: 12px;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  font-size: 0.9rem;
  resize: none;
  outline: none;
  font-family: inherit;
  transition: border-color 0.2s;
  min-height: 44px;
  max-height: 100px;
}
.sp-chat__field::placeholder {
  color: rgba(255, 255, 255, 0.3);
}
.sp-chat__field:focus {
  border-color: rgba(34, 197, 94, 0.4);
  background: rgba(255, 255, 255, 0.06);
}
.sp-chat__send {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  border: none;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.2s;
}
.sp-chat__send:hover:not(:disabled) {
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(34, 197, 94, 0.4);
}
.sp-chat__send:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

/* ── Info Cards ── */
.sp-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  position: relative;
  z-index: 1;
  margin-bottom: 2.5rem;
  padding: 0 1.5rem;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}
.sp-card {
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: 22px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  transition: all 0.3s ease;
}
.sp-card:hover {
  border-color: rgba(34, 197, 94, 0.2);
  background: rgba(34, 197, 94, 0.04);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(34, 197, 94, 0.08);
}

/* Icon cards (Discord, AI) */
.sp-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 2px;
}
.sp-card__icon--discord {
  background: rgba(88, 101, 242, 0.12);
  border: 1px solid rgba(88, 101, 242, 0.2);
  color: #5865f2;
}
.sp-card__icon--ai {
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(34, 197, 94, 0.2);
  color: #22c55e;
}
.sp-card__title {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
}
.sp-card__desc {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.5;
}
.sp-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: center;
  margin-top: auto;
}
.sp-card__tag {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 3px 10px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.7rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.5);
}
.sp-card__tag i {
  font-size: 0.64rem;
  color: rgba(34, 197, 94, 0.7);
}

/* ── Responsive ── */
@media (max-width: 700px) {
  .sp-cards {
    grid-template-columns: 1fr;
    max-width: 500px;
  }
}
@media (max-width: 640px) {
  .sp {
    padding: 1.5rem 0 2.5rem;
  }
  .sp__title {
    font-size: 1.75rem;
  }
  .sp__content {
    padding: 0 1rem;
  }
  .sp-chat {
    border-radius: 14px;
    max-height: 520px;
  }
  .sp-chat__messages {
    min-height: 260px;
    max-height: 340px;
  }
  .sp-msg__bubble {
    max-width: 88%;
  }
  .sp-cards {
    padding: 0 1rem;
  }
}


/* =========================================================================
   PAYMENTS PAGE (.paym / .paym__*)
   ========================================================================= */

.paym {
  position: relative;
  max-width: 100%;
  margin: 0 auto;
  padding: 2.5rem 0 4rem;
}

.paym__glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: visible;
}

.paym__glow-orb {
  position: absolute;
  border-radius: 9999px;
  filter: blur(110px);
  will-change: transform, opacity;
}

.paym__glow-orb--1 {
  width: 620px;
  height: 620px;
  top: -4%;
  left: 6%;
  background: rgba(236, 72, 153, 0.30);
  animation: paymGlow1 10s ease-in-out infinite;
}

.paym__glow-orb--2 {
  width: 470px;
  height: 470px;
  top: -2%;
  right: 8%;
  background: rgba(217, 70, 239, 0.22);
  animation: paymGlow2 12s ease-in-out infinite;
}

.paym__glow-orb--3 {
  width: 760px;
  height: 390px;
  top: 4%;
  left: 24%;
  background: rgba(190, 24, 93, 0.18);
  animation: paymGlow3 9s ease-in-out infinite;
}

.paym__glow-orb--4 {
  width: 420px;
  height: 420px;
  top: 24%;
  left: 2%;
  background: rgba(244, 114, 182, 0.14);
  animation: paymGlow4 13s ease-in-out infinite;
}

.paym__glow-orb--5 {
  width: 360px;
  height: 520px;
  top: 20%;
  right: 4%;
  background: rgba(236, 72, 153, 0.16);
  animation: paymGlow5 8s ease-in-out infinite;
}

@keyframes paymGlow1 {
  0%, 100% { transform: scale(1); opacity: 1; }
  35%      { transform: scale(0.78); opacity: 0.62; }
  70%      { transform: scale(1.16); opacity: 0.92; }
}

@keyframes paymGlow2 {
  0%, 100% { transform: scale(1); opacity: 0.86; }
  40%      { transform: scale(1.18); opacity: 1; }
  80%      { transform: scale(0.8); opacity: 0.56; }
}

@keyframes paymGlow3 {
  0%, 100% { transform: scale(1); opacity: 0.84; }
  50%      { transform: scale(0.86); opacity: 0.52; }
}

@keyframes paymGlow4 {
  0%, 100% { transform: scale(1); opacity: 0.86; }
  35%      { transform: scale(0.68); opacity: 0.5; }
  65%      { transform: scale(1.12); opacity: 1; }
}

@keyframes paymGlow5 {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%      { transform: scale(1.24); opacity: 0.65; }
}

.paym__header {
  position: relative;
  z-index: 1;
  text-align: center;
  margin-bottom: 3rem;
}

.paym__eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.paym__eyebrow-line {
  width: 2rem;
  height: 1px;
  background: rgba(236, 72, 153, 0.52);
}

.paym__eyebrow-text {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #ec4899;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.paym__title {
  font-size: 2.5rem;
  font-weight: 800;
  color: #fff;
  margin: 0 0 0.5rem;
  letter-spacing: -0.02em;
}

.paym__accent {
  background: linear-gradient(135deg, #ec4899, #d946ef);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.paym__subtitle {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.56);
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.6;
}

.paym__content {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.paym__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.paym__card {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(236, 72, 153, 0.15);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.045) 0%, rgba(255, 255, 255, 0.02) 100%);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  padding: 2.4rem 1.2rem;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
              border-color 0.35s ease,
              box-shadow 0.35s ease,
              background 0.35s ease;
}

.paym__card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 15%, rgba(236, 72, 153, 0.1), transparent 52%);
  opacity: 0.7;
  pointer-events: none;
}

.paym__card:hover {
  transform: translateY(-5px);
  border-color: rgba(236, 72, 153, 0.35);
  box-shadow: 0 16px 50px rgba(236, 72, 153, 0.18);
  background: linear-gradient(160deg, rgba(236, 72, 153, 0.1) 0%, rgba(255, 255, 255, 0.03) 100%);
}

.paym__card--all {
  width: 100%;
  max-width: none;
  margin: 0;
  min-height: 0;
}

.paym__watermark {
  position: absolute;
  pointer-events: none;
  opacity: 0.1;
  user-select: none;
}

.paym__watermark--stripe {
  top: 14px;
  right: 10px;
  width: 170px;
  max-width: 48%;
  object-fit: contain;
}

.paym__watermark--text {
  top: 10px;
  right: 14px;
  font-size: 2.2rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  color: rgba(236, 72, 153, 0.42);
}

.paym__card-head {
  position: relative;
  z-index: 1;
}

.paym__card-title {
  margin: 0;
  font-size: 1.06rem;
  font-weight: 700;
  color: #fff;
}

.paym__card-subtitle {
  margin: 0.42rem 0 0;
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.5;
}

.paym__logo-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
  margin-top: auto;
}

.paym__logo-grid--methods {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-content: start;
}

.paym__logo-pill {
  height: 44px;
  border-radius: 10px;
  border: 1px solid rgba(236, 72, 153, 0.16);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.12) 0%, rgba(236, 72, 153, 0.12) 100%);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.35rem 0.6rem;
  opacity: 0;
  transform: translateY(14px) scale(0.96);
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.paym__logo-pill:hover {
  transform: translateY(-2px);
  border-color: rgba(236, 72, 153, 0.5);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.18) 0%, rgba(236, 72, 153, 0.22) 100%);
}

.paym__logo-pill img {
  max-width: 100%;
  max-height: 70%;
  object-fit: contain;
  filter: drop-shadow(0 0 8px rgba(236, 72, 153, 0.2));
}

.paym__fade-in {
  opacity: 0;
  transform: translateY(24px) scale(0.985);
  transition: opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

.paym__fade-in--visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.paym__stagger {
  opacity: 0;
  transform: translateY(18px) scale(0.97);
  transition: opacity 0.55s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: calc(var(--stagger, 0) * 0.1s);
}

.paym__stagger--visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.paym__stagger--visible .paym__logo-pill {
  animation: paymLogoStackIn 0.5s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: calc(0.1s + (var(--logo-stagger, 0) * 0.07s));
}

@keyframes paymLogoStackIn {
  from {
    opacity: 0;
    transform: translateY(14px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (max-width: 1024px) {
  .paym__grid {
    grid-template-columns: 1fr;
  }

  .paym__card {
    min-height: 0;
  }
}

@media (max-width: 640px) {
  .paym {
    padding: 1.5rem 0 2.5rem;
  }

  .paym__title {
    font-size: 1.8rem;
  }

  .paym__subtitle {
    font-size: 0.92rem;
  }

  .paym__content {
    padding: 0 1rem;
  }

  .paym__logo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .paym__logo-grid--methods {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}


/* =========================================================================
   BLOG PAGE (.blg / .blg__*)
   ========================================================================= */

.blg {
  position: relative;
  max-width: 100%;
  margin: 0 auto;
  padding: 2.5rem 0 4rem;
}

/* ── Turquoise Glow ── */
.blg__glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: visible;
}

.blg__glow-orb {
  position: absolute;
  border-radius: 9999px;
  filter: blur(100px);
  will-change: transform, opacity;
}

.blg__glow-orb--1 {
  width: 550px;
  height: 550px;
  top: -2%;
  left: 8%;
  background: rgba(6, 182, 212, 0.25);
  animation: blgGlow1 9s ease-in-out infinite;
}

.blg__glow-orb--2 {
  width: 450px;
  height: 450px;
  top: -1%;
  right: 8%;
  background: rgba(8, 145, 178, 0.20);
  animation: blgGlow2 12s ease-in-out infinite;
}

.blg__glow-orb--3 {
  width: 650px;
  height: 350px;
  top: 1%;
  left: 25%;
  background: rgba(14, 116, 144, 0.16);
  animation: blgGlow3 10s ease-in-out infinite;
}

.blg__glow-orb--4 {
  width: 380px;
  height: 380px;
  top: 18%;
  left: 2%;
  background: rgba(6, 182, 212, 0.12);
  animation: blgGlow4 14s ease-in-out infinite;
}

.blg__glow-orb--5 {
  width: 320px;
  height: 480px;
  top: 16%;
  right: 5%;
  background: rgba(8, 145, 178, 0.14);
  animation: blgGlow5 8s ease-in-out infinite;
}

@keyframes blgGlow1 {
  0%, 100% { transform: scale(1); opacity: 1; }
  30%      { transform: scale(0.75); opacity: 0.6; }
  70%      { transform: scale(1.1); opacity: 0.85; }
}
@keyframes blgGlow2 {
  0%, 100% { transform: scale(1); opacity: 0.85; }
  40%      { transform: scale(1.15); opacity: 1; }
  80%      { transform: scale(0.8); opacity: 0.55; }
}
@keyframes blgGlow3 {
  0%, 100% { transform: scale(1); opacity: 0.8; }
  50%      { transform: scale(0.85); opacity: 0.5; }
}
@keyframes blgGlow4 {
  0%, 100% { transform: scale(1); opacity: 0.85; }
  35%      { transform: scale(0.65); opacity: 0.5; }
  65%      { transform: scale(1.1); opacity: 1; }
}
@keyframes blgGlow5 {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%      { transform: scale(1.2); opacity: 0.6; }
}

/* ── Fade-in animation (sections) ── */
.blg__fade-in {
  opacity: 0;
  transform: translateY(30px) scale(0.98);
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.blg__fade-in--visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* ── Stagger children (cards) ── */
.blg__stagger {
  opacity: 0;
  transform: translateY(20px) scale(0.96);
  transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: calc(var(--stagger, 0) * 0.12s);
}
.blg__stagger--revealed {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* ── Header ── */
.blg__header {
  position: relative;
  z-index: 1;
  text-align: center;
  margin-bottom: 3rem;
}

.blg__eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.blg__eyebrow-line {
  width: 2rem;
  height: 1px;
  background: rgba(6, 182, 212, 0.5);
}

.blg__eyebrow-text {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #06b6d4;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.blg__title {
  font-size: 2.5rem;
  font-weight: 800;
  color: #fff;
  margin: 0 0 0.5rem;
  letter-spacing: -0.02em;
}

.blg__accent {
  background: linear-gradient(135deg, #06b6d4, #0891b2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.blg__subtitle {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.55);
  max-width: 550px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ── Content wrapper ── */
.blg__content {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ── Blog Post Grid ── */
.blg__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

/* ── Blog Card ── */
.blg__card {
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  transition: all 0.35s ease;
}

.blg__card:hover {
  border-color: rgba(6, 182, 212, 0.25);
  background: rgba(6, 182, 212, 0.04);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(6, 182, 212, 0.08);
}

/* Card Image */
.blg__card-image {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.blg__card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blg__card:hover .blg__card-image img {
  transform: scale(1.05);
}

.blg__card-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(6, 182, 212, 0.06);
  color: rgba(6, 182, 212, 0.35);
  font-size: 2.5rem;
}

/* Card Body */
.blg__card-body {
  display: flex;
  flex-direction: column;
  padding: 1.25rem;
  flex: 1;
}

.blg__card-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 0.5rem;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blg__card-summary {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.55;
  margin: 0 0 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1;
}

.blg__card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.blg__card-date {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.35);
}

.blg__card-date i {
  font-size: 0.7rem;
  color: rgba(6, 182, 212, 0.6);
}

.blg__card-read {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 600;
  color: #06b6d4;
  transition: gap 0.25s ease;
}

.blg__card:hover .blg__card-read {
  gap: 10px;
}

.blg__card-read i {
  font-size: 0.7rem;
  transition: transform 0.25s ease;
}

.blg__card:hover .blg__card-read i {
  transform: translateX(2px);
}

/* ── Pagination ── */
.blg__pagination {
  margin-top: 2.5rem;
  display: flex;
  justify-content: center;
}

/* ── Empty State ── */
.blg__empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 4rem 2rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px dashed rgba(255, 255, 255, 0.08);
  border-radius: 16px;
}

.blg__empty-icon {
  width: 72px;
  height: 72px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(6, 182, 212, 0.12), rgba(14, 116, 144, 0.08));
  border: 1px solid rgba(6, 182, 212, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: rgba(6, 182, 212, 0.5);
  margin-bottom: 1.25rem;
}

.blg__empty-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 0.5rem;
}

.blg__empty-text {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.4);
  max-width: 350px;
  line-height: 1.5;
  margin: 0;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .blg__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .blg {
    padding: 1.5rem 0 2.5rem;
  }
  .blg__title {
    font-size: 1.75rem;
  }
  .blg__content {
    padding: 0 1rem;
  }
  .blg__grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }
}


/* =========================================================================
   REVIEWS PAGE (.rvw / .rvw__*)
   ========================================================================= */

.rvw {
  position: relative;
  max-width: 100%;
  margin: 0 auto;
  padding: 2.5rem 0 4rem;
}

/* ── White Glow ── */
.rvw__glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: visible;
}

.rvw__glow-orb {
  position: absolute;
  border-radius: 9999px;
  filter: blur(100px);
  will-change: transform, opacity;
}

.rvw__glow-orb--1 {
  width: 600px;
  height: 600px;
  top: -4%;
  left: 6%;
  background: rgba(255, 255, 255, 0.22);
  animation: rvwGlow1 9s ease-in-out infinite;
}

.rvw__glow-orb--2 {
  width: 500px;
  height: 500px;
  top: -2%;
  right: 6%;
  background: rgba(255, 255, 255, 0.18);
  animation: rvwGlow2 12s ease-in-out infinite;
}

.rvw__glow-orb--3 {
  width: 700px;
  height: 400px;
  top: 0%;
  left: 22%;
  background: rgba(255, 255, 255, 0.14);
  animation: rvwGlow3 10s ease-in-out infinite;
}

.rvw__glow-orb--4 {
  width: 420px;
  height: 420px;
  top: 20%;
  left: 0%;
  background: rgba(255, 255, 255, 0.12);
  animation: rvwGlow4 14s ease-in-out infinite;
}

.rvw__glow-orb--5 {
  width: 360px;
  height: 520px;
  top: 18%;
  right: 3%;
  background: rgba(255, 255, 255, 0.14);
  animation: rvwGlow5 8s ease-in-out infinite;
}

@keyframes rvwGlow1 {
  0%, 100% { transform: scale(1); opacity: 1; }
  30%      { transform: scale(0.75); opacity: 0.6; }
  70%      { transform: scale(1.1); opacity: 0.85; }
}
@keyframes rvwGlow2 {
  0%, 100% { transform: scale(1); opacity: 0.85; }
  40%      { transform: scale(1.15); opacity: 1; }
  80%      { transform: scale(0.8); opacity: 0.55; }
}
@keyframes rvwGlow3 {
  0%, 100% { transform: scale(1); opacity: 0.8; }
  50%      { transform: scale(0.85); opacity: 0.5; }
}
@keyframes rvwGlow4 {
  0%, 100% { transform: scale(1); opacity: 0.85; }
  35%      { transform: scale(0.65); opacity: 0.5; }
  65%      { transform: scale(1.1); opacity: 1; }
}
@keyframes rvwGlow5 {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%      { transform: scale(1.2); opacity: 0.6; }
}

/* ── Fade-in animation (sections) ── */
.rvw__fade-in {
  opacity: 0;
  transform: translateY(30px) scale(0.98);
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.rvw__fade-in--visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* ── Stagger children (cards) ── */
.rvw__stagger {
  opacity: 0;
  transform: translateY(20px) scale(0.96);
  transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: calc(var(--stagger, 0) * 0.12s);
}
.rvw__stagger--revealed {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* ── Header ── */
.rvw__header {
  position: relative;
  z-index: 1;
  text-align: center;
  margin-bottom: 3rem;
}

.rvw__eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.rvw__eyebrow-line {
  width: 2rem;
  height: 1px;
  background: rgba(255, 255, 255, 0.35);
}

.rvw__eyebrow-text {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.rvw__title {
  font-size: 2.5rem;
  font-weight: 800;
  color: #fff;
  margin: 0 0 0.5rem;
  letter-spacing: -0.02em;
}

.rvw__accent {
  background: linear-gradient(135deg, rgba(255, 255, 255, 1), rgba(200, 200, 220, 0.85));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.rvw__subtitle {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.55);
  max-width: 550px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ── Stats bar ── */
.rvw__stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-top: 1.75rem;
  padding: 1rem 2rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  display: inline-flex;
}

.rvw__stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
}

.rvw__stat-value {
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
}

.rvw__stat-stars {
  color: #fbbf24;
}

.rvw__stat-label {
  font-size: 0.72rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.rvw__stat-divider {
  width: 1px;
  height: 36px;
  background: rgba(255, 255, 255, 0.1);
}

/* ── Content wrapper ── */
.rvw__content {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ── Reviews List (2-column grid) ── */
.rvw__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

/* ── Review Card ── */
.rvw__card {
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: 1.5rem;
  transition: all 0.35s ease;
}

.rvw__card:hover {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(255, 255, 255, 0.04);
}

/* Card Top (stars + date) */
.rvw__card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.75rem;
}

.rvw__stars {
  display: flex;
  align-items: center;
  gap: 3px;
}

.rvw__star {
  font-size: 0.85rem;
}

.rvw__star--filled {
  color: #fbbf24;
}

.rvw__star--empty {
  color: rgba(255, 255, 255, 0.15);
}

.rvw__rating-num {
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.4);
  margin-left: 8px;
}

.rvw__card-date {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.3);
}

.rvw__card-date i {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.25);
}

/* Product tags */
.rvw__products {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.rvw__product-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 0.3rem 0.65rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: all 0.25s ease;
}

.rvw__product-tag:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.85);
}

.rvw__product-tag i {
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.35);
}

.rvw__variant {
  color: rgba(255, 255, 255, 0.35);
}

/* Message */
.rvw__message {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.65;
  margin: 0;
}

/* Seller Reply */
.rvw__reply {
  margin-top: 1rem;
  padding: 1rem 1.15rem;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-left: 3px solid rgba(255, 255, 255, 0.2);
  border-radius: 0 12px 12px 0;
}

.rvw__reply-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.rvw__reply-header i {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
}

.rvw__reply-label {
  font-size: 0.78rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.7);
}

.rvw__reply-date {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.25);
  margin-left: auto;
}

.rvw__reply-text {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.55;
  margin: 0;
}

/* ── Pagination ── */
.rvw__pagination {
  margin-top: 2.5rem;
  display: flex;
  justify-content: center;
}

/* ── Empty State ── */
.rvw__empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 4rem 2rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px dashed rgba(255, 255, 255, 0.08);
  border-radius: 16px;
}

.rvw__empty-icon {
  width: 72px;
  height: 72px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04));
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 1.25rem;
}

.rvw__empty-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 0.5rem;
}

.rvw__empty-text {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.4);
  max-width: 350px;
  line-height: 1.5;
  margin: 0;
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .rvw__list {
    grid-template-columns: 1fr;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 640px) {
  .rvw {
    padding: 1.5rem 0 2.5rem;
  }
  .rvw__title {
    font-size: 1.75rem;
  }
  .rvw__content {
    padding: 0 1rem;
  }
  .rvw__card {
    padding: 1.15rem;
  }
  .rvw__card-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
  .rvw__stats {
    gap: 1.25rem;
    padding: 0.85rem 1.25rem;
  }
}

/* =========================================================
   HOW DOES IT WORKS PAGE (Silver)
========================================================= */

.hiw {
  position: relative;
  overflow: visible;
  padding: 2rem 0 0;
}

.hiw__glow {
  position: absolute;
  inset: -12% -10% auto;
  height: 80vh;
  pointer-events: none;
  z-index: 0;
  filter: blur(54px);
}

.hiw__glow-orb {
  position: absolute;
  border-radius: 999px;
  opacity: 0.32;
  background: radial-gradient(circle, rgba(192, 192, 192, 0.44) 0%, rgba(192, 192, 192, 0) 72%);
}

.hiw__glow-orb--1 {
  width: 44vw;
  height: 44vw;
  left: -4%;
  top: 4%;
}

.hiw__glow-orb--2 {
  width: 36vw;
  height: 36vw;
  right: 2%;
  top: 10%;
}

.hiw__glow-orb--3 {
  width: 34vw;
  height: 34vw;
  left: 34%;
  top: 34%;
}

.hiw__intro {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: 0 auto;
  padding: 1.4rem 1.5rem 0.4rem;
  text-align: center;
}

.hiw__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1.05rem;
}

.hiw__eyebrow-line {
  width: 2.2rem;
  height: 1px;
  background: linear-gradient(90deg, rgba(192, 192, 192, 0), rgba(192, 192, 192, 0.7), rgba(192, 192, 192, 0));
}

.hiw__eyebrow-text {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  font-weight: 700;
  color: rgba(215, 215, 215, 0.86);
}

.hiw__title {
  margin: 0;
  font-size: clamp(2rem, 4.35vw, 3.5rem);
  line-height: 1.12;
  font-weight: 800;
  color: #fff;
}

.hiw__accent {
  color: #d5d5d5;
  text-shadow: 0 0 20px rgba(196, 196, 196, 0.28);
}

.hiw__subtitle {
  margin: 0.95rem auto 0;
  max-width: 720px;
  font-size: 1.02rem;
  color: rgba(255, 255, 255, 0.58);
  line-height: 1.6;
}

.hiw__track {
  position: relative;
  z-index: 2;
  height: calc(var(--hiw-steps, 7) * 125vh);
  min-height: 680vh;
  margin-top: 0.75rem;
}

.hiw__sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  display: grid;
  grid-template-columns: 1fr minmax(340px, 520px);
  align-items: center;
  gap: clamp(1.5rem, 3vw, 3.8rem);
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 3vw, 2.2rem);
  will-change: auto;
  transform: translateZ(0);
}

.hiw__step-layer {
  position: relative;
  height: clamp(240px, 42vh, 420px);
}

.hiw__step {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  opacity: 0;
  transform: translateY(22px) scale(0.985);
  transition: opacity 0.44s ease, transform 0.52s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
}

.hiw__step--active {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.hiw__step-meta {
  font-size: 0.8rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: rgba(211, 211, 211, 0.74);
  margin-bottom: 0.65rem;
  font-weight: 700;
}

.hiw__step-title {
  margin: 0;
  font-size: clamp(1.7rem, 3.45vw, 3.15rem);
  line-height: 1.15;
  color: #fff;
  font-weight: 800;
  text-wrap: balance;
}

.hiw__step-text {
  margin: 1.1rem 0 0;
  max-width: 640px;
  font-size: clamp(0.98rem, 1.3vw, 1.18rem);
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.72;
}

.hiw__step-foot {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  pointer-events: none;
}

.hiw__step-count {
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  color: rgba(222, 222, 222, 0.76);
}

.hiw__step-next {
  font-size: 0.74rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 600;
  color: rgba(199, 199, 199, 0.56);
}

.hiw__gfx-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.hiw__gfx {
  position: relative;
  width: min(100%, 510px);
  aspect-ratio: 4 / 3;
  border-radius: 22px;
  border: 1px solid rgba(207, 207, 207, 0.24);
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.14) 0%, rgba(255, 255, 255, 0.04) 44%, rgba(255, 255, 255, 0.01) 100%),
    radial-gradient(circle at 10% 15%, rgba(215, 215, 215, 0.24), transparent 62%),
    rgba(13, 15, 22, 0.88);
  box-shadow: 0 30px 85px rgba(188, 188, 188, 0.15);
  overflow: hidden;
  transition: background 0.45s ease, border-color 0.45s ease, box-shadow 0.45s ease;
  will-change: transform;
}

.hiw__gfx-label {
  position: absolute;
  top: 12px;
  left: 14px;
  z-index: 4;
  padding: 0.4rem 0.65rem;
  border-radius: 8px;
  border: 1px solid rgba(232, 232, 232, 0.3);
  background: rgba(255, 255, 255, 0.07);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  color: rgba(233, 233, 233, 0.88);
  text-transform: uppercase;
  font-weight: 700;
}

.hiw__gfx-layer {
  position: absolute;
  border-radius: 16px;
  transition: transform 0.08s linear, inset 0.5s cubic-bezier(0.22, 1, 0.36, 1), background 0.45s ease, border-color 0.45s ease;
}

.hiw__gfx-layer--back {
  inset: 14% 15% 36% 10%;
  background: linear-gradient(140deg, rgba(204, 204, 204, 0.2), rgba(115, 115, 115, 0.1));
  border: 1px solid rgba(214, 214, 214, 0.24);
}

.hiw__gfx-layer--mid {
  inset: 32% 12% 18% 20%;
  background: linear-gradient(140deg, rgba(223, 223, 223, 0.24), rgba(161, 161, 161, 0.08));
  border: 1px solid rgba(223, 223, 223, 0.24);
}

.hiw__gfx-layer--front {
  inset: 55% 22% 9% 12%;
  background: linear-gradient(140deg, rgba(255, 255, 255, 0.27), rgba(158, 158, 158, 0.12));
  border: 1px solid rgba(223, 223, 223, 0.3);
}

.hiw__gfx-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 3;
  width: 92px;
  height: 92px;
  margin-top: -46px;
  margin-left: -46px;
  border-radius: 22px;
  border: 1px solid rgba(245, 245, 245, 0.36);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.26), rgba(185, 185, 185, 0.1));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.9rem;
  color: rgba(253, 253, 253, 0.9);
  box-shadow: 0 10px 30px rgba(205, 205, 205, 0.18);
  transition: border-color 0.45s ease, background 0.45s ease, color 0.45s ease;
}

.hiw__gfx-step-chip {
  position: absolute;
  right: 14px;
  top: 12px;
  z-index: 4;
  padding: 0.38rem 0.68rem;
  border-radius: 999px;
  border: 1px solid rgba(238, 238, 238, 0.32);
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.68rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: rgba(239, 239, 239, 0.9);
  font-weight: 700;
}

.hiw__progress {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 14px;
  height: 5px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.09);
  overflow: hidden;
}

.hiw__progress-fill {
  display: block;
  width: 100%;
  height: 100%;
  transform-origin: left center;
  border-radius: inherit;
  background: linear-gradient(90deg, rgba(233, 233, 233, 0.55), rgba(255, 255, 255, 0.95));
}

.hiw__setup-scene,
.hiw__launch-scene,
.hiw__inject-scene,
.hiw__use-scene {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hiw__setup-scene {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hiw__setup-panel {
  position: relative;
  width: min(74%, 330px);
  padding: 1.15rem 1.15rem 1rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(18, 20, 28, 0.9));
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(8px);
}

.hiw__setup-head,
.hiw__download-head,
.hiw__launch-head,
.hiw__use-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.hiw__setup-badge,
.hiw__setup-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.34rem 0.55rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(239, 239, 239, 0.9);
  font-size: 0.72rem;
}

.hiw__setup-title,
.hiw__launch-title,
.hiw__game-title,
.hiw__use-title {
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: rgba(255, 255, 255, 0.96);
  margin-bottom: 0.35rem;
}

.hiw__setup-text,
.hiw__download-text,
.hiw__launch-text,
.hiw__game-text,
.hiw__use-text {
  color: rgba(229, 229, 229, 0.72);
  line-height: 1.45;
  margin-bottom: 1rem;
}

.hiw__setup-checklist {
  display: grid;
  gap: 0.72rem;
}

.hiw__setup-item {
  position: relative;
  padding: 0.75rem 0.8rem 1.15rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.hiw__setup-item span {
  display: block;
  color: rgba(235, 235, 235, 0.75);
  font-size: 0.76rem;
  margin-bottom: 0.42rem;
}

.hiw__setup-item em {
  display: block;
  height: 6px;
  border-radius: 999px;
  transform-origin: left center;
  background: linear-gradient(90deg, rgba(194, 167, 255, 0.3), rgba(194, 167, 255, 0.96), rgba(157, 255, 207, 0.9));
}

.hiw__setup-orb {
  position: absolute;
  right: 11%;
  top: 18%;
  width: 70px;
  height: 70px;
  border-radius: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.14), rgba(169, 141, 255, 0.18));
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.96);
  font-size: 1.55rem;
  box-shadow: 0 18px 46px rgba(162, 111, 255, 0.14);
}

.hiw__purchase-scene {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hiw__purchase-card {
  position: relative;
  width: min(72%, 320px);
  padding: 1.25rem 1.15rem 1.05rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(19, 22, 31, 0.88));
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(8px);
}

.hiw__purchase-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-size: 0.72rem;
}

.hiw__purchase-pill,
.hiw__purchase-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.34rem 0.55rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(239, 239, 239, 0.9);
  background: rgba(255, 255, 255, 0.06);
}

.hiw__purchase-title {
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: rgba(255, 255, 255, 0.96);
  margin-bottom: 0.3rem;
}

.hiw__purchase-text {
  color: rgba(229, 229, 229, 0.72);
  line-height: 1.45;
  margin-bottom: 1rem;
}

.hiw__purchase-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.62rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.hiw__purchase-label {
  color: rgba(220, 220, 220, 0.58);
  font-size: 0.78rem;
}

.hiw__purchase-value {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.82rem;
  font-weight: 700;
}

.hiw__purchase-value--accent {
  color: rgba(195, 170, 255, 0.98);
}

.hiw__purchase-key {
  position: absolute;
  right: 10.5%;
  top: 20%;
  width: 68px;
  height: 68px;
  border-radius: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.16), rgba(166, 126, 255, 0.22));
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.96);
  font-size: 1.55rem;
  box-shadow: 0 18px 50px rgba(162, 111, 255, 0.18);
}

.hiw__purchase-check {
  position: absolute;
  left: 13%;
  bottom: 17%;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(120, 255, 192, 0.12);
  border: 1px solid rgba(120, 255, 192, 0.28);
  color: rgba(157, 255, 207, 0.95);
  font-size: 1.05rem;
}

.hiw__purchase-line {
  position: absolute;
  left: 20%;
  right: 20%;
  bottom: 16.2%;
  height: 3px;
  border-radius: 999px;
  transform-origin: left center;
  background: linear-gradient(90deg, rgba(194, 167, 255, 0.2), rgba(194, 167, 255, 0.95), rgba(157, 255, 207, 0.9));
}

.hiw__download-scene {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hiw__download-panel {
  position: relative;
  width: min(74%, 340px);
  padding: 1.15rem 1.15rem 1rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(17, 22, 34, 0.9));
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(8px);
}

.hiw__download-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.hiw__download-badge,
.hiw__download-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.34rem 0.55rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(239, 239, 239, 0.9);
  font-size: 0.72rem;
}

.hiw__download-title {
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: rgba(255, 255, 255, 0.96);
  margin-bottom: 0.35rem;
}

.hiw__download-text {
  color: rgba(229, 229, 229, 0.72);
  line-height: 1.45;
  margin-bottom: 1rem;
}

.hiw__download-track {
  position: relative;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.hiw__download-fill {
  display: block;
  width: 100%;
  height: 100%;
  transform-origin: left center;
  border-radius: inherit;
  background: linear-gradient(90deg, rgba(194, 167, 255, 0.35), rgba(194, 167, 255, 0.98), rgba(157, 255, 207, 0.9));
}

.hiw__download-meta {
  margin-top: 0.7rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.76rem;
  color: rgba(220, 220, 220, 0.58);
}

.hiw__download-file {
  position: absolute;
  left: 10%;
  top: 20%;
  width: 64px;
  height: 64px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.15), rgba(169, 141, 255, 0.18));
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.96);
  font-size: 1.4rem;
  box-shadow: 0 18px 46px rgba(162, 111, 255, 0.15);
}

.hiw__download-loader {
  position: absolute;
  right: 12%;
  bottom: 19%;
  display: flex;
  align-items: center;
  gap: 0.28rem;
}

.hiw__download-loader span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(194, 167, 255, 0.95);
  box-shadow: 0 0 18px rgba(194, 167, 255, 0.48);
}

.hiw__launch-scene {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hiw__launch-window {
  position: relative;
  width: min(74%, 350px);
  min-height: 220px;
  padding: 1.15rem 1.15rem 1rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(13, 17, 24, 0.92));
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(8px);
}

.hiw__launch-badge,
.hiw__launch-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.34rem 0.55rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(239, 239, 239, 0.9);
  font-size: 0.72rem;
}

.hiw__launch-core {
  position: absolute;
  right: 14px;
  bottom: 14px;
  width: 74px;
  height: 74px;
  border-radius: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.55rem;
  color: rgba(255, 255, 255, 0.96);
  background: radial-gradient(circle at 30% 30%, rgba(194, 167, 255, 0.36), rgba(17, 21, 30, 0.95));
  border: 1px solid rgba(194, 167, 255, 0.24);
  box-shadow: 0 0 0 1px rgba(194, 167, 255, 0.08), 0 24px 50px rgba(162, 111, 255, 0.18);
}

.hiw__launch-rings {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at center, transparent 0 18%, rgba(194, 167, 255, 0.08) 18.5% 19.5%, transparent 20% 31%, rgba(157, 255, 207, 0.08) 31.5% 32.5%, transparent 33% 100%);
}

.hiw__inject-scene {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.hiw__inject-panel {
  position: relative;
  width: min(92%, 420px);
  padding: 1.1rem 1.1rem 1rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(12, 16, 23, 0.92));
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(8px);
}

.hiw__inject-title {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 800;
  color: rgba(255, 255, 255, 0.96);
  margin-bottom: 0.3rem;
}

.hiw__inject-text {
  color: rgba(229, 229, 229, 0.72);
  line-height: 1.45;
  margin-bottom: 0.95rem;
}

.hiw__inject-flow {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.hiw__inject-node {
  display: inline-flex;
  align-items: center;
  gap: 0.38rem;
  padding: 0.45rem 0.65rem;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  color: rgba(242, 242, 242, 0.9);
  font-size: 0.74rem;
  white-space: nowrap;
}

.hiw__inject-node--accent {
  background: rgba(194, 167, 255, 0.18);
  border-color: rgba(194, 167, 255, 0.34);
}

.hiw__inject-line {
  flex: 1;
  min-width: 22px;
  height: 3px;
  border-radius: 999px;
  transform-origin: left center;
  background: linear-gradient(90deg, rgba(194, 167, 255, 0.2), rgba(194, 167, 255, 0.95));
}

.hiw__use-scene {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hiw__use-panel {
  position: relative;
  width: min(76%, 360px);
  padding: 1.1rem 1.1rem 1rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(13, 17, 24, 0.92));
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(8px);
}

.hiw__use-badge,
.hiw__use-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.34rem 0.55rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(239, 239, 239, 0.9);
  font-size: 0.72rem;
}

.hiw__use-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.7rem;
}

.hiw__use-card {
  min-height: 86px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0.8rem;
  font-size: 0.8rem;
  font-weight: 700;
  gap: 0.45rem;
  color: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: linear-gradient(145deg, rgba(194, 167, 255, 0.18), rgba(12, 16, 24, 0.88));
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.18);
}

.hiw__use-card--b {
  background: linear-gradient(145deg, rgba(190, 190, 255, 0.12), rgba(12, 16, 24, 0.88));
}

.hiw__use-card--c {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(12, 16, 24, 0.88));
}

.hiw__use-orb {
  position: absolute;
  right: 10%;
  top: 18%;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(157, 255, 207, 0.3), rgba(194, 167, 255, 0.12));
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 0 34px rgba(194, 167, 255, 0.16);
}

.hiw__gfx--s1 {
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.14) 0%, rgba(255, 255, 255, 0.04) 44%, rgba(255, 255, 255, 0.01) 100%),
    radial-gradient(circle at 10% 15%, rgba(215, 215, 215, 0.24), transparent 62%),
    rgba(13, 15, 22, 0.88);
}

.hiw__gfx--s2 {
  background:
    linear-gradient(155deg, rgba(219, 219, 219, 0.17) 0%, rgba(158, 158, 158, 0.07) 46%, rgba(255, 255, 255, 0.01) 100%),
    radial-gradient(circle at 86% 18%, rgba(225, 225, 225, 0.26), transparent 60%),
    rgba(14, 17, 24, 0.9);
}

.hiw__gfx--s3 {
  background:
    linear-gradient(145deg, rgba(241, 241, 241, 0.13) 0%, rgba(144, 144, 144, 0.09) 52%, rgba(255, 255, 255, 0.01) 100%),
    radial-gradient(circle at 50% 12%, rgba(232, 232, 232, 0.22), transparent 62%),
    rgba(12, 15, 21, 0.9);
}

.hiw__gfx--s4 {
  background:
    linear-gradient(152deg, rgba(210, 210, 210, 0.16) 0%, rgba(128, 128, 128, 0.08) 49%, rgba(255, 255, 255, 0.02) 100%),
    radial-gradient(circle at 20% 84%, rgba(215, 215, 215, 0.2), transparent 64%),
    rgba(15, 18, 25, 0.91);
}

.hiw__gfx--s5 {
  background:
    linear-gradient(150deg, rgba(245, 245, 245, 0.16) 0%, rgba(178, 178, 178, 0.08) 42%, rgba(255, 255, 255, 0.02) 100%),
    radial-gradient(circle at 84% 76%, rgba(215, 215, 215, 0.22), transparent 64%),
    rgba(12, 15, 21, 0.9);
}

.hiw__gfx--s6 {
  background:
    linear-gradient(145deg, rgba(240, 240, 240, 0.2) 0%, rgba(175, 175, 175, 0.08) 48%, rgba(255, 255, 255, 0.02) 100%),
    radial-gradient(circle at 50% 50%, rgba(240, 240, 240, 0.2), transparent 68%),
    rgba(11, 14, 20, 0.92);
}

.hiw__gfx--s7 {
  background:
    linear-gradient(155deg, rgba(235, 235, 235, 0.18) 0%, rgba(170, 170, 170, 0.08) 44%, rgba(255, 255, 255, 0.02) 100%),
    radial-gradient(circle at 30% 60%, rgba(225, 225, 225, 0.18), transparent 65%),
    rgba(13, 16, 23, 0.92);
}

.hiw__gfx--s1 .hiw__gfx-layer--back { inset: 14% 15% 36% 10%; }
.hiw__gfx--s1 .hiw__gfx-layer--mid { inset: 32% 12% 18% 20%; }
.hiw__gfx--s1 .hiw__gfx-layer--front { inset: 55% 22% 9% 12%; }

.hiw__gfx--s2 .hiw__gfx-layer--back { inset: 12% 10% 40% 16%; }
.hiw__gfx--s2 .hiw__gfx-layer--mid { inset: 28% 24% 23% 12%; }
.hiw__gfx--s2 .hiw__gfx-layer--front { inset: 52% 14% 11% 24%; }

.hiw__gfx--s3 .hiw__gfx-layer--back { inset: 18% 18% 42% 8%; }
.hiw__gfx--s3 .hiw__gfx-layer--mid { inset: 38% 10% 17% 26%; }
.hiw__gfx--s3 .hiw__gfx-layer--front { inset: 58% 25% 8% 10%; }

.hiw__gfx--s4 .hiw__gfx-layer--back { inset: 11% 20% 44% 12%; }
.hiw__gfx--s4 .hiw__gfx-layer--mid { inset: 33% 16% 20% 16%; }
.hiw__gfx--s4 .hiw__gfx-layer--front { inset: 54% 9% 10% 20%; }

.hiw__gfx--s5 .hiw__gfx-layer--back { inset: 14% 12% 41% 14%; }
.hiw__gfx--s5 .hiw__gfx-layer--mid { inset: 29% 20% 18% 10%; }
.hiw__gfx--s5 .hiw__gfx-layer--front { inset: 56% 16% 9% 22%; }

.hiw__gfx--s6 .hiw__gfx-layer--back { inset: 10% 14% 43% 14%; }
.hiw__gfx--s6 .hiw__gfx-layer--mid { inset: 31% 12% 20% 20%; }
.hiw__gfx--s6 .hiw__gfx-layer--front { inset: 53% 20% 10% 14%; }

.hiw__gfx--s7 .hiw__gfx-layer--back { inset: 16% 10% 38% 18%; }
.hiw__gfx--s7 .hiw__gfx-layer--mid { inset: 35% 14% 16% 14%; }
.hiw__gfx--s7 .hiw__gfx-layer--front { inset: 57% 18% 8% 16%; }

@media (max-width: 980px) {
  .hiw__track {
    min-height: 740vh;
  }

  .hiw__sticky {
    grid-template-columns: 1fr;
    gap: 1.2rem;
    align-content: center;
  }

  .hiw__step-layer {
    min-height: 32vh;
    height: 32vh;
    text-align: center;
  }

  .hiw__step-foot {
    justify-content: center;
    flex-direction: column;
    bottom: -2.2rem;
    gap: 0.35rem;
  }

  .hiw__step-text {
    margin-left: auto;
    margin-right: auto;
  }

  .hiw__gfx {
    width: min(92vw, 560px);
  }
}

@media (max-width: 640px) {
  .hiw {
    padding-top: 1rem;
  }

  .hiw__intro {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .hiw__track {
    min-height: 760vh;
  }

  .hiw__sticky {
    padding: 0 1rem;
  }

  .hiw__step-layer {
    height: 35vh;
  }

  .hiw__step-title {
    font-size: 1.65rem;
  }

  .hiw__step-text {
    font-size: 0.96rem;
    line-height: 1.62;
  }

  .hiw__gfx-icon {
    width: 78px;
    height: 78px;
    margin-top: -39px;
    margin-left: -39px;
    font-size: 1.55rem;
  }
}

/* Whirlwind Carousel Styles */
.hiw__carousel {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hiw__carousel-item {
  position: absolute;
  width: 280px;
  height: 373px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0;
  overflow: visible;
  box-shadow: none;
  transition: transform 0.05s linear, opacity 0.05s linear;
  will-change: transform, opacity;
  pointer-events: none;
  flex-shrink: 0;
  background: transparent;
}

.hiw__carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  image-rendering: high-quality;
  backface-visibility: hidden;
  -webkit-font-smoothing: antialiased;
  background: transparent;
}

.hiw__carousel-item:nth-child(1) { z-index: 4; }
.hiw__carousel-item:nth-child(2) { z-index: 5; }
.hiw__carousel-item:nth-child(3) { z-index: 6; }
.hiw__carousel-item:nth-child(4) { z-index: 7; }
.hiw__carousel-item:nth-child(5) { z-index: 8; }
.hiw__carousel-item:nth-child(6) { z-index: 9; }
.hiw__carousel-item:nth-child(7) { z-index: 10; }
.hiw__carousel-item:nth-child(8) { z-index: 9; }
.hiw__carousel-item:nth-child(9) { z-index: 8; }
.hiw__carousel-item:nth-child(10) { z-index: 7; }
.hiw__carousel-item:nth-child(11) { z-index: 6; }