/** Shopify CDN: Minification failed

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

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

/* CSS Custom Properties — Racing Red Theme */
:root {
  --afw-primary: #0a0a0a;
  --afw-primary-light: #1a1a2e;
  --afw-accent: #FF0A2E;
  --afw-accent-hover: #FF3355;
  --afw-accent-dark: #CC0022;
  --afw-accent-glow: rgba(255, 10, 46, 0.6);
  --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, #FF0A2E, #FF2D00);
  --afw-gradient-subtle: linear-gradient(135deg, rgba(255, 10, 46, 0.1), rgba(255, 45, 0, 0.06));
  --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: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Modern White Palette */
  --afw-white: #f5f5f7;
  --afw-white-card: #ffffff;
  --afw-white-border: #e5e5e7;
  --afw-white-text: #1d1d1f;
  --afw-white-text-muted: #6e6e73;
  --afw-white-text-body: #424245;
}

/* Neon Glow Pulse — applied to primary buttons and accents */
@keyframes afw-glow-pulse {
  0%, 100% { box-shadow: 0 0 15px rgba(255, 10, 46, 0.4); }
  50% { box-shadow: 0 0 30px rgba(255, 10, 46, 0.7), 0 0 60px rgba(255, 10, 46, 0.25); }
}

/* Google Fonts Import — Outfit: Tesla/Apple-inspired geometric sans-serif */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&display=swap');

/* ============================================
   Global Font Override — Tesla/Apple Premium Feel
   Apply Outfit to ALL theme elements
   ============================================ */

body,
body *:not(i):not(.las):not(.lab):not(.lar):not(.lal):not([class*="fa-"]):not([class*="icon"]) {
  font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif !important;
}

/* Preserve icon fonts — explicit font-family (inherit picks up Outfit from parent) */
i.las, i.lar, i.lal, .las, .lar, .lal,
i[class*="la-"]:not(.lab) {
  font-family: 'Line Awesome Free' !important;
}
i.lab, .lab,
i[class*="lab"] {
  font-family: 'Line Awesome Brands' !important;
}
.fa, .fas, .far,
[class*="fa-"]:not(.fab) {
  font-family: 'Font Awesome 5 Free' !important;
}
.fab {
  font-family: 'Font Awesome 5 Brands' !important;
}
[class*="icon-"] {
  font-family: inherit !important;
}

/* Headings — tighter letter-spacing for premium feel */
h1, h2, h3, h4, h5, h6,
.t4s-section-heading,
.t4s-heading-eff {
  font-family: 'Outfit', -apple-system, sans-serif !important;
  letter-spacing: -0.04em;
}

/* Body text — slightly lighter weight for elegance */
p, li, span:not(.las):not(.lab):not(.lar):not(.lal):not([class*="la-"]):not([class*="fa-"]),
a:not(.las):not(.lab):not(.lar):not(.lal):not([class*="la-"]):not([class*="fa-"]),
td, th, label, input, select, textarea, button {
  font-family: 'Outfit', -apple-system, sans-serif !important;
}

/* Navigation — medium weight, clean spacing */
.t4s-header-menu a,
.t4s-header__nav-item a,
.t4s-mega-menu a {
  font-family: 'Outfit', -apple-system, sans-serif !important;
  letter-spacing: 0.02em;
  font-weight: 500 !important;
}

