/* Import AOS for animations */
@import url('https://unpkg.com/aos@2.3.1/dist/aos.css');

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  color: #333;
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Animated Background */
.animated-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  background: linear-gradient(45deg, #0f0f23 0%, #1a1a2e 25%, #16213e 50%, #0f3460 75%, #533483 100%);
  overflow: hidden;
}

.floating-shapes {
  position: absolute;
  width: 100%;
  height: 100%;
}

.shape {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(45deg, rgba(0, 255, 255, 0.1), rgba(255, 215, 0, 0.1));
  animation: float 20s infinite linear;
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.2);
}

.shape-1 {
  width: 120px;
  height: 120px;
  top: 10%;
  left: 10%;
  animation-delay: 0s;
  animation-duration: 25s;
  background: linear-gradient(45deg, rgba(0, 255, 255, 0.15), rgba(0, 191, 255, 0.1));
}

.shape-2 {
  width: 180px;
  height: 180px;
  top: 70%;
  left: 80%;
  animation-delay: 5s;
  animation-duration: 30s;
  background: linear-gradient(45deg, rgba(255, 215, 0, 0.12), rgba(255, 165, 0, 0.08));
}

.shape-3 {
  width: 90px;
  height: 90px;
  top: 40%;
  left: 70%;
  animation-delay: 10s;
  animation-duration: 20s;
  background: linear-gradient(45deg, rgba(50, 205, 50, 0.1), rgba(0, 255, 127, 0.08));
}

.shape-4 {
  width: 150px;
  height: 150px;
  top: 80%;
  left: 20%;
  animation-delay: 15s;
  animation-duration: 35s;
  background: linear-gradient(45deg, rgba(255, 20, 147, 0.1), rgba(255, 105, 180, 0.08));
}

.shape-5 {
  width: 200px;
  height: 200px;
  top: 20%;
  left: 60%;
  animation-delay: 8s;
  animation-duration: 28s;
  background: linear-gradient(45deg, rgba(138, 43, 226, 0.1), rgba(147, 112, 219, 0.08));
}

.shape-6 {
  width: 110px;
  height: 110px;
  top: 60%;
  left: 40%;
  animation-delay: 12s;
  animation-duration: 22s;
  background: linear-gradient(45deg, rgba(255, 69, 0, 0.1), rgba(255, 140, 0, 0.08));
}

/* Additional interactive shapes */
.shape-7 {
  width: 80px;
  height: 80px;
  top: 30%;
  left: 5%;
  animation-delay: 3s;
  animation-duration: 40s;
  background: linear-gradient(45deg, rgba(0, 255, 255, 0.12), rgba(64, 224, 208, 0.08));
}

.shape-8 {
  width: 160px;
  height: 160px;
  top: 50%;
  left: 85%;
  animation-delay: 18s;
  animation-duration: 32s;
  background: linear-gradient(45deg, rgba(255, 215, 0, 0.1), rgba(255, 255, 0, 0.06));
}

@keyframes float {
  0% {
    transform: translateY(0px) rotate(0deg) scale(1);
    opacity: 0.8;
  }
  25% {
    transform: translateY(-50px) rotate(90deg) scale(1.1);
    opacity: 0.6;
  }
  50% {
    transform: translateY(-100px) rotate(180deg) scale(0.9);
    opacity: 0.4;
  }
  75% {
    transform: translateY(-50px) rotate(270deg) scale(1.05);
    opacity: 0.7;
  }
  100% {
    transform: translateY(0px) rotate(360deg) scale(1);
    opacity: 0.8;
  }
}

.gradient-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(circle at 20% 80%, rgba(0, 255, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 40% 40%, rgba(50, 205, 50, 0.08) 0%, transparent 50%),
    linear-gradient(135deg,
      rgba(15, 15, 35, 0.9) 0%,
      rgba(26, 26, 46, 0.8) 25%,
      rgba(22, 33, 62, 0.7) 50%,
      rgba(15, 52, 96, 0.8) 75%,
      rgba(83, 52, 131, 0.9) 100%);
  animation: gradientShift 20s ease-in-out infinite;
}

