:root{
  --bg:#0b121a;
  --panel:rgba(255,255,255,.08);
  --panel-border:rgba(255,255,255,.15);
  --text:#e9eef4;
  --muted:rgba(233,238,244,.7);
  --accent:#ff7a00;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  background: radial-gradient(900px 500px at 20% 20%, rgba(255,255,255,.06), transparent 60%), var(--bg);
  color:var(--text);
  overflow-x:hidden;
}

.app{
  min-height:100vh;
  position:relative;
  display:flex;
  flex-direction:column;
}

/* 全局背景层：覆盖 hero + footer，避免底部出现“背景间隙/分隔色” */
.page-bg{
  position:fixed;
  inset:0;
  z-index:-1;
  pointer-events:none;
  background:
    linear-gradient(
      90deg,
      rgba(11,18,26,.75) 0%,
      rgba(11,18,26,.15) 35%,
      rgba(11,18,26,.15) 65%,
      rgba(11,18,26,.75) 100%
    ),
    linear-gradient(180deg, rgba(0,0,0,.35), rgba(0,0,0,.70)),
    radial-gradient(600px 300px at 65% 25%, rgba(255,255,255,.08), transparent 70%),
    linear-gradient(135deg, rgba(255,255,255,.06), transparent 55%),
    url('./assets/vehicle.png');
  background-repeat: repeat;
  background-size: 100% 100%;
  background-position: 25% center;
}

.topbar{
  position:sticky;
  top:0;
  z-index:5;
  display:flex;
  align-items:center;
  justify-content:space-between;
  /* 固定 Header 高度，避免 logo 放大后撑高顶部区域 */
  height:84px;
  padding:0 36px;
  background:rgba(8,12,16,.55);
  backdrop-filter: blur(8px);
  border-bottom:1px solid rgba(255,255,255,.08);
  overflow:visible;
}

.brand{
  display:flex;
  align-items:center;
  gap:14px;
}
.brand-logo{
  width:170px;
  height:170px;
  object-fit:contain;
  filter: drop-shadow(0 6px 18px rgba(0,0,0,.4));
  cursor: pointer;
}
.brand-text{line-height:1}
.brand-title{
  font-weight:800;
  letter-spacing:.5px;
  font-size:22px;
}
.brand-title--accent{
  color:var(--accent);
}

/* 顶部右侧按钮已移除（保留样式不影响页面；这里清理可选） */

.hero{
  position:relative;
  flex:1 1 auto;
  min-height:0;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:22px 28px;
}

.home-content{
  width: 100%;
  position: relative;
  z-index: 2;
  display:flex;
  flex-direction:column;
  align-items:flex-end;
  gap: 36px; /* +100% spacing vs selection box */
  margin-top: 10vh;
}

.steps{
  width: 100%;
  display:flex;
  flex-direction:column;
  align-items:center;
}

.steps-head{
  width: min(1100px, 92vw);
  text-align:center;
}

.steps-title{
  font-weight: 1000;
  font-size: 24px;
  letter-spacing: .05em;
  color: rgba(255,255,255,.95);
  text-transform: uppercase;
  margin-bottom: 6px;
}

.steps-sub{
  font-size: 14px;
  color: rgba(233,238,244,.70);
  line-height: 1.4;
  max-width: 760px;
  margin: 0 auto;
}

.steps-images{
  width: min(1100px, 92vw);
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px; /* +50% between step images */
  margin-top: 14px;
}

.steps-img{
  width: 100%;
  height: auto;
  display:block;
  border-radius: 16px;
}

/* 只移动 STEP 02 图片内容：不影响网格布局（transform 不改文档流） */
.steps-img-2 {
  /* 1. 锚定图片的顶部中心点 */
  transform-origin: top center; 
  
  /* 2. 等比例稍微放大图片（1.05 代表放大 5%）*/
  /* 放大后，顶端因为被锚定所以位置不变，而下方的文字会被自然向下推移 */
  transform: scale(1.05); 
}
/* 🚨 修复后的背景层，去除了错误嵌套，并设置了水平居中 🚨 */
.hero-bg{
  display:none;
}

