.suggested-aside { margin: 0; }

.suggested-card{
  border: 1px solid #e6e6e6;
  border-radius: 14px;
  background: #fff;
  padding: 12px;
  width: 100%;
}

.suggested-title{
  font-weight: 800;
  font-size: 14px;
  margin-bottom: 10px;
}

.suggested-stack{
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.suggested-group{
  border-top: 1px solid #f0f0f0;
  padding-top: 8px;
}
.suggested-group:first-child{
  border-top: 0;
  padding-top: 0;
}

.suggested-group-btn{
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 8px 8px;
  border-radius: 10px;
  border: 0;
  background: transparent;
  cursor: pointer;
  text-align: left;
}
.suggested-group-btn:hover{ background: #f7f7f7; }

.suggested-group-title{
  font-weight: 800;
  font-size: 12px;
  letter-spacing: .02em;
  color: #222;
}

.suggested-group-chevron{
  color: #999;
  font-size: 12px;
  line-height: 1;
  transition: transform 180ms ease;
}
.suggested-group.is-open .suggested-group-chevron{
  transform: rotate(180deg);
}

.suggested-panel{
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transform: translateY(-6px);
  transition:
    max-height 240ms ease,
    opacity 160ms ease,
    transform 160ms ease;
}
.suggested-group.is-open .suggested-panel{
  opacity: 1;
  transform: translateY(0);
}

.suggested-terms{
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 6px 0 0 0;
}

.suggested-term{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 8px 10px;
  border-radius: 10px;
  text-decoration: none;
  color: inherit;
  background: transparent;
}
.suggested-term:hover{ background: #f7f7f7; }

.suggested-term-label{
  font-size: 13px;
  color: #222;
  line-height: 1.2;
}
.suggested-term-arrow{
  color: #999;
  font-size: 16px;
  line-height: 1;
}

/* Mobile tweaks */
@media (max-width: 1024px){
  .suggested-card{ border-radius: 12px; padding: 10px; }
  .suggested-title{ font-size: 13px; margin-bottom: 8px; }
  .suggested-group-btn{ padding: 10px 10px; border-radius: 12px; }
  .suggested-term{ padding: 10px 10px; border-radius: 12px; }
  .suggested-term-label{ font-size: 14px; }
  [data-suggestions-drawer]{
    width: 100vw;       /* full width */
    max-width: none;    /* no cap */
    left: 0;
    right: 0;
    border-right: 0;    /* optional: looks cleaner full-width */
  }
  /* hide duplicate "Popular Searches" inside the card, keep the drawer header */
  [data-suggestions-drawer] .suggested-title {
    display: none;
  }

  /* make the card fill the drawer nicely */
  [data-suggestions-drawer] .suggested-card {
    border: 0;
    border-radius: 0;
    padding: 12px;
    box-shadow: none; /* if you added one anywhere */
  }

  /* optional: remove any side margins so it truly feels full width */
  [data-suggestions-drawer] .suggested-aside {
    margin: 0;
  }
}