/* ===== RESET & BASE ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ==============================
   🎯 SUPREME GLOBAL BACKGROUND
============================== */
body {
  font-family: 'Orbitron', sans-serif;
  background: 
    linear-gradient(rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.08)),
    url('assets/background.png') no-repeat center center fixed;
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-color: black; /* fallback if image fails */
  color: white;
  overflow-x: hidden;
  animation: pulseBackground 8s infinite alternate;
  scroll-behavior: smooth;
}


/* 🎯 Pulse Effect for Background */
@keyframes pulseBackground {
  0% { filter: brightness(1); }
  100% { filter: brightness(1.2); }
}
/* ==============================
   🎯 SUPREME NAVIGATION FINAL - LOGO LEFT + MOVING TABS CENTERED
============================== */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 30px;
  width: 100%;
  background: rgba(0, 0, 0, 0.85);
  position: fixed;
  top: 0;
  z-index: 999;
  backdrop-filter: blur(10px);
  box-shadow: 0 0 30px #FFD700, 0 0 50px #00f0ff;
}

/* 🎯 Logo on LEFT */
.nav-center {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  /* 👇 Add a left margin control */
  margin-left: 150px; /* Adjust this number to move logo right */
}

.nav-center img {
  width: 110px;
  height: auto;
  animation: spinLogo 20s linear infinite, pulseLogo 4s infinite alternate;
}

/* 🎯 Nav Tabs CENTERED with floating moving animation */
.nav-links {
  display: flex;
  gap: 30px;
  list-style: none;
  flex: 1;
  justify-content: center;
  animation: floatTabs 6s ease-in-out infinite;
}

@keyframes spinLogo {
  0% { transform: rotate(0deg);}
  100% { transform: rotate(360deg);}
}

