/** Shopify CDN: Minification failed

Line 34:0 All "@import" rules must come first

**/
/* ============================================
   AFW Modern — Global Visual Overhaul
   American Fusion Wheels
   ============================================ */

/* CSS Custom Properties */
:root {
  --afw-primary: #0a0a0a;
  --afw-primary-light: #1a1a2e;
  --afw-accent: #e20229;
  --afw-accent-hover: #ff1744;
  --afw-accent-glow: rgba(226, 2, 41, 0.35);
  --afw-surface: #121220;
  --afw-surface-light: rgba(255, 255, 255, 0.04);
  --afw-text: #f5f5f5;
  --afw-text-muted: #9e9e9e;
  --afw-border: rgba(255, 255, 255, 0.08);
  --afw-gradient: linear-gradient(135deg, #e20229, #ff6b35);
  --afw-gradient-subtle: linear-gradient(135deg, rgba(226, 2, 41, 0.08), rgba(255, 107, 53, 0.05));
  --afw-radius: 12px;
  --afw-radius-lg: 20px;
  --afw-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
  --afw-shadow-hover: 0 8px 40px rgba(0, 0, 0, 0.3);
  --afw-transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --afw-font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

/* ============================================
   Base Overrides
   ============================================ */

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Improve body background for dark sections */
body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ============================================
   Scroll Reveal Animations
   ============================================ */

.afw-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.afw-reveal--visible {
  opacity: 1;
  transform: translateY(0);
}

.afw-reveal--delay-1 { transition-delay: 0.1s; }
.afw-reveal--delay-2 { transition-delay: 0.2s; }
.afw-reveal--delay-3 { transition-delay: 0.3s; }
.afw-reveal--delay-4 { transition-delay: 0.4s; }

/* Fade in from left */
.afw-reveal--left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

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

/* Scale up */
.afw-reveal--scale {
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

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

/* ============================================
   Modern Section Base
   ============================================ */

.afw-section-dark {
  background: linear-gradient(180deg, var(--afw-primary) 0%, var(--afw-primary-light) 100%);
  color: var(--afw-text);
}

.afw-section-heading {
  font-family: var(--afw-font);
  font-size: 36px;
  font-weight: 800;
  color: #ffffff;
  text-align: center;
  margin: 0 0 12px;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

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

.afw-section-subheading {
  font-family: var(--afw-font);
  font-size: 16px;
  color: var(--afw-text-muted);
  text-align: center;
  margin: 0 0 40px;
  line-height: 1.6;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ============================================
   Section Divider / Wave
   ============================================ */

.afw-divider {
  height: 4px;
  background: var(--afw-gradient);
  border: none;
  margin: 0;
  opacity: 0.6;
}

.afw-divider--subtle {
  height: 1px;
  background: var(--afw-border);
  opacity: 1;
}

/* ============================================
   Trust Bar Section
   ============================================ */

.afw-trust-bar {
  background: linear-gradient(135deg, #0d0d1a 0%, #1a1a2e 100%);
  padding: 40px 24px;
  position: relative;
  overflow: hidden;
}

.afw-trust-bar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(226, 2, 41, 0.3), transparent);
}

.afw-trust-bar::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(226, 2, 41, 0.3), transparent);
}

.afw-trust-bar__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.afw-trust-bar__item {
  text-align: center;
  padding: 16px 12px;
}

.afw-trust-bar__icon {
  font-size: 32px;
  color: #e20229;
  margin-bottom: 10px;
  display: block;
}

.afw-trust-bar__number {
  font-family: var(--afw-font);
  font-size: 28px;
  font-weight: 800;
  color: #ffffff;
  display: block;
  margin-bottom: 4px;
  line-height: 1;
}

.afw-trust-bar__label {
  font-family: var(--afw-font);
  font-size: 13px;
  color: var(--afw-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 500;
}

/* ============================================
   Services Showcase Section
   ============================================ */

.afw-services {
  background: linear-gradient(180deg, var(--afw-primary) 0%, #0d0d1a 100%);
  padding: 64px 24px;
  position: relative;
}

.afw-services__grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.afw-services__card {
  position: relative;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--afw-border);
  border-radius: var(--afw-radius);
  padding: 28px 20px;
  text-align: center;
  text-decoration: none;
  color: var(--afw-text);
  transition: all var(--afw-transition);
  overflow: hidden;
}

.afw-services__card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--afw-gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--afw-transition);
}

.afw-services__card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(226, 2, 41, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(226, 2, 41, 0.1);
  color: var(--afw-text);
}

.afw-services__card:hover::before {
  transform: scaleX(1);
}

.afw-services__card-icon {
  font-size: 36px;
  color: #e20229;
  margin-bottom: 14px;
  display: block;
  transition: transform var(--afw-transition);
}

.afw-services__card:hover .afw-services__card-icon {
  transform: scale(1.1);
}

.afw-services__card-title {
  font-family: var(--afw-font);
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 6px;
  line-height: 1.3;
}

.afw-services__card-desc {
  font-size: 13px;
  color: var(--afw-text-muted);
  margin: 0;
  line-height: 1.5;
}

.afw-services__card-arrow {
  display: inline-block;
  margin-top: 12px;
  font-size: 14px;
  color: #e20229;
  opacity: 0;
  transform: translateX(-8px);
  transition: all var(--afw-transition);
}

.afw-services__card:hover .afw-services__card-arrow {
  opacity: 1;
  transform: translateX(0);
}

/* ============================================
   Modern Button Styles
   ============================================ */

.afw-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--afw-font);
  font-size: 15px;
  font-weight: 600;
  border-radius: var(--afw-radius);
  text-decoration: none;
  transition: all var(--afw-transition);
  cursor: pointer;
  border: none;
  letter-spacing: 0.01em;
}

