:root {
  /* Premium Dark Theme Colors */
  --bg-gradient: radial-gradient(ellipse at top, #141724 0%, #06070a 100%);
  --surface-color-rgb: 255, 255, 255;

  /* Rich Neon Green */
  --primary-color: #39FF14;
  --primary-color-rgb: 57, 255, 20;
  --primary-color-hover: #4dff2e;

  --text-primary: #ffffff;
  --text-secondary: #a0a5b5;

  /* Typography */
  --font-main: 'Outfit', sans-serif;

  /* Spacing */
  --spacing-sm: 0.5rem;
  --spacing-md: 1rem;
  --spacing-lg: 2rem;
  --spacing-xl: 5rem;

  /* Glassmorphism settings */
  --glass-bg: rgba(20, 24, 38, 0.4);
  --glass-border: rgba(255, 255, 255, 0.05);
  --glass-blur: 16px;

  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  --transition-slow: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Reset & Base */
*,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-user-drag: none;
  -khtml-user-drag: none;
  -moz-user-drag: none;
  -o-user-drag: none;
  user-select: none;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
  /* Accounts for fixed header */
  font-family: var(--font-main);
  background: var(--bg-gradient);
  background-attachment: fixed;
  color: var(--text-primary);
}

body {
  min-height: 100vh;
  overflow-x: hidden;
  cursor: none;
}

/* Custom Cursor */
.cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: var(--primary-color);
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.3s, height 0.3s, background-color 0.3s, box-shadow 0.3s;
  box-shadow: 0 0 15px var(--primary-color);
  mix-blend-mode: screen;
}

.cursor.hovering {
  width: 40px;
  height: 40px;
  background-color: rgba(var(--primary-color-rgb), 0.1);
  border: 1px solid var(--primary-color);
  box-shadow: 0 0 10px rgba(var(--primary-color-rgb), 0.5);
}

/* Shared Classes */
.container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 var(--spacing-lg);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.8rem;
  border-radius: 8px;
  font-family: var(--font-main);
  font-weight: 600;
  font-size: 1rem;
  cursor: none;
  text-decoration: none;
  transition: all var(--transition-normal);
  text-transform: uppercase;
  letter-spacing: 1px;
  border: none;
}

.btn--primary {
  background: linear-gradient(135deg, #39ff14, #08c800);
  color: #000;
  box-shadow: 0 5px 20px rgba(var(--primary-color-rgb), 0.3);
}

.btn--primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(var(--primary-color-rgb), 0.6);
  background: linear-gradient(135deg, #4dff2e, #1ada12);
}

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

.btn--outline:hover {
  background-color: rgba(var(--primary-color-rgb), 0.08);
  box-shadow: 0 5px 15px rgba(var(--primary-color-rgb), 0.2);
}

.glass-panel {
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

/* Section Globals */
section {
  padding: var(--spacing-xl) 0;
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: var(--spacing-xl);
}

.section-title {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: var(--spacing-md);
  background: linear-gradient(to right, #fff, var(--primary-color));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-desc {
  color: var(--text-secondary);
  font-size: 1.15rem;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

.text-neon {
  color: var(--primary-color);
  text-shadow: 0 0 10px rgba(var(--primary-color-rgb), 0.5);
}

/* Header */
.header {
  position: fixed;
  top: 15px;
  left: 50%;
  transform: translateX(-50%);
  width: 95%;
  max-width: 1300px;
  z-index: 100;
  padding: 10px 20px;
  border-radius: 20px;
}

.header__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.header__logo-img {
  height: 45px;
  width: auto;
  filter: drop-shadow(0 0 8px rgba(var(--primary-color-rgb), 0.4));
}

.header__logo-text {
  font-size: 1.6rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.5px;
}

.header__nav-list {
  display: flex;
  gap: var(--spacing-lg);
  list-style: none;
}

.header__nav-link {
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: color var(--transition-fast);
  cursor: none;
}

.header__nav-link:hover {
  color: var(--primary-color);
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 15px;
}

#langToggle {
  padding: 8px 12px;
  font-size: 0.85rem;
  border-radius: 8px;
}

.header__cart {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  border: 1px solid var(--glass-border);
  cursor: none;
  transition: all var(--transition-normal);
}

.header__cart:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--primary-color);
}

.header__cart-count {
  position: absolute;
  top: -6px;
  right: -6px;
  background: var(--primary-color);
  color: #000;
  font-size: 0.75rem;
  font-weight: 800;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 10px rgba(var(--primary-color-rgb), 0.5);
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 100px;
}

.hero__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-xl);
  align-items: center;
}

.hero__content {
  z-index: 2;
}

.hero__title {
  font-size: 4.5rem;
  font-weight: 800;
  line-height: 1.05;
  margin-bottom: var(--spacing-lg);
}

.hero__subtitle {
  font-size: 1.25rem;
  color: var(--text-secondary);
  margin-bottom: 40px;
  line-height: 1.7;
  max-width: 500px;
}

