/* ============================================
   INSANITY TATTOO SUPPLIES - CORE STYLES
   Cyberpunk × Premium × Underground
   ============================================ */

:root {
  /* Base Colors */
  --matte-black: #0a0a0a;
  --carbon-black: #121212;
  --graphite: #1a1a1a;
  --charcoal: #242424;
  
  /* Accents */
  --electric-red: #ff1a1a;
  --neon-crimson: #dc143c;
  --cyan-accent: #00f5ff;
  --cyan-dim: rgba(0, 245, 255, 0.3);
  
  /* Text */
  --clean-white: #ffffff;
  --soft-silver: #c9c9c9;
  --muted-gray: #888888;
  
  /* Gradients */
  --gradient-primary: linear-gradient(135deg, var(--electric-red), var(--neon-crimson));
  --gradient-holo: linear-gradient(135deg, rgba(255,26,26,0.1), rgba(0,245,255,0.1), rgba(255,26,26,0.1));
  --gradient-metal: linear-gradient(180deg, rgba(255,255,255,0.1), transparent, rgba(255,255,255,0.05));
  
  /* Glow Effects */
  --glow-red: 0 0 20px rgba(255, 26, 26, 0.5);
  --glow-red-sm: 0 0 10px rgba(255, 26, 26, 0.3);
  --glow-cyan: 0 0 20px rgba(0, 245, 255, 0.3);
  --glow-white: 0 0 30px rgba(255, 255, 255, 0.1);
  
  /* Typography */
  --font-display: 'Orbitron', 'Arial Black', sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
  
  /* Spacing */
  --section-padding: 120px 24px;
  --container-width: 1400px;
  
  /* Transitions */
  --ease-out: cubic-bezier(0.215, 0.61, 0.355, 1);
  --ease-elastic: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* ============================================
   RESET & BASE
   ============================================ */

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

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

body {
  font-family: var(--font-body);
  background-color: var(--matte-black);
  color: var(--clean-white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.5rem, 8vw, 6rem); }
h2 { font-size: clamp(2rem, 5vw, 4rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2.5rem); }
h4 { font-size: clamp(1.25rem, 2vw, 1.75rem); }

p {
  color: var(--soft-silver);
  font-size: 1.125rem;
  max-width: 65ch;
}

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.3s var(--ease-out);
}

/* ============================================
   UTILITY CLASSES
   ============================================ */

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

.text-gradient {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-center { text-align: center; }
.text-glow { text-shadow: var(--glow-red-sm); }

.section-padding {
  padding: var(--section-padding);
}

/* ============================================
   LOADING SCREEN
   ============================================ */

.loading-screen {
  position: fixed;
  inset: 0;
  background: var(--matte-black);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  transition: opacity 0.8s var(--ease-out), visibility 0.8s;
}

.loading-screen.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loading-logo {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  position: relative;
}

.loading-logo::before {
  content: 'INSANITY';
  position: absolute;
  inset: 0;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: glitch 2s infinite;
}

.loading-bar {
  width: 200px;
  height: 2px;
  background: var(--graphite);
  margin-top: 40px;
  position: relative;
  overflow: hidden;
  border-radius: 2px;
}

.loading-bar::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-primary);
  transform: translateX(-100%);
  animation: loading 2s var(--ease-out) forwards;
}

@keyframes loading {
  to { transform: translateX(100%); }
}

@keyframes glitch {
  0%, 100% { clip-path: inset(0 0 0 0); }
  20% { clip-path: inset(20% 0 60% 0); }
  40% { clip-path: inset(40% 0 40% 0); }
  60% { clip-path: inset(60% 0 20% 0); }
  80% { clip-path: inset(10% 0 80% 0); }
}

/* ============================================
   NAVIGATION
   ============================================ */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 24px;
  transition: all 0.4s var(--ease-out);
}

.navbar.scrolled {
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding: 15px 24px;
}

.navbar-content {
  max-width: var(--container-width);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navbar-logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  position: relative;
}

.navbar-logo span {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.navbar-menu {
  display: flex;
  gap: 40px;
  list-style: none;
}

.navbar-menu a {
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--soft-silver);
  position: relative;
  padding: 5px 0;
}

.navbar-menu a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--electric-red);
  transition: width 0.3s var(--ease-out);
}

.navbar-menu a:hover {
  color: var(--clean-white);
}

.navbar-menu a:hover::after {
  width: 100%;
}