@keyframes pulseLogo {
  0% { filter: drop-shadow(0 0 10px #FFD700); }
  100% { filter: drop-shadow(0 0 20px #00f0ff); }
}

/* 🎯 NAV BUTTONS are CENTERED now */
.nav-links {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 30px;
  list-style: none;
  animation: floatTabs 6s ease-in-out infinite;
}

.nav-links li a {
  background: linear-gradient(90deg, #FFD700, #00f0ff);
  color: black;
  font-weight: bold;
  padding: 10px 22px;
  text-decoration: none;
  font-size: 18px;
  border-radius: 30px;
  text-shadow: 0 0 10px #FFD700;
  box-shadow: 0 0 15px #FFD700, 0 0 25px #00f0ff;
  transition: all 0.4s ease;
  display: inline-block;
}

.nav-links li a:hover {
  background: linear-gradient(90deg, #00f0ff, #FFD700);
  color: black;
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 0 25px #00f0ff, 0 0 35px #FFD700;
  text-shadow: 0 0 20px #00f0ff, 0 0 30px #FFD700;
}

.nav-links li a:hover {
  color: #FFD700;
  text-shadow: 0 0 20px #FFD700, 0 0 30px #00f0ff;
}

/* -------------------------------
   ☰ SUPREME HAMBURGER MENU
-------------------------------- */
.hamburger {
  display: none;
  font-size: 2rem;
  cursor: pointer;

  /* 🔵 Neon pill shape */
  padding: 10px 16px;
  border-radius: 999px;

  /* 🌌 Glass neon background */
  background: linear-gradient(
    135deg,
    rgba(255, 215, 0, 0.35),
    rgba(0, 240, 255, 0.35)
  );
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  /* ✨ Glow effect */
  box-shadow:
    0 0 15px rgba(255, 215, 0, 0.7),
    0 0 30px rgba(0, 240, 255, 0.6),
    inset 0 0 12px rgba(255, 255, 255, 0.25);

  color: #000;
  font-weight: bold;

  transition: all 0.35s ease;
  animation: hamburgerPulse 3s infinite alternate;
}

/* 🔥 Hover */
.hamburger:hover {
  transform: scale(1.12) rotate(2deg);
  box-shadow:
    0 0 25px #FFD700,
    0 0 45px #00f0ff,
    inset 0 0 20px rgba(255,255,255,0.35);
}

/* ✨ Click feedback */
.hamburger:active {
  transform: scale(0.95);
}

/* 🌊 Subtle pulse */
@keyframes hamburgerPulse {
  from {
    box-shadow:
      0 0 12px rgba(255, 215, 0, 0.6),
      0 0 22px rgba(0, 240, 255, 0.4);
  }
  to {
    box-shadow:
      0 0 22px rgba(255, 215, 0, 0.9),
      0 0 38px rgba(0, 240, 255, 0.75);
  }
}

/* 📱 Mobile only */
@media (max-width: 768px) {
  .hamburger {
    display: block;
    position: relative;
    z-index: 1001;
  }
}


/* 🎯 Mobile Nav Toggle */
.nav-links.active {
  display: flex;
  flex-direction: column;
  background: rgba(0, 0, 0, 0.9);
  position: absolute;
  top: 100%;
  right: 30px;
  padding: 20px;
  border-radius: 12px;
}

/* ==============================
   🎯 SUPREME HERO HEADER
============================== */
.page-header, .hero-section {
  padding-top: 200px;
  padding-bottom: 60px;
  text-align: center;
}

.glow-title {
  font-size: 72px;
  color: #FFD700;
  text-shadow: 0 0 25px #FFD700, 0 0 35px #00f0ff;
  animation: glowPulse 3s infinite alternate;
}

@keyframes glowPulse {
  0% { text-shadow: 0 0 25px #FFD700; }
  100% { text-shadow: 0 0 35px #00f0ff, 0 0 45px #FFD700; }
}

.glow-subtext {
  font-size: 20px;
  margin-top: 15px;
  color: #ccc;
}

/* ==============================
   🎯 SUPREME GLOW BOXES
============================== */
.glow-box {
  background: rgba(0, 0, 0, 0.5);
  border: 2px solid #FFD700;
  box-shadow: 0 0 20px #FFD700, 0 0 30px #00f0ff;
  border-radius: 20px;
  padding: 40px 30px;
  margin: 30px auto;
  max-width: 800px;
  animation: floatBox 6s ease-in-out infinite;
  text-align: center; /* 🎯 CENTER EVERYTHING INSIDE */
}


@keyframes floatBox {
  0%, 100% { transform: translateY(0px);}
  50% { transform: translateY(-10px);}
}

.section-title {
  font-size: 30px;
  color: #FFD700;
  margin-bottom: 20px;
  text-shadow: 0 0 15px #FFD700;
}

/* ==============================
   🎯 SUPREME BUTTONS
============================== */
.glow-button {
  background: linear-gradient(90deg, #FFD700, #00f0ff);
  color: black;
  font-weight: bold;
  padding: 12px 30px;
  border: none;
  border-radius: 30px;
  font-size: 18px;
  margin-top: 15px;
  box-shadow: 0 0 20px #FFD700, 0 0 30px #00f0ff;
  cursor: pointer;
  transition: all 0.4s ease;
}

.glow-button:hover {
  transform: scale(1.1);
  box-shadow: 0 0 30px #00f0ff, 0 0 40px #FFD700;
}

/* ==============================
   🎯 SUPREME PRODUCT GRID
============================== */
.product-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  margin-top: 80px; /* Push down below nav cleanly */
}

.product-card {
  background: rgba(0,0,0,0.6);
  padding: 40px;
  border-radius: 15px;
  text-align: center;
  max-width: 350px;
  border: 1px solid #FFD700;
  box-shadow: 0 0 20px #00f0ff, 0 0 30px #FFD700;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.product-card img {
  width: 100%;
  height: auto;
  border-radius: 15px;
  margin-bottom: 35px;
}

.product-card h3 {
  font-size: 24px;
  margin-bottom: 8px;
  color: #FFD700;
  text-shadow: 0 0 10px #FFD700;
}

.product-card p {
  font-size: 16px;
  color: #ccc;
  margin-bottom: 25px; /* 👈 Proper breathing room above the Buy Now button */
}

.product-card button {
  margin-top: 10px;
  padding: 12px 30px;
  font-size: 18px;
  font-weight: bold;
  border: none;
  border-radius: 10px;
  background: linear-gradient(90deg, #FFD700, #00f0ff);
  color: black;
  cursor: pointer;
  box-shadow: 0 0 10px #FFD700, 0 0 20px #00f0ff;
  transition: all 0.4s ease;
}

.product-card button:hover {
  background: linear-gradient(90deg, #00f0ff, #FFD700);
  transform: scale(1.1);
  box-shadow: 0 0 20px #FFD700, 0 0 40px #00f0ff;
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 0 30px #FFD700, 0 0 40px #00f0ff;
}
.product-description {
  font-size: 16px;
  color: #ccc;
  margin-bottom: 15px;
}

.product-price {
  font-size: 20px;
  font-weight: bold;
  color: #FFD700;
  margin-bottom: 20px;
  text-shadow: 0 0 10px #FFD700;
}

/* 🌐 Supreme Footer for DDP Eyewear */
.footer {
  background: rgba(0, 0, 0, 0.9);
  padding: 1.5rem 1rem;
  text-align: center;
  border-top: 2px solid #FFD700;
  position: fixed;
  bottom: 0;
  width: 100%;
  box-shadow: 0 0 20px #FFD700, 0 0 35px #00f0ff;
  z-index: 9999;
}

/* 🔗 Footer Links and Socials */
.footer-links, .social-icons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 0.8rem;
}

/* 💛 Footer Links Style */
.footer-links a {
  color: #FFD700;
  text-decoration: none;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: #00f0ff;
  text-shadow: 0 0 12px #FFD700, 0 0 24px #00f0ff;
}

/* 🚀 Supreme Social Media Buttons */
.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  font-size: 1.5rem;
  margin: 0 10px;
  color: #00ffff;
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid #00ffff;
  border-radius: 50%;
  box-shadow: 0 0 15px #00ffff, 0 0 30px #FFD700;
  text-decoration: none;
  transition: all 0.4s ease;
  animation: spinPulse 8s linear infinite;
}

/* 🎯 Hover Effects Supreme */
.social-icons a:hover {
  background: linear-gradient(45deg, #FFD700, #00f0ff);
  color: black;
  transform: rotate(360deg) scale(1.3);
  box-shadow:
    0 0 30px #FFD700,
    0 0 60px #00f0ff,
    0 0 90px #FFD700,
    0 0 120px #00f0ff;
}

/* ✨ Footer Tagline */
.footer-tagline {
  font-size: 0.9rem;
  color: #ffffff;
  margin-top: 0.5rem;
}

/* ⬆️ Push Content Above Footer */
body::after {
  content: '';
  display: block;
  height: 200px; /* Footer safe spacing */
}

/* 🔁 Pulse Spin Animation */
@keyframes spinPulse {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}


/* ==============================
   🎯 RESPONSIVE SUPREME DESIGN
============================== */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  .hamburger {
    display: block;
    color: white;
  }
  .product-grid {
    flex-direction: column;
    align-items: center;
  }
}
/* ✨ Signup Section Supreme Glow */
#signup-section {
  margin-top: 80px;
}

.signup-title {
  font-size: 28px;
  color: #FFD700;
  text-shadow: 0 0 20px #FFD700, 0 0 30px #00f0ff;
  margin-bottom: 20px;
  text-align: center;
}

#signup-form {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 20px;
}

.form-flex input[type="email"] {
  padding: 12px 20px;
  border-radius: 30px;
  border: none;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  font-size: 16px;
  width: 280px;
  box-shadow: 0 0 15px #00f0ff;
  outline: none;
}

.form-flex button {
  background: linear-gradient(90deg, #FFD700, #00f0ff);
  color: black;
  font-weight: bold;
  padding: 12px 24px;
  border-radius: 30px;
  font-size: 18px;
  cursor: pointer;
  border: none;
  box-shadow: 0 0 20px #FFD700, 0 0 30px #00f0ff;
  transition: all 0.3s ease;
}

.form-flex button:hover {
  transform: scale(1.05);
  box-shadow: 0 0 30px #00f0ff, 0 0 40px #FFD700;
}

.signup-note {
  margin-top: 20px;
  color: #ccc;
  text-align: center;
  font-size: 14px;
}
/* 🎯 Supreme Memory Game Wrapper */
.memory-game-wrapper {
  margin-top: 80px;
  margin-bottom: 80px;
  text-align: center;
  position: relative;
  z-index: 1;
}

/* 🎯 Glow Box for Game */
.memory-game-section {
  background: rgba(0, 0, 0, 0.6);
  border: 2px solid #FFD700;
  box-shadow: 0 0 25px #FFD700, 0 0 35px #00f0ff;
  border-radius: 20px;
  padding: 40px 20px;
  max-width: 800px;
  margin: 0 auto;
  animation: floatBox 6s ease-in-out infinite;
}

/* ==============================
   🎯 SUPREME MEMORY GAME SECTION
============================== */

/* ✨ Game Title and Subtitle */
.game-title {
  font-size: 32px;
  margin-bottom: 10px;
  color: #FFD700;
  text-shadow: 0 0 15px #FFD700, 0 0 20px #00f0ff;
  text-align: center;
}

.game-subtitle {
  font-size: 18px;
  color: #ccc;
  margin-bottom: 20px;
  text-align: center;
}

/* 🎯 Restart Button Supreme */
.restart-btn {
  background: linear-gradient(90deg, #FFD700, #00f0ff);
  color: black;
  font-weight: bold;
  padding: 10px 25px;
  border-radius: 30px;
  border: none;
  margin-bottom: 30px;
  font-size: 18px;
  cursor: pointer;
  box-shadow: 0 0 20px #FFD700, 0 0 30px #00f0ff;
  transition: all 0.4s ease;
}

.restart-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 0 30px #00f0ff, 0 0 40px #FFD700;
}

/* 🎯 Memory Grid Supreme */
.memory-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  max-width: 600px;
  padding-bottom: 20px;
}

/* 🎯 Memory Cards Supreme */
.memory-card {
  width: 100px;
  height: 120px;
  perspective: 1000px;
  cursor: pointer;
}

.card-inner {
  width: 100%;
  height: 100%;
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.6s;
}

.memory-card.flipped .card-inner {
  transform: rotateY(180deg);
}

.card-front, .card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 12px #00f0ff, 0 0 18px #FFD700;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 36px;
  color: white;
}

.card-front {
  background: rgba(255, 255, 255, 0.15);
}

.card-front img {
  width: 70%;
  height: auto;
  border-radius: 8px;
}

.card-back {
  background: rgba(0, 0, 0, 0.5);
  transform: rotateY(180deg);
}

/* 🎯 Updated Local Win Popup – Shows Below Memory Grid */
.win-popup {
  display: none;
  margin-top: 30px;
  justify-content: center;
  align-items: center;
  z-index: 10;
}

.win-box {
  background: #FFD700;
  padding: 2.5rem;
  border-radius: 25px;
  text-align: center;
  box-shadow: 0 0 30px #FFD700, 0 0 60px #BA55D3;
  animation: pulseGlowBox 5s infinite alternate;
  max-width: 500px;
  margin: 0 auto;
}

.win-box h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: black;
}

/* ✅ Optional: Glow Animation */
@keyframes pulseGlowBox {
  0% {
    box-shadow: 0 0 15px #FFD700, 0 0 25px #BA55D3;
  }
  100% {
    box-shadow: 0 0 30px #FFD700, 0 0 60px #BA55D3;
  }
}

/* 🎯 Mobile Optimization — 3 in a row */
@media (max-width: 768px) {
  .memory-grid {
    grid-template-columns: repeat(3, 1fr);
    max-width: 95%;
    gap: 16px;
  }

  .memory-card {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
  }

  .game-title {
    font-size: 24px;
  }

  .game-subtitle {
    font-size: 14px;
  }

  .restart-btn {
    font-size: 16px;
    padding: 10px 20px;
  }
}

/* 🌌 Supreme Floating Items */
.floating-items {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
  z-index: 1;
}

/* ✨ Individual Floaters Supreme */
.float-item {
  position: absolute;
  opacity: 0.2;
  animation-name: floatSupreme;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

/* 🌀 Supreme Floating Animation */
@keyframes floatSupreme {
  0% {
    transform: translateY(0) translateX(0) rotate(0deg);
    opacity: 0.3;
  }
  50% {
    transform: translateY(-50vh) translateX(20vw) rotate(180deg);
    opacity: 0.5;
  }
  100% {
    transform: translateY(-120vh) translateX(-20vw) rotate(360deg);
    opacity: 0.3;
  }
}
/* 🎯 Navbar Floater with Trail Supreme */
.nav-floater {
  font-size: 40px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  animation: floatNav 6s ease-in-out infinite alternate;
  color: #FFD700;
  text-shadow: 0 0 10px #FFD700, 0 0 20px #00f0ff;
  opacity: 0.9;
  pointer-events: none;
  z-index: 10;
  
  /* 🌟 Trail Glow Effect */
  filter: drop-shadow(0 0 10px #FFD700) drop-shadow(0 0 20px #00f0ff);
  filter: drop-shadow(0 0 10px #FFD700) 
        drop-shadow(0 0 20px #FFD700) 
        drop-shadow(0 0 40px #00f0ff)
        drop-shadow(0 0 60px #00f0ff);
}


/* 🎯 Supreme Float Animation */
@keyframes floatNav {
  0% {
    left: 5%;
    transform: translateY(-50%) rotate(0deg);
  }
  50% {
    left: 90%;
    transform: translateY(-50%) rotate(360deg);
  }
  100% {
    left: 5%;
    transform: translateY(-50%) rotate(720deg);
  }
}
/* 🌠 Supreme Shooting Stars Background */
.shooting-stars {
  position: fixed;
  top: 0;
  left: -6;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
  pointer-events: none;
}

/* 🌟 Individual Shooting Star Supreme */
.shooting-star {
  position: absolute;
  width: 2px;
  height: 100px;
  background: linear-gradient(white, rgba(255,255,255,0));
  opacity: 0.7;
  transform: rotate(45deg);
  animation: shootingStarAnim 10s linear infinite;
}

/* 🌀 Supreme Smooth Shooting Animation */
@keyframes shootingStarAnim {
  0% {
    transform: translateX(0) translateY(0) rotate(45deg);
    opacity: 0.8;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    transform: translateX(-100vw) translateY(100vh) rotate(45deg);
    opacity: 0;
  }
}

/* 🌟 Center Stars Randomly Across Screen */
.shooting-star:nth-child(1) {
  top: 10%;
  left: 46%;
  animation-delay: 0s;
}
.shooting-star:nth-child(2) {
  top: 30%;
  left: 60%;
  animation-delay: 3s;
}
.shooting-star:nth-child(3) {
  top: 50%;
  left: 40%;
  animation-delay: 6s;
}
.shooting-star:nth-child(4) {
  top: 70%;
  left: 55%;
  animation-delay: 9s;
}
.shooting-star:nth-child(5) {
  top: 90%;
  left: 45%;
  animation-delay: 12s;
}
/* 💎 Supreme Contact Section */
.contact-section {
  text-align: center;
  margin-top: 50px;
}

.contact-section .section-title {
  font-size: 2rem;
  margin-bottom: 10px;
  color: #FFD700;
  text-shadow: 0 0 10px #FFD700, 0 0 20px #00f0ff;
}

.contact-section .section-subtext {
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: #ccc;
}

/* 🎯 Supreme Contact Form */
.contact-form {
  max-width: 600px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 20px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 15px;
  border: none;
  border-radius: 12px;
  background: rgba(255,255,255,0.05);
  color: white;
  font-size: 1rem;
  box-shadow: 0 0 10px #00f0ff;
  outline: none;
  resize: none;
  transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  box-shadow: 0 0 15px #FFD700;
}

/* 🎯 Supreme Popup Success Box */
.popup-message {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.85);
  z-index: 9999;
  justify-content: center;
  align-items: center;
}

.popup-box {
  background: rgba(0, 0, 0, 0.9);
  padding: 30px 40px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 0 20px #00f0ff, 0 0 30px #FFD700;
}

.popup-box h3 {
  color: #FFD700;
  margin-bottom: 20px;
  text-shadow: 0 0 10px #FFD700;
}
.glow-list {
  list-style: none;
  padding-left: 0;
  margin-top: 15px;
}

.glow-list li {
  margin-bottom: 10px;
  font-size: 16px;
  color: #FFD700;
  text-shadow: 0 0 5px #FFD700, 0 0 10px #00f0ff;
}
/* ==============================
   🎯 DDP NEWS PAGE SECTION
============================== */
.news-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  margin-top: 40px;
}

.news-card {
  background: rgba(0,0,0,0.7);
  padding: 25px;
  border-radius: 12px;
  text-align: center;
  width: 300px;
  box-shadow: 0 0 15px #00f0ff, 0 0 25px #FFD700;
  transition: transform 0.3s, box-shadow 0.3s;
}

.news-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #FFD700;
  text-shadow: 0 0 8px #FFD700;
}

.news-card p {
  font-size: 14px;
  color: #ccc;
  margin-bottom: 15px;
}

.news-card a {
  display: inline-block;
  padding: 8px 20px;
  background: linear-gradient(90deg, #FFD700, #00f0ff);
  color: black;
  border-radius: 8px;
  font-weight: bold;
  text-decoration: none;
  transition: background 0.3s;
}

.news-card a:hover {
  background: linear-gradient(90deg, #00f0ff, #FFD700);
}

/* ✨ Fade Animation for Cards */
@keyframes animated-fade {
  0% { opacity: 0; transform: translateY(20px);}
  100% { opacity: 1; transform: translateY(0);}
}

.animated-fade {
  animation: animated-fade 1.2s ease forwards;
}
/* ==============================
   🎯 DDP Supreme Logo Animations
============================== */
.logo-glow-spin {
  width: 110px;
  height: auto;
  animation: spinLogo 20s linear infinite, pulseLogo 4s infinite alternate;
  filter: drop-shadow(0 0 10px #FFD700) drop-shadow(0 0 20px #00f0ff);
}

/* 🌀 Logo Spin Animation */
@keyframes spinLogo {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* ✨ Logo Pulse Glow Animation */
@keyframes pulseLogo {
  0% { filter: drop-shadow(0 0 10px #FFD700); }
  100% { filter: drop-shadow(0 0 20px #00f0ff); }
}
/* ==============================
   🎯 SUPREME PREVIEW COLLAGE SECTION
============================== */
.preview-collage-grid {
  display: flex;
  flex-direction: row;       /* ⭐ Forces left-to-right layout */
  flex-wrap: nowrap;         /* ⭐ Keeps them side-by-side */
  justify-content: flex-start; /* ⭐ Aligns items to the left */
  align-items: flex-start;
  gap: 40px;
  margin-top: 30px;
  overflow-x: auto;          /* ⭐ Prevents overflow on smaller screens */
  padding-bottom: 10px;
}

/* 💎 Preview Cards */
.preview-card {
  background: rgba(0,0,0,0.6);
  border: 2px solid #FFD700;
  box-shadow: 0 0 20px #00f0ff, 0 0 30px #FFD700;
  border-radius: 20px;
  padding: 30px;
  width: 300px;              /* ⭐ Ensures consistent size */
  flex-shrink: 0;            /* ⭐ Prevents cards from shrinking in flex */
  text-align: center;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  animation: floatBox 6s ease-in-out infinite;
}

.preview-card img {
  width: 100%;
  height: auto;
  border-radius: 15px;
  margin-bottom: 20px;
}

.preview-card h3 {
  font-size: 24px;
  color: #FFD700;
  margin-bottom: 10px;
  text-shadow: 0 0 10px #FFD700;
}

.preview-card p {
  font-size: 16px;
  color: #ccc;
  margin-bottom: 20px;
}

.preview-card a.glow-button {
  margin-top: 10px;
}

.preview-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 0 30px #FFD700, 0 0 40px #00f0ff;
}

/* ==============================
   🎯 SUPREME INVENTORY DASHBOARD STYLING
============================== */

.inventory-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
  margin-top: 30px;
}

.inventory-item {
  background: rgba(0, 0, 0, 0.6);
  border: 2px solid #FFD700;
  border-radius: 15px;
  padding: 20px;
  min-width: 250px;
  text-align: center;
  box-shadow: 0 0 15px #FFD700, 0 0 20px #00f0ff;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.inventory-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 25px #FFD700, 0 0 35px #00f0ff;
}

.inventory-item label {
  display: block;
  font-size: 18px;
  color: #FFD700;
  margin-bottom: 10px;
  text-shadow: 0 0 10px #FFD700, 0 0 20px #00f0ff;
}

.inventory-item input[type="number"] {
  width: 80px;
  padding: 10px;
  font-size: 16px;
  border: none;
  border-radius: 10px;
  text-align: center;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  box-shadow: 0 0 10px #00f0ff;
  outline: none;
  transition: all 0.3s ease;
}

.inventory-item input[type="number"]:focus {
  box-shadow: 0 0 15px #FFD700, 0 0 25px #00f0ff;
}
/* ==============================
   🎯 SUPREME INVENTORY DASHBOARD STYLING
============================== */

.inventory-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
  margin-top: 30px;
}

.inventory-item {
  background: rgba(0, 0, 0, 0.6);
  border: 2px solid #FFD700;
  border-radius: 15px;
  padding: 20px;
  min-width: 250px;
  text-align: center;
  box-shadow: 0 0 15px #FFD700, 0 0 20px #00f0ff;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.inventory-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 25px #FFD700, 0 0 35px #00f0ff;
}

.inventory-item label {
  display: block;
  font-size: 18px;
  color: #FFD700;
  margin-bottom: 10px;
  text-shadow: 0 0 10px #FFD700, 0 0 20px #00f0ff;
}

.inventory-item input[type="number"] {
  width: 80px;
  padding: 10px;
  font-size: 16px;
  border: none;
  border-radius: 10px;
  text-align: center;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  box-shadow: 0 0 10px #00f0ff;
  outline: none;
  transition: all 0.3s ease;
}

.inventory-item input[type="number"]:focus {
  box-shadow: 0 0 15px #FFD700, 0 0 25px #00f0ff;
}
/* 🎯 Supreme Floating Models Setup */
.floating-model {
  position: fixed;
  top: 300px; /* 🎯 Distance from top navbar - adjust if needed */
  z-index: 5;
  pointer-events: none;
}

/* 🎯 Right Model */
.right-model {
  right: 30px;
}

/* 🎯 Left Model */
.left-model {
  left: 30px;
}

/* 🎯 Glowing, Floating, and Pulsing Models */
.glow-float-pulse {
  width: 250px; /* Adjust the width as needed */
  height: auto;
  animation: pulseGlow 3s infinite alternate, floatModel 6s ease-in-out infinite;
  filter: drop-shadow(0 0 15px #FFD700) drop-shadow(0 0 25px #00f0ff);
}

/* 🎯 Floating Animation */
@keyframes floatModel {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-15px); }
}

/* 🎯 Glow Pulse */
@keyframes pulseGlow {
  0% { filter: drop-shadow(0 0 15px #FFD700) drop-shadow(0 0 25px #00f0ff); }
  100% { filter: drop-shadow(0 0 25px #00f0ff) drop-shadow(0 0 35px #FFD700); }
}
/* 🌟 Supreme Irena Video Container */
.irena-video-container {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

/* 🎥 Always Maintain 16:9 Aspect Ratio */
.irena-video-container video {
  width: 100%;
  max-width: 900px; /* you can adjust this */
  
  aspect-ratio: 16 / 9; /* 🔥 Forces perfect 16:9 */
  
  height: auto;
  border-radius: 20px;
  box-shadow: 0 0 25px #FFD700, 0 0 35px #00f0ff;
  animation: floatBox 6s ease-in-out infinite, pulseGlow 5s infinite alternate;
  object-fit: cover; /* fills 16:9 area beautifully */
}

@media (max-width: 768px) {
  .floating-model img.glow-float-pulse {
    opacity: 0.2;
    filter: drop-shadow(0 0 5px #FFD700) drop-shadow(0 0 10px #00f0ff);
    animation: pulseGlow 3s infinite alternate, floatModel 6s ease-in-out infinite;
  }
}
.coming-soon-grid .coming-soon {
  opacity: 0.7;
  pointer-events: none;
  position: relative;
}

.coming-soon-label {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: linear-gradient(to right, #ff00cc, #3333ff);
  color: white;
  font-weight: bold;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.85rem;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.4);
  animation: pulseGlow 2s infinite alternate;
}

@keyframes pulseGlow {
  from {
    transform: scale(1);
    opacity: 0.9;
  }
  to {
    transform: scale(1.05);
    opacity: 1;
  }
}
.center-content {
  text-align: center;
  margin-top: 20px;
}
.supreme-preview-button {
  display: inline-block;
  background: linear-gradient(90deg, #FFD700, #FF8C00);
  color: #000;
  font-weight: bold;
  font-size: 1.1rem;
  padding: 12px 24px;
  border-radius: 50px;
  box-shadow: 0 0 20px #FFD700, 0 0 40px #FF8C00;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
  animation: pulseButton 2s infinite alternate;
}

.supreme-preview-button:hover {
  transform: scale(1.05);
  background: linear-gradient(90deg, #FF8C00, #FFD700);
  box-shadow: 0 0 30px #FF8C00, 0 0 60px #FFD700;
}

@keyframes pulseButton {
  from {
    box-shadow: 0 0 15px #FFD700, 0 0 25px #FF8C00;
  }
  to {
    box-shadow: 0 0 30px #FFD700, 0 0 60px #FF8C00;
  }
}
@media screen and (max-width: 768px) {
  .floating-model {
    display: none !important;
  }
}
/* 🛍️ CART STYLES — Centered Supreme Layout */
.cart-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  margin: 20px auto;
  text-align: center;
  width: 90%;
  max-width: 700px;
}

.cart-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 60px;
  align-items: center;
  justify-items: center;
  background: rgba(255, 255, 255, 0.08);
  padding: 14px;
  border-radius: 12px;
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.2);
  width: 100%;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cart-row:hover {
  transform: scale(1.02);
  box-shadow: 0 0 16px rgba(0, 242, 255, 0.4);
}

.cart-item-name {
  font-weight: bold;
  color: #fff;
  text-align: center;
}

.cart-item-qty input {
  width: 60px;
  text-align: center;
  border-radius: 6px;
  border: none;
  padding: 6px;
  font-weight: bold;
  background: rgba(255,255,255,0.15);
  color: #fff;
}

.cart-item-price,
.cart-item-total {
  color: #00f2ff;
  font-weight: bold;
  text-align: center;
}

.cart-remove {
  background: none;
  border: none;
  color: #ff5555;
  cursor: pointer;
  font-size: 20px;
  transition: transform 0.2s ease, color 0.2s ease;
}

.cart-remove:hover {
  transform: scale(1.2);
  color: #ff8888;
}

.cart-summary {
  margin-top: 25px;
  text-align: center;
  color: #fff;
}

.cart-summary h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.cart-buttons {
  margin-top: 14px;
  display: flex;
  justify-content: center;
  gap: 12px;
}

.glow-button.danger {
  background: linear-gradient(90deg, #ff0055, #ff6600);
  color: #fff;
  font-weight: bold;
  transition: box-shadow 0.3s ease, transform 0.2s ease;
}

.glow-button.danger:hover {
  box-shadow: 0 0 14px #ff6600;
  transform: scale(1.05);
}

.glow-button {
  background: linear-gradient(90deg, #00f2ff, #0077ff);
  border: none;
  color: #fff;
  font-weight: bold;
  padding: 10px 20px;
  border-radius: 10px;
  cursor: pointer;
  transition: box-shadow 0.3s ease, transform 0.2s ease;
}

.glow-button:hover {
  box-shadow: 0 0 14px #00f2ff;
  transform: scale(1.05);
}
/* 💬 Overlay — Fullscreen Clickable Layer */
.popup-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  display: none;
  justify-content: center;
  align-items: center;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(5px);
  z-index: 9999; /* very important */
  opacity: 0;
  transition: opacity 0.3s ease;
}

/* ✨ Popup Box */
.popup-box {
  background: radial-gradient(circle at top left, #111, #000);
  border: 2px solid #00f2ff;
  border-radius: 16px;
  box-shadow: 0 0 25px #00f2ff;
  text-align: center;
  padding: 30px 40px;
  color: #fff;
  font-size: 1.2rem;
  animation: popUp 0.35s ease;
}

.popup-box p {
  margin-bottom: 15px;
  font-weight: bold;
  letter-spacing: 1px;
}

/* 🌟 Button */
.popup-button {
  background: linear-gradient(90deg, #00f2ff, #0077ff);
  border: none;
  color: #fff;
  font-weight: bold;
  padding: 10px 20px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.25s ease;
}

.popup-button:hover {
  box-shadow: 0 0 14px #00f2ff;
  transform: scale(1.05);
}

/* 🎞️ Animations */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes popUp {
  0% { transform: scale(0.8); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}
/* 🌟 SUPREME POPUP STYLES */
.ddp-popup {
  position: fixed;
  bottom: -100px; /* hidden by default */
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.85);
  padding: 20px 40px;
  border-radius: 14px;
  box-shadow: 0 0 25px #00f0ff, 0 0 45px #FFD700;
  border: 2px solid #FFD700;
  z-index: 9999;
  opacity: 0;
  transition: all 0.5s ease;
}

.ddp-popup.show {
  bottom: 40px;
  opacity: 1;
}

.ddp-popup-inner p {
  color: #fff;
  font-size: 1.2rem;
  font-weight: bold;
  text-shadow: 0 0 10px #FFD700, 0 0 15px #00f0ff;
  letter-spacing: 1px;
}
