/*
 * Enter any custom CSS here.
 * This file will not be overwritten by theme updates.
 * Copyright: https://veranitystore.net/
*/

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

  .global-header-liquid h2 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 950;
    color: #fff;
    letter-spacing: -2px;
    margin-bottom: 1rem;
  }

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

.liquid-product-card {
  position: relative;
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 50px 10px 50px 10px;
  padding: 2rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
  text-decoration: none !important;
  overflow: hidden;
  max-width: 480px;
  margin: 0 auto;
}

.liquid-product-image-wrapper {
  position: relative;
  border-radius: 40px 8px 40px 8px;
  overflow: hidden;
  margin-bottom: 1.5rem;
  aspect-ratio: 1/1;
  background: rgba(0, 0, 0, 0.2);
  transition: all 0.6s ease;
}

.liquid-product-card:hover {
  border-radius: 10px 50px 10px 50px;
  background: rgba(var(--cl-accent-rgb), 0.05);
  border-color: rgba(var(--cl-accent-rgb), 0.3);
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.liquid-product-card::after {
  content: '';
  position: absolute;
  top: -100%;
  left: -100%;
  width: 50%;
  height: 300%;
  background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.05), transparent);
  transform: rotate(35deg);
  transition: all 0.8s ease;
  z-index: 1;
  pointer-events: none;
}

.liquid-product-card:hover::after {
  left: 200%;
}

.liquid-product-image-wrapper {
  position: relative;
  border-radius: 40px 8px 40px 8px;
  overflow: hidden;
  margin-bottom: 1.5rem;
  aspect-ratio: var(--product-card-image-aspect-ratio);
  background: rgba(0, 0, 0, 0.2);
  transition: all 0.6s ease;
}

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

.liquid-product-image {
  width: 100%;
  height: 100%;
  object-fit: var(--product-image-fit);
  transition: transform 0.6s ease;
}

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

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

.liquid-product-badge {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.4rem 0.8rem;
  border-radius: 10px;
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  color: #fff;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(5px);
}

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

.liquid-product-name {
  color: #fff;
  font-size: 1.15rem;
  font-weight: 900;
  margin-bottom: 0.5rem;
  letter-spacing: -0.5px;
  line-height: 1.2;
}

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

.liquid-product-price {
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--cl-accent);
}

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

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

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

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

.liquid-product-btn {
  margin-top: 1.25rem;
  width: 100%;
  padding: 0.85rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 15px;
  color: #fff;
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  transition: all 0.4s ease;
}

.liquid-product-card:hover .liquid-product-btn {
  background: var(--cl-accent);
  border-color: transparent;
  box-shadow: 0 10px 20px rgba(var(--cl-accent-rgb), 0.3);
  transform: translateY(-2px);
}

/* Shared Liquid Header Style - https://veranitystore.net/ */
.liquid-header {
  text-align: left;
  margin-bottom: 5rem;
  border-left: 5px solid var(--cl-accent);
  padding-left: 2rem;
}

.liquid-header h2 {
  font-size: clamp(2.5rem, 7vw, 4.5rem);
  font-weight: 900;
  color: #fff;
  line-height: 0.9;
  letter-spacing: -3px;
  margin: 0;
}

.liquid-header h1 {
  font-size: clamp(2.5rem, 7vw, 4.5rem);
  font-weight: 900;
  color: #fff;
  line-height: 0.9;
  letter-spacing: -3px;
}

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

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

.policy-section-liquid {
  padding-top: 14rem !important;
  padding-bottom: 5rem;
}

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

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

/* Liquid Footer Styling - https://veranitystore.net/ */
.liquid-footer {
  position: relative;
  background: rgba(var(--cl-background-secondary-rgb), 0.3);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 5rem 0 0 0;
  overflow: hidden;
}

.liquid-footer-glow {
  position: absolute;
  bottom: -25%;
  right: -10%;
  width: 70%;
  height: 120%;
  background: radial-gradient(circle at center, rgba(var(--cl-accent-rgb), 0.18) 0%, transparent 75%);
  z-index: -1;
  pointer-events: none;
  filter: blur(100px); /* بلور أقوى لتنعيم الحواف تماماً */
  border-radius: 50%; /* تحويل الشكل لدائرة لمنع ظهور أي زوايا */
  opacity: 0.8;
}

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

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

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

.visitor-dot::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #22c55e;
  border-radius: 50%;
  animation: visitor-pulse 2s infinite;
}

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

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

.visitor-count {
  color: var(--cl-accent);
}

/* Product Page Liquid Styling - https://veranitystore.net/ */
.liquid-product-container {
  background: rgba(255, 255, 255, 0.01);
  backdrop-filter: blur(10px);
  border-radius: 40px;
  padding: 3rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
  margin-top: 2rem;
}

.liquid-product-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  color: #fff;
  letter-spacing: -2px;
  line-height: 1;
  margin-bottom: 1.5rem;
}

.liquid-variant-card {
  background: rgba(255, 255, 255, 0.02) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  border-radius: 15px !important;
  padding: 1.25rem !important;
  transition: all 0.4s ease !important;
  cursor: auto;
  position: relative;
  overflow: hidden;
}

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

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

.liquid-price-tag {
  font-size: 2rem;
  font-weight: 900;
  color: var(--cl-accent);
  text-shadow: 0 0 20px rgba(var(--cl-accent-rgb), 0.3);
}

.liquid-tab-btn {
  background: rgba(255, 255, 255, 0.03) !important;
  border: 1px solid rgba(255, 255, 255, 0.05) !important;
  border-radius: 12px !important;
  padding: 0.8rem 1.5rem !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 1px !important;
  color: rgba(255, 255, 255, 0.5) !important;
  transition: all 0.3s ease !important;
}

.liquid-tab-btn.active {
  background: var(--cl-accent) !important;
  color: #fff !important;
  border-color: transparent !important;
  box-shadow: 0 10px 20px rgba(var(--cl-accent-rgb), 0.3);
}

.liquid-image-main {
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

.liquid-thumb {
  border-radius: 12px !important;
  overflow: hidden;
  border: 2px solid transparent !important;
  transition: all 0.3s ease;
  opacity: 0.5;
}

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

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

/* Status Page Liquid - https://veranitystore.net/ */
.liquid-status-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem;
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  text-decoration: none !important;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  margin-bottom: 1rem;
}

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

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

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

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

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

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

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

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

.liquid-footer .nav-link i {
  transition: all 0.3s ease;
}

