body {
  font-family: 'Inter', sans-serif;
  background-color: #0f0f0f;
  color: #ffffff;
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

a {
  color: #58a6ff;
  text-decoration: none;
  transition: 0.3s;
}
a:hover {
  color: #1f6feb;
}

.hero {
  background: linear-gradient(135deg, #1e1e2f, #121212);
  text-align: center;
  padding: 80px 20px;
  border-bottom: 1px solid #333;
}
.hero h1 {
  font-size: 3rem;
  margin-bottom: 10px;
}
.hero p {
  font-size: 1.2rem;
  opacity: 0.8;
}

.card {
  background: #1e1e1e;
  padding: 20px;
  border-radius: 14px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  transition: transform 0.3s;
}
.card:hover {
  transform: scale(1.02);
}

.button {
  background: #58a6ff;
  padding: 12px 20px;
  border-radius: 8px;
  display: inline-block;
  font-weight: bold;
  color: white;
  margin-top: 20px;
}
.button:hover {
  background: #1f6feb;
}

/* === Base Reset & Theme === */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Inter', sans-serif;
  background-color: #0d0d0d;
  color: #ffffff;
  line-height: 1.6;
  scroll-behavior: smooth;
}
a {
  text-decoration: none;
  color: #58a6ff;
  transition: color 0.3s ease;
}
a:hover {
  color: #1f6feb;
}

/* === Scrollbar === */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-thumb {
  background: #2e2e2e;
  border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
  background: #444;
}

/* === Headings & Typography === */
h1, h2, h3 {
  font-weight: 700;
  margin-bottom: 16px;
}
p {
  margin-bottom: 10px;
  opacity: 0.9;
}
.text-center {
  text-align: center;
}
.text-muted {
  color: #999;
}
.badge {
  display: inline-block;
  background: #1f6feb;
  padding: 4px 10px;
  font-size: 0.75rem;
  border-radius: 6px;
}

/* === Card === */
.card {
  background: #1a1a1a;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 0 18px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease;
}
.card:hover {
  transform: translateY(-5px);
}
.card img {
  border-radius: 12px;
  max-width: 100%;
  margin-bottom: 15px;
}

/* === Buttons === */
.button {
  background: #1f6feb;
  color: white;
  padding: 12px 20px;
  border-radius: 10px;
  font-weight: bold;
  transition: 0.3s ease;
  display: inline-block;
  border: none;
  cursor: pointer;
}
.button:hover {
  background: #58a6ff;
}
.button-outline {
  background: transparent;
  border: 2px solid #58a6ff;
  color: #58a6ff;
}
.button-outline:hover {
  background: #1f6feb;
  color: white;
}
.button-glow {
  background: linear-gradient(135deg, #1f6feb, #58a6ff);
  box-shadow: 0 0 15px #58a6ff66;
}
.button-glow:hover {
  box-shadow: 0 0 25px #58a6ffaa;
}

/* === Grid === */
.grid {
  display: grid;
  gap: 30px;
}
.grid-2 {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}
.grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}
.grid-center {
  justify-items: center;
}

/* === Hero Section === */
.hero {
  padding: 100px 20px;
  background: linear-gradient(135deg, #141414, #0a0a0a);
  text-align: center;
}
.hero h1 {
  font-size: 3rem;
}
.hero p {
  font-size: 1.2rem;
  margin-top: 10px;
  color: #cccccc;
}

/* === Animations === */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease-out;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
.zoom-in {
  transform: scale(0.9);
  opacity: 0;
  transition: all 0.6s ease-out;
}
.zoom-in.visible {
  transform: scale(1);
  opacity: 1;
}

/* === Responsive === */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2rem;
  }
  .grid {
    grid-template-columns: 1fr !important;
  }
}

/* === Inputs / Forms === */
input, select, textarea {
  background: #121212;
  color: white;
  border: 1px solid #333;
  padding: 10px 12px;
  border-radius: 8px;
  width: 100%;
  margin-bottom: 15px;
}
input:focus, textarea:focus {
  outline: none;
  border-color: #1f6feb;
  box-shadow: 0 0 5px #1f6feb88;
}

/* === Utility Classes === */
.mt-1 { margin-top: 10px; }
.mt-2 { margin-top: 20px; }
.mb-1 { margin-bottom: 10px; }
.mb-2 { margin-bottom: 20px; }
.p-1 { padding: 10px; }
.p-2 { padding: 20px; }
.rounded { border-radius: 12px; }
.shadow { box-shadow: 0 4px 10px rgba(0,0,0,0.3); }
.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

/* === CUSTOM.CSS === */
/* Enhanced styles & overrides for theme.css */

/* === Button Variants === */
.button-primary {
  background: #1f6feb;
  color: white;
  border: none;
  padding: 12px 20px;
  border-radius: 10px;
  font-weight: bold;
  transition: 0.3s ease;
}
.button-primary:hover {
  background: #58a6ff;
}

.button-outline {
  background: transparent;
  border: 2px solid #58a6ff;
  color: #58a6ff;
}
.button-outline:hover {
  background: #1f6feb;
  color: white;
}

/* === Fancy Card Styles === */
.card-glow {
  background: #161616;
  border-radius: 18px;
  padding: 25px;
  box-shadow: 0 0 30px rgba(31, 111, 235, 0.1);
  transition: transform 0.3s ease;
}
.card-glow:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 40px rgba(31, 111, 235, 0.3);
}

/* === Animations === */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.animated-fade-up {
  animation: fadeUp 0.6s ease-out forwards;
  opacity: 0;
}

