@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&family=Space+Grotesk:wght@400;500;600;700&display=swap');

:root {
  /* Midnight Obsidian Color Palette */
  --midnight-obsidian: #0A0C10;
  --deep-blue-carbon: #111820;
  --shadow-graphite: #1A1F27;
  --iron-eclipse: #222831;
  --noir-violet-steel: #2A2F3A;
  
  /* Accent & Interaction Colors */
  --accent-primary: #4A90E2;
  --accent-secondary: #5DADE2;
  --accent-tertiary: #7FB3D5;
  --accent-success: #52C4A0;
  --accent-warning: #F4D03F;
  --text-light: #E8EDF2;
  --text-muted: #9BA8B8;
  --text-dim: #6B7785;
  
  /* Typography System */
  --font-primary: 'Outfit', sans-serif;
  --font-secondary: 'Space Grotesk', monospace;
  
  --font-xs: 0.75rem;
  --font-sm: 0.875rem;
  --font-base: 1rem;
  --font-lg: 1.125rem;
  --font-xl: 1.25rem;
  --font-2xl: 1.5rem;
  --font-3xl: 2rem;
  --font-4xl: 2.5rem;
  --font-5xl: 3rem;
  
  /* Spacing System */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;
  
  /* Border Radius */
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-2xl: 1.5rem;
  --radius-full: 9999px;
  
  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgba(10, 12, 16, 0.15);
  --shadow-md: 0 4px 6px -1px rgba(10, 12, 16, 0.2);
  --shadow-lg: 0 10px 15px -3px rgba(10, 12, 16, 0.3);
  --shadow-xl: 0 20px 25px -5px rgba(10, 12, 16, 0.4);
  --shadow-glow: 0 0 20px rgba(74, 144, 226, 0.3);
  
  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-slow: 400ms ease;
  --transition-bounce: 400ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 100%;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-primary);
  font-size: var(--font-base);
  line-height: 1.6;
  color: var(--text-light);
  background: linear-gradient(135deg, var(--midnight-obsidian) 0%, var(--deep-blue-carbon) 50%, var(--shadow-graphite) 100%);
  background-attachment: fixed;
  min-height: 100vh;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--accent-secondary);
  text-decoration: none;
  transition: color var(--transition-base);
}

a:hover {
  color: var(--accent-primary);
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-secondary);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: var(--space-md);
  color: var(--text-light);
}

h1 { font-size: clamp(var(--font-3xl), 5vw, var(--font-5xl)); }
h2 { font-size: clamp(var(--font-2xl), 4vw, var(--font-4xl)); }
h3 { font-size: clamp(var(--font-xl), 3vw, var(--font-3xl)); }
h4 { font-size: var(--font-xl); }
h5 { font-size: var(--font-lg); }
h6 { font-size: var(--font-base); }

p {
  margin-bottom: var(--space-md);
  color: var(--text-muted);
}

.site-header {
  position: relative;
  background: linear-gradient(180deg, rgba(17, 24, 32, 0.95) 0%, rgba(17, 24, 32, 0.85) 100%);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(74, 144, 226, 0.1);
  padding: var(--space-md) 0;
  z-index: 1000;
  transition: transform var(--transition-base);
}

.site-header.header-hidden {
  transform: translateY(-100%);
}

.header-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand-logo {
  font-family: var(--font-secondary);
  font-size: var(--font-2xl);
  font-weight: 700;
  color: var(--accent-secondary);
  letter-spacing: -0.5px;
  transition: color var(--transition-base);
}

.brand-logo:hover {
  color: var(--accent-primary);
}

/* Navigation */
.main-nav {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
}

.nav-list {
  display: flex;
  list-style: none;
  gap: var(--space-lg);
  align-items: center;
}

.nav-link {
  font-family: var(--font-secondary);
  font-size: var(--font-sm);
  font-weight: 500;
  color: var(--text-muted);
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.nav-link:hover,
.nav-link.active {
  color: var(--accent-secondary);
  background: rgba(74, 144, 226, 0.1);
}

/* Burger Menu Toggle */
.burger-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  height: 24px;
  cursor: pointer;
  z-index: 1001;
}

.burger-line {
  width: 100%;
  height: 3px;
  background: var(--accent-secondary);
  border-radius: var(--radius-full);
  transition: all var(--transition-base);
}

.burger-toggle.active .burger-line:nth-child(1) {
  transform: rotate(45deg) translateY(10px);
}

.burger-toggle.active .burger-line:nth-child(2) {
  opacity: 0;
}