.liquid-footer .nav-link.discord:hover i { color: #5865F2 !important; filter: drop-shadow(0 0 8px #5865F2); }
.liquid-footer .nav-link.telegram:hover i { color: #26A5E4 !important; filter: drop-shadow(0 0 8px #26A5E4); }
.liquid-footer .nav-link.instagram:hover i { color: #E4405F !important; filter: drop-shadow(0 0 8px #E4405F); }
.liquid-footer .nav-link.tiktok:hover i { color: #00f2ea !important; filter: drop-shadow(0 0 8px #00f2ea); }
.liquid-footer .nav-link.youtube:hover i { color: #FF0000 !important; filter: drop-shadow(0 0 8px #FF0000); }

.liquid-footer-bottom {
  margin-top: 4rem;
  padding: 1.5rem 0;
  background: rgba(0, 0, 0, 0.2);
  border-top: 1px solid rgba(255, 255, 255, 0.03);
}

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

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

.card.p-4 {
  background: rgba(var(--cl-background-secondary-rgb), 0.3);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
}

button.w-100.mt-4.btn.btn-outline-primary {
    color: #ffffff;
    border-color: #ffffff;
}
/*
 * Enter any custom CSS here.
 * This file will not be overwritten by theme updates.
 * Copyright: https://veranitystore.net/
*/


body {
	cursor: url(https://media.discordapp.net/attachments/1480451647808208946/1493686758997495968/icons8-select-cursor-24.png?ex=6a0e0432&is=6a0cb2b2&hm=052021061255d9e19fc74b0cb6f96cbcc42008b56f9c8044b8798502e93a6efc&=&format=webp&quality=lossless), auto;
}

/* ---- Page Load Fade-Up Animations ---- */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeDown {
  from {
    opacity: 0;
    transform: translateY(-12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.anim-fade-up {
  opacity: 0;
  animation: fadeUp 0.6s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.anim-fade-down {
  opacity: 0;
  animation: fadeDown 0.5s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.anim-d1  { animation-delay: 0.05s; }
.anim-d2  { animation-delay: 0.15s; }
.anim-d3  { animation-delay: 0.25s; }
.anim-d4  { animation-delay: 0.38s; }
.anim-d5  { animation-delay: 0.50s; }
.anim-d6  { animation-delay: 0.62s; }
.anim-d7  { animation-delay: 0.74s; }

/* ---- Custom Mobile Navbar Overlay ---- */
.mobile-navbar-overlay {
  visibility: hidden;
  position: fixed;
  z-index: 2000;
  inset: 0;
  background: rgba(10, 10, 15, 0.85);
  transition: opacity 0.28s ease, visibility 0.28s ease;
  opacity: 0;
  pointer-events: none;
}
.mobile-navbar-overlay.open {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}
.mobile-navbar-content {
  position: absolute;
  top: 0;
  right: 0;
  width: 85vw;
  max-width: 340px;
  height: 100vh;
  height: 100dvh;
  background: #111114;
  border-left: 1px solid rgba(255,255,255,0.08);
  box-shadow: -8px 0 40px rgba(0,0,0,0.5);
  padding: 1.5rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0;
  overflow-y: auto;
  transform: translateX(110%);
  transition: transform 0.32s cubic-bezier(0.25, 1, 0.5, 1);
}
.mobile-navbar-overlay.open .mobile-navbar-content {
  transform: translateX(0);
}
.mobile-navbar-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 2.25rem;
  height: 2.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 0.5rem;
  font-size: 1.4rem;
  color: rgba(255,255,255,0.7);
  cursor: pointer;
  z-index: 10;
  line-height: 1;
  padding: 0;
  transition: background 0.2s, color 0.2s;
}
.mobile-navbar-close:hover {
  background: rgba(255,255,255,0.12);
  color: #fff;
}
.mobile-navbar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 1.25rem;
  margin-bottom: 0.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.mobile-navbar-header .navbar-brand {
  font-size: 0.85rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.mobile-navbar-header .navbar-brand img {
  max-height: 1.6rem;
  border-radius: 0.3rem;
}
.mobile-navbar-links {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  width: 100%;
  padding-top: 0.5rem;
}
.mobile-navbar-links .nav-col-center,
.mobile-navbar-links .nav-col-actions {
  width: 100%;
  display: block;
  flex: none;
}
.mobile-navbar-links .nav-pill-bar {
  width: 100%;
  background: none;
  border: none;
  box-shadow: none;
  padding: 0;
  border-radius: 0;
  display: block;
}
.mobile-navbar-links .navbar-nav {
  flex-direction: column !important;
  gap: 0 !important;
  width: 100%;
}
.mobile-navbar-links .nav-item {
  width: 100%;
  margin: 0 !important;
  padding: 0 !important;
}
/* Nav section label */
.mobile-nav-section-label {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  padding: 1rem 0.75rem 0.35rem;
  display: block;
}
/* All link rows in mobile menu */
.mobile-navbar-links .nav-pill-link,
.mobile-navbar-links .nav-link,
.mobile-navbar-links .btn:not(.nav-icon-btn) {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-align: left;
  font-size: 0.85rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.03em !important;
  text-transform: none !important;
  padding: 0.75rem 0.9rem !important;
  border-radius: 0.5rem !important;
  color: rgba(255,255,255,0.8) !important;
  background: transparent !important;
  border: none !important;
  margin-bottom: 0.1rem;
  transition: background 0.15s, color 0.15s;
  white-space: normal;
}
.mobile-navbar-links .nav-pill-link:hover,
.mobile-navbar-links .nav-link:hover,
.mobile-navbar-links .btn:not(.nav-icon-btn):hover {
  background: rgba(255,255,255,0.06) !important;
  color: #fff !important;
}
.mobile-navbar-links .nav-pill-link.active {
  color: var(--cl-accent) !important;
  background: rgba(34, 91, 197, 0.08) !important;
}
.mobile-navbar-links .nav-pill-link svg {
  width: 1rem !important;
  height: 1rem !important;
  opacity: 0.6;
  flex-shrink: 0;
}
.mobile-navbar-links .nav-pill-link.active svg {
  opacity: 1;
  color: var(--cl-accent);
}
/* Divider before actions section */
.mobile-navbar-links .nav-col-actions {
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(255,255,255,0.07);
}
/* Icon buttons row (Discord etc.) */
.mobile-navbar-links .nav-icon-btn {
  width: 2.5rem !important;
  height: 2.5rem !important;
  border-radius: 0.5rem !important;
}
/* Cart and discord on same row */
.mobile-navbar-links .nav-right-actions {
  flex-direction: column !important;
  align-items: flex-start;
  flex-wrap: nowrap;
  gap: 0 !important;
  padding-top: 0;
  width: 100%;
}
.mobile-navbar-links .nav-right-actions > .nav-item.cart {
  display: none !important;
}

body.mobile-navbar-open {
  overflow: hidden;
  touch-action: none;
  height: 100vh;
}
/* ============================================================
   ATHERIA-STYLE DARK GAMING THEME
   Accent: #22c55e (green)  |  Font: Inter
   ============================================================ */

/* ---------- Base ---------- */
::selection {
  background: rgba(18, 70, 167, 0.25);
}

::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.2);
}

body {
  background-color: var(--cl-background-primary);
  color: rgba(255, 255, 255, 0.87);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

html {
  overflow-x: hidden;
}

/* All sections are transparent so the dark body background extends wall-to-wall */
section.component:not(.hero) {
  background-color: transparent !important;
  background-image: none !important;
}

/* Wrapper / page layout bg */
.flex-wrapper,
main,
.main-content {
  background-color: transparent !important;
}

/* ---------- Navbar ---------- */
.navbar {
  background: transparent !important;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom: none !important;
  padding: 1rem 0 !important;
  position: absolute !important;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1030;
  transition: padding 0.3s ease, position 0.3s ease;
}

/* Scrolled state — floating pill */
.navbar.scrolled {
  background: transparent !important;
  border-bottom: none !important;
  padding: 0.6rem 1rem !important;
  position: fixed !important;
}

.navbar.scrolled .nav-container {
  background: rgba(10, 10, 13, 0.82) !important;
  backdrop-filter: blur(20px) !important;
  -webkit-backdrop-filter: blur(20px) !important;
  border: 1px solid rgba(255, 255, 255, 0.09) !important;
  border-radius: 1rem !important;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(34,197,94,0.04) !important;
  padding-top: 0.4rem !important;
  padding-bottom: 0.4rem !important;
  transition: border-radius 0.3s, box-shadow 0.3s !important;
}

/* Push page content down so navbar doesn't overlap */
.flex-wrapper > div:first-child {
  padding-top: 0;
}

@media (max-width: 991px) {
  .flex-wrapper > div:first-child {
    padding-top: 4.5rem;
  }
}

/* 3-column flex container */
.navbar .container.nav-container {
  display: flex !important;
  align-items: center;
  padding-top: 0.35rem !important;
  padding-bottom: 0.35rem !important;
  gap: 1.5rem;
}

/* Column 1: Brand â€” flex:1, left-aligned */
.nav-col-brand {
  flex: 1;
  display: flex;
  align-items: center;
  min-width: 0;
}

.navbar .navbar-brand {
  font-size: 0.9rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #ffffff;
  gap: 0.55rem;
  padding: 0;
  border: 0;
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
}

.navbar .navbar-brand img {
  max-height: 2rem;
  border-radius: 0.375rem;
}

/* Column 2: Center pill â€” desktop only (Bootstrap collapse hides this on mobile) */
@media (min-width: 992px) {
  .navbar .navbar-collapse {
    flex: 2 !important;
    display: flex !important;
    align-items: center;
    justify-content: space-between;
  }
}

.nav-col-center {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Column 3: Actions â€” flex:1, right-aligned */
.nav-col-actions {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

/* Pill bar container */
.nav-pill-bar {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 100px;
  padding: 0.25rem;
  box-shadow: 0 2px 16px rgba(0,0,0,0.3);
  position: relative;
}

/* Sliding green indicator pill */
.nav-pill-indicator {
  position: absolute;
  top: 0.25rem;
  left: 0.25rem;
  height: calc(100% - 0.5rem);
  border-radius: 100px;
  background: rgba(29, 67, 192, 0.15);
  border: 1px solid rgba(34, 132, 197, 0.28);
  pointer-events: none;
  opacity: 0;
  transition: transform 0.28s cubic-bezier(0.34, 1.2, 0.64, 1), width 0.28s cubic-bezier(0.34, 1.2, 0.64, 1), opacity 0.18s;
  z-index: 0;
}

.nav-pill-bar .navbar-nav {
  flex-direction: row !important;
  gap: 0.1rem;
}

.nav-pill-bar .nav-pill-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.65rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
  color: rgba(255, 255, 255, 0.45) !important;
  padding: 0.5rem 1rem !important;
  border-radius: 100px;
  transition: color 0.2s;
  white-space: nowrap;
  position: relative;
  z-index: 1;
}

.nav-pill-bar .nav-pill-link svg {
  width: 0.75rem;
  height: 0.75rem;
  flex-shrink: 0;
  opacity: 0.5;
  transition: opacity 0.2s;
}

.nav-pill-bar .nav-pill-link:hover {
  color: rgba(255, 255, 255, 0.85) !important;
}

.nav-pill-bar .nav-pill-link:hover svg {
  opacity: 0.85;
}

/* Active pill â€” text + icon color only; background handled by .nav-pill-indicator */
.nav-pill-bar .nav-pill-link.active,
.nav-pill-bar .nav-item a.nav-pill-link.active {
  background: none !important;
  border: none !important;
  color: var(--cl-accent) !important;
}

.nav-pill-bar .nav-pill-link.active svg {
  opacity: 1;
  color: var(--cl-accent);
}

/* Right actions row */
.nav-right-actions {
  flex-direction: row !important;
  align-items: center;
  gap: 0.625rem !important;
  flex-wrap: nowrap;
}

/* Beat the .navbar .navbar-collapse .navbar-nav { gap:0 } override */
.navbar .navbar-collapse .nav-right-actions {
  gap: 0.625rem !important;
}

.nav-right-actions > .nav-item {
  margin: 0 !important;
  padding: 0 !important;
}

/* Icon buttons (cart, discord) */
.nav-icon-btn {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0 !important;
  background: rgba(255, 255, 255, 0.06) !important;
  border: 1px solid rgba(255, 255, 255, 0.09) !important;
  border-radius: 100px;
  color: rgba(255, 255, 255, 0.55) !important;
  transition: background 0.18s, border-color 0.18s, color 0.18s;
  position: relative;
  flex-shrink: 0;
}

.nav-icon-btn .icon,
.nav-icon-btn svg {
  width: 1.1rem !important;
  height: 1.1rem !important;
  flex-shrink: 0;
  display: block;
}

.nav-icon-btn:hover {
  background: rgba(255, 255, 255, 0.1) !important;
  border-color: rgba(255, 255, 255, 0.18) !important;
  color: #ffffff !important;
}

/* Discord â€” green to match site accent */
.nav-icon-btn-accent {
  background: rgba(30, 78, 182, 0.08) !important;
  border-color: rgba(31, 152, 173, 0.25) !important;
  color: var(--cl-accent) !important;
}

.nav-icon-btn-accent:hover {
  background: rgba(34, 91, 197, 0.15) !important;
  border-color: rgba(34, 173, 197, 0.4) !important;
  color: var(--cl-accent) !important;
}

/* Cart count badge */
.nav-icon-btn .count {
  position: absolute;
  top: -0.3rem;
  right: -0.3rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 0.95rem;
  height: 0.95rem;
  background: var(--cl-accent);
  color: #000;
  font-size: 0.5rem;
  font-weight: 800;
  border-radius: 100%;
}

/* Login / My Account pill */
.nav-text-link {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  height: 2.5rem !important;
  padding: 0 1.35rem !important;
  font-size: 0.65rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
  color: rgba(255, 255, 255, 0.75) !important;
  background: rgba(255, 255, 255, 0.07) !important;
  border: 1px solid rgba(255, 255, 255, 0.13) !important;
  border-radius: 100px !important;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
  white-space: nowrap;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-text-link:hover {
  background: rgba(34, 91, 197, 0.1) !important;
  border-color: rgba(34, 137, 197, 0.3) !important;
  color: var(--cl-accent) !important;
}

/* ---- Mobile navbar ---- */
@media (max-width: 991px) {
  .navbar {
    position: fixed !important;
    top: 0;
    left: 0;
    right: 0;
    width: 100vw;
    background: #101014 !important;
    box-shadow: 0 2px 16px rgba(0,0,0,0.25), 0 1px 0 rgba(255,255,255,0.04);
    border-bottom: 1.5px solid rgba(255,255,255,0.08) !important;
    z-index: 1100;
    padding: 0.7rem 0.5rem 0.7rem 0.5rem !important;
  }

  .navbar .container.nav-container {
    padding-left: 0.5rem !important;
    padding-right: 0.5rem !important;
    gap: 0.5rem;
  }

  .nav-col-brand {
    flex: 1;
    min-width: 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0.7rem;
  }

  .navbar .navbar-brand {
    font-size: 1.1rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #fff;
    gap: 0.5rem;
    padding: 0;
    border: 0;
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
    text-decoration: none;
  }

  .navbar .navbar-brand img {
    max-height: 1.7rem;
    border-radius: 0.375rem;
  }

  .custom-mobile-menu-btn {
    margin-left: 0.5rem;
    background: rgba(255,255,255,0.07) !important;
    border-radius: 0.7rem !important;
    border: none;
    width: 2.7rem;
    height: 2.7rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 1px 4px rgba(0,0,0,0.13);
  }

  .custom-mobile-menu-btn .navbar-toggler-icon {
    width: 1.7rem;
    height: 1.7rem;
    background-size: 1.7rem 1.7rem;
  }

}

/* Scroll detection script injected below navbar */

/* Override pro.css navbar gap */
.navbar .navbar-collapse .navbar-nav:not(.nav-right-actions) {
  gap: 0 !important;
}

@media screen and (min-width: 992px) {
  .navbar .navbar-collapse .navbar-nav:not(.nav-right-actions) {
    gap: 0 !important;
  }
}

.navbar .currency-selector select,
.navbar .currency-selector .choices {
  font-size: 0.7rem;
}
/* ---------- Hero â€” Override pro.css base ---------- */
section.hero.component {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background-size: cover;
  background-position: center;
  background-image: none !important;
  min-height: 100vh !important;
  overflow: hidden;
}

/* Dark overlay + left-biased darkening */
section.hero.component .bg-overlay {
  position: absolute;
  inset: 0;
  background: none !important;
  z-index: 0;
}

/* Green radial atmosphere behind content */
section.hero.component::after {
  content: '';
  position: absolute;
  left: -5%;
  top: 20%;
  width: 55%;
  height: 60%;
  background: radial-gradient(ellipse at center, rgba(34, 197, 94, 0.055) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}

/* Plexus canvas â€” sits above bg-overlay, below content */
.hero-plexus {
  display: none;
}

/* Full-page plexus canvas (injected into body via master.njk) */
#site-plexus {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
  will-change: transform;
  transform: translateZ(0);
}

/* Two-column hero row */
section.hero.component > .container.hero-row {
  position: relative;
  z-index: 2;
  padding: 9rem 1.25rem 5rem !important;
  display: flex !important;
  flex-direction: row !important;
  align-items: center;
  gap: 5rem;
  width: 100%;
  max-width: 1320px;
}

/* Left content column */
.hero-content-col {
  flex: 1 1 55%;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}

/* Right visual column */
.hero-visual-col {
  flex: 0 0 50%;
  max-width: 50%;
}

/* Brand label badge */
.hero-brand-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  background: rgba(34, 197, 94, 0.08);
  border: 1px solid rgba(34, 197, 94, 0.28);
  color: var(--cl-accent);
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.4rem 0.9rem;
  border-radius: 100px;
  margin-bottom: 1.75rem;
}

.hero-badge-dot {
  width: 0.42rem;
  height: 0.42rem;
  background: var(--cl-accent);
  border-radius: 100%;
  flex-shrink: 0;
  box-shadow: 0 0 6px var(--cl-accent);
}

/* Hero headline */
section.hero.component .hero-content-col h1 {
  font-size: clamp(3rem, 6.5vw, 5.75rem) !important;
  font-weight: 900 !important;
  line-height: 1.0 !important;
  letter-spacing: -0.03em !important;
  text-transform: uppercase !important;
  color: #ffffff !important;
  margin-bottom: 1.5rem !important;
  text-shadow: 0 2px 40px rgba(0,0,0,0.5);
}

/* Subtitle */
.hero-subtitle-text {
  font-size: 1.05rem !important;
  color: rgba(255, 255, 255, 0.5) !important;
  line-height: 1.65 !important;
  margin-bottom: 2rem !important;
  max-width: 460px;
}

/* Override pro.css link margin */
section.hero.component .hero-content-col a {
  margin-bottom: 0 !important;
}

/* Feature checklist 2-column grid */
.hero-features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.55rem 2rem;
  margin-bottom: 2rem;
}

.hero-feature-item {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  white-space: nowrap;
}

.hero-feature-item svg {
  width: 0.8rem;
  height: 0.8rem;
  color: #000;
  flex-shrink: 0;
  background: var(--cl-accent);
  padding: 0.2rem;
  border-radius: 100%;
  box-sizing: content-box;
}

/* CTA buttons row */
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

a.btn.hero-btn-primary,
button.btn.hero-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0 2rem;
  height: 3rem;
  background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%) !important;
  color: #000000 !important;
  border: none !important;
  border-radius: 0.5rem;
  text-decoration: none;
  transition: filter 0.2s, transform 0.2s, box-shadow 0.2s;
  box-sizing: border-box;
  box-shadow: 0 4px 24px rgba(34, 197, 94, 0.3);
}

a.btn.hero-btn-primary svg,
button.btn.hero-btn-primary svg {
  width: 0.85rem;
  height: 0.85rem;
}

a.btn.hero-btn-primary:hover,
button.btn.hero-btn-primary:hover {
  filter: brightness(1.1);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(34, 197, 94, 0.45);
  color: #000000 !important;
}

a.btn.hero-btn-dashboard,
button.btn.hero-btn-dashboard {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0 1.75rem;
  height: 3rem;
  background: rgba(255, 255, 255, 0.06) !important;
  color: rgba(255, 255, 255, 0.7) !important;
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
  border-radius: 0.5rem;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  box-sizing: border-box;
  backdrop-filter: blur(8px);
}

a.btn.hero-btn-dashboard svg,
button.btn.hero-btn-dashboard svg {
  width: 0.85rem;
  height: 0.85rem;
}

a.btn.hero-btn-dashboard:hover,
button.btn.hero-btn-dashboard:hover {
  background: rgba(255, 255, 255, 0.1) !important;
  border-color: rgba(255, 255, 255, 0.28) !important;
  color: #ffffff !important;
}

/* Search pill */
.hero-search {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0.5rem;
  padding: 0.65rem 1.1rem;
  width: 100%;
  max-width: 420px;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.8rem;
  margin-bottom: 1.25rem;
  transition: background 0.18s, border-color 0.18s, color 0.18s;
}

.hero-search:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.5);
}

/* Stats row */
section.hero.component .stats-wrapper {
  margin-top: 0;
}

section.hero.component .hero-content-col .stats {
  background: rgba(255, 255, 255, 0.04) !important;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 0.75rem;
  padding: 1rem 1.75rem !important;
  display: inline-flex;
  gap: 0;
  max-width: none !important;
  backdrop-filter: blur(12px);
}

section.hero.component .hero-content-col .stats div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 0 1.75rem;
}

section.hero.component .hero-content-col .stats div:first-child {
  padding-left: 0;
}

section.hero.component .hero-content-col .stats div:not(:last-child) {
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  margin-right: 0;
  padding-right: 1.75rem;
}

section.hero.component .hero-content-col .stats div .value {
  font-size: 1.35rem !important;
  font-weight: 800;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  line-height: 1.2;
}

section.hero.component .hero-content-col .stats div .value svg {
  width: 1rem;
  height: 1rem;
  color: var(--cl-accent);
}

section.hero.component .hero-content-col .stats div .label {
  font-size: 0.58rem !important;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  margin-top: 0.2rem;
}

/* 2x2 product tile grid */
.hero-product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.hero-product-tile {
  position: relative;
  border-radius: 0.75rem;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  display: block;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform 0.18s, border-color 0.18s;
}

.hero-product-tile:hover {
  transform: scale(1.02);
  border-color: rgba(255, 255, 255, 0.16);
}

.hero-product-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-tile-placeholder {
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.04);
}

.hero-tile-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem 0.75rem 0.6rem;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 100%);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #ffffff;
}

/* Side image fallback */
.hero-side-img img {
  width: 100%;
  border-radius: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

/* YouTube embed */
.hero-video-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 0.875rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.55);
}

.hero-video-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Mobile hero */
@media (max-width: 991px) {
  section.hero.component > .container.hero-row {
    flex-direction: column !important;
    padding: 7rem 1rem 3rem !important;
    gap: 2.5rem;
  }

  .hero-content-col {
    flex: 1 1 100%;
  }

  .hero-visual-col {
    flex: 0 0 100%;
    max-width: 100%;
    width: 100%;
  }

  section.hero.component .hero-content-col h1 {
    font-size: clamp(2.5rem, 8vw, 4rem) !important;
  }

  .hero-features-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem 1rem;
  }
}