@keyframes gradientShift {
  0%, 100% {
    opacity: 0.9;
    transform: scale(1) rotate(0deg);
  }
  33% {
    opacity: 0.7;
    transform: scale(1.02) rotate(1deg);
  }
  66% {
    opacity: 0.8;
    transform: scale(0.98) rotate(-1deg);
  }
}

/* Interactive Particles */
.particles {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: rgba(0, 255, 255, 0.8);
  border-radius: 50%;
  animation: particleFloat 15s infinite linear;
  box-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}

.particle:nth-child(1) {
  left: 10%;
  animation-delay: 0s;
  animation-duration: 20s;
  background: rgba(0, 255, 255, 0.8);
}

.particle:nth-child(2) {
  left: 20%;
  animation-delay: 2s;
  animation-duration: 18s;
  background: rgba(255, 215, 0, 0.8);
}

.particle:nth-child(3) {
  left: 30%;
  animation-delay: 4s;
  animation-duration: 22s;
  background: rgba(50, 205, 50, 0.8);
}

.particle:nth-child(4) {
  left: 40%;
  animation-delay: 6s;
  animation-duration: 16s;
  background: rgba(255, 105, 180, 0.8);
}

.particle:nth-child(5) {
  left: 50%;
  animation-delay: 8s;
  animation-duration: 24s;
  background: rgba(138, 43, 226, 0.8);
}

.particle:nth-child(6) {
  left: 60%;
  animation-delay: 10s;
  animation-duration: 19s;
  background: rgba(255, 69, 0, 0.8);
}

.particle:nth-child(7) {
  left: 70%;
  animation-delay: 12s;
  animation-duration: 21s;
  background: rgba(64, 224, 208, 0.8);
}

.particle:nth-child(8) {
  left: 80%;
  animation-delay: 14s;
  animation-duration: 17s;
  background: rgba(255, 255, 0, 0.8);
}

.particle:nth-child(9) {
  left: 90%;
  animation-delay: 16s;
  animation-duration: 23s;
  background: rgba(255, 20, 147, 0.8);
}

.particle:nth-child(10) {
  left: 95%;
  animation-delay: 18s;
  animation-duration: 25s;
  background: rgba(0, 191, 255, 0.8);
}