.burger-toggle.active .burger-line:nth-child(3) {
  transform: rotate(-45deg) translateY(-10px);
}

.mobile-sidebar {
  position: fixed;
  top: 0;
  right: -100%;
  width: min(320px, 85vw);
  height: 100vh;
  background: linear-gradient(180deg, var(--deep-blue-carbon) 0%, var(--shadow-graphite) 100%);
  box-shadow: var(--shadow-xl);
  padding: var(--space-3xl) var(--space-xl);
  transition: right var(--transition-slow);
  z-index: 999;
  overflow-y: auto;
}

.mobile-sidebar.active {
  padding: 100px 0;
  right: 0;
}

.mobile-sidebar .nav-list {
  flex-direction: column;
  gap: var(--space-md);
  align-items: stretch;
}

.mobile-sidebar .nav-link {
  display: block;
  padding: var(--space-md);
  text-align: center;
  border: 1px solid rgba(74, 144, 226, 0.2);
}

/* Overlay */
.overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 12, 16, 0.8);
  z-index: 998;
  backdrop-filter: blur(3px);
}

.overlay.active {
  display: block;
}

.hero-slider {
  position: relative;
  height: 85vh;
  min-height: 600px;
  overflow: hidden;
  perspective: 1200px;
}

.slider-container {
  position: relative;
  height: 100%;
  transform-style: preserve-3d;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateX(100%) rotateY(45deg);
  transition: all var(--transition-slow);
  background: linear-gradient(135deg, var(--shadow-graphite) 0%, var(--iron-eclipse) 100%);
}

.slide.active {
  opacity: 1;
  transform: translateX(0) rotateY(0);
  z-index: 10;
}

.slide.prev {
  opacity: 0.3;
  transform: translateX(-100%) rotateY(-45deg) scale(0.8);
  z-index: 5;
}

.slide-content {
  max-width: 900px;
  text-align: center;
  padding: var(--space-2xl);
  transform: translateZ(50px);
}

.slide-title {
  font-size: clamp(var(--font-3xl), 6vw, var(--font-5xl));
  margin-bottom: var(--space-lg);
  background: linear-gradient(135deg, var(--accent-secondary), var(--accent-primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.slide-description {
  font-size: clamp(var(--font-base), 2vw, var(--font-xl));
  color: var(--text-muted);
  margin-bottom: var(--space-xl);
  line-height: 1.8;
}

.slider-controls {
  position: absolute;
  bottom: var(--space-2xl);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: var(--space-md);
  z-index: 20;
}

.slider-dot {
  width: 12px;
  height: 12px;
  border-radius: var(--radius-full);
  background: rgba(74, 144, 226, 0.3);
  border: 2px solid var(--accent-secondary);
  cursor: pointer;
  transition: all var(--transition-base);
}

.slider-dot.active {
  width: 40px;
  background: var(--accent-secondary);
  box-shadow: var(--shadow-glow);
}

.section {
  padding: var(--space-4xl) var(--space-lg);
  max-width: 1400px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-3xl);
}

.section-title {
  margin-bottom: var(--space-md);
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-secondary), var(--accent-primary));
  border-radius: var(--radius-full);
}

.section-subtitle {
  font-size: var(--font-lg);
  color: var(--text-muted);
  max-width: 700px;
  margin: 0 auto;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-xl);
  margin-top: var(--space-2xl);
}

.card {
  background: rgba(34, 40, 49, 0.5);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(74, 144, 226, 0.15);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-secondary), var(--accent-primary));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-base);
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
  border-color: var(--accent-secondary);
}

.card:hover::before {
  transform: scaleX(1);
}

.card-icon {
  font-size: var(--font-4xl);
  color: var(--accent-secondary);
  margin-bottom: var(--space-md);
}

.card-title {
  font-size: var(--font-xl);
  margin-bottom: var(--space-sm);
}

.card-text {
  font-size: var(--font-sm);
  color: var(--text-muted);
  line-height: 1.7;
}

.product-card {
  text-align: center;
}

.product-image {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  margin-bottom: var(--space-md);
  transition: transform var(--transition-base);
}

.product-card:hover .product-image {
  transform: scale(1.05);
}

.product-price {
  font-family: var(--font-secondary);
  font-size: var(--font-2xl);
  font-weight: 700;
  color: var(--accent-success);
  margin: var(--space-md) 0;
}