@media (max-width: 575px) {
  section.hero.component > .container.hero-row {
    padding: 6rem 1rem 2.5rem !important;
  }

  section.hero.component .hero-content-col h1 {
    font-size: 2.5rem !important;
  }

  .hero-features-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  a.btn.hero-btn-primary,
  button.btn.hero-btn-primary,
  a.btn.hero-btn-dashboard,
  button.btn.hero-btn-dashboard {
    width: 100%;
    justify-content: center;
  }
}

/* ---------- Section Titles ---------- */
.section-title {
  justify-content: center !important;
  text-align: center;
  margin-bottom: 0.5rem;
}

.section-title h1,
.section-title h2 {
  font-size: clamp(2rem, 4vw, 3rem) !important;
  font-weight: 900 !important;
  letter-spacing: -0.01em !important;
  text-transform: none !important;
  color: #ffffff;
  margin-bottom: 0.75rem;
  display: block;
}

/* Accent underline on section headings */
.section-title h1::after,
.section-title h2::after {
  content: '';
  display: block;
  width: 2.25rem;
  height: 2px;
  background: var(--cl-accent);
  border-radius: 2px;
  margin: 0 auto;
}

.section-title p {
  color: rgba(255, 255, 255, 0.35);
  border-left: none !important;
  padding-left: 0 !important;
}

