/* ============================================
   VEXOBRAPLORVI.COM — MASTER STYLESHEET
   ============================================ */

/* CSS VARIABLES */
:root {
  /* Background */
  --bg-primary: #080c12;
  --bg-secondary: #0d1117;
  --bg-surface: #111827;
  --bg-card: #131b26;
  --bg-glass: rgba(13, 17, 23, 0.85);

  /* Accents */
  --accent-primary: #00d4ff;
  --accent-secondary: #7c3aed;
  --accent-green: #00e5a0;
  --accent-gold: #f59e0b;
  --accent-red: #ef4444;

  /* Text */
  --text-primary: #f0f6fc;
  --text-secondary: #8b949e;
  --text-muted: #4a5568;
  --text-accent: #00d4ff;

  /* Borders */
  --border-subtle: rgba(0, 212, 255, 0.12);
  --border-glow: rgba(0, 212, 255, 0.35);
  --border-card: rgba(255, 255, 255, 0.06);

  /* Shadows */
  --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.5);
  --shadow-glow: 0 0 30px rgba(0, 212, 255, 0.2);
  --shadow-hover: 0 8px 40px rgba(0, 212, 255, 0.25);

  /* Radius */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 18px;
  --radius-xl: 24px;

  /* Spacing */
  --section-pad: 110px;
  --container-max: 1320px;

  /* Typography */
  --font-heading: 'Rajdhani', 'Orbitron', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-brand: 'Orbitron', sans-serif;

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-smooth: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-spring: 0.45s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* RESET */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background-color: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-body);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-fast);
}

ul {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

input, textarea, select {
  font-family: var(--font-body);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* CONTAINER */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================
   HEADER
   ============================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--bg-glass);
  border-bottom: 1px solid var(--border-subtle);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: var(--transition-smooth);
}

.site-header.scrolled {
  background: rgba(8, 12, 18, 0.98);
  border-bottom-color: var(--border-glow);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 24px;
}

/* LOGO */
.logo {
  font-family: var(--font-brand);
  font-size: 1.05rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  gap: 0;
  white-space: nowrap;
  flex-shrink: 0;
}

.logo-vex {
  color: var(--accent-primary);
  text-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
}

.logo-brap {
  color: var(--text-primary);
}

.logo-dot {
  color: var(--text-muted);
  font-size: 0.75rem;
  align-self: flex-end;
  margin-bottom: 2px;
}

/* NAV */
.main-nav {}

.nav-list {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-link {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-secondary);
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  position: relative;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: var(--transition-fast);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--accent-primary);
  box-shadow: 0 0 8px var(--accent-primary);
  border-radius: 2px;
  transition: var(--transition-smooth);
}

.nav-link:hover,
.nav-link.active {
  color: var(--text-primary);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 60%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* HAMBURGER */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  border-radius: var(--radius-sm);
  transition: var(--transition-fast);
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: var(--transition-smooth);
}

.hamburger:hover span {
  background: var(--accent-primary);
}

/* MOBILE MENU */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background: var(--bg-secondary);
  border-left: 1px solid var(--border-glow);
  z-index: 2000;
  padding: 80px 32px 32px;
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
}

.mobile-menu.open {
  right: 0;
}

.mobile-close {
  position: absolute;
  top: 24px;
  right: 24px;
  font-size: 1.5rem;
  color: var(--text-secondary);
  transition: var(--transition-fast);
}

.mobile-close:hover {
  color: var(--accent-primary);
}

.mobile-nav-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mobile-nav-link {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-secondary);
  padding: 14px 0;
  border-bottom: 1px solid var(--border-card);
  transition: var(--transition-fast);
}

.mobile-nav-link:hover {
  color: var(--accent-primary);
  padding-left: 8px;
}

.mobile-cta {
  margin-top: 24px;
  text-align: center;
}

.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 1500;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-smooth);
  backdrop-filter: blur(4px);
}

.mobile-overlay.active {
  opacity: 1;
  pointer-events: all;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 12px 28px;
  border-radius: 14px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition-spring);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0);
  transition: var(--transition-fast);
}