.btn {
  display: inline-block;
  padding: var(--space-md) var(--space-xl);
  font-family: var(--font-secondary);
  font-size: var(--font-sm);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: var(--radius-lg);
  transition: all var(--transition-base);
  cursor: pointer;
  text-align: center;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-secondary), var(--accent-primary));
  color: var(--text-light);
  box-shadow: var(--shadow-md);
}

.btn-primary:hover {
  box-shadow: var(--shadow-glow);
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  color: var(--accent-secondary);
  border: 2px solid var(--accent-secondary);
}

.btn-secondary:hover {
  background: var(--accent-secondary);
  color: var(--text-light);
}

.btn-ghost {
  color: var(--text-muted);
  padding: var(--space-sm) var(--space-md);
}

.btn-ghost:hover {
  color: var(--accent-secondary);
  background: rgba(74, 144, 226, 0.1);
}

.contact-wrapper {
  max-width: 800px;
  margin: 0 auto;
  background: rgba(34, 40, 49, 0.4);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(74, 144, 226, 0.2);
  border-radius: var(--radius-2xl);
  padding: var(--space-3xl);
  box-shadow: var(--shadow-xl);
}

.form-group {
  margin-bottom: var(--space-lg);
}

.form-label {
  display: block;
  font-family: var(--font-secondary);
  font-size: var(--font-sm);
  font-weight: 600;
  color: var(--text-light);
  margin-bottom: var(--space-sm);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: var(--space-md);
  font-family: var(--font-primary);
  font-size: var(--font-base);
  color: var(--text-light);
  background: rgba(17, 24, 32, 0.6);
  border: 1px solid rgba(74, 144, 226, 0.3);
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
  outline: none;
}

.form-input:focus,
.form-textarea:focus {
  border-color: var(--accent-secondary);
  box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.1);
}

.form-textarea {
  min-height: 150px;
  resize: vertical;
}

.form-checkbox-wrapper {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
}

.form-checkbox {
  width: 20px;
  height: 20px;
  accent-color: var(--accent-secondary);
  cursor: pointer;
}

.form-checkbox-label {
  font-size: var(--font-sm);
  color: var(--text-muted);
  line-height: 1.5;
  cursor: pointer;
}

.form-submit {
  width: 100%;
}

.site-footer {
  background: var(--midnight-obsidian);
  border-top: 1px solid rgba(74, 144, 226, 0.1);
  padding: var(--space-2xl) var(--space-lg) var(--space-lg);
  margin-top: var(--space-4xl);
}

.footer-content {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.footer-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-lg);
  padding-bottom: var(--space-lg);
  border-bottom: 1px solid rgba(74, 144, 226, 0.1);
}

.footer-brand {
  font-family: var(--font-secondary);
  font-size: var(--font-xl);
  font-weight: 700;
  color: var(--accent-secondary);
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
  font-size: var(--font-sm);
  color: var(--text-muted);
}

.footer-nav {
  display: flex;
  justify-content: center;
  gap: var(--space-lg);
  flex-wrap: wrap;
}

.footer-link {
  font-size: var(--font-sm);
  color: var(--text-dim);
  transition: color var(--transition-base);
}

.footer-link:hover {
  color: var(--accent-secondary);
}

.footer-bottom {
  text-align: center;
  font-size: var(--font-xs);
  color: var(--text-dim);
  padding-top: var(--space-md);
}

.privacy-popup {
  position: fixed;
  bottom: var(--space-lg);
  left: 50%;
  transform: translateX(-50%) translateY(150%);
  max-width: 600px;
  width: 90%;
  background: rgba(34, 40, 49, 0.98);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(74, 144, 226, 0.3);
  border-radius: var(--radius-xl);
  padding: var(--space-lg);
  box-shadow: var(--shadow-xl);
  z-index: 9999;
  transition: transform var(--transition-slow);
}

.privacy-popup.active {
  transform: translateX(-50%) translateY(0);
}

