/* ============================================================
   Supreme — hero + navbar (reference replica)
   ============================================================ */

:root {
  --supreme-blue: #0044ff;
  --supreme-blue-hover: #1a5cff;
  --supreme-black: #0a0a0a;
  --supreme-surface: #111111;
  --supreme-border: rgba(255, 255, 255, 0.12);
  --supreme-text: #ffffff;
  --supreme-text-muted: rgba(255, 255, 255, 0.72);
}

body {
  background-color: #000;
  font-family: "Inter", var(--bs-font-sans-serif), sans-serif;
}

.flex-wrapper {
  position: relative;
  /* NOTE: do not set a z-index here. A positive z-index turns this into a
     stacking context, which traps Bootstrap modals (.modal z-index 1055)
     below the .modal-backdrop that Bootstrap appends to <body> (z-index 1050).
     That made the login modal blur the page but stay hidden/unclickable. */
}

body:has(.supreme-hero) .glow {
  display: none;
}

/* Theme ambient corner glows */
.theme-ambient {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  overflow: hidden;
}

.theme-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.45;
}

.theme-glow--left-1 {
  width: 320px;
  height: 320px;
  top: 8%;
  left: -120px;
  background: radial-gradient(circle, rgba(0, 68, 255, 0.9) 0%, transparent 70%);
}

.theme-glow--right-1 {
  width: 280px;
  height: 280px;
  top: 12%;
  right: -100px;
  background: radial-gradient(circle, rgba(0, 68, 255, 0.85) 0%, transparent 70%);
}

.theme-glow--left-2 {
  width: 260px;
  height: 260px;
  top: 42%;
  left: -110px;
  background: radial-gradient(circle, rgba(0, 68, 255, 0.7) 0%, transparent 70%);
}

.theme-glow--right-2 {
  width: 300px;
  height: 300px;
  top: 48%;
  right: -120px;
  background: radial-gradient(circle, rgba(0, 68, 255, 0.75) 0%, transparent 70%);
}

.theme-glow--left-3 {
  width: 340px;
  height: 340px;
  bottom: 6%;
  left: -130px;
  background: radial-gradient(circle, rgba(0, 68, 255, 0.8) 0%, transparent 70%);
}

.theme-glow--right-3 {
  width: 290px;
  height: 290px;
  bottom: 10%;
  right: -110px;
  background: radial-gradient(circle, rgba(0, 68, 255, 0.85) 0%, transparent 70%);
}

/* ---- Announcement hidden ---- */
.announcement[style*="display: none"] {
  display: none !important;
}

/* ---- Header overlay on hero ---- */
body:has(.supreme-hero) header.sticky-top {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1030;
  background: transparent !important;
}

/* ---- Navbar ---- */
.supreme-nav {
  background: transparent !important;
  border-bottom: none !important;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  padding: 1.25rem 0;
}

.supreme-nav .container {
  max-width: 1200px;
}

.supreme-nav .navbar-brand {
  background: var(--supreme-blue);
  border-radius: 0.4rem;
  padding: 0.5rem 1rem;
  margin-right: 2rem;
  border-right: none;
  text-decoration: none;
  transform: skewX(-8deg);
  flex-shrink: 0;
}

.supreme-nav .navbar-brand span {
  color: var(--supreme-text);
  font-weight: 800;
  font-style: italic;
  font-size: 1.125rem;
  letter-spacing: -0.02em;
  line-height: 1;
  display: inline-block;
  transform: skewX(8deg);
}

.supreme-nav .navbar-brand img {
  display: none !important;
}

.supreme-nav .nav-link {
  font-weight: 700 !important;
  font-size: 0.9375rem;
  color: var(--supreme-text) !important;
  padding: 0.25rem 0 !important;
  transition: opacity 0.2s ease;
}

.supreme-nav .nav-link:hover {
  opacity: 0.8;
  color: var(--supreme-text) !important;
}

.supreme-nav .navbar-collapse {
  background: transparent !important;
}

