/* navigation bar */
.navbar {
  position: fixed;
  z-index: 999;
  background-color: #fff;
  width: 100%;
  box-shadow: 0 3px 3px rgb(86 44 10 / 19%);
}

.navbar__content {
  padding: 20px;
  margin: 0 auto;
  max-width: 1280px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar__branding {
  color: #2a2a2a;
  font-weight: 600;
}

.navbar a {
  color: #2a2a2a;
}


/* main */
main {
  padding-top: 100px;
  max-width: 1280px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}

/* begin frontpage */
.frontpage__main-text, .frontpage__description {
  margin-bottom: 10px;
}
.frontpage__product-list-container {
  margin-top: 20px;
}
.frontpage__see-all {
  margin: 50px 0;
  width: 100%;
  display: flex;
  justify-content: center;
}
.frontpage__see-all-cta {
  display: inline-block;
  padding: 15px 20px;
  background-color: #967446;
  color: #fff;
  transition: .2s ease-out;
  font-weight: bold;
  border-radius: 5px;
  border: 2px solid #967446;
}
.frontpage__see-all-cta:hover {
  color: #967446;
  background-color: #fff;
}


/* begin products list */

.product-list__header {
  font-size: 30px;
}
.product-list__image-grid {
  display: flex;
  flex-flow: row wrap;
  margin: 20px -10px;
}
.product-list__product-item {
  flex: 0 0 calc(33.33% - 20px);
  margin: 10px 10px 30px;
}
.product-list__product-item:hover .product-list__product-title {
  color: #967446;
}
.product-list__product-item:hover .product-list__variation-count {
  color: #967446;
}
.product-list__image {
  min-height: 350px;
  object-fit: cover;
  object-position: center;
}
.product-list__product-title, .product-list__product-description, .product-list__product-category {
  color: #2a2a2a;
  transition: .2s ease-out;
}
.product-list__title-variation-container {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  justify-content: space-between;
}
.product-list__variation-count {
  color: #2a2a2a;
  margin-left: 10px;
  font-size: 14px;
  transition: .2s ease-out;
}
.product-list__product-title {
  margin: 20px 0;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-weight: bold;
  font-size: 20px;
}
.product-list__product-price {
  color: #f57224;
  margin: 0 0 20px;
  font-weight: bold;
}
.product-list__product-description {
  opacity: 0.7;
  margin-bottom: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.product-list__product-category {
  text-align: center;
}

/* start single product */
.single-product__content {
  margin-bottom: 50px;
}
.single-product__top-section {
  margin-bottom: 40px;
}
.single-product__title {
  font-size: 50px;
  max-width: 1024px;
  margin-bottom: 20px;
}
.single-product__category {
  font-size: 25px;
  opacity: 0.7;
}
.single-product__image {
  width: 100%;
  object-fit: cover;
  object-position: top;
  margin-bottom: 50px;
}

.single-product__description {
  line-height: 1.2;
}
.single-product__description img{
  margin: 20px auto;
  max-width: 500px;
  width: 100%;
}
.single-product__product-main-content {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
}
.single-product__product-content-left {
  flex: 0 0 48%;
}
.single-product__product-content-right {
  flex: 0 0 48%;
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
}
.single-product__price-variation-container {
  display: flex;
  flex-direction: column;
}
.single-product__price {
  font-weight: bold;
  font-size: 30px;
  margin-bottom: 20px;
}
.single-product__variation-header {
  display: inline-block;
  margin-bottom: 10px;
}
.single-product__variation-container {
  display: flex;
  flex-flow: row wrap;
}
.single-product__variation-item {
  display: inline-block;
  padding: 10px 20px;
  margin: 0 20px 20px 0;
  border: 1px solid #2a2a2a;
  opacity: 0.7;
}
.instructions-content ul li {
  list-style-type: disc;
}


/*responsive*/
@media(max-width: 1024px) and (min-width: 769px) {
  .product-list__product-item {
    flex: 0 0 calc(50% - 20px);
  }
}
@media(max-width: 768px) and (min-width: 280px) {
  .product-list__product-item {
    flex: 0 0 calc(100% - 20px);
  }

  .single-product__product-content-left, .single-product__product-content-right {
    flex: 0 0 100%;
  }
  .single-product__product-content-right {
    padding: 0;
  }
}