.section-subtitle {
  justify-content: center !important;
  text-align: center;
  margin-top: 0.2rem;
  margin-bottom: 2.5rem;
}

.section-subtitle p {
  color: rgba(255, 255, 255, 0.38);
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto;
}

/* ---------- Add spacing between sections ---------- */
section.component.py-20 {
  padding-top: 4.5rem !important;
  padding-bottom: 4.5rem !important;
}
/* ---------- Features ---------- */
.features.component {
  max-width: 1200px !important;
}

.features .list {
  justify-content: center;
  row-gap: 1.25rem;
}

.features .list > div {
  display: flex;
}

.features .list .feature {
  background: linear-gradient(145deg, rgba(16, 16, 16, 1) 0%, rgba(10, 10, 10, 1) 65%) !important;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 1rem;
  text-align: left;
  align-items: flex-start;
  padding: 1.75rem;
  transition: border-color 0.3s, box-shadow 0.3s, background 0.3s;
  position: relative;
  overflow: hidden;
  width: 100%;
  box-shadow: inset 3px 0 0 rgba(34, 197, 94, 0.25);
}

/* Top accent bar on hover */
.features .list .feature::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--cl-accent), transparent);
  opacity: 0;
  transition: opacity 0.25s;
}

.features .list .feature:hover::before {
  opacity: 1;
}

.features .list .feature:hover {
  border-color: rgba(34, 197, 94, 0.30);
  background: linear-gradient(145deg, rgba(18, 18, 18, 1) 0%, rgba(12, 12, 12, 1) 65%) !important;
  box-shadow: inset 3px 0 0 rgba(34, 197, 94, 0.75),
              0 20px 55px rgba(0, 0, 0, 0.5),
              -4px 0 25px rgba(34, 197, 94, 0.07);
}

/* Watermark icon */
.features .list .feature .feat-watermark {
  position: absolute;
  bottom: -0.75rem;
  right: 0.5rem;
  pointer-events: none;
  z-index: 0;
  line-height: 1;
}

.features .list .feature .feat-watermark i {
  font-size: 7rem !important;
  opacity: 0.06;
  color: #ffffff !important;
  background: none !important;
  border: none !important;
  border-radius: 0 !important;
  width: auto !important;
  height: auto !important;
  margin: 0 !important;
  display: block !important;
}

/* Icon box */
.features .list .feature i {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  background: rgba(34, 197, 94, 0.10);
  border: 1px solid rgba(34, 197, 94, 0.28);
  border-radius: 0.65rem;
  color: var(--cl-accent) !important;
  font-size: 1.1rem !important;
  margin-bottom: 1.25rem;
  position: relative;
  z-index: 1;
  transition: background 0.25s, box-shadow 0.25s, border-color 0.25s;
  box-shadow: 0 0 14px rgba(34, 197, 94, 0.14);
}

.features .list .feature:hover i {
  background: rgba(34, 197, 94, 0.20);
  border-color: rgba(34, 197, 94, 0.50);
  box-shadow: 0 0 24px rgba(34, 197, 94, 0.32);
}

.features .list .feature svg {
  width: 2.75rem;
  height: 2.75rem;
  color: var(--cl-accent);
  margin-bottom: 1.25rem;
}

.features .list .feature .title {
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  text-transform: none;
  color: #ffffff;
  margin-bottom: 0.625rem;
  position: relative;
  z-index: 1;
}

.features .list .feature .description {
  color: rgba(255, 255, 255, 0.50);
  font-size: 0.8125rem;
  line-height: 1.75;
  padding: 0;
  position: relative;
  z-index: 1;
}

/* ---------- Feedbacks / Reviews ---------- */
.feedbacks-wrapper .card,
.feedback-card,
section.py-20 .row {
  justify-content: center;
}

/* Review card â€” matches feature card aesthetic */
.feedbacks-wrapper .card,
.feedback-card,
section.py-20 .col-12 .card,
.reviews-card-wrap .testimonial {
  background: linear-gradient(145deg, rgba(16,16,16,1) 0%, rgba(10,10,10,1) 65%) !important;
  border: 1px solid rgba(255,255,255,0.09) !important;
  border-radius: 1rem !important;
  transition: border-color 0.3s, box-shadow 0.3s !important;
  box-shadow: inset 3px 0 0 rgba(34,197,94,0.25) !important;
  margin-bottom: 0 !important;
  position: relative !important;
  overflow: hidden !important;
}

.feedbacks-wrapper .card:hover,
.feedback-card:hover,
section.py-20 .col-12 .card:hover,
.reviews-card-wrap .testimonial:hover {
  border-color: rgba(34,197,94,0.3) !important;
  box-shadow: inset 3px 0 0 rgba(34,197,94,0.75),
              0 20px 55px rgba(0,0,0,0.5),
              -4px 0 25px rgba(34,197,94,0.07) !important;
}

/* Quote icon â€” styled like feature icon box */
.reviews-card-wrap .testimonial .header svg.quote,
.testimonial .header svg.quote {
  width: 2.5rem !important;
  height: 2.5rem !important;
  color: var(--cl-accent) !important;
  background: rgba(34,197,94,0.1) !important;
  border: 1px solid rgba(34,197,94,0.28) !important;
  border-radius: 0.65rem !important;
  padding: 0.5rem !important;
  box-shadow: 0 0 14px rgba(34,197,94,0.14) !important;
  flex-shrink: 0 !important;
}

/* Stars */
.testimonial .stars {
  display: flex !important;
  align-items: center !important;
  gap: 0.1rem !important;
}

.testimonial .stars svg {
  width: 0.9rem !important;
  height: 0.9rem !important;
}

/* Header layout */
.testimonial .header {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  padding: 1.25rem 1.5rem 0.875rem !important;
  margin-bottom: 0 !important;
}

/* Message text */
.testimonial .content {
  padding: 0 1.5rem 1rem !important;
}

.testimonial .content .message p,
.testimonial .content .message span {
  font-size: 0.85rem !important;
  color: rgba(255,255,255,0.6) !important;
  line-height: 1.7 !important;
  margin: 0 !important;
}

/* Hide reply block inside marquee cards so all cards stay the same height */
.reviews-card-wrap .testimonial .content .reply {
  display: none !important;
}

/* Footer bar */
.reviews-card-wrap .testimonial .footer,
.testimonial .footer {
  background: rgba(0,0,0,0.2) !important;
  border-top: 1px solid rgba(255,255,255,0.06) !important;
  color: rgba(255,255,255,0.35) !important;
  font-size: 0.72rem !important;
  padding: 0.6rem 1.5rem !important;
  border-radius: 0 0 1rem 1rem !important;
}

/* Product name */
.testimonial .footer .items {
  color: rgba(255,255,255,0.5) !important;
  font-weight: 600 !important;
  font-size: 0.72rem !important;
}

/* Date */
.testimonial .footer .date {
  color: var(--cl-accent) !important;
  font-weight: 700 !important;
  opacity: 0.7;
}

/* ---------- Socials ---------- */
.socials {
  background: rgba(255, 255, 255, 0.015) !important;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.socials .section-title {
  justify-content: center !important;
  text-align: center;
}

.socials .list .social {
  background: rgba(255, 255, 255, 0.03) !important;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 0.75rem;
  transition: border-color 0.22s, background 0.22s;
}

.socials .list .social:hover {
  border-color: rgba(34, 197, 94, 0.3);
  background: rgba(34, 197, 94, 0.04) !important;
  color: var(--cl-accent);
}

/* ---------- Announcement ---------- */
.announcement {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ---------- Discord Community Banner ---------- */
.discord-banner-wrap {
  background: #000000;
  padding: 2.5rem 0;
}

.discord-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 0.875rem;
  padding: 1.75rem 2rem;
}

.discord-banner-text {
  flex: 1;
}

.discord-banner-title {
  font-size: 1.2rem;
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 0.35rem;
  letter-spacing: -0.01em;
}

.discord-banner-desc {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
  margin: 0;
  max-width: 42ch;
  line-height: 1.6;
}

.discord-banner-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  background: #5865F2;
  color: #ffffff !important;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  padding: 0.7rem 1.5rem;
  border-radius: 0.5rem;
  text-decoration: none !important;
  white-space: nowrap;
  flex-shrink: 0;
  transition: filter 0.18s, transform 0.18s, box-shadow 0.18s;
  box-shadow: 0 4px 20px rgba(88,101,242,0.35);
}

