* {
  box-sizing: border-box;
}

.font-eczar {
  font-family: "Eczar", serif;
}

.font-source {
  font-family: "Source Serif 4", serif;
}

.visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.color-green {
  color: #1F482E;
}

.color-red {
  color: #A71621;
}

.color-text {
  color: #1A171B;
}

body {
  font-family: "Source Serif 4", serif;
  line-height: 1.6;
  color: #2C2C2C;
  margin: 0;
  padding: 0;
}

.age-gate {
  background: #1F482E;
  padding-top: 0 !important;
}
.age-gate .main-header,
.age-gate .main-footer {
  display: none;
}
.age-gate .age-gate-main {
  min-height: 100vh;
}
.age-gate .age-gate-wrap {
  color: #F5F1E8;
}
.age-gate .age-gate-logo {
  width: 235px;
  height: auto;
  margin-bottom: 40px;
}
.age-gate .age-gate-question {
  font-size: 2rem;
  font-weight: 500;
  color: #F5F1E8;
  margin: 10px 0 20px 0;
}
.age-gate .age-gate-actions {
  display: flex;
  gap: 28px;
  justify-content: center;
  align-items: center;
}
.age-gate .age-btn {
  background: none;
  border: none;
  color: #F5F1E8;
  font-family: "Eczar", serif;
  font-weight: 700;
  font-size: 1.6rem;
  letter-spacing: 1px;
  position: relative;
}
.age-gate .age-btn.yes::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: calc(100% + 6px);
  width: 120px;
  height: 12px;
  background-image: url("/assets/images/divider.svg");
  background-repeat: no-repeat;
  background-size: contain;
}

.homepage,
.chapters,
.order,
.tastings {
  background-color: #E6E3DE;
}

@media screen and (max-width: 1399px) {
  .container {
    width: 100%;
    max-width: none;
  }
}
@media screen and (max-width: 1399px) {
  .container.mobile-no-padding .col-12 {
    padding: 0;
  }
}

.main-header {
  padding: 32px 0;
  background-color: #E6E3DE;
}
@media screen and (max-width: 991px) {
  .main-header {
    position: sticky;
    top: 0;
    z-index: 1000;
  }
}
.main-header .navbar {
  padding: 0;
}
.main-header .navbar .navbar-nav {
  gap: 40px;
}
.main-header .navbar .navbar-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 40px;
}
.main-header .navbar .navbar-nav ul li {
  display: inline-block;
  text-align: center;
  position: relative;
}
.main-header .navbar .navbar-nav ul li a {
  color: #1F482E;
  font-family: "Eczar", serif;
  font-weight: 600;
}
.main-header .navbar .navbar-nav ul li img {
  width: 150px;
}
.main-header .navbar .navbar-nav ul li.active::after {
  content: url("/assets/images/active-link.svg");
  position: absolute;
  top: 100%;
  left: 50%;
  width: 90px;
  transform: translate(-50%, -50%);
  z-index: -1;
}
.main-header .navbar .navbar-nav .nav-link {
  color: #1F482E;
  font-family: "Eczar", serif;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  letter-spacing: 1px;
  transition: opacity 0.3s ease;
}
.main-header .navbar .navbar-nav .nav-link:hover {
  opacity: 0.8;
}

.mobile-header-bar {
  display: none;
}

.hamburger {
  width: 32px;
  height: 24px;
  padding: 0;
  border: 0;
  background: transparent;
  display: none;
}
.hamburger span {
  display: block;
  height: 3px;
  background: #1F482E;
  margin: 5px 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.mobile-header-logo {
  display: none;
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background: #1F482E;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  z-index: 1090;
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-shadow: none;
}
@media (min-width: 992px) {
  .mobile-menu {
    display: none;
  }
}
.mobile-menu .mobile-menu-close {
  position: absolute;
  top: 24px;
  left: 24px;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: opacity 0.3s ease;
}
.mobile-menu .mobile-menu-close:hover {
  opacity: 0.8;
}
.mobile-menu .mobile-menu-close svg {
  width: 32px;
  height: 32px;
}
.mobile-menu .mobile-menu-list {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: center;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 40px;
}
.mobile-menu .mobile-menu-list li {
  margin: 0;
  position: relative;
}
.mobile-menu .mobile-menu-list a {
  color: white;
  font-family: "Eczar", serif;
  font-weight: 700;
  text-decoration: none;
  font-size: 2rem;
  letter-spacing: 1px;
  display: block;
  transition: opacity 0.3s ease;
}
.mobile-menu .mobile-menu-list a:hover {
  opacity: 0.8;
}
@media screen and (max-width: 767px) {
  .mobile-menu .mobile-menu-list a {
    font-size: 1.75rem;
  }
}
.mobile-menu .mobile-menu-list li.active a {
  position: relative;
}
.mobile-menu .mobile-menu-list li.active a::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  display: block;
  width: 240px;
  height: 12px;
  background-image: url("/assets/images/divider.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.mobile-menu .mobile-menu-logo {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  max-width: 60vw;
}
.mobile-menu .mobile-menu-logo img {
  width: 100%;
  height: auto;
}
@media screen and (max-width: 767px) {
  .mobile-menu .mobile-menu-logo {
    bottom: 30px;
    width: 150px;
  }
}

.menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 1080;
}

body.menu-open {
  overflow: hidden;
}
body.menu-open .mobile-menu {
  transform: translateX(0);
}
body.menu-open .menu-overlay {
  display: none;
}