.hero-car{
  position:absolute;
  left:0;
  bottom:0;
  height:100%;
  width:auto;
  max-width:68%;
  object-fit:cover;
  filter:saturate(1.05) contrast(1.02);
  opacity:.95;
}

/* 如果 vehicle.png 已经是带车的背景图，隐藏单独车图层避免重复 */
.hero-car{display:none;}

.finder{
  position:relative;
  z-index:2;
  width:min(560px, 42vw);
  margin-left:auto;
  margin-right:auto;
  display:flex;
  justify-content:flex-end;
  /* 向右移动约 10% 视口宽度 */
  transform: translateX(10vw);
}
.finder-card{
  width:100%;
  padding:20px 18px 18px;
  background:var(--panel);
  border:1px solid var(--panel-border);
  border-radius:14px;
  box-shadow:0 20px 60px rgba(0,0,0,.35);
  backdrop-filter: blur(10px);
}

/* 流光效果面板 */
.glass-panel{
  position:relative;
  overflow:hidden;
}

.glass-panel::after{
  content:'';
  position:absolute;
  top:0;
  left:-150%;
  width:150%;
  height:100%;
  background: linear-gradient(
    to right,
    rgba(255,255,255,0) 0%,
    rgba(255,255,255,0) 40%,
    rgba(255,255,255,0.3) 50%,
    rgba(255,255,255,0) 60%,
    rgba(255,255,255,0) 100%
  );
  transform: skewX(-25deg);
  animation: shimmerFlow 6s infinite;
  z-index:1;
  pointer-events:none;
}

.glass-panel::before{
  content:'';
  position:absolute;
  inset:0;
  border-radius:inherit;
  z-index:0;
}

.glass-panel > *{
  position:relative;
  z-index:2; /* 确保表单元素在流光上方 */
}

@keyframes shimmerFlow{
  0%{ left:-150%; }
  100%{ left:100%; }
}

.fields{
  display:flex;
  flex-direction:column;
  gap:14px;
  padding:10px 8px 18px;
}
.field-label{
  font-size:12px;
  letter-spacing:.12em;
  color:var(--muted);
  margin:0 0 8px 2px;
  font-weight:700;
}
.field-select{
  width:100%;
  height:40px;
  border-radius:10px;
  border:1px solid rgba(255,255,255,.14);
  background:rgba(0,0,0,.45);
  color:var(--text);
  padding:0 14px;
  font-weight:600;
  outline:none;
  appearance:none;
  background-image:
    linear-gradient(45deg, transparent 50%, rgba(255,255,255,.6) 50%),
    linear-gradient(135deg, rgba(255,255,255,.6) 50%, transparent 50%);
  background-position:
    calc(100% - 18px) 16px,
    calc(100% - 12px) 16px;
  background-size:6px 6px, 6px 6px;
  background-repeat:no-repeat;
}
.field-select:disabled{opacity:.6}

/* 尽量提高下拉选项可读性（浏览器对原生 <select> 的 option 样式支持有限） */
.field-select option{
  background:rgba(10,16,24,.95);
  color:var(--text);
}

.field-select:focus{
  border-color: rgba(255,122,0,.55);
  box-shadow: 0 0 0 2px rgba(255,122,0,.15);
}

.search-btn{
  width:100%;
  height:46px;
  border:none;
  border-radius:10px;
  background:var(--accent);
  color:#fff;
  font-weight:900;
  letter-spacing:.04em;
  cursor:pointer;
  box-shadow:0 16px 40px rgba(255,122,0,.25);
}
.search-btn:hover{filter:brightness(1.03)}

