/* ---------------------------------------------------
   🌐 SMOOTHFIT SUPREME GLOWING STYLESHEET
--------------------------------------------------- */

@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@500;700&display=swap');

:root {
  --glow-blue: #00f0ff;
  --glow-pink: #ff00f7;
  --bg-dark: #05010a;
  --font-main: 'Orbitron', sans-serif;
  --glow-radius: 30px;
}

body {
  margin: 0;
  padding: 0;
  background: url('assets/background.png') no-repeat center center fixed;
  background-size: cover;
  font-family: var(--font-main);
  color: white;
  overflow-x: hidden;
  position: relative;
}

/* Shooting Stars */
.shooting-star {
  position: absolute;
  top: -10px;
  width: 2px;
  height: 100px;
  background: linear-gradient(var(--glow-blue), transparent);
  animation: fall linear infinite;
  z-index: 0;
}

@keyframes fall {
  to {
    transform: translateY(120vh);
    opacity: 0;
  }
}

/* Glowing Navigation */
.glow-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  background: rgba(0, 0, 0, 0.85);
  box-shadow: 0 0 20px var(--glow-blue);
  z-index: 10;
  position: relative;
  gap: 50px;
  flex-wrap: wrap;
}

.logo-spin {
  width: 100px;
  height: 100px;
  margin-right: 20px;
  animation: spinGlow 15s linear infinite;
  filter: drop-shadow(0 0 15px var(--glow-pink));
}

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

.nav-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.glow-btn {
  padding: 12px 24px;
  border: 2px solid var(--glow-blue);
  background: rgba(0, 0, 0, 0.5);
  color: white;
  border-radius: 12px;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 600;
  box-shadow: 0 0 15px var(--glow-pink), 0 0 25px var(--glow-blue);
  transition: all 0.3s ease-in-out;
  animation: pulseGlow 2s infinite;
}

.glow-btn:hover {
  transform: scale(1.1);
  background: var(--glow-blue);
  color: #000;
  box-shadow: 0 0 35px var(--glow-pink), 0 0 60px var(--glow-blue);
}

@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 0 15px var(--glow-blue); }
  50% { box-shadow: 0 0 35px var(--glow-pink); }
}
/* 🌟 Base Nav Container */
.glow-nav {
  display: flex;
  align-items: center;
  justify-content: flex-start; /* Align everything left */
  background: #000;
  padding: 40px 30px;
  box-shadow: 0 0 20px #00ffe0, 0 0 40px #ff00f7;
  position: relative;
  z-index: 999;
  gap: 40px; /* Space between logo and nav */
}

.desktop-nav {
  display: flex;
  gap: 25px;
  position: relative;
  left: 200px; /* 👈 shift the nav group left */
}

.logo-spin {
  width: 120px;              /* Manually increased from 100px */
  height: auto;              /* Keeps it evenly scaled */
  animation: spinLogo 25s linear infinite;
  margin-left: 60px;         /* Keeps manual rightward push */
}


/* 🧨 Mobile Nav (Hidden by Default) */
.mobile-nav {
  display: none;
}

/* 🔘 Nav Buttons */
.glow-btn {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  text-shadow: 0 0 8px #00ffe0;
  transition: all 0.3s ease;
}

.glow-btn:hover {
  color: #ff00f7;
  transform: scale(1.1);
}

/* 🍔 Hamburger (Hidden on Desktop) */
.hamburger {
  display: none;
  font-size: 2rem;
  color: #fff;
  cursor: pointer;
  text-shadow: 0 0 8px #ff00f7;
}

/* 📱 Mobile View */
@media (max-width: 768px) {
  .desktop-nav {
    display: none;
  }

  .hamburger {
    display: block;
  }

  .mobile-nav {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 80px;
    right: 30px;
    background: #111;
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 0 30px #00ffe0, 0 0 40px #ff00f7;
  }

  .mobile-nav.active {
    display: flex;
  }
}