.privacy-content {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.privacy-text {
  font-size: var(--font-sm);
  color: var(--text-muted);
  line-height: 1.6;
}

.privacy-actions {
  display: flex;
  gap: var(--space-md);
  justify-content: flex-end;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.text-center { text-align: center; }
.text-gradient {
  background: linear-gradient(135deg, var(--accent-secondary), var(--accent-primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.mt-sm { margin-top: var(--space-sm); }
.mt-md { margin-top: var(--space-md); }
.mt-lg { margin-top: var(--space-lg); }
.mt-xl { margin-top: var(--space-xl); }

.mb-sm { margin-bottom: var(--space-sm); }
.mb-md { margin-bottom: var(--space-md); }
.mb-lg { margin-bottom: var(--space-lg); }
.mb-xl { margin-bottom: var(--space-xl); }

@media (max-width: 1024px) {
  .card-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

@media (max-width: 768px) {
  :root {
    --space-4xl: 4rem;
    --space-3xl: 3rem;
  }
  
  .burger-toggle {
    display: flex;
  }
  
  .main-nav {
    display: none;
  }
  
  .hero-slider {
    height: 70vh;
    min-height: 500px;
  }
  
  .slide-content {
    padding: var(--space-lg);
  }
  
  .card-grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
  
  .footer-info {
    flex-direction: column;
    text-align: center;
  }
  
  .contact-wrapper {
    padding: var(--space-xl);
  }
}

@media (max-width: 480px) {
  :root {
    --font-3xl: 1.75rem;
    --font-4xl: 2rem;
    --space-3xl: 2rem;
  }
  
  .section {
    padding: var(--space-2xl) var(--space-md);
  }
  
  .hero-slider {
    height: 60vh;
    min-height: 450px;
  }
  
  .privacy-popup {
    width: 95%;
  }
  
  .privacy-actions {
    flex-direction: column;
  }
}
@media (max-width: 320px) {

  /* Reduce global spacing & type scale */
  :root {
    --font-base: 0.875rem;
    --font-lg: 1rem;
    --font-xl: 1.25rem;
    --font-2xl: 1.35rem;
    --font-3xl: 1.5rem;

    --space-xl: 1rem;
    --space-2xl: 1.5rem;
    --space-3xl: 2rem;
    --space-4xl: 3rem;
  }

  body {
    padding: 0;
    overflow-x: hidden;
  }

  /* Header */
  .header-container {
    padding: 0 var(--space-md);
  }

  .brand-logo {
    font-size: var(--font-xl);
  }

  .burger-toggle {
    width: 24px;
    height: 20px;
  }
  
  /* Mobile Sidebar */
  .mobile-sidebar {
    width: 90vw;
    padding: var(--space-2xl) var(--space-lg);
  }

  .mobile-sidebar .nav-link {
    padding: var(--space-md);
    font-size: var(--font-sm);
  }

  /* Hero Slider */
  .hero-slider {
    height: 55vh;
    min-height: 380px;
  }

  .slide-content {
    padding: var(--space-md);
  }

  .slide-title {
    font-size: var(--font-3xl);
    line-height: 1.2;
  }

  .slide-description {
    font-size: var(--font-base);
  }

  .slider-controls {
    bottom: var(--space-xl);
  }

  .slider-dot {
    width: 10px;
    height: 10px;
  }

  .slider-dot.active {
    width: 28px;
  }

  /* Sections */
  .section {
    padding: var(--space-xl) var(--space-md);
  }

  .section-title::after {
    width: 45px;
  }

  .section-subtitle {
    font-size: var(--font-base);
    padding: 0 10px;
  }

  /* Cards */
  .card {
    padding: var(--space-lg);
  }

  .card-icon {
    font-size: var(--font-3xl);
  }

  .product-image {
    height: 180px;
  }

  .product-price {
    font-size: var(--font-xl);
  }

  /* Buttons */
  .btn {
    padding: var(--space-sm) var(--space-lg);
    font-size: var(--font-xs);
  }

  /* Contact Form */
  .contact-wrapper {
    padding: var(--space-xl) var(--space-md);
  }

  .form-input,
  .form-textarea {
    font-size: var(--font-sm);
    padding: var(--space-sm);
  }

  /* Footer */
  .footer-content {
    gap: var(--space-md);
  }

  .footer-info {
    gap: var(--space-md);
    padding-bottom: var(--space-md);
  }

  .footer-brand {
    font-size: var(--font-lg);
  }

  .footer-contact {
    font-size: var(--font-xs);
  }

  .footer-nav {
    gap: var(--space-sm);
  }

  .footer-link {
    font-size: var(--font-xs);
  }

  .footer-bottom {
    font-size: var(--font-xs);
  }

  /* Privacy Popup */
  .privacy-popup {
    width: 95%;
    padding: var(--space-md);
    border-radius: var(--radius-md);
  }

  .privacy-actions {
    flex-direction: column;
    gap: var(--space-sm);
  }

}


@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

.fade-in-up {
  animation: fadeInUp var(--transition-slow) ease-out;
}

@media print {
  .site-header,
  .site-footer,
  .burger-toggle,
  .privacy-popup,
  .slider-controls {
    display: none;
  }
  
  body {
    background: white;
    color: black;
  }
}