.btn:hover::before {
  background: rgba(255, 255, 255, 0.05);
}

.btn-primary {
  background: var(--accent-primary);
  color: #080c12;
  border-color: var(--accent-primary);
  box-shadow: 0 4px 20px rgba(0, 212, 255, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 30px rgba(0, 212, 255, 0.5);
  background: #1adbff;
}

.btn-secondary {
  background: transparent;
  color: var(--accent-primary);
  border-color: var(--accent-primary);
}

.btn-secondary:hover {
  background: rgba(0, 212, 255, 0.1);
  transform: translateY(-2px);
  box-shadow: 0 0 20px rgba(0, 212, 255, 0.2);
}

.btn-ghost {
  background: transparent;
  color: var(--text-secondary);
  border-color: var(--border-subtle);
}

.btn-ghost:hover {
  color: var(--text-primary);
  border-color: var(--border-glow);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 16px 36px;
  font-size: 1rem;
  border-radius: 16px;
}

.btn-full {
  width: 100%;
}

/* ============================================
   SECTIONS
   ============================================ */
.section {
  padding: var(--section-pad) 0;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-label {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent-primary);
  background: rgba(0, 212, 255, 0.08);
  border: 1px solid rgba(0, 212, 255, 0.2);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--text-primary);
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

.accent-text {
  color: var(--accent-primary);
  text-shadow: 0 0 30px rgba(0, 212, 255, 0.4);
}

.section-cta {
  text-align: center;
  margin-top: 56px;
}

/* ============================================
   HERO
   ============================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 72px;
  background: radial-gradient(ellipse 80% 60% at 70% 50%, rgba(0, 212, 255, 0.06) 0%, transparent 70%),
              radial-gradient(ellipse 60% 80% at 20% 80%, rgba(124, 58, 237, 0.04) 0%, transparent 60%),
              var(--bg-primary);
}

.hero-bg-glow {
  position: absolute;
  top: 20%;
  right: 5%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 212, 255, 0.08) 0%, transparent 70%);
  pointer-events: none;
  animation: breathe 6s ease-in-out infinite;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  min-height: calc(100vh - 72px);
  padding: 80px 24px;
}

.hero-content {}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-green);
  background: rgba(0, 229, 160, 0.08);
  border: 1px solid rgba(0, 229, 160, 0.25);
  padding: 8px 18px;
  border-radius: 100px;
  margin-bottom: 24px;
}

.hero-headline {
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 5.5vw, 4.5rem);
  font-weight: 700;
  line-height: 1.08;
  color: var(--text-primary);
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.hero-subtext {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 40px;
  max-width: 480px;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: 20px 28px;
  width: fit-content;
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 0 24px;
}

.stat-item:first-child {
  padding-left: 0;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent-primary);
  line-height: 1;
}

.stat-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border-card);
  flex-shrink: 0;
}

/* HERO VISUAL */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.chair-glow-ring {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 212, 255, 0.12) 0%, transparent 70%);
  animation: breathe 5s ease-in-out infinite;
}

.hero-chair-img {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 560px;
  filter: drop-shadow(0 20px 60px rgba(0, 212, 255, 0.25));
  border-radius: var(--radius-xl);
  animation: float 6s ease-in-out infinite;
}

.hero-badge-float {
  position: absolute;
  bottom: 60px;
  left: -20px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--bg-card);
  border: 1px solid var(--border-glow);
  border-radius: var(--radius-lg);
  padding: 12px 20px;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--accent-gold);
  box-shadow: var(--shadow-card), 0 0 20px rgba(0, 212, 255, 0.1);
  animation: float 6s ease-in-out infinite 1s;
}

.badge-icon {
  font-size: 1.4rem;
}

/* SCROLL INDICATOR */
.hero-scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--accent-primary), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

/* ============================================
   TRUST BAR
   ============================================ */
.trust-bar {
  background: var(--bg-surface);
  border-top: 1px solid var(--border-card);
  border-bottom: 1px solid var(--border-card);
  padding: 20px 0;
}

