/* Product page top */

.oc-product-top {
  padding: 18px 0 42px;
  background: #fff;
  color: #173913;
}

.oc-product-gallery__main {
  position: relative;
  overflow: hidden;
  border-radius: 3px;
}

.oc-product-gallery__main img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1.03;
  object-fit: cover;
}

.oc-product-gallery__badge {
  position: absolute;
  top: 8px;
  left: 8px;
  z-index: 1;
  padding: 10px 14px;
  border-radius: 3px;
  background: #eb5f79;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
}

.oc-product-gallery__thumbs {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-top: 12px;
}

.oc-product-gallery__arrow {
  flex: 0 0 39px;
  width: 39px;
  height: 39px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #eef5ef;
  color: #3b741e;
  font-size: 38px;
  line-height: 34px;
}

.oc-product-gallery__thumb {
  flex: 0 0 54px;
  width: 54px;
  height: 50px;
  padding: 0;
  overflow: hidden;
  border: 1px solid transparent;
  border-radius: 3px;
  background: none;
}

.oc-product-gallery__thumb.is-active {
  border-color: #3b741e;
}

.oc-product-gallery__thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.oc-product-summary {
  padding-left: 4px;
}

.oc-product-summary__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.oc-product-summary__title {
  margin: 0 0 6px;
  color: #173913;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.1;
}

.oc-product-summary__subtitle {
  margin: 0 0 22px;
  color: #839582;
  font-size: 16px;
}

.oc-product-summary__share {
  flex: 0 0 36px;
  padding: 0;
  border: 0;
  background: none;
  text-align: right;
}

.oc-product-summary__share img {
  width: 25px;
  height: 25px;
}

.oc-product-rating {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 34px;
}

.oc-product-rating__reviews {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.oc-product-rating__stars {
  color: #efbf38;
  font-size: 24px;
  letter-spacing: 2px;
  line-height: 1;
}

.oc-product-rating a {
  color: #173913;
  font-size: 15px;
  text-decoration: underline;
}

.oc-product-rating__price {
  margin: 0;
  color: #3b741e;
  font-size: 42px;
  line-height: 1;
  white-space: nowrap;
}

.oc-product-rating__price span {
  font-size: 15px;
  font-weight: 700;
}

#product {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.oc-product-buy {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 28px;
}

.oc-product-buy__type {
  flex: 0 1 276px;
}

.oc-product-buy__qty {
  flex: 0 0 182px;
}

.oc-product-field-label {
  margin: 0 0 12px;
  color: #839582;
  font-size: 14px;
  font-weight: 700;
  text-align: left;
}

.oc-product-qty {
  display: flex;
  width: 100%;
  height: 46px;
  background: #f8faf8;
}

.oc-product-qty__btn,
.oc-product-qty__input {
  flex: 1 1 0;
  height: 46px;
  border: 0;
  border-radius: 0;
  background: transparent;
  text-align: center;
  box-shadow: none;
}

.oc-product-qty__btn {
  color: #3b741e;
  font-size: 28px;
  line-height: 26px;
}

.oc-product-qty__input {
  color: #173913;
  font-weight: 700;
}

.oc-product-summary__cart {
  width: 100%;
  height: 46px;
  margin-bottom: 16px;
  border: 0;
  border-radius: 3px;
  background: #3b741e;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
}

.oc-product-summary__cart:hover,
.oc-product-summary__cart:focus {
  background: #2f5f18;
  color: #fff;
}

.oc-product-summary__cart img {
  width: 18px;
  margin-right: 8px;
}

.oc-product-benefit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 50px;
  margin-bottom: 8px;
  padding: 12px 18px;
  background: #f8faf8;
}

.oc-product-benefit img {
  width: 25px;
  flex: 0 0 25px;
}

.oc-product-benefit span {
  color: #173913;
  font-size: 15px;
}

@media (max-width: 991px) {
  .oc-product-summary {
    padding-left: 0;
  }

  .oc-product-summary__title {
    font-size: 34px;
  }

  .oc-product-rating,
  .oc-product-buy {
    align-items: flex-start;
    flex-direction: column;
  }

  .oc-product-buy__type,
  .oc-product-buy__qty {
    /* width: 100%; */
    flex-basis: auto;
  }
}

@media (max-width: 767px) {
  .oc-product-gallery {
    margin-bottom: 24px;
  }

  .oc-product-summary__title {
    font-size: 30px;
  }

  .oc-product-gallery__thumbs {
    justify-content: center;
  }
}

@media (max-width: 600px) {
  #product {
    justify-content: center;
  }
  
  .oc-product-buy__qty {
    margin-top: 15px;
    display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        gap: 15px;
  }
  .oc-product-type, .oc-product-buy__type {
    width: 100%;
  }
  
}