@keyframes particleFloat {
  0% {
    transform: translateY(100vh) scale(0);
    opacity: 0;
  }
  10% {
    opacity: 1;
    transform: translateY(90vh) scale(1);
  }
  90% {
    opacity: 1;
    transform: translateY(10vh) scale(1);
  }
  100% {
    transform: translateY(-10vh) scale(0);
    opacity: 0;
  }
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: linear-gradient(135deg, rgba(15, 15, 35, 0.98), rgba(26, 26, 46, 0.95));
  backdrop-filter: blur(20px);
  z-index: 1000;
  transition: all 0.3s ease;
  box-shadow: 0 4px 30px rgba(0, 255, 255, 0.15);
  border-bottom: 1px solid rgba(0, 255, 255, 0.3);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.nav-logo h2 {
  background: linear-gradient(45deg, #00ffff, #ffd700);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
  font-size: 1.5rem;
  text-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
}

.nav-menu {
  display: flex;
  list-style: none;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
  padding: 0.5rem 1rem;
  border-radius: 25px;
}

.nav-link:hover {
  color: #00ffff;
  background: rgba(0, 255, 255, 0.1);
  box-shadow: 0 0 15px rgba(0, 255, 255, 0.2);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: linear-gradient(45deg, #00ffff, #ffd700);
  transition: width 0.3s ease;
  border-radius: 1px;
}

.nav-link:hover::after {
  width: 80%;
}

.cart-icon {
  position: relative;
  color: rgba(255, 255, 255, 0.9) !important;
  transition: all 0.3s ease;
}

.cart-icon:hover {
  color: #ffd700 !important;
  transform: scale(1.1);
}

.cart-count {
  position: absolute;
  top: -8px;
  right: -8px;
  background: linear-gradient(45deg, #ff6b6b, #ff4757);
  color: white;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 10px rgba(255, 107, 107, 0.5);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: #333;
  margin: 3px 0;
  transition: 0.3s;
}
/* Hero Section */
.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  background: transparent;
}

.hero-content {
  z-index: 1;
  max-width: 800px;
  padding: 0 2rem;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
}

.hero-text {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
}

/* Override AOS and any other library styling */
[data-aos="fade-up"],
[data-aos="fade-up"] *,
.hero-text,
.hero-text *,
.hero-content,
.hero-content * {
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
  border: none !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  outline: none !important;
}

/* Ensure text gradients still work */
.hero-text h1 {
  background: linear-gradient(45deg, #ffffff, #00ffff, #ffd700, #ffffff) !important;
  background-size: 300% 300% !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
}

/* Additional reset for any potential browser debugging or extension styling */
.hero,
.hero *,
.hero-content,
.hero-content *,
.hero-text,
.hero-text * {
  border: 0 !important;
  outline: 0 !important;
  box-shadow: none !important;
  background-color: transparent !important;
  background-image: none !important;
  backdrop-filter: none !important;
}

/* Re-enable specific backgrounds we want */
.hero-text h1 {
  background: linear-gradient(45deg, #ffffff, #00ffff, #ffd700, #ffffff) !important;
  background-size: 300% 300% !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
}

.hero-text h1 {
  font-size: 4rem;
  font-weight: 700;
  background: linear-gradient(45deg, #ffffff, #00ffff, #ffd700, #ffffff);
  background-size: 300% 300%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
  text-shadow: 0 0 30px rgba(0, 255, 255, 0.5);
  animation: fadeInUp 1s ease-out, gradientMove 4s ease-in-out infinite;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}

.hero-text h1::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, transparent, rgba(0, 255, 255, 0.1), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
  border-radius: 10px;
}

.hero-text h1:hover {
  transform: scale(1.05);
  text-shadow: 0 0 50px rgba(0, 255, 255, 0.8);
}

.hero-text h1:hover::before {
  opacity: 1;
}

.hero-text h1::after {
  content: '';
  position: absolute;
  top: -20px;
  left: -20px;
  right: -20px;
  bottom: -20px;
  background: radial-gradient(circle, rgba(0, 255, 255, 0.1) 0%, transparent 70%);
  border-radius: 20px;
  animation: pulseGlow 3s ease-in-out infinite;
  z-index: -2;
}

@keyframes pulseGlow {
  0%, 100% {
    opacity: 0.3;
    transform: scale(1);
  }
  50% {
    opacity: 0.8;
    transform: scale(1.1);
  }
}

@keyframes gradientMove {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

@keyframes heroClickPulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
    text-shadow: 0 0 80px rgba(0, 255, 255, 1);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes sparkleFloat {
  0% {
    opacity: 1;
    transform: translateY(0) scale(0);
  }
  50% {
    opacity: 1;
    transform: translateY(-30px) scale(1);
  }
  100% {
    opacity: 0;
    transform: translateY(-60px) scale(0);
  }
}

@keyframes floatParticle {
  0%, 100% {
    transform: translateY(0px) translateX(0px) rotate(0deg);
    opacity: 0.6;
  }
  25% {
    transform: translateY(-20px) translateX(10px) rotate(90deg);
    opacity: 1;
  }
  50% {
    transform: translateY(-10px) translateX(-10px) rotate(180deg);
    opacity: 0.8;
  }
  75% {
    transform: translateY(-30px) translateX(5px) rotate(270deg);
    opacity: 1;
  }
}

.hero-text p {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
  animation: fadeInUp 1s ease-out 0.3s both;
  transition: all 0.3s ease;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.hero-text p:hover {
  color: rgba(0, 255, 255, 0.9);
  text-shadow: 0 0 30px rgba(0, 255, 255, 0.6);
  transform: translateY(-2px);
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 1s ease-out 0.6s both;
}

.hero-buttons .btn {
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
}

.hero-buttons .btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.6s ease;
}

.hero-buttons .btn:hover::before {
  left: 100%;
}

.hero-buttons .btn:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 10px 30px rgba(0, 255, 255, 0.4);
}

.btn {
  padding: 1rem 2rem;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  font-size: 1rem;
  display: inline-block;
}

.btn-primary {
  background: linear-gradient(45deg, #667eea, #764ba2);
  color: white;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.6);
}

.btn-secondary {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.btn-secondary:hover {
  background: white;
  color: #667eea;
  transform: translateY(-2px);
}

.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s infinite;
}

.scroll-arrow {
  width: 30px;
  height: 30px;
  border: 2px solid white;
  border-top: none;
  border-left: none;
  transform: rotate(45deg);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-10px);
  }
  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}

/* Section Headers */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  font-size: 3rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1rem;
  position: relative;
  text-shadow: 0 0 30px rgba(0, 255, 255, 0.3);
}

.section-header h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(45deg, #00ffff, #ffd700);
  border-radius: 2px;
  box-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}

.section-header p {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 600px;
  margin: 0 auto;
}

/* Products Section */
.products-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, rgba(15, 15, 35, 0.85), rgba(26, 26, 46, 0.8));
  backdrop-filter: blur(15px);
  position: relative;
  border-top: 1px solid rgba(0, 255, 255, 0.2);
  border-bottom: 1px solid rgba(0, 255, 255, 0.2);
}