/* === Gradient Text === */
.gradient-text {
  background: linear-gradient(135deg, #1f6feb, #58a6ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: bold;
}

/* === Badge / Tag === */
.tag {
  display: inline-block;
  padding: 4px 10px;
  font-size: 0.75rem;
  border-radius: 6px;
  background: #222;
  color: #1f6feb;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

/* === Custom Scroll === */
::-webkit-scrollbar-thumb {
  background: #1f1f1f;
}
::-webkit-scrollbar-thumb:hover {
  background: #2a2a2a;
}

/* === Product Page Enhancements === */
.product-image {
  border-radius: 14px;
  border: 2px solid #2a2a2a;
  margin-bottom: 20px;
}
.product-price {
  font-size: 1.5rem;
  color: #58a6ff;
  font-weight: bold;
  margin: 20px 0;
}

/* === Utilities === */
.rounded-2xl {
  border-radius: 20px;
}
.shadow-lg {
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}
.text-light {
  color: #cccccc;
}
.text-glow {
  text-shadow: 0 0 5px #58a6ff99;
}

body {
  background-color: #0f0f1a;
  font-family: 'Poppins', sans-serif;
  color: #f0f0f0;
}

.hero {
  background: linear-gradient(to right, #1e1e2f, #3e3e5e);
  padding: 60px 20px;
  text-align: center;
}

.hero h1 {
  font-size: 3em;
  color: #ffffff;
}

.hero p {
  font-size: 1.2em;
  color: #cccccc;
}

body {
  background-color: #0f0f1a;
  font-family: 'Poppins', sans-serif;
  color: #f0f0f0;
}

.hero {
  background: linear-gradient(to right, #1e1e2f, #3e3e5e);
  padding: 60px 20px;
  text-align: center;
}

.hero h1 {
  font-size: 3em;
  color: #ffffff;
}

.hero p {
  font-size: 1.2em;
  color: #cccccc;
}

.btn-primary {
  background-color: #6c5ce7;
  border: none;
  padding: 12px 24px;
  font-weight: bold;
  transition: background 0.3s ease;
}

.btn-primary:hover {
  background-color: #a29bfe;
}

body {
  background-color: #0e0e1a;
  font-family: 'Poppins', sans-serif;
  color: #f0f0f0;
  margin: 0;
  padding: 0;
}

.hero {
  background: linear-gradient(to right, #1e1e2f, #3e3e5e);
  padding: 80px 20px;
  text-align: center;
  border-radius: 12px;
  margin: 30px auto;
  max-width: 1000px;
}

.hero h1 {
  font-size: 3.5em;
  color: #ffffff;
  margin-bottom: 10px;
}

.hero p {
  font-size: 1.3em;
  color: #cccccc;
}

.btn-primary {
  background-color: #6c5ce7;
  border: none;
  padding: 14px 28px;
  font-weight: bold;
  color: white;
  border-radius: 8px;
  text-decoration: none;
  display: inline-block;
  margin-top: 25px;
  transition: background 0.3s ease;
}

.btn-primary:hover {
  background-color: #a29bfe;
}

body {
  background-color: #0f0f1a;
  font-family: 'Poppins', sans-serif;
  color: #f0f0f0;
  margin: 0;
  padding: 0;
}

.hero {
  background: linear-gradient(to right, #1e1e2f, #3e3e5e);
  padding: 80px 20px;
  text-align: center;
  border-radius: 12px;
  margin: 30px auto;
  max-width: 1000px;
}

.hero h1 {
  font-size: 3.5em;
  color: #ffffff;
  margin-bottom: 10px;
}

.hero p {
  font-size: 1.3em;
  color: #cccccc;
}

.btn-primary {
  background-color: #6c5ce7;
  border: none;
  padding: 14px 28px;
  font-weight: bold;
  color: white;
  border-radius: 8px;
  text-decoration: none;
  display: inline-block;
  margin-top: 25px;
  transition: background 0.3s ease;
}

.btn-primary:hover {
  background-color: #a29bfe;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  padding: 40px;
  max-width: 1200px;
  margin: auto;
}

.product-card {
  background-color: #1a1a2e;
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  transition: transform 0.3s ease;
}

.product-card:hover {
  transform: scale(1.03);
}

.product-card img {
  max-width: 100%;
  border-radius: 8px;
  margin-bottom: 15px;
}

.btn-secondary {
  background-color: #00cec9;
  color: #fff;
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  display: inline-block;
  margin-top: 10px;
  transition: background 0.3s ease;
}

.btn-secondary:hover {
  background-color: #81ecec;
}

@keyframes pulse-glow {
  0% { box-shadow: 0 0 0 rgba(0, 255, 200, 0.0); }
  50% { box-shadow: 0 0 15px rgba(0, 255, 200, 0.6); }
  100% { box-shadow: 0 0 0 rgba(0, 255, 200, 0.0); }
}

/* Smooth Fonts */
body {
  font-family: 'Poppins', sans-serif;
  letter-spacing: 0.2px;
}

/* Button Glow Effect */
button, .btn {
  transition: all 0.3s ease;
  border-radius: 10px;
}
button:hover, .btn:hover {
  box-shadow: 0 0 15px rgba(0, 255, 170, 0.6);
}

/* Card Hover Animation */
.card, .product {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card:hover, .product:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

/* Navbar Blur */
.navbar {
  backdrop-filter: blur(8px);
  background: rgba(0, 0, 0, 0.5);
}

/* Cool Color Theme */
:root {
  --main-color: #00ffc8;
  --background-dark: #0f0f0f;
  --text-light: #f1f1f1;
}

body {
  background-color: var(--background-dark);
  color: var(--text-light);
}
a {
  color: var(--main-color);
}

body {
  font-family: 'Poppins', sans-serif;
  letter-spacing: 0.2px;
  scroll-behavior: smooth;
  background-color: #0f0f0f;
  color: #f1f1f1;
}

button, .btn {
  background: linear-gradient(135deg, #00ffc8, #00aaff);
  border: none;
  color: white;
  padding: 10px 20px;
  border-radius: 12px;
  transition: all 0.3s ease;
  box-shadow: 0 0 10px rgba(0,255,200,0.3);
}
button:hover, .btn:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(0,255,200,0.6);
}

.card, .product {
  border-radius: 14px;
  overflow: hidden;
  transition: 0.3s ease;
  background: #1a1a1a;
}
.card:hover, .product:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

.navbar {
  background: rgba(15, 15, 15, 0.7);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

input:focus, textarea:focus, select:focus {
  outline: none;
  border: 2px solid #00ffc8;
  box-shadow: 0 0 8px #00ffc8;
  background-color: #111;
  color: #fff;
}

hr {
  border: none;
  height: 2px;
  background: linear-gradient(90deg, transparent, #00ffc8, transparent);
  margin: 40px 0;
}

img:hover {
  box-shadow: 0 0 25px rgba(0, 255, 200, 0.6);
  transition: 0.3s ease-in-out;
}

::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-thumb {
  background: #00ffc8;
  border-radius: 10px;
}
::-webkit-scrollbar-track {
  background: #111;
}

.rainbow-text {
  background: linear-gradient(to right, #ff4ec8, #00ffc8, #00aaff, #ff4ec8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
}

/* Smooth Glow Effect for Product Cards in SellAuth */

/* Base styling for product cards */
.product-card, .product {
  transition: all 0.3s ease;
  border-radius: 12px;
  background-color: #111;
  box-shadow: 0 0 0 rgba(0, 255, 200, 0.2);
  cursor: pointer;
}

/* Hover effect with smooth scale and glow */
.product-card:hover, .product:hover {
  transform: scale(1.03);
  box-shadow: 0 0 15px rgba(0, 255, 200, 0.6);
  background: linear-gradient(135deg, #111, #1a1a1a);
  border: 1px solid #00ffc8;
}

/* === Currency Selector Styled Like Cart Button === */

/* Adjust the dropdown selector */
.currency-selector select,
.currency-selector {
  background-color: #00ffc8; /* same as cart button bg */
  color: #000; /* black text for contrast */
  padding: 8px 16px;
  font-weight: bold;
  border: none;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 255, 200, 0.3);
  transition: all 0.3s ease;
  cursor: pointer;
}

/* On hover */
.currency-selector select:hover,
.currency-selector:hover {
  background-color: #00e6b3; /* slight darker shade */
  box-shadow: 0 0 15px rgba(0, 255, 200, 0.5);
}

/* Ensure dropdown arrow matches styling */
.currency-selector select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg fill='black' height='14' viewBox='0 0 24 24' width='14' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/></svg>");
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 12px;
  padding-right: 30px;
}

/* Typing animation for welcome heading */
.typing-welcome {
  font-size: 28px;
  font-weight: bold;
  color: #00ffc8;
  white-space: nowrap;
  overflow: hidden;
  border-right: 2px solid #00ffc8;
  width: 0;
  animation:
    typing 3s steps(25, end) forwards,
    blink 0.7s step-end infinite,
    erase 3s steps(25, end) 4s forwards,
    repeatTyping 10s infinite;
}

/* Typing animation */
@keyframes typing {
  from { width: 0 }
  to { width: 25ch }
}

/* Erase animation */
@keyframes erase {
  from { width: 25ch }
  to { width: 0 }
}

/* Blinking cursor */
@keyframes blink {
  50% { border-color: transparent }
}

/* Looping animation reset */
@keyframes repeatTyping {
  0% { width: 0 }
  40% { width: 25ch }
  60% { width: 25ch }
  100% { width: 0 }
}


/* === Visuals Agency - Social Button Styling === */

/* Base Button Style */
.socials a {
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 600;
  color: white;
  background: linear-gradient(to right, #00ffc8, #006aff);
  background-size: 200% auto;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  display: inline-block;
  text-align: center;
  text-decoration: none;
  animation: pulse-glow 2s infinite;
}

/* Pulse Glow Animation */
@keyframes pulse-glow {
  0% {
    box-shadow: 0 0 8px #00ffc8, 0 0 16px #006aff;
  }
  50% {
    box-shadow: 0 0 12px #00ffc8, 0 0 24px #006aff;
  }
  100% {
    box-shadow: 0 0 8px #00ffc8, 0 0 16px #006aff;
  }
}

/* Gradient Slide on Hover */
.socials a:hover {
  background-position: right center;
  color: white;
  transform: scale(1.05);
}

/* Ripple Click Effect */
.socials a:active::after {
  content: '';
  position: absolute;
  width: 200%;
  height: 200%;
  top: 50%;
  left: 50%;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0);
  animation: ripple 0.6s ease-out;
  pointer-events: none;
  z-index: 1;
}

@keyframes ripple {
  to {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0;
  }
}

/* Optional: Gradient Border Flash (On Hover) */
.socials a::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, rgba(0,255,200,0.2), rgba(0,106,255,0.2));
  transition: all 0.5s ease-in-out;
  z-index: 0;
}

.socials a:hover::before {
  left: 0;
}

/* Optional: Ensure text & click stay above animation */
.socials a > * {
  position: relative;
  z-index: 2;
}

/* === Visuals Agency - Product Card Animations === */

/* Base Product Card Styling */
.product-card {
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
  background: #0d0d0d;
  box-shadow: 0 0 12px rgba(0, 255, 200, 0.15);
}

/* Hover Animation */
.product-card:hover {
  transform: scale(1.03);
  box-shadow: 0 0 20px rgba(0, 255, 200, 0.3), 0 0 40px rgba(0, 106, 255, 0.3);
}

/* Glow Pulse Effect */
@keyframes glowPulse {
  0% {
    box-shadow: 0 0 10px rgba(0, 255, 200, 0.15);
  }
  50% {
    box-shadow: 0 0 20px rgba(0, 255, 200, 0.25);
  }
  100% {
    box-shadow: 0 0 10px rgba(0, 255, 200, 0.15);
  }
}

.product-card {
  animation: glowPulse 2.5s infinite;
}

/* Ripple Effect on Click */
.product-card:active::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 300%;
  height: 300%;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0);
  animation: rippleExpand 0.6s ease-out;
  pointer-events: none;
  z-index: 1;
}

@keyframes rippleExpand {
  to {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0;
  }
}

/* Optional Inner Border Effect */
.product-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    120deg,
    rgba(0, 255, 200, 0.2),
    rgba(0, 106, 255, 0.2)
  );
  transition: all 0.5s ease-in-out;
  z-index: 0;
}

.product-card:hover::before {
  left: 0;
}

/* Ensure content stays on top */
.product-card > * {
  position: relative;
  z-index: 2;
}

/* === Visuals Agency - Full Site Styling & Animations === */

/* ==== GLOBAL SETTINGS ==== */
body {
  background-color: #0d0d0d;
  color: #ffffff;
  font-family: 'Poppins', sans-serif;
  transition: background 0.5s ease;
}

/* ==== NAVBAR ==== */
nav {
  background: linear-gradient(90deg, #0f0f0f, #1a1a1a);
  box-shadow: 0 2px 20px rgba(0, 255, 200, 0.15);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(0, 255, 255, 0.05);
}

nav a {
  color: #00ffd9 !important;
  transition: color 0.3s ease;
}

nav a:hover {
  color: #00b3ff !important;
}

/* ==== PRODUCT CARDS ==== */
.product-card {
  background: #111111;
  border-radius: 14px;
  box-shadow: 0 0 14px rgba(0, 255, 255, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: glowPulse 2.5s infinite;
  overflow: hidden;
  position: relative;
}

.product-card:hover {
  transform: scale(1.03);
  box-shadow: 0 0 25px rgba(0, 255, 200, 0.25);
}

/* Ripple on click */
.product-card:active::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 300%;
  height: 300%;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0);
  animation: rippleExpand 0.6s ease-out;
  pointer-events: none;
  z-index: 1;
}

/* ==== BUTTONS ==== */
button,
.btn,
input[type="submit"] {
  background: linear-gradient(135deg, #00ffd9, #007fff);
  color: #000;
  border-radius: 10px;
  padding: 10px 18px;
  font-weight: 600;
  box-shadow: 0 0 12px rgba(0, 255, 255, 0.2);
  transition: transform 0.2s ease, box-shadow 0.3s ease;
}

button:hover,
.btn:hover,
input[type="submit"]:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.4);
}

button:active,
.btn:active {
  transform: scale(0.97);
}

/* ==== FOOTER ==== */
footer {
  background: #0d0d0d;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 -2px 20px rgba(0, 255, 200, 0.1);
  padding-top: 20px;
  text-align: center;
}

footer a {
  color: #00ffd9;
  transition: color 0.3s ease;
}

footer a:hover {
  color: #00b3ff;
}

/* ==== SOCIAL ICONS ==== */
.social-icon {
  display: inline-block;
  margin: 0 10px;
  padding: 10px;
  border-radius: 50%;
  background: #00ffd9;
  color: #000;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.social-icon:hover {
  transform: rotate(5deg) scale(1.1);
  box-shadow: 0 0 15px rgba(0, 255, 255, 0.4);
}

/* ==== FORMS & INPUTS ==== */
input[type="text"],
input[type="email"],
textarea,
select {
  background: #141414;
  color: #fff;
  border: 1px solid #00ffd9;
  border-radius: 8px;
  padding: 10px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

input:focus,
textarea:focus,
select:focus {
  border-color: #00b3ff;
  box-shadow: 0 0 8px rgba(0, 255, 255, 0.4);
  outline: none;
}

/* ==== ANIMATIONS ==== */
@keyframes glowPulse {
  0% {
    box-shadow: 0 0 8px rgba(0, 255, 255, 0.12);
  }
  50% {
    box-shadow: 0 0 16px rgba(0, 255, 255, 0.3);
  }
  100% {
    box-shadow: 0 0 8px rgba(0, 255, 255, 0.12);
  }
}

@keyframes rippleExpand {
  to {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0;
  }
}

/* ==== PRODUCT OVERVIEW CARDS - ANIMATED EFFECTS ==== */

/* Base product card styling */
.product-card, .product-card:hover, .product {
  border-radius: 14px;
  background: #111;
  color: #fff;
  padding: 15px;
  transition: transform 0.3s ease, box-shadow 0.4s ease;
  box-shadow: 0 0 12px rgba(0, 255, 255, 0.08);
  position: relative;
  overflow: hidden;
}

/* Hover glow + pop */
.product-card:hover {
  transform: scale(1.04) rotate(0.3deg);
  box-shadow: 0 0 18px rgba(0, 255, 255, 0.3), 0 0 6px rgba(0, 255, 255, 0.2);
  z-index: 5;
}

/* Click ripple effect */
.product-card:active::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 400%;
  height: 400%;
  background: rgba(0, 255, 255, 0.1);
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0);
  animation: rippleProduct 0.6s ease-out;
  z-index: 1;
}

/* Pulse glow animation */
.product-card {
  animation: glowProduct 3s infinite ease-in-out;
}

/* Product title styling */
.product-card h3, .product-card .product-name {
  font-size: 1.2rem;
  font-weight: 600;
  text-shadow: 0 0 5px rgba(0, 255, 255, 0.3);
}

/* Button inside product (Buy Now / View) */
.product-card button, .product-card .btn, .product-card a {
  background: linear-gradient(135deg, #00ffd9, #00aaff);
  color: #000;
  border-radius: 8px;
  padding: 8px 14px;
  font-weight: 600;
  box-shadow: 0 0 8px rgba(0, 255, 255, 0.3);
  transition: transform 0.2s ease, box-shadow 0.3s ease;
}

.product-card button:hover, .product-card .btn:hover, .product-card a:hover {
  transform: scale(1.05);
  box-shadow: 0 0 16px rgba(0, 255, 255, 0.5);
}

/* === KEYFRAMES === */
@keyframes glowProduct {
  0%, 100% {
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.1);
  }
  50% {
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.35);
  }
}