.results{
  position:relative;
  z-index:3;
  width:min(1100px, 92vw);
  margin:28px auto 60px;
  display:grid;
  grid-template-columns:repeat(auto-fill, minmax(220px, 1fr));
  gap:14px;
}

/* ======================
   Colors display page
   ====================== */
.colors-page{
  position:relative;
  z-index:2;
  padding:26px 28px 30px;
  /* 让 footer 在产品页可见：不要把页面强行撑满整屏 */
  flex: 1 1 auto;
  min-height: 0;
  background:
    radial-gradient(900px 420px at 30% 20%, rgba(255,255,255,.06), transparent 60%),
    rgba(8,12,16,.55);
  border-top: 1px solid rgba(255,255,255,.06);
}

.home-steps-left{
  width: min(900px, 100%);
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0;
  margin: 0 auto 14px;
  z-index: 3;
}

.home-steps-left::before{
  content: "";
  position: absolute;
  left: 9%;
  right: 9%;
  top: 46%;
  height: 2px;
  background: repeating-linear-gradient(
    to right,
    rgba(255, 140, 30, .95) 0 10px,
    transparent 10px 18px
  );
  opacity: .95;
  z-index: 1;
  pointer-events: none;
}

.home-steps-img{
  width: min(140px, 15%);
  height: auto;
  border-radius: 12px;
  display: block;
  margin-left: 0;
  position: relative;
  z-index: 2;
}

.colors-header{
  max-width: 1220px;
  margin: 0 auto 18px;
}

.colors-actions{
  max-width: 1220px;
  margin: 10px auto 0;
  display:flex;
  justify-content:flex-end;
}

.colors-actions-inline{
  max-width: 1220px;
  margin: 10px auto 0;
  display:flex;
  gap:10px;
  align-items:center;
  flex-wrap:wrap;
}

.colors-inline-select{
  min-width: 140px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.92);
  font-weight: 800;
  padding: 0 12px;
}

.colors-inline-select option{
  background: #0f1620;
  color: #e9eef4;
}

.change-vehicle-btn{
  height: 34px;
  padding: 0 16px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.92);
  font-weight: 900;
  letter-spacing: .04em;
  cursor: pointer;
}

.change-vehicle-btn:hover{
  background: rgba(255,255,255,.10);
}

.colors-title{
  font-weight: 950;
  font-size: 22px;
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.colors-chips{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}

.chip{
  display:flex;
  align-items:center;
  gap:8px;
  padding:8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
  color: rgba(233,238,244,.86);
  font-weight: 750;
  font-size: 12px;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.chip b{
  color: #fff;
  letter-spacing: .02em;
  text-transform:none;
}

.colors-layout{
  max-width: 1220px;
  margin: 0 auto;
  display:grid;
  grid-template-columns: 1fr 280px;
  gap: 18px;
  align-items:start;
}

.colors-grid{
  display:grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 14px;
}

.colors-placeholder-box{
  grid-column: 1 / -1;
  width: min(900px, 92%);
  height: 500px;
  margin: 28px auto;
  border-radius: 14px;
  border: 1px solid rgba(190,190,190,.30);
  background: rgba(120,120,120,.26);
  color: rgba(233,238,244,.90);
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  padding: 20px;
  font-weight: 700;
  letter-spacing: .02em;
}

.color-tile{
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 14px;
  overflow:hidden;
  box-shadow: 0 18px 50px rgba(0,0,0,.18);
  transition: border-color .2s ease, box-shadow .2s ease;
}

.color-tile.is-selected{
  border-color: rgba(255, 235, 155, .95);
  box-shadow:
    0 0 0 2px rgba(255, 235, 155, .30),
    0 18px 50px rgba(0,0,0,.18);
}

.color-tile .swatch{
  height: 112px;
  background: rgba(0,0,0,.15);
  position: relative;
  overflow: hidden;
}

.swatch3d{
  width: 100%;
  height: 100%;
}

.swatch3d canvas{
  width: 100%;
  height: 100%;
  display: block;
}

.color-preview{
  width:100%;
  height:100%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  /* 基础颜色：来自 JS 设置的 rgb 变量 */
  background-color: rgb(var(--r), var(--g), var(--b));

  /* 按你给的方案叠加噪点 + 高光 */
  background-image:
    url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.12'/%3E%3C/svg%3E"),
    linear-gradient(
      115deg,
      rgba(0, 0, 0, 0.6) 0%,
      rgba(0, 0, 0, 0.1) 35%,
      rgba(255, 255, 255, 0.8) 48%,
      rgba(255, 255, 255, 0.95) 50%,
      rgba(255, 255, 255, 0.0) 55%,
      rgba(0, 0, 0, 0.5) 100%
    );

  background-blend-mode: hard-light;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.1);
}

.color-tile .swatch img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display:block;
}

