/** Shopify CDN: Minification failed

Line 496:21 Unexpected "__btn"

**/
/* =============================================
   AE AutoParts — Global Cinematic Effects
   Custom cursor, noise texture, smooth scroll
   ============================================= */

/* -----------------------------------------------
   AE DESIGN TOKENS — defined here, not in theme.liquid
   Ensures all custom sections get correct values
   regardless of DAWN colour scheme settings
----------------------------------------------- */
:root {
  /* Brand colours */
  --color-accent:       #8c1115;
  --color-accent-hover: #6e0d10;

  /* Neutrals */
  --color-bg:           #FFFFFF;
  --color-bg-soft:      #F5F5F5;
  --color-bg-dark:      #1C1D24;
  --color-text:         #1C1D24;
  --color-text-muted:   #6B6B72;
  --color-border:       #DDD9D3;
  --color-border-dark:  rgba(255,255,255,0.08);

  /* Typography */
  --font-heading: 'Oswald', 'Barlow Condensed', sans-serif;

  /* Spacing scale */
  --space-xs:   4px;
  --space-sm:   8px;
  --space-md:   16px;
  --space-lg:   24px;
  --space-xl:   32px;
  --space-2xl:  48px;
  --space-3xl:  72px;
  --space-4xl:  96px;

  /* Layout */
  --container-max: 1400px;
  --radius-sm:  4px;
  --radius-md:  8px;
  --radius-lg:  16px;
}

/* Dawn native .button class — force AE red branding */
.button:not(.button--secondary):not(.button--tertiary) {
  background: #8c1115 !important;
  color: #fff !important;
  border-color: #8c1115 !important;
}
.button:not(.button--secondary):not(.button--tertiary):hover {
  background: #6e0d10 !important;
  border-color: #6e0d10 !important;
}

/* Button reset — override DAWN blue link color on .btn classes */
.btn,
a.btn {
  color: inherit;
  text-decoration: none;
}
.btn-primary,
a.btn-primary {
  background: var(--color-accent) !important;
  color: #fff !important;
  border: 2px solid var(--color-accent) !important;
  padding: 14px 28px;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background 0.25s, transform 0.2s;
  cursor: pointer;
  text-decoration: none !important;
}
.btn-primary:hover,
a.btn-primary:hover {
  background: var(--color-accent-hover) !important;
  border-color: var(--color-accent-hover) !important;
  color: #fff !important;
  transform: translateY(-1px);
}
.btn-outline-light,
a.btn-outline-light {
  background: transparent !important;
  color: rgba(255,255,255,0.75) !important;
  border: 1.5px solid rgba(255,255,255,0.3) !important;
  padding: 13px 26px;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: border-color 0.25s, color 0.25s;
  cursor: pointer;
  text-decoration: none !important;
}
.btn-outline-light:hover,
a.btn-outline-light:hover {
  border-color: rgba(255,255,255,0.7) !important;
  color: #fff !important;
}
.btn-outline,
a.btn-outline {
  background: transparent !important;
  color: var(--color-text) !important;
  border: 1.5px solid var(--color-text) !important;
  padding: 13px 26px;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background 0.25s, color 0.25s;
  cursor: pointer;
  text-decoration: none !important;
}
.btn-outline:hover,
a.btn-outline:hover {
  background: var(--color-text) !important;
  color: #fff !important;
}

/* ---- Body background — warm off-white baseline ---- */
html, body {
  background: #FFFFFF !important;
}

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

/* ---- Custom cursor ---- */
*, *::before, *::after { cursor: none !important; }

#ae-cursor {
  display: block !important;   /* override Dawn's grid-body child hiding */
  position: fixed;
  top: 0; left: 0;
  width: 12px; height: 12px;
  background: #8c1115;
  border-radius: 50%;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%, -50%);
  transition: width 0.2s, height 0.2s, opacity 0.2s;
  mix-blend-mode: normal;
  will-change: transform;
}
#ae-cursor-ring {
  display: block !important;   /* override Dawn's grid-body child hiding */
  position: fixed;
  top: 0; left: 0;
  width: 36px; height: 36px;
  border: 1.5px solid rgba(140,17,21,0.5);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99998;
  transform: translate(-50%, -50%);
  transition: width 0.35s cubic-bezier(0.25,0.46,0.45,0.94),
              height 0.35s cubic-bezier(0.25,0.46,0.45,0.94),
              opacity 0.2s;
  will-change: transform;
}
#ae-cursor.is-hovering {
  width: 6px; height: 6px;
  opacity: 0.6;
}
#ae-cursor-ring.is-hovering {
  width: 56px; height: 56px;
  border-color: rgba(140,17,21,0.3);
}
#ae-cursor.is-clicking {
  width: 16px; height: 16px;
}