/* 🎡 Logo Animation */
@keyframes spinLogo {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
/* 🚍 Supreme Animated Bus Moving Left to Right */
.animated-bus {
  position: fixed;
  bottom: 620px;
  left: -400px;
  width: 300px;
  z-index: 999;
  pointer-events: none;
  animation: busMove 25s linear infinite;
  filter: drop-shadow(0 0 10px #00ffe0) drop-shadow(0 0 25px #ff00ff);
}

@keyframes busMove {
  0% {
    left: -400px;
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-5px) scale(1.03);
  }
  100% {
    left: 110%;
    transform: translateY(0) scale(1);
  }
}
/* Hero Section */
.hero-section {
  text-align: center;
  margin-top: 50px;
  padding: 40px;
  background: rgba(0, 0, 0, 0.4);
  border-radius: var(--glow-radius);
  box-shadow: 0 0 30px var(--glow-blue), 0 0 60px var(--glow-pink);
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  backdrop-filter: blur(10px);
}

.hero-title {
  font-size: 3rem;
  text-shadow: 0 0 10px var(--glow-pink);
}

.hero-subtitle {
  font-size: 1.3rem;
  margin-top: 10px;
  text-shadow: 0 0 8px var(--glow-blue);
}

/* Glowing Container Section */
.centered-section {
  text-align: center;
  margin: 50px auto;
  max-width: 900px;
  background: rgba(0, 0, 0, 0.4);
  padding: 30px;
  border-radius: var(--glow-radius);
  box-shadow: 0 0 30px var(--glow-blue), 0 0 50px var(--glow-pink);
  backdrop-filter: blur(8px);
}

/* Forms */
.email-form input,
.contact-form input,
.contact-form textarea {
  display: block;
  margin: 15px auto;
  padding: 12px;
  width: 80%;
  border-radius: 10px;
  border: 1px solid var(--glow-blue);
  background: #111;
  color: white;
  box-shadow: 0 0 15px var(--glow-pink);
}

textarea {
  height: 120px;
  resize: vertical;
}

/* Memory Game */
.memory-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  margin-top: 30px;
  justify-content: center;
}

.memory-card {
  width: 100px;
  height: 120px;
  perspective: 1000px;
  cursor: pointer;
}

.card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  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;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000;
  box-shadow: 0 0 12px var(--glow-blue);
}

.card-back {
  transform: rotateY(180deg);
  font-size: 2rem;
  color: var(--glow-pink);
}

.card-front-img {
  width: 80%;
  filter: drop-shadow(0 0 10px var(--glow-blue));
}

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

.win-box, .popup-content {
  background: #111;
  padding: 40px;
  border-radius: var(--glow-radius);
  box-shadow: 0 0 30px var(--glow-pink), 0 0 50px var(--glow-blue);
  text-align: center;
}

/* Product Grid */
.product-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.product-card {
  background: rgba(0, 0, 0, 0.7);
  padding: 20px;
  border-radius: 20px;
  box-shadow: 0 0 25px var(--glow-blue);
  width: 280px;
  text-align: center;
}

.product-card img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 0 10px var(--glow-pink);
  margin-bottom: 15px;
}
.product-options {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
  margin-bottom: 10px;
}

.option-select {
  padding: 8px 10px;
  font-size: 1rem;
  border: 2px solid #00ffe0;
  border-radius: 10px;
  background-color: #000814;
  color: #ffffff;
  box-shadow: 0 0 10px rgba(0, 255, 224, 0.6), 0 0 5px rgba(0, 255, 224, 0.4) inset;
  font-family: 'Orbitron', sans-serif;
  outline: none;
  transition: all 0.3s ease-in-out;
}

/* Add hover/focus effects if desired */
.option-select:focus {
  box-shadow: 0 0 20px rgba(0, 255, 224, 0.9), 0 0 10px rgba(0, 255, 224, 0.6) inset;
  border-color: #00ffe0;
}

/* Footer is already styled in your shared CSS and included globally */
/* 🌟 SMOOTHFIT NATION - Supreme Footer */
.site-footer {
  background-color: rgba(0, 0, 0, 0.9);
  padding: 30px 20px;
  color: white;
  text-align: center;
  border-top: 3px solid #00f0ff;
  box-shadow: 0 0 30px #ff00f7, 0 0 60px #00f0ff;
  margin-top: auto;
  z-index: 100;
  position: relative;
  animation: glowBorder 6s infinite alternate;
}

