/* ===============================
   DARK ORANGE THEME — NO WHITE
   =============================== */

:root {
  --primary: #f97316;
  --secondary: #fb923c;
  --accent: #22c55e;

  --bg-main: #020617;
  --bg-section: #0f172a;
  --bg-card: #111827;

  --text-main: #e5e7eb;
  --text-muted: #9ca3af;

  --border-dark: #1f2937;
}

/* ===== GLOBAL ===== */

* {
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg-main);
  color: var(--text-main);
  margin: 0;
}

.section {
  padding: 80px 0;
}

.section-title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 40px;
}

.bg-light {
  background: var(--bg-section) !important;
}

a {
  color: var(--secondary);
  text-decoration: none;
}

a:hover {
  color: var(--primary);
}

/* ===== BUTTONS ===== */

.btn-primary {
  background: var(--primary);
  border-color: var(--primary);
  color: #020617;
  font-weight: 700;
}

.btn-primary:hover {
  background: var(--secondary);
  border-color: var(--secondary);
}

.btn-outline-primary {
  border-color: var(--primary);
  color: var(--primary);
}

.btn-outline-primary:hover {
  background: var(--primary);
  color: #020617;
}

.btn-light {
  background: var(--secondary);
  border-color: var(--secondary);
  color: #020617;
  font-weight: 700;
}

/* ===== HERO ===== */

.hero-modern .carousel-item {
  height: 75vh;
  min-height: 520px;
}

.hero-modern img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.hero-modern .carousel-caption {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(2,6,23,.95),
    rgba(15,23,42,.75)
  );
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4rem;
  text-align: left;
}

.hero-modern h1 {
  font-size: 3rem;
  font-weight: 800;
  color: #fff;
}

.hero-modern p {
  max-width: 520px;
  margin: 15px 0 30px;
  color: var(--text-muted);
}

/* ===== STORE CARDS ===== */

.store-card {
  display: block;
  background: var(--bg-card);
  border-radius: 16px;
  padding: 20px;
  text-align: center;
  border: 1px solid var(--border-dark);
  box-shadow: 0 10px 25px rgba(0,0,0,.6);
  transition: all .3s ease;
}

.store-card img {
  max-height: 60px;
  margin-bottom: 10px;
  filter: brightness(1.1);
}

.store-card span {
  font-weight: 600;
  font-size: 14px;
  color: var(--text-main);
}

.store-card:hover {
  transform: translateY(-6px);
  border-color: var(--primary);
}

/* ===== DEAL CARDS ===== */

.deal-card {
  background: linear-gradient(180deg, #111827, #020617);
  border-radius: 18px;
  padding: 22px;
  height: 100%;
  border: 1px solid var(--border-dark);
  box-shadow: 0 15px 40px rgba(0,0,0,.7);
  transition: all .3s ease;
}

.deal-card img {
  max-height: 52px;
  margin-bottom: 15px;
}

.deal-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
}

.deal-card p {
  font-size: 14px;
  color: var(--text-muted);
}

.deal-card:hover {
  transform: translateY(-6px);
  border-color: var(--primary);
}

.deal-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 22px;
}

/* ===== BADGES ===== */

.badge.bg-success {
  background: var(--accent) !important;
  color: #020617;
  font-weight: 700;
}

.badge.bg-primary {
  background: var(--primary) !important;
  color: #020617;
  font-weight: 700;
}

/* ===== CATEGORY ===== */

.category-card {
  background: var(--bg-card);
  border-radius: 16px;
  padding: 20px;
  text-align: center;
  border: 1px solid var(--border-dark);
  transition: all .3s ease;
}

.category-card img {
  width: 48px;
  margin-bottom: 12px;
}

.category-card span {
  font-weight: 600;
  color: var(--text-main);
}

.category-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary);
}

/* ===== SUBSCRIBE ===== */