/* Mobile / touch: hide custom cursor, restore native cursor */
@media (hover: none), (pointer: coarse) {
  #ae-cursor, #ae-cursor-ring { display: none !important; }
  *, *::before, *::after { cursor: auto !important; }
}

/* ---- Noise texture overlay (site-wide) ---- */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.025;
  pointer-events: none;
  z-index: 9000;
}

/* ---- Page transition fade in ---- */
body {
  animation: page-in 0.6s ease forwards;
}
@keyframes page-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* ---- Horizontal rule accent ---- */
.ae-hr {
  border: none;
  height: 1px;
  background: linear-gradient(90deg, var(--color-accent), transparent);
  margin: 0;
}

/* ---- Section number label ---- */
.ae-section-num {
  font-family: var(--font-heading);
  font-size: 11px;
  letter-spacing: 0.25em;
  color: var(--color-accent);
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: var(--space-lg);
}
.ae-section-num::after {
  content: '';
  display: inline-block;
  width: 40px;
  height: 1px;
  background: var(--color-accent);
}

/* ---- Kinetic text (big + outline alternating) ---- */
.kinetic-line {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(4rem, 12vw, 11rem);
  font-weight: 700;
  line-height: 0.92;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}
.kinetic-line--solid   { color: var(--color-text); }
.kinetic-line--outline {
  color: transparent;
  -webkit-text-stroke: 1.5px var(--color-text);
}
.kinetic-line--red     { color: var(--color-accent); }
.kinetic-line--white   { color: #fff; }
.kinetic-line--outline-white {
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(255,255,255,0.4);
}

/* ---- Marquee strip ---- */
.ae-marquee-strip {
  background: var(--color-accent);
  padding: 14px 0;
  overflow: hidden;
  white-space: nowrap;
}
.ae-marquee-strip--dark {
  background: var(--color-bg-dark);
}
.ae-marquee-inner {
  display: inline-flex;
  gap: 0;
  will-change: transform;
}
.ae-marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  padding: 0 32px;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #fff;
}
.ae-marquee-strip--dark .ae-marquee-item { color: rgba(255,255,255,0.5); }
.ae-marquee-dot {
  width: 5px; height: 5px;
  background: rgba(255,255,255,0.6);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ---- Stats bar ---- */
.ae-stats-bar {
  background: var(--color-bg-dark);
  border-top: 1px solid var(--color-border-dark);
  border-bottom: 1px solid var(--color-border-dark);
  padding: var(--space-2xl) 0;
}
.ae-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--color-border-dark);
}
.ae-stat-item {
  background: var(--color-bg-dark);
  padding: var(--space-xl) var(--space-lg);
  text-align: center;
}
.ae-stat-num {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 700;
  color: #fff;
  line-height: 1;
  display: block;
  margin-bottom: var(--space-sm);
}
.ae-stat-num span { color: var(--color-accent); }
.ae-stat-label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}

/* ---- Pinned feature section ---- */
.ae-pinned-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
}
.ae-pinned-img {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  background: var(--color-bg-dark);
}
.ae-pinned-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.7;
}
.ae-pinned-img__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.3), transparent);
}
.ae-pinned-panels { padding: var(--space-3xl) var(--space-2xl); }
.ae-pinned-panel {
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--space-3xl) 0;
  border-bottom: 1px solid var(--color-border);
}
.ae-pinned-panel:last-child { border-bottom: none; }
.ae-pinned-panel__num {
  font-family: var(--font-heading);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--color-accent);
  text-transform: uppercase;
  margin-bottom: var(--space-lg);
}
.ae-pinned-panel h3 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  margin-bottom: var(--space-lg);
}
.ae-pinned-panel p {
  max-width: 400px;
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: var(--space-xl);
}

