:root {
  --bg: #05070c;
  --card: rgba(255,255,255,0.04);
  --yellow: #ffd700;
  --yellow-soft: #ffea8a;
  --border: rgba(255,215,0,.45);
  --white: #ffffff;
}

@media (max-width: 768px) {
  .hero {
    min-height: 70vh;
    padding: 40px 6%;
    background-position: center top;
  }
    


  .product-image {
    max-height: 140px;
  }
}

.product-card img,
.product-card.glow img {
  width: 100%;
  max-height: 180px;   /* 👈 pas dit aan indien nodig */
  object-fit: cover;  /* snijdt netjes bij */
  border-radius: 12px;
  display: block;
}

/* ================= RESET ================= */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Inter, sans-serif;
}

.product-image {
  width: 100%;
  max-height: 180px;
  object-fit: contain;
  margin-bottom: 15px;
}

.hero {
  background: url("images/hero.png") center/cover no-repeat;
}

body {
  background: radial-gradient(circle at top, #0b1630, #05070c);
  color: var(--white);
  overflow-x: hidden;
}

.footer {
  padding: 80px 8%;
  background: #05070c;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(200px,1fr));
  gap: 40px;
}

.footer h3, .footer h4 {
  color: var(--yellow);
  margin-bottom: 15px;
}

.product-image {
  width: 100%;
  border-radius: 14px;
  margin-bottom: 15px;
  box-shadow: 0 0 30px rgba(255,215,0,.25);
  transition: transform .4s ease;
}



.footer a {
  display: block;
  margin-bottom: 10px;
  color: #cfd6ff;
  cursor: pointer;
}

.footer a:hover {
  color: var(--yellow);
}

/* ================= ANIMATIONS ================= */

@keyframes fadeIn {
  from { opacity: 0 }
  to { opacity: 1 }
}

@keyframes slideUp {
  from { transform: translateY(40px); opacity: 0 }
  to { transform: translateY(0); opacity: 1 }
}

@keyframes slideLeft {
  from { transform: translateX(60px); opacity: 0 }
  to { transform: translateX(0); opacity: 1 }
}

@keyframes glowPulse {
  0% { box-shadow: 0 0 25px rgba(255,215,0,.3); }
  50% { box-shadow: 0 0 45px rgba(255,215,0,.7); }
  100% { box-shadow: 0 0 25px rgba(255,215,0,.3); }
}

/* ================= NAVBAR ================= */

.navbar {
  display: flex;
  justify-content: space-between;
  padding: 20px 40px;
  position: sticky;
  top: 0;
  backdrop-filter: blur(12px);
  animation: fadeIn .8s ease;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  font-size: 22px;
  color: var(--yellow);
}

.logo img {
  width: 28px;
}

.nav-links a {
  margin: 0 15px;
  color: #cfd6ff;
  text-decoration: none;
  transition: color .3s;
}

.nav-links a:hover {
  color: var(--yellow);
}

/* ================= BUTTONS ================= */

.btn {
  padding: 12px 22px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: transparent;
  color: white;
  cursor: pointer;
  transition: all .35s ease;
}

.btn.primary {
  background: linear-gradient(135deg, var(--yellow), var(--yellow-soft));
  color: black;
  font-weight: 700;
  box-shadow: 0 0 35px rgba(255,215,0,.6);
}

.btn:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 0 40px rgba(255,215,0,.7);
}

/* ================= HERO ================= */

.hero {
  min-height: 90vh;
  padding: 0 8%;
  display: flex;
  align-items: center;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  animation: slideUp 1s ease;
}

.hero-left h1 {
  font-size: 56px;
  font-weight: 900;
}

.hero-left span {
  color: var(--yellow);
  text-shadow: 0 0 20px rgba(255,215,0,.8);
}

.hero-left p {
  margin: 20px 0 30px;
  opacity: .85;
}

/* ================= MINI CHART ================= */

.hero-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: slideLeft 1.2s ease;
}

.mini-chart {
  width: 420px;
  height: 260px;
  padding: 20px;
  border-radius: 20px;
  background: var(--card);
  border: 1px solid var(--border);
  box-shadow: 0 0 45px rgba(255,215,0,.4);
  animation: glowPulse 3s infinite;
}

.mini-stats {
  display: flex;
  gap: 25px;
  margin-top: 20px;
}

.mini-stat {
  padding: 15px 25px;
  border: 2px solid var(--border);
  border-radius: 16px;
  box-shadow: 0 0 30px rgba(255,215,0,.5);
  text-align: center;
}

.mini-stat span {
  font-size: 28px;
  color: var(--yellow);
}

/* ================= FEATURES ================= */

.section {
  padding: 100px 8%;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(260px,1fr));
  gap: 35px;
}

.feature-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 30px;
  box-shadow: 0 0 40px rgba(255,215,0,.25);
  transition: all .4s ease;
  animation: fadeIn .8s ease;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 60px rgba(255,215,0,.6);
}

.feature-card img {
  width: 100%;
  border-radius: 18px;
  margin: 15px 0;
}

/* ================= PRODUCTS ================= */

.products {
  display: flex;
  justify-content: center;
  gap: 35px;
  margin: 80px auto;
  flex-wrap: wrap;
}

