/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background: #0a0a0a;
  color: #fff;
  overflow-x: hidden;
}

/* ================= TOP MOVING BANNER ================= */
.top-banner {
  background: #000;
  overflow: hidden;
  white-space: nowrap;
  padding: 12px 0;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.banner-track {
  display: inline-block;
  animation: scroll 25s linear infinite;
}

.banner-track span {
  margin: 0 60px;
  color: #bbb;
}

@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ================= NAVBAR ================= */
.navbar {
  position: sticky;
  top: 0;
  background: rgba(10,10,10,0.9);
  backdrop-filter: blur(10px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 60px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  z-index: 100;
}

.logo {
  font-weight: 700;
  font-size: 22px;
  letter-spacing: 2px;
}

nav a {
  color: #ccc;
  text-decoration: none;
  margin-left: 30px;
  font-weight: 500;
  transition: 0.3s ease;
}

nav a:hover {
  color: #fff;
}

/* Hamburger Menu */
.menu-toggle {
  display: none;
  font-size: 28px;
  cursor: pointer;
}

/* ================= HERO ================= */
.hero {
  height: 90vh;
  background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.8)),
              url("images/resellhero.jpg") center/cover no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 20px;
}

.hero-logo {
  display: block;
  margin: 0 auto 20px;
  max-width: 150px;
}

.hero h1 {
  font-size: 52px;
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: 2px;
}

.hero p {
  color: #aaa;
  margin-bottom: 30px;
  font-size: 18px;
}

.btn {
  padding: 14px 40px;
  border-radius: 40px;
  background: white;
  color: black;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s ease;
}

.btn:hover {
  transform: scale(1.05);
}

/* ================= PRODUCTS ================= */
.products {
  padding: 80px 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  max-width: 1400px;
  margin: 0 auto 100px;
}

.product-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(20px);
  border-radius: 25px;
  padding: 20px;
  text-align: center;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  position: relative;
  overflow: hidden;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(0,170,255,0.4);
}

.product-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 20px;
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.product-card img:hover {
  transform: scale(1.05);
  box-shadow: 0 25px 60px rgba(0,170,255,0.3);
}

.product-card h3 {
  font-size: 20px;
  font-weight: 600;
  margin: 15px 0 10px;
  color: #fff;
}

.product-card .price {
  font-size: 18px;
  font-weight: 700;
  color: #00aaff;
  margin-bottom: 15px;
}

.product-card .buy {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 30px;
  background: linear-gradient(90deg, #00ffcc, #00aaff);
  color: #000;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s ease;
}

.product-card .buy:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 15px 40px rgba(0,170,255,0.5);
}

/* ================= FAQ ================= */
.faq {
  padding: 120px 20px;
  background: #0f0f0f;
  text-align: center;
}

.faq h2 {
  font-size: 36px;
  margin-bottom: 60px;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.faq-item {
  max-width: 800px;
  margin: 0 auto 25px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: #fff;
  font-size: 18px;
  padding: 20px 0;
  text-align: left;
  display: flex;
  justify-content: space-between;
  cursor: pointer;
  transition: 0.3s ease;
}

.faq-question:hover {
  color: #999;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-answer p {
  padding-bottom: 20px;
  color: #888;
  line-height: 1.6;
}

/* ================= LEGAL ================= */
.legal {
  background: #0a0a0a;
  padding: 60px 20px;
  text-align: center;
  color: #aaa;
  font-size: 14px;
  line-height: 1.8;
}

.legal h2 {
  font-size: 22px;
  margin-bottom: 20px;
  letter-spacing: 1px;
  color: #fff;
}

.legal a {
  color: #00aaff;
  text-decoration: none;
  transition: 0.3s ease;
}

.legal a:hover {
  text-decoration: underline;
  color: #00ffcc;
}

/* Terms & Privacy */
.terms, .privacy {
  max-width: 900px;
  margin: 80px auto;
  padding: 40px 20px;
  background: #0f0f0f;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.05);
  color: #ccc;
  line-height: 1.8;
}

.terms h1, .privacy h1 {
  text-align: center;
  font-size: 32px;
  margin-bottom: 40px;
  color: #fff;
}

.terms ul, .privacy ul {
  margin: 20px 0 30px 20px;
  list-style: disc;
}

.terms li, .privacy li {
  margin-bottom: 15px;
}

.terms p, .privacy p {
  margin-bottom: 20px;
}

/* ================= FOOTER ================= */
.footer {
  padding: 40px;
  text-align: center;
  background: #000;
  color: #666;
  font-size: 14px;
}

.footer-badges {
  margin-bottom: 10px;
  color: #888;
  font-size: 13px;
}

.social-icons {
  margin-top: 15px;
}

.social-icons a {
  margin: 0 12px;
  font-size: 14px;
  color: #888;
  text-decoration: none;
  transition: 0.3s;
}

.social-icons a:hover {
  color: #00aaff;
}

/* ================= FLOATING DISCORD ================= */
.discord-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #5865F2;
  color: white;
  padding: 12px 20px;
  border-radius: 30px;
  font-size: 14px;
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
  transition: 0.3s;
}

