.ahgh-ymm,
.ahgh-ymm *{
  box-sizing:border-box;
}

.ahgh-ymm{
  background:#ffffff;
  color:var(--ahgh-ymm-black);
  border:1px solid rgba(15,23,42,0.10);
  border-radius:22px;
  padding:18px 0;
  margin:18px auto;
  box-shadow:0 16px 40px rgba(0,0,0,0.06);
  max-width:1100px;
}

.ahgh-ymm__inner{ padding:0 20px; }

.ahgh-ymm__header{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:18px;
  margin-bottom:14px;
}

.ahgh-ymm__title{
  font-size:1.1rem;
  font-weight:900;
  margin:0 0 4px;
  color:var(--ahgh-ymm-black);
}
.ahgh-ymm__subtitle{
  font-size:0.92rem;
  color:rgba(11,15,20,0.65);
  margin:0;
}

.ahgh-ymm__selected{
  padding:8px 14px;
  border-radius:999px;
  background:#ffffff;
  border:1px solid rgba(0,0,0,0.12);
  display:inline-flex;
  align-items:center;
  gap:10px;
}

.ahgh-ymm__selected-label{
  font-size:0.72rem;
  text-transform:uppercase;
  letter-spacing:0.08em;
  color:rgba(0,0,0,0.55);
  font-weight:900;
}
.ahgh-ymm__selected-value{
  font-size:0.9rem;
  font-weight:800;
  color:var(--ahgh-ymm-black);
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
  max-width:260px;
}

.ahgh-ymm__clear{
  border:none;
  background:transparent;
  color:var(--ahgh-ymm-black);
  font-weight:900;
  cursor:pointer;
  font-size:0.9rem;
}
.ahgh-ymm__clear:hover{
  color:var(--ahgh-ymm-black-2);
  text-decoration:underline;
}

.ahgh-ymm__form{
  display:grid;
  grid-template-columns:repeat(5, 1fr);
  gap:12px;
  background:#ffffff;
  padding:14px;
  border-radius:18px;
  border:1px solid rgba(0,0,0,0.10);
}

.ahgh-ymm__field{
  display:flex;
  flex-direction:column;
  gap:4px;
}
.ahgh-ymm__field > span{
  font-size:0.75rem;
  font-weight:900;
  color:rgba(0,0,0,0.60);
  text-transform:uppercase;
  letter-spacing:0.05em;
}
.ahgh-ymm__field select,
.ahgh-ymm__field input{
  height:44px;
  padding:10px 12px;
  border-radius:14px;
  border:1px solid rgba(0,0,0,0.15);
  background:#ffffff;
  color:var(--ahgh-ymm-black);
  font-size:0.92rem;
  transition:all .2s ease;
}
.ahgh-ymm__field select:focus,
.ahgh-ymm__field input:focus{
  outline:none;
  border-color:rgba(0,0,0,0.55);
  box-shadow:0 0 0 2px rgba(0,0,0,0.08);
}

.ahgh-ymm__submit{
  height:44px;
  border-radius:999px;
  background:var(--ahgh-ymm-black);
  color:#ffffff;
  font-weight:900;
  border:none;
  cursor:pointer;
  transition:all .2s ease;
}
.ahgh-ymm__submit:hover{
  background:var(--ahgh-ymm-black-2);
  transform:translateY(-1px);
}

.ahgh-ymm__footer{
  margin-top:12px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
}
.ahgh-ymm__note{
  font-size:0.85rem;
  color:rgba(0,0,0,0.60);
  margin:0;
}
.ahgh-ymm__support-link{
  color:var(--ahgh-ymm-black);
  font-weight:900;
  text-decoration:none;
  white-space:nowrap;
}
.ahgh-ymm__support-link:hover{
  color:var(--ahgh-ymm-black-2);
  text-decoration:underline;
}

@media (max-width:1024px){
  .ahgh-ymm__header{ flex-direction:column; align-items:flex-start; }
  .ahgh-ymm__selected{ width:100%; }
  .ahgh-ymm__selected-value{ max-width:none; }
  .ahgh-ymm__form{ grid-template-columns:1fr 1fr; }
  .ahgh-ymm__submit{ grid-column:1 / -1; width:100%; }
  .ahgh-ymm__footer{ flex-direction:column; align-items:flex-start; }
}
@media (max-width:640px){
  .ahgh-ymm__form{ grid-template-columns:1fr; }
}