/** Shopify CDN: Minification failed

Line 140:9 Expected identifier but found whitespace
Line 140:11 Unexpected "{"
Line 140:20 Expected ":"

**/
.quincy-product {
  background: #1A2B25;
}

.product__alt-wrapper {
  display: flex;
  align-items: center;
}

.product-detail-container {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
  justify-content: center;
  max-width: 60rem;
  color: #E3E7D2;
}

.product-detail-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.product__title {
  color: #E3E7D2;
  font-family: 'Optician Sans';
  color: #E3E7D2;
  font-size: 24px;
  text-transform: uppercase;
  margin: 0;
}

.product__price {
  font-family: 'Cerebri Sans';
  color: #E3E7D2;
  font-size: 16px;
  margin: 0;
}

.product-size {
  font-family: 'Optician Sans';
  color: #E3E7D2;
  font-size: 16px;
  line-height: 1.6;
  text-transform: uppercase;
  margin: 0;
}

.product__view-details {
  color: #E3E7D2;
}

.product-description, .nutritional-ingredients {
  font-family: 'Cerebri Sans';
  color: #E3E7D2;
  font-size: 16px;
  line-height: 1.6;
}

.product__accordion {
  width: 100%;
  padding: 16px 0;
  border-top: 1px solid #E3E7D2;
  border-bottom: 1px solid #E3E7D2;
}

.accordion__title {
  font-family: 'Optician Sans';
  color: #E3E7D2;
  font-size: 18px;
  text-transform: uppercase;
  margin: 0;
}

.nutritional-facts-image {
  margin-top: 24px;
  max-width: 300px !important;
  width: 100%;
}

.product-cta-link, .quincy-button {
  width: 100%;
  max-width: 270px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 48px;
  background: #E3E7D2;
  color: #1A2B25;
  font-family: 'Optician Sans';
  font-size: 18px;
  text-transform: uppercase;
  text-decoration: none;
}

.product-cta-link {
  margin-top: 24px;
}

.swiper {
  width: 100%;
}

.swiper-product {
  height: 420px;
}

.swiper-buttons {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
  position: absolute;
  bottom: 100px;
  padding: 0 40px;
  z-index: 5;
}

.quincy-button-previous, .quincy-button-next {
  border: none;
  background: transparent;
  width: fit-content;
  display: flex;
  justify-content: center;
  align-items: center; 
  cursor: pointer;
}

.quincy-button-previous svg g, .quincy-button-next svg g {
  stroke: {{ section.settings.arrow_color }};
}

.swiper-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media screen and (min-width: 750px) {
  .swiper-product {
    height: 690px;
  }
}

@media screen and (min-width: 990px) {
  .quincy-product {
    display: grid;
    grid-template-columns: 1fr 1fr;
    justify-content: center;
    align-content: center;
  }

  .product-detail-container {
    margin: 0 auto;
  }

  .product__title {
    font-size: 32px;
    width: 100%;
  }

  .product__price {
    font-size: 22px;
  }

  .product-size {
    font-size: 18px;
  }

  .accordion__title {
    font-size: 22px;
  }

  .product-cta-link, .quincy-button {
    font-size: 22px;
  }

  .product-cta-link {
    margin-top: 40px;
  }
}

@media screen and (min-width: 1200px) {
  .swiper {
    height: 920px;
  }

  .swiper-wrapper-single, .swiper-wrapper-single .swiper-slide {
    height: 100%;
  }
}

@media screen and (max-width: 1200px) {
  .product-detail-container {
    padding: 24px 16px;
  }
}

@media screen and (max-width: 989px) {
  .product-cta-link, .quincy-button {
    align-self: center;
  }

  .swiper-buttons {
    bottom: 60px;
    padding: 0 24px;
  }
}