.navbar-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 5px;
}

.navbar-toggle span {
  width: 25px;
  height: 2px;
  background: var(--clean-white);
  transition: all 0.3s var(--ease-out);
}

.navbar-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.navbar-toggle.active span:nth-child(2) {
  opacity: 0;
}

.navbar-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Menu */
@media (max-width: 768px) {
  .navbar-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: var(--matte-black);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    transition: right 0.5s var(--ease-out);
  }
  
  .navbar-menu.active {
    right: 0;
  }
  
  .navbar-menu a {
    font-size: 1.5rem;
  }
  
  .navbar-toggle {
    display: flex;
    z-index: 1001;
  }
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 80px;
}

.hero-background {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(220, 20, 60, 0.15), transparent 70%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at 50% 50%, black 20%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 50%, black 20%, transparent 80%);
}

/* Smoke Effect */
.hero-smoke {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.smoke-particle {
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.03), transparent 70%);
  border-radius: 50%;
  filter: blur(40px);
  animation: smoke-float 20s infinite ease-in-out;
}

.smoke-particle:nth-child(1) {
  top: 20%;
  left: 10%;
  animation-delay: 0s;
  animation-duration: 25s;
}

.smoke-particle:nth-child(2) {
  top: 50%;
  right: 15%;
  animation-delay: -8s;
  animation-duration: 30s;
}

.smoke-particle:nth-child(3) {
  bottom: 20%;
  left: 30%;
  animation-delay: -15s;
  animation-duration: 28s;
}

@keyframes smoke-float {
  0%, 100% {
    transform: translate(0, 0) scale(1);
    opacity: 0.5;
  }
  25% {
    transform: translate(50px, -30px) scale(1.1);
    opacity: 0.8;
  }
  50% {
    transform: translate(-30px, 50px) scale(0.9);
    opacity: 0.4;
  }
  75% {
    transform: translate(40px, 20px) scale(1.05);
    opacity: 0.6;
  }
}

/* Particles */
.hero-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--electric-red);
  border-radius: 50%;
  opacity: 0;
  animation: particle-float 15s infinite;
}

@keyframes particle-float {
  0% {
    transform: translateY(100vh) scale(0);
    opacity: 0;
  }
  10% {
    opacity: 0.8;
  }
  90% {
    opacity: 0.8;
  }
  100% {
    transform: translateY(-100vh) scale(1);
    opacity: 0;
  }
}

/* Light Streaks */
.hero-streaks {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.light-streak {
  position: absolute;
  width: 2px;
  height: 200px;
  background: linear-gradient(to bottom, transparent, var(--cyan-accent), transparent);
  opacity: 0;
  animation: streak-fall 8s infinite;
}

.light-streak:nth-child(1) { left: 20%; animation-delay: 0s; }
.light-streak:nth-child(2) { left: 50%; animation-delay: 2s; }
.light-streak:nth-child(3) { left: 80%; animation-delay: 4s; }

@keyframes streak-fall {
  0% {
    transform: translateY(-100vh) rotate(15deg);
    opacity: 0;
  }
  10% {
    opacity: 0.5;
  }
  50% {
    opacity: 0.5;
  }
  90% {
    opacity: 0;
  }
  100% {
    transform: translateY(100vh) rotate(15deg);
    opacity: 0;
  }
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 900px;
  padding: 0 24px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 30px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  animation: fade-in-up 1s var(--ease-out) 0.2s both;
}

.hero-badge::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--electric-red);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { 
    opacity: 1;
    box-shadow: 0 0 0 0 rgba(255, 26, 26, 0.7);
  }
  50% {
    opacity: 0.5;
    box-shadow: 0 0 0 10px rgba(255, 26, 26, 0);
  }
}

.hero-title {
  margin-bottom: 25px;
  animation: fade-in-up 1s var(--ease-out) 0.4s both;
}

.hero-title .line {
  display: block;
}

.hero-title .line:last-child {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--soft-silver);
  margin-bottom: 50px;
  animation: fade-in-up 1s var(--ease-out) 0.6s both;
}

.hero-cta {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fade-in-up 1s var(--ease-out) 0.8s both;
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  animation: bounce 2s infinite;
}

.scroll-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: var(--muted-gray);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--electric-red), transparent);
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(10px); }
}

@keyframes fade-in-up {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 18px 40px;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.4s var(--ease-out);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--gradient-primary);
  color: var(--clean-white);
  box-shadow: var(--glow-red-sm);
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.2), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: var(--glow-red);
}