/* ============================================
   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;
  filter: drop-shadow(0 0 12px rgba(255, 10, 46, 0.4));
}

.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(255, 10, 46, 0.3), transparent);
}

.afw-trust-bar::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 10, 46, 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: #FF0A2E;
  margin-bottom: 10px;
  display: block;
  filter: drop-shadow(0 0 8px rgba(255, 10, 46, 0.5));
}

.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(255, 10, 46, 0.4);
  transform: translateY(-2px) scale(1.01);
  box-shadow: 0 8px 32px rgba(255, 10, 46, 0.15), 0 0 60px rgba(255, 10, 46, 0.08);
  color: var(--afw-text);
}

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

.afw-services__card-icon {
  font-size: 36px;
  color: #FF0A2E;
  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: #FF0A2E;
  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;
  box-shadow: 0 0 15px rgba(255, 10, 46, 0.4);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s ease;
}

.afw-btn--primary:hover {
  box-shadow: 0 6px 28px var(--afw-accent-glow), 0 0 60px rgba(255, 10, 46, 0.2);
  transform: translateY(-2px);
  color: #ffffff;
}

.afw-btn--primary:active {
  transform: scale(0.97);
  box-shadow: 0 2px 12px rgba(255, 10, 46, 0.3);
}

.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, #FF0A2E, 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: var(--afw-white-text-body, #424245);
  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: var(--afw-white-text, #1d1d1f);
  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: var(--afw-white-text, #1d1d1f);
  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); }
}

/* ============================================
   Ferrari Racing Red — Global Theme Overrides
   Dramatic neon racing aesthetic for ALL theme elements
   ============================================ */

