* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

a {
  transition: 0.5s;
  text-decoration: none;
}

ul {
  padding-left: 40px;
}
ul li {
  font-family: "Public Sans", sans-serif;
  font-size: 1rem;
  font-weight: 400;
}

button {
  font-family: "Public Sans", sans-serif;
  font-size: 1rem;
}

input, textarea {
  color: #888;
}
input::placeholder, textarea::placeholder {
  font-size: 1rem;
  color: #888;
  font-family: "Public Sans", sans-serif;
  font-weight: 400;
}
input:focus, textarea:focus {
  outline: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 400;
  font-family: "komu-new-d", serif;
  line-height: 1;
}

body {
  font-weight: 400;
  line-height: 1.2;
  font-size: 16px;
  font-family: "Public Sans", sans-serif;
  background-color: #fff;
  color: #452600;
  position: relative;
  background-color: #FAF5F0;
}
body.open:before {
  opacity: 1;
  visibility: visible;
}
body:before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: 0.5s;
}

main {
  overflow: hidden;
}

.content-container {
  max-width: 1240px;
  margin: 0 auto;
  width: 100%;
}

.pl-24 {
  padding-left: 24px;
}

.pr-24 {
  padding-right: 24px;
}

form {
  position: relative;
}
form .form-group {
  width: 100%;
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
}
form .form-group:first-child {
  margin-top: 0;
}
form .form-group .wpcf7-spinner {
  position: absolute;
  bottom: 0;
  right: -48px;
}
form .form-group input[type=submit] {
  display: inline-block;
  padding: 12px 32px;
  border-radius: 50px;
  color: #FFF;
  background-color: #452600;
  border: none;
  transition: 0.5s;
  cursor: pointer;
}
form .form-group input[type=submit]:hover, form .form-group input[type=submit]:focus {
  background-color: #76512C;
}
form .form-group .col {
  width: 100%;
}
form .form-group .col input[type=text], form .form-group .col input[type=email], form .form-group .col input[type=tel], form .form-group .col textarea {
  width: 100%;
  color: #452600;
}
form .form-group .col input[type=text]::placeholder, form .form-group .col input[type=email]::placeholder, form .form-group .col input[type=tel]::placeholder, form .form-group .col textarea::placeholder {
  color: #452600;
}
form .form-group .col input[type=text], form .form-group .col input[type=email], form .form-group .col input[type=tel] {
  height: 48px;
  border-radius: 10px;
  border: none;
  background-color: rgba(69, 38, 0, 0.1);
  font-size: 1rem;
  padding: 0 12px;
}
form .form-group .col input[type=text]:placeholder, form .form-group .col input[type=email]:placeholder, form .form-group .col input[type=tel]:placeholder {
  font-size: 1rem;
}
form .form-group .col .wpcf7-form-control-wrap {
  margin-top: 12px;
  display: block;
}
form .form-group .col .wpcf7-form-control-wrap .wpcf7-form-control .wpcf7-list-item {
  margin: 6px 0 0 0;
  width: 100%;
  display: block;
}
form .form-group .col .wpcf7-form-control-wrap .wpcf7-form-control .wpcf7-list-item.first {
  margin-top: 0;
}
form .form-group .col textarea {
  border-radius: 10px;
  border: none;
  background-color: rgba(69, 38, 0, 0.1);
  font-size: 1rem;
  padding: 12px;
  height: 120px;
  width: 100%;
  max-width: 100%;
}
form .form-group.end {
  display: flex;
  justify-content: flex-end;
}
@media (min-width: 768px) {
  form .form-group.half .col {
    width: 50%;
  }
}
@media (min-width: 768px) {
  form .form-group.half .col:first-child {
    padding-right: 6px;
  }
}
form .form-group.half .col:nth-child(2) {
  margin-top: 12px;
}
@media (min-width: 768px) {
  form .form-group.half .col:nth-child(2) {
    margin-top: 0;
    padding-left: 6px;
  }
}

.woocommerce .products .product {
  margin: 0;
}
.woocommerce .products .product .thumbnail-wrapper img {
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
  object-fit: cover;
}
.woocommerce .products .product .info-wrapper {
  margin-top: 24px;
  position: relative;
  z-index: 10;
  padding-bottom: 54px;
}
.woocommerce .products .product .info-wrapper h2 {
  color: #452600;
  font-size: clamp(1rem, 0.7983rem + 0.4202vw, 1.25rem);
}
.woocommerce .products .product .info-wrapper p {
  margin: 12px 0 0 0;
  color: #A8783C;
}
.woocommerce .products .product .info-wrapper .price {
  margin-top: 12px;
  display: block;
}
.woocommerce .products .product .info-wrapper .price span {
  color: #452600;
  font-size: 1rem;
}
.woocommerce .products .product .info-wrapper .order-button {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}
.woocommerce .products .product .info-wrapper .order-button span {
  background-color: transparent;
  border: 1px solid #452600;
  color: #452600;
  font-weight: 600;
  padding: 10px 20px;
  display: inline-block;
  border-radius: 50px;
  cursor: pointer;
  transition: 0.5s;
}
.woocommerce .products .product .info-wrapper .order-button span:hover, .woocommerce .products .product .info-wrapper .order-button span:focus {
  background-color: #452600;
  color: #FFF;
}

.notification {
  background-color: #D7E0FF;
  text-align: center;
  padding: 12px 24px;
}
.notification p {
  color: #452600;
}

.header {
  background-color: #FFF;
}
.header__inner {
  padding-top: 12px;
  padding-bottom: 12px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
@media (min-width: 768px) {
  .header__inner {
    padding-top: 24px;
    padding-bottom: 24px;
  }
}
.header__inner--middle {
  width: 68px;
}
.header__inner--middle img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}
.header__inner--left {
  display: none;
}
@media (min-width: 768px) {
  .header__inner--left {
    display: block;
  }
}
.header__inner--left ul {
  list-style: none;
  padding: 0;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.header__inner--left ul li {
  margin-right: 32px;
  position: relative;
  z-index: 10;
}
.header__inner--left ul li a {
  color: #452600;
  font-weight: 600;
}
.header__inner--left ul li:hover .sub-menu, .header__inner--left ul li:focus .sub-menu {
  display: block;
}
.header__inner--left ul li .sub-menu {
  background-color: #FFF;
  top: 100%;
  left: 0;
  position: absolute;
  z-index: 10;
  padding: 12px 0;
  width: 175px;
  display: none;
}
.header__inner--left ul li .sub-menu li:first-child a {
  padding-top: 0;
}
.header__inner--left ul li .sub-menu li a {
  padding: 12px 12px 0 12px;
  display: block;
}
.header__inner--right {
  width: calc(100% - 68px);
}
@media (min-width: 768px) {
  .header__inner--right .mobile-actions {
    display: none;
  }
}
.header__inner--right .mobile-actions ul li svg {
  width: auto;
  height: 32px;
  vertical-align: middle;
}
.header__inner--right ul {
  list-style: none;
  padding: 0;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.header__inner--right ul.desktop {
  display: none;
}
@media (min-width: 768px) {
  .header__inner--right ul.desktop {
    display: flex;
  }
}
.header__inner--right ul li {
  margin-right: 12px;
}
@media (min-width: 768px) {
  .header__inner--right ul li {
    margin-right: 24px;
  }
}
.header__inner--right ul li a {
  color: #452600;
  font-weight: 600;
}
.header__inner--right ul li:last-child {
  margin-right: 0;
}
@media (min-width: 768px) {
  .header__inner--right ul li:nth-child(2) a {
    display: inline-block;
    padding: 12px 32px;
    border-radius: 50px;
    color: #FFF;
    background-color: #452600;
  }
}
@media (min-width: 768px) {
  .header__inner--left, .header__inner--right {
    width: calc(50% - 34px);
  }
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  max-width: 400px;
  width: 100%;
  background-color: #FFF;
  height: 100%;
  z-index: 10000000;
  overflow: scroll;
  border-top: 10px solid #FFF;
  border-bottom: 10px solid #FFF;
  transition: 0.5s;
  transform: translateX(-400px);
}
.mobile-menu.open {
  transform: translateX(0);
}
@media (min-width: 768px) {
  .mobile-menu {
    display: none;
  }
}
.mobile-menu__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 24px;
  border-bottom: 1px solid #ddd;
}
.mobile-menu__top svg {
  vertical-align: middle;
}
.mobile-menu__top .left img {
  width: 48px;
  height: auto;
}
.mobile-menu__top .right svg {
  width: 24px;
  height: auto;
  fill: #333;
}
.mobile-menu__items {
  border-bottom: 1px solid #ddd;
  padding: 0 24px 24px 24px;
}
.mobile-menu__items ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.mobile-menu__items ul li {
  margin-top: 24px;
}
.mobile-menu__items ul li:last-child a {
  display: inline-block;
  padding: 12px 32px;
  border-radius: 50px;
  color: #FFF;
  background-color: #452600;
}
.mobile-menu__items ul li a {
  color: #333;
  font-size: clamp(1rem, 0.7983rem + 0.4202vw, 1.25rem);
}
.mobile-menu__items ul li.menu-item-has-children > a {
  display: none;
}
@media (min-width: 768px) {
  .mobile-menu__items ul li.menu-item-has-children > a {
    display: block;
  }
}
.mobile-menu__items ul li.current-menu-item a {
  color: #000;
}
.mobile-menu__info {
  padding: 12px 24px;
}
.mobile-menu__info p {
  font-family: "komu-new-d", serif;
  font-size: clamp(1.25rem, 1.0483rem + 0.4202vw, 1.5rem);
  color: #452600;
}
.mobile-menu__info ul {
  margin-top: 6px;
  list-style: none;
  padding: 0;
}
.mobile-menu__info ul li {
  line-height: 2;
  color: #452600;
}
.mobile-menu__info ul li a {
  color: #452600;
}
.mobile-menu__info .socials {
  display: flex;
  flex-wrap: wrap;
  margin-top: 12px;
}
.mobile-menu__info .socials .social {
  margin-right: 6px;
}
.mobile-menu__info .socials .social:last-child {
  margin-right: 0;
}
.mobile-menu__info .socials .social svg {
  height: 20px;
  width: auto;
  vertical-align: middle;
}

.footer {
  margin-top: 124px;
}
.footer__usps {
  background-color: rgba(69, 38, 0, 0.1);
}
.footer__usps--items {
  display: grid;
  max-width: 1180px;
  width: 100%;
  margin: 0 auto;
  padding: 32px 24px;
  grid-template-columns: repeat(1, 1fr);
  column-gap: 24px;
  row-gap: 24px;
}
@media (min-width: 375px) {
  .footer__usps--items {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 768px) {
  .footer__usps--items {
    grid-template-columns: repeat(4, 1fr);
  }
}
.footer__usps--items .item {
  width: 100%;
  display: flex;
  align-items: center;
}
@media (min-width: 768px) {
  .footer__usps--items .item {
    justify-content: center;
  }
}
.footer__usps--items .item .icon {
  margin-right: 16px;
}
.footer__usps--items .item .icon img {
  height: 20px;
  width: auto;
  vertical-align: middle;
}
.footer__usps--items .item .text p {
  font-family: "komu-new-d", serif;
  font-size: clamp(1rem, 0.7983rem + 0.4202vw, 1.25rem);
  color: #452600;
  font-weight: 400;
}
.footer__bottom {
  display: grid;
  max-width: 1180px;
  width: 100%;
  margin: 0 auto;
  padding: 64px 24px 24px 24px;
}
.footer__bottom--columns {
  display: flex;
  flex-wrap: wrap;
}
.footer__bottom--columns .column {
  width: 100%;
  margin-top: 24px;
}
.footer__bottom--columns .column:first-child {
  margin-top: 0;
}
@media (min-width: 768px) {
  .footer__bottom--columns .column:first-child, .footer__bottom--columns .column:nth-child(2), .footer__bottom--columns .column:nth-child(3) {
    width: 20%;
  }
}
@media (min-width: 768px) {
  .footer__bottom--columns .column:nth-child(4) {
    width: 40%;
  }
}
.footer__bottom--columns .column img {
  max-width: 125px;
  width: 100%;
  height: auto;
  vertical-align: bottom;
}
.footer__bottom--columns .column p {
  font-family: "komu-new-d", serif;
  font-size: clamp(1.25rem, 1.0483rem + 0.4202vw, 1.5rem);
  color: #452600;
}
.footer__bottom--columns .column ul {
  margin-top: 6px;
  list-style: none;
  padding: 0;
}
.footer__bottom--columns .column ul li {
  line-height: 2;
  color: #452600;
}
.footer__bottom--columns .column ul li a {
  color: #452600;
}
.footer__bottom--columns .column .socials {
  display: flex;
  flex-wrap: wrap;
  margin-top: 12px;
}
.footer__bottom--columns .column .socials .social {
  margin-right: 6px;
}
.footer__bottom--columns .column .socials .social:last-child {
  margin-right: 0;
}
.footer__bottom--columns .column .socials .social svg {
  height: 20px;
  width: auto;
  vertical-align: middle;
}
.footer__bottom--copyright {
  margin-top: 64px;
  display: flex;
  flex-wrap: wrap;
}
@media (min-width: 768px) {
  .footer__bottom--copyright {
    flex-wrap: nowrap;
    justify-content: space-between;
  }
}
.footer__bottom--copyright p {
  font-size: 0.875rem;
  color: #452600;
}
.footer__bottom--copyright p a {
  color: #452600;
}
.footer__bottom--copyright .left, .footer__bottom--copyright .right {
  width: 100%;
}
@media (min-width: 768px) {
  .footer__bottom--copyright .left, .footer__bottom--copyright .right {
    width: auto;
  }
}
.footer__bottom--copyright .right {
  margin-top: 12px;
}
@media (min-width: 768px) {
  .footer__bottom--copyright .right {
    margin-top: 0;
  }
}
.footer__bottom--copyright ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
}
.footer__bottom--copyright ul li {
  border-right: 1px solid #452600;
  padding-right: 6px;
  margin-right: 6px;
  color: #452600;
  font-size: 0.875rem;
}
.footer__bottom--copyright ul li:last-child {
  margin-right: 0;
  padding-right: 0;
  border: none;
}
.footer__bottom--copyright ul li a {
  color: #452600;
  font-size: 0.875rem;
}

.floating-cart {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 1000;
}
.floating-cart .icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background-color: #452600;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 10;
  cursor: pointer;
}
.floating-cart .icon .count {
  position: absolute;
  top: 12px;
  right: 12px;
  color: #FFF;
  font-size: 0.675rem;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #76512C;
}
.floating-cart .icon svg {
  height: 32px;
  width: auto;
  vertical-align: middle;
}
.floating-cart .icon svg path, .floating-cart .icon svg g {
  fill: #FFF;
}

