.page-head {
  position: relative;
}
.page-heading {
  font-family: "YouTube Sans ExtraBold";
  font-size: 3rem;
}
.page-subHeading {
  font-family: "YouTube Sans";
  font-size: 20px;
  margin-bottom: 0;
}
.section-heading {
  font-family: "YouTube Sans Bold";
}
.veg_basket {
  position: absolute;
  bottom: 0;
  right: 20px;
}

#state-wise-list {
  max-height: 70vh;
  overflow-y: auto;
  margin-bottom: 5%;
  margin-top: 2%;
}
.state-card {
  margin-bottom: 15px;
}
.state-button {
  width: 100%;
  background: #34a853;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 1.5rem;
  font-size: 24px;
  font-weight: 500;
  border-radius: 10px;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.35s ease;
  color: #ffffff;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
  font-family: "Youtube Sans SemiBold";
}
.state-name {
  font-family: "YouTube Sans SemiBold";
  display: flex;
  align-items: center;
  gap: 6px;
}
.state-dropdown-content {
  max-height: 0;
  overflow: hidden;
  background: #34a853;
  color: #ffffff;
  border-radius: 0 0 10px 10px;
  transition: all 0.5s cubic-bezier(0.45, 0, 0.25, 1);
  padding: 0 1.5rem;
  opacity: 0;
  transform: translateY(-10px);
  font-family: "Youtube Sans SemiBold";
  margin-top: -10px;
  font-size: 24px;
}

.state-dropdown-content.active {
  max-height: 3000px; /* large enough to show content */
  opacity: 1;
  transform: translateY(0);
  padding: 1rem 1.5rem;
}

.arrow {
  transition: transform 0.3s ease;
}

.arrow.rotate-up {
  transform: rotate(180deg);
}
.main-heading {
  display: flex;
}

.restaurant-header,
.restaurant-row {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 1rem;
  align-items: center;
  padding: 0.75rem 0;
}

.restaurant-header {
  font-size: 22px;
  font-family: "YouTube Sans";
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  margin-bottom: 0.75rem;
}

.restaurant-row {
  font-weight: 400;
}

.restaurant-name {
  font-size: 18px;
}

.restaurant-address {
  font-size: 18px;
}
@media screen and (max-width: 780px) {
  .veg_basket {
    width: 100px;
  }
  .page-subHeading {
    font-size: 17px;
    margin-bottom: auto;
  }
  .page-head {
    padding-bottom: 3%;
  }
  .page-heading {
    font-size: 24px;
  }
}