.discord-banner-btn:hover {
  filter: brightness(1.1);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(88,101,242,0.5);
}
/* ---------- Global Buttons ---------- */
.btn-primary {
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.75rem;
  border-radius: 0.4rem;
  color: #000 !important;
}

.btn-primary:hover {
  color: #000 !important;
  filter: brightness(1.08);
}

/* ---------- Cards / Modals ---------- */
.modal-content {
  background: #0d0d10 !important;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.modal-header {
  border-bottom-color: rgba(255, 255, 255, 0.07);
}

.modal-footer {
  border-top-color: rgba(255, 255, 255, 0.07);
}

/* ---------- Forms ---------- */
.form-control,
.form-select {
  background-color: rgba(255, 255, 255, 0.04) !important;
  border-color: rgba(255, 255, 255, 0.08) !important;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.875rem;
}

.form-control::placeholder { color: rgba(255, 255, 255, 0.28); }

.form-control:focus,
.form-select:focus {
  background-color: rgba(255, 255, 255, 0.06) !important;
  border-color: var(--cl-accent) !important;
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.12) !important;
}

/* ---------- Search Modal fix ---------- */
.hero .search-modal .searchbar input {
  background: rgba(255, 255, 255, 0.05) !important;
  border-color: rgba(255, 255, 255, 0.08) !important;
}

/* ---------- Chips / tabs (product categories) ---------- */
.chips .btn {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 100px;
  padding: 0.35rem 0.85rem;
}

/* ---------- Misc ---------- */
.bg-image {
  filter: brightness(0.4);
}

/* Customer dashboard sidebar, pages */
.card {
  background: var(--cl-background-secondary);
  border-color: rgba(255, 255, 255, 0.06);
}

/* Product page styles */
.product-wrapper .badges div,
.product-wrapper .badges a {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  border-radius: 0.25rem;
}
/* ============================================================
   PRODUCT PAGE â€” Full Redesign
   ============================================================ */

.prod-page-container {
  padding-top: 7rem;
  padding-bottom: 5rem;
}

/* â”€â”€ TOP ROW â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.prod-top-row {
  margin-bottom: 2.5rem;
  align-items: flex-start;
}

/* â”€â”€ IMAGE COL â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.prod-image-wrap {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 1.15rem;
  overflow: hidden;
  box-shadow: 0 0 0 1px rgba(34,197,94,0.06),
              0 32px 64px rgba(0,0,0,0.55),
              0 0 80px rgba(34,197,94,0.04);
}

.prod-main-img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.prod-image-wrap:hover .prod-main-img {
  transform: scale(1.025);
}

.prod-img-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 16 / 10;
  background: rgba(255,255,255,0.025);
  color: rgba(255,255,255,0.2);
}

.prod-thumbnails {
  display: flex;
  gap: 0.5rem;
  padding: 0.75rem;
  background: rgba(0,0,0,0.3);
  border-top: 1px solid rgba(255,255,255,0.06);
  flex-wrap: wrap;
}

.prod-thumbnails button {
  width: 4rem;
  height: 2.75rem;
  border: 2px solid transparent;
  border-radius: 0.375rem;
  overflow: hidden;
  padding: 0;
  background: rgba(255,255,255,0.05);
  cursor: pointer;
  transition: border-color 0.18s;
  flex-shrink: 0;
}

.prod-thumbnails button img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.prod-thumbnails button.active,
.prod-thumbnails button:hover {
  border-color: var(--cl-accent);
}

/* â”€â”€ INFO COL â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.prod-info-inner {
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* Badges */
.prod-badges-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 0.875rem;
}

.prod-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 0;
}

.prod-badges-row .prod-live-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 0;
}

.prod-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.28rem 0.65rem;
  border-radius: 0.3rem;
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.75);
  text-decoration: none;
}

.prod-badge-cat {
  background: rgba(34,197,94,0.1);
  border-color: rgba(34,197,94,0.3);
  color: var(--cl-accent);
}

/* Divider */
.prod-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, rgba(34,197,94,0.35), rgba(255,255,255,0.06), transparent);
  margin: 0.75rem 0 1rem;
}

/* Title */
.prod-title {
  font-size: clamp(1.4rem, 2.75vw, 2.1rem) !important;
  font-weight: 900 !important;
  letter-spacing: -0.03em;
  color: #ffffff;
  line-height: 1.12;
  margin: 0 0 0.35rem;
}

/* Price row */
.prod-price-row {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  margin-bottom: 0.875rem;
  padding: 0.875rem 1rem;
  background: rgba(34,197,94,0.04);
  border: 1px solid rgba(34,197,94,0.12);
  border-radius: 0.65rem;
}

.prod-price-block {
  display: flex;
  align-items: baseline;
  gap: 0.1rem;
  flex: 1;
}

.prod-price-value {
  font-size: 2rem;
  font-weight: 900;
  color: var(--cl-accent);
  letter-spacing: -0.04em;
  line-height: 1;
  text-shadow: 0 0 40px rgba(34,197,94,0.35);
}

/* Stock badges */
.prod-stock-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.7rem;
  border-radius: 100px;
}

.prod-stock-in {
  background: rgba(34,197,94,0.12);
  border: 1px solid rgba(34,197,94,0.3);
  color: var(--cl-accent);
}

.prod-stock-out {
  background: rgba(239,68,68,0.12);
  border: 1px solid rgba(239,68,68,0.3);
  color: #f87171;
}

.prod-stock-hold {
  background: rgba(234,179,8,0.12);
  border: 1px solid rgba(234,179,8,0.3);
  color: #fbbf24;
}

.prod-stock-dot {
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: currentColor;
  flex-shrink: 0;
}

/* Status row */
.prod-status-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.prod-status-dot-pulse {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  flex-shrink: 0;
  animation: pulseDot 2s infinite;
}

@keyframes pulseDot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.75); }
}

/* Live stats */
.prod-live-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
}

.prod-live-stat {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.38);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 0.35rem;
  padding: 0.3rem 0.65rem;
}

/* Section labels */
.prod-section-label {
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin: 0 0 0.5rem;
}

/* â”€â”€ VARIANT SELECTOR â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.prod-variants {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.prod-variant-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0.9rem 1.1rem;
  background: rgba(255,255,255,0.03);
  border: 1.5px solid rgba(255,255,255,0.09);
  border-radius: 0.65rem;
  cursor: pointer;
  text-align: left;
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
  position: relative;
  gap: 0.75rem;
}

.prod-variant-btn:hover:not(.active):not(:disabled) {
  border-color: rgba(34,197,94,0.3);
  background: rgba(34,197,94,0.04);
}

.prod-variant-btn.active {
  border-color: var(--cl-accent) !important;
  background: rgba(34,197,94,0.07) !important;
  box-shadow: inset 0 0 0 1px rgba(34,197,94,0.12), 0 0 18px rgba(34,197,94,0.06);
}

.prod-variant-btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.pv-left {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  flex: 1;
}

.pv-name {
  font-size: 0.9rem;
  font-weight: 700;
  color: #ffffff;
  display: block;
}

.pv-desc {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.38);
  display: block;
}

.pv-stock {
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--cl-accent);
  text-transform: uppercase;
}

.pv-stock.out {
  color: #f87171;
}

.pv-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.15rem;
  flex-shrink: 0;
}

.pv-price {
  font-size: 1rem;
  font-weight: 800;
  color: #ffffff;
  white-space: nowrap;
}

.pv-slash {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.28);
  white-space: nowrap;
}

.pv-check {
  position: absolute;
  top: 0.625rem;
  right: 0.625rem;
  color: var(--cl-accent);
}

/* â”€â”€ QUANTITY â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.prod-quantity {
  display: flex;
  align-items: center;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 0.5rem;
  overflow: hidden;
  width: fit-content;
  margin-bottom: 1.25rem;
}

.qty-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.4rem;
  height: 2.4rem;
  background: transparent;
  border: none;
  cursor: pointer;
  color: rgba(255,255,255,0.6);
  transition: background 0.15s, color 0.15s;
  flex-shrink: 0;
}

.qty-btn:hover:not(:disabled) {
  background: rgba(255,255,255,0.08);
  color: #ffffff;
}

.qty-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.qty-input {
  width: 3rem;
  height: 2.4rem;
  background: transparent !important;
  border: none !important;
  border-left: 1px solid rgba(255,255,255,0.08) !important;
  border-right: 1px solid rgba(255,255,255,0.08) !important;
  border-radius: 0 !important;
  text-align: center;
  font-weight: 700;
  font-size: 0.875rem;
  color: #ffffff;
  outline: none !important;
  box-shadow: none !important;
  -moz-appearance: textfield;
}

.qty-input::-webkit-outer-spin-button,
.qty-input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }

.prod-volume-hint {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.38);
  margin-top: -0.75rem;
  margin-bottom: 1rem;
}

/* â”€â”€ BUY BUTTONS â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.prod-buy-buttons {
  display: flex;
  gap: 0.625rem;
  margin-bottom: 1.25rem;
}

.prod-btn-buy {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  height: 3.25rem;
  background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
  border: none;
  border-radius: 0.6rem;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #000000 !important;
  cursor: pointer;
  transition: filter 0.18s, transform 0.18s, box-shadow 0.18s;
  box-shadow: 0 4px 20px rgba(34,197,94,0.25);
}

.prod-btn-buy:hover:not(:disabled) {
  filter: brightness(1.08);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(34,197,94,0.35);
}

.prod-btn-buy:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  transform: none;
}

.prod-btn-cart {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.25rem;
  height: 3.25rem;
  background: rgba(255,255,255,0.05);
  border: 1.5px solid rgba(255,255,255,0.12);
  border-radius: 0.6rem;
  color: rgba(255,255,255,0.6);
  cursor: pointer;
  transition: background 0.18s, border-color 0.18s, color 0.18s;
  flex-shrink: 0;
}

.prod-btn-cart:hover:not(:disabled) {
  background: rgba(255,255,255,0.09);
  border-color: rgba(255,255,255,0.25);
  color: #ffffff;
}

.prod-btn-cart:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

/* â”€â”€ SECURE PAYMENT â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.prod-secure-payment {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.prod-secure-label {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.28);
}

.prod-payment-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.pay-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.5rem;
  height: 1.6rem;
  padding: 0 0.5rem;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 0.3rem;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  transition: background 0.15s, color 0.15s;
}

/* â”€â”€ INLINE UPSELLS â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
/* â”€â”€ UPSELL CARDS â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.prod-upsells {
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.prod-upsells-title {
  font-size: 0.55rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.28);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.prod-upsells-title::before {
  content: '';
  display: inline-block;
  width: 0.3rem;
  height: 0.3rem;
  border-radius: 50%;
  background: var(--cl-accent);
  box-shadow: 0 0 6px var(--cl-accent);
}

.prod-upsells-grid {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

/* --- Horizontal upsell card --- */
.prod-upsells-grid .card {
  display: flex !important;
  flex-direction: row !important;
  align-items: stretch !important;
  margin: 0 !important;
  background: rgba(255,255,255,0.025) !important;
  border: 1px solid rgba(255,255,255,0.07) !important;
  border-radius: 0.65rem !important;
  overflow: hidden !important;
  text-decoration: none !important;
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s !important;
  padding: 0 !important;
  gap: 0 !important;
  box-shadow: none !important;
}