.discord-float:hover {
  transform: scale(1.05);
}

/* ================= TRUST BADGES ================= */
.trust-badges {
  margin-top: 20px;
  font-size: 14px;
  color: #bbb;
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  justify-content: center;
}

.trust-badges span {
  background: rgba(255,255,255,0.05);
  padding: 8px 14px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.08);
}

/* ================= RESPONSIVE ================= */
@media (max-width: 900px) {
  .products {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
  }

  .product-card img {
    height: 250px;
  }
}

/* ================= MOBILE (768px) ================= */
@media (max-width: 768px) {
  /* Navbar */
  .navbar {
    position: relative;
    flex-direction: row;
    justify-content: space-between;
    padding: 15px 20px;
    text-align: center;
  }

  .menu-toggle {
    display: block;
  }

  #nav-menu {
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background: #0a0a0a;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

  #nav-menu a {
    padding: 15px;
    width: 100%;
    text-align: center;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }

  #nav-menu.active {
    max-height: 400px;
  }

  /* Hero */
  .hero {
    height: auto;
    padding: 60px 15px;
  }

  .hero h1 { font-size: 26px; line-height: 1.3; }
  .hero p { font-size: 15px; }
  .hero-logo { max-width: 100px; }
  .btn { font-size: 14px; padding: 12px 25px; }

  /* Trust badges */
  .trust-badges { gap: 10px; }
  .trust-badges span { font-size: 12px; padding: 6px 10px; }

  /* FAQ */
  .faq { padding: 80px 20px; }
  .faq h2 { font-size: 24px; }
  .faq-question { font-size: 15px; }

  /* Legal */
  .legal { padding: 40px 20px; font-size: 13px; }

  /* Footer */
  .footer { font-size: 12px; padding: 30px 20px; }

  /* Banner */
  .top-banner { font-size: 11px; }

  /* Discord */
  .discord-float { bottom: 15px; right: 15px; font-size: 12px; padding: 10px 14px; }
}
/* Navbar cart button */
.nav-cart-btn {
  background: #0a0a0a;       /* Bright button color, adjust as needed */
  color: white;               /* Text color */
  font-size: 0.9rem;          /* Slightly smaller than links */
  font-weight: 500;           
  border: none;
  border-radius: 6px;         /* Rounded corners */
  padding: 6px 12px;          /* Comfortable size */
  cursor: pointer;
  margin-left: 15px;          /* Space from previous link */
  transition: background 0.2s ease;
}

/* Hover effect */
.nav-cart-btn:hover {
  background: #000000;       /* Darker shade on hover */
  text-decoration: none;
}

/* Align button with nav links (if using flex) */
#nav-menu {
  display: flex;
  align-items: center;
  gap: 10px;                 /* Space between links/buttons */
}

#nav-menu a {
  text-decoration: none;
  color: white;              /* Match your navbar links */
  font-weight: 500;
  padding: 6px 10px;
  transition: color 0.2s ease;
}

#nav-menu a:hover {
  color: #111010;           /* Hover color for links */
}

/* Responsive adjustments for mobile */
@media (max-width: 768px) {
  #nav-menu {
    flex-direction: column;       /* Stack links vertically */
    align-items: flex-start;
    gap: 5px;
    display: none;                /* Initially hidden, shown when hamburger toggled */
  }

  #nav-menu.active {
    display: flex;                /* Show menu when active */
  }

  .nav-cart-btn {
    margin-left: 0;               /* Remove extra left margin on stacked menu */
    width: 100%;                  /* Full width in mobile menu */
    text-align: left;             /* Align text to left */
  }

  #nav-menu a {
    width: 100%;                  /* Links also full width */
    padding: 8px 10px;
  }
}
 /* =========================
   SNIPCART FIXES
========================= */

/* Make Snipcart popup sit above everything */
.snipcart-modal,
.snipcart,
.snipcart-layout,
.snipcart-cart-header,
.snipcart-cart-summary,
.snipcart-checkout-step,
.snipcart-base-button,
.snipcart__box,
.snipcart-cart__content {
  z-index: 999999 !important;
}

/* Prevent your navbar from sitting above cart */
.navbar,
.product-header,
.top-banner,
.discord-float {
  z-index: 10 !important;
}

/* Optional: make cart look cleaner on mobile */
.snipcart-modal__container,
.snipcart-layout__content {
  max-width: 100% !important;
}

/* Optional: better cart font */
.snipcart * {
  font-family: 'Poppins', sans-serif !important;
}