/* ---- Full-bleed dark section ---- */
.ae-dark-section {
  background: var(--color-bg-dark);
  padding: var(--space-3xl) 0;
  position: relative;
  overflow: hidden;
}
.ae-dark-section::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(140,17,21,0.12) 0%, transparent 70%);
  top: -100px; right: -100px;
  pointer-events: none;
}

/* ---- Mobile ---- */
@media (max-width: 768px) {
  .ae-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .ae-pinned-section { grid-template-columns: 1fr; }
  .ae-pinned-img { position: relative; height: 50vw; }
  .ae-pinned-panels { padding: var(--space-xl) var(--space-md); }
  .ae-pinned-panel { min-height: auto; padding: var(--space-2xl) 0; }
}
@media (max-width: 480px) {
  .ae-stats-grid { grid-template-columns: 1fr 1fr; }
}

/* =============================================
   VIBE CODE LAYER v2.0 — Brim
   All new effects appended below
   ============================================= */

/* ============================================================
   SCROLL PROGRESS BAR — red line top of viewport
   ============================================================ */
#ae-scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  width: 0%;
  background: linear-gradient(to right, #8c1115, #c0212a);
  z-index: 999999;
  pointer-events: none;
  box-shadow: 0 0 8px rgba(140, 17, 21, 0.6);
  transition: width 0.08s linear;
}

/* ============================================================
   GLITCH TEXT EFFECT
   Add class .ae-glitch + data-text="same text" to any heading
   ============================================================ */
.ae-glitch {
  position: relative;
  display: inline-block;
}
.ae-glitch::before,
.ae-glitch::after {
  content: attr(data-text);
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  opacity: 0;
}
.ae-glitch::before {
  color: #ff003c;
  clip-path: polygon(0 15%, 100% 15%, 100% 35%, 0 35%);
  animation: ae-glitch-hi 6s infinite;
  animation-delay: 2s;
}
.ae-glitch::after {
  color: #00e5ff;
  clip-path: polygon(0 60%, 100% 60%, 100% 78%, 0 78%);
  animation: ae-glitch-lo 6s infinite;
  animation-delay: 2s;
}
@keyframes ae-glitch-hi {
  0%,88%,100% { opacity:0; transform:none; }
  90% { opacity:1; transform:translate(-4px,-1px) skewX(-3deg); }
  92% { opacity:1; transform:translate(4px,1px) skewX(2deg); }
  94% { opacity:0; }
}
@keyframes ae-glitch-lo {
  0%,88%,100% { opacity:0; transform:none; }
  91% { opacity:1; transform:translate(4px,1px) skewX(2deg); }
  93% { opacity:1; transform:translate(-3px,-1px) skewX(-1deg); }
  95% { opacity:0; }
}

/* ============================================================
   MAGNETIC BUTTON — JS sets transform, CSS handles glow
   ============================================================ */
.ae-mag-btn {
  transition: transform 0.35s cubic-bezier(0.23, 1, 0.32, 1),
              box-shadow 0.35s ease;
  will-change: transform;
}
.ae-mag-btn:hover {
  box-shadow: 0 10px 44px rgba(140, 17, 21, 0.5);
}

/* ============================================================
   GLOW PULSE — pulsing halo on primary CTA buttons
   ============================================================ */
.hero-cin__btn,
.ae-carbon-banner__btn,
[class*="ae-carbon-"]__btn {
  position: relative;
}
.hero-cin__btn::after {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: inherit;
  background: radial-gradient(ellipse, rgba(140,17,21,0.55) 0%, transparent 68%);
  opacity: 0;
  animation: ae-glow-pulse 2.8s ease-in-out infinite;
  pointer-events: none;
  z-index: -1;
}
@keyframes ae-glow-pulse {
  0%,100% { opacity:0;   transform:scale(0.95); }
  50%      { opacity:0.7; transform:scale(1.1); }
}

/* ============================================================
   3D CARD TILT — JS writes --tilt-x/--tilt-y CSS vars
   ============================================================ */
.ae-tilt {
  transform-style: preserve-3d;
  transform: perspective(900px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg));
  transition: transform 0.15s ease-out, box-shadow 0.25s ease;
  will-change: transform;
}
.ae-tilt:hover {
  box-shadow: 0 28px 64px rgba(0,0,0,0.28), 0 4px 16px rgba(0,0,0,0.18);
}
.ae-tilt__shine {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(circle at var(--shine-x,50%) var(--shine-y,50%), rgba(255,255,255,0.13) 0%, transparent 55%);
  pointer-events: none;
  z-index: 10;
  opacity: 0;
  transition: opacity 0.3s;
}
.ae-tilt:hover .ae-tilt__shine { opacity: 1; }