.color-tile .tile-body{
  padding: 12px 12px 14px;
}

.tile-label{
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .12em;
  color: rgba(233,238,244,.78);
  text-transform: uppercase;
  margin-bottom: 6px;
}

.tile-code{
  font-weight: 950;
  font-size: 18px;
  letter-spacing: .03em;
  color: rgba(255,255,255,.95);
  margin-bottom: 4px;
}

.tile-name{
  font-size: 12px;
  font-weight: 700;
  color: rgba(233,238,244,.78);
  margin-bottom: 10px;
}

.tile-btn{
  width: 100%;
  height: 34px;
  border: none;
  border-radius: 8px;
  background: rgba(255,122,0,.85);
  color: #fff;
  font-weight: 950;
  letter-spacing: .05em;
  cursor: pointer;
}

.colors-aside{
  position: sticky;
  top: 96px;
}

.aside-card{
  border-radius: 14px;
  padding: 16px 14px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
  box-shadow: 0 18px 50px rgba(0,0,0,.18);
}

.aside-title{
  font-weight: 950;
  font-size: 13px;
  letter-spacing: .06em;
  color: rgba(255,255,255,.92);
  text-transform: uppercase;
  margin-bottom: 10px;
}
.aside-desc{
  font-size: 12px;
  color: rgba(233,238,244,.72);
  line-height: 1.5;
}
.aside-line{
  height:1px;
  background: rgba(255,255,255,.10);
  margin: 12px 0;
}
.aside-footnote{
  font-size: 12px;
  color: rgba(233,238,244,.70);
  font-weight: 700;
}

.aside-swatch3d-wrap{
  margin: 14px 0 12px;
}

.right-swatch3d{
  width: 100%;
  height: 420px;
  border-radius: 12px;
  background: rgba(0,0,0,.18);
  border: 1px solid rgba(255,255,255,.10);
  overflow: hidden;
}

.right-swatch3d canvas{
  width: 100%;
  height: 100%;
  display: block;
}

.request-modal{
  position: fixed;
  inset: 0;
  z-index: 120;
}

.request-backdrop{
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.55);
  backdrop-filter: blur(2px);
}

.request-dialog{
  position: relative;
  width: min(92vw, 420px);
  margin: 8vh auto 0;
  background: rgba(16,24,34,.95);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 14px;
  box-shadow: 0 24px 60px rgba(0,0,0,.45);
  padding: 16px;
}

.request-close{
  position:absolute;
  top: 8px;
  right: 10px;
  border: 0;
  background: transparent;
  color: rgba(255,255,255,.8);
  font-size: 22px;
  cursor: pointer;
}

.request-lang-toggle{
  position: absolute;
  top: 10px;
  right: 42px;
  height: 24px;
  padding: 0 8px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.22);
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.92);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .02em;
  cursor: pointer;
}

.request-lang-toggle:hover{
  background: rgba(255,255,255,.14);
}

.request-title{
  margin: 0 0 12px;
  font-size: 22px;
  font-weight: 900;
}

