/** Shopify CDN: Minification failed

Line 17:15 Expected identifier but found whitespace
Line 17:17 Unexpected "{"
Line 17:26 Expected ":"
Line 18:17 Expected identifier but found whitespace
Line 18:19 Unexpected "{"
Line 18:28 Expected ":"
Line 19:16 Expected identifier but found whitespace
Line 19:18 Unexpected "{"
Line 19:27 Expected ":"
Line 20:16 Expected identifier but found whitespace
... and 23 more hidden warnings

**/
:root {
  --color-root: {{ section.settings.color_root }};
  --color-sacral: {{ section.settings.color_sacral }};
  --color-solar: {{ section.settings.color_solar }};
  --color-heart: {{ section.settings.color_heart }};
  --color-throat: {{ section.settings.color_throat }};
  --color-third-eye: {{ section.settings.color_third_eye }};
  --color-crown: {{ section.settings.color_crown }};
  
  --font-heading: {{ section.settings.font_heading.family }}, {{ section.settings.font_heading.fallback_families }};
  --font-body: {{ section.settings.font_body.family }}, {{ section.settings.font_body.fallback_families }};
  
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2rem;
  --spacing-xl: 3rem;
  
  --border-radius: 12px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.chakra-quiz-wrapper {
  width: 100%;
  min-height: 100vh;
  background: #f5f1eb;
  padding: var(--spacing-lg) var(--spacing-sm);
  font-family: var(--font-body);
}

.quiz-container {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

/* Screen Management */
.quiz-screen {
  display: none;
  animation: fadeIn 0.5s ease-in-out;
}

.quiz-screen.active {
  display: block;
}

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

/* Welcome Screen */
.welcome-content {
  text-align: center;
  padding: var(--spacing-xl) var(--spacing-lg);
  background: white;
  border-radius: var(--border-radius);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.quiz-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 600;
  color: #2c1810;
  margin-bottom: var(--spacing-md);
  line-height: 1.2;
}

.quiz-subtitle {
  font-size: clamp(1.1rem, 3vw, 1.4rem);
  color: #6b5447;
  margin-bottom: var(--spacing-lg);
  font-weight: 500;
}

.quiz-description {
  font-size: 1rem;
  color: #8b7355;
  line-height: 1.8;
  margin-bottom: var(--spacing-xl);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Buttons */
.btn-primary,
.btn-secondary {
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-primary {
  background: linear-gradient(135deg, #8b6f47 0%, #6b5447 100%);
  color: white;
  box-shadow: 0 4px 15px rgba(107, 84, 71, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(107, 84, 71, 0.4);
}

.btn-primary:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

.btn-secondary {
  background: white;
  color: #6b5447;
  border: 2px solid #d4c4b0;
}

.btn-secondary:hover {
  background: #f5f1eb;
  border-color: #8b6f47;
}

/* Progress Bar */
.quiz-progress-wrapper {
  margin-bottom: var(--spacing-xl);
}

.progress-bar {
  width: 100%;
  height: 8px;
  background: #e8dfd5;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: var(--spacing-sm);
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #8b6f47 0%, #6b5447 100%);
  transition: width 0.4s ease;
  border-radius: 10px;
}

.progress-text {
  text-align: center;
  color: #6b5447;
  font-size: 0.9rem;
  font-weight: 500;
}

/* Chakra Header */
.chakra-header {
  background: white;
  border-radius: var(--border-radius);
  padding: 2rem;
  margin-bottom: 1.5rem;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  animation: slideIn 0.4s ease-out;
}

.chakra-badge {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}

.chakra-title {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: #2c1810;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.chakra-desc {
  color: #6b5447;
  font-size: 0.95rem;
}

/* All Questions Container */
.all-questions-container {
  background: white;
  border-radius: var(--border-radius);
  padding: 2rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  margin-bottom: var(--spacing-lg);
  animation: slideIn 0.4s ease-out;
}

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

.question-block {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #e8dfd5;
}

.question-block:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.question-number {
  color: #8b6f47;
  font-weight: 600;
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.question-text {
  color: #2c1810;
  font-size: 1.05rem;
  margin-bottom: 1rem;
  line-height: 1.6;
  font-weight: 500;
}

.answer-options {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;
}

.answer-btn {
  padding: 0.8rem 1rem;
  background: #faf8f5;
  border: 2px solid #e8dfd5;
  border-radius: 8px;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
  font-size: 0.85rem;
  color: #4a3828;
  font-weight: 500;
  font-family: var(--font-body);
}

.answer-btn:hover {
  border-color: #8b6f47;
  background: #f5f1eb;
}

.answer-btn.selected {
  border-color: #8b6f47;
  background: linear-gradient(135deg, #8b6f47 0%, #6b5447 100%);
  color: white;
  font-weight: 600;
}

/* Navigation */
.quiz-navigation {
  display: flex;
  justify-content: space-between;
  gap: var(--spacing-md);
}

.quiz-navigation button {
  flex: 1;
  max-width: 250px;
}

/* Lead Form */
.lead-form-content {
  background: white;
  border-radius: var(--border-radius);
  padding: var(--spacing-xl);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  max-width: 600px;
  margin: 0 auto;
}

.form-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  color: #2c1810;
  margin-bottom: var(--spacing-sm);
  text-align: center;
}

.form-subtitle {
  color: #8b7355;
  text-align: center;
  margin-bottom: var(--spacing-xl);
  font-size: 1rem;
}

.form-group {
  margin-bottom: var(--spacing-lg);
}

.form-group label {
  display: block;
  margin-bottom: var(--spacing-xs);
  color: #4a3828;
  font-weight: 600;
  font-size: 0.9rem;
}

.form-group input {
  width: 100%;
  padding: 1rem;
  border: 2px solid #e8dfd5;
  border-radius: var(--border-radius);
  font-size: 1rem;
  font-family: var(--font-body);
  transition: var(--transition);
  background: #faf8f5;
}

.form-group input:focus {
  outline: none;
  border-color: #8b6f47;
  background: white;
}

.lead-form button[type="submit"] {
  width: 100%;
  margin-top: var(--spacing-md);
}

/* Results */
.results-content {
  background: white;
  border-radius: var(--border-radius);
  padding: var(--spacing-xl);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.results-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: #2c1810;
  margin-bottom: var(--spacing-sm);
  text-align: center;
}

.results-subtitle {
  color: #8b7355;
  text-align: center;
  margin-bottom: var(--spacing-xl);
  font-size: 1.1rem;
}

.chakra-results-grid {
  display: grid;
  gap: var(--spacing-lg);
  margin-bottom: var(--spacing-xl);
}

.chakra-result-card {
  border-radius: var(--border-radius);
  padding: var(--spacing-lg);
  border-left: 6px solid;
  background: #faf8f5;
  transition: var(--transition);
}

.chakra-result-card:hover {
  transform: translateX(5px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.chakra-result-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--spacing-sm);
  flex-wrap: wrap;
  gap: var(--spacing-sm);
}

.chakra-result-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: #2c1810;
  font-family: var(--font-heading);
}

.chakra-result-status {
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.status-blocked {
  background: #ffe5e5;
  color: #c41e3a;
}

.status-underactive {
  background: #fff4e5;
  color: #ff8c00;
}

.status-balanced {
  background: #e8f5e9;
  color: #2e7d32;
}

.status-overactive {
  background: #e3f2fd;
  color: #1976d2;
}

.chakra-result-description {
  color: #4a3828;
  line-height: 1.8;
  margin-bottom: var(--spacing-lg);
  font-size: 1rem;
}

.chakra-result-affirmation {
  padding: var(--spacing-lg);
  border-radius: var(--border-radius);
  margin-bottom: var(--spacing-lg);
  border-left: 4px solid;
  display: flex;
  align-items: flex-start;
  gap: var(--spacing-md);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.affirmation-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  line-height: 1;
}

.affirmation-text {
  flex: 1;
  font-size: 1.1rem;
  font-style: italic;
  color: #2c1810;
  line-height: 1.6;
  font-weight: 500;
}

.chakra-result-tip {
  background: #faf8f5;
  padding: var(--spacing-md);
  border-radius: 8px;
  margin-bottom: var(--spacing-lg);
  font-size: 0.95rem;
  color: #4a3828;
  line-height: 1.6;
}

.chakra-result-tip strong {
  color: #6b5447;
}

.candle-recommendations {
  margin-top: var(--spacing-md);
}

.candle-recommendations-title {
  font-size: 1rem;
  font-weight: 600;
  color: #2c1810;
  margin-bottom: var(--spacing-sm);
}

.candle-placeholder {
  color: #8b7355;
  font-size: 0.9rem;
  font-style: italic;
  padding: var(--spacing-md);
  background: #faf8f5;
  border-radius: 8px;
  text-align: center;
}

.candle-options {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-sm);
}

.candle-option {
  position: relative;
}

.candle-option input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

.candle-option label {
  display: inline-block;
  padding: 0.6rem 1.2rem;
  background: white;
  border: 2px solid #e8dfd5;
  border-radius: 25px;
  cursor: pointer;
  transition: var(--transition);
  font-size: 0.9rem;
  color: #4a3828;
}

.candle-option input[type="checkbox"]:checked + label {
  background: #8b6f47;
  color: white;
  border-color: #8b6f47;
}

.candle-option label:hover {
  border-color: #8b6f47;
}

.results-actions {
  display: flex;
  justify-content: center;
  gap: var(--spacing-md);
  margin-top: var(--spacing-xl);
  flex-wrap: wrap;
}

.results-actions button {
  min-width: 200px;
}

/* Responsive */
@media (max-width: 768px) {
  .chakra-quiz-wrapper {
    padding: var(--spacing-md) var(--spacing-sm);
  }
  
  .all-questions-container {
    padding: 1.5rem;
  }
  
  .answer-options {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .answer-btn {
    font-size: 0.75rem;
    padding: 0.7rem 0.5rem;
  }
  
  .question-text {
    font-size: 0.95rem;
  }
  
  .chakra-header {
    padding: 1.5rem;
  }
  
  .chakra-badge {
    font-size: 0.75rem;
  }
  
  .chakra-title {
    font-size: 1.4rem;
  }
  
  .chakra-desc {
    font-size: 0.85rem;
  }
  
  .quiz-navigation {
    flex-direction: column;
  }
  
  .quiz-navigation button {
    max-width: 100%;
  }
  
  .chakra-result-header {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .chakra-result-name {
    font-size: 1.3rem;
  }
  
  .affirmation-text {
    font-size: 1rem;
  }
  
  .affirmation-icon {
    font-size: 1.3rem;
  }
}

@media (max-width: 480px) {
  .welcome-content,
  .lead-form-content,
  .results-content {
    padding: var(--spacing-lg);
  }
  
  .quiz-title {
    font-size: 2rem;
  }
  
  .btn-primary,
  .btn-secondary {
    padding: 0.9rem 2rem;
    font-size: 0.95rem;
  }
  
  .question-block {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
  }
}