@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&family=Dancing+Script:wght@700&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --brand:        #eb4f43;
  --brand-dark:   #c43a2b;
  --bg:           #F4F3F1;
  --bg-card:      #ffffff;
  --bg-subtle:    #EFEFED;
  --text-h:       #111111;
  --text-body:    #555555;
  --text-muted:   #777777;
  --text-dim:     #888888;
  --border:       rgba(0,0,0,0.06);
  --radius-card:  18px;
  --radius-sect:  40px;
}

html {
  overflow-x: hidden;
}

body {
  background: var(--bg);
  font-family: 'Poppins', 'Helvetica Neue', Arial, sans-serif;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  transition: background-color .45s ease;
  overflow-x: hidden;
}

h1, h2 {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-weight: 900;
}

/* ══════════════════════════════════
   HERO
══════════════════════════════════ */
.hero-wrap { position: relative; z-index: 10; }

.hero {
  position: relative;
  height: 700px;
  border-radius: 0 0 60px 60px;
  z-index: 1;
}

.hero-media {
  position: absolute; inset: 0;
  overflow: hidden;
  border-radius: inherit;
}

.hero-bg {
  position: absolute; inset: 0;
  background: url('https://supremeforged.com/SF/assets/img/hero.webp') center 50% / cover no-repeat;
  transform: scale(1.08);
  transform-origin: center center;
}

.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.18) 0%, rgba(0,0,0,0.55) 100%);
}

/* ── NAV ── */
.hero-nav {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  padding: 28px 44px;
}

.nav-logo img { width: 280px; height: auto; display: block; }

.nav-links {
  position: absolute;
  left: 50%; transform: translateX(-50%);
  display: flex; align-items: center;
  gap: 52px; list-style: none;
}

.nav-links a {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-weight: 900; font-size: 16px;
  color: #ffffff; text-decoration: none;
  letter-spacing: 0.02em; white-space: nowrap;
  transition: opacity .2s;
}
.nav-links a:hover        { opacity: .65; }
.nav-links a.nav-active   { opacity: 1; border-bottom: 2px solid rgba(255,255,255,.6); padding-bottom: 2px; }

.nav-right {
  margin-left: auto;
  position: relative;
  padding-right: 12px;
}
.nav-right::after {
  content: ''; position: absolute;
  bottom: -16px; left: 0; right: 0; height: 16px;
}

.contact-trigger {
  background: none; border: none; cursor: pointer;
  color: #fff; display: flex; align-items: center;
  justify-content: center; padding: 4px; transition: opacity .2s;
}
.contact-trigger:hover { opacity: .7; }

.contact-dropdown {
  display: none; position: absolute;
  top: calc(100% + 16px); right: 0;
  width: 380px; background: #fff;
  border-radius: 16px; box-shadow: 0 12px 48px rgba(0,0,0,.18);
  overflow: hidden; z-index: 100;
  transition: background .4s;
}
.nav-right:hover .contact-dropdown { display: block; }

/* Mobile menu trigger — hidden on desktop, shown via the media query below.
   Reuses the same openFullMenu() the scroll-pill's hamburger already calls. */
.nav-hamburger {
  display: none;
  background: none; border: none; cursor: pointer;
  color: #fff; align-items: center; justify-content: center;
  padding: 6px; margin-left: 10px; flex-shrink: 0;
}