.supreme-nav .login-button,
.supreme-nav .user .btn {
  background: var(--supreme-black) !important;
  border: 1px solid var(--supreme-border) !important;
  border-radius: 9999px !important;
  color: var(--supreme-text) !important;
  font-weight: 600 !important;
  font-size: 0.875rem !important;
  padding: 0.5rem 1.25rem !important;
  min-width: auto !important;
  width: auto !important;
  height: auto !important;
  min-height: unset !important;
  display: inline-flex !important;
  align-items: center;
  gap: 0.4rem;
  box-shadow: none !important;
}

.supreme-nav .login-button::after {
  display: none;
}

.supreme-nav .nav-icon {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
}

.supreme-nav .currency-selector .choices__inner {
  background: var(--supreme-black) !important;
  border: 1px solid var(--supreme-border) !important;
  border-radius: 9999px !important;
  min-width: 5.25rem !important;
  height: 38px !important;
  min-height: 38px !important;
  padding: 0 2rem 0 0.85rem !important;
  font-size: 0.875rem !important;
  font-weight: 600;
  color: var(--supreme-text) !important;
  position: relative;
}

.supreme-nav .currency-selector .choices__inner::after {
  content: "";
  position: absolute;
  right: 0.85rem;
  top: 50%;
  transform: translateY(-50%);
  width: 0.75rem;
  height: 0.75rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  pointer-events: none;
}

.supreme-nav .currency-selector .choices__inner .symbol {
  color: var(--supreme-text) !important;
  background: transparent !important;
  font-weight: 600;
}

.supreme-nav .currency-selector.choices[data-type*="select-one"]::after {
  display: none !important;
}

.supreme-nav .cart .btn,
.supreme-nav .cart-button {
  background: var(--supreme-black) !important;
  border: 1px solid var(--supreme-border) !important;
  border-radius: 0.5rem !important;
  padding: 0.45rem 0.6rem !important;
  min-width: auto !important;
  width: auto !important;
  height: auto !important;
  min-height: unset !important;
  box-shadow: none !important;
  color: var(--supreme-text) !important;
}

.supreme-nav .cart .btn .icon,
.supreme-nav .cart-button .icon {
  width: 1.125rem;
  height: 1.125rem;
  stroke: currentColor;
}

.supreme-nav .cart .btn .count,
.supreme-nav .cart-button .count {
  background: var(--supreme-blue);
  color: var(--supreme-text);
  width: 1rem;
  height: 1rem;
  font-size: 0.5625rem;
  font-weight: 700;
  top: -0.25rem;
  right: -0.25rem;
}

@media (min-width: 992px) {
  .supreme-nav .container {
    display: flex;
    align-items: center;
    justify-content: flex-start;
  }

  .supreme-nav .navbar-collapse {
    display: flex !important;
    flex-grow: 1;
    align-items: center;
    justify-content: space-between;
  }

  .supreme-nav .navbar-nav.me-auto {
    position: static;
    transform: none;
    margin: 0 !important;
    flex-direction: row;
    align-items: center;
    gap: 2rem;
  }

  .supreme-nav .navbar-nav.gap-3 {
    flex-direction: row;
    align-items: center;
    gap: 0.65rem !important;
    margin-left: auto;
  }
}

@media (max-width: 991.98px) {
  body:has(.supreme-hero) header.sticky-top {
    position: sticky;
    background: rgba(10, 10, 10, 0.95) !important;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
  }

  .supreme-nav {
    padding: 0.75rem 0;
  }
}

/* ---- Hero ---- */
.supreme-hero {
  position: relative;
  overflow: hidden;
  height: 100vh;
  height: 100dvh;
  min-height: 100vh;
  min-height: 100dvh;
  max-height: 100vh;
  max-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: var(--supreme-black);
  background-position: center 42% !important;
  background-size: cover;
  background-repeat: no-repeat;
  box-sizing: border-box;
}

.supreme-hero .bg-overlay {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.45) 40%, rgba(0, 0, 0, 0.82) 100%),
    radial-gradient(ellipse 90% 70% at 50% 45%, rgba(0, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0.85) 100%);
}

.hero-glow {
  position: absolute;
  pointer-events: none;
  z-index: 0;
  filter: blur(90px);
}

.hero-glow--left {
  width: 220px;
  height: 420px;
  bottom: 5%;
  left: 0;
  background: linear-gradient(180deg, rgba(0, 68, 255, 0.55) 0%, rgba(0, 68, 255, 0) 100%);
  transform: rotate(-20deg);
}