.subscribe-cta {
  background: linear-gradient(135deg, #7c2d12, #f97316);
  color: #fff;
  padding: 90px 0;
}

.subscribe-cta h2 {
  font-weight: 800;
}

.subscribe-cta p {
  color: #fde68a;
}

.subscribe-cta input {
  background: #020617;
  color: #fff;
  border: 1px solid #7c2d12;
  border-radius: 50px;
  padding: 12px 18px;
  max-width: 320px;
}

.subscribe-cta input::placeholder {
  color: #9ca3af;
}

.subscribe-cta button {
  background: var(--primary);
  color: #020617;
  border-radius: 50px;
  font-weight: 800;
  padding: 12px 26px;
}

/* ===== FOOTER / MISC ===== */

footer {
  background: #020617;
  border-top: 1px solid var(--border-dark);
}

.text-muted {
  color: var(--text-muted) !important;
}
/* ===============================
   HEADER — DARK ORANGE
   =============================== */

.site-header,
header,
.navbar {
  background: linear-gradient(180deg, #020617, #0f172a);
  border-bottom: 1px solid #1f2937;
}

.navbar-brand img {
  max-height: 44px;
}

.navbar-nav .nav-link {
  color: var(--text-main) !important;
  font-weight: 600;
  padding: 10px 16px;
  transition: color .2s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--primary) !important;
}

.navbar-toggler {
  border-color: var(--border-dark);
}

.navbar-toggler-icon {
  filter: invert(1);
}

/* Header buttons (Login / Submit / etc.) */
.header-btn,
.navbar .btn {
  background: transparent;
  border: 1px solid var(--primary);
  color: var(--primary);
  border-radius: 50px;
  padding: 8px 18px;
  font-weight: 700;
}

.header-btn:hover,
.navbar .btn:hover {
  background: var(--primary);
  color: #020617;
}
/* ===============================
   HEADER — DARK ORANGE
   =============================== */

.site-header,
header,
.navbar {
  background: linear-gradient(180deg, #020617, #0f172a);
  border-bottom: 1px solid #1f2937;
}

.navbar-brand img {
  max-height: 44px;
}

.navbar-nav .nav-link {
  color: var(--text-main) !important;
  font-weight: 600;
  padding: 10px 16px;
  transition: color .2s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--primary) !important;
}

.navbar-toggler {
  border-color: var(--border-dark);
}

.navbar-toggler-icon {
  filter: invert(1);
}

/* Header buttons (Login / Submit / etc.) */
.header-btn,
.navbar .btn {
  background: transparent;
  border: 1px solid var(--primary);
  color: var(--primary);
  border-radius: 50px;
  padding: 8px 18px;
  font-weight: 700;
}

.header-btn:hover,
.navbar .btn:hover {
  background: var(--primary);
  color: #020617;
}
/* ===============================
   HEADER — DARK ORANGE
   =============================== */

.site-header,
header,
.navbar {
  background: linear-gradient(180deg, #020617, #0f172a);
  border-bottom: 1px solid #1f2937;
}

.navbar-brand img {
  max-height: 44px;
}

.navbar-nav .nav-link {
  color: var(--text-main) !important;
  font-weight: 600;
  padding: 10px 16px;
  transition: color .2s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--primary) !important;
}

.navbar-toggler {
  border-color: var(--border-dark);
}

.navbar-toggler-icon {
  filter: invert(1);
}

/* Header buttons (Login / Submit / etc.) */
.header-btn,
.navbar .btn {
  background: transparent;
  border: 1px solid var(--primary);
  color: var(--primary);
  border-radius: 50px;
  padding: 8px 18px;
  font-weight: 700;
}

.header-btn:hover,
.navbar .btn:hover {
  background: var(--primary);
  color: #020617;
}
/* ===============================
   HEADER — DARK ORANGE
   =============================== */

.site-header,
header,
.navbar {
  background: linear-gradient(180deg, #020617, #0f172a);
  border-bottom: 1px solid #1f2937;
}

.navbar-brand img {
  max-height: 44px;
}

.navbar-nav .nav-link {
  color: var(--text-main) !important;
  font-weight: 600;
  padding: 10px 16px;
  transition: color .2s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--primary) !important;
}

.navbar-toggler {
  border-color: var(--border-dark);
}

.navbar-toggler-icon {
  filter: invert(1);
}

/* Header buttons (Login / Submit / etc.) */
.header-btn,
.navbar .btn {
  background: transparent;
  border: 1px solid var(--primary);
  color: var(--primary);
  border-radius: 50px;
  padding: 8px 18px;
  font-weight: 700;
}

.header-btn:hover,
.navbar .btn:hover {
  background: var(--primary);
  color: #020617;
}
/* ===============================
   PILL SHAPED HERO BANNER
   =============================== */

.hero-wrap {
  padding: 80px 0;
  background: var(--bg-main);
}

.hero-pill {
  max-width: 1280px;
  margin: 0 auto;
  padding: 80px;
  border-radius: 48px;
  background: linear-gradient(
    135deg,
    #4c1d95,
    #7c3aed
  );
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  overflow: hidden;
}

/* subtle glow */
.hero-pill::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at top right,
    rgba(249,115,22,.25),
    transparent 60%
  );
  pointer-events: none;
}