.cd-title {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-weight: 900; font-size: 16px; color: #0e1726;
  text-align: center; padding: 22px 24px; letter-spacing: 0.01em;
}
.cd-divider { height: 1px; background: #eee; }
.cd-row {
  display: flex; align-items: center; gap: 14px;
  padding: 18px 24px; text-decoration: none;
}
.cd-row-icon {
  width: 38px; height: 38px; background: #F4F3F1;
  border-radius: 50%; display: flex; align-items: center;
  justify-content: center; flex-shrink: 0; color: #0e1726;
  transition: background .4s;
}
.cd-row-text {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-weight: 300; font-size: 14px; color: #333;
  letter-spacing: 0.01em; text-decoration: none;
  transition: color .2s;
}
.cd-row:hover .cd-row-text { color: var(--brand); }
.cd-footer { padding: 18px 24px 22px; }
.cd-btn {
  display: block; font-family: 'Helvetica Neue', Arial, sans-serif;
  font-weight: 900; font-size: 14px; letter-spacing: 0.02em;
  color: #fff; background: var(--brand);
  text-align: center; text-decoration: none;
  padding: 16px 24px; border-radius: 60px; transition: background .2s;
}
.cd-btn:hover { background: var(--brand-dark); }

/* ── HERO CONTENT ── */
.hero-content {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding: 100px 48px 60px; z-index: 5;
}
.hero-content h1 {
  font-size: 64px; color: #fff; text-align: center;
  line-height: 1.08; letter-spacing: -0.01em; margin-bottom: 18px;
}
.hero-content p {
  font-family: 'Poppins', sans-serif;
  font-weight: 600; font-size: 16px; color: rgba(255,255,255,0.72);
  text-align: center; line-height: 1.5em;
  max-width: 780px; margin: 0 auto;
}

/* ── BUMP ── */
.hero-bump {
  position: absolute; bottom: 0; left: 50%;
  transform: translate(-50%, 50%); z-index: 30;
  width: 136px; height: 136px; background: var(--bg);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: width .55s cubic-bezier(0.34,1.56,0.64,1),
              height .55s cubic-bezier(0.34,1.56,0.64,1),
              background-color .4s ease;
}
.bump-inner {
  width: 88px; height: 88px; background: #111;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  transition: width .55s cubic-bezier(0.34,1.56,0.64,1),
              height .55s cubic-bezier(0.34,1.56,0.64,1),
              background-color .4s ease;
}
.bump-inner img { height: 32px; width: auto; display: block; }

.hero-bump.expanded { width: 148px; height: 148px; background-color: var(--brand); }
.hero-bump.expanded .bump-inner { width: 138px; height: 138px; background-color: var(--brand); }
.hero-bump.expanded .bump-inner img { filter: brightness(0) invert(1); }

.bump-contact-panel {
  position: absolute; bottom: 20px; z-index: 40;
  opacity: 0; pointer-events: none;
  transform: translateY(12px);
  transition: opacity .35s ease .08s, transform .35s ease .08s;
  text-align: center;
}
.bump-panel-left  { right: calc(50% + 140px); }
.bump-panel-right { left:  calc(50% + 140px); }
.bump-contact-panel.bp-active { opacity: 1; transform: translateY(0); }
.bp-icon { display: flex; align-items: center; justify-content: center; margin-bottom: 8px; color: rgba(255,255,255,.85); }
.bp-value {
  display: block; font-family: 'Poppins', sans-serif;
  font-weight: 600; font-size: clamp(13px,1.1vw,16px);
  color: #fff; white-space: nowrap;
}

/* ══════════════════════════════════
   SCROLL PILL
══════════════════════════════════ */
.scroll-menu {
  position: fixed; top: 22px; left: 50%;
  transform: translateX(-50%) translateY(-12px);
  z-index: 999;
  display: flex; align-items: center; gap: 32px;
  padding: 12px 36px; border-radius: 60px;
  background: rgba(255,255,255,0.22);
  backdrop-filter: blur(28px) saturate(180%);
  -webkit-backdrop-filter: blur(28px) saturate(180%);
  border-top:    1px solid rgba(255,255,255,0.60);
  border-left:   1px solid rgba(255,255,255,0.32);
  border-right:  1px solid rgba(255,255,255,0.16);
  border-bottom: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 8px 32px rgba(0,0,0,0.12), inset 0 1px 0 rgba(255,255,255,0.40);
  opacity: 0; pointer-events: none;
  transition: opacity .3s ease, transform .3s ease;
}
.scroll-menu.visible { opacity: 1; pointer-events: auto; transform: translateX(-50%) translateY(0); }
.scroll-menu.modal-hide { opacity: 0 !important; transform: translateX(-50%) translateY(-16px) !important; pointer-events: none !important; }

.sm-icon {
  color: rgba(20,20,20,.75); display: flex; align-items: center;
  justify-content: center; cursor: pointer; transition: color .2s;
  background: none; border: none; padding: 0;
}
.sm-icon:hover { color: #000; }
.sm-logo { width: 40px; height: 40px; object-fit: contain; }

.sm-dropdown {
  display: none; position: absolute;
  top: calc(100% + 14px); left: 50%; transform: translateX(-50%);
  width: 360px; background: #fff;
  border-radius: 16px; box-shadow: 0 12px 48px rgba(0,0,0,.22);
  overflow: hidden; transition: background .4s;
}
.sm-dropdown.open { display: block; }

/* ══════════════════════════════════
   FULL PAGE MENU
══════════════════════════════════ */
.fullpage-menu {
  position: fixed; inset: 0; z-index: 1500;
  background: rgba(8,8,8,0.94);
  backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity .3s ease;
}
.fullpage-menu.open { opacity: 1; pointer-events: auto; }

.fm-close {
  position: absolute; top: 36px; right: 48px;
  background: none; border: none;
  color: rgba(255,255,255,.6); font-size: 40px; line-height: 1;
  cursor: pointer; transition: color .2s;
}
.fm-close:hover { color: #fff; }

.fm-nav {
  display: flex; flex-direction: column;
  align-items: flex-start; gap: 12px; padding: 0 60px;
}
.fm-nav a {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-weight: 900; font-size: clamp(40px,7vw,88px);
  color: #fff; text-decoration: none;
  letter-spacing: -0.02em; line-height: 1.1;
  transition: color .2s, transform .2s; display: block;
}
.fm-nav a:hover { color: var(--brand); transform: translateX(12px); }

/* ══════════════════════════════════
   FOOTER
══════════════════════════════════ */
.site-footer {
  background: #1a1a1a;
  border-radius: 60px 60px 0 0;
  padding: 56px 20px 36px;
}
.footer-main {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  margin-bottom: 32px;
  max-width: 1480px;
  margin-left: auto; margin-right: auto;
}
.footer-logo { height: 64px; width: auto; display: block; margin-bottom: 16px; }
.footer-tagline {
  font-family: 'Poppins', sans-serif;
  font-size: 13px; color: rgba(255,255,255,.4);
  line-height: 1.65; margin-bottom: 22px;
}
.footer-socials { display: flex; gap: 8px; }
.footer-social-btn {
  width: 36px; height: 36px; background: rgba(255,255,255,.1);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.65); text-decoration: none;
  transition: background .2s, color .2s;
}
.footer-social-btn:hover { background: var(--brand); color: #fff; }
.footer-col-title {
  font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 14px;
  color: #fff; margin-bottom: 18px;
}
.footer-links-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links-list a {
  font-family: 'Poppins', sans-serif; font-size: 13px;
  color: rgba(255,255,255,.42); text-decoration: none; transition: color .2s;
}
.footer-links-list a:hover { color: #fff; }
.footer-contact-item {
  font-family: 'Poppins', sans-serif; font-size: 13px;
  color: rgba(255,255,255,.42); margin-bottom: 10px; line-height: 1.5;
}
.footer-contact-item a { color: rgba(255,255,255,.42); text-decoration: none; }
.footer-contact-item a:hover { color: #fff; }
.footer-legal-links {
  margin-top: 20px;
  display: flex; align-items: center; gap: 8px;
  font-family: 'Poppins', sans-serif; font-size: 13px;
}
.footer-legal-links a { color: rgba(255,255,255,.42); text-decoration: none; transition: color .2s; }
.footer-legal-links a:hover { color: #fff; }
.footer-legal-links span { color: rgba(255,255,255,.25); }
.footer-email-input {
  width: 100%; background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12); border-radius: 50px;
  padding: 13px 20px; font-family: 'Poppins', sans-serif;
  font-size: 13px; color: rgba(255,255,255,.7);
  outline: none; margin-bottom: 10px; display: block;
}
.footer-email-input::placeholder { color: rgba(255,255,255,.3); }
.footer-subscribe-btn {
  width: 100%; background: #fff; color: #111;
  border: none; border-radius: 50px; padding: 14px 20px;
  font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 13px;
  cursor: pointer; transition: background .2s, color .2s;
}
.footer-subscribe-btn:hover { background: var(--brand); color: #fff; }
.footer-bottom {
  display: flex; flex-direction: column;
  align-items: center; gap: 10px;
  max-width: 1480px; margin: 0 auto;
}
.footer-handmade-small { width: 400px; height: auto; max-width: 90%; opacity: 1; }
.footer-copy {
  font-family: 'Poppins', sans-serif; font-weight: 400;
  font-size: 11px; color: rgba(255,255,255,.22); letter-spacing: .02em;
}

/* ══════════════════════════════════
   PRODUCT MODAL
══════════════════════════════════ */
.product-modal { position: fixed; inset: 0; z-index: 1800; pointer-events: none; }
.product-modal.open { pointer-events: auto; }

.modal-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0); transition: background .45s ease; cursor: pointer;
}
.product-modal.open .modal-overlay { background: rgba(0,0,0,0.45); }

.modal-panel {
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 94vh; background: #fff;
  border-radius: 24px 24px 0 0; overflow: hidden;
  display: flex; flex-direction: column;
  transform: translateY(100%);
  transition: transform .55s cubic-bezier(0.32,0.72,0,1);
}
.product-modal.open .modal-panel { transform: translateY(0); }

.modal-handle {
  width: 48px; height: 5px; background: #ddd; border-radius: 3px;
  margin: 16px auto 0; flex-shrink: 0;
}
.modal-static-header {
  flex-shrink: 0; padding: 20px 52px 24px;
  border-bottom: 1px solid #f0f0f0;
  display: flex; align-items: center;
  justify-content: space-between; gap: 24px;
}
.msh-left { flex: 1; min-width: 0; }
.msh-series { font-family: 'Poppins', sans-serif; font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: #aaa; margin-bottom: 4px; }
.msh-title { font-family: 'Helvetica Neue', Arial, sans-serif; font-weight: 900; font-size: clamp(26px,3.5vw,44px); line-height: 1; color: #111; margin-bottom: 10px; }
.msh-badge { display: inline-block; font-family: 'Poppins', sans-serif; font-weight: 600; font-size: 12px; color: var(--brand); background: rgba(235,79,67,.09); border: 1px solid rgba(235,79,67,.2); padding: 4px 14px; border-radius: 20px; }
.msh-right { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.msh-contact-btn { font-family: 'Helvetica Neue', Arial, sans-serif; font-weight: 900; font-size: 12px; letter-spacing: .08em; text-transform: uppercase; color: #fff; background: var(--brand); border: none; padding: 12px 26px; border-radius: 60px; cursor: pointer; transition: background .2s; white-space: nowrap; }
.msh-contact-btn:hover { background: var(--brand-dark); }
.modal-close { width: 42px; height: 42px; border-radius: 50%; background: #f0efed; border: none; font-size: 22px; line-height: 1; cursor: pointer; color: #555; display: flex; align-items: center; justify-content: center; transition: background .2s, color .2s; flex-shrink: 0; }
.modal-close:hover { background: #e0e0e0; color: #111; }
.modal-body { flex: 1; overflow-y: auto; -webkit-overflow-scrolling: touch; }
.modal-inner { max-width: 1100px; margin: 0 auto; padding: 36px 52px 80px; }

.mp-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; margin-top: 8px; margin-bottom: 52px; }
.mp-img-area { background: #F5F4F2; border-radius: 16px; min-height: 340px; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.mp-img-area img { width: 90%; height: auto; max-height: 340px; object-fit: contain; border-radius: 12px; }
.mp-img-area .mp-ph { font-family: 'Poppins', sans-serif; font-size: 13px; color: #bbb; }
.mp-info { display: flex; flex-direction: column; justify-content: center; }

.wheel-crosslink-bar {
  max-width: 996px; margin: 90px auto 0; padding: 5px;
  background: #e5e4e0; border-radius: 16px;
  display: flex; align-items: stretch; justify-content: space-between; gap: 5px;
}
[data-theme="dark"] .wheel-crosslink-bar { background: #1a1a1a; }

.wheel-price-card {
  flex: 1; background: #fff; border-radius: 12px; padding: 24px 28px 18px;
  display: flex; flex-direction: column; justify-content: center;
}
[data-theme="dark"] .wheel-price-card { background: #111; }
.wheel-price-card .ms-label { color: #999; }
[data-theme="dark"] .wheel-price-card .ms-label { color: rgba(255,255,255,.5); }
.wheel-price-card-value { font-family: 'Helvetica Neue', Arial, sans-serif; font-weight: 900; font-size: 22px; color: #111; margin: 2px 0 8px; }
[data-theme="dark"] .wheel-price-card-value { color: #fff; }
.wheel-price-card-note { display: flex; align-items: center; gap: 5px; font-family: 'Poppins', sans-serif; font-size: 12px; color: #888; }
[data-theme="dark"] .wheel-price-card-note { color: rgba(255,255,255,.55); }
.wheel-price-card-note svg { color: #16a34a; flex-shrink: 0; }
[data-theme="dark"] .wheel-price-card-note svg { color: #4ade80; }
.wheel-price-card-note span { color: #ccc; }
[data-theme="dark"] .wheel-price-card-note span { color: rgba(255,255,255,.3); }
.wheel-price-card-note a { color: var(--brand); text-decoration: none; }
.wheel-price-card-note a:hover { text-decoration: underline; }

.mp-crosslink {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(235,79,67,.1); border: 1px solid rgba(235,79,67,.25); color: var(--brand);
  padding: 9px 20px; border-radius: 12px;
  font-family: 'Poppins', sans-serif; font-size: 13px; font-weight: 600; line-height: 1.4; text-align: center;
  text-decoration: none; cursor: pointer; transition: background .15s;
}
[data-theme="dark"] .mp-crosslink { background: rgba(235,79,67,.16); border-color: rgba(235,79,67,.35); color: #ff9086; }
.mp-crosslink:hover { background: rgba(235,79,67,.18); }
[data-theme="dark"] .mp-crosslink:hover { background: rgba(235,79,67,.24); }

.mp-specs { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 12px; }
.mp-spec { background: #efefed; border-radius: 12px; padding: 18px 20px; }
.ms-label { display: block; font-family: 'Poppins', sans-serif; font-size: 10px; letter-spacing: .14em; text-transform: uppercase; color: #aaa; margin-bottom: 4px; }
.ms-value { font-family: 'Helvetica Neue', Arial, sans-serif; font-weight: 900; font-size: 16px; color: #111; }

.mp-finish-columns { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin: 32px 0 40px; }
.mp-finish-col { background: #efefed; border-radius: 12px; padding: 24px 26px; }
.mp-finish-col-title { font-family: 'Helvetica Neue', Arial, sans-serif; font-weight: 900; font-size: 15px; color: #111; margin-bottom: 12px; }
.mp-finish-col-text { font-family: 'Poppins', sans-serif; font-size: 13px; color: #555; line-height: 1.9; }
.mp-finish-col-text a { color: var(--brand); text-decoration: none; }
.mp-finish-col-text a:hover { text-decoration: underline; }
[data-theme="dark"] .mp-finish-col { background: #1a1a1a; }
[data-theme="dark"] .mp-finish-col-title { color: #eee; }
[data-theme="dark"] .mp-finish-col-text { color: #999; }

.mp-desc { border-top: 1px solid #f0f0f0; padding-top: 40px; }
.mp-desc-title { font-family: 'Helvetica Neue', Arial, sans-serif; font-weight: 900; font-size: 24px; color: #111; margin-bottom: 16px; }
.mp-desc-text { font-family: 'Poppins', sans-serif; font-size: 15px; line-height: 1.78; color: #555; }

/* Individual wheel product pages */
.hero-compact { height: 340px; }
.hero-compact .hero-content { padding-bottom: 40px; }
.hero-compact .hero-content h1 { font-size: 40px; }
.wheel-breadcrumb {
  font-family: 'Poppins', sans-serif; font-size: 13px; font-weight: 500;
  color: rgba(255,255,255,.75); margin-bottom: 10px;
  display: flex; align-items: center; gap: 8px;
}
.wheel-breadcrumb a { color: rgba(255,255,255,.75); text-decoration: none; }
.wheel-breadcrumb a:hover { color: #fff; }
.wheel-detail-section { max-width: 1100px; margin: 0 auto; padding: 24px 52px 100px; }
.wheel-related-section { max-width: 1100px; margin: 0 auto 90px; padding: 0 52px; }
.wheel-related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

.wheel-specialist-section {
  position: relative; max-width: 996px; margin: 0 auto 90px;
  border-radius: 24px; overflow: hidden; height: 320px; background: #111;
}
.wheel-specialist-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.wheel-specialist-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(0,0,0,.4) 0%, rgba(0,0,0,.6) 100%); }
.wheel-specialist-content {
  position: relative; z-index: 2; height: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 32px;
  padding: 0 48px;
}
.wheel-specialist-text { max-width: 560px; }
.wheel-specialist-text h3 { font-family: 'Helvetica Neue', Arial, sans-serif; font-weight: 900; font-size: 28px; color: #fff; margin-bottom: 12px; }
.wheel-specialist-text p { font-family: 'Poppins', sans-serif; font-size: 14px; color: rgba(255,255,255,.8); line-height: 1.75; }
.wheel-specialist-contact { display: flex; flex-direction: column; align-items: flex-end; gap: 16px; flex-shrink: 0; }
.wheel-specialist-phone { font-family: 'Helvetica Neue', Arial, sans-serif; font-weight: 900; font-size: 22px; color: #fff; text-decoration: none; white-space: nowrap; }
.wheel-specialist-phone:hover { color: var(--brand); }
.wheel-specialist-btn {
  display: inline-flex; align-items: center; justify-content: center; white-space: nowrap;
  background: var(--brand); color: #fff; padding: 12px 28px; border-radius: 60px;
  font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 13px; text-decoration: none;
  transition: background .2s;
}
.wheel-specialist-btn:hover { background: var(--brand-dark); }
@media (max-width: 640px) {
  .hero-compact { height: 280px; }
  .hero-compact .hero-content h1 { font-size: 30px; }
  .wheel-detail-section { padding: 20px 20px 70px; }
  .wheel-related-section { padding: 0 20px; margin-bottom: 60px; }
  .wheel-related-grid { grid-template-columns: 1fr; gap: 16px; }
  .wheel-specialist-section { height: auto; margin: 0 20px 60px; }
  .wheel-specialist-content { flex-direction: column; align-items: flex-start; padding: 32px 24px; gap: 24px; }
  .wheel-specialist-contact { align-items: flex-start; width: 100%; }
  .wheel-specialist-btn { width: 100%; }
  .wheel-crosslink-bar { margin: 55px 20px 0; flex-direction: column; align-items: stretch; }
  .wheel-price-card { padding: 20px 20px 14px; }
  .mp-crosslink { padding: 14px 20px; justify-content: center; }
  .mp-finish-columns { grid-template-columns: 1fr; gap: 12px; }
}

/* ══════════════════════════════════
   ANIMATIONS
══════════════════════════════════ */
@keyframes heroIn {
  from { opacity: 0; filter: blur(18px); transform: translateY(32px); }
  to   { opacity: 1; filter: blur(0);    transform: translateY(0);    }
}
.hero-content h1 { animation: heroIn 1.1s cubic-bezier(0.22,1,0.36,1) 0.2s both; }
.hero-content p  { animation: heroIn 1.1s cubic-bezier(0.22,1,0.36,1) 0.5s both; }

.anim-fade {
  opacity: 0; filter: blur(10px); transform: translateY(22px);
  transition: opacity .85s cubic-bezier(0.22,1,0.36,1),
              filter .85s cubic-bezier(0.22,1,0.36,1),
              transform .85s cubic-bezier(0.22,1,0.36,1);
}
.anim-fade.in-view { opacity: 1; filter: blur(0); transform: translateY(0); }

/* ══════════════════════════════════
   THEME TOGGLE BUTTON
══════════════════════════════════ */
.theme-toggle {
  position: fixed; bottom: 28px; left: 28px; z-index: 9999;
  width: 52px; height: 52px; border-radius: 50%;
  background: #111; color: #fff; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(0,0,0,.25);
  transition: background .4s, color .4s, transform .25s, box-shadow .25s;
}
.theme-toggle:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(0,0,0,.35); }
.theme-toggle .icon-sun  { display: none; }
.theme-toggle .icon-moon { display: block; }

/* ══════════════════════════════════
   DARK THEME
══════════════════════════════════ */
.wcard, .how-box, .faq-item, .scroll-menu,
.modal-panel, .contact-dropdown, .sm-dropdown,
.hero-bump, .bump-inner, .wc-pill, .wc-img, .insta-card {
  transition-property: background, background-color, border-color, color, box-shadow;
  transition-duration: .4s;
  transition-timing-function: ease;
}

[data-theme="dark"] body           { background: #0d0d0d; }
[data-theme="dark"] .sec-title     { color: #f0f0f0; }
[data-theme="dark"] .how-title     { color: #f0f0f0; }
[data-theme="dark"] .how-sub       { color: #888; }
[data-theme="dark"] .faq-left-title{ color: #f0f0f0; }
[data-theme="dark"] .faq-left-sub  { color: #777; }

[data-theme="dark"] .wcard         { background: #1a1a1a; box-shadow: 0 2px 16px rgba(0,0,0,.4); }
[data-theme="dark"] .wcard:hover   { background: #1f1416; box-shadow: 0 10px 32px rgba(0,0,0,.6); }
[data-theme="dark"] .wc-sub        { color: #555; }
[data-theme="dark"] .wc-tag        { color: #f0f0f0; }
[data-theme="dark"] .wc-pill       { background: #222; border-color: #333; color: #bbb; }
[data-theme="dark"] .wc-img        { background: #111; }
[data-theme="dark"] .wc-img .ph    { color: #444; }
[data-theme="dark"] .wc-bottom     { border-top-color: rgba(255,255,255,.05); }
[data-theme="dark"] .wc-spname     { color: #f0f0f0; }
[data-theme="dark"] .wc-from       { color: #555; }
[data-theme="dark"] .wc-amount     { color: #f0f0f0; }

[data-theme="dark"] .toggle-wrap              { background: #1e1e1e; }
[data-theme="dark"] .toggle-btn:not(.active)  { color: #555; }

[data-theme="dark"] .how-box       { background: #1a1a1a; }
[data-theme="dark"] .how-box-title { color: #f0f0f0; }
[data-theme="dark"] .how-box-sub   { color: #666; }
[data-theme="dark"] .how-cta       { background: #f0f0f0; color: #111; }
[data-theme="dark"] .how-cta:hover { background: var(--brand); color: #fff; }

[data-theme="dark"] .faq-item      { background: #1a1a1a; }
[data-theme="dark"] .faq-item.open { background: #111; }
[data-theme="dark"] .faq-q-text    { color: #e0e0e0; }
[data-theme="dark"] .faq-item.open .faq-q-text { color: #fff; }
[data-theme="dark"] .faq-chevron   { color: #444; }

[data-theme="dark"] .hero-bump           { background: #0d0d0d; }
[data-theme="dark"] .bump-inner          { background: #1e1e1e; }
[data-theme="dark"] .bump-inner img      { filter: brightness(0) invert(1); }
[data-theme="dark"] .hero-bump.expanded  { background: var(--brand); }
[data-theme="dark"] .hero-bump.expanded .bump-inner { background: var(--brand); }

[data-theme="dark"] .scroll-menu {
  background: rgba(12,12,12,0.85);
  border-top-color: rgba(255,255,255,.10); border-left-color: rgba(255,255,255,.07);
  border-right-color: rgba(255,255,255,.04); border-bottom-color: rgba(255,255,255,.04);
  box-shadow: 0 8px 32px rgba(0,0,0,.5), inset 0 1px 0 rgba(255,255,255,.06);
}
[data-theme="dark"] .sm-icon        { color: rgba(240,240,240,.75); }
[data-theme="dark"] .sm-icon:hover  { color: #fff; }

[data-theme="dark"] .contact-dropdown,
[data-theme="dark"] .sm-dropdown { background: #1a1a1a; box-shadow: 0 12px 48px rgba(0,0,0,.6); }
[data-theme="dark"] .cd-title    { color: #f0f0f0; }
[data-theme="dark"] .cd-divider  { background: #2a2a2a; }
[data-theme="dark"] .cd-row-icon { background: #222; color: #ccc; }
[data-theme="dark"] .cd-row-text { color: #aaa; }

[data-theme="dark"] .modal-panel           { background: #141414; }
[data-theme="dark"] .modal-handle          { background: #2a2a2a; }
[data-theme="dark"] .modal-static-header   { border-bottom-color: rgba(255,255,255,.07); }
[data-theme="dark"] .msh-series            { color: #555; }
[data-theme="dark"] .msh-title             { color: #f0f0f0; }
[data-theme="dark"] .modal-close           { background: #2a2a2a; color: #888; }
[data-theme="dark"] .modal-close:hover     { background: #333; color: #fff; }
[data-theme="dark"] .mp-img-area           { background: #1a1a1a; }
[data-theme="dark"] .mp-img-area .mp-ph    { color: #444; }
[data-theme="dark"] .mp-spec { background: #1a1a1a; }
[data-theme="dark"] .ms-label              { color: #555; }
[data-theme="dark"] .ms-value              { color: #f0f0f0; }
[data-theme="dark"] .mp-desc               { border-top-color: rgba(255,255,255,.07); }
[data-theme="dark"] .mp-desc-title         { color: #f0f0f0; }
[data-theme="dark"] .mp-desc-text          { color: #999; }
[data-theme="dark"] .insta-card            { background: #1a1a1a; }

[data-theme="dark"] .theme-toggle          { background: #f0f0f0; color: #111; box-shadow: 0 4px 20px rgba(0,0,0,.5); }
[data-theme="dark"] .theme-toggle .icon-sun  { display: block; }
[data-theme="dark"] .theme-toggle .icon-moon { display: none; }

/* ══════════════════════════════════
   GALLERY PAGE
══════════════════════════════════ */
.gallery-hero .hero-bg {
  background-image: url('https://supremeforged.com/SF/assets/img/hero.webp');
}

/* ══════════════════════════════════
   MOBILE — under 860px
══════════════════════════════════ */
@media (max-width: 860px) {

  /* ── Nav / hero ── */
  /* The pill menu is always visible on mobile now (see .scroll-menu
     below), so it fully replaces the desktop hero-nav — logo, links,
     and the contact/hamburger icons all become duplicate UI otherwise.
     !important because this specific rule wasn't reliably winning. */
  .hero-nav { display: none !important; }

  /* Hero heading — the desktop 64px size wraps into a huge wall of text
     on a phone-width screen */
  .hero-content h1 { font-size: 34px; margin-bottom: 12px; }
  .hero-content p  { font-size: 14px; }
  .hero-content { padding: 90px 28px 50px; }
  .hero, .hero-media { border-radius: 0; }

  /* Pill menu — visible immediately on mobile instead of waiting for
     scroll, since there's no other persistent nav once .nav-links hides */
  .scroll-menu {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
  }

  /* Pill's contact dropdown — 360px fixed width leaves almost no margin
     on a narrow phone; cap it relative to the viewport instead */
  .sm-dropdown { width: calc(100vw - 40px); max-width: 360px; }

  /* ── Footer ── */
  .footer-main { grid-template-columns: 1fr; gap: 36px; text-align: left; }
  .site-footer { border-radius: 0 !important; padding: 44px 20px 28px; }

  /* ── Product modal ── */
  .modal-static-header { padding: 16px 20px 18px; gap: 12px; }
  .msh-contact-btn { padding: 10px 18px; font-size: 11px; }
  .modal-inner { padding: 24px 20px 60px; }
  .mp-grid { grid-template-columns: 1fr; gap: 24px; margin-top: 24px; margin-bottom: 32px; }
  .mp-img-area { min-height: 220px; }
  .mp-specs { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .nav-logo img { width: 130px; }
  .modal-inner { padding: 20px 16px 48px; }
}
