/** Shopify CDN: Minification failed

Line 20:18 Expected identifier but found whitespace
Line 20:20 Unexpected "{"
Line 20:30 Expected ":"
Line 21:20 Expected identifier but found whitespace
Line 21:22 Unexpected "{"
Line 21:32 Expected ":"
Line 22:17 Expected identifier but found whitespace
Line 22:19 Unexpected "{"
Line 22:29 Expected ":"
Line 25:18 Expected identifier but found whitespace
... and 203 more hidden warnings

**/
/* Theme Settings CSS - Dynamic styles based on Shopify theme settings */

:root {
  /* Brand Colors */
  --primary-color: {{ settings.primary_color | default: '#ff6b35' }};
  --secondary-color: {{ settings.secondary_color | default: '#333333' }};
  --accent-color: {{ settings.accent_color | default: '#000000' }};
  
  /* Typography Colors */
  --heading-color: {{ settings.heading_color | default: '#000000' }};
  --body-text-color: {{ settings.body_text_color | default: '#333333' }};
  --link-color: {{ settings.link_color | default: '#ff6b35' }};
  --link-hover-color: {{ settings.link_hover_color | default: '#e55a2b' }};
  
  /* Button Colors */
  --button-primary-bg: {{ settings.button_primary_bg | default: '#ff6b35' }};
  --button-primary-text: {{ settings.button_primary_text | default: '#ffffff' }};
  --button-primary-hover-bg: {{ settings.button_primary_hover_bg | default: '#e55a2b' }};
  --button-secondary-bg: {{ settings.button_secondary_bg | default: '#ffffff' }};
  --button-secondary-text: {{ settings.button_secondary_text | default: '#333333' }};
  --button-secondary-hover-bg: {{ settings.button_secondary_hover_bg | default: '#f8f9fa' }};
  
  /* Layout */
  --page-width: {{ settings.page_width | default: 1200 }}px;
  --section-padding: {{ settings.section_padding | default: 80 }}px;
  --content-padding: {{ settings.content_padding | default: 20 }}px;
  --grid-spacing-horizontal: {{ settings.grid_spacing_horizontal | default: 30 }}px;
  --grid-spacing-vertical: {{ settings.grid_spacing_vertical | default: 30 }}px;
  
  /* Border Radius */
  --border-radius-small: {{ settings.border_radius_small | default: 4 }}px;
  --border-radius-medium: {{ settings.border_radius_medium | default: 8 }}px;
  --border-radius-large: {{ settings.border_radius_large | default: 12 }}px;
  
  /* Button Styling */
  --button-border-radius: {{ settings.button_border_radius | default: 4 }}px;
  --button-padding-horizontal: {{ settings.button_padding_horizontal | default: 24 }}px;
  --button-padding-vertical: {{ settings.button_padding_vertical | default: 12 }}px;
  --button-font-size: {{ settings.button_font_size | default: 14 }}px;
  --button-font-weight: {{ settings.button_font_weight | default: 600 }};
  --button-shadow-opacity: {{ settings.button_shadow_opacity | default: 10 }}%;
  
  /* Font Sizes */
  --base-font-size: {{ settings.base_font_size | default: 100 }}%;
  --heading-scale: {{ settings.heading_scale | default: 120 }}%;
  --logo-font-size: {{ settings.logo_font_size | default: 32 }}px;
  
  /* Font Weights */
  --body-font-weight: {{ settings.body_font_weight | default: 400 }};
  --heading-font-weight: {{ settings.heading_font_weight | default: 800 }};
  --logo-font-weight: {{ settings.logo_font_weight | default: 900 }};
}

/* Global Typography */
body {
  font-family: {{ settings.body_font.family }}, {{ settings.body_font.fallback_families }};
  font-weight: var(--body-font-weight);
  color: var(--body-text-color);
  font-size: var(--base-font-size);
}

h1, h2, h3, h4, h5, h6 {
  font-family: {{ settings.heading_font.family }}, {{ settings.heading_font.fallback_families }};
  font-weight: var(--heading-font-weight);
  color: var(--heading-color);
  line-height: 1.2;
}

h1 { font-size: calc(2.5rem * var(--heading-scale) / 100); }
h2 { font-size: calc(2rem * var(--heading-scale) / 100); }
h3 { font-size: calc(1.75rem * var(--heading-scale) / 100); }
h4 { font-size: calc(1.5rem * var(--heading-scale) / 100); }
h5 { font-size: calc(1.25rem * var(--heading-scale) / 100); }
h6 { font-size: calc(1rem * var(--heading-scale) / 100); }

/* Links */
a {
  color: var(--link-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--link-hover-color);
}

/* Logo Styling */
.ct-logo {
  font-family: {{ settings.logo_font.family }}, {{ settings.logo_font.fallback_families }};
  font-weight: var(--logo-font-weight);
  font-size: var(--logo-font-size);
  color: var(--accent-color);
}

/* Button Base Styles */
.btn, 
button,
input[type="submit"],
input[type="button"],
.ct-btn {
  font-family: {{ settings.body_font.family }}, {{ settings.body_font.fallback_families }};
  font-size: var(--button-font-size);
  font-weight: var(--button-font-weight);
  border-radius: var(--button-border-radius);
  padding: var(--button-padding-vertical) var(--button-padding-horizontal);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  {% if settings.button_enable_hover_animation %}
    transition: all 0.3s ease;
  {% endif %}
}

/* Primary Buttons */
.btn-primary,
.ct-btn-primary {
  background-color: var(--button-primary-bg);
  color: var(--button-primary-text);
  {% if settings.button_enable_shadow %}
    box-shadow: 0 2px 8px rgba(0, 0, 0, var(--button-shadow-opacity));
  {% endif %}
}