.window {
  position: fixed;
  top: 0;
  right: 0;
  height: 100%;
  width: 300px;
  transition: 0.5s;
  z-index: 100000;
  transform: translateX(300px);
}
.window.open {
  transform: translateX(0);
}
.window .shopping-cart {
  background-color: #FFF;
  width: 100%;
  border: 1px solid #ddd;
  padding: 0 12px;
  height: 100%;
  position: relative;
  transition: 0.5s;
}
@media (min-width: 400px) {
  .window .shopping-cart {
    padding: 0 24px;
  }
}
.window .shopping-cart:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.6);
  z-index: 100;
  transition: 0.5s;
  opacity: 0;
  visibility: hidden;
}
.window .shopping-cart.loading:before {
  opacity: 1;
  visibility: visible;
}
.window .shopping-cart__inner {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 10;
}
.window .shopping-cart__inner .top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid #e5e5e5;
}
.window .shopping-cart__inner .top-bar .title h3 {
  font-size: clamp(1rem, 0.7983rem + 0.4202vw, 1.25rem);
  font-weight: 500;
  color: #452600;
}
.window .shopping-cart__inner .top-bar .close {
  width: 24px;
  height: 24px;
  border: 1px solid #ddd;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.window .shopping-cart__inner .top-bar .close svg {
  width: 12px;
  height: auto;
  fill: #000;
}
.window .shopping-cart__inner .items {
  max-height: 100vh;
  overflow-y: scroll;
  width: 100%;
  padding-bottom: 145px;
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */
}
.window .shopping-cart__inner .items::-webkit-scrollbar {
  display: none;
}
.window .shopping-cart__inner .items .no-items {
  padding: 12px 0;
}
.window .shopping-cart__inner .items .no-items p {
  font-size: 0.875rem;
}
.window .shopping-cart__inner .items .item {
  display: flex;
  flex-wrap: wrap;
  padding: 12px 0;
  border-bottom: 1px solid #e5e5e5;
}
.window .shopping-cart__inner .items .item .image {
  width: 60px;
}
.window .shopping-cart__inner .items .item .image img {
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
  object-fit: contain;
  vertical-align: bottom;
}
.window .shopping-cart__inner .items .item .remove {
  width: 18px;
  display: flex;
}
@media (min-width: 400px) {
  .window .shopping-cart__inner .items .item .remove {
    align-items: center;
  }
}
.window .shopping-cart__inner .items .item .remove svg {
  width: 18px;
  height: auto;
  cursor: pointer;
  vertical-align: bottom;
}
.window .shopping-cart__inner .items .item .content {
  width: calc(100% - 78px);
  padding: 0 12px;
}
.window .shopping-cart__inner .items .item .content .title a {
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1;
  color: #452600;
}
.window .shopping-cart__inner .items .item .content .info {
  display: flex;
  align-items: center;
  margin-top: 6px;
}
.window .shopping-cart__inner .items .item .content .info .price {
  margin-left: 12px;
  display: block;
  font-size: 0.875rem;
  width: calc(100% - 96px);
  color: #76512C;
  opacity: 0.6;
}
.window .shopping-cart__inner .items .item .content .info .price ins {
  text-decoration: none;
}
.window .shopping-cart__inner .items .item .content .info .number-wrapper {
  width: 96px;
  display: flex;
  flex-wrap: nowrap;
  border: 1px solid #ddd;
  height: 34px;
}
.window .shopping-cart__inner .items .item .content .info .number-wrapper .minus, .window .shopping-cart__inner .items .item .content .info .number-wrapper .plus {
  height: 100%;
  text-align: center;
  width: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(69, 38, 0, 0.1);
  cursor: pointer;
}
.window .shopping-cart__inner .items .item .content .info .number-wrapper .minus svg, .window .shopping-cart__inner .items .item .content .info .number-wrapper .plus svg {
  width: 12px;
}
.window .shopping-cart__inner .items .item .content .info .number-wrapper .minus {
  border-right: 1px solid #e5e5e5;
}
.window .shopping-cart__inner .items .item .content .info .number-wrapper .plus {
  border-left: 1px solid #e5e5e5;
}
.window .shopping-cart__inner .items .item .content .info .number-wrapper .quantity {
  width: 44px;
  float: none;
  height: 100%;
  margin: 0;
}
.window .shopping-cart__inner .items .item .content .info .number-wrapper .quantity input::-webkit-outer-spin-button,
.window .shopping-cart__inner .items .item .content .info .number-wrapper .quantity input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.window .shopping-cart__inner .items .item .content .info .number-wrapper .quantity input {
  width: 100%;
  height: 100%;
  border: none;
  -moz-appearance: textfield;
  font-size: 1rem;
  color: #000;
  text-align: center;
}
.window .shopping-cart__inner .items .item .content .info .number-wrapper .quantity input:focus {
  outline: 0;
}
.window .shopping-cart__inner .bottom-wrapper {
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #FFF;
  width: 100%;
}
.window .shopping-cart__inner .bottom-wrapper .totals {
  padding: 12px 0 0 0;
}
.window .shopping-cart__inner .bottom-wrapper .totals p {
  font-size: 0.875rem;
}
.window .shopping-cart__inner .bottom-wrapper .totals p strong {
  font-size: 1rem;
}
.window .shopping-cart__inner .bottom-wrapper .buttons {
  padding: 0 0 12px 0;
}
.window .shopping-cart__inner .bottom-wrapper .buttons .button {
  margin-top: 12px;
  padding: 0;
}
.window .shopping-cart__inner .bottom-wrapper .buttons .button a {
  background-color: #452600;
  color: #FFF;
  border: 1px solid transparent;
  font-weight: 400;
  transition: 0.5s;
  width: 100%;
  text-align: center;
  font-size: 0.875rem;
  width: 100%;
  display: block;
  padding: 12px 24px;
}
.window .shopping-cart__inner .bottom-wrapper .buttons .button a:hover, .window .shopping-cart__inner .bottom-wrapper .buttons .button a:focus {
  background-color: #76512C;
}