/* LEFT CONTENT */
.hero-content {
  max-width: 620px;
  z-index: 2;
}

.hero-content h1 {
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1.1;
  color: #fff;
}

.hero-content p {
  margin-top: 18px;
  font-size: 18px;
  color: #e5e7eb;
  max-width: 520px;
}

/* ACTIONS */
.hero-actions {
  display: flex;
  gap: 16px;
  margin-top: 32px;
}

/* RIGHT ART */
.hero-art {
  z-index: 2;
}

.hero-art img {
  max-width: 360px;
  animation: float 6s ease-in-out infinite;
}

/* FLOAT ANIMATION */
@keyframes float {
  0% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
  100% { transform: translateY(0); }
}
/* ===============================
   FINAL PILL HERO (PRODUCTION)
   =============================== */

.hero-wrap {
  padding: 80px 20px 100px;
  background: var(--bg-main);
}

.hero-pill {
  max-width: 1280px;
  margin: 0 auto;
  padding: 70px;
  border-radius: 48px;
  background: linear-gradient(
    135deg,
    #7c2d12,
    #f97316
  );
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  overflow: hidden;
}

/* LEFT CONTENT */
.hero-content {
  max-width: 620px;
}

.hero-content h1 {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.1;
  color: #fff;
}

.hero-content p {
  margin-top: 16px;
  font-size: 18px;
  color: #fde68a;
}

/* BUTTONS */
.hero-actions {
  display: flex;
  gap: 16px;
  margin-top: 28px;
}

/* RIGHT IMAGE */
.hero-art img {
  max-width: 340px;
  display: block;
}

/* MOBILE */
@media (max-width: 991px) {
  .hero-pill {
    flex-direction: column;
    text-align: center;
    padding: 40px 30px;
  }

  .hero-actions {
    justify-content: center;
    flex-wrap: wrap;
  }

  .hero-art img {
    margin-top: 30px;
    max-width: 260px;
  }
}

header,
.site-header,
.navbar {
  position: relative;
  z-index: 10;
}

.hero-wrap {
  margin-top: 20px;
}
/* ===============================
   HERO ENHANCEMENTS
   =============================== */

/* GLOW EDGE */
.hero-pill {
  box-shadow:
    0 0 0 1px rgba(249,115,22,.35),
    0 0 60px rgba(249,115,22,.35),
    0 30px 80px rgba(0,0,0,.7);
}

/* SPARKLES */
.hero-sparkles {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(2px 2px at 20% 30%, rgba(255,255,255,.6), transparent),
    radial-gradient(1.5px 1.5px at 70% 20%, rgba(255,255,255,.5), transparent),
    radial-gradient(1px 1px at 40% 80%, rgba(255,255,255,.4), transparent),
    radial-gradient(2px 2px at 85% 65%, rgba(255,255,255,.6), transparent);
  animation: sparkleMove 12s linear infinite;
  pointer-events: none;
}

@keyframes sparkleMove {
  from { transform: translateY(0); }
  to { transform: translateY(-40px); }
}

/* SEARCH BAR */
.hero-search {
  margin-top: 28px;
  display: flex;
  max-width: 520px;
  background: #020617;
  border-radius: 50px;
  border: 1px solid #7c2d12;
  overflow: hidden;
}

.hero-search input {
  flex: 1;
  background: transparent;
  border: none;
  padding: 14px 18px;
  color: #fff;
  outline: none;
}

.hero-search input::placeholder {
  color: #9ca3af;
}

.hero-search button {
  background: var(--primary);
  color: #020617;
  border: none;
  padding: 0 26px;
  font-weight: 800;
  cursor: pointer;
}

.hero-search button:hover {
  background: var(--secondary);
}

/* ENTRY ANIMATION */
.hero-content {
  animation: heroFadeUp .9s ease-out forwards;
}

@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* ===============================
   HERO BANNER (THE SHAPE)
   =============================== */

.hero-wrap {
  background: #020617;          /* dark page */
  padding: 80px 20px 120px;
}

.hero-pill {
  max-width: 1280px;
  margin: 0 auto;
  padding: 70px;
  border-radius: 48px;          /* <-- THIS makes the pill */
  background: linear-gradient(
    135deg,
    #7c2d12,
    #f97316
  );                            /* <-- THIS is the banner color */
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  box-shadow:
    0 0 0 1px rgba(249,115,22,.35),
    0 0 60px rgba(249,115,22,.35),
    0 30px 80px rgba(0,0,0,.7);
}