.hero-glow--right {
  width: 180px;
  height: 520px;
  top: 0;
  right: 8%;
  background: linear-gradient(180deg, rgba(0, 68, 255, 0.9) 0%, rgba(0, 68, 255, 0.15) 60%, transparent 100%);
  transform: rotate(8deg);
}

.supreme-hero .container {
  position: relative;
  z-index: 1;
  padding: 6rem 1.5rem 4rem;
  gap: 0;
  width: 100%;
  flex: 1;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  display: flex !important;
}

.supreme-hero .container > div:empty {
  display: none;
}

.supreme-hero .content {
  text-align: center;
  margin: 0 auto;
  max-width: 720px;
  width: 100%;
  background: transparent;
}

.supreme-hero .content p {
  color: var(--supreme-text-muted);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.65;
  margin: 0 auto 1.75rem;
  max-width: 520px;
}

.supreme-hero .content a {
  margin-bottom: 0 !important;
}

/* Badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--supreme-blue);
  border: none;
  color: var(--supreme-text);
  font-weight: 600;
  font-size: 0.75rem;
  padding: 0.4rem 0.9rem;
  border-radius: 9999px;
  margin-bottom: 1.5rem;
  letter-spacing: 0.01em;
}

.hero-badge::before {
  content: "";
  width: 0.75rem;
  height: 0.75rem;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M13 2L3 14h8l-1 8 10-12h-8z'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}

/* Title */
.hero-title {
  font-size: clamp(2.5rem, 5.5vw, 3.625rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.035em;
  color: var(--supreme-text);
  margin: 0 0 1rem;
}

.hero-brand-mark {
  display: inline-block;
  background: var(--supreme-blue);
  color: var(--supreme-text);
  padding: 0.02em 0.28em;
  border-radius: 0.3rem;
  line-height: 1.12;
}

/* Search */
.supreme-hero .fake-searchbar {
  max-width: 480px;
  margin: 0 auto 1.25rem;
  width: 100%;
}

.supreme-hero .fake-searchbar input {
  background: rgba(255, 255, 255, 0.06) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  border-radius: 9999px !important;
  padding: 0.9rem 1.5rem 0.9rem 3rem !important;
  color: rgba(255, 255, 255, 0.45) !important;
  font-size: 0.9rem;
  font-weight: 400;
  height: auto;
  cursor: pointer;
  box-shadow: none !important;
}

.supreme-hero .fake-searchbar input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.supreme-hero .fake-searchbar input:hover {
  border-color: rgba(255, 255, 255, 0.16) !important;
  background: rgba(255, 255, 255, 0.08) !important;
}

.supreme-hero .fake-searchbar svg {
  left: 1.15rem;
  width: 1rem;
  height: 1rem;
  fill: rgba(255, 255, 255, 0.35);
}

/* Buttons */
.hero-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.65rem;
  margin-top: 0;
  flex-wrap: wrap;
}

.hero-buttons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.7rem 1.6rem;
  border-radius: 9999px;
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease;
  margin-bottom: 0;
  white-space: nowrap;
}

.hero-buttons .btn-icon {
  width: 1.1rem;
  height: 1.1rem;
  flex-shrink: 0;
}

.btn-shop {
  background: var(--supreme-black);
  color: var(--supreme-text);
  border: 1px solid var(--supreme-border);
}

.btn-shop:hover {
  background: #141414;
  color: var(--supreme-text);
  border-color: rgba(255, 255, 255, 0.2);
}

.btn-about {
  background: var(--supreme-blue);
  color: var(--supreme-text);
  border: 1px solid var(--supreme-blue);
}

.btn-about:hover {
  background: var(--supreme-blue-hover);
  color: var(--supreme-text);
  border-color: var(--supreme-blue-hover);
}

/* Height overrides — supreme hero always fills viewport */
@media (min-width: 768px) {
  .supreme-hero.height-short {
    height: 100vh;
    height: 100dvh;
    min-height: 100vh;
    min-height: 100dvh;
    max-height: 100vh;
    max-height: 100dvh;
  }
}