.product-card button:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 0 45px rgba(255,215,0,.9);
}

.product-card button {
  width: 100%;
  padding: 14px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: linear-gradient(
    135deg,
    var(--yellow),
    #ffea8a
  );
  color: #000;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  box-shadow: 0 0 30px rgba(255,215,0,.6);
  transition: all .35s ease;
}

.product-card {
  width: 320px;
  background: var(--card);
  border: 2px solid var(--border);
  border-radius: 22px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 0 45px rgba(255,215,0,.25);
  transition: all .4s ease;
}

.product-card:hover {
  transform: translateY(-10px) scale(1.04);
  box-shadow: 0 0 70px rgba(255,215,0,.7);
}

.price {
  font-size: 30px;
  font-weight: 700;
  color: var(--yellow);
  text-shadow: 0 0 15px rgba(255,215,0,.8);
  margin: 15px 0;
}

/* ================= MODALS (LOGIN / SIGNUP / INFO) ================= */

.modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.7);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn .4s ease;
}

.modal.hidden {
  display: none;
}

.modal-box {
  background: #0b1020;
  border: 2px solid var(--border);
  padding: 40px;
  border-radius: 22px;
  width: 420px;
  box-shadow: 0 0 60px rgba(255,215,0,.6);
  animation: slideUp .5s ease;
}

.modal-box input {
  width: 100%;
  padding: 14px;
  margin-bottom: 15px;
  background: #05070c;
  border: 1px solid var(--border);
  color: white;
  border-radius: 12px;
}

/* ================= CART ================= */

.cart {
  position: fixed;
  right: 25px;
  bottom: 25px;
  width: 300px;
  background: #0b0b0b;
  border: 2px solid var(--border);
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 0 60px rgba(255,215,0,.5);
  animation: slideUp .6s ease;
}

/* ================= FOOTER ================= */

.footer {
  padding: 60px 8%;
  border-top: 1px solid var(--border);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(200px,1fr));
  gap: 40px;
}

.mini-chart {
  display: block !important;
  min-height: 260px;
  width: 100%;
  background: linear-gradient(
    135deg,
    rgba(255,215,0,0.08),
    rgba(255,215,0,0.02)
  );
  border: 1px solid var(--border);
  box-shadow: 0 0 50px rgba(255,215,0,.35);
  animation: fadeSlideIn 0.8s ease forwards;
}

@keyframes fadeSlideIn {
  from {
    opacity: 0;
    transform: translateY(25px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeSlideOut {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(25px);
  }
}

.product-card,
.feature-card,
.mini-stat,
.cart {
  animation: fadeSlideIn .7s ease forwards;
}

body.modal-open .product-card {
  animation: fadeSlideOut .4s ease forwards;
}

.product-card {
  border: 1px solid var(--border);
  box-shadow: 0 0 40px rgba(255,215,0,.25);
}

.cart {
  border: 1px solid var(--border);
  box-shadow: 0 0 60px rgba(255,215,0,.45);
}

/* NAVBAR */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 50px;
  background: rgba(5,7,12,.8);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  font-size: 22px;
  color: var(--yellow);
}

.logo img {
  width: 30px;
  filter: drop-shadow(0 0 10px rgba(255,215,0,.6));
}

.nav-center a {
  margin: 0 15px;
  color: #cfd6ff;
  text-decoration: none;
  position: relative;
}

.nav-center a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0%;
  height: 2px;
  background: var(--yellow);
  transition: .3s;
}

.nav-center a:hover::after {
  width: 100%;
}

/* BUTTONS */
.btn {
  padding: 10px 22px;
  border-radius: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: .3s;
}

.btn.primary {
  background: linear-gradient(135deg, var(--yellow), #ffea8a);
  color: black;
  box-shadow: 0 0 25px rgba(255,215,0,.6);
  border: none;
}

.btn.primary:hover {
  transform: translateY(-2px);
}

.btn.ghost {
  background: transparent;
  border: 1px solid var(--border);
  color: white;
}

/* USER MENU */
.user-btn {
  background: transparent;
  border: 1px solid var(--border);
  padding: 10px 18px;
  border-radius: 12px;
  color: var(--yellow);
  cursor: pointer;
}

.user-dropdown {
  position: absolute;
  top: 65px;
  right: 50px;
  background: #0b1020;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 10px;
  animation: fadeSlide .3s ease;
}

.user-dropdown button {
  background: none;
  border: none;
  color: white;
  padding: 10px;
  width: 100%;
  text-align: left;
  cursor: pointer;
}

.user-dropdown button:hover {
  color: var(--yellow);
}

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

.payments {
  text-align: center;
  padding: 50px 0;
  border-top: 1px solid var(--border);
}

.payment-logos {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 20px;
}

.payment-logos img {
  height: 40px;
  opacity: .8;
  filter: drop-shadow(0 0 15px rgba(255,215,0,.4));
  transition: .3s;
}

.payment-logos img:hover {
  opacity: 1;
  transform: scale(1.05);
}

.product-img {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 20px;
  box-shadow: 0 0 30px rgba(255,215,0,.4);
}