.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-secondary);
}

.trust-icon {
  font-size: 1.1rem;
}

/* ============================================
   PRODUCT GRID & CARDS
   ============================================ */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.product-grid-large {
  grid-template-columns: repeat(4, 1fr);
}

.product-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition-smooth);
  position: relative;
}

.product-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-glow);
  box-shadow: var(--shadow-hover);
}

.product-badge-wrap {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 3;
}

.product-badge-tag {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 100px;
  background: var(--bg-secondary);
  color: var(--text-secondary);
  border: 1px solid var(--border-card);
}

.product-badge-tag.hot {
  background: rgba(239, 68, 68, 0.15);
  color: #ef4444;
  border-color: rgba(239, 68, 68, 0.3);
}

.product-badge-tag.new {
  background: rgba(0, 212, 255, 0.1);
  color: var(--accent-primary);
  border-color: rgba(0, 212, 255, 0.25);
}

.product-badge-tag.sale {
  background: rgba(0, 229, 160, 0.1);
  color: var(--accent-green);
  border-color: rgba(0, 229, 160, 0.25);
}

.product-badge-tag.premium {
  background: rgba(245, 158, 11, 0.1);
  color: var(--accent-gold);
  border-color: rgba(245, 158, 11, 0.25);
}

.product-img-wrap {
  position: relative;
  overflow: hidden;
  background: var(--bg-secondary);
  aspect-ratio: 1;
}

.product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.product-img-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 80%, rgba(0, 212, 255, 0.12) 0%, transparent 60%);
  pointer-events: none;
  opacity: 0;
  transition: var(--transition-smooth);
}

.product-card:hover .product-img-glow {
  opacity: 1;
}

.product-img-glow.glow-violet {
  background: radial-gradient(circle at 50% 80%, rgba(124, 58, 237, 0.15) 0%, transparent 60%);
}

.product-img-glow.glow-green {
  background: radial-gradient(circle at 50% 80%, rgba(0, 229, 160, 0.15) 0%, transparent 60%);
}

.product-img-glow.glow-gold {
  background: radial-gradient(circle at 50% 80%, rgba(245, 158, 11, 0.15) 0%, transparent 60%);
}

.product-img-glow.glow-red {
  background: radial-gradient(circle at 50% 80%, rgba(239, 68, 68, 0.15) 0%, transparent 60%);
}

.product-info {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.product-name {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: 0.02em;
}

.product-category-tag {
  font-size: 0.75rem;
  color: var(--accent-primary);
  font-family: var(--font-heading);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
}

.product-features {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.product-features span {
  font-size: 0.7rem;
  color: var(--text-secondary);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-card);
  padding: 3px 10px;
  border-radius: 100px;
  font-family: var(--font-heading);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 600;
}

.product-rating {
  font-size: 0.85rem;
  color: var(--accent-gold);
}

.product-rating span {
  color: var(--text-muted);
  font-size: 0.8rem;
}

.product-price-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.product-price {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-primary);
}

.product-price-old {
  font-size: 0.9rem;
  color: var(--text-muted);
  text-decoration: line-through;
}

/* ============================================
   CATEGORIES
   ============================================ */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.category-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  display: block;
  transition: var(--transition-smooth);
}

.category-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.category-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.category-card:hover .category-img {
  transform: scale(1.06);
}

.category-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8, 12, 18, 0.9) 0%, rgba(8, 12, 18, 0.2) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  transition: var(--transition-fast);
}

.category-overlay h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 6px;
  letter-spacing: 0.03em;
}

.category-overlay span {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  color: var(--accent-primary);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(8px);
  transition: var(--transition-smooth);
}

.category-card:hover .category-overlay span {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   BENEFITS
   ============================================ */
.benefits-section {
  background: var(--bg-secondary);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.benefit-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: var(--transition-smooth);
}

.benefit-card:hover {
  border-color: var(--border-glow);
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}

.benefit-icon {
  font-size: 2.2rem;
  margin-bottom: 16px;
  display: block;
}

.benefit-card h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 10px;
  letter-spacing: 0.02em;
}

