.wine_search_page {
    margin-top: 20px;
}

.wine_search_page {
    background: #ffffff;
    min-height: 100vh;
    padding: 0 30px;
    padding-bottom: 80px;
}

.filter-buttons {
    justify-content: center;
    padding-top: 200px;
    display: flex;
    gap: 20px;
}

.filter-btn {
    /* padding: 20px 40px; */
    display: flex;
    justify-content: center;
    align-items: center;
    width: 140px;
    height: 60px;
    border-radius: 30px;
    border: 2px solid #ff9f0a;
    background-color: #ffffff;
    color: #252525;
    font-size: 20px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
}

.filter-btn.active {
    background-color: #ff9f0a;
    color: #fff;
    border: 2px solid #ff9f0a;
}

.curation-header {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 55px;
}
.curation-title-wrapper {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.curation-title {
    font-size: 26px;
    text-transform: uppercase;
    color: #252525;
    font-weight: 800;
}
.curation-sort {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 20px;
    color: #030303;
    font-weight: 500;
}

.sort-icon {
    width: 18px;
    height: 20px;
    object-fit: contain;
}
/*  */
.list_ranking {
    margin-top: 35px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.ranking-card {
  position: relative;
  width: 660px;
  height: 418px;
  border-radius: 16px;
  overflow: hidden;
  color: #ffffff;
}
.ranking-card__bg {
  width: 660px;
  height: 418px;
  object-fit: cover;
  display: block;
  filter: brightness(0.5);
}

.ranking-card__content {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 35px 22px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  z-index: 2;
}

.ranking-card__header {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 32px;
  font-weight: 600;
}

/* .ranking-card__icon {
  width: 70px;
  height: 85px;
} */

.ranking-card__title {
  margin-top: 16px;
  font-size: 40px;
  font-weight: bold;
  line-height: 1.4;
}

.ranking-card__desc {
  margin-top: 8px;
  font-size: 20px;
  font-weight: 300;
  line-height: 1.4;
  letter-spacing: -1px;
}

.ranking-card__period {
  margin-top: auto;
  font-size: 20px;
  font-weight: 400;
  opacity: 0.9;
}
/*  */
.bottom_nav {
    position: fixed;
    bottom: 0;
    /* left: calc(50% - 402px); */
    /* 720px / 2 = 360px */
    width: 720px;
    background: white;
    border-top: 1px solid #eee;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 0;
    height: 100px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 999;
}