body.page-template-home {
  background-color: #FAF5F0;
}
body.page-template-home .hero {
  min-height: 800px;
  width: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  background-position: center center;
  background-size: cover;
}
body.page-template-home .hero__inner {
  max-width: 1240px;
  margin: 0 auto;
  width: 100%;
  padding: 64px 24px 64px 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
@media (min-width: 768px) {
  body.page-template-home .hero__inner {
    flex-wrap: nowrap;
    padding: 64px 24px 128px 24px;
  }
}
body.page-template-home .hero__inner--right {
  max-width: 378px;
  width: 100%;
  margin-top: 48px;
}
@media (min-width: 768px) {
  body.page-template-home .hero__inner--right {
    padding-left: 48px;
    margin-top: 0;
  }
}
body.page-template-home .hero__inner--right .inner {
  width: 100%;
}
body.page-template-home .hero__inner--right .inner > p {
  color: #FFF;
  text-transform: uppercase;
}
body.page-template-home .hero__inner--right .inner .choices {
  margin-top: 16px;
  background-color: #FFF;
  border-radius: 6px;
  display: flex;
  flex-wrap: wrap;
}
body.page-template-home .hero__inner--right .inner .choices__choice {
  width: 50%;
  position: relative;
}
body.page-template-home .hero__inner--right .inner .choices__choice:first-child:after, body.page-template-home .hero__inner--right .inner .choices__choice:nth-child(3):after {
  content: "";
  width: 1px;
  height: calc(100% - 64px);
  top: 32px;
  right: 0;
  background-color: #76512C;
  position: absolute;
}
body.page-template-home .hero__inner--right .inner .choices__choice:nth-child(3) .choices__choice--inner, body.page-template-home .hero__inner--right .inner .choices__choice:nth-child(4) .choices__choice--inner {
  padding-top: 0;
}
body.page-template-home .hero__inner--right .inner .choices__choice--inner {
  text-align: center;
  padding: 32px 24px;
}
body.page-template-home .hero__inner--right .inner .choices__choice--inner .icon img {
  height: 64px;
  width: auto;
  vertical-align: middle;
}
@media (min-width: 768px) {
  body.page-template-home .hero__inner--right .inner .choices__choice--inner .icon img {
    height: 70px;
  }
}
body.page-template-home .hero__inner--right .inner .choices__choice--inner .text {
  margin: 12px 0 0 0;
}
body.page-template-home .hero__inner--right .inner .choices__choice--inner .text p {
  color: #76512C;
  font-size: 1.125rem;
  font-family: "komu-new-d", serif;
}
body.page-template-home .hero__inner--left {
  max-width: 710px;
  width: 100%;
}
body.page-template-home .hero__inner--left h1 {
  font-size: clamp(3rem, 1.7899rem + 2.521vw, 4.5rem);
  color: #FFF;
  line-height: 1;
  font-weight: 400;
}
body.page-template-home .hero__inner--left p {
  margin: 16px 0 0 0;
  color: #FFF;
  max-width: 575px;
}
body.page-template-home .hero__inner--left .button {
  margin-top: 24px;
}
body.page-template-home .hero__inner--left .button a {
  display: inline-block;
  border-radius: 50px;
  background-color: #FFF;
  color: #452600;
  font-weight: 600;
  padding: 10px 24px 8px 24px;
}
body.page-template-home .countdown {
  display: flex;
  flex-wrap: wrap;
}
body.page-template-home .countdown__left, body.page-template-home .countdown__right {
  width: 100%;
}
@media (min-width: 768px) {
  body.page-template-home .countdown__left, body.page-template-home .countdown__right {
    width: 50%;
  }
}
body.page-template-home .countdown__right {
  background-size: cover;
  background-position: center center;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
}
body.page-template-home .countdown__right--inner {
  padding: 48px 24px;
  max-width: 600px;
  width: 100%;
}
@media (min-width: 768px) {
  body.page-template-home .countdown__right--inner {
    padding: 74px 24px 132px 64px;
  }
}
body.page-template-home .countdown__right--inner p {
  color: #FFF;
}
body.page-template-home .countdown__right--inner .timer {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  text-align: center;
  color: #FFF;
}
body.page-template-home .countdown__right--inner .timer div {
  padding-top: 12px;
  padding-bottom: 12px;
  border-right: 1px solid #A8783C;
  padding-right: 24px;
  margin-right: 24px;
  font-size: clamp(3rem, 2.1933rem + 1.6807vw, 4rem);
}
body.page-template-home .countdown__right--inner .timer div:last-child {
  margin-right: 0;
  padding-right: 0;
  border: none;
}
body.page-template-home .countdown__right--inner .timer span {
  display: block;
  font-size: 1rem;
}
body.page-template-home .countdown__left {
  background-color: #D7E0FF;
}
body.page-template-home .countdown__left--inner {
  padding: 48px 24px;
  max-width: 486px;
  margin: 0 auto;
  width: 100%;
  text-align: center;
}
@media (min-width: 768px) {
  body.page-template-home .countdown__left--inner {
    padding: 74px 24px;
  }
}
body.page-template-home .countdown__left--inner span {
  margin: 24px 0 0 0;
  display: block;
  font-size: clamp(1rem, 0.7983rem + 0.4202vw, 1.25rem);
  color: #76512C;
}
body.page-template-home .countdown__left--inner h1 {
  font-size: clamp(2.5rem, 2.0966rem + 0.8403vw, 3rem);
  margin: 24px 0 0 0;
}
body.page-template-home .countdown__left--inner p {
  margin: 24px 0 0 0;
}
body.page-template-home .countdown__left--inner .button {
  margin: 24px 0 0 0;
}
body.page-template-home .countdown__left--inner .button a {
  display: inline-block;
  padding: 12px 32px;
  border-radius: 50px;
  color: #FFF;
  background-color: #452600;
}
body.page-template-home .usps {
  margin-top: 64px;
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 48px;
  column-gap: 68px;
}
@media (min-width: 768px) {
  body.page-template-home .usps {
    grid-template-columns: 1fr 1fr 1fr;
    margin-top: 124px;
  }
}
body.page-template-home .usps__item {
  width: 100%;
}
body.page-template-home .usps__item .inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
body.page-template-home .usps__item .inner .icon {
  width: 62px;
}
body.page-template-home .usps__item .inner .icon img {
  width: 62px;
  height: auto;
  vertical-align: middle;
}
body.page-template-home .usps__item .inner .content {
  padding-left: 32px;
  width: calc(100% - 62px);
  max-width: 248px;
}
body.page-template-home .usps__item .inner .content h3 {
  line-height: 1;
  font-size: clamp(1.25rem, 1.0483rem + 0.4202vw, 1.5rem);
}
body.page-template-home .usps__item .inner .content h3, body.page-template-home .usps__item .inner .content p {
  color: #452600;
}
body.page-template-home .usps__item .inner .content p {
  margin: 12px 0 0 0;
}
body.page-template-home .coffee {
  margin-top: 64px;
}
@media (min-width: 768px) {
  body.page-template-home .coffee {
    margin-top: 124px;
  }
}
body.page-template-home .coffee__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
@media (min-width: 768px) {
  body.page-template-home .coffee__top {
    flex-wrap: nowrap;
  }
}
body.page-template-home .coffee__top--left {
  width: 100%;
}
@media (min-width: 768px) {
  body.page-template-home .coffee__top--left {
    width: auto;
  }
}
body.page-template-home .coffee__top--left h2 {
  font-size: clamp(2rem, 1.5966rem + 0.8403vw, 2.5rem);
  color: #452600;
}
body.page-template-home .coffee__top--right {
  width: 100%;
  margin-top: 12px;
}
@media (min-width: 768px) {
  body.page-template-home .coffee__top--right {
    width: auto;
    margin-top: 0;
  }
}
body.page-template-home .coffee__top--right .link {
  display: inline-block;
}
body.page-template-home .coffee__top--right .link a {
  color: #452600;
  display: flex;
  align-items: center;
  font-weight: 600;
}
body.page-template-home .coffee__top--right .link a svg {
  margin-left: 12px;
  height: 16px;
  width: auto;
  vertical-align: middle;
}
body.page-template-home .coffee__swiper {
  margin-top: 24px;
}
body.page-template-home .coffee__swiper .swiper-coffee {
  position: relative;
  width: 100%;
  z-index: 10;
  overflow: hidden;
}
body.page-template-home .coffee__swiper .swiper-coffee .swiper-wrapper .swiper-slide {
  height: auto;
}
body.page-template-home .coffee__swiper .swiper-coffee .swiper-wrapper .swiper-slide .inner {
  width: 100%;
  height: 100%;
}
body.page-template-home .coffee__swiper .swiper-coffee .swiper-wrapper .swiper-slide .inner__image {
  width: 100%;
}
body.page-template-home .coffee__swiper .swiper-coffee .swiper-wrapper .swiper-slide .inner__image img {
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
  object-fit: cover;
}
body.page-template-home .coffee__swiper .swiper-coffee .swiper-wrapper .swiper-slide .inner__info {
  margin-top: 24px;
  position: relative;
  z-index: 10;
  padding-bottom: 54px;
}
body.page-template-home .coffee__swiper .swiper-coffee .swiper-wrapper .swiper-slide .inner__info h3 {
  color: #452600;
  font-size: clamp(1rem, 0.7983rem + 0.4202vw, 1.25rem);
}
body.page-template-home .coffee__swiper .swiper-coffee .swiper-wrapper .swiper-slide .inner__info p {
  margin: 12px 0 0 0;
  color: #A8783C;
}
body.page-template-home .coffee__swiper .swiper-coffee .swiper-wrapper .swiper-slide .inner__info .price {
  margin-top: 12px;
}
body.page-template-home .coffee__swiper .swiper-coffee .swiper-wrapper .swiper-slide .inner__info .price span {
  color: #452600;
}
body.page-template-home .coffee__swiper .swiper-coffee .swiper-wrapper .swiper-slide .inner__info .order-button {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}
body.page-template-home .coffee__swiper .swiper-coffee .swiper-wrapper .swiper-slide .inner__info .order-button button {
  background-color: transparent;
  border: 1px solid #452600;
  color: #452600;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 50px;
  cursor: pointer;
  transition: 0.5s;
}
body.page-template-home .coffee__swiper .swiper-coffee .swiper-wrapper .swiper-slide .inner__info .order-button button:hover, body.page-template-home .coffee__swiper .swiper-coffee .swiper-wrapper .swiper-slide .inner__info .order-button button:focus {
  background-color: #452600;
  color: #FFF;
}
body.page-template-home .newsletter {
  margin-top: 124px;
}
body.page-template-home .newsletter__inner {
  background-color: #452600;
  padding: 64px 24px;
  border-radius: 20px;
}
body.page-template-home .newsletter__inner--content {
  max-width: 954px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
body.page-template-home .newsletter__inner--content .left {
  width: 100%;
}
@media (min-width: 768px) {
  body.page-template-home .newsletter__inner--content .left {
    width: 378px;
  }
}
body.page-template-home .newsletter__inner--content .left p {
  color: #FFF;
}
body.page-template-home .newsletter__inner--content .left p span {
  color: #D7E0FF;
}
body.page-template-home .newsletter__inner--content .left h2 {
  color: #FFF;
  font-size: clamp(2rem, 1.5966rem + 0.8403vw, 2.5rem);
  margin: 6px 0;
}
body.page-template-home .newsletter__inner--content .right {
  width: 100%;
}
@media (min-width: 768px) {
  body.page-template-home .newsletter__inner--content .right {
    width: calc(100% - 378px);
    padding-left: 89px;
  }
}
body.page-template-home .newsletter__inner--content .right p {
  color: #FFF;
  font-size: 0.875rem;
}
body.page-template-home .newsletter__inner--content .right form {
  margin-top: 16px;
}
body.page-template-home .newsletter__inner--content .right form .form-group {
  display: flex;
  flex-wrap: wrap;
}
body.page-template-home .newsletter__inner--content .right form .form-group .input {
  width: calc(100% - 120px);
  padding-right: 12px;
}
body.page-template-home .newsletter__inner--content .right form .form-group .input input {
  height: 40px;
  width: 100%;
  border-radius: 50px;
  border: none;
  background-color: rgba(255, 255, 255, 0.2);
  color: #FFF;
  padding: 0 24px;
  font-size: 0.875rem;
}
body.page-template-home .newsletter__inner--content .right form .form-group .input input::placeholder {
  font-size: 0.875rem;
  color: #FFF;
}
body.page-template-home .newsletter__inner--content .right form .form-group .send {
  width: 120px;
}
body.page-template-home .newsletter__inner--content .right form .form-group .send button {
  background-color: #D7E0FF;
  color: #150F07;
  border: none;
  height: 40px;
  border-radius: 50px;
  width: 100%;
  font-weight: 600;
}
body.page-template-home .whitelabel {
  margin-top: 124px;
  background-color: #452600;
}
body.page-template-home .whitelabel__inner {
  max-width: 560px;
  margin: 0 auto;
  width: 100%;
  padding: 124px 24px;
}
body.page-template-home .whitelabel__inner--top {
  text-align: center;
}
body.page-template-home .whitelabel__inner--top p {
  color: #FFF;
  font-weight: 300;
  font-size: clamp(1rem, 0.7983rem + 0.4202vw, 1.25rem);
}
body.page-template-home .whitelabel__inner--top p span {
  font-size: 1rem;
  font-weight: 400;
  color: #D7E0FF;
}
body.page-template-home .whitelabel__inner--top h2 {
  font-size: clamp(2.5rem, 1.6933rem + 1.6807vw, 3.5rem);
  color: #FFF;
  margin: 12px 0;
}
body.page-template-home .whitelabel__inner--swiper {
  position: relative;
  z-index: 10;
  max-width: 215px;
  margin: 64px auto 0 auto;
}
body.page-template-home .whitelabel__inner--swiper .swiper-left, body.page-template-home .whitelabel__inner--swiper .swiper-right {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background-color: #FFF;
  border-radius: 50%;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
body.page-template-home .whitelabel__inner--swiper .swiper-left svg, body.page-template-home .whitelabel__inner--swiper .swiper-right svg {
  width: 20px;
  height: auto;
  vertical-align: middle;
}
body.page-template-home .whitelabel__inner--swiper .swiper-left {
  left: -24px;
}
@media (min-width: 768px) {
  body.page-template-home .whitelabel__inner--swiper .swiper-left {
    left: -88px;
  }
}
body.page-template-home .whitelabel__inner--swiper .swiper-right {
  right: -24px;
}
@media (min-width: 768px) {
  body.page-template-home .whitelabel__inner--swiper .swiper-right {
    right: -88px;
  }
}
body.page-template-home .whitelabel__inner--swiper .cta-text {
  align-items: center;
  display: flex;
  z-index: 100;
  position: relative;
  margin-bottom: -24px;
  margin-left: -24px;
}
@media (min-width: 768px) {
  body.page-template-home .whitelabel__inner--swiper .cta-text {
    position: absolute;
    top: 48px;
    margin-bottom: 0;
    margin-left: 0;
    left: -100%;
  }
}
body.page-template-home .whitelabel__inner--swiper .cta-text p {
  color: #FFF;
  font-style: italic;
  font-weight: 600;
  width: 100px;
  text-align: center;
  margin-right: 12px;
  font-size: 0.875rem;
}
@media (min-width: 768px) {
  body.page-template-home .whitelabel__inner--swiper .cta-text p {
    font-size: 1rem;
    width: 167px;
  }
}
body.page-template-home .whitelabel__inner--swiper .cta-text svg {
  vertical-align: middle;
  width: 93px;
  height: auto;
}
body.page-template-home .whitelabel__inner--swiper .content {
  width: 100%;
  margin-top: 24px;
  text-align: center;
}
@media (min-width: 768px) {
  body.page-template-home .whitelabel__inner--swiper .content {
    text-align: left;
    margin-top: 0;
    position: absolute;
    right: -368px;
    bottom: 0;
    width: 320px;
  }
}
body.page-template-home .whitelabel__inner--swiper .content p {
  color: #FFF;
  margin: 12px 0 0 0;
  font-weight: 300;
  font-style: italic;
}
body.page-template-home .whitelabel__inner--swiper .content p:first-child {
  margin-top: 0;
}
body.page-template-home .whitelabel__inner--swiper .swiper-wrap {
  max-width: 215px;
  margin: 0 auto;
  width: 100%;
  position: relative;
}
body.page-template-home .whitelabel__inner--swiper .swiper-whitelabel {
  overflow: hidden;
  width: 100%;
  position: relative;
}
body.page-template-home .whitelabel__inner--swiper .swiper-whitelabel .swiper-wrapper .swiper-slide img {
  width: 215px;
  height: auto;
  vertical-align: bottom;
}
body.page-template-home .whitelabel__inner--info {
  margin-top: 48px;
  text-align: center;
}
body.page-template-home .whitelabel__inner--info .button {
  display: inline-block;
}
body.page-template-home .whitelabel__inner--info .button a {
  display: inline-block;
  border-radius: 50px;
  background-color: #FFF;
  color: #452600;
  font-weight: 600;
  padding: 10px 24px 8px 24px;
}
body.page-template-home .reviews {
  margin-top: 124px;
}
body.page-template-home .reviews h2 {
  text-align: center;
  font-size: clamp(2rem, 1.5966rem + 0.8403vw, 2.5rem);
  color: #452600;
}
body.page-template-home .reviews__items {
  margin-top: 64px;
}
body.page-template-home .reviews__items .swiper-reviews .swiper-wrapper .swiper-slide {
  width: 80%;
}
@media (min-width: 768px) {
  body.page-template-home .reviews__items .swiper-reviews .swiper-wrapper .swiper-slide {
    width: 530px;
  }
}
body.page-template-home .reviews__items .swiper-reviews .swiper-wrapper .swiper-slide .inner {
  background-color: rgba(69, 38, 0, 0.1);
  border-radius: 5px;
  padding: 32px 24px;
}
@media (min-width: 768px) {
  body.page-template-home .reviews__items .swiper-reviews .swiper-wrapper .swiper-slide .inner {
    padding: 32px 30px;
  }
}
body.page-template-home .reviews__items .swiper-reviews .swiper-wrapper .swiper-slide .inner .icon {
  text-align: center;
}
body.page-template-home .reviews__items .swiper-reviews .swiper-wrapper .swiper-slide .inner .icon .block {
  margin: 0 auto;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
}
body.page-template-home .reviews__items .swiper-reviews .swiper-wrapper .swiper-slide .inner .icon .block svg {
  width: 24px;
  height: auto;
  vertical-align: middle;
}
body.page-template-home .reviews__items .swiper-reviews .swiper-wrapper .swiper-slide .inner .text {
  text-align: center;
  margin-top: 40px;
}
body.page-template-home .reviews__items .swiper-reviews .swiper-wrapper .swiper-slide .inner .text p {
  color: #452600;
  font-weight: 300;
}
body.page-template-home .reviews__items .swiper-reviews .swiper-wrapper .swiper-slide .inner .info {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}
body.page-template-home .reviews__items .swiper-reviews .swiper-wrapper .swiper-slide .inner .info img {
  width: 40px;
  height: 40px;
  border-radius: 5px;
  object-fit: cover;
  vertical-align: bottom;
  object-position: center center;
}
body.page-template-home .reviews__items .swiper-reviews .swiper-wrapper .swiper-slide .inner .info__name {
  margin-left: 12px;
}
body.page-template-home .reviews__items .swiper-reviews .swiper-wrapper .swiper-slide .inner .info__name p {
  font-size: 1rem;
  color: #452600;
}
body.page-template-home .reviews__items .swiper-reviews .swiper-wrapper .swiper-slide .inner .info__name span {
  color: #76512C;
  font-size: 0.875rem;
  opacity: 0.6;
}
body.page-template-home .reviews__items .reviews-controls {
  display: flex;
  margin-top: 24px;
  justify-content: center;
}
body.page-template-home .reviews__items .reviews-controls .reviews-left {
  margin-right: 4px;
}
body.page-template-home .reviews__items .reviews-controls .reviews-left, body.page-template-home .reviews__items .reviews-controls .reviews-right {
  width: 32px;
  height: 32px;
  background-color: #452600;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  cursor: pointer;
}
body.page-template-home .reviews__items .reviews-controls .reviews-left svg, body.page-template-home .reviews__items .reviews-controls .reviews-right svg {
  width: 20px;
  height: auto;
  vertical-align: middle;
}

body.single-product .wrapper__inner--breadcrumbs {
  margin-top: 24px;
}
body.single-product .wrapper__inner--breadcrumbs nav {
  margin: 0;
  color: #452600;
  font-weight: 600;
}
body.single-product .wrapper__inner--breadcrumbs nav a {
  font-weight: 400;
}
body.single-product .wrapper__inner--content {
  margin-top: 24px;
}
body.single-product .wrapper__inner--content .inner > .product .product-wrapper .woocommerce-product-gallery {
  margin: 0;
}
body.single-product .wrapper__inner--content .inner > .product .product-wrapper .woocommerce-product-gallery__wrapper .woocommerce-product-gallery__image:nth-child(n+2) {
  display: none;
}
body.single-product .wrapper__inner--content .inner > .product .product-wrapper .summary {
  margin: 0;
}
body.single-product .wrapper__inner--content .inner > .product .product-wrapper .summary .summary-wrapper h1 {
  color: #452600;
}
body.single-product .wrapper__inner--content .inner > .product .product-wrapper .summary .summary-wrapper .price {
  margin: 12px 0 0 0;
  color: #76512C;
  opacity: 0.6;
  font-size: 1rem;
  font-weight: 500;
}
body.single-product .wrapper__inner--content .inner > .product .product-wrapper .summary .summary-wrapper .options .info-option {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
body.single-product .wrapper__inner--content .inner > .product .product-wrapper .summary .summary-wrapper .options .info-option:first-child {
  margin-top: 12px;
}
body.single-product .wrapper__inner--content .inner > .product .product-wrapper .summary .summary-wrapper .options .info-option .text {
  width: 100px;
}
body.single-product .wrapper__inner--content .inner > .product .product-wrapper .summary .summary-wrapper .options .info-option .text p {
  color: #452600;
}
body.single-product .wrapper__inner--content .inner > .product .product-wrapper .summary .summary-wrapper .options .info-option .beans {
  width: calc(100% - 100px);
  display: flex;
}
body.single-product .wrapper__inner--content .inner > .product .product-wrapper .summary .summary-wrapper .options .info-option .beans .bean svg {
  width: 24px;
  height: auto;
  vertical-align: middle;
}
body.single-product .wrapper__inner--content .inner > .product .product-wrapper .summary .summary-wrapper .options .info-option .beans .bean svg path, body.single-product .wrapper__inner--content .inner > .product .product-wrapper .summary .summary-wrapper .options .info-option .beans .bean svg g {
  fill: #452600;
}
body.single-product .wrapper__inner--content .inner > .product .product-wrapper .summary .summary-wrapper .description-box {
  margin-top: 12px;
}
body.single-product .wrapper__inner--content .inner > .product .product-wrapper .summary .summary-wrapper .description-box p {
  color: #452600;
  line-height: 1.7;
}
body.single-product .wrapper__inner--content .inner > .product .product-wrapper .summary .summary-wrapper .description-box p a {
  color: #452600;
  font-weight: 600;
}
body.single-product .wrapper__inner--content .inner > .product .product-wrapper .summary .summary-wrapper .product_meta {
  margin-top: 12px;
}
body.single-product .wrapper__inner--content .inner > .product .product-wrapper .summary .summary-wrapper .product_meta .sku_wrapper {
  font-size: 0.875rem;
  color: #452600;
}
body.single-product .wrapper__inner--content .inner > .product .product-wrapper .summary .summary-wrapper .product_meta .posted_in {
  display: none;
}
body.single-product .wrapper__inner--content .inner > .product .product-wrapper .summary .summary-wrapper .table-group {
  margin-top: 24px;
}
body.single-product .wrapper__inner--content .inner > .product .product-wrapper .summary .summary-wrapper .table-group h3 {
  font-size: clamp(1.25rem, 1.0483rem + 0.4202vw, 1.5rem);
}
body.single-product .wrapper__inner--content .inner > .product .product-wrapper .summary .summary-wrapper .table-group .responsive-table {
  overflow: scroll;
  margin-top: 12px;
}
body.single-product .wrapper__inner--content .inner > .product .product-wrapper .summary .summary-wrapper .table-group .responsive-table table {
  border-collapse: collapse;
  font-size: 0.9em;
  font-family: sans-serif;
  min-width: 400px;
}
body.single-product .wrapper__inner--content .inner > .product .product-wrapper .summary .summary-wrapper .table-group .responsive-table table thead tr {
  background-color: #452600;
  color: #ffffff;
  text-align: left;
}
body.single-product .wrapper__inner--content .inner > .product .product-wrapper .summary .summary-wrapper .table-group .responsive-table table th, body.single-product .wrapper__inner--content .inner > .product .product-wrapper .summary .summary-wrapper .table-group .responsive-table table td {
  padding: 12px 15px;
  font-weight: 400;
}
body.single-product .wrapper__inner--content .inner > .product .product-wrapper .summary .summary-wrapper .table-group .responsive-table table tbody tr {
  border-bottom: 1px solid #dddddd;
}
body.single-product .wrapper__inner--content .inner > .product .product-wrapper .summary .summary-wrapper .table-group .responsive-table table tbody tr:nth-of-type(even) {
  background-color: #76512C;
}
body.single-product .wrapper__inner--content .inner > .product .product-wrapper .summary .summary-wrapper .table-group .responsive-table table tbody tr:nth-of-type(even) td {
  color: #FFF;
}
body.single-product .wrapper__inner--content .inner > .product .product-wrapper .summary .summary-wrapper .table-group .responsive-table table tbody tr:last-of-type {
  border-bottom: 1px solid #452600;
}
body.single-product .wrapper__inner--content .inner > .product .product-wrapper .summary .summary-wrapper form.cart {
  margin: 0;
}
body.single-product .wrapper__inner--content .inner > .product .product-wrapper .summary .summary-wrapper form.cart table tbody tr {
  width: 100%;
  display: block;
  margin-top: 12px;
}
body.single-product .wrapper__inner--content .inner > .product .product-wrapper .summary .summary-wrapper form.cart table tbody tr th.label {
  display: none;
}
body.single-product .wrapper__inner--content .inner > .product .product-wrapper .summary .summary-wrapper form.cart table tbody tr td.value ul {
  padding: 0;
  list-style: none;
  display: flex;
}
body.single-product .wrapper__inner--content .inner > .product .product-wrapper .summary .summary-wrapper form.cart table tbody tr td.value ul li {
  margin: 0;
  margin-right: 6px;
  position: relative;
  background: #452600;
}
body.single-product .wrapper__inner--content .inner > .product .product-wrapper .summary .summary-wrapper form.cart table tbody tr td.value ul li.disabled .variable-item-contents .variable-item-span:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.8);
}
body.single-product .wrapper__inner--content .inner > .product .product-wrapper .summary .summary-wrapper form.cart table tbody tr td.value ul li.selected {
  background: #76512C;
}
body.single-product .wrapper__inner--content .inner > .product .product-wrapper .summary .summary-wrapper form.cart table tbody tr td.value ul li .variable-item-contents {
  cursor: pointer;
}
body.single-product .wrapper__inner--content .inner > .product .product-wrapper .summary .summary-wrapper form.cart table tbody tr td.value ul li .variable-item-contents .variable-item-span {
  width: auto;
  height: 32px;
  display: block;
  font-size: 0.875rem;
  text-align: center;
  border-radius: 4px;
  color: #FFF;
}
body.single-product .wrapper__inner--content .inner > .product .product-wrapper .summary .summary-wrapper form.cart .reset_variations {
  display: none !important;
}
body.single-product .wrapper__inner--content .inner > .product .product-wrapper .summary .summary-wrapper .single_variation_wrap .woocommerce-variation-add-to-cart {
  margin-top: 12px;
}
body.single-product .wrapper__inner--content .inner > .product .product-wrapper .summary .summary-wrapper .single_variation_wrap .woocommerce-variation-add-to-cart .quantity {
  width: 100%;
  display: block;
}
body.single-product .wrapper__inner--content .inner > .product .product-wrapper .summary .summary-wrapper .single_variation_wrap .woocommerce-variation-add-to-cart .quantity input {
  width: 48px;
  height: 48px;
  font-size: 1rem;
  color: #452600;
}
body.single-product .wrapper__inner--content .inner > .product .product-wrapper .summary .summary-wrapper .single_variation_wrap .woocommerce-variation-add-to-cart button {
  margin-top: 12px;
  height: 48px;
  background: #452600;
}

body.archive .wrapper__inner {
  display: flex;
  flex-wrap: wrap;
  padding: 0 24px 24px 24px;
  align-items: flex-start;
}
body.archive .wrapper__inner--breadcrumbs {
  margin-top: 24px;
  margin-bottom: 6px;
  width: 100%;
}
body.archive .wrapper__inner .open-filter {
  position: fixed;
  bottom: 24px;
  left: 0;
  background-color: #452600;
  width: 48px;
  height: 48px;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 1024px) {
  body.archive .wrapper__inner .open-filter {
    display: none;
  }
}
body.archive .wrapper__inner .open-filter svg {
  width: 24px;
  height: auto;
  vertical-align: bottom;
  fill: #FFF;
}
body.archive .wrapper__inner--sidebar {
  width: 225px;
}
@media (max-width: 1023px) {
  body.archive .wrapper__inner--sidebar {
    position: fixed;
    padding: 24px;
    border: none;
    z-index: 100000;
    overflow-y: scroll;
    top: 0;
    left: 0;
    height: 100%;
    transform: translateX(-225px);
    transition: 0.5s;
    background-color: #FFF;
  }
}
body.archive .wrapper__inner--sidebar.open {
  transform: translateX(0);
}
body.archive .wrapper__inner--sidebar .inner .close-filter {
  margin-top: 24px;
}
@media (min-width: 1024px) {
  body.archive .wrapper__inner--sidebar .inner .close-filter {
    display: none;
  }
}
body.archive .wrapper__inner--sidebar .inner .close-filter span {
  display: inline-block;
  width: 100%;
  padding: 12px 24px;
  text-align: center;
  background-color: #452600;
  color: #FFF;
  font-weight: 400;
  font-size: 0.875rem;
}
body.archive .wrapper__inner--sidebar .inner h3 {
  font-size: clamp(1.75rem, 1.5483rem + 0.4202vw, 2rem);
  color: #452600;
  font-weight: 400;
  margin: 0;
}
body.archive .wrapper__inner--sidebar .inner .group {
  margin-top: 24px;
}
body.archive .wrapper__inner--sidebar .inner .group .facet-label {
  color: #452600;
  font-weight: 500;
  margin: 0 0 12px 0;
  font-size: clamp(1rem, 0.7983rem + 0.4202vw, 1.25rem);
}
body.archive .wrapper__inner--sidebar .inner .group .facetwp-facet {
  margin-bottom: 0;
}
body.archive .wrapper__inner--sidebar .inner .group .facetwp-facet .facetwp-checkbox {
  background: none;
  position: relative;
  z-index: 10;
  padding: 0;
  margin-bottom: 12px;
}
body.archive .wrapper__inner--sidebar .inner .group .facetwp-facet .facetwp-checkbox.checked .facetwp-display-value svg path, body.archive .wrapper__inner--sidebar .inner .group .facetwp-facet .facetwp-checkbox.checked .facetwp-display-value svg g {
  fill: #76512C;
}
body.archive .wrapper__inner--sidebar .inner .group .facetwp-facet .facetwp-checkbox .facetwp-display-value {
  display: flex;
}
body.archive .wrapper__inner--sidebar .inner .group .facetwp-facet .facetwp-checkbox .facetwp-display-value svg {
  height: 24px;
  width: auto;
  vertical-align: middle;
}
body.archive .wrapper__inner--sidebar .inner .group .facetwp-facet .facetwp-checkbox .facetwp-display-value svg path, body.archive .wrapper__inner--sidebar .inner .group .facetwp-facet .facetwp-checkbox .facetwp-display-value svg g {
  fill: #452600;
}
body.archive .wrapper__inner--sidebar .inner .group .facetwp-facet .facetwp-checkbox .facetwp-counter {
  display: none;
}
body.archive .wrapper__inner--sidebar .inner .group .facetwp-facet .facetwp-slider {
  background-color: #452600;
  border: none;
  height: 4px;
}
body.archive .wrapper__inner--sidebar .inner .group .facetwp-facet .facetwp-slider .noUi-base .noUi-connects .noUi-connect {
  background-color: #452600;
}
body.archive .wrapper__inner--sidebar .inner .group .facetwp-facet .facetwp-slider .noUi-base .noUi-origin .noUi-handle {
  width: 20px;
  top: -8px;
  height: 20px;
  background-color: #452600;
  border-radius: 50%;
  border: 1px solid #FFF;
}
body.archive .wrapper__inner--sidebar .inner .group .facetwp-facet .facetwp-slider-reset {
  display: none;
}
body.archive .wrapper__inner--content {
  width: 100%;
}
@media (min-width: 1024px) {
  body.archive .wrapper__inner--content {
    width: calc(100% - 225px);
    padding-left: 48px;
  }
}
body.archive .wrapper__inner--content h1 {
  color: #452600;
  font-size: clamp(1.75rem, 1.5483rem + 0.4202vw, 2rem);
}
body.archive .wrapper__inner--content .products {
  border-top: 1px solid #452600;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  row-gap: 12px;
  column-gap: 12px;
  padding-top: 24px;
  width: 100%;
  margin-top: 24px;
}
@media (min-width: 375px) {
  body.archive .wrapper__inner--content .products {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 768px) {
  body.archive .wrapper__inner--content .products {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 1024px) {
  body.archive .wrapper__inner--content .products {
    grid-template-columns: repeat(4, 1fr);
  }
}
body.archive .wrapper__inner--content .products .product {
  width: 100%;
}

body.woocommerce-checkout .content__breadcrumbs {
  margin-top: 24px;
}
body.woocommerce-checkout .content__breadcrumbs nav {
  margin: 0;
  color: #452600;
  font-weight: 600;
  font-size: 0.92em;
}
body.woocommerce-checkout .content__breadcrumbs nav a {
  font-weight: 400;
  font-size: 0.92rem;
  color: #767676;
}
body.woocommerce-checkout .woocommerce .woocommerce-form-coupon-toggle {
  height: 0;
  opacity: 0;
  visibility: hidden;
}
body.woocommerce-checkout .woocommerce .checkout {
  width: 100%;
  display: grid;
  padding: 24px 0 0 0;
  display: flex;
  flex-wrap: wrap;
}
body.woocommerce-checkout .woocommerce .checkout__right {
  border: 1px solid #452600;
}
body.woocommerce-checkout .woocommerce .checkout__left {
  width: 100%;
  order: 2;
}
@media (min-width: 1024px) {
  body.woocommerce-checkout .woocommerce .checkout__left {
    width: 70%;
    order: 1;
  }
}
body.woocommerce-checkout .woocommerce .checkout__left .col2-set .col-1, body.woocommerce-checkout .woocommerce .checkout__left .col2-set .col-2 {
  width: 100%;
}
body.woocommerce-checkout .woocommerce .checkout__left .col2-set .col-1 h3, body.woocommerce-checkout .woocommerce .checkout__left .col2-set .col-2 h3 {
  font-size: clamp(1.25rem, 1.0483rem + 0.4202vw, 1.5rem);
  color: #452600;
}
body.woocommerce-checkout .woocommerce .checkout__left .col2-set .col-2 h3 {
  font-weight: 400;
  font-size: clamp(1rem, 0.7983rem + 0.4202vw, 1.25rem);
  display: none;
}
body.woocommerce-checkout .woocommerce .checkout__left .delivery {
  margin-top: 20px;
  font-weight: 700;
}
body.woocommerce-checkout .woocommerce .checkout__left .delivery #shipping_method li {
  display: flex;
  align-items: center;
  margin: 12px 0 0 0;
}
body.woocommerce-checkout .woocommerce .checkout__left .delivery #shipping_method li input {
  width: 15px;
  margin-top: 0;
  height: 15px;
}
body.woocommerce-checkout .woocommerce .checkout__left .payment-title {
  margin-top: 24px;
}
body.woocommerce-checkout .woocommerce .checkout__left #payment {
  margin-top: 8px;
  background-color: transparent;
  border-radius: 0;
}
body.woocommerce-checkout .woocommerce .checkout__left #payment ul.wc_payment_methods {
  border: none;
  padding: 0;
}
body.woocommerce-checkout .woocommerce .checkout__left #payment ul.wc_payment_methods li.wc_payment_method .payment_box {
  background-color: #452600;
}
body.woocommerce-checkout .woocommerce .checkout__left #payment ul.wc_payment_methods li.wc_payment_method .payment_box:before {
  border: 1em solid #452600;
  border-right-color: transparent;
  border-left-color: transparent;
  border-top-color: transparent;
}
body.woocommerce-checkout .woocommerce .checkout__left #payment ul.wc_payment_methods li.wc_payment_method .payment_box p {
  color: #FFF;
  margin-bottom: 10px;
}
body.woocommerce-checkout .woocommerce .checkout__left #payment .place-order {
  padding: 0;
  margin: 0;
}
body.woocommerce-checkout .woocommerce .checkout__left #payment .place-order p {
  line-height: 1.5;
  margin-top: 12px;
}
body.woocommerce-checkout .woocommerce .checkout__left #payment .place-order p a {
  color: #452600;
}
body.woocommerce-checkout .woocommerce .checkout__left #payment .place-order button {
  display: inline-block;
  background-color: #452600;
  color: #FFF;
  font-size: 18px;
  padding: 10px 25px;
  text-align: center;
  border-radius: 2px;
  float: left !important;
  margin-top: 12px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  width: 100%;
}
@media (min-width: 768px) {
  body.woocommerce-checkout .woocommerce .checkout__left #payment .place-order button {
    width: auto;
  }
}
body.woocommerce-checkout .woocommerce .checkout__right {
  width: 100%;
  height: 100%;
  order: 1;
  margin-bottom: 24px;
}
@media (min-width: 1024px) {
  body.woocommerce-checkout .woocommerce .checkout__right {
    margin-bottom: 0;
    order: 2;
    width: calc(30% - 24px);
    margin-left: 24px;
    position: sticky;
    top: 24px;
    right: 0;
  }
}
body.woocommerce-checkout .woocommerce .checkout__right .dropdown-item {
  border-bottom: 1px solid #452600;
  width: 100%;
}
body.woocommerce-checkout .woocommerce .checkout__right .dropdown-item.open .dropdown {
  display: block;
}
body.woocommerce-checkout .woocommerce .checkout__right .dropdown-item .title {
  cursor: pointer;
  padding: 24px;
}
body.woocommerce-checkout .woocommerce .checkout__right .dropdown-item .title h3 {
  font-size: clamp(1rem, 0.7983rem + 0.4202vw, 1.25rem);
  font-weight: 400;
  color: #452600;
}
body.woocommerce-checkout .woocommerce .checkout__right .dropdown-item .dropdown .product-item {
  display: flex;
  flex-wrap: wrap;
  padding: 12px 24px;
}
body.woocommerce-checkout .woocommerce .checkout__right .dropdown-item .dropdown .product-item:first-child {
  padding-top: 0;
}
body.woocommerce-checkout .woocommerce .checkout__right .dropdown-item .dropdown .product-item:last-child {
  padding-bottom: 24px;
}
body.woocommerce-checkout .woocommerce .checkout__right .dropdown-item .dropdown .product-item__image {
  width: 25%;
  padding-right: 12px;
  position: relative;
  z-index: 10;
}
body.woocommerce-checkout .woocommerce .checkout__right .dropdown-item .dropdown .product-item__image img {
  width: 100%;
  height: auto;
  margin: 0;
  max-width: 150px;
  aspect-ratio: 1/1;
  vertical-align: bottom;
}
body.woocommerce-checkout .woocommerce .checkout__right .dropdown-item .dropdown .product-item__image .quantity {
  background-color: #452600;
  color: #FFF;
  width: 20px;
  height: 20px;
  font-size: 0.875rem;
  position: absolute;
  left: -10px;
  top: -10px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
body.woocommerce-checkout .woocommerce .checkout__right .dropdown-item .dropdown .product-item__info {
  width: 50%;
}
body.woocommerce-checkout .woocommerce .checkout__right .dropdown-item .dropdown .product-item__info p {
  font-size: 0.875rem;
}
body.woocommerce-checkout .woocommerce .checkout__right .dropdown-item .dropdown .product-item__info p.price {
  margin-top: 8px;
}
body.woocommerce-checkout .woocommerce .checkout__right .dropdown-item .dropdown .product-item__info p.preorder {
  color: #F35046;
  font-weight: 700;
}
body.woocommerce-checkout .woocommerce .checkout__right .dropdown-item .dropdown .product-item__info p.marge {
  font-weight: 700;
  color: #F35046;
}
body.woocommerce-checkout .woocommerce .checkout__right .dropdown-item .dropdown .product-item__total {
  padding-left: 12px;
  text-align: right;
  width: 25%;
}
body.woocommerce-checkout .woocommerce .checkout__right .dropdown-item .dropdown .product-item__total p {
  font-weight: 700;
  font-size: 0.875rem;
}
body.woocommerce-checkout .woocommerce .checkout__right .dropdown-item .dropdown .coupon-form {
  padding: 0 24px 24px 24px;
  display: grid;
  grid-template-columns: 1fr;
}
@media (min-width: 1200px) {
  body.woocommerce-checkout .woocommerce .checkout__right .dropdown-item .dropdown .coupon-form {
    grid-template-columns: 60% 40%;
  }
}
body.woocommerce-checkout .woocommerce .checkout__right .dropdown-item .dropdown .coupon-form .form-group {
  width: 100%;
  margin-top: 0;
}
body.woocommerce-checkout .woocommerce .checkout__right .dropdown-item .dropdown .coupon-form .form-group input, body.woocommerce-checkout .woocommerce .checkout__right .dropdown-item .dropdown .coupon-form .form-group button {
  width: 100%;
  height: 48px;
}
body.woocommerce-checkout .woocommerce .checkout__right .dropdown-item .dropdown .coupon-form .form-group input:focus, body.woocommerce-checkout .woocommerce .checkout__right .dropdown-item .dropdown .coupon-form .form-group button:focus {
  outline: 0;
}
body.woocommerce-checkout .woocommerce .checkout__right .dropdown-item .dropdown .coupon-form .form-group input {
  padding: 0 12px;
}
body.woocommerce-checkout .woocommerce .checkout__right .dropdown-item .dropdown .coupon-form .form-group button {
  background-color: #452600;
  color: #FFF;
  border-radius: 0;
  font-size: 1rem;
  font-weight: 400;
}
body.woocommerce-checkout .woocommerce .checkout__right .totals {
  padding: 12px 0;
}
body.woocommerce-checkout .woocommerce .checkout__right .totals__item {
  padding: 12px 24px;
  display: flex;
  justify-content: space-between;
}

body.woocommerce-cart .content__breadcrumbs {
  margin-top: 24px;
}
body.woocommerce-cart .content__breadcrumbs nav {
  margin: 0;
  color: #452600;
  font-weight: 600;
  font-size: 0.92em;
}
body.woocommerce-cart .content__breadcrumbs nav a {
  font-weight: 400;
  font-size: 0.92rem;
  color: #767676;
}
body.woocommerce-cart .content__inner {
  margin-top: 24px;
}
body.woocommerce-cart .content__inner .wc-block-components-product-name {
  color: #452600;
}
body.woocommerce-cart .content__inner .wc-block-cart__submit .wc-block-cart__submit-button {
  background-color: #452600;
  color: #FFF;
}
body.woocommerce-cart .content__inner .wc-block-components-sidebar-layout, body.woocommerce-cart .content__inner .wc-block-cart-items {
  margin-bottom: 0 !important;
}

body.page-template-about .hero {
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center center;
}
body.page-template-about .hero__inner {
  padding: 64px 24px;
  width: 100%;
}
body.page-template-about .hero__inner--content {
  max-width: 1024px;
}
body.page-template-about .hero__inner--content h1 {
  font-size: clamp(3rem, 1.7899rem + 2.521vw, 4.5rem);
  color: #FFF;
  line-height: 1;
  font-weight: 400;
}
body.page-template-about .hero__inner--content p {
  margin: 16px 0 0 0;
  color: #FFF;
  line-height: 1.7;
}
body.page-template-about .ingredients {
  position: relative;
  z-index: 10;
  padding: 48px 0;
}
body.page-template-about .ingredients__inner {
  display: flex;
  flex-wrap: wrap;
}
body.page-template-about .ingredients__inner--left {
  width: 100%;
}
@media (min-width: 768px) {
  body.page-template-about .ingredients__inner--left {
    width: 50%;
    padding: 24px 24px 24px 0;
  }
}
body.page-template-about .ingredients__inner--left h2 {
  font-size: clamp(2rem, 1.5966rem + 0.8403vw, 2.5rem);
}
body.page-template-about .ingredients__inner--left h3 {
  font-size: clamp(1.75rem, 1.5483rem + 0.4202vw, 2rem);
}
body.page-template-about .ingredients__inner--left h1 {
  font-size: clamp(2.5rem, 2.0966rem + 0.8403vw, 3rem);
}
body.page-template-about .ingredients__inner--left h4 {
  font-size: clamp(1.25rem, 1.0483rem + 0.4202vw, 1.5rem);
}
body.page-template-about .ingredients__inner--left h1, body.page-template-about .ingredients__inner--left h2, body.page-template-about .ingredients__inner--left h3, body.page-template-about .ingredients__inner--left h4, body.page-template-about .ingredients__inner--left p, body.page-template-about .ingredients__inner--left ul, body.page-template-about .ingredients__inner--left ol {
  margin: 12px 0 0 0;
}
body.page-template-about .ingredients__inner--left h1:first-child, body.page-template-about .ingredients__inner--left h2:first-child, body.page-template-about .ingredients__inner--left h3:first-child, body.page-template-about .ingredients__inner--left h4:first-child, body.page-template-about .ingredients__inner--left p:first-child, body.page-template-about .ingredients__inner--left ul:first-child, body.page-template-about .ingredients__inner--left ol:first-child {
  margin-top: 0;
}
body.page-template-about .ingredients__inner--left a {
  color: #452600;
}
body.page-template-about .ingredients__inner--left ul {
  list-style: none;
  padding-left: 0;
}
body.page-template-about .ingredients__inner--left ul li {
  line-height: 2;
  position: relative;
  z-index: 10;
  align-items: center;
  display: flex;
}
body.page-template-about .ingredients__inner--left ul li:before {
  content: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 640"><!--!Font Awesome Free v7.1.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2025 Fonticons, Inc.--><path fill="%23452600" d="M530.8 134.1C545.1 144.5 548.3 164.5 537.9 178.8L281.9 530.8C276.4 538.4 267.9 543.1 258.5 543.9C249.1 544.7 240 541.2 233.4 534.6L105.4 406.6C92.9 394.1 92.9 373.8 105.4 361.3C117.9 348.8 138.2 348.8 150.7 361.3L252.2 462.8L486.2 141.1C496.6 126.8 516.6 123.6 530.9 134z"/></svg>');
  display: block;
  width: 24px;
  height: 24px;
  margin-right: 6px;
}
body.page-template-about .ingredients__inner--left .button {
  margin-top: 24px;
}
body.page-template-about .ingredients__inner--left .button a {
  display: inline-block;
  border-radius: 50px;
  background-color: #452600;
  color: #FFF;
  font-weight: 600;
  font-size: 0.875rem;
  padding: 12px 24px 12px 24px;
}
body.page-template-about .ingredients__inner--right {
  width: 100%;
  margin-top: 24px;
}
@media (min-width: 768px) {
  body.page-template-about .ingredients__inner--right {
    margin-top: 0;
    width: 50%;
  }
}
@media (min-width: 768px) {
  body.page-template-about .ingredients__inner--right .image {
    width: calc(50% - 24px);
    position: absolute;
    top: 48px;
    height: calc(100% - 96px);
    right: 0;
  }
}
body.page-template-about .ingredients__inner--right .image img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  vertical-align: middle;
  object-position: center center;
  border-radius: 10px;
}
@media (min-width: 768px) {
  body.page-template-about .ingredients__inner--right .image img {
    border-radius: 0;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
    height: 100%;
  }
}
body.page-template-about .coffee {
  background-color: #452600;
}
body.page-template-about .coffee__inner {
  padding: 64px 24px;
}
body.page-template-about .coffee__inner--content {
  max-width: 720px;
}
body.page-template-about .coffee__inner--content h1, body.page-template-about .coffee__inner--content h2, body.page-template-about .coffee__inner--content h3, body.page-template-about .coffee__inner--content h4, body.page-template-about .coffee__inner--content h5, body.page-template-about .coffee__inner--content p, body.page-template-about .coffee__inner--content a, body.page-template-about .coffee__inner--content li {
  color: #FFF;
}
body.page-template-about .coffee__inner--content h2 {
  font-size: clamp(2rem, 1.5966rem + 0.8403vw, 2.5rem);
}
body.page-template-about .coffee__inner--content h3 {
  font-size: clamp(1.75rem, 1.5483rem + 0.4202vw, 2rem);
}
body.page-template-about .coffee__inner--content h1 {
  font-size: clamp(2.5rem, 2.0966rem + 0.8403vw, 3rem);
}
body.page-template-about .coffee__inner--content h4 {
  font-size: clamp(1.25rem, 1.0483rem + 0.4202vw, 1.5rem);
}
body.page-template-about .coffee__inner--content h1, body.page-template-about .coffee__inner--content h2, body.page-template-about .coffee__inner--content h3, body.page-template-about .coffee__inner--content h4, body.page-template-about .coffee__inner--content p, body.page-template-about .coffee__inner--content ul, body.page-template-about .coffee__inner--content ol {
  margin: 12px 0 0 0;
}
body.page-template-about .coffee__inner--content h1:first-child, body.page-template-about .coffee__inner--content h2:first-child, body.page-template-about .coffee__inner--content h3:first-child, body.page-template-about .coffee__inner--content h4:first-child, body.page-template-about .coffee__inner--content p:first-child, body.page-template-about .coffee__inner--content ul:first-child, body.page-template-about .coffee__inner--content ol:first-child {
  margin-top: 0;
}
body.page-template-about .footer {
  margin-top: 0;
}