.benefit-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-section {
  background: var(--bg-primary);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.testimonial-card:hover {
  border-color: var(--border-glow);
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}

.testimonial-stars {
  font-size: 1.1rem;
  color: var(--accent-gold);
  letter-spacing: 2px;
}

.testimonial-text {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.75;
  font-style: italic;
  flex: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid var(--border-glow);
  flex-shrink: 0;
}

.author-name {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-primary);
}

.author-role {
  display: block;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 2px;
}

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-card);
  border-bottom: 1px solid var(--border-card);
  position: relative;
  overflow: hidden;
  padding: 80px 0;
}

.cta-banner-glow {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 300px;
  background: radial-gradient(ellipse, rgba(0, 212, 255, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.cta-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  z-index: 1;
}

.cta-banner-text h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.cta-banner-text p {
  font-size: 1rem;
  color: var(--text-secondary);
  max-width: 520px;
}

.cta-banner-actions {
  display: flex;
  gap: 16px;
  flex-shrink: 0;
  flex-wrap: wrap;
}

/* ============================================
   PAGE HERO (Inner Pages)
   ============================================ */
.page-hero {
  padding: 140px 0 80px;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(0, 212, 255, 0.07) 0%, transparent 60%),
              var(--bg-primary);
  border-bottom: 1px solid var(--border-card);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.page-hero-sm {
  padding: 120px 0 60px;
}

.page-hero-glow {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 300px;
  background: radial-gradient(ellipse, rgba(0, 212, 255, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.page-hero-content {
  position: relative;
  z-index: 1;
}

.page-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--text-primary);
  margin: 12px 0 16px;
  letter-spacing: -0.02em;
}

.page-hero-content p {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ============================================
   SHOP CONTROLS
   ============================================ */
.shop-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.filter-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.filter-btn {
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 9px 18px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-card);
  color: var(--text-secondary);
  transition: var(--transition-fast);
}

.filter-btn:hover,
.filter-btn.active {
  background: rgba(0, 212, 255, 0.1);
  border-color: rgba(0, 212, 255, 0.3);
  color: var(--accent-primary);
}

.sort-select {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  color: var(--text-secondary);
  padding: 10px 16px;
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 0.9rem;
  cursor: pointer;
  transition: var(--transition-fast);
  outline: none;
}

.sort-select:focus {
  border-color: var(--accent-primary);
  color: var(--text-primary);
}

/* ============================================
   PRODUCT DETAIL
   ============================================ */
.breadcrumb-bar {
  padding: 16px 0;
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--border-card);
  margin-top: 72px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.breadcrumb a {
  color: var(--text-muted);
  transition: var(--transition-fast);
}

.breadcrumb a:hover {
  color: var(--accent-primary);
}

.breadcrumb-current {
  color: var(--text-secondary);
}

.product-detail-section {
  padding-top: 60px;
}

.product-detail-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.product-main-img-wrap {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--border-card);
}

.product-main-img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.product-detail-glow {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 40%;
  background: radial-gradient(ellipse, rgba(0, 212, 255, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.product-thumbnails {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

.thumb {
  width: 80px;
  height: 80px;
  border-radius: var(--radius-md);
  object-fit: cover;
  border: 2px solid var(--border-card);
  cursor: pointer;
  transition: var(--transition-fast);
  opacity: 0.6;
}

.thumb:hover,
.thumb.active {
  border-color: var(--accent-primary);
  opacity: 1;
  box-shadow: 0 0 12px rgba(0, 212, 255, 0.3);
}

.product-detail-name {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}

.product-rating-lg {
  font-size: 1rem;
  margin-bottom: 16px;
}

.product-detail-price-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

.product-price-lg {
  font-size: 2.2rem;
  font-weight: 700;
  font-family: var(--font-heading);
  color: var(--text-primary);
}

.discount-badge {
  background: rgba(0, 229, 160, 0.1);
  color: var(--accent-green);
  border: 1px solid rgba(0, 229, 160, 0.25);
  padding: 5px 12px;
  border-radius: 100px;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.product-detail-description {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 28px;
  border-bottom: 1px solid var(--border-card);
  padding-bottom: 24px;
}

.product-options {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 28px;
}

.option-group {}

.option-label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.color-swatches {
  display: flex;
  gap: 10px;
}

.color-swatch {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  cursor: pointer;
  border: 3px solid transparent;
  transition: var(--transition-fast);
  position: relative;
}

.color-swatch::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid transparent;
  transition: var(--transition-fast);
}

.color-swatch.active::after,
.color-swatch:hover::after {
  border-color: rgba(255,255,255,0.4);
}

.product-ctas {
  display: flex;
  gap: 16px;
  margin-bottom: 28px;
}

.product-features-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: 20px;
}

.feature-row {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.feature-check {
  color: var(--accent-green);
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}

.trust-badges-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.trust-mini {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
}

/* SPECS TABLE */
.specs-section {
  background: var(--bg-secondary);
}

.specs-table {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.spec-row {
  display: grid;
  grid-template-columns: 1fr 2fr;
  padding: 16px 24px;
  border-bottom: 1px solid var(--border-card);
  font-size: 0.9rem;
  transition: var(--transition-fast);
}

.spec-row:last-child {
  border-bottom: none;
}

.spec-row:hover {
  background: rgba(255, 255, 255, 0.02);
}

.spec-key {
  color: var(--text-secondary);
  font-weight: 500;
}

.spec-val {
  color: var(--text-primary);
  font-weight: 500;
}

/* ============================================
   CONTACT
   ============================================ */
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-info-title {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.contact-info-sub {
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 32px;
}

.contact-channels {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-channel-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: 20px;
  transition: var(--transition-smooth);
}

.contact-channel-card:hover {
  border-color: var(--border-glow);
  box-shadow: 0 4px 20px rgba(0, 212, 255, 0.1);
}

.channel-icon {
  font-size: 1.8rem;
  flex-shrink: 0;
}

.contact-channel-card h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.contact-channel-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.response-time {
  font-size: 0.78rem;
  color: var(--accent-green);
  font-family: var(--font-heading);
  letter-spacing: 0.05em;
}

/* CONTACT FORM */
.contact-form-title {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 28px;
}

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

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.form-group input,
.form-group textarea,
.form-group select {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  padding: 13px 16px;
  font-size: 0.95rem;
  transition: var(--transition-fast);
  outline: none;
  width: 100%;
  resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--accent-primary);
  box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
}

.form-note {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-align: center;
}

.form-success {
  background: rgba(0, 229, 160, 0.08);
  border: 1px solid rgba(0, 229, 160, 0.25);
  border-radius: var(--radius-md);
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--accent-green);
}

.success-icon {
  font-size: 1.3rem;
}

/* ============================================
   LEGAL PAGES
   ============================================ */
.legal-section {
  background: var(--bg-primary);
}

.legal-container {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 60px;
  align-items: start;
}

.legal-nav {
  position: sticky;
  top: 100px;
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: 24px;
}

.legal-nav h4 {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.legal-nav ul {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.legal-nav a {
  font-size: 0.85rem;
  color: var(--text-secondary);
  padding: 6px 10px;
  border-radius: var(--radius-sm);
  display: block;
  transition: var(--transition-fast);
  line-height: 1.4;
}

.legal-nav a:hover {
  color: var(--accent-primary);
  background: rgba(0, 212, 255, 0.06);
}

.legal-content {
  max-width: 780px;
}

.legal-intro-box {
  background: rgba(0, 212, 255, 0.05);
  border: 1px solid rgba(0, 212, 255, 0.15);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-bottom: 40px;
}

.legal-intro-box p {
  color: var(--text-secondary);
  line-height: 1.7;
  font-size: 0.95rem;
}

.legal-content h2 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-top: 40px;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border-card);
  letter-spacing: 0.02em;
}

.legal-content p {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 14px;
  font-size: 0.93rem;
}

.legal-content ul,
.legal-content ol {
  padding-left: 0;
  margin-bottom: 16px;
}

.legal-content ul li,
.legal-content ol li {
  color: var(--text-secondary);
  font-size: 0.93rem;
  line-height: 1.8;
  padding-left: 20px;
  position: relative;
  margin-bottom: 6px;
}

.legal-content ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--accent-primary);
  font-size: 0.8rem;
}

.legal-content ol {
  counter-reset: item;
}

.legal-content ol li {
  counter-increment: item;
}

.legal-content ol li::before {
  content: counter(item) '.';
  position: absolute;
  left: 0;
  color: var(--accent-primary);
  font-size: 0.8rem;
  font-weight: 700;
}

.legal-contact-box {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-top: 16px;
}

.legal-content a {
  color: var(--accent-primary);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ============================================
   ABOUT PAGE
   ============================================ */
.about-story-section {
  background: var(--bg-secondary);
}

.about-story-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-story-text {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.about-story-text .section-title {
  text-align: left;
  margin-bottom: 0;
}

.about-story-text p {
  color: var(--text-secondary);
  line-height: 1.8;
  font-size: 0.97rem;
}

.about-story-text strong {
  color: var(--text-primary);
}

.about-img {
  border-radius: var(--radius-xl);
  width: 100%;
  border: 1px solid var(--border-card);
  box-shadow: var(--shadow-card);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.value-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: var(--transition-smooth);
}

.value-card:hover {
  border-color: var(--border-glow);
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.value-icon {
  font-size: 2.2rem;
  margin-bottom: 14px;
  display: block;
}

.value-card h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.value-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.team-section {
  background: var(--bg-secondary);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.team-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  transition: var(--transition-smooth);
}

.team-card:hover {
  border-color: var(--border-glow);
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.team-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 3px solid var(--border-glow);
  margin: 0 auto 20px;
  box-shadow: 0 0 30px rgba(0, 212, 255, 0.2);
}

.team-card h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.team-role {
  display: block;
  font-size: 0.8rem;
  color: var(--accent-primary);
  font-family: var(--font-heading);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.team-card p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* STATS BANNER */
.stats-banner-section {
  background: var(--bg-primary);
}

.stats-banner-grid {
  display: flex;
  align-items: center;
  justify-content: space-around;
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-xl);
  padding: 48px;
  gap: 0;
}

.stats-banner-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
}

.stat-big-number {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  color: var(--accent-primary);
  text-shadow: 0 0 30px rgba(0, 212, 255, 0.4);
  line-height: 1;
}

.stat-big-label {
  font-size: 0.9rem;
  color: var(--text-secondary);
  font-weight: 500;
}

.stats-banner-divider {
  width: 1px;
  height: 80px;
  background: var(--border-card);
}

/* WARRANTY HIGHLIGHTS */
.warranty-highlights-section {
  background: var(--bg-secondary);
  padding-top: 60px;
  padding-bottom: 0;
}

.warranty-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.warranty-highlight-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  transition: var(--transition-smooth);
}

.warranty-highlight-card:hover {
  border-color: var(--border-glow);
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}

.warranty-icon {
  font-size: 2.5rem;
  margin-bottom: 14px;
  display: block;
}

.warranty-highlight-card h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 10px;
  letter-spacing: 0.02em;
}

.warranty-highlight-card p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-card);
  padding: 80px 0 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 60px;
}

.footer-brand {}

.footer-logo {
  margin-bottom: 14px;
  display: inline-flex;
}

.footer-tagline {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 24px;
  line-height: 1.6;
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.footer-socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-sm);
  font-size: 1rem;
  color: var(--text-secondary);
  transition: var(--transition-fast);
}

.footer-socials a:hover {
  border-color: var(--accent-primary);
  color: var(--accent-primary);
  background: rgba(0, 212, 255, 0.08);
}

.footer-links-group h4 {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.footer-links-group ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links-group a {
  font-size: 0.9rem;
  color: var(--text-secondary);
  transition: var(--transition-fast);
  display: inline-block;
}

.footer-links-group a:hover {
  color: var(--accent-primary);
  transform: translateX(4px);
}

.footer-bottom {
  border-top: 1px solid var(--border-card);
  padding: 20px 0;
}

.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-bottom span {
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* ============================================
   GLOW PULSE ANIMATION
   ============================================ */
.glow-pulse {
  animation: glowPulse 3s ease-in-out infinite;
}
/* ENDFILE -->
<!-- FILE: animations.css -->
/* ============================================
   VEXOBRAPLORVI — ANIMATION SYSTEM
   ============================================ */

/* KEYFRAMES */
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-16px); }
}