.prod-upsells-grid .card:hover {
  border-color: rgba(34,197,94,0.35) !important;
  background: rgba(34,197,94,0.04) !important;
  box-shadow: 0 0 0 1px rgba(34,197,94,0.1) !important;
}

/* Thumbnail wrapper */
.prod-upsells-grid .card .card-img-top,
.prod-upsells-grid .card .card-img-top.aspect-product-card-image {
  width: 4.5rem !important;
  min-width: 4.5rem !important;
  height: auto !important;
  aspect-ratio: 1 !important;
  border-radius: 0 !important;
  border-right: 1px solid rgba(255,255,255,0.07) !important;
  overflow: hidden !important;
  flex-shrink: 0 !important;
  position: relative !important;
  background: rgba(0,0,0,0.3) !important;
}

.prod-upsells-grid .card .card-img-top img,
.prod-upsells-grid .card .card-img-top.aspect-product-card-image img {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  aspect-ratio: unset !important;
}

.prod-upsells-grid .card .card-img-top .badges {
  display: none !important;
}

.prod-upsells-grid .card .card-img-top .product-img-placeholder {
  position: absolute !important;
  inset: 0 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  aspect-ratio: unset !important;
  width: 100% !important;
  height: 100% !important;
}

/* Card body */
.prod-upsells-grid .card .card-body {
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  padding: 0.6rem 0.85rem !important;
  flex: 1 !important;
  min-width: 0 !important;
  gap: 0.2rem !important;
}

/* Name â€” top, prominent */
.prod-upsells-grid .card .card-title {
  font-size: 0.8rem !important;
  font-weight: 700 !important;
  color: rgba(255,255,255,0.9) !important;
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  margin: 0 !important;
  text-transform: none !important;
  letter-spacing: 0 !important;
  line-height: 1.3 !important;
  order: -1 !important;
}

/* Info row: price + stock */
.prod-upsells-grid .card .card-body .info {
  display: flex !important;
  align-items: center !important;
  gap: 0.45rem !important;
  flex-wrap: wrap !important;
  margin: 0 !important;
}

.prod-upsells-grid .card .price {
  font-size: 0.8rem !important;
  font-weight: 800 !important;
  color: var(--cl-accent) !important;
  white-space: nowrap !important;
  margin: 0 !important;
  line-height: 1 !important;
}

.prod-upsells-grid .card .price s {
  font-weight: 400 !important;
  color: rgba(255,255,255,0.3) !important;
  font-size: 0.7rem !important;
}

.prod-upsells-grid .card .stock-tag {
  display: inline-flex !important;
  align-items: center !important;
  gap: 0.3rem !important;
  font-size: 0.58rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.06em !important;
  text-transform: uppercase !important;
  padding: 0.18rem 0.5rem !important;
  border-radius: 100px !important;
  line-height: 1 !important;
}

.prod-upsells-grid .card .stock-tag.in {
  background: rgba(34,197,94,0.1) !important;
  border: 1px solid rgba(34,197,94,0.25) !important;
  color: var(--cl-accent) !important;
}

.prod-upsells-grid .card .stock-tag.out {
  background: rgba(248,113,113,0.1) !important;
  border: 1px solid rgba(248,113,113,0.25) !important;
  color: #f87171 !important;
}

.prod-upsells-grid .card .stock-tag .dot {
  display: none !important;
}

.pay-icon:hover {
  background: rgba(255,255,255,0.12);
  color: #ffffff;
}

/* â”€â”€ BOTTOM PANELS â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.prod-panels-row {
  margin-bottom: 0;
}

.prod-desc-section {
  margin-bottom: 3rem;
}

/* â”€â”€ BELOW-IMAGE TABS â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.prod-below-image {
  margin-top: 1rem;
  background: linear-gradient(145deg, rgba(16,16,16,1) 0%, rgba(10,10,10,1) 65%);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: inset 3px 0 0 rgba(34,197,94,0.2);
}

.prod-tab-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  background: rgba(0,0,0,0.2);
}

.prod-tab-btn {
  padding: 0.75rem 1.25rem;
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  background: transparent;
  border: none;
  border-bottom: 2px solid transparent;
  cursor: pointer;
  transition: color 0.18s, border-color 0.18s;
  white-space: nowrap;
}

.prod-tab-btn:hover {
  color: rgba(255,255,255,0.7);
}

.prod-tab-btn.active {
  color: #ffffff;
  border-bottom-color: var(--cl-accent);
}

.prod-tab-content {
  padding: 0;
}

.prod-panel {
  background: linear-gradient(160deg, rgba(16,16,22,1) 0%, rgba(10,10,14,1) 100%);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 0.75rem;
  overflow: hidden;
  height: 100%;
}

.prod-panel-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.25rem;
  background: rgba(255,255,255,0.03);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  font-size: 0.625rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}

.prod-panel-header svg {
  color: var(--cl-accent);
  opacity: 0.8;
  flex-shrink: 0;
}

.prod-panel-content {
  padding: 1.25rem;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.75;
}

.prod-panel-content p,
.prod-panel-content li {
  color: rgba(255,255,255,0.65);
  font-size: 0.875rem;
  margin-bottom: 0.4rem;
}

.prod-panel-content ul,
.prod-panel-content ol {
  padding-left: 1.25rem;
}

.prod-panel-content h1,
.prod-panel-content h2,
.prod-panel-content h3,
.prod-panel-content h4 {
  color: #ffffff;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.prod-panel-content a {
  color: var(--cl-accent);
  text-decoration: none;
}

.prod-panel-content a:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 991px) {
  .prod-page-container {
    padding-top: 5.5rem;
  }

  .prod-image-wrap {
    position: static;
    margin-bottom: 2rem;
  }
}

@media (max-width: 575px) {
  .prod-title {
    font-size: 1.75rem !important;
  }

  .prod-price-value {
    font-size: 2rem;
  }
}


/* Out of stock banner */
.prod-oos-banner {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  padding: 1rem 1.25rem;
  background: rgba(239, 68, 68, 0.07);
  border: 1px solid rgba(239, 68, 68, 0.25);
  border-radius: 0.5rem;
  color: #f87171;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  margin-bottom: 1.25rem;
}

.prod-oos-banner svg {
  flex-shrink: 0;
  opacity: 0.8;
}
/* â”€â”€ SNIPPET FORM OVERRIDES (product-form.njk output) â”€â”€â”€â”€â”€â”€â”€
   Scoped to .prod-info-inner so no other page is affected.
   The snippet renders: .variants > .variant, .input-group,
   .buy-buttons, .form-label, .active-indicator
â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */

/* Section labels */
.prod-info-inner .form-label {
  font-size: 0.58rem !important;
  font-weight: 800 !important;
  letter-spacing: 0.14em !important;
  text-transform: uppercase !important;
  color: rgba(255,255,255,0.35) !important;
  margin-bottom: 0.5rem !important;
}

/* Variant list â€” override Bootstrap d-flex flex-wrap */
.prod-info-inner .variants {
  flex-direction: column !important;
  flex-wrap: nowrap !important;
  gap: 0.5rem !important;
  margin-bottom: 0.5rem !important;
}

/* Each variant button â€” card row style */
.prod-info-inner .variant {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  width: 100% !important;
  padding: 0.875rem 1.1rem !important;
  background: rgba(255,255,255,0.04) !important;
  border: 2px solid rgba(255,255,255,0.09) !important;
  border-radius: 0.6rem !important;
  cursor: pointer !important;
  gap: 0.75rem !important;
  color: #fff !important;
  font-size: 0.875rem !important;
  font-weight: 400 !important;
  letter-spacing: normal !important;
  text-transform: none !important;
  text-align: left !important;
  transition: border-color 0.2s, background 0.2s !important;
  position: relative !important;
}

