/** Shopify CDN: Minification failed

Line 24:18 Expected identifier but found whitespace
Line 24:20 Unexpected "{"
Line 24:30 Expected ":"
Line 25:17 Expected identifier but found whitespace
Line 25:19 Unexpected "{"
Line 25:29 Expected ":"
Line 26:20 Expected identifier but found whitespace
Line 26:22 Unexpected "{"
Line 26:32 Expected ":"

**/
/*
 * VoltNova Shopify Theme - Base Styles
 * Version: 1.0.0
 */

/* ============================================
   CSS Variables
   ============================================ */
:root {
  /* Brand Colors */
  --color-primary: {{ settings.color_primary }};
  --color-accent: {{ settings.color_accent }};
  --color-secondary: {{ settings.color_secondary }};
  
  /* Defaults if settings not set */
  --volt-asphalt: #09090B;
  --volt-lime: #D4F34A;
  --volt-blue: #3B82F6;
  
  /* Neutral Colors */
  --color-background: #F8F9FA;
  --color-foreground: #09090B;
  --color-border: #E4E4E7;
  --color-muted: #71717A;
  
  /* Functional Colors */
  --color-success: #22C55E;
  --color-warning: #F59E0B;
  --color-error: #EF4444;
  
  /* Typography */
  --font-heading: 'Barlow Condensed', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
  
  /* Spacing */
  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 32px;
  --space-2xl: 48px;
  --space-3xl: 64px;
  --space-4xl: 96px;
  
  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 6px;
  --radius-lg: 8px;
  
  /* Container */
  --container-max: 1280px;
  --container-padding: 16px;
}

@media (min-width: 768px) {
  :root {
    --container-padding: 24px;
  }
}

@media (min-width: 1024px) {
  :root {
    --container-padding: 32px;
  }
}

/* ============================================
   Reset & Base
   ============================================ */
*, *::before, *::after {
  box-sizing: border-box;
}

* {
  margin: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-foreground);
  background-color: var(--color-background);
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}

input, button, textarea, select {
  font: inherit;
}

p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
}

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
  padding: 0;
}

/* ============================================
   Typography
   ============================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 800;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

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

.font-heading { font-family: var(--font-heading); }
.font-body { font-family: var(--font-body); }
.font-mono { font-family: var(--font-mono); }

.text-muted { color: var(--color-muted); }
.text-accent { color: var(--volt-lime); }
.text-primary { color: var(--volt-asphalt); }

/* ============================================
   Layout
   ============================================ */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.section {
  padding: var(--space-3xl) 0;
}

.section--sm {
  padding: var(--space-2xl) 0;
}

.section--lg {
  padding: var(--space-4xl) 0;
}

.grid {
  display: grid;
  gap: var(--space-lg);
}

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

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

@media (max-width: 640px) {
  .grid--4, .grid--3, .grid--2 { grid-template-columns: 1fr; }
}

/* ============================================
   Buttons
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0 var(--space-xl);
  height: 48px;
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn:hover {
  transform: scale(1.02);
}

.btn--primary {
  background-color: var(--volt-asphalt);
  color: white;
}

.btn--primary:hover {
  background-color: #1a1a1c;
}

.btn--accent {
  background-color: var(--volt-lime);
  color: var(--volt-asphalt);
}

.btn--accent:hover {
  background-color: #c5e43b;
}

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

.btn--outline:hover {
  border-color: var(--volt-asphalt);
}

.btn--sm {
  height: 36px;
  padding: 0 var(--space-md);
  font-size: 12px;
}

.btn--lg {
  height: 56px;
  padding: 0 var(--space-2xl);
  font-size: 16px;
}

.btn--full {
  width: 100%;
}

/* ============================================
   Forms
   ============================================ */
.input {
  width: 100%;
  height: 48px;
  padding: 0 var(--space-md);
  font-size: 16px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background-color: white;
  transition: border-color 0.2s ease;
}

.input:focus {
  outline: none;
  border-color: var(--volt-asphalt);
  box-shadow: 0 0 0 3px rgba(9, 9, 11, 0.1);
}

.label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: var(--space-sm);
}

.textarea {
  width: 100%;
  min-height: 120px;
  padding: var(--space-md);
  font-size: 16px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background-color: white;
  resize: vertical;
}

/* ============================================
   Cards
   ============================================ */
.card {
  background-color: white;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}

.card:hover {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
}

/* ============================================
   Badges
   ============================================ */
.badge {
  display: inline-flex;
  align-items: center;
  padding: var(--space-xs) var(--space-sm);
  font-size: 12px;
  font-weight: 600;
  border-radius: var(--radius-sm);
}

.badge--sale {
  background-color: var(--color-error);
  color: white;
}

.badge--featured {
  background-color: var(--volt-lime);
  color: var(--volt-asphalt);
}

.badge--new {
  background-color: var(--volt-blue);
  color: white;
}

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

/* ============================================
   Price
   ============================================ */
.price {
  font-family: var(--font-mono);
  font-weight: 700;
}

.price--lg {
  font-size: 1.5rem;
}

.price--xl {
  font-size: 2rem;
}

.price--compare {
  text-decoration: line-through;
  color: var(--color-muted);
  font-weight: 400;
}

/* ============================================
   Selection
   ============================================ */
::selection {
  background-color: var(--volt-lime);
  color: var(--volt-asphalt);
}

/* ============================================
   Scrollbar
   ============================================ */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: var(--volt-asphalt);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #333;
}

/* ============================================
   Utility Classes
   ============================================ */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-between: space-between; }
.gap-sm { gap: var(--space-sm); }
.gap-md { gap: var(--space-md); }
.gap-lg { gap: var(--space-lg); }

.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); }

.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); }
