
#cart-page .title-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
  padding-right: 1px;
}

#cart-page .title-row > div {
  width: 112px;
  text-align: right;
  margin-right: 16px;
}

#cart-page .cart-products {
  display: flex;
  flex-direction: column;
  gap: 8px;

  font-family: var(--fontHeading);
}

#cart-page .cart-products .cart-product {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 16px;

  padding: 16px;
  border: 1px solid #f3f3f3;
  border-radius: 4px;
}
.cart-product .info-wrap,
.cart-product .price-wrap {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
}

.cart-product .image-wrap {
  min-width: 80px;
  max-width: 80px;
  min-height: 80px;
  max-height: 80px;
}
.cart-product .image-wrap,
#cart-page .recomended-product .image-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border-radius: 2px;
  overflow: hidden;
  padding: 2px;
}
.cart-product .image-wrap::after,
#cart-page .recomended-product .image-wrap::after {
  content: '';
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(75,75,75, 0.03);
  border-radius: 2px;
}
.cart-product .image-wrap img,
#cart-page .recomended-product .image-wrap img {
  width: 100%;
  height: auto;
}
.cart-product .info-wrap .info {
  max-width: 280px;
}
.cart-product .info-wrap .title a {
  color: #000;
  font-size: 14px;
  font-weight: 600;
}
.cart-product .info-wrap .bundled ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
.cart-product .info-wrap .bundled li {
  display: flex;
  align-items: center;
  gap: 2px;
}
.cart-product .info-wrap .bundled .plus i {
  color: var(--positives);
}

.cart-product .price-mobile {
  display: none;
}

.cart-product .price-wrap .price {
  width: 112px;
  text-align: right;
  font-family: var(--fontHeading);
}

.cart-product .input-wrap .change {
  gap: 8px;
  display: flex;
  align-items: center;

}
.cart-product .input-wrap input {
  width: 72px;
  height: 48px;
  border: 1px solid #f3f3f3;
  border-radius: 4px;
  text-align: center;
  font-size: 16px;
}
.cart-product .input-wrap a {
  display: block;
  width: 48px;
  height: 48px;
  border-radius: 8px;
  background-color: #ebf4ff;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cart-product .input-wrap i {
  color: #004d9d;
}



.update-bar {
  margin-top: 16px;
}
.update-bar .inner {
  background: #EBF4FF;
  border-radius: 4px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding: 16px 24px;
  gap: 18px;
}

.update-bar .title {
  font-size: 14px;
}

.update-bar a i {
  font-size: 16px;
  line-height: var(--btnHeight);
  margin-right: 8px;
}
.update-bar a:hover {
  cursor: pointer;
}

.update-bar .discount-wrap {
  max-width: 100%;
}
.update-bar .discount-input-wrap input {
  width: 320px;
  padding: 0 16px;
  margin-right: 16px;
  border: none;
}

.bottom-wrap {
  margin-top: 64px;
}
.bottom-wrap .inner {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap-reverse;
  gap: 64px;
}
.bottom-wrap .recomended-products-wrap {
  flex: 1;
}
.bottom-wrap .recomended-products-title {
  margin-bottom: 16px;
}
#cart-page .recomended-products {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
#cart-page .recomended-product {
  border: 1px solid #f3f3f3;
  border-radius: 4px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: calc(50% - 12px);
}
#cart-page .recomended-product .title a {
  color: #000;
}
#cart-page .recomended-product .image-wrap {
  min-width: 120px;
  max-width: 120px;
  min-height: 120px;
  max-height: 120px;
  padding: 18px;
  margin-bottom: 24px;
}
#cart-page .recomended-product .image-wrap:hover {
  filter:none;
}
#cart-page .recomended-product .title {
  font-size: 14px;
}
#cart-page .recomended-product .price-wrap {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#cart-page .recomended-product .price-wrap a {
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: var(--btnHeight);
  max-width: var(--btnHeight);
  min-height: var(--btnHeight);
  max-height: var(--btnHeight);
  padding: 8px;
}


.bottom-wrap .totals-wrap {
  width: 500px;
  background: #EBF4FF;
  padding: 24px;
  margin-left: auto;
}

.bottom-wrap .totals-wrap .title {
  font-size: 18px;
  margin-bottom: 24px;
}

.bottom-wrap .totals-wrap .totals-table {
  width: 100%;
  font-weight: 600;
  margin-bottom: 24px;
}
.bottom-wrap .totals-wrap .totals-table tr td {
  padding: 4px 0;
}
.bottom-wrap .totals-wrap .totals-table tr td:nth-child(2) {
  text-align: right;
}
.bottom-wrap .totals-wrap .totals-table .text-grey {
  color: #787878;
  font-weight: 400;
}

.bottom-wrap .totals-wrap a.button {
  width: 100%;
}
.button.transparent {
  color: var(--accent);
}
.button.transparent::before {
  background-color: transparent;
}
.button.transparent:hover::before {
  background-color: rgba(0,0,0,0.02);
}


@media (max-width: 1199px) {
  .bottom-wrap .recomended-products-wrap {
    width: 100%;
    flex: unset;
  }
  .bottom-wrap .totals-wrap {
    max-width: 100%;
  }
}
@media (max-width: 991px) {
  #cart-page .title-row > div:last-child,
  .cart-product .price-wrap .price:last-child {
    width: 72px;
  }
  #cart-page .title-row > div:not(last-child),
  .cart-product .price-wrap .price:not(last-child) {
    width: unset;
  }
  .cart-product .info-wrap, 
  .cart-product .price-wrap {
    gap: 8px;
  }
}

@media (max-width: 767px) {
  #cart-page .title-row {
    display: none;
  }
  .cart-product .info-wrap {
    gap: 12px;
  }
  .cart-product .price-wrap {
    display: none;
  }
  .cart-product .price-mobile {
    display: flex;
    margin-top: 8px
  }
  .cart-product .input-wrap {
    margin-top: 16px;
  }
}