@media (max-width: 991px) {
  body {
    padding-top: 88px;
  }
  .main-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 12px 0;
  }
  .mobile-header-bar {
    display: flex;
    align-items: center;
    position: relative;
    height: 64px;
  }
  .hamburger {
    display: block;
    margin-left: 16px;
  }
  .mobile-header-logo {
    display: block;
    width: 80px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }
  .main-header .navbar .navbar-nav {
    display: none;
  }
}
.hero-section {
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .hero-section {
    align-items: flex-start;
  }
}
.hero-section .hero-background {
  width: 100%;
}
.hero-section .hero-content {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  width: 100%;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 20px;
}
.hero-section .hero-content .hero-subtitle {
  margin-bottom: 10px;
}
@media screen and (max-width: 991px) {
  .hero-section .hero-content .hero-subtitle {
    width: 60%;
  }
}
.hero-section .hero-content .hero-title {
  margin-bottom: 20px;
}
@media screen and (max-width: 991px) {
  .hero-section .hero-content .hero-title {
    width: 90%;
  }
}
.hero-section .hero-content .hero-text {
  font-size: 2.6em;
  margin: 0;
  color: #F1EDE2;
  transform: translateX(50%);
}
@media screen and (max-width: 1399px) {
  .hero-section .hero-content .hero-text {
    font-size: 2.4em;
  }
}
@media screen and (max-width: 1099px) {
  .hero-section .hero-content .hero-text {
    transform: translateX(30%);
  }
}
@media screen and (max-width: 991px) {
  .hero-section .hero-content .hero-text {
    font-size: 2.5vw;
  }
}
.hero-section .hero-content .hero-text span {
  font-weight: 700;
  font-size: 4rem;
  font-style: italic;
  line-height: 1em;
  display: block;
  margin-top: -20px;
}
@media screen and (max-width: 1399px) {
  .hero-section .hero-content .hero-text span {
    font-size: 3.8rem;
  }
}
@media screen and (max-width: 991px) {
  .hero-section .hero-content .hero-text span {
    font-size: 5vw;
    margin-top: -1vw;
    margin-right: -20vw;
  }
}

.prologue-section,
.chapters-section,
.authors-section {
  padding: 80px 0 0 0;
}

.section-title {
  position: relative;
  font-family: "Eczar", serif;
  font-size: 3rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #1F482E;
  margin-bottom: 40px;
  letter-spacing: 2px;
}
@media screen and (max-width: 767px) {
  .section-title {
    font-size: 2rem;
  }
}
.section-title:after {
  content: url("/assets/images/divider.svg");
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translate(-50%, -32px);
}
@media screen and (max-width: 767px) {
  .section-title:after {
    content: url("/assets/images/divider-mobile.svg");
    transform: translate(-50%, -15px);
  }
}

.section-logo {
  width: 80px;
  height: auto;
  margin-bottom: 10px;
}

.prologue-text {
  font-size: 1.9em;
  font-weight: 500;
  color: #2C2C2C;
  margin: 0 auto;
}
.prologue-text .font-source {
  font-style: italic;
  font-weight: 700;
  font-size: 3rem;
}
.prologue-text strong {
  font-weight: 600;
}
.prologue-text .row1,
.prologue-text .row2,
.prologue-text .row3 {
  display: block;
}
@media screen and (max-width: 1199px) {
  .prologue-text .row1,
  .prologue-text .row2,
  .prologue-text .row3 {
    display: inline;
  }
}
.prologue-text .row1 {
  position: relative;
  left: -20px;
}
@media screen and (max-width: 1199px) {
  .prologue-text .row1 {
    position: static;
    left: 0;
  }
}
.prologue-text .row2 {
  position: relative;
  left: 100px;
}
@media screen and (max-width: 1199px) {
  .prologue-text .row2 {
    position: static;
    left: 0;
  }
}
.prologue-text .row3 {
  position: relative;
  left: -20px;
}
@media screen and (max-width: 1199px) {
  .prologue-text .row3 {
    position: static;
    left: 0;
  }
}

.product-number {
  text-align: center;
  font-style: italic;
  font-family: "Source Serif 4", serif;
  font-size: 1.4em;
  font-weight: 600;
  color: #1A171B;
  margin: 0;
}
.product-number span {
  font-size: 2rem;
  font-style: normal;
}

.products-carousel {
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .products-carousel .products-carousel-slide {
    padding: 0 15px;
  }
}
.products-carousel .product-card {
  display: block;
  position: relative;
  padding: 30px 20px;
  background-color: #DED7CB;
}
.products-carousel .product-card .product-image {
  width: 200px;
}
@media screen and (max-width: 575px) {
  .products-carousel .product-card .product-image {
    position: relative;
    left: -30px;
  }
}
@media screen and (max-width: 420px) {
  .products-carousel .product-card .product-image {
    width: 180px;
    left: -34px;
  }
}
@media screen and (max-width: 399px) {
  .products-carousel .product-card .product-image {
    width: 170px;
    left: -40px;
  }
}
.products-carousel .product-card .product-label {
  position: absolute;
  right: 30px;
  top: 0;
  width: 36px;
}
.products-carousel .product-card .product-label:after {
  content: "";
  position: absolute;
  top: 100%;
  border-bottom: 12px solid #DED7CB;
}
.products-carousel .product-card .product-label.affair {
  background-color: #A71621;
}
.products-carousel .product-card .product-label.affair:after {
  border-left: 18px solid #A71621;
  border-right: 18px solid #A71621;
}
.products-carousel .product-card .product-label.luigi, .products-carousel .product-card .product-label.maja {
  background-color: #1F482E;
}
.products-carousel .product-card .product-label.luigi:after, .products-carousel .product-card .product-label.maja:after {
  border-left: 18px solid #1F482E;
  border-right: 18px solid #1F482E;
}
.products-carousel .product-card .product-label p {
  color: #BF8F55;
  text-align: center;
  font-weight: 500;
  font-family: "Eczar", serif;
  margin: 20px 0 0 0;
  padding: 0 3px;
}
.products-carousel .product-card .product-title {
  position: absolute;
  bottom: 30px;
  left: 50%;
  font-family: "Source Serif 4", serif;
  font-style: italic;
  font-size: 4em;
  font-weight: 600;
  max-width: 200px;
}
@media screen and (max-width: 575px) {
  .products-carousel .product-card .product-title {
    font-size: 3.5em;
  }
}
@media screen and (max-width: 499px) {
  .products-carousel .product-card .product-title {
    font-size: 3em;
  }
}
@media screen and (max-width: 450px) {
  .products-carousel .product-card .product-title {
    font-size: 2.8em;
  }
}
@media screen and (max-width: 400px) {
  .products-carousel .product-card .product-title {
    font-size: 2.7em;
  }
}
.products-carousel .product-card .product-title.affair {
  color: #A71621;
}
.products-carousel .product-card .product-title.luigi {
  color: #1F482E;
}
.products-carousel .product-card .product-title.maja {
  color: #1F482E;
}
.products-carousel .product-card .age-badge {
  position: absolute;
  right: 25px;
  top: 70px;
  font-family: "Eczar", serif;
  font-size: 5rem;
  line-height: 5rem;
  font-weight: 500;
  color: #BF8F55;
  margin: 0;
  padding-bottom: 8px;
}
.products-carousel .product-card .age-badge span {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  white-space: nowrap;
  text-align: center;
  text-transform: uppercase;
  font-size: 0.9rem;
  line-height: 1rem;
  font-weight: 600;
  display: block;
  color: #1A171B;
}
.products-carousel .chapter-btn {
  display: inline-block;
  font-family: "Source Serif 4", serif;
  font-size: 1.2em;
  font-style: italic;
  font-weight: 600;
  margin-top: 20px;
  padding: 10px 20px;
  transition: all 0.3s ease;
  text-decoration: none;
}
.products-carousel .chapter-btn.affair {
  background-color: #A71621;
  color: white;
}
.products-carousel .chapter-btn.affair:hover {
  background-color: #7a1018;
  transform: translateY(-2px);
}
.products-carousel .chapter-btn.luigi {
  background-color: #1F482E;
  color: white;
}
.products-carousel .chapter-btn.luigi:hover {
  background-color: #102417;
  transform: translateY(-2px);
}
.products-carousel .chapter-btn.maja {
  background-color: #1F482E;
  color: white;
}
.products-carousel .chapter-btn.maja:hover {
  background-color: #102417;
  transform: translateY(-2px);
}

