.cw-cart__wrapper {
  display: block;
}

.cw-item {
  display: flex;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid var(--clr-white);
  margin-bottom: 15px;
  align-items: stretch;
}

.cw-item > .cw-item__col {
  width: 33.33%;
}

.cw-item__col--image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
}

.cw-item__name {
  font-weight: 600;
  margin-bottom: 12px;
}

.cw-item__name a {
  font-size: 24px !important;
  text-decoration: underline !important;
}

.cw-item__qty {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}

.cw-item__qty input.qty {
  width: 60px;
  text-align: center;
}

.cw-qty-minus,
.cw-qty-plus {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  background: #fff;
  cursor: pointer;
}

.cw-item__col--actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
  justify-content: space-between;
}

.cw-item__remove {
  font-size: 18px;
  text-decoration: none;
}

.cw-cart__update {
  margin-top: 20px;
}

.cw-cart__update button {
  border: 1px solid var(--clr-red) !important;
  color: var(--clr-red);
}
.cw-cart__update button:hover,
.cw-cart__update button:focus {
  background-color: var(--clr-red) !important;
}

.cw-item__price span {
  font-size: 32px;
  font-weight: bold;
  color: var(--clr-red);
}

@media (max-width: 768px) {
  .cw-item > .cw-item__col {
    width: 100%;
  }
  .cw-item {
    flex-direction: column;
  }
  .cw-item__col--image img {
    max-width: 70% !important;
  }
}