.afw-btn--primary {
  background: var(--afw-gradient);
  color: #ffffff;
}

.afw-btn--primary:hover {
  box-shadow: 0 4px 20px var(--afw-accent-glow);
  transform: translateY(-2px);
  color: #ffffff;
}

.afw-btn--outline {
  background: transparent;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.afw-btn--outline:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.4);
  color: #ffffff;
}

/* ============================================
   Responsive
   ============================================ */

@media (max-width: 767px) {
  .afw-section-heading {
    font-size: 26px;
  }

  .afw-section-subheading {
    font-size: 14px;
    margin-bottom: 28px;
  }

  .afw-trust-bar {
    padding: 28px 16px;
  }

  .afw-trust-bar__inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .afw-trust-bar__number {
    font-size: 24px;
  }

  .afw-trust-bar__icon {
    font-size: 26px;
  }

  .afw-services {
    padding: 40px 16px;
  }

  .afw-services__grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .afw-services__card {
    padding: 20px 16px;
    display: flex;
    align-items: center;
    text-align: left;
    gap: 16px;
  }

  .afw-services__card-icon {
    font-size: 28px;
    margin-bottom: 0;
    flex-shrink: 0;
  }

  .afw-services__card-desc {
    display: none;
  }

  .afw-services__card-arrow {
    display: none;
  }
}

@media (min-width: 768px) and (max-width: 1024px) {
  .afw-trust-bar__inner {
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
  }

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

  .afw-section-heading {
    font-size: 30px;
  }
}

/* ============================================
   Modern Service Page Styling
   Makes all service / content pages elegant
   ============================================ */

/* Elegant heading banner for pages */
.template-page .heading-static {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 60%, #0d0d1a 100%) !important;
  position: relative;
  overflow: hidden;
}

.template-page .heading-static::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, #e20229, transparent);
}

.template-page .heading-static h1,
.template-page .heading-static h2,
.template-page .heading-static h3,
.template-page .heading-static .t4s-section-heading {
  color: #ffffff !important;
  font-family: var(--afw-font) !important;
  font-weight: 800 !important;
  letter-spacing: -0.02em;
}

.template-page .heading-static p,
.template-page .heading-static .t4s-rte {
  color: #ccc !important;
}

.template-page .heading-static .t4s-rte p {
  color: #bbb !important;
  font-size: 15px !important;
  line-height: 1.7 !important;
}

/* Main page content area — clean, spacious, modern */
.template-page .main-page .t4s-rte,
.template-page .main-page .page-content {
  font-family: var(--afw-font);
  font-size: 16px;
  line-height: 1.8;
  color: #333;
  max-width: 900px;
  margin: 0 auto;
}

.template-page .main-page .t4s-rte h2,
.template-page .main-page .page-content h2 {
  font-family: var(--afw-font);
  font-weight: 800;
  font-size: 28px;
  color: #111;
  margin: 40px 0 16px;
  letter-spacing: -0.02em;
}

.template-page .main-page .t4s-rte h3,
.template-page .main-page .page-content h3 {
  font-family: var(--afw-font);
  font-weight: 700;
  font-size: 22px;
  color: #111;
  margin: 32px 0 12px;
}

.template-page .main-page .t4s-rte img {
  border-radius: var(--afw-radius);
  box-shadow: var(--afw-shadow);
}

.template-page .main-page .t4s-rte ul,
.template-page .main-page .page-content ul {
  padding-left: 20px;
}

.template-page .main-page .t4s-rte li,
.template-page .main-page .page-content li {
  margin-bottom: 8px;
  line-height: 1.7;
}

/* Style custom-html sections inside pages */
.template-page .custom-html {
  font-family: var(--afw-font);
}

/* Featured collection sections inside pages */
.template-page .featured-collection .t4s-section-heading,
.template-page .zdz-portfolio .t4s-section-heading {
  font-family: var(--afw-font) !important;
  font-weight: 800 !important;
  letter-spacing: -0.02em;
}

/* About-us sections — maintain dark styling inside pages */
.template-page .about-us[style*="background"] p {
  font-family: var(--afw-font);
}

/* Service footer snippet global styling */
.afw-sf a {
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.afw-sf a:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

/* ============================================
   Services Nav (all-services page) — modern
   ============================================ */

.afw-sn {
  font-family: var(--afw-font);
}

/* ============================================
   Smooth page transitions
   ============================================ */

.content-for-layout {
  animation: afw-fadeIn 0.4s ease-out;
}

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