@media screen and (max-width: 767px) {
  .products-carousel {
    position: relative;
  }
  .products-carousel .slick-prev,
  .products-carousel .slick-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    background: transparent;
    border: none;
    padding: 0;
    cursor: pointer;
    z-index: 2;
  }
  .products-carousel .slick-prev {
    left: 35px;
  }
  .products-carousel .slick-next {
    right: 35px;
  }
  .products-carousel .slick-prev:before,
  .products-carousel .slick-next:before {
    content: "";
    display: block;
    width: 16px;
    height: 16px;
    border: 3px solid #1F482E;
    border-top: 0;
    border-right: 0;
    margin: 0 auto;
  }
  .products-carousel .slick-prev:before {
    transform: rotate(45deg);
  }
  .products-carousel .slick-next:before {
    transform: rotate(-135deg);
  }
}
.authors-photo {
  text-align: center;
}
.authors-photo .authors-image {
  width: 100%;
  height: auto;
}

.authors-bios {
  margin-top: -100px;
}

.author-card {
  text-align: center;
  padding: 40px 20px;
}
.author-card .author-icon {
  width: 60px;
  height: auto;
}
.author-card .author-name {
  font-family: "Source Serif 4", serif;
  font-style: italic;
  font-size: 5rem;
  font-weight: 600;
  color: #1F482E;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .author-card .author-name {
    font-size: 3rem;
  }
}
.author-card .author-bio {
  font-family: "Eczar", serif;
  font-weight: 500;
  font-size: 1.5em;
  color: #2C2C2C;
  margin: 0 auto;
}