@keyframes breathe {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.08); }
}

@keyframes glowPulse {
  0%, 100% {
    box-shadow: 0 4px 20px rgba(0, 212, 255, 0.3);
  }
  50% {
    box-shadow: 0 8px 40px rgba(0, 212, 255, 0.6), 0 0 60px rgba(0, 212, 255, 0.2);
  }
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.1); }
}

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

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

@keyframes scanline {
  0% { transform: translateY(-100%); }
  100% { transform: translateY(100vh); }
}

@keyframes rotateSlow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* INTERSECTION OBSERVER CLASSES */
.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-in-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

/* DELAY UTILITIES */
[data-delay="0"] { transition-delay: 0ms; }
[data-delay="100"] { transition-delay: 100ms; }
[data-delay="150"] { transition-delay: 150ms; }
[data-delay="200"] { transition-delay: 200ms; }
[data-delay="300"] { transition-delay: 300ms; }
[data-delay="400"] { transition-delay: 400ms; }
[data-delay="500"] { transition-delay: 500ms; }

/* HOVER LIFT */
.hover-lift {
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1),
              box-shadow 0.3s ease;
}

.hover-lift:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

/* SHIMMER EFFECT */
.shimmer-text {
  background: linear-gradient(
    90deg,
    var(--text-primary) 0%,
    var(--accent-primary) 50%,
    var(--text-primary) 100%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 3s linear infinite;
}

/* CARD STAGGER */
.product-grid .product-card:nth-child(1) { transition-delay: 0ms; }
.product-grid .product-card:nth-child(2) { transition-delay: 80ms; }
.product-grid .product-card:nth-child(3) { transition-delay: 160ms; }
.product-grid .product-card:nth-child(4) { transition-delay: 240ms; }
.product-grid .product-card:nth-child(5) { transition-delay: 0ms; }
.product-grid .product-card:nth-child(6) { transition-delay: 80ms; }
.product-grid .product-card:nth-child(7) { transition-delay: 160ms; }
.product-grid .product-card:nth-child(8) { transition-delay: 240ms; }

/* BUTTON RIPPLE */
.btn {
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 50% 50%;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  opacity: 0;
  transform: scale(0);
  transition: transform 0.6s ease, opacity 0.6s ease, inset 0.6s ease;
}

.btn:active::after {
  inset: -50% -50%;
  opacity: 1;
  transform: scale(1);
  transition: 0s;
}

/* HERO INITIAL ANIMATIONS */
.hero-content.fade-in-up {
  animation: fadeInUp 0.9s ease 0.3s both;
  opacity: 1;
  transform: none;
}

.hero-visual.fade-in-right {
  animation: fadeInRight 0.9s ease 0.5s both;
  opacity: 1;
  transform: none;
}

/* BORDER GLOW ANIMATION */
@keyframes borderGlow {
  0%, 100% {
    border-color: rgba(0, 212, 255, 0.15);
    box-shadow: 0 0 0px rgba(0, 212, 255, 0);
  }
  50% {
    border-color: rgba(0, 212, 255, 0.4);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.15);
  }
}

.glow-border-animate {
  animation: borderGlow 3s ease-in-out infinite;
}

/* PAGE TRANSITION */
body {
  animation: fadeInUp 0.4s ease both;
}

/* LOADING SKELETON (for images) */
.img-skeleton {
  background: linear-gradient(
    90deg,
    var(--bg-card) 25%,
    rgba(255,255,255,0.04) 50%,
    var(--bg-card) 75%
  );
  background-size: 400% 100%;
  animation: shimmer 1.5s ease infinite;
}