@media screen and (min-width: 900px) {
  .wines-viewer {
    display: flex;
    gap: 30px;
    margin: 0 auto;
  }
}
.wines-viewer .wines-left .wines-slider .swiper-slide {
  opacity: 0 !important;
  transition: opacity 0.6s ease;
}
.wines-viewer .wines-left .wines-slider .swiper-slide.swiper-slide-active {
  opacity: 1 !important;
}
.wines-viewer .wines-left .wines-slider .wines-nav {
  position: absolute;
  right: 0;
  top: 0;
  z-index: 2;
  padding: 50px 0;
  display: flex;
  flex-direction: column;
  align-items: end;
  height: 100%;
}
.wines-viewer .wines-left .wines-slider .wines-nav .wines-nav-items {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  position: relative;
}
.wines-viewer .wines-left .wines-slider .wines-nav button {
  padding: 0 20px;
}

.wines-nav-item {
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 20px;
  padding: 5px 0;
  position: relative;
}
.wines-nav-item .dash {
  width: 105px;
  height: 1px;
  background-color: white;
}
.wines-nav-item.active .dash {
  width: 31px;
  opacity: 1;
}
.wines-nav-item .title {
  color: white;
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.25s linear;
  text-align: right;
}
.wines-nav-item .title .first-word {
  text-transform: uppercase;
}
.wines-nav-item.active .title {
  opacity: 1;
}
.wines-nav-item.hidden-during-anim {
  opacity: 0;
}

.wines-right {
  padding: 60px 20px;
}
@media screen and (min-width: 900px) {
  .wines-right {
    padding-right: 100px;
  }
}
.wines-right h1 {
  color: #6D715B;
  font-variant-numeric: lining-nums proportional-nums;
  font-family: "Cormorant Infant";
  font-size: 28px;
  font-weight: 300;
  text-transform: uppercase;
  margin: 32px 0;
}
@media screen and (min-width: 900px) {
  .wines-right h1 {
    font-size: 60px;
  }
}
.wines-right .wines-breadcrumbs span:not(:last-child) {
  text-align: right;
  font-family: "Sybilla Pro";
  font-size: 18px;
  font-style: italic;
  font-weight: 300;
  background: linear-gradient(270deg, #A18F6A 0%, #BFA16D 46.63%, #C09F6D 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.wines-right .wines-breadcrumbs .last-separator,
.wines-right .wines-breadcrumbs .wines-right .wines-breadcrumbs span:last-child {
  color: #4F4F4F;
  text-align: right;
  font-family: "Sybilla Pro";
  font-size: 18px;
  font-weight: 300;
  -webkit-text-fill-color: unset !important;
}
.wines-right .product-price {
  font-variant-numeric: lining-nums proportional-nums;
  font-family: "Sybilla Pro";
  font-size: 22px;
  font-weight: 200;
  background: linear-gradient(270deg, #A18F6A 0%, #BFA16D 46.63%, #C09F6D 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 32px;
}
@media screen and (min-width: 900px) {
  .wines-right .product-price {
    font-size: 28px;
  }
}
.wines-right .wine-btn-block {
  margin-bottom: 32px;
}
@media screen and (min-width: 900px) {
  .wines-right .wine-btn-block {
    display: flex;
    gap: 20px;
    align-items: center;
  }
}
.wines-right .wine-btn-block .product-link {
  width: 100%;
  max-width: 200px;
  margin-bottom: 20px;
}
@media screen and (min-width: 900px) {
  .wines-right .wine-btn-block .product-link {
    margin-bottom: unset;
  }
}
.wines-right .wine-btn-block .download-wine-taste {
  display: flex;
  gap: 10px;
  align-items: center;
}

.product-list-info {
  background-color: white;
  margin-bottom: 40px;
  border: 1px solid #E0E0E0;
}
@media screen and (min-width: 900px) {
  .product-list-info {
    margin-bottom: 90px;
  }
}
.product-list-info .product-info-row {
  padding: 16px;
}
@media screen and (min-width: 670px) {
  .product-list-info .product-info-row {
    display: flex;
    align-items: center;
    gap: 10px;
  }
}
.product-list-info .product-info-row:not(:first-child) {
  border-top: 1px solid #E0E0E0;
}
.product-list-info .product-info-row .product-info-separator {
  display: none;
}
@media screen and (min-width: 670px) {
  .product-list-info .product-info-row .product-info-separator {
    display: block;
    flex: 1;
    height: 1px;
    background-color: #e3e3e3;
    margin: 0 10px;
  }
}
.product-list-info .product-info-row .product-info-title {
  font-variant-numeric: lining-nums proportional-nums;
  font-family: "Cormorant Infant";
  font-size: 24px;
  font-style: italic;
  font-weight: 300;
  opacity: 0.9;
  background: linear-gradient(270deg, #A18F6A 0%, #BFA16D 46.63%, #C09F6D 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.product-list-info .product-info-row .product-info-text {
  color: #888682;
  font-family: "Sybilla Pro";
  font-size: 16px;
  font-weight: 300;
}
@media screen and (min-width: 670px) {
  .product-list-info .product-info-row .product-info-text {
    text-align: right;
    max-width: 60%;
  }
}

.product-tabs .tabs-nav {
  margin-bottom: 32px;
}
@media screen and (min-width: 480px) {
  .product-tabs .tabs-nav {
    display: flex;
    gap: 20px;
    border-bottom: 1px solid #BDBDBD;
    margin-bottom: 32px;
  }
}
.product-tabs .tabs-nav .tab-btn {
  width: 100%;
  text-align: left;
}
@media screen and (min-width: 900px) {
  .product-tabs .tabs-nav .tab-btn {
    text-align: center;
    width: auto;
  }
}
.product-tabs .tabs-nav .tab-btn.active-tab {
  font-variant-numeric: lining-nums tabular-nums;
  font-feature-settings: "ss01" on, "ss02" on;
  font-family: "Cormorant Infant";
  font-size: 32px;
  font-style: italic;
  font-weight: 300;
  border-bottom: 2px solid #A18F6A;
  border-radius: 0;
  opacity: 0.9;
  background: linear-gradient(270deg, #A18F6A 0%, #BFA16D 46.63%, #C09F6D 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.product-tabs .tabs-nav .tab-btn.inactive-tab {
  color: #BDBDBD;
  font-variant-numeric: lining-nums tabular-nums;
  font-feature-settings: "ss01" on, "ss02" on;
  font-family: "Cormorant Infant";
  font-size: 32px;
  font-style: italic;
  font-weight: 300;
}

.tabs-content h1, .tabs-content h2, .tabs-content h3, .tabs-content h4, .tabs-content h5, .tabs-content h6 {
  font-variant-numeric: lining-nums proportional-nums;
  font-family: "Cormorant Infant";
  font-style: italic;
  font-weight: 300;
  opacity: 0.9;
  background: linear-gradient(270deg, #A18F6A 0%, #BFA16D 46.63%, #C09F6D 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.tabs-content h1, .tabs-content h2 {
  font-size: 28px;
  line-height: 1.3;
}
@media screen and (min-width: 900px) {
  .tabs-content h1, .tabs-content h2 {
    font-size: 32px;
  }
}
.tabs-content p {
  color: #4F4F4F;
  font-family: "Sybilla Pro";
  font-weight: 300;
}
.tabs-content hr {
  border-bottom: 1px solid #E0E0E0;
  margin-bottom: 16px;
}/*# sourceMappingURL=wines-single.css.map */