.prod-info-inner .variant:hover:not(:disabled) {
  border-color: rgba(34,197,94,0.4) !important;
  background: rgba(34,197,94,0.05) !important;
}

.prod-info-inner .variant.active {
  border-color: var(--cl-accent) !important;
  background: rgba(34,197,94,0.08) !important;
}

.prod-info-inner .variant:disabled {
  opacity: 0.45 !important;
  cursor: not-allowed !important;
}

/* Variant inner layout */
.prod-info-inner .variant .name-stock {
  display: flex !important;
  flex-direction: column !important;
  gap: 0.15rem !important;
  flex: 1 !important;
}

.prod-info-inner .variant .name-stock .name {
  font-size: 0.875rem !important;
  font-weight: 700 !important;
  color: #ffffff !important;
  margin: 0 !important;
}

.prod-info-inner .variant .name-stock .description {
  font-size: 0.72rem !important;
  color: rgba(255,255,255,0.38) !important;
  margin: 0 !important;
}

.prod-info-inner .variant .name-stock .stock {
  font-size: 0.58rem !important;
  font-weight: 800 !important;
  letter-spacing: 0.1em !important;
  color: var(--cl-accent) !important;
  text-transform: uppercase !important;
  margin: 0 !important;
}

.prod-info-inner .variant .name-stock .stock span {
  color: inherit !important;
}

.prod-info-inner .variant .price {
  font-size: 1rem !important;
  font-weight: 800 !important;
  color: #ffffff !important;
  white-space: nowrap !important;
  text-align: right !important;
  flex-shrink: 0 !important;
}

.prod-info-inner .variant .price s {
  display: block !important;
  font-size: 0.72rem !important;
  font-weight: 400 !important;
  color: rgba(255,255,255,0.35) !important;
}

.prod-info-inner .variant .active-indicator {
  position: absolute !important;
  top: 0.5rem !important;
  right: 0.5rem !important;
  color: var(--cl-accent) !important;
}

.prod-info-inner .variant .active-indicator svg {
  width: 16px !important;
  height: 16px !important;
}

/* Quantity input-group */
.prod-info-inner .input-group {
  width: auto !important;
  max-width: 9rem !important;
  flex-wrap: nowrap !important;
}

.prod-info-inner .input-group .input-group-btn {
  width: 2.5rem !important;
  height: 2.5rem !important;
  padding: 0 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  background: rgba(255,255,255,0.05) !important;
  border: 1px solid rgba(255,255,255,0.12) !important;
  color: rgba(255,255,255,0.7) !important;
}

.prod-info-inner .input-group .input-group-btn:first-child {
  border-radius: 0.5rem 0 0 0.5rem !important;
  border-right: none !important;
}

.prod-info-inner .input-group .input-group-btn:last-child {
  border-radius: 0 0.5rem 0.5rem 0 !important;
  border-left: none !important;
}

.prod-info-inner .input-group .input-group-btn:hover:not(:disabled) {
  background: rgba(255,255,255,0.1) !important;
  color: #fff !important;
}

.prod-info-inner .input-group .input-group-btn svg {
  width: 13px !important;
  height: 13px !important;
}

.prod-info-inner .input-group .form-control {
  width: 3.5rem !important;
  height: 2.5rem !important;
  min-height: 2.5rem !important;
  text-align: center !important;
  border: 1px solid rgba(255,255,255,0.12) !important;
  background: rgba(255,255,255,0.04) !important;
  border-left: none !important;
  border-right: none !important;
  border-radius: 0 !important;
  font-weight: 700 !important;
  font-size: 0.95rem !important;
  color: #fff !important;
  -moz-appearance: textfield !important;
}

.prod-info-inner .input-group .form-control::-webkit-outer-spin-button,
.prod-info-inner .input-group .form-control::-webkit-inner-spin-button {
  -webkit-appearance: none !important;
  margin: 0 !important;
}

/* Buy buttons row â€” snippet renders Add to Cart first (btn-primary)
   and Buy Now second (btn-outline-primary). We invert the visual
   weights so Buy Now is the dominant green CTA. */
.prod-info-inner .buy-buttons {
  gap: 0.625rem !important;
  margin-top: 1.25rem !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
}

.prod-info-inner .buy-buttons .col {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

/* Add to Cart â€” secondary (green outline) */
.prod-info-inner .buy-buttons .btn-primary {
  background: rgba(34,197,94,0.08) !important;
  border: 1.5px solid var(--cl-accent) !important;
  color: var(--cl-accent) !important;
  height: 3.25rem !important;
  font-size: 0.72rem !important;
  font-weight: 900 !important;
  letter-spacing: 0.14em !important;
  text-transform: uppercase !important;
  border-radius: 0.6rem !important;
  box-shadow: none !important;
  transition: background 0.18s, transform 0.18s !important;
}

.prod-info-inner .buy-buttons .btn-primary:hover:not(:disabled) {
  background: rgba(34,197,94,0.15) !important;
  transform: translateY(-1px) !important;
}

/* Buy Now â€” primary CTA (filled green) */
.prod-info-inner .buy-buttons .btn-outline-primary {
  background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%) !important;
  border: 1.5px solid var(--cl-accent) !important;
  color: #000000 !important;
  height: 3.25rem !important;
  font-size: 0.72rem !important;
  font-weight: 900 !important;
  letter-spacing: 0.14em !important;
  text-transform: uppercase !important;
  border-radius: 0.6rem !important;
  box-shadow: 0 4px 20px rgba(34,197,94,0.25) !important;
  transition: filter 0.18s, transform 0.18s, box-shadow 0.18s !important;
}

.prod-info-inner .buy-buttons .btn-outline-primary:hover:not(:disabled) {
  filter: brightness(1.08) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 28px rgba(34,197,94,0.35) !important;
  color: #000000 !important;
}

.prod-info-inner .buy-buttons .btn-primary:disabled,
.prod-info-inner .buy-buttons .btn-outline-primary:disabled {
  opacity: 0.5 !important;
  cursor: not-allowed !important;
}

/* Payment note */
.prod-info-inner .prod-payment-note {
  margin-top: 0.6rem !important;
  margin-bottom: 0.75rem !important;
  font-size: 0.65rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.06em !important;
  color: rgba(255,255,255,0.32) !important;
  text-align: center !important;
}

.prod-info-inner .prod-payment-note strong {
  color: rgba(255,255,255,0.5) !important;
  font-weight: 700 !important;
}
/* ============================================================
   PRODUCT PAGE — Entrance Animations
   ============================================================ */

@keyframes prod-fade-left {
  from { opacity: 0; transform: translateX(-22px); }
  to   { opacity: 1; transform: translateX(0); }
}

@keyframes prod-fade-right {
  from { opacity: 0; transform: translateX(22px); }
  to   { opacity: 1; transform: translateX(0); }
}

@keyframes prod-fade-up {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes prod-scale-in {
  from { opacity: 0; transform: scaleX(0); }
  to   { opacity: 1; transform: scaleX(1); }
}

/* Left column slides in from the left */
.prod-image-col {
  animation: prod-fade-left 0.45s cubic-bezier(0.22, 1, 0.36, 1) both;
  animation-delay: 0.05s;
}

/* Right column slides in from the right */
.prod-info-col {
  animation: prod-fade-right 0.45s cubic-bezier(0.22, 1, 0.36, 1) both;
  animation-delay: 0.1s;
}

/* Stagger children inside the info column */
.prod-badges-row {
  animation: prod-fade-up 0.4s cubic-bezier(0.22, 1, 0.36, 1) both;
  animation-delay: 0.18s;
}

.prod-title {
  animation: prod-fade-up 0.4s cubic-bezier(0.22, 1, 0.36, 1) both;
  animation-delay: 0.24s;
}

.prod-divider {
  transform-origin: left center;
  animation: prod-scale-in 0.4s cubic-bezier(0.22, 1, 0.36, 1) both;
  animation-delay: 0.28s;
}

.prod-price-row {
  animation: prod-fade-up 0.4s cubic-bezier(0.22, 1, 0.36, 1) both;
  animation-delay: 0.32s;
}

.prod-status-row {
  animation: prod-fade-up 0.4s cubic-bezier(0.22, 1, 0.36, 1) both;
  animation-delay: 0.35s;
}

.prod-info-inner > [x-data] {
  animation: prod-fade-up 0.4s cubic-bezier(0.22, 1, 0.36, 1) both;
  animation-delay: 0.38s;
}

.prod-secure-payment {
  animation: prod-fade-up 0.4s cubic-bezier(0.22, 1, 0.36, 1) both;
  animation-delay: 0.44s;
}

.prod-upsells {
  animation: prod-fade-up 0.4s cubic-bezier(0.22, 1, 0.36, 1) both;
  animation-delay: 0.5s;
}

/* Below-image tabs stagger after image column */
.prod-below-image {
  animation: prod-fade-up 0.4s cubic-bezier(0.22, 1, 0.36, 1) both;
  animation-delay: 0.3s;
}

/* Robux price as primary display (wraps pill + fiat secondary) */
.prod-robux-price-primary {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.6rem;
}

/* Robux price pill in product page price row */
.prod-robux-price-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: rgba(226,34,34,0.1);
  border: 1px solid rgba(226,34,34,0.3);
  border-radius: 0.5rem;
  padding: 0.25rem 0.6rem;
  color: #f87171;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  white-space: nowrap;
}

.prod-robux-price-pill svg {
  width: 13px;
  height: 13px;
  flex-shrink: 0;
}

/* Fiat price shown as dimmed secondary when Robux price is present */
.prod-price-secondary .prod-price-value {
  font-size: 0.85rem !important;
  color: rgba(255,255,255,0.35) !important;
  font-weight: 500 !important;
}