.tasting-section {
  margin-bottom: 50px;
}
.tasting-section .tasting-image {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .tasting-section .tasting-image {
    height: 340px;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.tasting-section .tasting-text {
  font-family: "Eczar", serif;
  font-size: 1.5em;
  font-weight: 500;
  text-align: center;
  color: #2C2C2C;
  max-width: 920px;
  margin: 40px auto 30px auto;
}

.cta-btn {
  position: relative;
  top: 0px;
  display: inline-block;
  font-family: "Source Serif 4", serif;
  font-style: italic;
  font-size: 1.2em;
  font-weight: 600;
  text-decoration: none;
  background-color: #1F482E;
  color: white;
  padding: 10px 30px;
  transition: all 0.3s ease;
}
.cta-btn:hover {
  color: white;
  background-color: #102417;
  top: -2px;
}

.chapters .chapter-section {
  margin-top: 50px;
}
@media screen and (max-width: 767px) {
  .chapters .chapter-section {
    margin-top: 30px;
  }
}
.chapters .chapter-section.affair .section-title {
  color: #A71621;
}
.chapters .chapter-section.affair .chapter-title {
  color: #A71621;
  font-family: "Source Serif 4", serif;
  font-weight: 600;
  font-style: italic;
  font-size: 7rem;
}
@media screen and (max-width: 767px) {
  .chapters .chapter-section.affair .chapter-title {
    font-size: 5rem;
  }
}
.chapters .chapter-section.luigis-choice .section-title, .chapters .chapter-section.majas-choice .section-title {
  color: #1F482E;
}
.chapters .chapter-section.luigis-choice .chapter-title, .chapters .chapter-section.majas-choice .chapter-title {
  color: #1F482E;
  font-family: "Source Serif 4", serif;
  font-weight: 600;
  font-style: italic;
  font-size: 7rem;
}
@media screen and (max-width: 767px) {
  .chapters .chapter-section.luigis-choice .chapter-title, .chapters .chapter-section.majas-choice .chapter-title {
    font-size: 5.4rem;
  }
}
.chapters .chapters-section {
  margin-bottom: 100px;
}
@media screen and (max-width: 767px) {
  .chapters .chapters-section {
    margin-bottom: 50px;
  }
}

.chapter-header .chapter-header-inner {
  position: relative;
  padding-bottom: 100px;
}
@media screen and (max-width: 1399px) {
  .chapter-header .chapter-header-inner {
    padding-bottom: 100px !important;
  }
}
.chapter-header .chapter-background {
  width: 100%;
}
@media screen and (max-width: 599px) {
  .chapter-header .chapter-background {
    height: 350px;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.chapter-header .chapter-bottle {
  position: absolute;
  width: 33%;
  left: 0;
  bottom: 0;
}
@media screen and (max-width: 767px) {
  .chapter-header .chapter-bottle {
    width: 40%;
  }
}
@media screen and (max-width: 575px) {
  .chapter-header .chapter-bottle {
    width: 50%;
  }
}
.chapter-header .chapter-header-text {
  position: absolute;
}
.chapter-header .chapter-header-text.affair {
  left: 50%;
  top: 45%;
}
@media screen and (max-width: 1199px) {
  .chapter-header .chapter-header-text.affair {
    top: 42%;
    left: 40%;
  }
}
@media screen and (max-width: 991px) {
  .chapter-header .chapter-header-text.affair {
    top: 35%;
    left: 30%;
  }
}
@media screen and (max-width: 767px) {
  .chapter-header .chapter-header-text.affair {
    top: 15%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}
.chapter-header .chapter-header-text.affair p {
  color: #E6E3DE;
  font-family: "Eczar", serif;
  font-size: 2.1rem;
}
@media screen and (max-width: 599px) {
  .chapter-header .chapter-header-text.affair p {
    font-size: 1.7rem;
  }
}
@media screen and (max-width: 475px) {
  .chapter-header .chapter-header-text.affair p {
    font-size: 1.4rem;
  }
}
.chapter-header .chapter-header-text.affair p.overlay-text-line1 {
  max-width: 320px;
  line-height: 1em;
}
.chapter-header .chapter-header-text.affair p.overlay-text-line2 {
  font-family: "Source Serif 4", serif;
  font-style: italic;
  font-size: 2.9rem;
  line-height: 1em;
  max-width: 530px;
  position: relative;
  left: 30px;
}
@media screen and (max-width: 767px) {
  .chapter-header .chapter-header-text.affair p.overlay-text-line2 {
    left: 0;
  }
}
@media screen and (max-width: 599px) {
  .chapter-header .chapter-header-text.affair p.overlay-text-line2 {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 475px) {
  .chapter-header .chapter-header-text.affair p.overlay-text-line2 {
    font-size: 2rem;
  }
}
.chapter-header .chapter-header-text.luigis-choice {
  left: 42%;
  top: 55%;
}
@media screen and (max-width: 950px) {
  .chapter-header .chapter-header-text.luigis-choice {
    left: 35%;
  }
}
@media screen and (max-width: 820px) {
  .chapter-header .chapter-header-text.luigis-choice {
    left: 30%;
  }
}
@media screen and (max-width: 767px) {
  .chapter-header .chapter-header-text.luigis-choice {
    top: 20%;
    width: 60%;
  }
}
.chapter-header .chapter-header-text.luigis-choice p {
  color: #E6E3DE;
  font-family: "Source Serif 4", serif;
  font-style: italic;
  font-size: 2.5rem;
  line-height: 1em;
  margin: 0;
}
@media screen and (max-width: 599px) {
  .chapter-header .chapter-header-text.luigis-choice p {
    font-size: 2.3rem;
  }
}
@media screen and (max-width: 475px) {
  .chapter-header .chapter-header-text.luigis-choice p {
    font-size: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .chapter-header .chapter-header-text.luigis-choice p.overlay-text-line1 {
    display: none;
  }
}
.chapter-header .chapter-header-text.luigis-choice p.overlay-text-line1.mobile-only {
  display: none;
}
@media screen and (max-width: 767px) {
  .chapter-header .chapter-header-text.luigis-choice p.overlay-text-line1.mobile-only {
    text-align: center;
    display: block;
  }
}
.chapter-header .chapter-header-text.luigis-choice p.overlay-text-line2 {
  max-width: 530px;
  position: relative;
  left: 30px;
}
@media screen and (max-width: 767px) {
  .chapter-header .chapter-header-text.luigis-choice p.overlay-text-line2 {
    display: none;
  }
}
.chapter-header .chapter-header-text.majas-choice {
  left: 50%;
  top: 55%;
}
@media screen and (max-width: 1023px) {
  .chapter-header .chapter-header-text.majas-choice {
    top: 50%;
    left: 40%;
  }
}
@media screen and (max-width: 850px) {
  .chapter-header .chapter-header-text.majas-choice {
    top: 40%;
    left: 35%;
  }
}
@media screen and (max-width: 767px) {
  .chapter-header .chapter-header-text.majas-choice {
    top: 20%;
    left: 35%;
  }
}
@media screen and (max-width: 575px) {
  .chapter-header .chapter-header-text.majas-choice {
    left: 50%;
  }
}
.chapter-header .chapter-header-text.majas-choice p {
  color: #E6E3DE;
  font-family: "Source Serif 4", serif;
  font-style: italic;
  font-size: 2.5rem;
  line-height: 1em;
  margin: 0;
}
@media screen and (max-width: 1070px) {
  .chapter-header .chapter-header-text.majas-choice p {
    font-size: 2.3rem;
  }
}
@media screen and (max-width: 767px) {
  .chapter-header .chapter-header-text.majas-choice p {
    font-size: 2rem;
    padding-right: 20px;
  }
}
.chapter-header .chapter-header-text.majas-choice p.overlay-text-line1 {
  position: relative;
  left: 55px;
}
@media screen and (max-width: 767px) {
  .chapter-header .chapter-header-text.majas-choice p.overlay-text-line1 {
    display: none;
  }
}
.chapter-header .chapter-header-text.majas-choice p.overlay-text-line1.mobile-only {
  display: none;
  left: 0;
}
@media screen and (max-width: 767px) {
  .chapter-header .chapter-header-text.majas-choice p.overlay-text-line1.mobile-only {
    text-align: center;
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .chapter-header .chapter-header-text.majas-choice p.overlay-text-line2 {
    display: none;
  }
}
.chapter-header .chapter-header-text.majas-choice p.overlay-text-line3 {
  position: relative;
  left: 30px;
}
@media screen and (max-width: 767px) {
  .chapter-header .chapter-header-text.majas-choice p.overlay-text-line3 {
    display: none;
  }
}

.chapter-table {
  margin: 30px 0 70px 0;
}
.chapter-table .chapter-table-wrapper {
  display: flex;
  justify-content: center;
}
.chapter-table .chapter-spec-grid {
  display: grid;
  grid-template-columns: 200px 70px 230px 240px 170px;
  grid-template-rows: repeat(6, auto);
  gap: 0;
  width: -moz-max-content;
  width: max-content;
  margin: 0 auto;
}
.chapter-table .chapter-spec-grid.grid-bottom {
  display: none;
}
@media screen and (max-width: 991px) {
  .chapter-table .chapter-spec-grid {
    width: 100%;
  }
  .chapter-table .chapter-spec-grid.grid-top {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(2, auto);
  }
  .chapter-table .chapter-spec-grid.grid-top .hide-mobile {
    display: none !important;
  }
  .chapter-table .chapter-spec-grid.grid-top .age {
    grid-area: 1/1/3/2;
  }
  .chapter-table .chapter-spec-grid.grid-top .right1 {
    grid-area: 1/2/2/3;
  }
  .chapter-table .chapter-spec-grid.grid-top .right-bottom.strength {
    grid-area: 2/2/3/3;
  }
  .chapter-table .chapter-spec-grid.grid-bottom {
    display: grid;
    grid-template-columns: 80px 2fr 1fr;
    grid-template-rows: repeat(3, auto);
    width: 100%;
  }
  .chapter-table .chapter-spec-grid.grid-bottom .label.aged {
    grid-area: 1/1/2/2;
  }
  .chapter-table .chapter-spec-grid.grid-bottom .value.aged-value {
    grid-area: 1/2/2/3;
  }
  .chapter-table .chapter-spec-grid.grid-bottom .right-top.right2 {
    grid-area: 1/3/3/4;
  }
  .chapter-table .chapter-spec-grid.grid-bottom .label.from {
    grid-area: 2/1/3/2;
  }
  .chapter-table .chapter-spec-grid.grid-bottom .value.from-value {
    grid-area: 2/2/3/3;
  }
  .chapter-table .chapter-spec-grid.grid-bottom .label.abv {
    grid-area: 3/1/4/2;
  }
  .chapter-table .chapter-spec-grid.grid-bottom .value.abv-value {
    grid-area: 3/2/4/3;
  }
  .chapter-table .chapter-spec-grid.grid-bottom .right-bottom.bottles {
    grid-area: 3/3/4/4;
  }
}
.chapter-table .chapter-spec-grid .cell {
  padding: 5px 10px;
  color: #1A171B;
  display: flex;
  align-items: center;
}
.chapter-table .chapter-spec-grid .age {
  grid-area: 1/1/7/2;
  text-align: center;
  flex-direction: row;
  justify-content: center;
  gap: 18px;
}
.chapter-table .chapter-spec-grid .aged {
  grid-area: 1/2/3/3;
  text-align: center;
  background-color: #eae5de;
  font-weight: 700;
  text-transform: uppercase;
  justify-content: flex-end;
}
.chapter-table .chapter-spec-grid .aged-value {
  grid-area: 1/3/3/4;
  justify-content: flex-start;
  font-weight: 600;
  line-height: 1.1em;
}
.chapter-table .chapter-spec-grid .right1 {
  grid-area: 1/4/4/5;
  text-align: center;
  font-weight: 600;
  text-transform: uppercase;
  justify-content: center;
  line-height: 1.1em;
}
.chapter-table .chapter-spec-grid .right2 {
  grid-area: 1/5/4/6;
  text-align: center;
  font-weight: 600;
  text-transform: uppercase;
  justify-content: center;
  line-height: 1.1em;
}
.chapter-table .chapter-spec-grid .from {
  grid-area: 3/2/5/3;
  text-align: center;
  background-color: #eae5de;
  font-weight: 700;
  text-transform: uppercase;
  justify-content: flex-end;
}
.chapter-table .chapter-spec-grid .from-value {
  grid-area: 3/3/5/4;
  justify-content: flex-start;
  font-weight: 600;
  line-height: 1.1em;
}
.chapter-table .chapter-spec-grid .abv {
  grid-area: 5/2/7/3;
  text-align: center;
  background-color: #eae5de;
  font-weight: 700;
  text-transform: uppercase;
  justify-content: flex-end;
}
.chapter-table .chapter-spec-grid .abv-value {
  grid-area: 5/3/7/4;
  justify-content: flex-start;
  font-weight: 600;
  line-height: 1.1em;
}
.chapter-table .chapter-spec-grid .strength {
  grid-area: 4/4/7/5;
  text-align: center;
  font-weight: 600;
  text-transform: uppercase;
  justify-content: center;
  line-height: 1.1em;
}
.chapter-table .chapter-spec-grid .bottles {
  grid-area: 4/5/7/6;
  text-align: center;
  font-style: italic;
  font-weight: 600;
  font-size: 2rem;
  justify-content: center;
}
.chapter-table .chapter-spec-grid .age-num {
  font-size: 7rem;
  line-height: 1;
  color: #BF8F55;
  position: relative;
  top: 5px;
}
.chapter-table .chapter-spec-grid .age-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  letter-spacing: 0.5px;
}
.chapter-table .chapter-spec-grid .age-text p {
  display: block;
  font-weight: 700;
  line-height: 1em;
  text-align: left;
  margin: 0;
}
.chapter-table .chapter-spec-grid.affair .cell {
  border-left: 2px solid #A71621;
  border-top: 2px solid #A71621;
}
.chapter-table .chapter-spec-grid.affair .edge-right {
  border-right: 2px solid #A71621;
}
.chapter-table .chapter-spec-grid.affair .edge-bottom {
  border-bottom: 2px solid #A71621;
}
.chapter-table .chapter-spec-grid.affair .bottles {
  color: #A71621;
}
.chapter-table .chapter-spec-grid.affair .thin-border-top {
  border-top: 1px solid #A71621;
}
.chapter-table .chapter-spec-grid.affair .thin-border-left {
  border-left: 1px solid #A71621;
}
.chapter-table .chapter-spec-grid.luigis-choice .cell, .chapter-table .chapter-spec-grid.majas-choice .cell {
  border-left: 2px solid #1F482E;
  border-top: 2px solid #1F482E;
}
.chapter-table .chapter-spec-grid.luigis-choice .edge-right, .chapter-table .chapter-spec-grid.majas-choice .edge-right {
  border-right: 2px solid #1F482E;
}
.chapter-table .chapter-spec-grid.luigis-choice .edge-bottom, .chapter-table .chapter-spec-grid.majas-choice .edge-bottom {
  border-bottom: 2px solid #1F482E;
}
.chapter-table .chapter-spec-grid.luigis-choice .bottles, .chapter-table .chapter-spec-grid.majas-choice .bottles {
  color: #1F482E;
}
.chapter-table .chapter-spec-grid.luigis-choice .thin-border-top, .chapter-table .chapter-spec-grid.majas-choice .thin-border-top {
  border-top: 1px solid #1F482E;
}
.chapter-table .chapter-spec-grid.luigis-choice .thin-border-left, .chapter-table .chapter-spec-grid.majas-choice .thin-border-left {
  border-left: 1px solid #1F482E;
}
@media screen and (max-width: 991px) {
  .chapter-table .chapter-table-wrapper {
    display: block;
  }
  .chapter-table .chapter-spec-grid.affair.grid-top .right1,
  .chapter-table .chapter-spec-grid.affair.grid-top .right-bottom.strength {
    border-right: 2px solid #A71621;
  }
  .chapter-table .chapter-spec-grid.luigis-choice.grid-top .right1,
  .chapter-table .chapter-spec-grid.luigis-choice.grid-top .right-bottom.strength,
  .chapter-table .chapter-spec-grid.majas-choice.grid-top .right1,
  .chapter-table .chapter-spec-grid.majas-choice.grid-top .right-bottom.strength {
    border-right: 2px solid #1F482E;
  }
  .chapter-table .no-top-border {
    border-top: none !important;
  }
}

.chapter-content {
  padding: 50px 0 0 0;
}
@media screen and (max-width: 767px) {
  .chapter-content {
    padding: 50px 0 0 0;
  }
}
.chapter-content .chapter-content-inner {
  margin-bottom: 40px;
  padding: 0 50px !important;
}
@media screen and (max-width: 991px) {
  .chapter-content .chapter-content-inner {
    padding: 0 15px !important;
    text-align: center;
  }
}
.chapter-content .row > div {
  padding: 0 30px;
}
@media screen and (max-width: 991px) {
  .chapter-content .row > div {
    padding: 0 15px;
  }
}
.chapter-content p {
  font-family: "Eczar", serif;
  font-size: 1.6em;
  line-height: 1.4em;
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .chapter-content p {
    line-height: 1.2em;
  }
}
.chapter-content p.chapter-content-large {
  font-weight: 500;
  font-size: 2.5rem;
  line-height: 1em;
}
@media screen and (max-width: 767px) {
  .chapter-content p.chapter-content-large {
    font-size: 1.8rem;
  }
}
.chapter-content p.chapter-content-red {
  color: #A71621;
}
.chapter-content p.chapter-content-green {
  color: #1F482E;
}
.chapter-content p .chapter-content-italic {
  font-family: "Source Serif 4", serif;
  font-style: italic;
  font-size: 1.9rem;
  font-weight: 600;
}
.chapter-content p.no-margin {
  margin: 0;
}
.chapter-content .cta-btn {
  margin: 0 10px;
}
.chapter-content.affair .cta-btn {
  background-color: #A71621;
}
.chapter-content.affair .cta-btn:hover {
  color: white;
  background-color: #7a1018;
  transform: translateY(-2px);
}
.chapter-content.luigis-choice .cta-btn, .chapter-content.majas-choice .cta-btn {
  background-color: #1F482E;
}
.chapter-content.luigis-choice .cta-btn:hover, .chapter-content.majas-choice .cta-btn:hover {
  color: white;
  background-color: #102417;
  transform: translateY(-2px);
}

.order-header .order-header-inner {
  position: relative;
  padding-bottom: 100px !important;
}
@media screen and (max-width: 1399px) {
  .order-header .order-header-inner {
    padding-bottom: 120px !important;
  }
}
@media screen and (max-width: 991px) {
  .order-header .order-header-inner {
    padding-bottom: 70px !important;
  }
}
@media screen and (max-width: 767px) {
  .order-header .order-header-inner {
    padding-bottom: 40px !important;
  }
}
.order-header .order-background {
  width: 100%;
}
.order-header .order-bottles {
  position: absolute;
  width: 80%;
  left: 10%;
  bottom: -40px;
}

.tastings-header .tastings-background {
  width: 100%;
}

.tastings-content,
.order-content {
  padding: 80px 0;
}
@media screen and (max-width: 767px) {
  .tastings-content,
  .order-content {
    padding: 50px 0;
  }
}
.tastings-content .tastings-content-inner,
.order-content .tastings-content-inner {
  padding: 0 80px;
}
@media screen and (max-width: 767px) {
  .tastings-content .tastings-content-inner,
  .order-content .tastings-content-inner {
    padding: 0 calc(var(--bs-gutter-x) * 0.5);
  }
}
.tastings-content .tastings-title,
.order-content .tastings-title {
  font-family: "Eczar", serif;
  font-size: 3rem;
  font-weight: 600;
  color: #1F482E;
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .tastings-content .tastings-title,
  .order-content .tastings-title {
    font-size: 2rem;
  }
}
.tastings-content .tastings-description,
.order-content .tastings-description {
  font-family: "Source Serif 4", serif;
  font-size: 1.5rem;
  line-height: 1.5em;
  color: #1A171B;
  margin-bottom: 80px;
}
@media screen and (max-width: 767px) {
  .tastings-content .tastings-description,
  .order-content .tastings-description {
    font-size: 1rem;
    margin-bottom: 40px;
  }
}
.tastings-content p i,
.order-content p i {
  font-family: "Source Serif 4", serif;
  font-weight: 600;
  font-style: italic;
  font-size: 1.5rem;
}
.tastings-content p strong,
.order-content p strong {
  font-family: "Eczar", serif;
  font-weight: 500;
  font-size: 1.6rem;
}
.tastings-content .tastings-table,
.order-content .tastings-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .tastings-content .tastings-table,
  .order-content .tastings-table {
    margin-bottom: 40px;
  }
}
.tastings-content .tastings-table thead,
.order-content .tastings-table thead {
  background-color: #D7D1C7;
}
.tastings-content .tastings-table thead th,
.order-content .tastings-table thead th {
  font-family: "Eczar", serif;
  font-size: 1.5rem;
  font-weight: 500;
  color: #1A171B;
  padding: 16px 20px;
  border-bottom: 1px solid #1F482E;
}
.tastings-content .tastings-table tbody tr,
.order-content .tastings-table tbody tr {
  border-bottom: 1px solid #1F482E;
}
.tastings-content .tastings-table tbody td,
.order-content .tastings-table tbody td {
  font-family: "Source Serif 4", serif;
  font-weight: 500;
  font-size: 1.4rem;
  color: #1A171B;
  padding: 16px 20px;
}
.tastings-content .tastings-join-section,
.order-content .tastings-join-section {
  margin-top: 60px;
}
@media screen and (max-width: 767px) {
  .tastings-content .tastings-join-section,
  .order-content .tastings-join-section {
    margin-top: 40px;
  }
}
.tastings-content .tastings-join-section .join-title,
.order-content .tastings-join-section .join-title {
  font-family: "Eczar", serif;
  font-size: 2rem;
  font-weight: 500;
  color: #1A171B;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .tastings-content .tastings-join-section .join-title,
  .order-content .tastings-join-section .join-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
  }
}
.tastings-content .tastings-join-section .join-description,
.order-content .tastings-join-section .join-description {
  font-family: "Source Serif 4", serif;
  font-size: 1.4rem;
  line-height: 1.4em;
  color: #1A171B;
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .tastings-content .tastings-join-section .join-description,
  .order-content .tastings-join-section .join-description {
    font-size: 1rem;
    margin-bottom: 30px;
  }
}
.tastings-content .tastings-join-section .join-description i,
.order-content .tastings-join-section .join-description i {
  font-size: 1.6rem;
}
.tastings-content .tastings-join-section .join-form,
.order-content .tastings-join-section .join-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.tastings-content .tastings-join-section .join-form input,
.order-content .tastings-join-section .join-form input {
  font-family: "Source Serif 4", serif;
  font-size: 1rem;
  padding: 12px 16px;
  background-color: #E6E3DE;
  border: 1px solid #1F482E;
  border-radius: 5px;
  color: #1A171B;
  outline: none;
  transition: border-color 0.3s ease;
}
.tastings-content .tastings-join-section .join-form input::-moz-placeholder, .order-content .tastings-join-section .join-form input::-moz-placeholder {
  color: rgba(26, 23, 27, 0.6);
}
.tastings-content .tastings-join-section .join-form input::placeholder,
.order-content .tastings-join-section .join-form input::placeholder {
  color: rgba(26, 23, 27, 0.6);
}
.tastings-content .tastings-join-section .join-form input:focus,
.order-content .tastings-join-section .join-form input:focus {
  border-color: #102417;
}
.tastings-content .tastings-join-section .join-form .join-btn,
.order-content .tastings-join-section .join-form .join-btn {
  font-family: "Source Serif 4", serif;
  font-style: italic;
  font-size: 1.2rem;
  font-weight: 600;
  padding: 5px 20px;
  background-color: #1F482E;
  color: white;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  align-self: flex-start;
  width: 100%;
}
.tastings-content .tastings-join-section .join-form .join-btn:hover,
.order-content .tastings-join-section .join-form .join-btn:hover {
  background-color: #102417;
  transform: translateY(-2px);
}

.order-content {
  padding: 80px 0 0 0;
}

.order-form {
  padding: 40px 0 100px 0;
}
@media screen and (max-width: 767px) {
  .order-form {
    padding: 40px 0 60px 0;
  }
}
.order-form .container {
  max-width: 940px;
}
.order-form .row > div {
  padding: 0 16px;
}
.order-form .form-wrapper {
  background-color: #D7D1C7;
  border-radius: 15px;
  padding: 22px;
}
.order-form .order-products-head {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  margin-bottom: 16px;
}
.order-form .order-products-head h3 {
  margin: 0;
}
.order-form .order-products-head .order-qty-label {
  font-family: "Eczar", serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: #1A171B;
}
.order-form .order-product-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 180px;
  gap: 16px;
  margin-bottom: 16px;
}
@media screen and (max-width: 767px) {
  .order-form .order-product-row {
    margin-bottom: 12px;
    grid-template-columns: minmax(0, 1fr) 96px;
    gap: 8px;
  }
}
.order-form .product-display {
  border: 2px solid #1F482E;
  border-radius: 6px;
  padding: 12px 16px;
  background-color: #E6E3DE;
}
.order-form .product-text {
  margin: 0;
  font-family: "Source Serif 4", serif;
  font-size: 1.2rem;
  font-weight: 500;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  color: #1A171B;
}
.order-form .product-text span {
  display: inline-flex;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .order-form .product-text {
    font-size: 1.1rem;
  }
}
@media screen and (max-width: 767px) {
  .order-form .product-text .product-name {
    display: none;
  }
}
.order-form .product-chapter {
  font-family: "Eczar", serif;
  font-weight: 700;
  font-size: 1.2rem;
}
.order-form .product-chapter.affair {
  color: #A71621;
}
.order-form .product-chapter.luigi,
.order-form .product-chapter.maja {
  color: #1F482E;
}
.order-form .product-quantity {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
@media screen and (max-width: 767px) {
  .order-form .product-quantity {
    justify-content: flex-end;
  }
}
.order-form .quantity-input {
  width: 100%;
  min-width: 160px;
  font-size: 1.05rem;
  background-color: #E6E3DE;
  border: 2px solid #1F482E;
  border-radius: 6px;
  padding: 8px 10px;
  text-align: center;
  font-family: "Source Serif 4", serif;
}
.order-form .quantity-input:focus {
  outline: none;
  border-color: #163320;
  box-shadow: 0 0 0 2px rgba(31, 72, 46, 0.15);
}
@media screen and (max-width: 767px) {
  .order-form .quantity-input {
    min-width: 0;
    width: 96px;
    font-size: 0.95rem;
    padding: 6px 8px;
  }
}
.order-form h3 {
  font-family: "Eczar", serif;
  font-weight: 500;
  font-size: 1.5rem;
  color: #1A171B;
  margin: 16px 0 12px 0px;
}
.order-form label {
  display: none;
}
.order-form .form-group {
  margin-bottom: 16px;
}
.order-form select,
.order-form input[type=text],
.order-form input[type=email],
.order-form input[type=tel],
.order-form textarea {
  width: 100%;
  font-family: "Source Serif 4", serif;
  font-size: 1.2rem;
  color: #1A171B;
  background: #E6E3DE;
  border: 2px solid #1F482E;
  border-radius: 6px;
  padding: 12px 16px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.order-form select::-moz-placeholder, .order-form input[type=text]::-moz-placeholder, .order-form input[type=email]::-moz-placeholder, .order-form input[type=tel]::-moz-placeholder, .order-form textarea::-moz-placeholder {
  color: rgba(26, 23, 27, 0.65);
}
.order-form select::placeholder,
.order-form input[type=text]::placeholder,
.order-form input[type=email]::placeholder,
.order-form input[type=tel]::placeholder,
.order-form textarea::placeholder {
  color: rgba(26, 23, 27, 0.65);
}
.order-form select:focus,
.order-form input[type=text]:focus,
.order-form input[type=email]:focus,
.order-form input[type=tel]:focus,
.order-form textarea:focus {
  border-color: #132b1c;
  box-shadow: 0 0 0 2px rgba(31, 72, 46, 0.08);
}
.order-form select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%231F482E' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 40px;
}
.order-form select.is-affair {
  color: #A71621;
}
.order-form textarea {
  min-height: 140px;
  resize: vertical;
}
.order-form .btn {
  display: inline-block;
  font-family: "Source Serif 4", serif;
  font-style: italic;
  font-weight: 600;
  font-size: 1.1rem;
  background: #1F482E;
  color: #fff;
  padding: 10px 28px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}
.order-form .btn:hover {
  background: #132b1c;
  transform: translateY(-1px);
}
.order-form .alert {
  border: 1px solid transparent;
  border-radius: 6px;
  padding: 12px 16px;
  margin: 8px 0 16px 0;
  font-family: "Source Serif 4", serif;
}
.order-form .alert.alert-success {
  background: #7fc89a;
  border-color: #1F482E;
  color: #1A171B;
}
.order-form .alert.alert-danger {
  background: #f3a1a7;
  border-color: #A71621;
  color: #1A171B;
}
.order-form select.customized {
  display: none;
}
.order-form .custom-select {
  position: relative;
  width: 100%;
}
.order-form .custom-select-toggle {
  width: 100%;
  background: #E6E3DE;
  border: 2px solid #1F482E;
  border-radius: 6px;
  padding: 12px 44px 12px 16px;
  text-align: left;
  cursor: pointer;
  font-family: "Source Serif 4", serif;
  font-size: 1rem;
  color: #1A171B;
  position: relative;
}
.order-form .custom-select-toggle:after {
  content: "";
  position: absolute;
  right: 12px;
  top: 50%;
  width: 18px;
  height: 18px;
  transform: translateY(-50%);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%231F482E' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}
.order-form .custom-select-menu {
  position: absolute;
  left: 0;
  right: 0;
  z-index: 20;
  background: #E6E3DE;
  border: 2px solid #1F482E;
  border-radius: 6px;
  margin-top: 6px;
  max-height: 280px;
  overflow: auto;
  list-style: none;
  padding: 6px 0;
  display: none;
}
.order-form .custom-select.open .custom-select-menu {
  display: block;
}
.order-form .custom-option {
  padding: 10px 16px;
  cursor: pointer;
  font-family: "Source Serif 4", serif;
  font-size: 1rem;
  color: #1A171B;
}
.order-form .custom-option:hover {
  background: #cecece;
}
.order-form .custom-option .prefix {
  font-family: "Eczar", serif;
  font-weight: 700;
  margin-right: 6px;
}
.order-form .custom-option .prefix.affair {
  color: #A71621;
}
.order-form .custom-option .prefix.default {
  color: #1F482E;
}
.order-form .custom-select-toggle .prefix {
  font-family: "Eczar", serif;
  font-weight: 700;
  margin-right: 6px;
}
.order-form .custom-select-toggle .prefix.affair {
  color: #A71621;
}
.order-form .custom-select-toggle .prefix.default {
  color: #1F482E;
}

.main-footer {
  background-color: #1F482E;
  padding: 40px 0;
  color: #F1EDE2;
}
.main-footer .footer-logo {
  width: 300px;
  height: auto;
  margin-right: 15px;
  vertical-align: middle;
}
@media screen and (max-width: 991px) {
  .main-footer .footer-logo {
    width: 122px;
    margin: 0 0 30px 0;
  }
}
.main-footer .footer-info {
  font-family: "Eczar", serif;
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.8em;
  margin: 0;
}
.main-footer .footer-info span {
  display: block;
}
@media screen and (max-width: 991px) {
  .main-footer .footer-info span {
    display: inline;
  }
}
.main-footer .footer-info a {
  color: #F1EDE2;
  text-transform: uppercase;
  text-decoration: none;
}

@media (max-width: 768px) {
  .main-header .brand-section .brand-title {
    font-size: 28px;
  }
  .main-header .navbar .navbar-nav {
    gap: 20px;
  }
  .main-header .navbar .navbar-nav .nav-link {
    font-size: 14px;
  }
  .chapter-card .chapter-bottle {
    width: 150px;
  }
  .chapter-card .chapter-title {
    font-size: 24px;
  }
  .main-footer {
    text-align: center;
  }
  .main-footer .footer-brand {
    display: block;
    margin-top: 10px;
  }
}/*# sourceMappingURL=style.css.map */