/* Карусель инструкции над AI-подбором: полная ширина экрана, как блок героя на главной */
.hf-ai-guide-wrap{
  width:100vw;
  position:relative;
  left:50%;
  right:50%;
  margin-left:-50vw;
  margin-right:-50vw;
  margin-bottom:24px;
}
.hf-ai-guide-wrap--hero-strip{
  background:#e8e0d6;
}
.hf-ai-guide-carousel[hidden],
.hf-ai-guide-carousel.hf-ai-guide-carousel--empty{
  display:none !important;
}
.hf-ai-guide-viewport{
  position:relative;
  width:100%;
  height:min(360px, max(200px, calc((100vw - 48px) * 0.625)));
  background:var(--sand2);
  overflow:hidden;
  cursor:grab;
  touch-action:pan-y;
  user-select:none;
  -webkit-user-select:none;
}
.hf-ai-guide-viewport:active{
  cursor:grabbing;
}
.hf-ai-guide-track-wrap{
  overflow:hidden;
  width:100%;
  height:100%;
}
.hf-ai-guide-track{
  display:flex;
  width:100%;
  height:100%;
  transition:transform 0.45s ease;
}
.hf-ai-guide-slide{
  flex:0 0 100%;
  width:100%;
  height:100%;
}
.hf-ai-guide-slide img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  pointer-events:none;
  user-select:none;
  -webkit-user-drag:none;
}
.hf-ai-guide-nav{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  z-index:2;
  width:40px;
  height:40px;
  border-radius:50%;
  border:1px solid var(--brd);
  background:rgba(250,247,242,.92);
  color:var(--bark);
  font-size:22px;
  line-height:1;
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:0;
  box-shadow:0 2px 12px rgba(58,46,34,.12);
  transition:background .2s,border-color .2s,color .2s;
}
.hf-ai-guide-nav:hover{
  border-color:var(--gold);
  color:var(--gold);
}
.hf-ai-guide-nav:focus-visible{
  outline:2px solid var(--gold);
  outline-offset:2px;
}
.hf-ai-guide-nav--prev{left:10px;}
.hf-ai-guide-nav--next{right:10px;}
.hf-ai-guide-dots{
  position:absolute;
  left:0;
  right:0;
  bottom:10px;
  z-index:2;
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:8px;
  pointer-events:none;
}
.hf-ai-guide-dot{
  pointer-events:auto;
  width:8px;
  height:8px;
  border-radius:50%;
  border:1px solid rgba(58,46,34,.35);
  background:rgba(255,255,255,.65);
  padding:0;
  cursor:pointer;
  transition:transform .2s,background .2s,border-color .2s;
}
.hf-ai-guide-dot.is-on{
  background:var(--gold);
  border-color:var(--gold);
  transform:scale(1.15);
}
.hf-ai-guide-dot:focus-visible{
  outline:2px solid var(--gold);
  outline-offset:2px;
}
