* {
  box-sizing: border-box !important;
}

/* Setting scrollbar track color explicitly */
::-webkit-scrollbar {
  width: 2px;
}

/* Adjusting the scrollbar track's style */
::-webkit-scrollbar-track {
  background-color: #f5f5f5;
}

/* Customizing the appearance of the scrollbar thumb */
::-webkit-scrollbar-thumb {
  background-color: rgb(52, 76, 100);
  border-radius: 2px;
}

/* Altering the scrollbar thumb's look when hovered */
::-webkit-scrollbar-thumb:hover {
  background-color: #333;
}

/* Defining the animation for thumb color transition */
@keyframes thumbColorTransition {
  0% {
    background-color: #888;
  }
  50% {
    background-color: #555;
  }
  100% {
    background-color: #888;
  }
}
/* Applying the defined animation to the scrollbar thumb */
::-webkit-scrollbar-thumb {
  animation: thumbColorTransition 2s infinite;
}

body {
  font-family: "Epilogue", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 19.6px;
  text-align: left;
  padding-top: 173px;
  color: rgb(40, 40, 40);
}
@media (max-width: 991px) {
  body {
    padding-top: 125px;
  }
}

a {
  color: rgb(40, 40, 40);
  text-decoration: none;
}

.heading__title {
  font-family: "Libre Bodoni", serif;
  font-size: 56px;
  font-weight: 700;
  line-height: 61.6px;
  text-align: left;
  color: rgb(52, 76, 100);
  margin-bottom: 16px;
}
@media (max-width: 991px) {
  .heading__title {
    font-family: "Libre Bodoni", serif;
    font-size: 32px;
    font-weight: 700;
    line-height: 35.2px;
    text-align: left;
  }
}
.heading__subtitle {
  font-family: "Epilogue", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 22.4px;
  text-align: left;
  margin-bottom: 16px;
  max-width: 640px;
}
@media (max-width: 991px) {
  .heading__subtitle {
    font-family: "Epilogue", sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 19.6px;
    text-align: left;
  }
}

.container {
  max-width: 1310px;
  padding: 0 15px;
  margin: auto;
}

.product-list__container {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 42px;
}
.product-list__container h4 {
  font-family: "Libre Bodoni", serif;
  font-size: 28px;
  font-weight: 700;
  line-height: 30.8px;
  text-align: left;
  color: rgb(52, 76, 100);
  margin-bottom: 40px;
  flex: 0 0 100%;
}
@media (max-width: 991px) {
  .product-list__container h4 {
    font-size: 24px;
    font-weight: 700;
    line-height: 27.84px;
  }
}