body.woocommerce-account .content__inner {
  padding-top: 48px;
}
body.woocommerce-account .content__inner .woocommerce {
  width: 100%;
}
body.woocommerce-account .content__inner .woocommerce #customer_login {
  max-width: 480px;
  margin: 0 auto;
  width: 100%;
}
body.woocommerce-account .content__inner .woocommerce #customer_login .u-column1, body.woocommerce-account .content__inner .woocommerce #customer_login .u-column2 {
  width: 100%;
  float: none;
  max-width: 100%;
  flex: none;
}
body.woocommerce-account .content__inner .woocommerce #customer_login .u-column1 h2, body.woocommerce-account .content__inner .woocommerce #customer_login .u-column2 h2 {
  text-align: center;
  margin: 0 0 50px 0;
}
body.woocommerce-account .content__inner .woocommerce #customer_login .u-column1 form, body.woocommerce-account .content__inner .woocommerce #customer_login .u-column2 form {
  background-color: #FFF;
  margin: 0;
  border-radius: 0;
}
@media (min-width: 768px) {
  body.woocommerce-account .content__inner .woocommerce #customer_login .u-column1 form, body.woocommerce-account .content__inner .woocommerce #customer_login .u-column2 form {
    padding-bottom: 50px;
  }
}
@media (min-width: 768px) {
  body.woocommerce-account .content__inner .woocommerce #customer_login .u-column1 form p.lost_password, body.woocommerce-account .content__inner .woocommerce #customer_login .u-column1 form p.register-account-wrap, body.woocommerce-account .content__inner .woocommerce #customer_login .u-column2 form p.lost_password, body.woocommerce-account .content__inner .woocommerce #customer_login .u-column2 form p.register-account-wrap {
    float: left;
    width: 50%;
  }
}
body.woocommerce-account .content__inner .woocommerce #customer_login .u-column1 form p.lost_password a, body.woocommerce-account .content__inner .woocommerce #customer_login .u-column1 form p.register-account-wrap a, body.woocommerce-account .content__inner .woocommerce #customer_login .u-column2 form p.lost_password a, body.woocommerce-account .content__inner .woocommerce #customer_login .u-column2 form p.register-account-wrap a {
  color: #000;
  display: inline-block;
  width: 100%;
  padding: 5px 10px;
  text-align: center;
  cursor: pointer;
}
body.woocommerce-account .content__inner .woocommerce #customer_login .u-column1 form p.lost_password a:hover, body.woocommerce-account .content__inner .woocommerce #customer_login .u-column1 form p.lost_password a:focus, body.woocommerce-account .content__inner .woocommerce #customer_login .u-column1 form p.register-account-wrap a:hover, body.woocommerce-account .content__inner .woocommerce #customer_login .u-column1 form p.register-account-wrap a:focus, body.woocommerce-account .content__inner .woocommerce #customer_login .u-column2 form p.lost_password a:hover, body.woocommerce-account .content__inner .woocommerce #customer_login .u-column2 form p.lost_password a:focus, body.woocommerce-account .content__inner .woocommerce #customer_login .u-column2 form p.register-account-wrap a:hover, body.woocommerce-account .content__inner .woocommerce #customer_login .u-column2 form p.register-account-wrap a:focus {
  text-decoration: none;
}
body.woocommerce-account .content__inner .woocommerce #customer_login .u-column1 form p.login-account-wrap a, body.woocommerce-account .content__inner .woocommerce #customer_login .u-column2 form p.login-account-wrap a {
  color: #000;
  display: inline-block;
  width: 100%;
  padding: 5px 10px;
  text-align: center;
  cursor: pointer;
}
body.woocommerce-account .content__inner .woocommerce #customer_login .u-column1 form p.login-account-wrap a:hover, body.woocommerce-account .content__inner .woocommerce #customer_login .u-column1 form p.login-account-wrap a:focus, body.woocommerce-account .content__inner .woocommerce #customer_login .u-column2 form p.login-account-wrap a:hover, body.woocommerce-account .content__inner .woocommerce #customer_login .u-column2 form p.login-account-wrap a:focus {
  text-decoration: none;
}
@media (min-width: 768px) {
  body.woocommerce-account .content__inner .woocommerce #customer_login .u-column1 form p.lost_password, body.woocommerce-account .content__inner .woocommerce #customer_login .u-column2 form p.lost_password {
    padding-right: 7.5px;
  }
}
@media (min-width: 768px) {
  body.woocommerce-account .content__inner .woocommerce #customer_login .u-column1 form p.register-account-wrap, body.woocommerce-account .content__inner .woocommerce #customer_login .u-column2 form p.register-account-wrap {
    padding-left: 7.5px;
  }
}
body.woocommerce-account .content__inner .woocommerce #customer_login .u-column1 form p, body.woocommerce-account .content__inner .woocommerce #customer_login .u-column2 form p {
  margin-bottom: 15px;
  padding: 0;
}
body.woocommerce-account .content__inner .woocommerce #customer_login .u-column1 form p button, body.woocommerce-account .content__inner .woocommerce #customer_login .u-column2 form p button {
  width: 100%;
  float: none;
  max-width: 100%;
  margin-right: 0;
  color: #FFF;
  transition: 0.5s;
  font-weight: 500;
  border-radius: 0;
  background-color: #452600;
}
body.woocommerce-account .content__inner .woocommerce #customer_login .u-column1 form p button:hover, body.woocommerce-account .content__inner .woocommerce #customer_login .u-column1 form p button:focus, body.woocommerce-account .content__inner .woocommerce #customer_login .u-column2 form p button:hover, body.woocommerce-account .content__inner .woocommerce #customer_login .u-column2 form p button:focus {
  background-color: #452600;
  text-decoration: none;
}
body.woocommerce-account .content__inner .woocommerce #customer_login .u-column1 form p a, body.woocommerce-account .content__inner .woocommerce #customer_login .u-column2 form p a {
  color: #000;
}
body.woocommerce-account .content__inner .woocommerce #customer_login .u-column1 form p label, body.woocommerce-account .content__inner .woocommerce #customer_login .u-column2 form p label {
  display: block;
  width: 100%;
}
body.woocommerce-account .content__inner .woocommerce #customer_login .u-column1 form p span.password-input, body.woocommerce-account .content__inner .woocommerce #customer_login .u-column2 form p span.password-input {
  width: 100%;
}
body.woocommerce-account .content__inner .woocommerce #customer_login .u-column1 form p span.password-input .show-password-input, body.woocommerce-account .content__inner .woocommerce #customer_login .u-column2 form p span.password-input .show-password-input {
  top: 1em !important;
}
body.woocommerce-account .content__inner .woocommerce #customer_login .u-column2 {
  display: none;
}
body.woocommerce-account .content__inner .woocommerce #customer_login .u-column2 form {
  padding-bottom: 0;
}
body.woocommerce-account .content__inner .woocommerce #customer_login .u-column2 form span.password-input {
  width: 100%;
}
body.woocommerce-account .content__inner .woocommerce #customer_login .u-column2 form span.password-input .show-password-input {
  top: 1em !important;
}
body.woocommerce-account .content__inner .woocommerce .woocommerce-MyAccount-navigation {
  background-color: #FFF;
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 10px;
}
body.woocommerce-account .content__inner .woocommerce .woocommerce-MyAccount-navigation ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
body.woocommerce-account .content__inner .woocommerce .woocommerce-MyAccount-navigation ul li {
  margin-bottom: 15px;
}
body.woocommerce-account .content__inner .woocommerce .woocommerce-MyAccount-navigation ul li.is-active a {
  color: #452600;
}
body.woocommerce-account .content__inner .woocommerce .woocommerce-MyAccount-navigation ul li:last-child {
  margin-bottom: 0;
}
body.woocommerce-account .content__inner .woocommerce .woocommerce-MyAccount-navigation ul li a {
  color: #000;
  font-size: 18px;
  font-weight: 600;
}
body.woocommerce-account .content__inner .woocommerce .woocommerce-MyAccount-navigation ul li a:hover, body.woocommerce-account .content__inner .woocommerce .woocommerce-MyAccount-navigation ul li a:focus {
  color: #452600;
}
body.woocommerce-account .content__inner .woocommerce .woocommerce-MyAccount-content h2, body.woocommerce-account .content__inner .woocommerce .woocommerce-MyAccount-content h3 {
  font-weight: 600;
  font-size: 20px;
  margin: 0 0 10px 0;
}
body.woocommerce-account .content__inner .woocommerce .woocommerce-MyAccount-content table.woocommerce-orders-table {
  border: none;
}
body.woocommerce-account .content__inner .woocommerce .woocommerce-MyAccount-content table.woocommerce-orders-table thead th {
  padding: 10px 0;
  font-weight: 600;
}
body.woocommerce-account .content__inner .woocommerce .woocommerce-MyAccount-content table.woocommerce-orders-table thead th.woocommerce-orders-table__cell-order-number a {
  color: #452600;
  font-weight: 700;
}
body.woocommerce-account .content__inner .woocommerce .woocommerce-MyAccount-content table.woocommerce-orders-table tbody tr td {
  padding: 10px 0;
}
body.woocommerce-account .content__inner .woocommerce .woocommerce-MyAccount-content table.woocommerce-orders-table tbody tr td.woocommerce-orders-table__cell-order-number a {
  color: #452600;
  font-weight: 700;
}
body.woocommerce-account .content__inner .woocommerce .woocommerce-MyAccount-content .woocommerce-orders-table {
  margin: 0;
}
body.woocommerce-account .content__inner .woocommerce .woocommerce-MyAccount-content p.form-row {
  padding: 0;
}
body.woocommerce-account .content__inner .woocommerce .woocommerce-MyAccount-content .button {
  background-color: #452600;
  color: #FFF;
  border-radius: 2px;
  font-weight: 600;
}
body.woocommerce-account .content__inner .woocommerce .woocommerce-MyAccount-content .woocommerce-Address {
  margin-top: 15px;
}
body.woocommerce-account .content__inner .woocommerce .woocommerce-MyAccount-content .woocommerce-Address .edit {
  background-color: #452600;
  color: #FFF;
  padding: 5px 10px;
  border-radius: 2px;
  display: inline-block;
  margin-bottom: 10px;
}
body.woocommerce-account .content__inner .woocommerce .woocommerce-MyAccount-content .woocommerce-Address address {
  font-style: normal;
  line-height: 1.5;
}
body.woocommerce-account .content__inner .woocommerce .woocommerce-MyAccount-content .order-information, body.woocommerce-account .content__inner .woocommerce .woocommerce-MyAccount-content .shipping-information, body.woocommerce-account .content__inner .woocommerce .woocommerce-MyAccount-content .shipping-address {
  margin-bottom: 25px;
}
body.woocommerce-account .content__inner .woocommerce .woocommerce-MyAccount-content .order-information ul, body.woocommerce-account .content__inner .woocommerce .woocommerce-MyAccount-content .shipping-information ul, body.woocommerce-account .content__inner .woocommerce .woocommerce-MyAccount-content .shipping-address ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
body.woocommerce-account .content__inner .woocommerce .woocommerce-MyAccount-content .order-information ul li, body.woocommerce-account .content__inner .woocommerce .woocommerce-MyAccount-content .shipping-information ul li, body.woocommerce-account .content__inner .woocommerce .woocommerce-MyAccount-content .shipping-address ul li {
  margin-bottom: 5px;
}
body.woocommerce-account .content__inner .woocommerce .woocommerce-MyAccount-content .totals {
  margin-top: 25px;
}
body.woocommerce-account .content__inner .woocommerce .woocommerce-MyAccount-content .totals ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
body.woocommerce-account .content__inner .woocommerce .woocommerce-MyAccount-content .totals ul li {
  margin-bottom: 10px;
  display: flex;
  flex-wrap: wrap;
}
body.woocommerce-account .content__inner .woocommerce .woocommerce-MyAccount-content .totals ul li:last-child {
  margin-bottom: 0;
}
body.woocommerce-account .content__inner .woocommerce .woocommerce-MyAccount-content .totals ul li:last-child .left {
  font-size: 18px;
  font-weight: 700;
}
body.woocommerce-account .content__inner .woocommerce .woocommerce-MyAccount-content .totals ul li .left {
  width: 125px;
  margin-right: 10px;
}
@media (min-width: 375px) {
  body.woocommerce-account .content__inner .woocommerce .woocommerce-MyAccount-content .totals ul li .left {
    width: 175px;
    margin-right: 15px;
  }
}
body.woocommerce-account .content__inner .woocommerce .woocommerce-MyAccount-content .totals ul li .left span {
  display: block;
  font-size: 12px;
  font-weight: 300;
}
body.woocommerce-account .content__inner .woocommerce .woocommerce-MyAccount-content .totals ul li .right {
  width: 80px;
}
body.woocommerce-account .content__inner .woocommerce .woocommerce-MyAccount-content .items .item {
  padding: 10px 0;
  border-top: 1px solid #452600;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  align-items: center;
}
body.woocommerce-account .content__inner .woocommerce .woocommerce-MyAccount-content .items .item:first-child {
  border-top: none;
}
body.woocommerce-account .content__inner .woocommerce .woocommerce-MyAccount-content .items .item__image {
  width: 80px;
  height: auto;
  position: relative;
  z-index: 10;
}
body.woocommerce-account .content__inner .woocommerce .woocommerce-MyAccount-content .items .item__image .count {
  position: absolute;
  top: 0;
  right: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: #452600;
  color: #FFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 300;
  font-size: 14px;
}
body.woocommerce-account .content__inner .woocommerce .woocommerce-MyAccount-content .items .item__image img {
  object-fit: contain;
  object-position: center center;
  aspect-ratio: 1/1;
  width: 100%;
  height: auto;
  vertical-align: bottom;
}
body.woocommerce-account .content__inner .woocommerce .woocommerce-MyAccount-content .items .item__data {
  width: calc(100% - 80px);
  padding-left: 20px;
}
body.woocommerce-account .content__inner .woocommerce .woocommerce-MyAccount-content .items .item__data .title a {
  margin: 0;
  font-size: 15px;
  color: #452600;
  font-weight: 500;
  line-height: 1.5;
}
body.woocommerce-account .content__inner .woocommerce .woocommerce-MyAccount-content .items .item__data .custom-price {
  margin-top: 10px;
  display: flex;
  align-items: center;
}
body.woocommerce-account .content__inner .woocommerce .woocommerce-MyAccount-content .items .item__data .custom-price .sale-price p {
  font-size: 16px;
  color: #452600;
  font-weight: 500;
}
body.woocommerce-account .content__inner .woocommerce .woocommerce-MyAccount-content .items .item__data .custom-price .normal-price {
  margin-left: 10px;
}
body.woocommerce-account .content__inner .woocommerce .woocommerce-MyAccount-content .items .item__data .custom-price .normal-price p {
  color: #000;
  font-weight: 400;
  font-size: 13px;
}
body.woocommerce-account .content__inner .woocommerce .woocommerce-MyAccount-content .items .item__quantity {
  width: calc(100% - 80px);
  padding-left: 20px;
  margin: 0 0 0 auto;
}
@media (min-width: 768px) {
  body.woocommerce-account .content__inner .woocommerce .woocommerce-MyAccount-content .items .item__quantity {
    padding-left: 0;
    margin: 0;
    width: 120px;
  }
}
body.woocommerce-account .content__inner .woocommerce .woocommerce-MyAccount-content .items .item__quantity .custom-quantity .input-wrapper {
  height: 42px;
  display: flex;
}
body.woocommerce-account .content__inner .woocommerce .woocommerce-MyAccount-content .items .item__quantity .custom-quantity .input-wrapper .minus, body.woocommerce-account .content__inner .woocommerce .woocommerce-MyAccount-content .items .item__quantity .custom-quantity .input-wrapper .plus {
  height: 100%;
  width: 42px;
  border: 1px solid #452600;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  color: #000;
}
body.woocommerce-account .content__inner .woocommerce .woocommerce-MyAccount-content .items .item__quantity .custom-quantity .input-wrapper .quantity {
  width: 62px;
  height: 100%;
}
body.woocommerce-account .content__inner .woocommerce .woocommerce-MyAccount-content .items .item__quantity .custom-quantity .input-wrapper .quantity input {
  width: 100%;
  height: 100%;
  border: none;
  border-top: 1px solid #452600;
  border-bottom: 1px solid #452600;
  text-align: center;
  -moz-appearance: textfield;
}
body.woocommerce-account .content__inner .woocommerce .woocommerce-MyAccount-content .items .item__quantity .custom-quantity .input-wrapper .quantity input:focus {
  outline: 0;
}
body.woocommerce-account .content__inner .woocommerce .woocommerce-MyAccount-content .items .item__quantity .custom-quantity .input-wrapper .quantity input::-webkit-outer-spin-button, body.woocommerce-account .content__inner .woocommerce .woocommerce-MyAccount-content .items .item__quantity .custom-quantity .input-wrapper .quantity input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
body.woocommerce-account .content__inner .woocommerce .woocommerce-MyAccount-content .items .item__quantity a {
  color: #000;
  font-size: 15px;
  font-weight: 400;
  display: inline-block;
  margin-top: 10px;
  cursor: pointer;
}