@media (max-width: 767.98px) {
  .supreme-hero .container {
    padding-top: 6rem;
  }

  .hero-glow--right {
    right: -10%;
    width: 140px;
    height: 360px;
  }

  .hero-glow--left {
    width: 120px;
    height: 240px;
    left: -8%;
  }
}

/* ---- Rest of theme ---- */
.glow {
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 700px;
  background: #363f8c;
  opacity: 0.9;
  filter: blur(200px);
  pointer-events: none;
  z-index: -999;
  border-radius: 9999px;
}

@media (max-width: 991.98px) {
  .glow {
    position: fixed;
    top: -40vh;
    left: 50vw;
    transform: translateX(-50%);
    width: 120vmax;
    height: 120vmax;
    max-width: 500px;
    max-height: 500px;
    opacity: 0.8;
    filter: blur(160px);
  }
}

@media (min-width: 1200px) {
  .h4, h4 {
    font-size: 1.3rem;
  }
}

.alert-blog {
  box-sizing: border-box;
  text-align: center;
}

.d-flex.align-items-center.gap-3 {
  background: rgba(255, 255, 255, 0.08);
  color: #cbd5e1;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 0.75rem;
  padding: 0.5rem 1rem;
  font-weight: 500;
}

.accordion-button {
  background-color: #ffffff0f;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.accordion-button:not(.collapsed) {
  color: #ffffff;
  background-color: #ffffff0f;
}

.accordion-item {
  background-color: #ffffff0f;
}

.modal-content {
  background-color: #060c16;
}

/* ============================================================
   Modal stacking safety
   Guarantees the modal dialog renders ABOVE the .modal-backdrop
   (which Bootstrap appends to <body>) no matter what ancestor
   stacking context exists. Fixes: login button blurs page but the
   dialog/inputs are unclickable because they sit behind the backdrop.
   ============================================================ */
.modal-backdrop {
  z-index: 1050;
}

.modal {
  z-index: 1055;
}

/* The dialog must be the top, interactive layer */
.modal-dialog {
  position: relative;
  z-index: 1056;
  pointer-events: auto;
}

.modal-content {
  position: relative;
  z-index: 1;
  pointer-events: auto;
}

/* ============================================================
   Shared section titles
   ============================================================ */
.supreme-section-title {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.03em;
  margin: 0;
}

.supreme-mark {
  display: inline-block;
  background: var(--supreme-blue);
  color: #fff;
  padding: 0.02em 0.28em;
  border-radius: 0.25rem;
  line-height: 1.12;
}

.supreme-mark--single {
  padding: 0.05em 0.35em;
}

.supreme-section-subtitle {
  color: var(--supreme-text-muted);
  max-width: 560px;
  margin: 0 auto;
}

/* ============================================================
   Hero stats
   ============================================================ */
.hero-scroll-hint {
  position: absolute;
  bottom: 1.75rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  justify-content: center;
  opacity: 0.4;
  animation: hero-bounce 2s ease-in-out infinite;
}

.hero-scroll-hint svg {
  width: 1.25rem;
  height: 1.25rem;
  color: #fff;
}

@keyframes hero-bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ============================================================
   Hero stats (below fold)
   ============================================================ */
.hero-stats-section {
  position: relative;
  z-index: 1;
  padding: 3rem 0 4rem;
}

.hero-stats-wrap {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 1.5rem 0 3rem;
  margin-top: 0;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.hero-stat {
  text-align: center;
}

.hero-stat-icon {
  width: 3rem;
  height: 3rem;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 68, 255, 0.15);
  border: 1px solid rgba(0, 68, 255, 0.35);
  border-radius: 0.65rem;
  transform: rotate(45deg);
  box-shadow: 0 0 24px rgba(0, 68, 255, 0.35);
}

.hero-stat-icon svg {
  width: 1.1rem;
  height: 1.1rem;
  color: var(--supreme-blue);
  transform: rotate(-45deg);
  fill: currentColor;
}

.hero-stat-icon svg[stroke] {
  fill: none;
}

.hero-stat-value {
  font-size: 2.5rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.hero-stat-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin: 0;
}