.product-item {
  display: flex;
  margin-bottom: 38px;
  flex: 0 0 50%;
  padding-right: 32px;
}
@media (max-width: 991px) {
  .product-item {
    flex: 0 0 100%;
    padding-right: 0;
  }
}
.product-item__image {
  flex: 0 0 120px;
  width: 120px;
  max-width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
}
@media (max-width: 991px) {
  .product-item__image {
    width: 100px;
    height: 100px;
    flex: 0 0 100px;
  }
}
.product-item__image a {
  display: block;
}
.product-item__image img {
  display: block;
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.product-item__info {
  padding-left: 24px;
}
.product-item__add {
  margin-top: 12px;
  display: flex;
  align-items: center;
}
.product-item__name {
  font-family: "Epilogue", sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 23.4px;
  text-align: left;
  margin-bottom: 8px;
}
@media (max-width: 991px) {
  .product-item__name {
    font-family: "Epilogue", sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 22.4px;
    text-align: left;
  }
}
.product-item__price {
  font-family: "Epilogue", sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 19.6px;
  text-align: left;
  margin-bottom: 12px;
  color: rgb(52, 76, 100);
}
.product-item__count-button {
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  font-size: 0;
  border: none;
  outline: none;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  background-color: transparent;
  cursor: pointer;
}
.product-item__increase {
  background-image: url("../img/+.svg");
}
.product-item__decrease {
  background-image: url("../img/-.svg");
}
.product-item__quantity {
  font-family: "Epilogue", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 22.4px;
  text-align: left;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  flex: 0 0 28px;
  margin: 0 4px;
}
.product-item__description {
  font-family: "Epilogue", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 19.6px;
  text-align: left;
  color: rgb(126, 126, 126);
}

.header {
  padding: 40px 0;
  position: fixed;
  top: 0;
  width: 100%;
  background: #fff;
  z-index: 1;
  left: 0;
  transition: 0.15s all linear;
}
@media (max-width: 991px) {
  .header {
    padding: 32px 0;
  }
}
.header.sticky {
  padding: 10px 0;
  opacity: 0.8;
}
.header.sticky:hover {
  opacity: 1;
}
.admin-bar .header {
  margin-top: 32px;
}

.header-inner {
  display: flex;
  align-items: center;
}

.mini-cart {
  position: relative;
  cursor: pointer;
  display: flex;
  align-items: center;
}
.mini-cart__amount {
  font-family: "Epilogue", sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 19.6px;
  text-align: left;
}
.mini-cart__icon {
  display: flex;
  margin-left: 12px;
}
.mini-cart__icon img {
  display: block;
  width: 24px;
}
.mini-cart__count {
  position: absolute;
  right: -5px;
  top: -7px;
  width: 18px;
  height: 18px;
  background: rgb(204, 179, 149);
  font-family: "Epilogue", sans-serif;
  font-size: 11px;
  font-weight: 600;
  line-height: 18px;
  text-align: left;
  border-radius: 50%;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo {
  flex: 0 0;
}
.logo img {
  width: 197px;
  height: auto;
  display: block;
  transition: 0.15s all linear;
}
@media (max-width: 991px) {
  .logo img {
    width: 130px;
  }
}
.sticky .logo img {
  width: 150px;
}

.separator-box {
  flex: 1 0;
  padding: 0 28px 0 40px;
}
.separator-box .separator {
  position: relative;
}
.separator-box .separator:after {
  content: "";
  width: 100%;
  height: 1px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgb(204, 179, 149);
  transition: 0.15s all linear;
  left: 0;
}
.sticky .separator-box .separator:after {
  background: transparent;
}

.allergens-info {
  display: flex;
  align-items: center;
  padding: 16px 0;
  border-top: 1px solid rgb(204, 179, 149);
  border-bottom: 1px solid rgb(204, 179, 149);
}
.allergens-info__icon img {
  max-height: 20px;
  display: block;
  padding-bottom: 2px;
}
.allergens-info__title {
  font-family: "Epilogue", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 19.6px;
  text-align: left;
  padding-left: 12px;
}
.allergens-info__title a {
  font-family: "Epilogue", sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 19.6px;
  text-align: left;
}

.shop {
  margin: 80px 0;
}
@media (max-width: 991px) {
  .shop {
    margin: 40px 0;
  }
}

.cart-panel__inner {
  top: 0;
  right: 0;
  position: fixed;
  width: 520px;
  max-width: 100%;
  z-index: 2;
  background: #fff;
  height: 100%;
  padding: 32px 16px 32px 32px;
  display: flex;
  flex-direction: column;
}
.admin-bar .cart-panel__inner {
  padding-top: 64px;
}

.cart-panel {
  position: fixed;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3411764706);
  z-index: 2;
  left: 0;
  top: 0;
  display: none;
}
.cart-panel.show {
  display: block;
}
.cart-panel__overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}
.cart-panel__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}
.cart-panel__title {
  font-family: "Epilogue", sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 22px;
  text-align: left;
  padding-right: 15px;
}
.cart-panel__close {
  cursor: pointer;
}

.empty-cart {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  left: 0;
}
.empty-cart h5 {
  font-family: "Libre Bodoni", serif;
  font-size: 28px;
  font-weight: 700;
  line-height: 30.8px;
  text-align: left;
  margin-bottom: 16px;
  max-width: 350px;
}
@media (max-width: 991px) {
  .empty-cart h5 {
    font-size: 24px;
    font-weight: 700;
    line-height: 27.84px;
  }
}
.empty-cart h6 {
  font-family: "Epilogue", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 19.6px;
  text-align: left;
  max-width: 350px;
  text-align: center;
}