/* ============================================================
   HERO CORNER BRACKETS — JDM targeting reticle feel
   ============================================================ */
.hero-cin {
  position: relative;
}
.hero-cin__bracket {
  position: absolute;
  width: 42px;
  height: 42px;
  pointer-events: none;
  z-index: 5;
  opacity: 0.55;
}
.hero-cin__bracket--tl {
  top: 24px; left: 24px;
  border-top: 2px solid #8c1115;
  border-left: 2px solid #8c1115;
}
.hero-cin__bracket--tr {
  top: 24px; right: 24px;
  border-top: 2px solid #8c1115;
  border-right: 2px solid #8c1115;
}
.hero-cin__bracket--bl {
  bottom: 24px; left: 24px;
  border-bottom: 2px solid #8c1115;
  border-left: 2px solid #8c1115;
}
.hero-cin__bracket--br {
  bottom: 24px; right: 24px;
  border-bottom: 2px solid #8c1115;
  border-right: 2px solid #8c1115;
}

/* ============================================================
   CARBON BANNER — animated red shimmer sweep
   ============================================================ */
.ae-carbon-shimmer {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg,
    transparent 30%,
    rgba(140,17,21,0.07) 50%,
    transparent 70%
  );
  background-size: 250% 100%;
  animation: ae-carbon-sweep 5s ease-in-out infinite;
  pointer-events: none;
  z-index: 1;
}
@keyframes ae-carbon-sweep {
  0%   { background-position: -100% 0; }
  60%  { background-position:  200% 0; }
  100% { background-position:  200% 0; }
}

/* ============================================================
   STATS — flash ring on data-counter elements
   ============================================================ */
[data-counter].is-counting {
  animation: ae-count-flash 0.12s ease-in-out 3;
}
@keyframes ae-count-flash {
  0%,100% { text-shadow: none; }
  50% { text-shadow: 0 0 18px rgba(140,17,21,0.5); }
}

/* ============================================================
   CATEGORY CARD — image depth parallax
   JS sets --img-y on mousemove
   ============================================================ */
.ae-kat__card img {
  transform: translateY(var(--img-y, 0px));
  transition: transform 0.12s ease-out, opacity 0.3s ease;
}

/* ============================================================
   CATEGORY CARD — shine overlay
   ============================================================ */
.ae-kat__card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(circle at var(--card-mx,50%) var(--card-my,50%), rgba(255,255,255,0.09) 0%, transparent 60%);
  pointer-events: none;
  z-index: 5;
  opacity: 0;
  transition: opacity 0.3s;
}
.ae-kat__card:hover::after { opacity: 1; }

/* ============================================================
   JAMINAN ICONS — hover lift + red glow
   ============================================================ */
.ae-j__item {
  transition: transform 0.3s cubic-bezier(0.23,1,0.32,1);
  cursor: default;
}
.ae-j__item:hover { transform: translateY(-6px); }
.ae-j__icon {
  transition: filter 0.3s;
}
.ae-j__item:hover .ae-j__icon {
  filter: drop-shadow(0 0 10px rgba(140,17,21,0.6));
}

/* ============================================================
   FITMENT CHECKER — focus ring
   ============================================================ */
.ae-fc__select:focus,
.ae-fitment-checker select:focus {
  outline: none;
  box-shadow: 0 0 0 2px rgba(140,17,21,0.4) !important;
  border-color: #8c1115 !important;
  transition: box-shadow 0.2s, border-color 0.2s;
}

/* ============================================================
   MARQUEE — surrounding items dim on hover
   ============================================================ */
.ae-marquee-strip:hover .ae-marquee-item:not(:hover),
.ae-marquee-strip:hover .ae-marquee__item:not(:hover) {
  opacity: 0.45;
  transition: opacity 0.3s;
}
.ae-marquee-item, .ae-marquee__item { transition: opacity 0.3s; }

/* ============================================================
   BRAND STRIP — item glow on hover
   ============================================================ */