/* TEXT */
.hero-content {
  max-width: 620px;
}

.hero-content h1 {
  font-size: 3rem;
  font-weight: 800;
  color: #fff;
}

.hero-content p {
  margin-top: 16px;
  font-size: 18px;
  color: #fde68a;
}

/* BUTTON ROW */
.hero-actions {
  margin-top: 28px;
  display: flex;
  gap: 16px;
}

/* IMAGE */
.hero-art img {
  max-width: 340px;
  display: block;
}

/* MOBILE */
@media (max-width: 991px) {
  .hero-pill {
    flex-direction: column;
    text-align: center;
    padding: 40px 30px;
  }

  .hero-actions {
    justify-content: center;
    flex-wrap: wrap;
  }

  .hero-art img {
    margin-top: 30px;
    max-width: 260px;
  }
}
.hero-pill {
  box-shadow:
    0 0 0 1px rgba(255,255,255,.06),
    0 0 80px rgba(249,115,22,.45),
    0 40px 120px rgba(0,0,0,.9);
}
.hero-content {
  max-width: 560px;
}

.hero-content p {
  color: #fff2cc;
  line-height: 1.6;
}
.hero-actions .btn-primary {
  background: #ff8c1a;
  color: #020617;
  font-weight: 800;
  box-shadow: 0 10px 30px rgba(255,140,26,.6);
}

.hero-actions .btn-outline-primary {
  color: #fff;
  border-color: rgba(255,255,255,.5);
}
.hero-wrap {
  padding-top: 100px;
}
.hero-wrap {
  background: var(--bg-main);
  padding: 30px 20px 50px; /* ↓ reduced top & bottom */
}
/* ===============================
   COMMUNITY / HOT CODES SECTION
   =============================== */

.community-wrap {
  padding: 40px 20px;
}

.community-box {
  max-width: 1300px;
  margin: 0 auto;
  background: #2a2a2a;
  border-radius: 32px;
  padding: 40px;
  color: #fff;
}

.community-box h2 {
  font-size: 26px;
  font-weight: 800;
}

.community-box h3 {
  margin-top: 32px;
  font-size: 18px;
}

/* SEARCH */
.community-search {
  margin-top: 20px;
  display: flex;
  align-items: center;
  background: #1f1f1f;
  border-radius: 50px;
  padding: 6px 8px;
}

.community-search input {
  flex: 1;
  background: transparent;
  border: none;
  color: #fff;
  padding: 12px 14px;
  outline: none;
}

.community-search button {
  background: var(--primary);
  color: #020617;
  border: none;
  border-radius: 50px;
  padding: 10px 22px;
  font-weight: 800;
}

/* POPULAR */
.popular-grid {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
}

.popular-item {
  background: #1f1f1f;
  padding: 16px;
  border-radius: 14px;
}

.popular-item span {
  display: block;
  margin-top: 4px;
  color: #ffcc99;
  font-size: 13px;
}