body.page-template-contact .hero {
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center center;
}
body.page-template-contact .hero__inner {
  padding: 64px 24px;
  width: 100%;
}
body.page-template-contact .hero__inner--content {
  max-width: 1024px;
}
body.page-template-contact .hero__inner--content h1 {
  font-size: clamp(3rem, 1.7899rem + 2.521vw, 4.5rem);
  color: #FFF;
  line-height: 1;
  font-weight: 400;
}
body.page-template-contact .hero__inner--content p {
  margin: 16px 0 0 0;
  color: #FFF;
  line-height: 1.7;
}
body.page-template-contact .hero__inner--content p a {
  text-decoration: underline;
  color: #FFF;
}
body.page-template-contact .contact {
  margin-top: 64px;
  display: flex;
  flex-wrap: wrap;
}
body.page-template-contact .contact__left {
  width: 100%;
}
@media (min-width: 768px) {
  body.page-template-contact .contact__left {
    width: 40%;
    padding-right: 24px;
  }
}
body.page-template-contact .contact__left .block {
  margin-top: 24px;
}
body.page-template-contact .contact__left .block:first-child {
  margin-top: 0;
}
body.page-template-contact .contact__left .block h3 {
  font-size: clamp(1.75rem, 1.5483rem + 0.4202vw, 2rem);
}
body.page-template-contact .contact__left .block ul {
  list-style: none;
  padding: 0;
  margin-top: 12px;
}
body.page-template-contact .contact__left .block ul li {
  line-height: 1.7;
}
body.page-template-contact .contact__right {
  width: 100%;
  margin-top: 24px;
}
@media (min-width: 768px) {
  body.page-template-contact .contact__right {
    margin-top: 0;
    width: 60%;
    padding-left: 24px;
  }
}
body.page-template-contact .faq {
  background-color: #452600;
  margin-top: 64px;
}
body.page-template-contact .faq__inner {
  padding-top: 64px;
  padding-bottom: 64px;
}
body.page-template-contact .faq__inner--item {
  margin-top: 48px;
}
body.page-template-contact .faq__inner--item:first-child {
  margin-top: 0;
}
body.page-template-contact .faq__inner--item.open .question .icon svg {
  transform: rotate(-180deg);
}
body.page-template-contact .faq__inner--item .question {
  display: flex;
  flex-wrap: wrap;
  cursor: pointer;
}
body.page-template-contact .faq__inner--item .question .text {
  width: calc(100% - 48px);
}
body.page-template-contact .faq__inner--item .question .text p {
  color: #FFF;
  line-height: 1;
  font-size: clamp(1rem, 0.7983rem + 0.4202vw, 1.25rem);
}
body.page-template-contact .faq__inner--item .question .icon {
  width: 48px;
  text-align: right;
}
body.page-template-contact .faq__inner--item .question .icon svg {
  height: 32px;
  width: auto;
  margin-top: -5px;
  vertical-align: middle;
  transition: 0.5s;
}
body.page-template-contact .faq__inner--item .question .icon svg path, body.page-template-contact .faq__inner--item .question .icon svg g {
  fill: #FFF;
}
body.page-template-contact .faq__inner--item .answer {
  display: none;
  margin-top: 12px;
  background-color: #76512C;
  padding: 24px;
  border-radius: 10px;
}
body.page-template-contact .faq__inner--item .answer p {
  color: #FFF;
}
body.page-template-contact .faq__inner--item .answer p a {
  color: #FFF;
  text-decoration: underline;
}
body.page-template-contact .footer {
  margin-top: 0;
}