/* Racing stripe under header */
.t4s-header-wrapper::after,
.t4s-header__wrapper::after {
  content: '';
  display: block;
  height: 3px;
  background: linear-gradient(90deg, #FF0A2E 0%, #FF2D00 40%, #FF0A2E 60%, rgba(255,10,46,0.3) 100%);
  box-shadow: 0 2px 12px rgba(255, 10, 46, 0.5), 0 0 30px rgba(255, 10, 46, 0.15);
}

/* Active nav link — red glow */
.t4s-header-menu .t4s_act,
.t4s-header-menu .t4s_act > a,
.t4s-header__nav-item.t4s_act > a {
  color: #FF0A2E !important;
  text-shadow: 0 0 12px rgba(255, 10, 46, 0.5);
}

/* Nav hover — subtle red glow */
.t4s-header-menu a:hover,
.t4s-header__nav-item > a:hover {
  color: #FF0A2E !important;
  text-shadow: 0 0 8px rgba(255, 10, 46, 0.3);
}

/* ALL theme buttons — racing red with glow */
.t4s-btn-default,
.t4s-btn.t4s-btn-default,
a.t4s-btn-default {
  background: linear-gradient(135deg, #FF0A2E, #CC0022) !important;
  color: #fff !important;
  border: none !important;
  box-shadow: 0 4px 15px rgba(255, 10, 46, 0.4);
  transition: all 0.3s ease !important;
  text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

.t4s-btn-default:hover,
.t4s-btn.t4s-btn-default:hover,
a.t4s-btn-default:hover {
  background: linear-gradient(135deg, #FF3355, #FF0A2E) !important;
  box-shadow: 0 6px 25px rgba(255, 10, 46, 0.6), 0 0 50px rgba(255, 10, 46, 0.2) !important;
  transform: translateY(-2px);
  color: #fff !important;
}

/* Slideshow / Hero buttons — dramatic racing glow */
.t4s-section-slideshow .t4s-btn,
.t4s-hero__btn .t4s-btn,
.t4s-btn.t4s-btn-color-1 {
  box-shadow: 0 4px 20px rgba(255, 10, 46, 0.5);
  transition: all 0.3s ease !important;
}

.t4s-section-slideshow .t4s-btn:hover,
.t4s-hero__btn .t4s-btn:hover,
.t4s-btn.t4s-btn-color-1:hover {
  box-shadow: 0 6px 30px rgba(255, 10, 46, 0.7), 0 0 60px rgba(255, 10, 46, 0.25) !important;
  transform: translateY(-2px);
}

/* Product cards — red accent on hover */
.t4s-product-wrapper:hover,
.t4s-pr-item:hover {
  box-shadow: 0 4px 20px rgba(255, 10, 46, 0.12), 0 0 40px rgba(255, 10, 46, 0.06);
}

/* Add to Quote / Add to Cart buttons inside product cards */
.t4s-product-wrapper .t4s-product-btn a,
.t4s-pr-item .t4s-product-btn a {
  transition: all 0.3s ease;
}

.t4s-product-wrapper .t4s-product-btn a:hover,
.t4s-pr-item .t4s-product-btn a:hover {
  box-shadow: 0 4px 15px rgba(255, 10, 46, 0.3);
}

/* Cart badge — pulsing red */
.t4s-cart-count,
.t4s-cart-total-items,
.t4s-header-cart__count {
  background: #FF0A2E !important;
  color: #fff !important;
  animation: afw-badge-pulse 2s ease-in-out infinite;
}

@keyframes afw-badge-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255, 10, 46, 0.4); }
  50% { box-shadow: 0 0 0 6px rgba(255, 10, 46, 0); }
}

/* Sale / discount badges — racing red */
.t4s-badge-sale {
  background: linear-gradient(135deg, #FF0A2E, #CC0022) !important;
  box-shadow: 0 2px 8px rgba(255, 10, 46, 0.3);
}

/* Links — racing red */
a[style*="color: var(--accent-color)"],
.t4s-rte a:not(.t4s-btn),
.t4s-link-underline {
  color: #FF0A2E;
}

/* Announcement bar red accent glow */
.t4s-header-topbar,
.t4s-announcement-bar {
  box-shadow: 0 2px 12px rgba(255, 10, 46, 0.1);
}

/* Footer accent line */
footer::before,
.t4s-footer::before {
  content: '';
  display: block;
  height: 3px;
  background: linear-gradient(90deg, transparent, #FF0A2E, transparent);
  box-shadow: 0 -2px 12px rgba(255, 10, 46, 0.3);
}

/* Selection color */
::selection {
  background: rgba(255, 10, 46, 0.25);
  color: inherit;
}

/* Scrollbar accent (webkit) */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: #0a0a0a;
}
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #FF0A2E, #CC0022);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: #FF3355;
}

/* Focus states — racing red ring */
*:focus-visible {
  outline: 2px solid #FF0A2E;
  outline-offset: 2px;
  box-shadow: 0 0 0 4px rgba(255, 10, 46, 0.15);
}

/* Collection filter active — red accent */
.t4s-filter-item.t4s_act,
.t4s-widget-facet__item.t4s_act {
  color: #FF0A2E !important;
}

/* Pagination active — red */
.t4s-pagination .t4s_act,
.t4s-pagination__current {
  background: #FF0A2E !important;
  color: #fff !important;
  box-shadow: 0 2px 8px rgba(255, 10, 46, 0.3);
}

/* ============================================
   Racing Red — Gecko Theme Button Override
   Force --button-background to use racing red
   ============================================ */

/* Override Gecko theme default button variable for broader coverage */
:root {
  --button-background: #FF0A2E !important;
  --button-background-hover: #CC0022 !important;
  --accent-color: #FF0A2E !important;
}

/* Slideshow content — dramatic text shadow for hero text */
.t4s-section-slideshow .t4s-slide-content h2,
.t4s-section-slideshow .t4s-slide-content h1,
.t4s-section-slideshow .t4s-slide-content .t4s-heading-eff {
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.6), 0 0 60px rgba(255, 10, 46, 0.15);
}

/* Category cards (SHOP WHEELS, TIRES, etc.) — add red glow on hover */
.feature-columns .t4s-col-item:hover {
  box-shadow: 0 8px 30px rgba(255, 10, 46, 0.15);
}

/* ============================================
   Mobile Touch Targets & Accessibility
   ============================================ */

@media (max-width: 767px) {
  /* Ensure minimum 48px touch targets on mobile */
  .afw-btn,
  .t4s-btn,
  .t4s-product-btn a,
  .afw-services__card,
  .afw-mobile-cta a {
    min-height: 48px;
  }

  /* Prevent iOS zoom on input focus */
  input, select, textarea {
    font-size: 16px !important;
  }

  /* Momentum scrolling for horizontal overflow */
  .t4s-row-scroll,
  .t4s-swiper-slider {
    -webkit-overflow-scrolling: touch;
  }
}