/* CODE CARDS */
.code-grid {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.code-card {
  background: #1f1f1f;
  border-radius: 20px;
  padding: 20px;
}

.code-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.code-top button {
  background: #7CFF4A;
  border: none;
  border-radius: 50px;
  padding: 8px 16px;
  font-weight: 800;
  cursor: pointer;
}

.verified {
  display: block;
  font-size: 13px;
  color: #7CFF4A;
}

.code-meta {
  margin-top: 12px;
  font-size: 13px;
  color: #aaa;
}
/* ===============================
   EARN TOKENS SECTION
   =============================== */

.earn-wrap {
  padding: 40px 20px;
}

.earn-box {
  max-width: 1300px;
  margin: 0 auto;
  background: #2a2a2a;
  border-radius: 32px;
  padding: 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  color: #fff;
}

/* LEFT */
.earn-left h2 {
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 30px;
}

.earn-item {
  display: flex;
  gap: 14px;
  padding: 16px;
  border-radius: 14px;
  color: #aaa;
}

.earn-item.active {
  background: #1f1f1f;
  color: #fff;
  border-left: 3px solid var(--primary);
}

.earn-item strong {
  display: block;
  margin-bottom: 4px;
}

.earn-icon {
  font-size: 24px;
}

/* RIGHT */
.earn-right {
  background: radial-gradient(circle at center, #1f2937, #020617);
  border-radius: 24px;
  padding: 30px;
}

.logo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.logo-grid span {
  background: #fff;
  color: #020617;
  border-radius: 50%;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 12px;
}

/* MOBILE */
@media (max-width: 991px) {
  .earn-box {
    grid-template-columns: 1fr;
  }
}
/* ===== FINAL FIX: EARN SECTION CONTAINER ===== */

.earn-wrap {
  padding: 40px 20px;
}

.earn-box {
  max-width: 1300px;
  margin: 0 auto;
  background: #2a2a2a;           /* container background */
  border-radius: 32px;           /* rounded corners */
  padding: 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

/* Left column */
.earn-left h2 {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 30px;
}

.earn-item {
  display: flex;
  gap: 14px;
  padding: 16px;
  border-radius: 14px;
  margin-bottom: 14px;
  color: #ddd;
}

.earn-item.active {
  background: #1f1f1f;
  border-left: 3px solid var(--primary);
}

.earn-icon {
  font-size: 22px;
}

/* Right column */
.earn-right {
  background: radial-gradient(circle at center, #1f2937, #020617);
  border-radius: 24px;
  padding: 30px;
}

/* Mobile */
@media (max-width: 991px) {
  .earn-box {
    grid-template-columns: 1fr;
  }
}
/* ===== LOGO GRID WITH REAL IMAGES ===== */

.logo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.logo-circle {
  background: #fff;
  border-radius: 50%;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px;
}

.logo-circle img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
/* ===============================
   FOOTER (ORANGE THEME)
   =============================== */

.site-footer {
  margin-top: 80px;
  color: #fff;
}

/* TOP FOOTER */
.footer-top {
  background: #020617;
  border-top-left-radius: 40px;
  border-top-right-radius: 40px;
  padding: 60px 40px;
}

.footer-grid {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 40px;
}

.footer-col h4 {
  font-size: 14px;
  font-weight: 800;
  margin-bottom: 14px;
  color: #fff;
}

.footer-col a {
  display: block;
  color: #cbd5e1;
  font-size: 14px;
  margin-bottom: 8px;
  text-decoration: none;
}

.footer-col a:hover {
  color: #f97316; /* orange hover */
}

/* SOCIAL */
.footer-social {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.social-icons a {
  margin-right: 10px;
  font-size: 18px;
  color: #f97316;
  text-decoration: none;
}

.footer-apps img {
  display: block;
  max-width: 140px;
  margin-bottom: 10px;
}

/* ===============================
   ORANGE BRAND STRIP (GLOSSY)
   =============================== */

.footer-brand {
  background: linear-gradient(
    135deg,
    #7c2d12,
    #f97316,
    #fb923c
  );
  text-align: center;
  padding: 60px 20px;
}

.footer-brand span {
  font-size: 80px;
  font-weight: 900;
  color: #020617;
  letter-spacing: -1px;
  text-shadow:
    0 2px 0 rgba(255,255,255,.15),
    0 10px 40px rgba(0,0,0,.5);
}

/* MOBILE */
@media (max-width: 991px) {
.hero-art img {
  width: 460px;       /* increase size */
  max-width: 500%;
  height: auto;
}
/* ===============================
   STORE PAGE
   =============================== */

.inner-wrap {
  padding: 40px 20px;
}

.inner-box {
  max-width: 1300px;
  margin: 0 auto;
}

/* STORE HERO */
.store-hero {
  background: #020617;
  border-radius: 28px;
  padding: 40px;
  display: flex;
  gap: 30px;
  align-items: center;
  box-shadow: 0 40px 90px rgba(0,0,0,.6);
}

.store-hero-left img {
  width: 140px;
  background: #fff;
  padding: 16px;
  border-radius: 18px;
}

.store-hero-right h1 {
  font-size: 30px;
  font-weight: 800;
  color: #fff;
}

.store-hero-right p {
  color: #cbd5e1;
  margin: 12px 0 20px;
}

/* FILTERS */
.store-filters {
  display: flex;
  gap: 12px;
  margin-bottom: 30px;
}

.store-filters button {
  background: #020617;
  border: 1px solid #334155;
  color: #fff;
  padding: 10px 22px;
  border-radius: 40px;
  cursor: pointer;
}

.store-filters button.active {
  background: linear-gradient(135deg,#7c2d12,#f97316);
  color: #020617;
  font-weight: 700;
}

/* COUPONS */
.code-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px,1fr));
  gap: 24px;
}

.code-card {
  background: #020617;
  border-radius: 22px;
  padding: 24px;
  color: #fff;
  box-shadow: 0 20px 50px rgba(0,0,0,.6);
}

.code-top {
  display: flex;
  justify-content: space-between;
  font-weight: 700;
}

.code-card p {
  color: #cbd5e1;
  margin: 12px 0 20px;
}

.view-code-btn {
  background: linear-gradient(135deg,#f97316,#fb923c);
  border: none;
  padding: 10px 22px;
  border-radius: 40px;
  font-weight: 700;
  color: #020617;
}

/* ===============================
   STORE LIST (A–Z)
   =============================== */

.page-title {
  font-size: 38px;
  font-weight: 800;
  color: #fff;
}

.page-subtitle {
  color: #cbd5e1;
  margin-top: 10px;
}

/* A–Z FILTER */
.az-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
}

.az-filter a {
  padding: 8px 14px;
  border-radius: 10px;
  background: #020617;
  color: #fff;
  font-weight: 600;
  text-decoration: none;
}

.az-filter a:hover {
  background: linear-gradient(135deg,#7c2d12,#f97316);
  color: #020617;
}

/* LETTER SECTION */
.az-section {
  margin-bottom: 50px;
}

.az-section h2 {
  color: #f97316;
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 20px;
}

/* STORES GRID */
.az-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
}

.az-store {
  background: #020617;
  padding: 14px 18px;
  border-radius: 14px;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  box-shadow: 0 10px 30px rgba(0,0,0,.5);
}

.az-store:hover {
  background: linear-gradient(135deg,#f97316,#fb923c);
  color: #020617;
}
/* ===== STORE LIST HARD RESET ===== */

.catpnl,
.catpnl ul,
.catpnl li,
.store_listing,
.store_listing ul,
.store_listing li {
  all: unset;
}

/* Re-apply base layout */
.az-section {
  display: block;
  margin-bottom: 50px;
}

.az-grid {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)) !important;
  gap: 16px !important;
}

.az-store {
  display: block !important;
  background: #020617 !important;
  padding: 14px 18px !important;
  border-radius: 14px !important;
  color: #fff !important;
  font-weight: 600 !important;
  text-decoration: none !important;
  box-shadow: 0 10px 30px rgba(0,0,0,.5);
}

.az-store:hover {
  background: linear-gradient(135deg,#f97316,#fb923c) !important;
  color: #020617 !important;
}
/* ===============================
   STORE LIST HARD OVERRIDE
   =============================== */

.store_listing ul,
.store_listing ul li {
  display: block !important;
  padding: 0 !important;
  margin: 0 !important;
}

.catpnl ul {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)) !important;
  gap: 14px !important;
}

.catpnl ul li a {
  display: block !important;
  background: #020617 !important;
  color: #fff !important;
  padding: 14px 18px !important;
  border-radius: 14px !important;
  text-decoration: none !important;
  font-weight: 600 !important;
}

.catpnl ul li a:hover {
  background: linear-gradient(135deg,#f97316,#fb923c) !important;
  color: #020617 !important;
}
/* ===============================
   DESKTOP FIX — FORCE GRID
   =============================== */

/* Force grid at ALL widths */
.catpnl ul {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)) !important;
  gap: 16px !important;
}

/* Reset legacy inline/float rules */
.catpnl ul li {
  display: block !important;
  float: none !important;
  width: auto !important;
}

/* Store card styling */
.catpnl ul li a {
  display: block !important;
  background: #020617 !important;
  color: #fff !important;
  padding: 14px 18px !important;
  border-radius: 14px !important;
  font-weight: 600 !important;
  text-decoration: none !important;
}

/* Hover effect */
.catpnl ul li a:hover {
  background: linear-gradient(135deg,#f97316,#fb923c) !important;
  color: #020617 !important;
}
@media (min-width: 992px) {
  .catpnl ul {
    display: grid !important;
  }
/* =========================================
   HARD RESET FOR STORE LIST (DESKTOP FIX)
   ========================================= */

/* Kill all column / float / inline layouts */
@media (min-width: 768px) {

  .store_listing,
  .store_listing *,
  .catpnl,
  .catpnl *,
  .catpnl ul,
  .catpnl ul li {
    float: none !important;
    column-count: unset !important;
    column-gap: unset !important;
    display: block !important;
    width: auto !important;
  }