body.page-template-default .content__breadcrumbs {
  margin-top: 24px;
}
body.page-template-default .content__breadcrumbs nav {
  margin: 0;
  color: #452600;
  font-weight: 600;
  font-size: 0.92em;
}
body.page-template-default .content__breadcrumbs nav a {
  font-weight: 400;
  font-size: 0.92rem;
  color: #767676;
}
body.page-template-default .content__inner.normal-page p, body.page-template-default .content__inner.normal-page h1, body.page-template-default .content__inner.normal-page h2, body.page-template-default .content__inner.normal-page h3, body.page-template-default .content__inner.normal-page h4, body.page-template-default .content__inner.normal-page h5, body.page-template-default .content__inner.normal-page h6, body.page-template-default .content__inner.normal-page ul, body.page-template-default .content__inner.normal-page ol, body.page-template-default .content__inner.normal-page img, body.page-template-default .content__inner.normal-page div, body.page-template-default .content__inner.normal-page details {
  margin-top: 24px;
}
body.page-template-default .content__inner.normal-page a {
  color: #452600;
  text-decoration: underline;
}
body.page-template-default .content__inner.normal-page p, body.page-template-default .content__inner.normal-page li {
  line-height: 1.7;
}

body.page-template-private .hero {
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center center;
}
body.page-template-private .hero__inner {
  padding: 64px 24px;
  width: 100%;
}
body.page-template-private .hero__inner--content {
  max-width: 1024px;
}
body.page-template-private .hero__inner--content h1 {
  font-size: clamp(3rem, 1.7899rem + 2.521vw, 4.5rem);
  color: #FFF;
  line-height: 1;
  font-weight: 400;
}
body.page-template-private .hero__inner--content p {
  margin: 16px 0 0 0;
  color: #FFF;
  line-height: 1.7;
}
body.page-template-private .private-contact {
  margin-top: 64px;
}

/*# sourceMappingURL=app.css.map */
