/* Cart Wrapper */
.cart-wrapper {
  display: flex;
  gap: 48px;
  align-items: flex-start;
  margin-bottom: 80px;
}

.cart-items {
  flex: 1;
  max-width: 840px;
}

.cart-summary {
  width: 312px;
  flex: 0 0 312px;
}

/* Cart Item */
.cart-item {
  position: relative;
  display: flex;
  gap: 24px;
  padding: 24px 0;
  border-top: 1px solid #CCCCCC;
}

.cart-item:last-child {
  border-bottom: 1px solid #CCCCCC;
}

.cart-item__delete {
  position: absolute;
  top: 12px;
  right: 0;
  display: flex;
  align-items: center;
  gap: 3px;
  padding: 6px 10px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 8px;
  background: transparent;
  cursor: pointer;
}

.cart-item__delete svg {
  width: 20px;
  height: 20px;
}

.cart-item__delete span {
  color: #000000;
  font-weight: 600;
  font-size: 16px;
  line-height: 1;
}

.cart-item__image {
  width: 211px;
  height: 158px;
  object-fit: cover;
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.05);
  flex: 0 0 211px;
}

.cart-item__info {
  display: flex;
  gap: 24px;
  flex: 1;
}

.cart-item__details {
  flex: 1;
}

.cart-item__label {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 8px;
  background: rgba(0, 0, 0, 0.05);
  border-radius: 4px;
  color: #000000;
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 15px;
  margin-top: 28px;
}

.cart-item__name {
  color: #353535;
  font-weight: 500;
  font-size: 20px;
  line-height: 1.375;
  margin-bottom: 4px;
}

.cart-item__price {
  color: #353535;
  font-weight: 500;
  font-size: 18px;
  line-height: 1.375;
  margin-bottom: 3px;
}

.cart-item__price-tax {
  color: #858585;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.375;
}

.cart-item__quantity-section {
  width: 154px;
  flex: 0 0 154px;
}

.cart-item__quantity {
  display: flex;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 8px;
  overflow: hidden;
  height: 48px;
}

.cart-item__quantity-btn {
  width: 47px;
  height: 46px;
  border: none;
  background: rgba(0, 0, 0, 0.05);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #353535;
  font-size: 20px;
  font-weight: 500;
}

.cart-item__quantity-btn--minus {
  border-right: 1px solid rgba(0, 0, 0, 0.2);
}

.cart-item__quantity-btn--plus {
  border-left: 1px solid rgba(0, 0, 0, 0.2);
}

.cart-item__quantity-value {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #353535;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.375;
}

.cart-item__subtotal-section {
  width: 164px;
  flex: 0 0 164px;
}

.cart-item__subtotal {
  color: #353535;
  font-weight: 500;
  font-size: 20px;
  line-height: 1.375;
  margin-top: 12px;
  text-align: right;
}

.cart-item__subtotal-tax {
  font-size: 16px;
}
/* Cart Summary */
.cart-summary {
  border: 1px solid #CCCCCC;
  border-radius: 12px;
  padding: 24px;
}

.cart-summary__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 27px;
  padding-bottom: 16px;
  border-bottom: 1px solid #CCCCCC;
  margin-bottom: 16px;
}

.cart-summary__row:last-of-type {
  margin-bottom: 24px;
}

.cart-summary__label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
  background: rgba(0, 0, 0, 0.05);
  border-radius: 4px;
  color: #353535;
  font-weight: 700;
  font-size: 16px;
  line-height: 2;
  width: 141px;
  flex: 0 0 141px;
}

.cart-summary__value {
  color: #353535;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.5;
  text-align: right;
}

.cart-summary__checkout {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 10px;
  background: #8B6E00;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  position: relative;
  cursor: pointer;
}
.cart-summary__checkout:hover {
  opacity: 0.8;
}

.cart-summary__checkout svg {
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
}
.cart-summary__checkout-icon {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
}

.cart-summary__checkout span {
  color: #F5F5F5;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.5;
  margin-right: 24px;
}

.cart-summary__note {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 12px;
  margin-top: 40px;
}

.cart-summary__note svg {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
}

.cart-summary__note span {
  color: #353535;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.5;
}

.cart-item__info-wrapper {
  flex: 1;
  display: flex;
  gap: 24px;
}

@media screen and (max-width: 1200px) {
  .cart-wrapper {
    flex-direction: column;
  }
  .cart-summary {
    width: 100%;
  }

}

@media screen and (max-width: 890px) {
  .cart-item {
    flex-direction: column;
    height: auto;
    padding-bottom: 80px;
  }
  .cart-item__info {
    flex-direction: column;
  }
  .cart-item__delete {
    top: unset;
    bottom: 24px;
  }
  .cart-item__label {
    margin-top: 0;
  }

  .cart-item__image {
    margin: auto;
    width: 284px;
    height: 213px;
  }
  .cart-item__info-wrapper {
    flex-direction: row;
    width: 100%;
  }
  .cart-item__subtotal-section {
    flex: 1;
  }
}


@media screen and (max-width: 1200px) and (min-width: 600px) {
  .cart-summary {
    display: flex;
    gap: 40px;
    flex: auto;
    padding: 32px;
  }
  .cart-items {
    width: 100%;
    max-width: 100%;
  }
  .cart-summary__inner_1 {
    width: 100%;
    max-width: 100%;
  }
  .cart-summary__inner_2 {
    width: 100%;
    max-width: 100%;
  }
  .cart-summary__note {
    margin-top: 0;
  }
  .cart-summary__row:last-of-type {
    margin-bottom: 0;
  }
}

@media screen and (max-width: 600px) {
  .cart-items {
    width: 100%;
    max-width: 100%;
  }
}