.request-form{
  display:grid;
  gap: 8px;
}

.request-label{
  font-size: 12px;
  font-weight: 800;
  color: rgba(233,238,244,.86);
}

.request-input{
  height: 38px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.08);
  color: #fff;
  padding: 0 10px;
  outline: none;
}

.request-textarea{
  height: 84px;
  padding: 10px;
  resize: vertical;
  min-height: 70px;
}

.request-input[readonly]{
  background:
    linear-gradient(rgba(40,40,40,.55), rgba(40,40,40,.55)),
    rgba(255,255,255,.05);
  border-color: rgba(130,130,130,.40);
  color: rgba(220,220,220,.88);
  box-shadow: inset 0 0 0 999px rgba(20,20,20,.20);
  cursor: not-allowed;
}

.request-product-row{
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  align-items: center;
}

.request-add-btn{
  height: 38px;
  padding: 0 12px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,.2);
  background: rgba(255,255,255,.08);
  color: #fff;
  font-weight: 800;
  cursor: pointer;
}

.request-product-list{
  max-height: 170px;
  overflow: auto;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 8px;
  background: rgba(12,18,28,.96);
  padding: 4px;
}

.request-product-item{
  width: 100%;
  text-align: left;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: rgba(233,238,244,.92);
  padding: 8px 8px;
  cursor: pointer;
}

.request-product-item:hover{
  background: rgba(255,255,255,.10);
}

.request-selected-products{
  display: grid;
  gap: 6px;
  margin-top: 6px;
}

.request-selected-item{
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 8px;
  background: rgba(255,255,255,.06);
  color: rgba(233,238,244,.92);
  padding: 7px 10px;
  font-size: 13px;
  line-height: 1.3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.request-selected-text{
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.request-selected-remove{
  width: 22px;
  height: 22px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.22);
  background: rgba(255,255,255,.06);
  color: #fff;
  font-size: 15px;
  line-height: 1;
  cursor: pointer;
  flex: 0 0 auto;
}

.request-submit{
  margin-top: 6px;
  height: 38px;
  border: 0;
  border-radius: 8px;
  background: rgba(255,122,0,.9);
  color: #fff;
  font-weight: 900;
  letter-spacing: .04em;
  cursor: pointer;
}

.success-dialog{
  text-align: center;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  margin: 0;
}

.success-text{
  margin: 4px 0 14px;
  color: rgba(233,238,244,.82);
  font-size: 14px;
  line-height: 1.45;
}

.success-title{
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.success-check{
  width: 14px;
  height: 8px;
  border-left: 3px solid #fff;
  border-bottom: 3px solid #fff;
  transform: rotate(-45deg) translateY(-1px);
  display: inline-block;
}

.color-card{
  background:rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.10);
  border-radius:14px;
  overflow:hidden;
  box-shadow:0 18px 50px rgba(0,0,0,.25);
}
.color-card img{
  width:100%;
  height:120px;
  object-fit:cover;
  display:block;
}
.color-card .meta{
  padding:12px 12px 14px;
}
.color-card .name{
  font-weight:900;
  font-size:13px;
  letter-spacing:.02em;
  margin-bottom:8px;
}
.color-card .code{
  color:rgba(233,238,244,.78);
  font-weight:700;
  font-size:12px;
}

/* ======================
   Footer
   ====================== */
.site-footer{
  background: rgba(10,14,18,.92);
  border-top: none;
  /* 去掉与上方内容之间的 1px 视觉分隔 */
  margin-top: calc(10vh - 1px);
  padding: 36px 28px 30px;
  color: rgba(233,238,244,.88);
}

.footer-inner{
  max-width: 1220px;
  margin: 0 auto;
  display: flex;
  gap: 54px;
  align-items: flex-start;
  justify-content: space-between;
}

.footer-brand{min-width: 210px;}
.footer-brand-title{
  font-weight: 900;
  letter-spacing: .08em;
  font-size: 12px;
  color: rgba(233,238,244,.95);
  margin-bottom: 12px;
}
.footer-brand-desc{
  font-size: 12px;
  color: rgba(233,238,244,.70);
  margin-bottom: 18px;
  max-width: 260px;
}

.footer-social{
  display:flex;
  gap: 12px;
  margin-bottom: 18px;
}
.social-btn{
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.10);
  display:flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
  font-weight: 800;
  color: rgba(233,238,244,.92);
}
.social-x{font-size: 18px; line-height: 0;}

