.heading {
  display: flex;
  border-bottom: 1px solid #eee;
  justify-content: space-between;
  align-items: center;
  padding: 0.8rem;
  font-size: var(--fs-heading);
  position: relative;
}

.subheading {
  font-size: var(--fs-heading);
  display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.subheading .start-button{
  font-size: var(--fs-heading);
  display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.subheading p{
font-weight: 400;
cursor: pointer;
}

.start-button button{
  border: none;
  border-radius: 50%;
  cursor: pointer;
 }

.close-search{
  display: flex;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: var(--main-color);
    padding: 1px;
    cursor: pointer;
    justify-content: center;
    align-items: center;
}

.close-search img{
    width: 0.9rem;
}

.learn-link {
  font-size: 0.85rem;
  color: #555;
  text-decoration: none;
}

.explore-button {
  background: #2563eb;
  color: white;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  font-weight: bold;
  cursor: pointer;
}





.no-results {
  text-align: center;
  font-size: 1rem;
  color: #666;
  padding: 2rem;
}


#loader{
  text-align: center;
    height: 100%;
    margin-top: 4rem;
    display:none;
}

#loader img{
  width: 80%;
}

.wine-list {
  margin-bottom: 100px;
}

.wine-card {
  display: flex;
  align-items: center;
  border-bottom: 1px solid #eee;
  /* padding-top: 1.5rem;
  padding-bottom: 2rem; */
}

.wine-card .wine-image{
  margin-right: 1.2rem;
  height: 280px;
    width: 80px;
    object-fit: cover;
}

.wine-info {
  flex-grow: 1;
    text-align: left;
    height: 150px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;

}

.wine-info h3 {
  margin: 0;
    font-size: 1.6rem;
    font-weight: 300;
    line-height: var(--lh-heading);
    min-height: 5rem;
}

.wine-info p {
  margin: 0.3rem 0;
  font-size: var(--fs-heading);
  color: #666;
}

.actions {
  text-align: right;
  display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    height: 185px;
}

.learn-btn {
  background: #000;
    font-size: 0.8rem;
    font-weight: 500;
    border-radius: 20px;
    margin: 0.6rem 0;
    border: none;
    cursor: pointer;
    padding: 5px 15px;
    width: 7rem;
    color: #DFCD44;
}

.wine-card a{
  color: var(--main-text-color);
  text-decoration: none;
}




/* bookmark */

.bookmark-toggle{
  display: flex;
  justify-content: center;
  align-items: flex-start;
  overflow: hidden;
  cursor: pointer;
}

.bookmark-icon {
  height: auto;
  width: 10px;
  transition: opacity 1s ease;
}

.bookmarked-icon {
  display: none;
  height: 20px;
  transition: opacity 1s ease;
}

.save-label {
  font-size: 0.75rem;
  cursor: pointer;
  transition: opacity 1s;
  width: 40px;
  font-weight: 200;
}







.buy-now-button{
  font-size: 0.8rem;
  font-weight: 400;
  cursor: pointer;
}

.price{
  width: max-content;
}