@keyframes rippleProduct {
  to {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0;
  }
}

/* === Global Styles === */
body {
  background-color: #0d0d0d;
  color: #ffffff;
  font-family: 'Poppins', sans-serif;
  transition: background 0.5s ease;
}

/* === Navbar === */
nav {
  background: linear-gradient(90deg, #0f0f0f, #1a1a1a);
  box-shadow: 0 2px 20px rgba(0, 255, 200, 0.15);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(0, 255, 255, 0.05);
}

nav a {
  color: #00ffd9 !important;
  transition: color 0.3s ease;
}

nav a:hover {
  color: #00b3ff !important;
}

/* === Product Cards === */
.product-card {
  background: #111111;
  border-radius: 14px;
  box-shadow: 0 0 14px rgba(0, 255, 255, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: glowPulse 2.5s infinite;
  overflow: hidden;
  position: relative;
}

.product-card:hover {
  transform: scale(1.03);
  box-shadow: 0 0 25px rgba(0, 255, 200, 0.25);
}

.product-card:active::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 300%;
  height: 300%;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0);
  animation: rippleExpand 0.6s ease-out;
  pointer-events: none;
  z-index: 1;
}

/* === Buttons === */
button,
.btn,
input[type="submit"] {
  background: linear-gradient(135deg, #00ffd9, #007fff);
  color: #000;
  border-radius: 10px;
  padding: 10px 18px;
  font-weight: 600;
  box-shadow: 0 0 12px rgba(0, 255, 255, 0.2);
  transition: transform 0.2s ease, box-shadow 0.3s ease;
}

button:hover,
.btn:hover,
input[type="submit"]:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.4);
}