/* Service page improvements */
.template-page .main-page .t4s-rte,
.template-page .main-page .page-content {
  max-width: 960px;
}

.template-page .main-page .t4s-rte blockquote {
  border-left: 3px solid var(--afw-accent, #FF0A2E);
  padding: 16px 24px;
  margin: 24px 0;
  background: rgba(255, 10, 46, 0.04);
  border-radius: 0 12px 12px 0;
  font-style: italic;
  color: var(--afw-white-text-muted, #6e6e73);
}

/* Synchrony logo is injected via JS (afw-modern.js → initSynchronyLogo) */

/* ============================================
   Modern White — Unified Light Background System
   Apple-inspired cool white (#f5f5f7) replaces
   the flat #f7f7f7 body background
   ============================================ */

/* Body background — cool modern white */
body {
  background-color: var(--afw-white, #f5f5f7) !important;
}

/* Gecko theme white sections — modernize */
.bg_color_white {
  --t4s-bg-color: var(--afw-white, #f5f5f7) !important;
  border-color: var(--afw-white-border, #e5e5e7) !important;
}

/* ---- Text on light/white backgrounds ---- */

/* Page content area — modern text colors */
.template-page .main-page .t4s-rte,
.template-page .main-page .page-content {
  color: var(--afw-white-text-body, #424245);
}

.template-page .main-page .t4s-rte h2,
.template-page .main-page .page-content h2 {
  color: var(--afw-white-text, #1d1d1f);
}

.template-page .main-page .t4s-rte h3,
.template-page .main-page .page-content h3 {
  color: var(--afw-white-text, #1d1d1f);
}

/* Light-bg section text (city list, address area, etc.) */
.t4s-section:not([style*="background-color: rgb(0"]):not([style*="background-color:#0"]):not(.afw-section-dark):not(.afw-trust-bar):not(.afw-services) .t4s-rte p,
.t4s-section:not([style*="background-color: rgb(0"]):not([style*="background-color:#0"]):not(.afw-section-dark):not(.afw-trust-bar):not(.afw-services) .t4s-rte span {
  color: var(--afw-white-text-body, #424245);
}

/* Bold text on white — slightly darker for emphasis */
.t4s-section:not(.afw-section-dark):not(.afw-trust-bar):not(.afw-services) .t4s-rte strong,
.t4s-section:not(.afw-section-dark):not(.afw-trust-bar):not(.afw-services) .t4s-rte b {
  color: var(--afw-white-text, #1d1d1f);
}

/* ---- Product cards on white backgrounds ---- */
.t4s-product-wrapper,
.t4s-pr-item {
  background: var(--afw-white-card, #ffffff);
  border: 1px solid rgba(0, 0, 0, 0.04);
  border-radius: 8px;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.t4s-product-wrapper:hover,
.t4s-pr-item:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(0, 0, 0, 0.06);
  transform: translateY(-2px);
}

/* Product title text on white cards */
.t4s-product-title a,
.t4s-product-title {
  color: var(--afw-white-text, #1d1d1f);
}

/* Product price on white cards */
.t4s-product-price .t4s-price {
  color: var(--afw-white-text, #1d1d1f);
}

/* ---- Form inputs on light backgrounds ---- */
.template-page input:not([type="checkbox"]):not([type="radio"]):not([type="submit"]),
.template-page select,
.template-page textarea {
  background-color: var(--afw-white-card, #ffffff);
  color: var(--afw-white-text, #1d1d1f);
  border: 1px solid var(--afw-white-border, #e5e5e7);
  border-radius: 6px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.template-page input:not([type="checkbox"]):not([type="radio"]):not([type="submit"]):focus,
.template-page select:focus,
.template-page textarea:focus {
  border-color: var(--afw-accent, #FF0A2E);
  box-shadow: 0 0 0 2px rgba(255, 10, 46, 0.1);
  outline: none;
}

/* ---- Article / Blog pages on light bg ---- */
.t4s-article-inner {
  background: var(--afw-white-card, #ffffff);
  border-radius: 8px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}