.ae-brand-strip__item:hover .ae-brand-strip__logo-text {
  color: #8c1115 !important;
  text-shadow: 0 0 12px rgba(140,17,21,0.3);
}

/* ============================================================
   SECTION COLOUR OVERRIDES
   Light sections: warm off-white tones (#F5F4F0, #ECEAE4)
   Dark sections: charcoal tones (#1C1D24, #232328, #28282B)
   ============================================================ */

/* Brand strip — white bg, muted dark text */
.ae-brand-strip { background: #FFFFFF !important; }
.ae-brand-strip__label { color: rgba(28,29,36,0.4) !important; }
.ae-brand-strip__logo-text { color: rgba(28,29,36,0.5) !important; }
.ae-brand-strip__logo-text:hover { color: #8c1115 !important; }

/* Cara Beli — light bg */
.ae-cb__heading { color: #1C1D24 !important; }
.ae-cb__sub { color: rgba(28,29,36,0.55) !important; }
.ae-cb__step-title { color: #1C1D24 !important; }
.ae-cb__step-text { color: rgba(28,29,36,0.6) !important; }

/* Fitment — light bg */
.ae-fc__heading { color: #1C1D24 !important; }
.ae-fc__sub, .ae-fc__note { color: rgba(28,29,36,0.55) !important; }
.ae-fc__select {
  background: #fff !important;
  color: #1C1D24 !important;
  border-color: rgba(28,29,36,0.15) !important;
}

/* Kategori — light bg */
.ae-kat__heading { color: #1C1D24 !important; }
.ae-kat__sub { color: rgba(28,29,36,0.55) !important; }

/* Testimoni — light bg, white cards */
.ae-t__heading { color: #1C1D24 !important; }
.ae-t__sub { color: rgba(28,29,36,0.5) !important; }
.ae-t__card {
  background: #fff !important;
  border-color: rgba(28,29,36,0.08) !important;
  box-shadow: 0 2px 16px rgba(28,29,36,0.06) !important;
}
.ae-t__quote { color: rgba(28,29,36,0.75) !important; }
.ae-t__name { color: #1C1D24 !important; }
.ae-t__car, .ae-t__verified { color: rgba(28,29,36,0.45) !important; }
.ae-t__divider {
  border-color: rgba(28,29,36,0.08) !important;
  background: rgba(28,29,36,0.08) !important;
}

/* Social embed cards — warm white */
.ae-trendy-card {
  background: #fff !important;
  border-color: rgba(28,29,36,0.06) !important;
  box-shadow: 0 4px 24px rgba(28,29,36,0.08) !important;
}
.ae-footer-text { color: rgba(28,29,36,0.5) !important; }

/* Dawn wrapper — transparent so section bg shows */
.page-width, .shopify-section { background: transparent; }

/* Announcement bar — subtle bottom line */
.utility-bar.color-scheme-4 {
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

/* ============================================================
   FOOTER — dark charcoal (overrides moved here from
   footer-group.json to avoid Shopify 500-char limit)
   ============================================================ */
.footer { background: #1C1D24 !important; }
.footer-block__heading {
  color: #8c1115 !important;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.footer-block__details-content a {
  transition: color 0.2s ease;
  color: rgba(232,230,225,0.6) !important;
}
.footer-block__details-content a:hover { color: #8c1115 !important; }
.footer__content-top, .footer__content-bottom { color: rgba(232,230,225,0.45) !important; }
.footer .h4, .footer p, .footer li,
.footer__newsletter-subheading, .footer label {
  color: rgba(232,230,225,0.6) !important;
}
.footer input[type='email'], .footer input[type='text'] {
  background: #28282B !important;
  border-color: rgba(255,255,255,0.1) !important;
  color: #E8E6E1 !important;
}
.footer__copyright, .footer__payment-terms {
  color: rgba(232,230,225,0.3) !important;
}

/* ============================================================
   REDUCED MOTION — kill all extras
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  #ae-scroll-progress,
  .ae-carbon-shimmer,
  .ae-glitch::before,
  .ae-glitch::after,
  .hero-cin__btn::after { display: none; }

  .ae-tilt { transform: none !important; }
  .ae-mag-btn { transform: none !important; }
  [data-counter].is-counting { animation: none; }
}

/* ============================================================
   LOGO — PNG has white background (not transparent).
   Best code-only fix: border-radius + border to frame it cleanly,
   and a subtle bg to match header so it looks intentional.
   Long-term: replace with transparent PNG.
   ============================================================ */
.header__heading-logo-wrapper {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0 !important;
  overflow: hidden;
  border-radius: 4px;
}
.header__heading-logo,
.header__heading-logo img {
  background: transparent !important;
  border-radius: 4px;
  display: block;
  max-height: 52px;
  width: auto;
}
/* Frame the logo with a subtle dark border so white bg looks intentional */
.header__heading-link {
  background: transparent !important;
  border-radius: 4px;
}

/* ============================================================
   SCROLL PROGRESS BAR — AE red
   ============================================================ */
#ae-scroll-progress {
  background: linear-gradient(to right, #8c1115, #c0212a) !important;
  height: 2px !important;
}

/* ============================================================
   PRODUCT CARD — polish on warm off-white bg
   ============================================================ */
.card-wrapper .card {
  background: #fff !important;
  border: 1px solid rgba(28,29,36,0.07) !important;
  transition: box-shadow 0.25s ease, transform 0.25s ease !important;
}
.card-wrapper:hover .card {
  box-shadow: 0 8px 32px rgba(28,29,36,0.12) !important;
  transform: translateY(-3px) !important;
}
.card__heading a {
  color: #1C1D24 !important;
}
.card__heading a:hover {
  color: #8c1115 !important;
}
.price__container .price-item {
  color: #1C1D24 !important;
}
.price__container .price-item--sale {
  color: #8c1115 !important;
}
/* Badge — sale/new */
.badge {
  background: #8c1115 !important;
  color: #fff !important;
}

/* ============================================================
   COLLECTION BANNER — dark with red underline accent
   ============================================================ */
.collection-hero,
.section-header.gradient {
  background: #1C1D24 !important;
  color: #E8E6E1 !important;
}
.collection-hero__title,
.section-header__title {
  color: #E8E6E1 !important;
}

/* ============================================================
   FILTER BAR — warm light, consistent with grid bg
   ============================================================ */
.facets__wrapper,
.facets-container {
  background: #FFFFFF !important;
}
.facets__summary,
.facets__label {
  color: #1C1D24 !important;
}

/* ============================================================
   FOCUS STATES — accessibility, AE red ring
   ============================================================ */
:focus-visible {
  outline: 2px solid #8c1115 !important;
  outline-offset: 3px !important;
}

/* ============================================================
   SEARCH INPUT — styled
   ============================================================ */
.search__input,
.predictive-search__form input {
  background: #fff !important;
  border-color: rgba(28,29,36,0.15) !important;
  color: #1C1D24 !important;
}
.search__input::placeholder {
  color: rgba(28,29,36,0.4) !important;
}
.search__button svg {
  color: #8c1115 !important;
}

/* ============================================================
   PAGINATION — warm off-white, red active
   ============================================================ */
.pagination__item a,
.pagination__item button {
  color: #1C1D24 !important;
  border-color: rgba(28,29,36,0.15) !important;
}
.pagination__item--current a,
.pagination__item--current button {
  background: #8c1115 !important;
  color: #fff !important;
  border-color: #8c1115 !important;
}

/* ============================================================
   MOBILE — tighten header on small screens
   ============================================================ */
@media (max-width: 749px) {
  .header__heading-logo img {
    max-width: 120px !important;
  }
  .header {
    min-height: 56px !important;
  }
  /* Mobile menu — dark */
  .header__menu-item .link {
    color: #E8E6E1 !important;
  }
  details-modal .header-menu {
    background: #1C1D24 !important;
  }
}

/* ============================================================
   BREADCRUMB — dark text on light bg
   ============================================================ */
.breadcrumb a,
.breadcrumb__item {
  color: rgba(28,29,36,0.5) !important;
}
.breadcrumb a:hover {
  color: #8c1115 !important;
}

/* ============================================================
   PRODUCT PAGE — main info area
   ============================================================ */
.product__title {
  color: #1C1D24 !important;
}
.product__text .price__container {
  color: #1C1D24 !important;
}
.product__text .price-item--sale {
  color: #8c1115 !important;
}
/* Variant selector pills */
.swatch__input:checked + .swatch__label,
.swatch__input:checked + label {
  border-color: #8c1115 !important;
  color: #8c1115 !important;
}
/* Add to cart button */
.product-form__submit.button {
  background: #8c1115 !important;
  border-color: #8c1115 !important;
  color: #fff !important;
  letter-spacing: 0.08em !important;
  font-weight: 600 !important;
}
.product-form__submit.button:hover {
  background: #6e0d10 !important;
  border-color: #6e0d10 !important;
}

/* ============================================================
   QUANTITY SELECTOR — clean
   ============================================================ */
.quantity__button {
  color: #1C1D24 !important;
  border-color: rgba(28,29,36,0.15) !important;
}
.quantity__input {
  color: #1C1D24 !important;
  border-color: rgba(28,29,36,0.15) !important;
}

/* ============================================================
   ANNOUNCEMENT BAR — ensure no bleed
   ============================================================ */
.announcement-bar__message {
  color: #E8E6E1 !important;
}
.announcement-bar {
  border-bottom: none !important;
}

/* ============================================================
   HEADER — scrolled elevation
   JS adds .ae-header--scrolled on scroll > 40px
   ============================================================ */
.shopify-section-group-header-group .ae-header--scrolled,
.header-wrapper.ae-header--scrolled {
  box-shadow: 0 4px 24px rgba(28,29,36,0.10) !important;
}

/* ============================================================
   KINETIC HIGHLIGHT — red sweep underline (fixed: was never triggering)
   .in-view class added by IntersectionObserver in scroll-animations.js
   ============================================================ */
.kinetic-highlight-inner::after {
  content: '';
  position: absolute;
  left: -4px; right: -4px;
  bottom: 0.08em; top: 0.05em;
  background: var(--color-accent);
  z-index: -1;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.65s cubic-bezier(0.77,0,0.175,1);
}
.kinetic-highlight-inner.in-view::after { transform: scaleX(1); }

/* ============================================================
   KINETIC SECTION — animated dark bg radial glow
   ============================================================ */
.kinetic-sec.theme--dark::before {
  content: '';
  position: absolute;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(140,17,21,0.13) 0%, transparent 65%);
  top: -120px; right: -80px;
  pointer-events: none;
  animation: ae-glow-drift 8s ease-in-out infinite alternate;
}
.kinetic-sec.theme--dark::after {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(140,17,21,0.08) 0%, transparent 65%);
  bottom: -60px; left: 0;
  pointer-events: none;
  animation: ae-glow-drift 11s ease-in-out infinite alternate-reverse;
}
@keyframes ae-glow-drift {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(40px, 30px) scale(1.08); }
}

/* ============================================================
   HERO BRACKETS — subtle pulse
   ============================================================ */
.hero-cin__bracket {
  animation: ae-bracket-pulse 4s ease-in-out infinite;
}
.hero-cin__bracket--tr, .hero-cin__bracket--bl {
  animation-delay: 2s;
}
@keyframes ae-bracket-pulse {
  0%, 100% { opacity: 0.55; }
  50%       { opacity: 0.9; }
}

/* ============================================================
   CARA BELI — step icon hover lift + maroon pulse
   ============================================================ */
.ae-cb__step {
  transition: transform 0.3s cubic-bezier(0.23,1,0.32,1);
}
.ae-cb__step:hover {
  transform: translateY(-6px);
}
.ae-cb__step:hover .ae-cb__icon-wrap {
  box-shadow: 0 0 0 4px rgba(140,17,21,0.15), 0 8px 24px rgba(140,17,21,0.25) !important;
  border-color: #8c1115 !important;
}

/* ============================================================
   TESTIMONI CARDS — maroon left border on hover
   ============================================================ */
.ae-t__card {
  border-left: 3px solid transparent !important;
  transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease !important;
}
.ae-t__card:hover {
  border-left-color: #8c1115 !important;
}

/* ============================================================
   STATS — red accent glow on hover
   ============================================================ */
.ae-stat-item {
  position: relative;
  overflow: hidden;
}
.ae-stat-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 120%, rgba(140,17,21,0.18) 0%, transparent 65%);
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}
.ae-stat-item:hover::before { opacity: 1; }
.ae-stat-num { transition: color 0.25s; }
.ae-stat-item:hover .ae-stat-num { color: #fff; }

/* ============================================================
   SECTION TRANSITION DOTS — thin maroon dividers between
   alternating light/dark sections give rhythm
   ============================================================ */
.ae-stats-section + .shopify-section > *,
.ae-jaminan-section + .shopify-section > * {
  border-top: none;
}

/* ============================================================
   FITMENT CHECKER — select arrow & button elevation
   ============================================================ */
.ae-fc__btn {
  box-shadow: 0 4px 16px rgba(140,17,21,0.2);
  transition: filter 0.2s, transform 0.2s, box-shadow 0.2s !important;
}
.ae-fc__btn:hover {
  box-shadow: 0 8px 28px rgba(140,17,21,0.35) !important;
}

/* ============================================================
   FOOTER — newsletter button
   ============================================================ */
.footer .field__button,
.footer .newsletter-form__button {
  background: #8c1115 !important;
  color: #fff !important;
  border-color: #8c1115 !important;
}

/* ============================================================
   CART DRAWER — item image hover zoom
   ============================================================ */
.cart-item__image {
  transition: transform 0.3s ease;
}
.cart-item:hover .cart-item__image {
  transform: scale(1.04);
}

/* ============================================================
   QUICK ADD BUTTON
   ============================================================ */
.quick-add__submit {
  background: #8c1115 !important;
  color: #fff !important;
  border-color: #8c1115 !important;
}
.quick-add__submit:hover {
  background: #6e0d10 !important;
  border-color: #6e0d10 !important;
}

/* ============================================================
   PRODUCT PAGE — image gallery hover zoom
   ============================================================ */
.product__media-item .media img,
.product__media-item .media video {
  transition: transform 0.5s cubic-bezier(0.25,0.46,0.45,0.94);
}
.product__media-item:hover .media img {
  transform: scale(1.03);
}

/* ============================================================
   COLLECTION — product grid spacing on white bg
   ============================================================ */
.collection .card-wrapper {
  border-radius: 8px;
  overflow: hidden;
}

/* ============================================================
   FEATURED COLLECTION — section heading
   ============================================================ */
.featured-collection__title,
.collection__title {
  color: #1C1D24 !important;
}

/* ============================================================
   SELECTION highlight — brand maroon
   ============================================================ */
::selection {
  background: rgba(140,17,21,0.18);
  color: #1C1D24;
}

/* ============================================================
   RESPONSIVE TYPOGRAPHY — Brim v3.1
   All AE custom sections use px to bypass Dawn's rem scaling.
   Desktop baseline (≥1024px) is set here.
   Mobile overrides (≤749px) tighten spacing but keep readability.
   ============================================================ */

/* Desktop — bump up labels/eyebrows/body copy a touch */
@media (min-width: 1024px) {
  .section-label          { font-size: 12px; }
  .ae-section-num         { font-size: 12px; }
  .ae-marquee-item        { font-size: 14px; }
  .ae-stat-label          { font-size: 12px; }
  .feat-scroll__panel__num   { font-size: 11px; }
  .feat-scroll__panel__body  { font-size: 15px; }
  .feat-scroll__link         { font-size: 12px; }
  .kinetic-sub            { font-size: 16px; }
  .ae-kat__label          { font-size: 11px; }
  .ae-kat__sub            { font-size: 14px; }
  .ae-kat__btn            { font-size: 12px; }
  .ae-brand-strip__label  { font-size: 11px; }
  .ae-brand-strip__logo-text { font-size: 13px; }
  .btn, .btn-primary, .btn-outline, .btn-outline-light,
  a.btn-primary, a.btn-outline, a.btn-outline-light { font-size: 14px !important; }
}

/* Mobile (≤749px) — ensure nothing goes below 10px */
@media (max-width: 749px) {
  /* Global AE body copy floor */
  .ae-j__desc      { font-size: 12px !important; }
  .ae-j__title     { font-size: 14px !important; }
  .ae-t__quote     { font-size: 14px !important; }
  .ae-t__name      { font-size: 14px !important; }
  .ae-t__car       { font-size: 12px !important; }
  .ae-t__verified  { font-size: 12px !important; }
  .ae-cb__step-text { font-size: 14px !important; }
  .ae-cb__step-title { font-size: 16px !important; }
  .ae-fc__sub, .ae-fc__note { font-size: 13px !important; }
  /* Announcement bar */
  .announcement-bar__message { font-size: 13px !important; }
}