@keyframes glowBorder {
  0% { border-top-color: #00f0ff; box-shadow: 0 0 15px #ff00f7; }
  50% { border-top-color: #ff00f7; box-shadow: 0 0 30px #00f0ff; }
  100% { border-top-color: #00f0ff; box-shadow: 0 0 15px #ff00f7; }
}

.footer-container {
  max-width: 1080px;
  margin: 0 auto;
}

.footer-links {
  margin-bottom: 12px;
  font-size: 16px;
  letter-spacing: 0.5px;
}

.footer-links a {
  color: #00f0ff;
  text-decoration: none;
  margin: 0 10px;
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

.footer-links a:hover {
  color: #ff00f7;
  text-shadow: 0 0 8px #ff00f7;
}

/* 🔥 Supreme Social Media Glow Icons */
.social-icons {
  margin: 20px 0;
}

.social-glow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 55px;
  height: 55px;
  margin: 0 12px;
  border: 2px solid #00f0ff;
  border-radius: 50%;
  font-size: 24px;
  color: #f44ff4;
  text-decoration: none;
  background: rgba(0, 0, 0, 0.5);
  box-shadow: 0 0 15px #00f0ff, 0 0 25px #ff00f7;
  transition: all 0.3s ease-in-out;
  animation: pulseGlow 3s infinite ease-in-out;
}

.social-glow:hover {
  background: #00f0ff;
  color: #000;
  transform: scale(1.2) rotate(6deg);
  box-shadow: 0 0 30px #ff00f7, 0 0 50px #00f0ff;
}

/* 💬 Footer Note */
.footer-credit {
  margin-top: 20px;
  font-size: 15px;
  color: #dddddd;
  text-shadow: 0 0 8px #00f0ff;
  font-weight: 400;
}
/* === 🚀 SMOOTHFIT SUPREME MEMORY GAME === */
.memory-game-section {
  text-align: center;
  padding: 40px 15px;
  margin: 50px auto;
  max-width: 750px;
  background: rgba(0, 0, 0, 0.7);
  box-shadow: 0 0 40px #00f0ff, 0 0 60px #ff00f7;
  border-radius: 18px;
  animation: pulseHero 10s infinite;
  backdrop-filter: blur(10px);
}

.game-title {
  font-size: 3rem;
  text-shadow: 0 0 12px #00f0ff, 0 0 30px #ff00f7;
  margin-bottom: 10px;
  letter-spacing: 1px;
}

.game-subtitle {
  font-size: 1.4rem;
  color: #ddd;
  text-shadow: 0 0 6px #ff00f7;
  margin-bottom: 30px;
}

.restart-btn {
  background: linear-gradient(135deg, #00f0ff, #ff00f7);
  border: none;
  padding: 14px 30px;
  color: white;
  font-weight: 700;
  font-size: 1.1rem;
  border-radius: 24px;
  margin-bottom: 30px;
  box-shadow: 0 0 20px #00f0ff, 0 0 30px #ff00f7;
  cursor: pointer;
  transition: 0.3s ease-in-out;
}

.restart-btn:hover {
  transform: scale(1.12);
  box-shadow: 0 0 30px #ff00f7, 0 0 55px #00f0ff;
}

.memory-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  justify-content: center;
  align-items: center;
  max-width: 500px;
  margin: 0 auto;
}

.memory-card {
  width: 100px;
  height: 130px;
  perspective: 1000px;
  cursor: pointer;
}

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

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

.card-front,
.card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  backface-visibility: hidden;
  box-shadow: 0 0 15px #00f0ff, 0 0 30px #ff00f7;
  transition: all 0.4s ease;
}

.card-front {
  background: rgba(0, 0, 0, 0.5);
}

.card-front-img {
  width: 65px;
  height: 65px;
  animation: spinPulse 16s infinite linear;
}

.card-back {
  background: linear-gradient(145deg, #ff00f7, #00f0ff);
  color: #fff;
  transform: rotateY(180deg);
  font-weight: bold;
  text-shadow: 0 0 6px #000;
}

/* 🏆 Win Popup */
.win-popup {
  display: none; /* default hidden */
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0,0,0,0.9);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}


.win-box {
  background: #111;
  padding: 45px;
  border: 2px solid #00f0ff;
  border-radius: 24px;
  text-align: center;
  box-shadow: 0 0 40px #00f0ff, 0 0 60px #ff00f7;
  color: #fff;
}

/* 🔄 Animations */
@keyframes spinPulse {
  0% { transform: rotate(0deg) scale(1); }
  50% { transform: rotate(180deg) scale(1.1); }
  100% { transform: rotate(360deg) scale(1); }
}

@keyframes pulseHero {
  0%, 100% { box-shadow: 0 0 40px #00f0ff, 0 0 60px #ff00f7; }
  50% { box-shadow: 0 0 60px #ff00f7, 0 0 90px #00f0ff; }
}

/* 📱 Responsive Glow Mode */
@media (max-width: 768px) {
  .memory-game-section {
    max-width: 95%;
    padding: 25px 15px;
    margin: 30px auto;
  }

  .game-title {
    font-size: 2.2rem;
  }

  .game-subtitle {
    font-size: 1.1rem;
  }

  .memory-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    max-width: 300px;
  }

  .memory-card {
    width: 85px;
    height: 110px;
  }

  .card-front-img {
    width: 50px;
    height: 50px;
  }

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

  .win-box {
    padding: 30px;
    font-size: 1rem;
  }
}
.popup-message {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0,0,0,0.85);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.popup-content {
  background: #111;
  padding: 40px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 0 30px #00f0ff, 0 0 50px #ff00f7;
  color: white;
}
/* 💬 SmoothFit Popup Styles */
.popup-message {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 20px;
  box-sizing: border-box;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.popup-inner {
  background: #111;
  padding: 40px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 0 30px #00f0ff, 0 0 50px #ff00f7;
  color: white;
  max-width: 500px;
  width: 100%;
}
/* 📱🔥 Supreme Mobile Alignment for Memory Game */
@media (max-width: 768px) {
  .memory-game-section {
    max-width: 100%;
    padding: 30px 15px;
    margin: 40px 10px;
    border-radius: 16px;
  }

  .game-title {
    font-size: 2.1rem;
    margin-bottom: 8px;
    line-height: 1.2;
  }

  .game-subtitle {
    font-size: 1rem;
    padding: 0 10px;
    margin-bottom: 20px;
  }

  .restart-btn {
    padding: 10px 22px;
    font-size: 1rem;
    border-radius: 20px;
    margin-bottom: 25px;
  }

  .memory-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    max-width: 260px;
    margin: 0 auto;
  }

  .memory-card {
    width: 80px;
    height: 105px;
  }

  .card-front-img {
    width: 45px;
    height: 45px;
  }

  .win-box {
    padding: 25px;
    font-size: 0.95rem;
    border-radius: 18px;
  }

  .popup-content {
    padding: 30px;
    font-size: 0.95rem;
    border-radius: 18px;
  }
}
body {
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
}

.centered-section {
  padding-left: 10px;
  padding-right: 10px;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}


/* 🔻 Fade-Out Animation */
.popup-message.fade-out {
  opacity: 0;
  transform: scale(0.96);
  pointer-events: none;
}
/* Add this to styles.css if not already included */
.popup-message.fade-out {
  opacity: 0;
  transform: scale(0.96);
  pointer-events: none;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

/* 💥 SmoothFit Mouse Trail */
#trail-container {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9999;
}

.trail-dot {
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: radial-gradient(circle, #00ffe0, #ff00f7);
  opacity: 0.8;
  box-shadow: 0 0 10px #00ffe0, 0 0 20px #ff00f7;
  animation: fadeOut 0.8s forwards;
}

@keyframes fadeOut {
  to {
    opacity: 0;
    transform: scale(0.2);
  }
}
.floating-avatar-container {
  position: fixed;
  top: 225px;
  left: 30px;
  width: 200px;
  z-index: 999;
  text-align: center;
  animation: floatAvatar 6s ease-in-out infinite;
}

.floating-avatar {
  width: 100%;
  max-width: 240px;
  filter: drop-shadow(0 0 20px #ff00f7) brightness(1.1);
  animation: pulseGlow 2s infinite alternate;
}

.quote-rotator-glow {
  margin-top: 15px;
  color: #00ffe0;
  font-size: 1.1rem;
  font-family: 'Orbitron', sans-serif;
  text-shadow: 0 0 10px #ff00f7, 0 0 20px #00ffe0;
  animation: flicker 3s infinite ease-in-out;
}

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

@keyframes pulseGlow {
  from { opacity: 0.8; filter: drop-shadow(0 0 8px #00ffe0); }
  to { opacity: 1; filter: drop-shadow(0 0 25px #ff00f7); }
}

@keyframes flicker {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.6; }
}
/* 🔒 HIDE on screens narrower than 768px */
@media screen and (max-width: 767px) {
  .floating-avatar-container {
    display: none;
  }
}
/* 💡 SmoothFit FAQ Styling */
.faq-section {
  margin-top: 60px;
  background: rgba(0, 0, 0, 0.85);
  border: 2px solid #00ffe0;
  border-radius: 30px;
  padding: 40px;
  box-shadow: 0 0 25px #00ffe0, 0 0 50px #ff00f7;
  color: #fff;
}

.faq-section h2 {
  font-size: 2.2rem;
  margin-bottom: 30px;
  color: #00ffe0;
  text-shadow: 0 0 10px #00ffe0;
}

.faq-item {
  margin-bottom: 25px;
}

.faq-question {
  font-size: 1.3rem;
  font-weight: bold;
  cursor: pointer;
  transition: color 0.3s ease;
  color: #fff;
}

.faq-question:hover {
  color: #ff00f7;
  text-shadow: 0 0 8px #ff00f7;
}

.faq-answer {
  margin-top: 10px;
  font-size: 1rem;
  line-height: 1.6;
  color: #ccc;
}
  .faq-button-box {
    text-align: center;
    margin: 60px auto 40px;
  }

  .glow-faq-btn {
    font-family: 'Orbitron', sans-serif;
    display: inline-block;
    padding: 16px 36px;
    font-size: 1.1rem;
    color: #fff;
    background: linear-gradient(90deg, #00ffe0, #ff00f7);
    border: none;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 0 20px #00ffe0, 0 0 40px #ff00f7;
    animation: pulseFAQ 3.5s infinite ease-in-out;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .glow-faq-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px #ff00f7, 0 0 60px #00ffe0;
  }

  @keyframes pulseFAQ {
    0%, 100% {
      box-shadow: 0 0 20px #00ffe0, 0 0 40px #ff00f7;
    }
    50% {
      box-shadow: 0 0 35px #ff00f7, 0 0 70px #00ffe0;
    }
  }
  .faq-glow-box {
  margin: 60px auto 40px;
  padding: 20px;
  max-width: 750px;
  background: rgba(10, 10, 10, 0.9);
  border-radius: 16px;
  text-align: center;
  font-family: 'Orbitron', sans-serif;
  color: #fff;
  box-shadow: 0 0 25px #00ffe0, 0 0 45px #ff00f7;
  animation: pulseFAQ 4s infinite ease-in-out;
}

.glow-link {
  color: #00f0ff;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2rem;
  display: inline-block;
  padding: 12px 20px;
  border-radius: 30px;
  background: rgba(0, 0, 0, 0.5);
  box-shadow: 0 0 15px #00ffe0, 0 0 30px #ff00f7;
  transition: all 0.3s ease;
}

.glow-link:hover {
  color: #ff00f7;
  background: rgba(255, 255, 255, 0.05);
  text-shadow: 0 0 10px #ff00f7;
  box-shadow: 0 0 25px #00ffe0, 0 0 45px #ff00f7;
}

@keyframes pulseFAQ {
  0%, 100% {
    box-shadow: 0 0 20px #00ffe0, 0 0 40px #ff00f7;
  }
  50% {
    box-shadow: 0 0 35px #00ffe0, 0 0 60px #ff00f7;
  }
}
/* 📦 SmoothFit Nutrition Center Container */
.container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 20px;
  text-align: center;
}

/* 🧬 Title */
.container h1 {
  font-size: 2.2rem;
  color: #00ffe0;
  text-shadow: 0 0 10px #ff00f7;
  margin-bottom: 30px;
}

/* 🥗 Section Box */
.section {
  background: rgba(0, 0, 0, 0.75);
  padding: 35px;
  border-radius: 20px;
  box-shadow: 0 0 25px #00ffe0, 0 0 35px #ff00f7;
  margin-bottom: 50px;
}

/* 🥗 Subtitle */
.section h2 {
  font-size: 1.8rem;
  color: #00ffe0;
  text-shadow: 0 0 8px #ff00f7;
  margin-bottom: 25px;
}

/* 🏷️ Form Labels */
.section label {
  display: block;
  text-align: left;
  font-weight: bold;
  margin: 15px 0 5px;
  color: #fff;
}

/* 🔽 Select Inputs */
.section select {
  width: 100%;
  padding: 12px 15px;
  border-radius: 10px;
  border: none;
  margin-bottom: 20px;
  font-family: 'Orbitron', sans-serif;
  background: #111;
  color: #00ffe0;
  box-shadow: 0 0 10px rgba(0, 255, 224, 0.3);
  text-align: center;
}

/* 🔮 Generate Button */
.section button[type="submit"] {
  background: linear-gradient(45deg, #00ffe0, #ff00f7);
  color: white;
  border: none;
  padding: 15px 30px;
  border-radius: 30px;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  box-shadow: 0 0 15px #00ffe0, 0 0 25px #ff00f7;
  transition: all 0.3s ease;
}

.section button[type="submit"]:hover {
  transform: scale(1.05);
  background: linear-gradient(45deg, #ff00f7, #00ffe0);
}

/* 📤 Output Box */
.output-box {
  background: rgba(255, 255, 255, 0.08);
  padding: 20px;
  border-radius: 12px;
  text-align: left;
  margin-top: 30px;
  color: #fff;
  line-height: 1.6;
  box-shadow: 0 0 10px #00ffe0 inset;
}
.return-home {
  display: inline-block;
  margin-top: 65px;
  margin-bottom: 80px; /* ✅ Add space from footer */
  padding: 12px 28px;
  background: #111;
  color: #fff;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1rem;
  text-shadow: 0 0 6px #00ffe0, 0 0 10px #ff00f7;
  box-shadow: 0 0 15px #00ffe0, 0 0 25px #ff00f7;
  transition: all 0.3s ease;
}


.return-home:hover {
  background: #222;
  color: #00ffe0;
  transform: scale(1.05);
  box-shadow: 0 0 20px #ff00f7, 0 0 30px #00ffe0;
}

.smoothfit-collage {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding: 60px 20px;
  background: radial-gradient(circle, #0e0e0e, #000);
  align-items: center;
  max-width: 700px;     /* ✅ Limit the width */
  margin: 0 auto;       /* ✅ Center horizontally */
  border-radius: 40px;  /* 🎯 Add rounded corners */
  overflow: hidden;     /* ✅ Optional: clips inner elements to border radius */
}



.image-pair {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.image-pair img {
  max-width: 300px;
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 0 30px #ff00f7, 0 0 60px #00ffe0;
  animation: pulseGlow 4s ease-in-out infinite;
  transition: transform 0.3s ease;
}

.image-pair img:hover {
  transform: scale(1.05);
}

@keyframes pulseGlow {
  0% {
    box-shadow: 0 0 10px #00ffe0, 0 0 20px #ff00f7;
  }
  50% {
    box-shadow: 0 0 30px #ff00f7, 0 0 60px #00ffe0;
  }
  100% {
    box-shadow: 0 0 10px #00ffe0, 0 0 20px #ff00f7;
  }
}

/* 🎥 Supreme SmoothFit Video Styling */
.smoothfit-video-section {
  text-align: center;
  padding: 15px 15px;
  background: rgba(0, 0, 0, 0.85);
  border-radius: 30px;
  margin: 60px auto;
  max-width: 900px;
  box-shadow: 0 0 40px #00ffe0, 0 0 80px #ff00f7;
  animation: pulseHero 12s infinite;
}

.video-title {
  font-size: 2.8rem;
  color: #fff;
  text-shadow: 0 0 12px #00ffe0, 0 0 25px #ff00f7;
  margin-bottom: 20px;
  font-family: 'Orbitron', sans-serif;
}

.smoothfit-video {
  width: 100%;
  max-width: 800px;
  border-radius: 20px;
  box-shadow: 0 0 30px #00ffe0, 0 0 60px #ff00f7;
}

/* Responsive */
@media (max-width: 768px) {
  .video-title {
    font-size: 1.8rem;
  }

  .smoothfit-video-section {
    padding: 30px 15px;
  }

  .smoothfit-video {
    width: 100%;
    max-width: 100%;
  }
}
/* ===============================
   🛍️ SmoothFit Product Preview Grid
   (CONSTRAINED TO OUTER BOX)
================================ */

.product-preview-grid {
  display: grid;
  grid-template-columns: 1fr; /* mobile default */
  gap: 2.5rem; /* 🔽 reduced gap so it fits */
  justify-items: center;
  margin-top: 3rem;

  /* 🔒 Prevent overflow */
  width: 100%;
  box-sizing: border-box;
}

/* 🖥️ Desktop: 3 products in one row */
@media (min-width: 900px) {
  .product-preview-grid {
    grid-template-columns: repeat(3, 1fr);
    max-width: 100%;   /* 🔑 inherit outer container width */
    margin: 0 auto;
    padding: 0 1rem;   /* 🔑 inner breathing room */
  }
}

/* 🎁 Product Card */
.product-preview-card {
  background: rgba(0, 0, 0, 0.55);
  padding: 1.8rem 1.4rem;
  border-radius: 22px;

  width: 100%;
  max-width: 260px; /* 🔒 card stays compact */
  box-sizing: border-box;

  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

/* ✨ Hover polish */
.product-preview-card:hover {
  transform: translateY(-6px) scale(1.03); /* 🔽 safer hover */
  box-shadow:
    0 0 30px rgba(0,255,200,0.7),
    0 0 55px rgba(0,140,255,0.5);
}