.cart-item-box-title {
  position: relative;
  display: flex;
  align-items: center;
}
.cart-item-box-title span {
  font-family: "Epilogue", sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 16.8px;
  text-align: left;
  color: rgb(169, 169, 169);
  padding-right: 16px;
}
.cart-item-box-title:after {
  content: "";
  flex-grow: 1;
  height: 1px;
  background: rgb(204, 179, 149);
}

.cart-item {
  display: flex;
  padding: 20px 0;
  border-bottom: 1px solid rgba(204, 179, 149, 0.3);
}
.cart-item:last-child {
  border-bottom: none;
}
.cart-item__image {
  flex: 0 0 64px;
  width: 64px;
  height: 64px;
  overflow: hidden;
  border-radius: 50%;
}
.cart-item__image img {
  display: block;
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.cart-item__content {
  padding-left: 16px;
  flex: 1 0;
  display: flex;
  flex-direction: column;
}
.cart-item__action {
  padding-left: 16px;
  flex-direction: column;
  display: flex;
  align-items: flex-end;
}
.cart-item__price {
  font-family: "Epilogue", sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 16.8px;
  text-align: left;
  color: rgb(169, 169, 169);
}
.cart-item__quantity {
  font-family: "Epilogue", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 22.4px;
  text-align: left;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  flex: 0 0 28px;
  margin: 0 4px;
}
.cart-item__count {
  margin-top: 12px;
  display: flex;
  align-items: center;
}
.cart-item__count-button {
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  font-size: 0;
  border: none;
  outline: none;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  background-color: transparent;
  cursor: pointer;
}
.cart-item__increase {
  background-image: url("../img/+.svg");
}
.cart-item__decrease {
  background-image: url("../img/-.svg");
}
.cart-item__total {
  font-family: "Epilogue", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 22.4px;
  text-align: left;
  flex-grow: 1;
}
.cart-item__delete {
  font-size: 0;
  border: none;
  outline: none;
  background-color: transparent;
  flex: 0 0 24px;
  height: 24px;
  width: 24px;
  background-image: url("../img/delete.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  cursor: pointer;
}
.cart-item__title {
  font-family: "Epilogue", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 22.4px;
  text-align: left;
  margin-bottom: 4px;
}

.cart-summary {
  padding-top: 16px;
}

.total-price {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.total-price__value {
  font-family: "Epilogue", sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 26.4px;
  text-align: left;
  color: rgb(52, 76, 100);
}
.total-price__label {
  font-family: "Epilogue", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 22.4px;
  text-align: left;
}

.shopping-cart {
  flex-grow: 1;
  overflow-y: auto;
  padding-right: 16px;
}

.button {
  font-family: "Epilogue", sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 19.6px;
  text-align: left;
  display: inline-block;
  text-align: center;
  text-decoration: none;
  vertical-align: middle;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  padding: 14px 22px;
  border-radius: 36px;
  transition: all 0.15s linear;
  color: #ffffff;
  background: rgb(52, 76, 100);
}
.button-primary {
  background: rgb(52, 76, 100);
}
.button-lg {
  padding: 14px 22px;
}
.button-full {
  width: 100%;
}

.submit-order {
  margin-top: 20px;
}

.form-item {
  position: relative;
}

.form-input, .form-select {
  font-family: "Epilogue", sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 19.6px;
  text-align: left;
  padding: 14px 20px;
  width: 100%;
  border: 1px solid rgb(212, 212, 212);
  border-radius: 36px;
  transition: border-color 250ms;
  background-color: transparent;
}
.form-input:focus, .form-select:focus {
  outline: none;
  border-color: rgb(52, 76, 100);
}
.form-input::placeholder, .form-select::placeholder {
  color: transparent;
}
.form-input::-webkit-contacts-auto-fill-button, .form-select::-webkit-contacts-auto-fill-button {
  visibility: hidden;
  pointer-events: none;
  position: absolute;
}

.form-select {
  -webkit-appearance: none;
  background-image: url("../img/arrow-down.svg");
  background-size: 20px;
  background-repeat: no-repeat;
  background-position: center right 20px;
}
@media (max-width: 991px) {
  .form-select {
    padding-right: 45px;
  }
}

.form-label {
  font-family: "Epilogue", sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 19.6px;
  text-align: left;
  position: absolute;
  top: 17px;
  left: 16px;
  pointer-events: none;
  transform-origin: left center;
  transition: transform 250ms;
  background: #fff;
  padding: 0 4px;
}
@media (max-width: 991px) {
  .form-label {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    max-width: 90%;
  }
}

.form-input:focus + .form-label,
.form-input:not(:placeholder-shown) + .form-label {
  transform: translateY(-100%) scale(0.75);
  font-family: "Epilogue", sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 16.8px;
  text-align: left;
  color: rgb(169, 169, 169);
  top: 10px;
}

.form-wrapper .form-item {
  margin-bottom: 20px;
}
.form-wrapper .form-submit {
  margin-top: 40px;
}
.form-wrapper .info-message {
  font-family: "Epilogue", sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 19.6px;
  text-align: left;
  text-align: center;
}
.form-wrapper .info-message p {
  margin: 20px 0 0;
  color: red;
}
.form-wrapper .info-message h4 {
  margin: 20px 0 0;
  color: green;
}

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
}
.modal-header h6 {
  font-family: "Epilogue", sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 22px;
  text-align: left;
}

.main-slider {
  margin-bottom: 120px;
}
@media (max-width: 991px) {
  .main-slider {
    margin-bottom: 40px;
  }
}
.main-slider__inner {
  margin: 0 -6px;
}
.main-slider__item {
  height: 472px;
  padding: 0 6px;
}
@media (max-width: 991px) {
  .main-slider__item {
    height: 300px;
  }
}
.main-slider__item a {
  display: block;
}
.main-slider__item img {
  display: block;
  max-width: 100%;
  height: 100%;
  object-position: top;
  object-fit: contain;
}
@media (max-width: 991px) {
  .main-slider__item img {
    max-height: 300px;
  }
}

.main-slider-navigation {
  display: flex;
  align-items: center;
}
.main-slider-navigation.top {
  justify-content: flex-end;
  margin-bottom: 24px;
}
@media (max-width: 991px) {
  .main-slider-navigation.top {
    display: none;
  }
}
.main-slider-navigation.top > * {
  margin-left: 16px;
}
.main-slider-navigation.bottom {
  justify-content: center;
  margin-top: 24px;
}
@media (min-width: 992px) {
  .main-slider-navigation.bottom {
    display: none;
  }
}
.main-slider-navigation.bottom > * {
  margin: 0 8px;
}
.main-slider-navigation > * {
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  cursor: pointer;
}
.main-slider-navigation > *.slick-disabled {
  opacity: 0.3;
}
.main-slider-navigation__prev {
  background-image: url("../img/prev.svg");
}
.main-slider-navigation__next {
  background-image: url("../img/next.svg");
}

.terms h2 {
  font-family: "Libre Bodoni", serif;
  font-size: 32px;
  font-weight: 700;
  line-height: 35.2px;
  text-align: left;
  margin: 24px 0;
}
.terms p {
  font-family: "Epilogue", sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 19.6px;
  text-align: left;
  margin: 20px 0;
}

.footer-box {
  display: flex;
  align-items: center;
  padding: 40px 0;
}

.footer-copy {
  font-family: "Epilogue", sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 16.8px;
  text-align: left;
  color: rgb(126, 126, 126);
}

.footer-separator-box {
  flex: 1 0;
  padding: 0 28px 0 40px;
}
.footer-separator-box .footer-separator {
  position: relative;
}
.footer-separator-box .footer-separator:after {
  content: "";
  width: 100%;
  height: 1px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgb(204, 179, 149);
  transition: 0.15s all linear;
  left: 0;
}
.sticky .footer-separator-box .footer-separator:after {
  background: transparent;
}

.footer-menu a {
  font-family: "Epilogue", sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 16.8px;
  text-align: left;
  color: rgb(126, 126, 126);
}

.added-to-cart-notification {
  font-family: "Epilogue", sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 19.6px;
  text-align: left;
  display: none;
  z-index: 3;
  position: fixed;
  bottom: 10px;
  right: 10px;
  background-color: #4CAF50;
  color: white;
  padding: 10px 12px;
  border-radius: 5px;
}

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