/* Robux price badge on variant buttons */
.variant-robux-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  background: rgba(226,34,34,0.12);
  border: 1px solid rgba(226,34,34,0.28);
  border-radius: 0.3rem;
  padding: 0.12rem 0.4rem;
  color: #f87171;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  margin-top: 0.35rem;
  white-space: nowrap;
  width: fit-content;
}

/* ============================================================
   ROBUX CHECKOUT PAGE
   ============================================================ */

.rxco-page {
  min-height: 100vh;
  display: flex;
  align-items: flex-start;
  padding-top: 5.5rem;
  padding-bottom: 4rem;
}

.rxco-container {
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
  padding: 0 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

/* Page title */
.rxco-page-title {
  font-size: 1rem !important;
  font-weight: 800 !important;
  letter-spacing: 0.14em !important;
  text-transform: uppercase !important;
  color: rgba(255,255,255,0.5) !important;
  text-align: center;
  margin: 0;
}

/* Main card */
.rxco-card {
  width: 100%;
  background: linear-gradient(160deg, rgba(16,16,22,1) 0%, rgba(10,10,14,1) 100%);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 1.15rem;
  padding: 2rem 1.75rem 1.75rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  box-shadow: 0 32px 64px rgba(0,0,0,0.5),
              0 0 0 1px rgba(255,255,255,0.04);
  position: relative;
  overflow: hidden;
}

/* Subtle top accent bar */
.rxco-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(34,197,94,0.5), transparent);
  opacity: 0.6;
}

.rxco-card-center {
  text-align: center;
  padding: 3rem 1.75rem;
}

/* Icon wrapper */
.rxco-icon-wrap {
  width: 4.5rem;
  height: 4.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.rxco-icon-robux {
  background: rgba(34,197,94,0.12);
  border: 1.5px solid rgba(34,197,94,0.3);
  box-shadow: 0 0 30px rgba(34,197,94,0.12);
  color: var(--cl-accent);
}

.rxco-icon-robux svg {
  width: 2rem;
  height: 2rem;
}

.rxco-icon-paid {
  background: rgba(34,197,94,0.12);
  border: 1.5px solid rgba(34,197,94,0.35);
  color: var(--cl-accent);
}

.rxco-icon-paid svg {
  width: 2.25rem;
  height: 2.25rem;
}

.rxco-icon-error {
  background: rgba(239,68,68,0.1);
  border: 1.5px solid rgba(239,68,68,0.3);
  color: #f87171;
}

.rxco-icon-error svg {
  width: 2.25rem;
  height: 2.25rem;
}

/* Heading + subtext */
.rxco-heading {
  font-size: 1.75rem !important;
  font-weight: 900 !important;
  letter-spacing: -0.03em;
  color: #ffffff;
  text-align: center;
  margin: 0 0 0.4rem !important;
}

.rxco-subtext {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
  text-align: center;
  line-height: 1.6;
  max-width: 36ch;
  margin: 0 0 1.75rem;
}

/* Steps */
.rxco-steps {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 1.5rem;
}

.rxco-step {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.rxco-step-connector {
  width: 2px;
  height: 1.25rem;
  background: rgba(255,255,255,0.07);
  margin-left: calc(1.15rem - 1px);
  flex-shrink: 0;
}

/* Step number circle */
.rxco-step-num {
  flex-shrink: 0;
  width: 2.3rem;
  height: 2.3rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 800;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.rxco-step-active .rxco-step-num {
  background: var(--cl-accent);
  color: #000000;
  box-shadow: 0 0 16px rgba(34,197,94,0.35);
}

.rxco-step-pending .rxco-step-num {
  background: rgba(255,255,255,0.06);
  border: 1.5px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.35);
}

/* Step content */
.rxco-step-content {
  flex: 1;
  padding-bottom: 0;
  min-width: 0;
}

.rxco-step-title {
  font-size: 0.92rem !important;
  font-weight: 800 !important;
  color: #ffffff;
  margin: 0.3rem 0 0.25rem !important;
  letter-spacing: 0;
}

.rxco-step-pending .rxco-step-title {
  color: rgba(255,255,255,0.55);
}

.rxco-step-desc {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.38);
  line-height: 1.55;
  margin: 0 0 0.75rem;
}

/* Game pass button */
.rxco-btn-gamepass {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--cl-accent);
  background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
  color: #000000 !important;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none !important;
  padding: 0 0.75rem 0 1rem;
  height: 2.65rem;
  border-radius: 0.5rem;
  border: none;
  cursor: pointer;
  transition: filter 0.18s, transform 0.18s, box-shadow 0.18s;
  box-shadow: 0 4px 18px rgba(34,197,94,0.3);
  margin-bottom: 0.25rem;
}

.rxco-btn-gamepass:hover {
  filter: brightness(1.08);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(34,197,94,0.4);
  color: #000000 !important;
}

.rxco-gamepass-price {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.25);
  border-radius: 0.3rem;
  padding: 0.1rem 0.5rem;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  white-space: nowrap;
  height: 1.5rem;
}

/* Order summary */
.rxco-summary {
  width: 100%;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 0.75rem;
  padding: 0.25rem 1.1rem;
  margin-bottom: 1rem;
}

.rxco-summary-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.7rem 0;
  gap: 0.75rem;
}

.rxco-summary-row + .rxco-summary-row {
  border-top: 1px solid rgba(255,255,255,0.05);
}

.rxco-summary-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.38);
  font-weight: 500;
}

.rxco-summary-value {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.82);
  font-weight: 600;
  text-align: right;
}

.rxco-summary-accent {
  color: var(--cl-accent) !important;
  font-weight: 700 !important;
}

/* Awaiting status badge */
.rxco-status-awaiting {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: #fbbf24;
}

.rxco-status-dot {
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: #fbbf24;
  box-shadow: 0 0 6px #fbbf2488;
  flex-shrink: 0;
  animation: rxcoPulse 2s infinite;
}

@keyframes rxcoPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(0.75); }
}

/* Expiry line */
.rxco-expiry {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.3);
}

.rxco-expiry svg {
  flex-shrink: 0;
  opacity: 0.5;
}

.rxco-expiry-time {
  font-weight: 700;
  color: rgba(255,255,255,0.55);
  font-variant-numeric: tabular-nums;
}

/* Loading spinner */
.rxco-spinner {
  width: 2.5rem;
  height: 2.5rem;
  border: 3px solid rgba(255,255,255,0.08);
  border-top-color: var(--cl-accent);
  border-radius: 50%;
  animation: rxcoSpin 0.75s linear infinite;
  margin-bottom: 1rem;
}

@keyframes rxcoSpin {
  to { transform: rotate(360deg); }
}

.rxco-loading-text {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.38);
  margin: 0;
}

/* Back / action buttons */
.rxco-btn-back {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  height: 2.75rem;
  padding: 0 1.75rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.13);
  border-radius: 0.5rem;
  color: rgba(255,255,255,0.7) !important;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none !important;
  cursor: pointer;
  transition: background 0.18s, border-color 0.18s, color 0.18s;
  margin-top: 0.75rem;
}

.rxco-btn-back:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.25);
  color: #ffffff !important;
}

/* Email collection state */
.rxco-email-wrap {
  width: 100%;
  text-align: left;
  margin-bottom: 1.1rem;
}

.rxco-field-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: rgba(255,255,255,0.8);
  margin-bottom: 0.2rem;
}

.rxco-required {
  color: var(--cl-accent);
}

.rxco-field-hint {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.32);
  margin-bottom: 0.55rem;
  line-height: 1.5;
}

.rxco-input {
  display: block;
  width: 100%;
  background: rgba(255,255,255,0.04) !important;
  border: 1px solid rgba(255,255,255,0.1) !important;
  border-radius: 0.6rem !important;
  color: rgba(255,255,255,0.87) !important;
  padding: 0.7rem 1rem !important;
  font-size: 0.88rem;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.rxco-input:focus {
  border-color: var(--cl-accent) !important;
  box-shadow: 0 0 0 0.2rem rgba(34,197,94,0.12) !important;
  background: rgba(34,197,94,0.03) !important;
}

.rxco-input::placeholder {
  color: rgba(255,255,255,0.18) !important;
}

.rxco-btn-row {
  display: flex;
  gap: 0.6rem;
  width: 100%;
  margin-bottom: 1.1rem;
}

.rxco-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 0.6rem;
  color: rgba(255,255,255,0.55);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 0.68rem 1.1rem;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.18s, color 0.18s;
}

.rxco-btn-secondary:hover {
  background: rgba(255,255,255,0.09);
  color: rgba(255,255,255,0.87);
}

.rxco-btn-continue {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
  border: none;
  border-radius: 0.6rem;
  color: #000;
  font-size: 0.88rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  padding: 0.68rem 1rem;
  cursor: pointer;
  transition: filter 0.18s, transform 0.12s, box-shadow 0.18s;
  box-shadow: 0 4px 20px rgba(34,197,94,0.3);
}

.rxco-btn-continue:hover:not(:disabled) {
  filter: brightness(1.08);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(34,197,94,0.4);
}

.rxco-btn-continue:active:not(:disabled) {
  transform: translateY(0);
}

.rxco-btn-continue:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.rxco-footnote {
  display: flex;
  align-items: flex-start;
  gap: 0.45rem;
  font-size: 0.68rem;
  color: rgba(255,255,255,0.2);
  text-align: left;
  line-height: 1.55;
  width: 100%;
  margin: 0;
}

/* Mobile adjustments */
@media (max-width: 480px) {
  .rxco-page {
    padding-top: 5rem;
  }

  .rxco-card {
    padding: 1.5rem 1.25rem 1.35rem;
  }

  .rxco-heading {
    font-size: 1.45rem !important;
  }
}