.btn-primary:hover::before {
  opacity: 1;
}

.btn-secondary {
  background: transparent;
  color: var(--clean-white);
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--clean-white);
  transform: translateY(-3px);
}

.btn-small {
  padding: 12px 28px;
  font-size: 0.75rem;
}

/* ============================================
   CATEGORIES SECTION
   ============================================ */

.categories {
  position: relative;
}

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

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--electric-red);
  margin-bottom: 20px;
}

.section-title {
  margin-bottom: 20px;
}

.section-title span {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  color: var(--muted-gray);
  font-size: 1.125rem;
}

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

.category-card {
  position: relative;
  padding: 50px 30px;
  background: var(--carbon-black);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  text-align: center;
  transition: all 0.5s var(--ease-out);
  overflow: hidden;
}

.category-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-holo);
  opacity: 0;
  transition: opacity 0.5s;
}

.category-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background: var(--gradient-primary);
  transition: width 0.5s var(--ease-out);
}

.category-card:hover {
  transform: translateY(-10px);
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.category-card:hover::before {
  opacity: 1;
}

.category-card:hover::after {
  width: 80%;
}

.category-icon {
  position: relative;
  z-index: 1;
  font-size: 3rem;
  margin-bottom: 25px;
  filter: grayscale(100%);
  transition: filter 0.5s;
}

.category-card:hover .category-icon {
  filter: grayscale(0%);
}

.category-title {
  position: relative;
  z-index: 1;
  font-size: 1.25rem;
  margin-bottom: 15px;
  letter-spacing: 0.1em;
}

.category-count {
  position: relative;
  z-index: 1;
  font-size: 0.875rem;
  color: var(--muted-gray);
}

@media (max-width: 1024px) {
  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .categories-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   PRODUCTS SECTION
   ============================================ */

.products {
  background: var(--carbon-black);
}

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

.product-card {
  position: relative;
  background: var(--graphite);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.5s var(--ease-out);
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.product-image {
  position: relative;
  aspect-ratio: 1;
  background: var(--charcoal);
  overflow: hidden;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-out);
}

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

.product-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
  opacity: 0;
  transition: opacity 0.5s;
  display: flex;
  align-items: flex-end;
  padding: 20px;
}

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

.product-quick-add {
  width: 100%;
  padding: 15px;
  background: var(--gradient-primary);
  border: none;
  color: var(--clean-white);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 4px;
}

.product-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  padding: 6px 12px;
  background: var(--electric-red);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 4px;
  z-index: 1;
}

.product-info {
  padding: 25px;
}

.product-category {
  font-size: 0.75rem;
  color: var(--muted-gray);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.product-name {
  font-size: 1.25rem;
  margin-bottom: 15px;
  letter-spacing: 0.05em;
}

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

.product-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--electric-red);
}

.product-price .old {
  font-size: 1rem;
  color: var(--muted-gray);
  text-decoration: line-through;
  margin-left: 10px;
  font-weight: 400;
}

.product-rating {
  display: flex;
  gap: 3px;
  color: var(--muted-gray);
}

.product-rating .filled {
  color: var(--electric-red);
}

@media (max-width: 900px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .products-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   BENEFITS SECTION
   ============================================ */

.benefits {
  position: relative;
  overflow: hidden;
}

.benefits::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(220, 20, 60, 0.08), transparent 70%);
  pointer-events: none;
}

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

.benefit-item {
  text-align: center;
  padding: 40px 20px;
}

.benefit-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  font-size: 2rem;
  transition: all 0.5s var(--ease-out);
}

.benefit-item:hover .benefit-icon {
  background: var(--gradient-primary);
  border-color: transparent;
  transform: scale(1.1) rotate(5deg);
  box-shadow: var(--glow-red);
}

.benefit-title {
  font-size: 1.25rem;
  margin-bottom: 15px;
  letter-spacing: 0.1em;
}

.benefit-text {
  font-size: 0.95rem;
  color: var(--muted-gray);
  line-height: 1.8;
}

@media (max-width: 1024px) {
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .benefits-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   PROMO BANNER
   ============================================ */

.promo-banner {
  position: relative;
  padding: 100px 24px;
  background: var(--carbon-black);
  overflow: hidden;
}

.promo-background {
  position: absolute;
  inset: 0;
  background: 
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 10px,
      rgba(255, 255, 255, 0.02) 10px,
      rgba(255, 255, 255, 0.02) 20px
    );
}