@media (max-width: 767.98px) {
  .hero-stats {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

/* ============================================================
   Features
   ============================================================ */
.supreme-features {
  background: transparent;
}

.supreme-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.supreme-features-grid.items-per-row-2 { grid-template-columns: repeat(2, 1fr); }
.supreme-features-grid.items-per-row-4 { grid-template-columns: repeat(4, 1fr); }

.supreme-feature-card {
  position: relative;
  padding: 1.75rem 1.5rem;
  min-height: 180px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.02);
}

.supreme-feature-card .corner {
  position: absolute;
  color: var(--supreme-blue);
  font-size: 0.75rem;
  font-weight: 300;
  line-height: 1;
  opacity: 0.8;
}

.corner-tl { top: 0.5rem; left: 0.65rem; }
.corner-tr { top: 0.5rem; right: 0.65rem; }
.corner-bl { bottom: 0.5rem; left: 0.65rem; }
.corner-br { bottom: 0.5rem; right: 0.65rem; }

.supreme-feature-icon {
  color: var(--supreme-blue);
  font-size: 1.15rem;
  margin-bottom: 1rem;
}

.supreme-feature-card h4 {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 0.35rem;
}

.supreme-feature-card p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.45);
  margin: 0;
  line-height: 1.5;
}

@media (max-width: 991.98px) {
  .supreme-features-grid,
  .supreme-features-grid.items-per-row-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 575.98px) {
  .supreme-features-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   Products
   ============================================================ */
.supreme-products {
  background: transparent;
  overflow: visible;
}

.supreme-products .container {
  max-width: 1280px;
}

.supreme-products-grid {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin: 0 !important;
  width: 100%;
}

.supreme-products-grid > .supreme-product-col {
  min-width: 0;
  width: 100%;
  padding: 0;
  margin: 0;
}

.supreme-product-link {
  min-width: 0;
}

.supreme-product-link:hover .supreme-product-card {
  border-color: rgba(0, 68, 255, 0.4);
  transform: translateY(-2px);
}

.supreme-product-card {
  background: #121212;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 1rem;
  overflow: hidden;
  transition: border-color 0.25s ease, transform 0.25s ease;
  min-width: 0;
}

.supreme-product-media {
  position: relative;
  background: #0a0a0a;
}

.supreme-product-badges {
  position: absolute;
  top: 0.65rem;
  left: 0.65rem;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.supreme-product-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.2rem 0.45rem;
  border-radius: 0.3rem;
  font-size: 0.6rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
  background: var(--supreme-blue) !important;
}

.supreme-product-image {
  aspect-ratio: 16 / 9;
  width: 100%;
  overflow: hidden;
  display: block;
  background: #0a0a0a;
}

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

.supreme-product-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.15rem;
  background: linear-gradient(180deg, #141414 0%, #0a0a0a 100%);
}

.supreme-product-placeholder .placeholder-title {
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #fff;
}

.supreme-product-placeholder .placeholder-sub {
  font-size: 0.55rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.45);
}

.supreme-product-divider {
  height: 2px;
  width: 100%;
  background: var(--supreme-blue);
}

.supreme-product-body {
  padding: 1rem 1rem 0.9rem;
}