.products-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 10% 20%, rgba(0, 255, 255, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 90% 80%, rgba(255, 215, 0, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

/* Animated Product Cards */
.product-card {
  opacity: 0;
  transform: translateX(-100px);
  transition: all 0.8s ease;
}

.product-card:nth-child(even) {
  transform: translateX(100px);
}

.product-card.animate-in {
  opacity: 1;
  transform: translateX(0);
}

.product-card:nth-child(1) { transition-delay: 0.1s; }
.product-card:nth-child(2) { transition-delay: 0.2s; }
.product-card:nth-child(3) { transition-delay: 0.3s; }
.product-card:nth-child(4) { transition-delay: 0.4s; }
.product-card:nth-child(5) { transition-delay: 0.5s; }
.product-card:nth-child(6) { transition-delay: 0.6s; }
.product-card:nth-child(7) { transition-delay: 0.7s; }
.product-card:nth-child(8) { transition-delay: 0.8s; }
.product-card:nth-child(9) { transition-delay: 0.9s; }
.product-card:nth-child(10) { transition-delay: 1.0s; }
.product-card:nth-child(11) { transition-delay: 1.1s; }
.product-card:nth-child(12) { transition-delay: 1.2s; }
.product-card:nth-child(13) { transition-delay: 1.3s; }

.product-card {
  background: linear-gradient(145deg, rgba(26, 26, 46, 0.9), rgba(15, 15, 35, 0.95));
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 255, 255, 0.1);
  transition: all 0.3s ease;
  position: relative;
  border: 1px solid rgba(0, 255, 255, 0.2);
  backdrop-filter: blur(10px);
}

.product-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 255, 255, 0.3);
  border-color: rgba(0, 255, 255, 0.5);
}