.promo-content {
  position: relative;
  z-index: 1;
  max-width: var(--container-width);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 60px;
}

.promo-text {
  flex: 1;
}

.promo-label {
  display: inline-block;
  padding: 8px 16px;
  background: rgba(255, 26, 26, 0.2);
  border: 1px solid var(--electric-red);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--electric-red);
  margin-bottom: 25px;
  border-radius: 4px;
}

.promo-title {
  font-size: clamp(2rem, 4vw, 3.5rem);
  margin-bottom: 20px;
}

.promo-title span {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.promo-description {
  font-size: 1.125rem;
  margin-bottom: 30px;
}

.promo-timer {
  display: flex;
  gap: 20px;
  margin-bottom: 40px;
}

.timer-block {
  text-align: center;
}

.timer-value {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 900;
  color: var(--electric-red);
  line-height: 1;
}

.timer-label {
  font-size: 0.75rem;
  color: var(--muted-gray);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-top: 5px;
}

.promo-visual {
  flex: 1;
  position: relative;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.promo-circle {
  position: absolute;
  width: 350px;
  height: 350px;
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  animation: rotate 30s linear infinite;
}

.promo-circle::before {
  content: '';
  position: absolute;
  inset: -10px;
  border: 1px solid rgba(255, 26, 26, 0.3);
  border-radius: 50%;
  border-top-color: var(--electric-red);
  animation: rotate 20s linear infinite reverse;
}

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

.promo-product {
  position: relative;
  z-index: 1;
  width: 200px;
  height: 200px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 900;
  box-shadow: var(--glow-red);
}

@media (max-width: 900px) {
  .promo-content {
    flex-direction: column;
    text-align: center;
  }
  
  .promo-timer {
    justify-content: center;
  }
  
  .promo-visual {
    height: 300px;
  }
}

/* ============================================
   TESTIMONIALS
   ============================================ */

.testimonials {
  background: var(--carbon-black);
}

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

.testimonial-card {
  padding: 40px;
  background: var(--graphite);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  transition: all 0.5s var(--ease-out);
}

.testimonial-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.testimonial-rating {
  display: flex;
  gap: 5px;
  margin-bottom: 25px;
  color: var(--electric-red);
}

.testimonial-text {
  font-size: 1.125rem;
  font-style: italic;
  color: var(--soft-silver);
  margin-bottom: 30px;
  line-height: 1.8;
}

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

.testimonial-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.25rem;
}

.testimonial-info h4 {
  font-size: 1rem;
  margin-bottom: 5px;
}

.testimonial-info p {
  font-size: 0.875rem;
  color: var(--muted-gray);
}

@media (max-width: 900px) {
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
  background: var(--matte-black);
  padding: 100px 24px 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-content {
  max-width: var(--container-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 80px;
}

.footer-brand {
  max-width: 350px;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.footer-logo span {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-description {
  color: var(--muted-gray);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 30px;
}

.footer-social {
  display: flex;
  gap: 15px;
}

.social-link {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--graphite);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  transition: all 0.3s var(--ease-out);
  font-size: 1.25rem;
}

.social-link:hover {
  background: var(--gradient-primary);
  border-color: transparent;
  transform: translateY(-3px);
}

.footer-title {
  font-size: 1rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 25px;
  color: var(--clean-white);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 15px;
}

.footer-links a {
  color: var(--muted-gray);
  font-size: 0.95rem;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--electric-red);
}

.footer-bottom {
  max-width: var(--container-width);
  margin: 0 auto;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-copyright {
  color: var(--muted-gray);
  font-size: 0.875rem;
}

.footer-legal {
  display: flex;
  gap: 30px;
}

.footer-legal a {
  color: var(--muted-gray);
  font-size: 0.875rem;
}

.footer-legal a:hover {
  color: var(--electric-red);
}

@media (max-width: 1024px) {
  .footer-content {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .footer-content {
    grid-template-columns: 1fr;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

/* ============================================
   SCROLL REVEAL ANIMATIONS
   ============================================ */

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

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

.reveal-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.8s var(--ease-out);
}

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

.reveal-right {
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.8s var(--ease-out);
}

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

.reveal-scale {
  opacity: 0;
  transform: scale(0.9);
  transition: all 0.8s var(--ease-out);
}

.reveal-scale.active {
  opacity: 1;
  transform: scale(1);
}

/* Stagger delays */
.delay-100 { transition-delay: 0.1s; }
.delay-200 { transition-delay: 0.2s; }
.delay-300 { transition-delay: 0.3s; }
.delay-400 { transition-delay: 0.4s; }
.delay-500 { transition-delay: 0.5s; }

/* ============================================
   CUSTOM CURSOR
   ============================================ */

.custom-cursor {
  position: fixed;
  width: 20px;
  height: 20px;
  border: 2px solid var(--electric-red);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.3s, height 0.3s, background-color 0.3s;
  mix-blend-mode: difference;
}

.custom-cursor.hover {
  width: 50px;
  height: 50px;
  background-color: rgba(255, 26, 26, 0.2);
}

@media (max-width: 1024px) {
  .custom-cursor {
    display: none;
  }
}

/* ============================================
   PAGE HEADER (Subpages)
   ============================================ */

.page-header {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 80px;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(220, 20, 60, 0.15), transparent 70%);
}

.page-header-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 800px;
  padding: 0 24px;
}

.page-header h1 {
  margin-bottom: 20px;
}

.page-header p {
  font-size: 1.25rem;
  color: var(--soft-silver);
}

/* ============================================
   SHOP PAGE
   ============================================ */

.shop-filters {
  display: flex;
  gap: 15px;
  margin-bottom: 50px;
  flex-wrap: wrap;
  justify-content: center;
}

.filter-btn {
  padding: 12px 28px;
  background: var(--graphite);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--soft-silver);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s var(--ease-out);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--gradient-primary);
  border-color: transparent;
  color: var(--clean-white);
}

/* ============================================
   PROMOTIONS PAGE
   ============================================ */

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

.promo-card {
  position: relative;
  background: var(--graphite);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.promo-card-image {
  aspect-ratio: 16/10;
  background: var(--charcoal);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
}

.promo-card-content {
  padding: 40px;
}

.promo-card-badge {
  display: inline-block;
  padding: 8px 16px;
  background: var(--electric-red);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: 4px;
  margin-bottom: 20px;
}

.promo-card-title {
  font-size: 1.75rem;
  margin-bottom: 15px;
}

.promo-card-text {
  color: var(--muted-gray);
  margin-bottom: 25px;
}

.promo-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.promo-discount {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--electric-red);
}

.promo-discount span {
  font-size: 1rem;
  color: var(--soft-silver);
}

@media (max-width: 768px) {
  .promo-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   ABOUT PAGE
   ============================================ */

.about-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px;
  align-items: center;
  margin-bottom: 100px;
}

.about-image {
  position: relative;
  aspect-ratio: 4/5;
  background: var(--graphite);
  border-radius: 12px;
  overflow: hidden;
}

.about-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-holo);
}