.btn-primary:hover,
.ct-btn-primary:hover {
  background-color: var(--button-primary-hover-bg);
  color: var(--button-primary-text);
  {% if settings.button_enable_shadow %}
    box-shadow: 0 4px 12px rgba(0, 0, 0, calc(var(--button-shadow-opacity) * 1.5));
  {% endif %}
}

/* Secondary Buttons */
.btn-secondary,
.ct-btn-secondary {
  background-color: var(--button-secondary-bg);
  color: var(--button-secondary-text);
  border: 1px solid var(--body-text-color);
  {% if settings.button_enable_shadow %}
    box-shadow: 0 2px 8px rgba(0, 0, 0, var(--button-shadow-opacity));
  {% endif %}
}

.btn-secondary:hover,
.ct-btn-secondary:hover {
  background-color: var(--button-secondary-hover-bg);
  color: var(--button-secondary-text);
  {% if settings.button_enable_shadow %}
    box-shadow: 0 4px 12px rgba(0, 0, 0, calc(var(--button-shadow-opacity) * 1.5));
  {% endif %}
}

/* Layout Containers */
.page-width,
.ct-container {
  max-width: var(--page-width);
  margin: 0 auto;
  padding: 0 var(--content-padding);
}

.section-padding,
.ct-section-padding {
  padding: var(--section-padding) 0;
}

/* Grid Spacing */
.grid-spacing > * {
  margin-bottom: var(--grid-spacing-vertical);
}

.grid-spacing > *:not(:last-child) {
  margin-right: var(--grid-spacing-horizontal);
}

/* Border Radius Classes */
.rounded-small { border-radius: var(--border-radius-small); }
.rounded-medium { border-radius: var(--border-radius-medium); }
.rounded-large { border-radius: var(--border-radius-large); }

/* Color Classes */
.text-primary { color: var(--primary-color); }
.text-secondary { color: var(--secondary-color); }
.text-accent { color: var(--accent-color); }
.text-heading { color: var(--heading-color); }
.text-body { color: var(--body-text-color); }
.text-link { color: var(--link-color); }

.bg-primary { background-color: var(--primary-color); }
.bg-secondary { background-color: var(--secondary-color); }
.bg-accent { background-color: var(--accent-color); }

/* Custom Section Updates */
.ct-header {
  background-color: #ffffff;
}

.ct-header .ct-logo {
  font-family: {{ settings.logo_font.family }}, {{ settings.logo_font.fallback_families }};
  font-weight: var(--logo-font-weight);
  font-size: var(--logo-font-size);
}

/* Collection Page Updates */
.ct-collection-page {
  background-color: #ffffff;
}

.ct-collection-title {
  color: var(--heading-color);
  font-family: {{ settings.heading_font.family }}, {{ settings.heading_font.fallback_families }};
  font-weight: var(--heading-font-weight);
}

.ct-filter-title {
  color: var(--heading-color);
  font-family: {{ settings.heading_font.family }}, {{ settings.heading_font.fallback_families }};
  font-weight: var(--heading-font-weight);
}

.ct-product-title {
  color: var(--heading-color);
  font-family: {{ settings.heading_font.family }}, {{ settings.heading_font.fallback_families }};
  font-weight: var(--heading-font-weight);
}

.ct-product-price {
  color: var(--primary-color);
}

/* Browse Products Section */
.browse-products {
  background-color: #ffffff;
}

.browse-heading {
  color: var(--heading-color);
  font-family: {{ settings.heading_font.family }}, {{ settings.heading_font.fallback_families }};
  font-weight: var(--heading-font-weight);
}

/* Browse Cars Section */
.browse-by-car-slider {
  background-color: #ffffff;
}

.browse-by-car-slider__title {
  color: var(--heading-color);
  font-family: {{ settings.heading_font.family }}, {{ settings.heading_font.fallback_families }};
  font-weight: var(--heading-font-weight);
}

/* Layered Cars Section */
.ct-layered-cars {
  background-color: #ffffff;
}

.ct-layered-cars__title {
  color: var(--heading-color);
  font-family: {{ settings.heading_font.family }}, {{ settings.heading_font.fallback_families }};
  font-weight: var(--heading-font-weight);
}

/* Hero Slider Updates */
.ct-hero-slider {
  background-color: #000000;
}

.ct-slide-content h1,
.ct-slide-content h2 {
  color: #ffffff;
  font-family: {{ settings.heading_font.family }}, {{ settings.heading_font.fallback_families }};
  font-weight: var(--heading-font-weight);
}

.ct-slide-content p {
  color: #ffffff;
  font-family: {{ settings.body_font.family }}, {{ settings.body_font.fallback_families }};
  font-weight: var(--body-font-weight);
}

/* Responsive Font Scaling */
@media (max-width: 768px) {
  :root {
    --section-padding: calc({{ settings.section_padding | default: 80 }}px * 0.7);
    --logo-font-size: calc({{ settings.logo_font_size | default: 32 }}px * 0.8);
  }
  
  h1 { font-size: calc(2rem * var(--heading-scale) / 100); }
  h2 { font-size: calc(1.75rem * var(--heading-scale) / 100); }
  h3 { font-size: calc(1.5rem * var(--heading-scale) / 100); }
}

@media (max-width: 480px) {
  :root {
    --section-padding: calc({{ settings.section_padding | default: 80 }}px * 0.5);
    --content-padding: calc({{ settings.content_padding | default: 20 }}px * 0.75);
    --grid-spacing-horizontal: calc({{ settings.grid_spacing_horizontal | default: 30 }}px * 0.7);
    --grid-spacing-vertical: calc({{ settings.grid_spacing_vertical | default: 30 }}px * 0.7);
  }
}