.product-image {
  position: relative;
  overflow: hidden;
  height: 250px;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.product-card:hover .product-image img {
  transform: scale(1.1);
}

.product-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(102, 126, 234, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.product-card:hover .product-overlay {
  opacity: 1;
}

.btn-quick-view,
.btn-add-cart {
  padding: 0.8rem 1.5rem;
  border: 2px solid white;
  background: transparent;
  color: white;
  border-radius: 25px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-quick-view:hover,
.btn-add-cart:hover {
  background: white;
  color: #667eea;
}

.product-info {
  padding: 1.5rem;
  text-align: center;
}

.product-info h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 0.5rem;
  line-height: 1.4;
}

.product-info p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  margin-bottom: 1rem;
  line-height: 1.5;
}

.product-price {
  font-size: 1.5rem;
  font-weight: 700;
  background: linear-gradient(45deg, #00ffff, #ffd700);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
/* About Section */
.about-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, rgba(22, 33, 62, 0.9), rgba(15, 52, 96, 0.85));
  backdrop-filter: blur(15px);
  border-top: 1px solid rgba(255, 215, 0, 0.2);
  border-bottom: 1px solid rgba(255, 215, 0, 0.2);
  position: relative;
}

.about-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 80% 20%, rgba(255, 215, 0, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 20% 80%, rgba(50, 205, 50, 0.06) 0%, transparent 50%);
  pointer-events: none;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.about-text h2 {
  font-size: 2.5rem;
  font-weight: 700;
  background: linear-gradient(45deg, #ffd700, #00ffff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1.5rem;
  text-shadow: 0 0 30px rgba(255, 215, 0, 0.3);
}

.about-text p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.about-features {
  display: grid;
  gap: 1.5rem;
}

.feature {
  display: flex;
  align-items: center;
  gap: 1rem;
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.8s ease;
}

.feature.animate-in {
  opacity: 1;
  transform: translateX(0);
}

.feature:nth-child(1) { transition-delay: 0.2s; }
.feature:nth-child(2) { transition-delay: 0.4s; }
.feature:nth-child(3) { transition-delay: 0.6s; }

.feature i {
  font-size: 2rem;
  color: #667eea;
  width: 60px;
  text-align: center;
}

.feature h4 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #ffd700;
  margin-bottom: 0.5rem;
}

.feature p {
  color: #e0e0e0;
  font-size: 0.9rem;
  margin: 0;
}

.about-image {
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.8s ease;
}

.about-image.animate-in {
  opacity: 1;
  transform: translateX(0);
}

.image-placeholder {
  width: 300px;
  height: 300px;
  background: linear-gradient(45deg, #667eea, #764ba2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 4rem;
  box-shadow: 0 20px 40px rgba(102, 126, 234, 0.3);
}

/* Contact Section */
.contact-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, rgba(83, 52, 131, 0.9), rgba(15, 15, 35, 0.85));
  backdrop-filter: blur(15px);
  border-top: 1px solid rgba(50, 205, 50, 0.2);
  position: relative;
}

.contact-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 30% 40%, rgba(50, 205, 50, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 70% 60%, rgba(0, 255, 255, 0.06) 0%, transparent 50%);
  pointer-events: none;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-top: 2rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem;
  background: linear-gradient(145deg, rgba(26, 26, 46, 0.9), rgba(15, 15, 35, 0.95));
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 255, 255, 0.1);
  transition: all 0.8s ease;
  border: 1px solid rgba(0, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  opacity: 0;
  transform: translateY(50px);
}

.contact-item.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.contact-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 255, 255, 0.2);
  border-color: rgba(0, 255, 255, 0.4);
}