.supreme-product-name {
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 0.35rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.supreme-product-stock {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.8rem;
  font-weight: 500;
  margin: 0 0 1rem;
}

.supreme-product-stock svg {
  width: 0.9rem;
  height: 0.9rem;
  flex-shrink: 0;
}

.supreme-product-stock .text-muted { color: rgba(255, 255, 255, 0.45); }
.supreme-product-stock .text-out { color: #5b8cff; }
.supreme-product-stock .text-in { color: #22c55e; }

.supreme-product-footer {
  gap: 0.75rem;
}

.supreme-product-price .price-tag {
  display: block;
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.38);
  margin-bottom: 0.15rem;
}

.price-row {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.price-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1rem;
  height: 1rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--supreme-blue);
  line-height: 1;
}

.price-value {
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}

.supreme-product-arrow {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: #0a1628;
  border: 1px solid rgba(0, 68, 255, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--supreme-blue);
  flex-shrink: 0;
}

.supreme-product-arrow svg {
  width: 0.9rem;
  height: 0.9rem;
}

@media (max-width: 1199.98px) {
  .supreme-products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 575.98px) {
  .supreme-products-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* ============================================================
   Payment methods
   ============================================================ */
.supreme-payments {
  background: transparent;
  position: relative;
  overflow: hidden;
}

.supreme-payments::before,
.supreme-payments::after {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 68, 255, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.supreme-payments::before { top: -100px; left: -100px; }
.supreme-payments::after { bottom: -100px; right: -100px; }

.supreme-payments-subtitle {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.95rem;
  line-height: 1.65;
}

.supreme-payments-grid {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.supreme-payment-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
}

.supreme-payment-icon {
  width: 4.5rem;
  height: 4.5rem;
  border-radius: 0.85rem;
  background: #111;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 30px rgba(0, 68, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--supreme-blue);
}

.supreme-payment-icon svg {
  width: 1.75rem;
  height: 1.75rem;
}

.supreme-payment-item span {
  font-size: 0.875rem;
  font-weight: 700;
  color: #fff;
}

/* ============================================================
   FAQ
   ============================================================ */
.supreme-faq {
  background: #000;
}

.supreme-faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.supreme-faq-item {
  border-radius: 0.85rem;
  overflow: hidden;
  background: #141414;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.supreme-faq-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 1.25rem;
  background: transparent;
  border: none;
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  text-align: left;
}

.supreme-faq-chevron {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.supreme-faq-chevron svg {
  width: 1rem;
  height: 1rem;
  color: rgba(255, 255, 255, 0.55);
  transition: transform 0.2s ease;
}

.supreme-faq-btn:not(.collapsed) .supreme-faq-chevron svg {
  transform: rotate(180deg);
}

.supreme-faq-body {
  padding: 0 1.25rem 1.1rem;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* ============================================================
   Discord section
   ============================================================ */
.supreme-discord {
  background: transparent;
}

.supreme-discord-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.supreme-discord-title {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 1rem;
}

.supreme-discord-desc {
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.65;
  margin-bottom: 1.5rem;
  max-width: 460px;
}

.supreme-discord-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--supreme-blue);
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  text-decoration: none;
  transition: background 0.2s ease;
}

.supreme-discord-btn svg {
  width: 1.15rem;
  height: 1.15rem;
}

.supreme-discord-btn:hover {
  background: var(--supreme-blue-hover);
  color: #fff;
}

.supreme-discord-card {
  background: #1a1a1a;
  border-radius: 1rem;
  padding: 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.supreme-discord-card-head {
  display: flex;
  gap: 0.85rem;
  margin-bottom: 1rem;
}

.supreme-discord-server-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  background: #ef4444;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.85rem;
  color: #fff;
  flex-shrink: 0;
}

.supreme-discord-server-name {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-weight: 700;
  color: #fff;
  font-size: 1rem;
}

.supreme-discord-server-name .verified {
  width: 1rem;
  height: 1rem;
  color: #22c55e;
}

.supreme-discord-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.25rem;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.55);
}

.supreme-discord-meta .dot {
  display: inline-block;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  margin-right: 0.25rem;
}

.dot-green { background: #22c55e; }
.dot-gray { background: #6b7280; }

.supreme-discord-members {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.75rem;
  background: #111;
  border-radius: 0.5rem;
  margin-bottom: 1rem;
}

.supreme-discord-members .avatar {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
}

/* Official Discord embed iframe */
.supreme-discord-iframe {
  width: 100%;
  max-width: 100%;
  height: 500px;
  border: 0;
  border-radius: 1rem;
  display: block;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
}

@media (max-width: 991.98px) {
  .supreme-discord-iframe {
    height: 420px;
  }
}

.a1 { background: #3b82f6; }
.a2 { background: #22c55e; }
.a3 { background: #ef4444; }
.a-more {
  background: #374151;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.supreme-discord-accept {
  display: block;
  text-align: center;
  background: var(--supreme-blue);
  color: #fff;
  font-weight: 700;
  padding: 0.75rem;
  border-radius: 0.5rem;
  text-decoration: none;
}

.supreme-discord-accept:hover {
  color: #fff;
  background: var(--supreme-blue-hover);
}

@media (max-width: 991.98px) {
  .supreme-discord-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   Footer
   ============================================================ */
.supreme-footer {
  position: relative;
  background: #0a0a0a;
  border-radius: 1.5rem 1.5rem 0 0;
  overflow: hidden;
  margin-top: 2rem;
}

.supreme-footer-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.06;
  background-image: radial-gradient(circle at 1px 1px, #fff 1px, transparent 0);
  background-size: 24px 24px;
  pointer-events: none;
}

.supreme-footer-top {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 2rem;
  padding: 3rem 0 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.supreme-footer-logo {
  font-size: 1.75rem;
  font-weight: 800;
  font-style: italic;
  color: #fff;
  text-shadow: 2px 2px 0 var(--supreme-blue);
  margin: 0 0 0.75rem;
}

.supreme-footer-desc {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.875rem;
  max-width: 320px;
  margin: 0;
  line-height: 1.6;
}

.supreme-footer-links {
  display: flex;
  justify-content: flex-end;
  gap: 4rem;
}

.supreme-footer-col h4 {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #fff;
  margin: 0 0 1rem;
}

.supreme-footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.supreme-footer-col li {
  margin-bottom: 0.5rem;
}

.supreme-footer-col a {
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.2s ease;
}

.supreme-footer-col a:hover {
  color: #fff;
}

.supreme-footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 0 2rem;
  flex-wrap: wrap;
}

.supreme-footer-copy {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.8rem;
  margin: 0;
}

.supreme-footer-payments {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.supreme-scroll-top {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  border: none;
  background: var(--supreme-blue);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
}

.supreme-scroll-top svg {
  width: 1rem;
  height: 1rem;
}

@media (max-width: 767.98px) {
  .supreme-footer-top {
    grid-template-columns: 1fr;
  }

  .supreme-footer-links {
    justify-content: flex-start;
    gap: 2.5rem;
  }
}

/* ============================================================
   General placement polish (consistent vertical rhythm)
   ============================================================ */
/* Keep section headers centered + breathing room consistent across
   the home page sections (feedbacks, vouches, categories use .section-title) */
.text-block .section-title,
.categories .section-title {
  text-align: center;
  justify-content: center;
  margin-bottom: 0.75rem;
}

.section-subtitle {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 2.5rem;
}

.section-subtitle p {
  color: var(--supreme-text-muted);
  margin: 0;
}

/* Categories cards: match the dark surface + hover used elsewhere */
.categories .card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--supreme-border);
  border-radius: 1rem;
  overflow: hidden;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.categories .card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 68, 255, 0.5);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
}

.categories .card-img-top {
  border-bottom: 1px solid var(--supreme-border);
}

/* Vouches container should not look cramped against neighbours */
#vouchesContainer {
  width: 100%;
}

/* ============================================================
   Reviews showcase page (/feedback)
   ============================================================ */
.supreme-reviews-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 3.5rem;
}

.supreme-reviews-badge {
  margin-bottom: 1.25rem;
}

.supreme-reviews-title {
  margin-bottom: 1rem;
}

.supreme-reviews-stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 2.25rem;
}

.supreme-reviews-stat {
  flex: 1 1 0;
  min-width: 150px;
  max-width: 220px;
  padding: 1.5rem 1rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--supreme-border);
  border-radius: 1rem;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.supreme-reviews-stat-value {
  font-size: clamp(1.75rem, 3vw, 2.4rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
}

.supreme-reviews-stars {
  display: flex;
  justify-content: center;
  gap: 0.15rem;
  margin: 0.4rem 0;
}

.supreme-reviews-stat-label {
  color: var(--supreme-text-muted);
  font-size: 0.9rem;
}

.supreme-reviews .testimonials {
  row-gap: 1.5rem;
}

.supreme-reviews-empty {
  text-align: center;
  padding: 4rem 1rem;
  color: var(--supreme-text-muted);
}

.supreme-reviews-empty p {
  margin-bottom: 1.25rem;
}

@media (max-width: 575.98px) {
  .supreme-reviews-stats {
    gap: 0.65rem;
  }
  .supreme-reviews-stat {
    min-width: 130px;
    padding: 1.1rem 0.75rem;
  }
}