button:active,
.btn:active {
  transform: scale(0.97);
}

/* === Footer === */
footer {
  background: #0d0d0d;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 -2px 20px rgba(0, 255, 200, 0.1);
  padding-top: 20px;
  text-align: center;
}

footer a {
  color: #00ffd9;
  transition: color 0.3s ease;
}

footer a:hover {
  color: #00b3ff;
}

/* === Social Icons === */
.social-icons {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 10px;
}

.social-icons a {
  display: inline-block;
  width: 40px;
  height: 40px;
  background: #00ffd9;
  border-radius: 50%;
  color: #000;
  text-align: center;
  line-height: 40px;
  font-size: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.social-icons a:hover {
  transform: rotate(5deg) scale(1.1);
  box-shadow: 0 0 15px rgba(0, 255, 255, 0.4);
}

/* === Forms & Inputs === */
input[type="text"],
input[type="email"],
textarea,
select {
  background: #141414;
  color: #fff;
  border: 1px solid #00ffd9;
  border-radius: 8px;
  padding: 10px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

input:focus,
textarea:focus,
select:focus {
  border-color: #00b3ff;
  box-shadow: 0 0 8px rgba(0, 255, 255, 0.4);
  outline: none;
}

/* === Animations === */
@keyframes glowPulse {
  0% {
    box-shadow: 0 0 8px rgba(0, 255, 255, 0.12);
  }
  50% {
    box-shadow: 0 0 16px rgba(0, 255, 255, 0.3);
  }
  100% {
    box-shadow: 0 0 8px rgba(0, 255, 255, 0.12);
  }
}

@keyframes rippleExpand {
  to {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0;
  }
}

/* Fade-in Animation */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease-out;
}
.fade-in.appear {
  opacity: 1;
  transform: translateY(0);
}

/* Ripple Effect */
.ripple {
  position: absolute;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  pointer-events: none;
  width: 100px;
  height: 100px;
  transform: scale(0);
  animation: ripple 0.6s linear;
}
@keyframes ripple {
  to {
    transform: scale(3);
    opacity: 0;
  }
}
button, .btn, input[type="submit"] {
  position: relative;
  overflow: hidden;
}

/* Navbar shadow */
.nav-shadow {
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

/* Optional typing style */
.typing-title {
  border-right: 2px solid #fff;
  white-space: nowrap;
  overflow: hidden;
}

/* ===== FOOTER BASE STYLE ===== */
footer {
  background: linear-gradient(135deg, #0f0f0f, #1c1c1c);
  color: #f1f1f1;
  padding: 40px 20px;
  text-align: center;
  font-family: 'Poppins', sans-serif;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

/* ===== LINKS ===== */
footer a {
  color: #ccc;
  margin: 0 10px;
  text-decoration: none;
  transition: 0.3s ease;
}

footer a:hover {
  color: #ffffff;
  text-shadow: 0 0 10px #fff;
}

/* ===== BUTTON STYLING ===== */
footer .footer-btn {
  background: #111;
  color: #fff;
  padding: 12px 28px;
  border-radius: 30px;
  margin-top: 20px;
  border: none;
  cursor: pointer;
  transition: 0.4s ease-in-out;
  box-shadow: 0 0 0 rgba(255,255,255,0);
}

footer .footer-btn:hover {
  background: #fff;
  color: #111;
  box-shadow: 0 0 15px #ffffffa1;
}

/* ===== SOCIAL ICONS ===== */
footer .social-icons {
  margin-top: 20px;
}

footer .social-icons a {
  display: inline-block;
  background: #1f1f1f;
  width: 40px;
  height: 40px;
  margin: 0 8px;
  border-radius: 50%;
  line-height: 40px;
  color: #f1f1f1;
  font-size: 18px;
  transition: transform 0.3s, background 0.3s;
}

footer .social-icons a:hover {
  transform: scale(1.2);
  background: #ffffff;
  color: #000;
}

/* ===== ANIMATION ON SCROLL ===== */
footer.fade-in-footer {
  opacity: 0;
  transform: translateY(40px);
  transition: all 1s ease;
}
footer.fade-in-footer.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== FOOTER TEXT ===== */
footer p {
  margin: 0;
  padding-top: 10px;
  font-size: 14px;
  opacity: 0.8;
}

/* ====================== ADVANCED FOOTER DESIGN ====================== */

footer {
  background: linear-gradient(120deg, #0f0f0f, #1e1e1e);
  color: #f1f1f1;
  padding: 60px 30px;
  font-family: 'Poppins', sans-serif;
  position: relative;
  overflow: hidden;
  border-top: 4px solid transparent;
  border-image: linear-gradient(90deg, #00f5ff, #ff00c8) 1;
  box-shadow: 0 0 50px rgba(0, 255, 255, 0.05);
  text-align: center;
}

/* Animated border effect */
footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: -50%;
  width: 200%;
  height: 4px;
  background: linear-gradient(90deg, #00f5ff, #ff00c8, #00f5ff);
  animation: animate-border 8s linear infinite;
}
@keyframes animate-border {
  0% { left: -50%; }
  100% { left: 100%; }
}

/* Footer Text */
footer h2 {
  font-size: 28px;
  margin-bottom: 12px;
  background: linear-gradient(90deg, #00f5ff, #ff00c8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: glowText 4s infinite;
}
@keyframes glowText {
  0%, 100% { text-shadow: 0 0 5px #00f5ff; }
  50% { text-shadow: 0 0 20px #ff00c8; }
}

footer p {
  font-size: 15px;
  color: #bbb;
  margin-bottom: 30px;
}

/* Social Icons */
.footer-socials {
  margin: 20px 0;
}
.footer-socials a {
  display: inline-block;
  margin: 0 10px;
  background: #1a1a1a;
  border-radius: 50%;
  color: #fff;
  font-size: 18px;
  width: 44px;
  height: 44px;
  line-height: 44px;
  transition: all 0.3s ease;
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.1);
}
.footer-socials a:hover {
  transform: scale(1.2) rotate(5deg);
  background: #fff;
  color: #000;
  box-shadow: 0 0 20px #00f5ff;
}

/* Button */
.footer-btn {
  display: inline-block;
  padding: 14px 30px;
  margin-top: 20px;
  border-radius: 50px;
  background: linear-gradient(135deg, #00f5ff, #ff00c8);
  color: #000;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.4s ease;
  border: none;
}
.footer-btn:hover {
  filter: brightness(1.1);
  box-shadow: 0 0 15px #00f5ff, 0 0 20px #ff00c8;
  transform: scale(1.05);
}

/* Responsive */
@media (max-width: 600px) {
  footer {
    padding: 40px 15px;
  }
  footer h2 {
    font-size: 22px;
  }
  footer .footer-btn {
    width: 100%;
  }

/* ---------------- ADVANCED FOOTER DESIGN ---------------- */
footer {
  background: linear-gradient(145deg, #111, #1c1c1c);
  padding: 60px 20px;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
  border-top: 3px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  box-shadow: inset 0 0 30px rgba(0, 255, 255, 0.1);
}

/* Footer Title */
footer h2 {
  font-size: 28px;
  background: linear-gradient(to right, #00f5ff, #ff00c8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: glowFooterTitle 5s ease-in-out infinite;
}
@keyframes glowFooterTitle {
  0%, 100% { text-shadow: 0 0 10px #00f5ff; }
  50% { text-shadow: 0 0 20px #ff00c8; }
}

/* Footer Links/Icons Animation */
footer a {
  margin: 0 10px;
  color: #ccc;
  transition: 0.3s;
  position: relative;
}
footer a:hover {
  color: #fff;
  text-shadow: 0 0 10px #00f5ff, 0 0 20px #ff00c8;
}

/* Sparkles on Hover */
footer a::after {
  content: '✨';
  position: absolute;
  top: -8px;
  right: -10px;
  opacity: 0;
  transition: 0.4s;
}
footer a:hover::after {
  opacity: 1;
  animation: sparkle 1s infinite ease-in-out;
}
@keyframes sparkle {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-3px) scale(1.2); }
}

/* Floating Icons Effect */
.footer-socials a {
  animation: floatIcon 6s ease-in-out infinite;
}
@keyframes floatIcon {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

/* Glowing wave effect */
footer::after {
  content: '';
  position: absolute;
  bottom: -40px;
  left: 0;
  width: 100%;
  height: 80px;
  background: radial-gradient(circle at 50% 0, #00f5ff55 0%, transparent 70%);
  animation: waveGlow 5s ease-in-out infinite;
}
@keyframes waveGlow {
  0%, 100% { opacity: 0.4; transform: scaleX(1); }
  50% { opacity: 0.7; transform: scaleX(1.2); }
}

/* Scroll Progress Bar */
#scroll-progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 4px;
  background: linear-gradient(to right, #00f5ff, #ff00c8);
  width: 0%;
  z-index: 9999;
  animation: none;
}

/* Frosted Card Look */
footer .card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 20px;
  backdrop-filter: blur(5px);
  box-shadow: 0 0 10px rgba(0,255,255,0.1);
  transition: 0.4s ease;
}
footer .card:hover {
  box-shadow: 0 0 20px rgba(0,255,255,0.4);
  transform: translateY(-5px);
}

/* -------- Product Card Global Styles -------- */
.product-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 20px;
  backdrop-filter: blur(6px);
  box-shadow: 0 0 12px rgba(0, 255, 255, 0.15);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  perspective: 1000px;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

/* 3D Hover Effect */
.product-card:hover {
  transform: rotateY(5deg) rotateX(3deg) scale(1.02);
  box-shadow: 0 0 25px rgba(0, 255, 255, 0.3);
}

/* Zoom image on hover */
.product-card img {
  transition: transform 0.4s ease;
}
.product-card:hover img {
  transform: scale(1.05);
}

/* Glow border on hover */
.product-card::before {
  content: '';
  position: absolute;
  inset: -2px;
  z-index: -1;
  border-radius: 20px;
  background: linear-gradient(45deg, #00f5ff, #ff00f7, #00f5ff);
  background-size: 400% 400%;
  animation: borderGlow 6s linear infinite;
  opacity: 0;
  transition: 0.5s ease;
}
.product-card:hover::before {
  opacity: 1;
}
@keyframes borderGlow {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Click ripple */
.product-card:active::after {
  content: '';
  position: absolute;
  top: var(--click-y);
  left: var(--click-x);
  width: 10px;
  height: 10px;
  background: rgba(0, 255, 255, 0.6);
  border-radius: 50%;
  transform: scale(0);
  animation: clickRipple 0.5s ease-out;
  pointer-events: none;
}
@keyframes clickRipple {
  to {
    transform: scale(15);
    opacity: 0;
  }
}

/* Auto pulse animation */
@keyframes pulseCard {
  0% { transform: scale(1); }
  50% { transform: scale(1.01); }
  100% { transform: scale(1); }
}
.product-card {
  animation: pulseCard 8s ease-in-out infinite;
}

/* Sparkle trail on hover */
.product-card.sparkle::after {
  content: '✨';
  position: absolute;
  font-size: 16px;
  pointer-events: none;
  animation: sparkleTrail 1s infinite;
}
@keyframes sparkleTrail {
  0% { transform: translate(0, 0); opacity: 1; }
  100% { transform: translate(-10px, -10px); opacity: 0; }
}

/* Container styling for product previews */
.product-preview {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.4s ease;
  background: linear-gradient(135deg, #1f1f1f, #292929);
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.3);
}

/* Glow effect on hover */
.product-preview:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.4);
  background: linear-gradient(135deg, #202020, #3a3a3a);
}

/* Animated border effect */
.product-preview::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, #00ffff, #ff00ff, #00ffff);
  z-index: -1;
  background-size: 400%;
  animation: borderMove 8s linear infinite;
  border-radius: 18px;
}

@keyframes borderMove {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Title styling */
.product-preview .product-title {
  font-weight: bold;
  font-size: 1.2rem;
  color: #ffffff;
  text-shadow: 0 0 4px #00ffff;
  transition: color 0.3s ease;
}

/* Price styling */
.product-preview .product-price {
  font-size: 1rem;
  color: #ff00ff;
  transition: color 0.3s ease;
}

.product-preview:hover .product-title,
.product-preview:hover .product-price {
  color: #ffffff;
}

/* Button styling inside preview */
.product-preview .btn {
  background: transparent;
  color: #00ffff;
  border: 1px solid #00ffff;
  padding: 6px 14px;
  border-radius: 10px;
  margin-top: 10px;
  transition: all 0.3s ease;
}

.product-preview .btn:hover {
  background: #00ffff;
  color: #121212;
  box-shadow: 0 0 10px #00ffff;
}

/* 1. Neon Pulse Border */
.product-preview {
  position: relative;
  border: 2px solid #00ffff;
  border-radius: 16px;
  padding: 16px;
  background: #111;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  box-shadow: 0 0 10px #00ffff33;
}

.product-preview:hover {
  transform: scale(1.03);
  box-shadow: 0 0 20px #00ffffaa;
}

/* 2. Shine effect on hover */
.product-preview::after {
  content: '';
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transform: skewX(-20deg);
  transition: 0.75s;
}

.product-preview:hover::after {
  left: 125%;
}

/* 3. Animated Gradient Background */
.product-preview-bg {
  background: linear-gradient(-45deg, #0ff, #f0f, #0ff, #f0f);
  background-size: 400% 400%;
  animation: gradientFlow 10s ease infinite;
  border-radius: 16px;
  padding: 16px;
  color: white;
}

@keyframes gradientFlow {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

/* Main product preview card */
.product-preview {
  position: relative;
  background: #121212;
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 0 15px rgba(0, 255, 255, 0.2);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* On hover: glowing + zoom */
.product-preview:hover {
  transform: scale(1.03);
  box-shadow: 0 0 25px rgba(0, 255, 255, 0.4);
}

/* Animated border glow */
.product-preview::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  border-radius: 18px;
  background: linear-gradient(45deg, #00f0ff, #ff00e6, #00f0ff);
  background-size: 400%;
  animation: pulse-border 8s linear infinite;
  z-index: 0;
  opacity: 0.4;
}

@keyframes pulse-border {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

/* Shine animation on hover */
.product-preview::after {
  content: '';
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 255, 255, 0.15),
    transparent
  );
  transform: skewX(-25deg);
  transition: 0.75s;
  z-index: 2;
}

.product-preview:hover::after {
  left: 125%;
}

/* Layer control for content */
.product-preview * {
  position: relative;
  z-index: 1;
}

/* Title and button styling */
.product-preview h3 {
  color: #fff;
  font-size: 20px;
  margin-bottom: 8px;
}

.product-preview button {
  background-color: #00f0ff;
  color: #000;
  padding: 10px 14px;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.product-preview button:hover {
  background-color: #00b6cc;
}

/* ===== Left Sidebar Links ===== */

.sidebar a,
.nav-links a {
  display: block;
  position: relative;
  padding: 12px 20px;
  color: #00f0ff;
  font-weight: 600;
  letter-spacing: 0.5px;
  border-radius: 10px;
  margin-bottom: 10px;
  background: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(5px);
  transition: all 0.3s ease;
  overflow: hidden;
}

/* Hover Animation: Glowing Pulse */
.sidebar a:hover,
.nav-links a:hover {
  background: rgba(0, 255, 255, 0.1);
  color: #fff;
  box-shadow: 0 0 15px rgba(0, 255, 255, 0.5);
  transform: translateX(4px) scale(1.03);
}

/* Glitchy underline effect */
.sidebar a::after,
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 5px;
  left: 10px;
  width: 80%;
  height: 2px;
  background: linear-gradient(90deg, #00f0ff, #ff00e6);
  opacity: 0;
  transform: scaleX(0);
  transition: all 0.3s ease;
}

.sidebar a:hover::after,
.nav-links a:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

/* Active link styling (optional, if .active class is present) */
.sidebar a.active,
.nav-links a.active {
  background: rgba(0, 255, 255, 0.2);
  color: #ffffff;
  box-shadow: inset 0 0 10px #00f0ff;
}

.scroll-reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  will-change: opacity, transform;
}

.scroll-reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Slide from left */
.scroll-left {
  transform: translateX(-40px);
}

/* Slide from right */
.scroll-right {
  transform: translateX(40px);
}

/* Zoom in */
.scroll-zoom {
  transform: scale(0.8);
}

/* Scroll reveal base style */
.scroll-reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  will-change: opacity, transform;
}

.scroll-reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Optional variations */
.scroll-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.scroll-left.active {
  opacity: 1;
  transform: translateX(0);
}

.scroll-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.scroll-right.active {
  opacity: 1;
  transform: translateX(0);
}

.scroll-zoom {
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.scroll-zoom.active {
  opacity: 1;
  transform: scale(1);
}

button:hover, .button:hover {
  box-shadow: 0 0 10px #00f0ff, 0 0 20px #00f0ff, 0 0 30px #00f0ff;
  transition: box-shadow 0.3s ease;
}

.product-card:hover {
  border: 2px solid transparent;
  background-image: linear-gradient(#1a1a1a, #1a1a1a), linear-gradient(90deg, #00f0ff, #8a2be2);
  background-origin: border-box;
  background-clip: content-box, border-box;
  animation: borderGlow 1.5s infinite linear;
}

@keyframes borderGlow {
  0% { box-shadow: 0 0 5px #00f0ff; }
  50% { box-shadow: 0 0 20px #8a2be2; }
  100% { box-shadow: 0 0 5px #00f0ff; }
}
.fade-in {
  opacity: 0;
  animation: fadeIn 1.2s ease forwards;
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.product-card {
  background: rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  backdrop-filter: blur(15px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.18);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
}

button, .btn {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #6e8efb, #a777e3);
  color: white;
  padding: 12px 20px;
  font-weight: bold;
  border: none;
  border-radius: 12px;
  box-shadow: 0 0 15px #6e8efb;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

button:hover::before, .btn:hover::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, #ffffff44 10%, transparent 10.01%);
  animation: glowMove 1s linear infinite;
}

@keyframes glowMove {
  0% { transform: translate(0, 0); }
  100% { transform: translate(50%, 50%); }
}

button:hover, .btn:hover {
  transform: scale(1.08);
  box-shadow: 0 0 20px #a777e3;
}

.products-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  padding: 2rem;
}

.product-card {
  transition: all 0.5s ease-in-out;
}

.product-card:hover {
  z-index: 2;
  transform: scale(1.1) rotate(0.5deg);
}

h1, .site-title {
  font-size: 3rem;
  background: linear-gradient(270deg, #ff6ec4, #7873f5, #4ade80);
  background-size: 600% 600%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientText 8s ease infinite;
  text-align: center;
}

@keyframes gradientText {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

input:focus + label,
input:not(:placeholder-shown) + label {
  top: -10px;
  left: 10px;
  font-size: 12px;
  color: #00c6ff;
}

label {
  position: absolute;
  left: 15px;
  top: 15px;
  color: #999;
  pointer-events: none;
  transition: 0.3s ease all;
}

body {
  animation: fadeIn 1.5s ease-in;
}

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

.product-card video {
  max-width: 100%;
  border-radius: 12px;
  transition: opacity 0.3s ease-in-out;
  opacity: 0;
  pointer-events: none;
}

.product-card:hover video {
  opacity: 1;
}

.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.6s ease-out;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}


body::before {
  content: "";
  position: fixed;
  width: 100%;
  height: 100%;
  background: repeating-linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.01) 0px,
    rgba(255, 255, 255, 0.01) 1px,
    transparent 1px,
    transparent 2px
  );
  pointer-events: none; 
  z-index: 1000;
}

.product-card {
  perspective: 1000px;
  transform-style: preserve-3d;
  transition: transform 0.4s ease;
}

.product-card:hover {
  transform: rotateY(8deg) rotateX(3deg) scale(1.03);
}

button, .buy-button {
  background: linear-gradient(135deg, #00f5a0, #00d9f5);
  color: white !important;
  border: none;
  padding: 12px 24px;
  border-radius: 12px;
  font-weight: 600;
  box-shadow: 0 0 12px #00f5a0;
  transition: transform 0.2s ease, box-shadow 0.3s ease;
}
button:hover, .buy-button:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px #00f5a0, 0 0 40px #00d9f5;
}

.hero, .main-header, .header {
  background: linear-gradient(-45deg, #0f0c29, #302b63, #24243e);
  background-size: 400% 400%;
  animation: gradientShift 10s ease infinite;
  color: white;
}

@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.card, .product-card {
  background: #111;
  border: 1px solid #333;
  transition: 0.3s;
  border-radius: 18px;
  box-shadow: 0 0 0 transparent;
}
.card:hover, .product-card:hover {
  border-color: #00eaff;
  box-shadow: 0 0 15px #00eaff66, 0 0 40px #00eaff33;
  transform: scale(1.02);
}

h1::after {
  content: '|';
  animation: blink 0.7s infinite;
  color: #00eaff;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-thumb {
  background: linear-gradient(#00f5a0, #00d9f5);
  border-radius: 10px;
}
::-webkit-scrollbar-track {
  background: #111;
}

/* === FEATURES SECTION STYLE === */
.features-section {
  background: rgba(15, 15, 15, 0.7);
  backdrop-filter: blur(8px);
  border-radius: 24px;
  padding: 40px 20px;
  margin: 50px auto;
  max-width: 1200px;
  box-shadow: 0 0 30px rgba(0, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
}

/* Section Title */
.features-section h2 {
  font-size: 2.5rem;
  text-align: center;
  color: #00ffe7;
  margin-bottom: 30px;
  text-shadow: 0 0 10px #00ffe7aa;
  animation: glowTitle 2s ease-in-out infinite alternate;
}

@keyframes glowTitle {
  from {
    text-shadow: 0 0 10px #00ffe7aa;
  }
  to {
    text-shadow: 0 0 20px #00ffe7;
  }
}

/* Feature Item Container */
.feature-item {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 25px;
  padding: 15px 20px;
  background: #1a1a1a;
  border-radius: 16px;
  box-shadow: 0 0 12px rgba(0, 255, 255, 0.1);
  transition: all 0.3s ease;
  cursor: pointer;
}

.feature-item:hover {
  background: #111;
  transform: scale(1.03);
  box-shadow: 0 0 24px rgba(0, 255, 255, 0.3);
}

/* Feature Icon */
.feature-icon {
  font-size: 28px;
  color: #00ffe7;
  min-width: 32px;
  filter: drop-shadow(0 0 6px #00ffe7aa);
}

/* Feature Text */
.feature-text {
  font-size: 1.1rem;
  color: #f0f0f0;
  font-weight: 500;
}

/* === Responsive Design === */
@media screen and (max-width: 768px) {
  .features-section {
    padding: 30px 15px;
  }
  .features-section h2 {
    font-size: 1.8rem;
  }
  .feature-text {
    font-size: 1rem;
  }
}

/* === Universal Reset for Features Section === */
ul, .features, .feature-list {
  list-style: none !important;
  padding-left: 0 !important;
}

/* === Style Each Feature Item === */
.features li, .feature-list li, li.feature {
  position: relative;
  background: rgba(20, 20, 20, 0.85);
  border: 1px solid #00f5ff44;
  border-radius: 18px;
  padding: 16px 20px 16px 50px;
  color: #f3f3f3;
  font-size: 1.1rem;
  margin-bottom: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 0 10px rgba(0, 255, 255, 0.1);
}

/* === Add Custom Icon Bullet === */
.features li::before, .feature-list li::before, li.feature::before {
  content: "✨";
  position: absolute;
  left: 20px;
  top: 16px;
  font-size: 1.2rem;
  color: #00f5ff;
  text-shadow: 0 0 10px #00f5ff99;
}

/* === Hover Animation === */
.features li:hover, .feature-list li:hover {
  transform: scale(1.03);
  background: rgba(30, 30, 30, 0.9);
  box-shadow: 0 0 25px #00f5ff33, inset 0 0 8px #00f5ff22;
  border-color: #00f5ff;
}

/* === Title Styling (if present above features) === */
.features-title, .features h2, .features-heading {
  font-size: 2.2rem;
  text-align: center;
  margin-bottom: 30px;
  color: #00f5ff;
  text-shadow: 0 0 12px #00f5ff88;
  animation: pulseText 2.5s ease-in-out infinite alternate;
}

@keyframes pulseText {
  from {
    text-shadow: 0 0 12px #00f5ff55;
  }
  to {
    text-shadow: 0 0 25px #00f5ff;
  }
}

/* === Mobile Tweaks === */
@media (max-width: 768px) {
  .features li {
    font-size: 1rem;
    padding-left: 45px;
  }
}

 /* ==== GLOBAL RESET & BASE THEME ==== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Inter', sans-serif;
  background-color: #0e0e0e;
  color: #ffffff;
  scroll-behavior: smooth;
}
a {
  color: #58a6ff;
  text-decoration: none;
  transition: 0.3s ease;
}
a:hover {
  color: #1f6feb;
}
img {
  max-width: 100%;
  border-radius: 12px;
  display: block;
}

/* ==== SCROLLBAR ==== */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-thumb {
  background-color: #2f2f2f;
  border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
  background-color: #444;
}

/* ==== BUTTON STYLES ==== */
.button {
  background: #1f6feb;
  color: white;
  padding: 12px 20px;
  border: none;
  border-radius: 10px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
}
.button:hover {
  background: #58a6ff;
}
.button-outline {
  background: transparent;
  border: 2px solid #58a6ff;
  color: #58a6ff;
}
.button-outline:hover {
  background: #1f6feb;
  color: white;
}
.button-glow {
  background: linear-gradient(135deg, #1f6feb, #58a6ff);
  box-shadow: 0 0 20px #58a6ff66;
}
.button-glow:hover {
  box-shadow: 0 0 30px #58a6ffaa;
}

/* ==== CARD STYLES ==== */
.card {
  background: #161616;
  border-radius: 16px;
  padding: 25px;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s ease;
}
.card:hover {
  transform: translateY(-5px);
}

/* ==== HERO SECTION ==== */
.hero {
  text-align: center;
  padding: 80px 20px;
  background: linear-gradient(135deg, #151515, #0a0a0a);
  border-bottom: 1px solid #2a2a2a;
}
.hero h1 {
  font-size: 3rem;
  background: linear-gradient(to right, #58a6ff, #1f6feb);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero p {
  font-size: 1.2rem;
  margin-top: 10px;
  color: #bbbbbb;
}

/* ==== GRID SYSTEM ==== */
.grid {
  display: grid;
  gap: 30px;
}
.grid-2 {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}
.grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}
.grid-center {
  justify-items: center;
}

/* ==== ANIMATIONS ==== */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease-out;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
@keyframes zoomIn {
  from { transform: scale(0.9); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}
.zoom-in {
  animation: zoomIn 0.5s ease-in-out forwards;
}

/* ==== TEXT & BADGES ==== */
.text-glow {
  text-shadow: 0 0 8px #58a6ff99;
}
.gradient-text {
  background: linear-gradient(to right, #1f6feb, #58a6ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.badge {
  display: inline-block;
  background: #1f6feb;
  color: #fff;
  padding: 4px 12px;
  border-radius: 8px;
  font-size: 0.75rem;
  text-transform: uppercase;
  font-weight: bold;
}

/* ==== INPUTS & FORMS ==== */
input, select, textarea {
  background: #1a1a1a;
  color: white;
  border: 1px solid #333;
  padding: 12px;
  border-radius: 10px;
  width: 100%;
}
input:focus, textarea:focus {
  outline: none;
  border-color: #1f6feb;
  box-shadow: 0 0 6px #1f6feb88;
}

/* ==== UTILITIES ==== */
.mt-2 { margin-top: 20px; }
.mb-2 { margin-bottom: 20px; }
.pt-2 { padding-top: 20px; }
.pb-2 { padding-bottom: 20px; }
.rounded { border-radius: 12px; }
.shadow { box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4); }
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.text-center { text-align: center; }
.text-muted { color: #888; }
.w-full { width: 100%; }