.block-product {
  padding-bottom: 100px;
}
.block-shop > .block-product {
  padding-bottom: 0;
}
.block-header + .block-product {
  margin-top: 100px;
}

.block-product-wrapper {
  padding-top: 50px;
  padding-bottom: 50px;

  &.add {
    color: #fff;
    .gradienty(@color-accent2, @color-accent3);
  }
  &.update {
    background-color: #e8eff3;
  }
}

.block-product-container {
  position: relative;
}

.block-product-image {
  position: absolute;
  top: 50%;
  left: 60px;
  transform: translateY(-50%);
}

.block-product-main {
  display: flex;
}
.block-product-main.add {
  justify-content: flex-end;
}
.block-product-main.update {
  justify-content: center;
}
.block-product-main-inner {
  width: 450px;
}

.block-product-article-title {
  margin-bottom: 20px;
}
.block-product-wrapper.add .block-product-article-title {
  color: #fff;
}
.block-product-article-subtitle {
  margin-bottom: 5px;
}

.block-product-meta {
  padding-top: 40px;
}
.block-product-meta-title {
  display: block;
  margin-bottom: 20px;
}

.block-product-quantity {
  display: flex;
}
.block-product-quantity-btn {
  width: 40px;
  height: 40px;
  font-size: 19px;
  font-weight: bold;
  color: #fff;
  background-color: @color-gray;
  user-select: none;

  &:hover,
  &:active {
    background-color: darken(@color-gray, 10%);
  }
}
.block-product-quantity-val {
  display: block;
  width: 80px;
  height: 40px;
  font-size: 19px;
  font-weight: bold;
  text-align: center;
  border: 1px solid #fff;

  &:focus {
    outline: 0;
  }
}

.block-product-meta-btn {
  padding-left: 25px;
  padding-right: 25px;
  color: @color-accent3;
  text-transform: none;
  background: #fff;
}

// responsive

@media (max-width: @screen-md) {
  .block-product-wrapper {
    padding-top: 0;
    text-align: center;
  }
  .block-product-image {
    position: static;
    max-width: 100px;
    .mxauto;
    transform: none;
  }
  .block-product-image > img {
    position: relative;
    top: -50px;
  }
  .block-product-main {
    display: block;
  }
  .block-product-main.update {
    padding-top: 50px;
  }
  .block-product-main-inner {
    width: auto;
  }
  .block-product-meta-bar {
    display: block;
  }
  .block-product-meta-btn {
    margin-top: 20px;
  }
  .block-product-quantity {
    justify-content: center;
  }
}