.contact-item i {
  font-size: 2rem;
  background: linear-gradient(45deg, #00ffff, #ffd700);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  width: 60px;
  text-align: center;
}

.contact-item h4 {
  font-size: 1.2rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 0.5rem;
}

.contact-item p {
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

.contact-form {
  background: linear-gradient(145deg, rgba(26, 26, 46, 0.9), rgba(15, 15, 35, 0.95));
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 255, 255, 0.1);
  border: 1px solid rgba(0, 255, 255, 0.2);
  backdrop-filter: blur(10px);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1rem;
  border: 2px solid rgba(0, 255, 255, 0.3);
  border-radius: 10px;
  font-size: 1rem;
  transition: all 0.3s ease;
  font-family: 'Poppins', sans-serif;
  background: rgba(15, 15, 35, 0.8);
  color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(5px);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #00ffff;
  box-shadow: 0 0 15px rgba(0, 255, 255, 0.3);
  background: rgba(15, 15, 35, 0.9);
}

/* Footer */
.footer {
  background: linear-gradient(135deg, rgba(15, 15, 35, 0.95), rgba(26, 26, 46, 0.9));
  color: white;
  padding: 3rem 0 1rem;
  border-top: 1px solid rgba(0, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(0, 255, 255, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(255, 215, 0, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
}

.footer-section h3,
.footer-section h4 {
  margin-bottom: 1rem;
  background: linear-gradient(45deg, #00ffff, #ffd700);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-section p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-section ul li a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-section ul li a:hover {
  color: #00ffff;
  text-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: linear-gradient(45deg, #00ffff, #ffd700);
  color: white;
  border-radius: 50%;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 0 15px rgba(0, 255, 255, 0.3);
}

.social-links a:hover {
  transform: translateY(-3px) scale(1.1);
  box-shadow: 0 5px 20px rgba(0, 255, 255, 0.5);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(0, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.7);
  position: relative;
  z-index: 1;
}
/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(5px);
}

.modal-content {
  background: linear-gradient(145deg, rgba(26, 26, 46, 0.95), rgba(15, 15, 35, 0.98));
  margin: 5% auto;
  padding: 0;
  border-radius: 20px;
  width: 90%;
  max-width: 800px;
  position: relative;
  animation: modalSlideIn 0.3s ease-out;
  border: 1px solid rgba(0, 255, 255, 0.3);
  backdrop-filter: blur(15px);
  box-shadow: 0 20px 60px rgba(0, 255, 255, 0.2);
}

@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: translateY(-50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.close {
  position: absolute;
  right: 20px;
  top: 20px;
  font-size: 2rem;
  font-weight: bold;
  cursor: pointer;
  z-index: 1;
  color: #666;
  transition: color 0.3s ease;
}

.close:hover {
  color: #333;
}

.modal-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  padding: 2rem;
}

.modal-image img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 15px;
}

.modal-info h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 1rem;
}

.modal-info p {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.modal-price {
  font-size: 2rem;
  font-weight: 700;
  background: linear-gradient(45deg, #00ffff, #ffd700);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 2rem;
}

.modal-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.quantity-selector {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border: 2px solid #f0f0f0;
  border-radius: 10px;
  padding: 0.5rem;
}

.quantity-selector button {
  background: #667eea;
  color: white;
  border: none;
  width: 30px;
  height: 30px;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
}

.quantity-selector span {
  min-width: 30px;
  text-align: center;
  font-weight: 600;
}

/* Cart Sidebar */
.cart-sidebar {
  position: fixed;
  right: -400px;
  top: 0;
  width: 400px;
  height: 100vh;
  background: white;
  box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
  z-index: 1500;
  transition: right 0.3s ease;
  display: flex;
  flex-direction: column;
}

.cart-sidebar.open {
  right: 0;
}

.cart-header {
  padding: 1.5rem;
  border-bottom: 1px solid #f0f0f0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cart-header h3 {
  margin: 0;
  color: #333;
}

.close-cart {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: #666;
}

.cart-items {
  flex: 1;
  padding: 1rem;
  overflow-y: auto;
}

.cart-item {
  display: flex;
  gap: 1rem;
  padding: 1rem;
  border-bottom: 1px solid #f0f0f0;
}

.cart-item img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 8px;
}

.cart-item-info {
  flex: 1;
}

.cart-item-info h4 {
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  color: #333;
}

.cart-item-price {
  color: #667eea;
  font-weight: 600;
}

.cart-item-quantity {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.cart-item-quantity button {
  background: #f0f0f0;
  border: none;
  width: 25px;
  height: 25px;
  border-radius: 3px;
  cursor: pointer;
}

.cart-footer {
  padding: 1.5rem;
  border-top: 1px solid #f0f0f0;
}

.cart-total {
  margin-bottom: 1rem;
  font-size: 1.2rem;
  text-align: center;
}

.checkout-btn {
  width: 100%;
  padding: 1rem;
  font-size: 1.1rem;
}

/* Checkout Modal */
.checkout-content {
  padding: 2rem;
  max-height: 80vh;
  overflow-y: auto;
}

.checkout-content h3 {
  margin-bottom: 2rem;
  background: linear-gradient(45deg, #00ffff, #ffd700);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-align: center;
}

.checkout-content .form-group {
  margin-bottom: 1rem;
}

.checkout-content label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
}

.order-summary {
  background: rgba(15, 15, 35, 0.8);
  padding: 1.5rem;
  border-radius: 10px;
  margin: 2rem 0;
  border: 1px solid rgba(0, 255, 255, 0.2);
}

.order-summary h4 {
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.95);
}

.checkout-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #e0e0e0;
}

.total-amount {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 2px solid #667eea;
  text-align: center;
  font-size: 1.2rem;
}
/* Parallax Effects */
.parallax-section {
  position: relative;
  overflow: hidden;
}

.parallax-bg {
  position: absolute;
  top: -20%;
  left: 0;
  width: 100%;
  height: 120%;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  will-change: transform;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-text h1 {
    font-size: 3rem;
  }

  .section-header h2 {
    font-size: 2.5rem;
  }

  .products-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }

  .about-content,
  .contact-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .modal-body {
    grid-template-columns: 1fr;
  }

  .cart-sidebar {
    width: 350px;
  }
}

@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    left: -100%;
    top: 70px;
    flex-direction: column;
    background: linear-gradient(135deg, rgba(15, 15, 35, 0.98), rgba(26, 26, 46, 0.95));
    width: 100%;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 10px 27px rgba(0, 255, 255, 0.2);
    backdrop-filter: blur(20px);
    padding: 2rem 0;
    border-bottom: 1px solid rgba(0, 255, 255, 0.3);
  }

  .nav-menu.active {
    left: 0;
  }

  .hamburger {
    display: flex;
  }

  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .hamburger.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .hero-text h1 {
    font-size: 2.5rem;
  }

  .hero-text p {
    font-size: 1.1rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 200px;
  }

  .section-header h2 {
    font-size: 2rem;
  }

  .products-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
  }

  .about-text h2 {
    font-size: 2rem;
  }

  .feature {
    flex-direction: column;
    text-align: center;
  }

  .image-placeholder {
    width: 200px;
    height: 200px;
    font-size: 3rem;
  }

  .contact-form {
    padding: 1.5rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .cart-sidebar {
    width: 100%;
    right: -100%;
  }

  .modal-content {
    width: 95%;
    margin: 10% auto;
  }

  .checkout-content {
    padding: 1rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

  .hero-text h1 {
    font-size: 2rem;
  }

  .hero-text p {
    font-size: 1rem;
  }

  .section-header h2 {
    font-size: 1.8rem;
  }

  .products-grid {
    grid-template-columns: 1fr;
  }

  .product-overlay {
    flex-direction: column;
  }

  .btn-quick-view,
  .btn-add-cart {
    padding: 0.6rem 1rem;
    font-size: 0.9rem;
  }

  .about-text h2 {
    font-size: 1.8rem;
  }

  .image-placeholder {
    width: 150px;
    height: 150px;
    font-size: 2rem;
  }

  .contact-item {
    flex-direction: column;
    text-align: center;
  }

  .modal-content {
    margin: 5% auto;
  }

  .modal-body {
    padding: 1rem;
  }
}

/* Smooth Scrolling and Performance */
* {
  scroll-behavior: smooth;
}

.parallax-element {
  will-change: transform;
}

/* Loading Animation */
.loading {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.loading.loaded {
  opacity: 1;
  transform: translateY(0);
}

/* Utility Classes */
.text-center {
  text-align: center;
}

.mb-2 {
  margin-bottom: 2rem;
}

.mt-2 {
  margin-top: 2rem;
}

.hidden {
  display: none;
}

.visible {
  display: block;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: rgba(15, 15, 35, 0.8);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(45deg, #00ffff, #ffd700);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(45deg, #ffd700, #00ffff);
}

/* Click Effect Animation */
@keyframes clickRipple {
  0% {
    transform: translate(-50%, -50%) scale(0);
    opacity: 1;
  }
  100% {
    transform: translate(-50%, -50%) scale(10);
    opacity: 0;
  }
}

/* Hover effects for interactive elements */
.shape:hover {
  animation-play-state: paused;
  transform: scale(1.2) !important;
  box-shadow: 0 0 30px rgba(0, 255, 255, 0.6) !important;
  transition: all 0.3s ease;
}

.particle:hover {
  transform: scale(2) !important;
  box-shadow: 0 0 20px currentColor !important;
  transition: all 0.3s ease;
}