.footer-copyright{
  font-size: 12px;
  color: rgba(233,238,244,.55);
}

.footer-links{
  flex: 1;
  display:flex;
  gap: 56px;
  justify-content: flex-start;
}
.footer-links-col{min-width: 180px;}
.footer-links-title{
  font-weight: 900;
  font-size: 12px;
  letter-spacing: .08em;
  margin-bottom: 14px;
  color: rgba(233,238,244,.95);
}
.footer-link{
  display:block;
  font-size: 12px;
  color: rgba(233,238,244,.74);
  text-decoration:none;
  margin-bottom: 10px;
}
.footer-link:hover{color:#fff}

.footer-subdesc{
  font-size: 12px;
  color: rgba(233,238,244,.70);
  margin-bottom: 14px;
}

.footer-subscribe{
  display:flex;
  gap: 10px;
  align-items:center;
}
.footer-email{
  flex: 1;
  height: 44px;
  border-radius: 6px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.08);
  color: rgba(233,238,244,.92);
  padding: 0 12px;
  outline:none;
}
.footer-email::placeholder{color: rgba(233,238,244,.55)}

.footer-join{
  height: 44px;
  padding: 0 20px;
  border-radius: 0;
  border: none;
  background: #a7c9ff;
  color: #081017;
  font-weight: 900;
  cursor:pointer;
}

@media (max-width: 980px){
  .hero-car{max-width:78%}
  .finder{width:92vw}
  .finder{transform:none;}
  .colors-layout{
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .home-content{
    align-items: center;
    gap: 14px;
  }
  .steps-title{
    font-size: 18px;
  }
  .steps-images{
    grid-template-columns: 1fr;
    gap: 18px; /* +50% on mobile */
  }
  .colors-aside{
    position: fixed;
    right: 14px;
    bottom: 18px;
    top: auto;
    width: 220px;
    z-index: 50;
  }
  .right-swatch3d{
    height: 240px;
    width: 100%;
    max-width: none;
    margin: 0;
  }
  .aside-swatch3d-wrap{
    margin: 0;
    width: 100%;
    display:block;
  }
  .colors-page{
    padding: 18px 14px 22px;
    flex: 1 1 auto;
    min-height: 0;
  }
  .home-steps-left{
    display: flex;
    width: 100%;
    gap: 0;
    margin-bottom: 10px;
    justify-content: space-between;
  }
  .home-steps-left::before{
    display: none;
  }
  .home-steps-img{ width: min(168px, 29.04%); }
  .colors-actions{
    max-width: none;
    margin-top: 12px;
    justify-content:center;
  }
  .colors-actions-inline{
    max-width: none;
    margin-top: 12px;
    justify-content:center;
  }
  .colors-inline-select{
    width: 100%;
    max-width: 360px;
    min-width: 0;
  }
  .change-vehicle-btn{
    width: 100%;
    max-width: 360px;
  }
  .colors-grid{
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  }
  .hero{
    height:auto;
    min-height:unset;
    padding-bottom:140px;
    flex-direction:column;
  }
  .results{
    bottom:0;
    padding-bottom:60px;
  }
  .site-footer{padding: 30px 16px;}
  .footer-inner{flex-direction:column; gap:24px;}
  .footer-links{gap:24px; flex-direction:column;}
  .footer-links-col{min-width: unset;}
  .footer-subscribe{width:100%;}
}