.about-content h3 {
  margin-bottom: 25px;
}

.about-content p {
  margin-bottom: 20px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 80px;
}

.stat-item {
  text-align: center;
  padding: 40px 20px;
  background: var(--carbon-black);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
}

.stat-value {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 900;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 15px;
}

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

@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ============================================
   CONTACT PAGE
   ============================================ */

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

.contact-info {
  padding: 40px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 40px;
}

.contact-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 26, 26, 0.1);
  border: 1px solid rgba(255, 26, 26, 0.3);
  border-radius: 12px;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.contact-details h4 {
  font-size: 1.125rem;
  margin-bottom: 8px;
}

.contact-details p {
  color: var(--muted-gray);
  font-size: 0.95rem;
}

.contact-form {
  padding: 40px;
  background: var(--graphite);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
}

.form-group {
  margin-bottom: 25px;
}

.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 10px;
  color: var(--soft-silver);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 18px 20px;
  background: var(--carbon-black);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: var(--clean-white);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: all 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--electric-red);
  box-shadow: 0 0 20px rgba(255, 26, 26, 0.2);
}

.form-group textarea {
  min-height: 150px;
  resize: vertical;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   NOTIFICATION TOAST
   ============================================ */

.toast {
  position: fixed;
  bottom: 30px;
  right: 30px;
  padding: 20px 30px;
  background: var(--graphite);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-left: 4px solid var(--electric-red);
  border-radius: 8px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  transform: translateX(calc(100% + 60px));
  transition: transform 0.5s var(--ease-out);
  z-index: 9999;
}

.toast.show {
  transform: translateX(0);
}

.toast-message {
  font-size: 0.95rem;
  color: var(--soft-silver);
}