.hero__ctas {
  display: flex;
  gap: var(--spacing-md);
}

.hero__visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  perspective: 1000px;
}

.hero__main-image {
  width: 100%;
  max-width: 350px;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 30px 40px rgba(0, 0, 0, 0.8));
  animation: float 8s ease-in-out infinite;
}

.glow-effect {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(var(--primary-color-rgb), 0.3) 0%, rgba(var(--primary-color-rgb), 0) 70%);
  z-index: 1;
  border-radius: 50%;
  filter: blur(40px);
}

@keyframes float {
  0% {
    transform: translateY(0px) scale(1);
  }

  50% {
    transform: translateY(-25px) scale(1.02);
  }

  100% {
    transform: translateY(0px) scale(1);
  }
}

/* Features */
.features__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--spacing-lg);
}

.feature-card {
  padding: 40px 30px;
  text-align: left;
  transition: transform var(--transition-normal);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-left: 1px solid rgba(255, 255, 255, 0.05);
}

.feature-card:hover {
  transform: translateY(-10px);
  border-color: rgba(var(--primary-color-rgb), 0.4);
  background: rgba(255, 255, 255, 0.03);
}

.feature-card__icon {
  font-size: 3rem;
  margin-bottom: var(--spacing-lg);
}

.feature-card__title {
  font-size: 1.6rem;
  margin-bottom: var(--spacing-sm);
  color: #fff;
  font-weight: 800;
}

.feature-card__text {
  color: var(--text-secondary);
  line-height: 1.7;
}

/* Flawless Products Grid - Organized and Symmetrical */
.products__grid {
  display: grid;
  /* Exactly symmetrical columns */
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 30px;
  align-items: stretch;
  /* crucial for equal heights */
}

.product-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform var(--transition-normal), border var(--transition-normal);
  padding: 24px;
}

.product-card:hover {
  transform: translateY(-8px);
  border-color: rgba(var(--primary-color-rgb), 0.5);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
}

/* Responsive Image Fixes */
.product-card__img-wrapper {
  position: relative !important;
  width: 100%;
  height: 220px !important;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 24px;
  padding: 0 !important;
  overflow: hidden;
}

.product-card__img-wrapper>.product-card__img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 0px;
  filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.5));
  transition: transform var(--transition-normal);
}

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

.product-card__content {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-card__title {
  font-size: 1.25rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
  /* Fixed lines to prevent layout shift */
  display: -webkit-box;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-card__price {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 16px;
}

.product-card__desc {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 24px;
  /* Lock to 2 lines */
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex-grow: 1;
}

.btn--add-cart {
  width: 100%;
  margin-top: auto;
}

/* Testimonials */
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: var(--spacing-lg);
}

.testimonial-card {
  padding: 40px;
  position: relative;
}

.testimonial-card::before {
  content: '”';
  position: absolute;
  top: -10px;
  left: 20px;
  font-size: 8rem;
  color: rgba(var(--primary-color-rgb), 0.1);
  font-family: serif;
  line-height: 1;
}

.testimonial-card__quote {
  font-size: 1.2rem;
  font-style: italic;
  line-height: 1.7;
  color: #fff;
  margin-bottom: var(--spacing-lg);
  position: relative;
  z-index: 1;
}

.testimonial-card__author {
  color: var(--primary-color);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
}

/* Contact */
.contact__wrapper {
  max-width: 700px;
  margin: 0 auto;
  padding: 50px;
}

.contact__form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-input {
  width: 100%;
  padding: 18px 20px;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  color: var(--text-primary);
  font-family: var(--font-main);
  font-size: 1rem;
  transition: all var(--transition-fast);
  cursor: none;
}

.form-input:focus {
  outline: none;
  background: rgba(0, 0, 0, 0.6);
  border-color: var(--primary-color);
  box-shadow: 0 0 15px rgba(var(--primary-color-rgb), 0.2);
}

.form-input::placeholder {
  color: var(--text-secondary);
}

/* Footer */
.footer {
  padding: 40px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  text-align: center;
  color: var(--text-secondary);
  margin-top: 60px;
}

/* Animations */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all var(--transition-slow);
}

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

.reveal-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: all var(--transition-slow);
}

.reveal-left.active {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(60px);
  transition: all var(--transition-slow);
}

.reveal-right.active {
  opacity: 1;
  transform: translateX(0);
}

/* Responsive */
@media (max-width: 992px) {
  .hero__title {
    font-size: 3.5rem;
  }

  .section-title {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .header {
    width: 100%;
    border-radius: 0;
    top: 0;
    padding: 15px;
  }

  .header__nav {
    display: none;
  }

  .hero__container {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: 60px;
  }

  .hero__subtitle {
    margin: 0 auto 30px auto;
  }

  .hero__ctas {
    justify-content: center;
  }

  .hero__visual {
    margin-top: 40px;
  }
}