/* Heet - Cart page */

.cart-page {
  padding-top: 40px;
  padding-bottom: 80px;
}

.cart-container {
  margin: 0 auto;
  width: 100%;
}

.cart-header {
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 24px;
  padding-bottom: 8px;
  border-bottom: 2px solid #000;
}

.cart-header h1 {
  font-size: 24px;
  font-weight: 500;
  margin: 0;
  color: #000;
}

.cart-count {
  font-size: 12px;
  color: #888;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Items */
.cart-items {
  margin-bottom: 14px;
}

.cart-item {
  background-color: #EFEFEF;
  border-radius: 8px;
  padding: 16px 24px;
  display: flex;
  align-items: stretch;
  position: relative;
  margin-bottom: 16px;
}

.cart-item__remove {
  position: absolute;
  top: 16px;
  right: 24px;
  background: none;
  border: none;
  font-size: 20px;
  color: #999;
  cursor: pointer;
  padding: 0;
  line-height: 1;
}

.cart-item__remove:hover {
  color: #000;
}

.cart-item__image {
  width: 140px;
  height: 140px;
  object-fit: contain;
  margin-right: 32px;
  mix-blend-mode: multiply;
}

.cart-item__details {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.cart-item__title {
  font-size: 26px;
  font-weight: 500;
  color: #000;
  margin-bottom: 4px;
  padding-right: 32px;
  text-align: left !important;
  direction: ltr !important;
}

.cart-item__unit-price {
  font-family: var(--heet-font, 'Helvetica Now Text', Helvetica, Arial, sans-serif);
}

.cart-item__unit-price span:first-child {
  font-size: 14px;
}

.cart-item__unit-price span:last-child {
  font-size: 18px;
  font-weight: 500;
}

.cart-item__bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-top: 24px;
}

.cart-qty-form {
  display: flex;
  align-items: center;
  gap: 16px;
}

.cart-qty-btn {
  background: none;
  border: none;
  font-size: 16px;
  color: #666;
  cursor: pointer;
  padding: 0;
}

.cart-qty-btn:hover {
  color: #000;
}

.cart-qty-input {
  width: 20px;
  text-align: center;
  border: none;
  background: transparent;
  font-size: 14px;
  font-weight: 500;
  color: #000;
  appearance: none;
}

.cart-qty-input::-webkit-outer-spin-button,
.cart-qty-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.cart-item__price {
  font-size: 18px;
  font-weight: 600;
  color: #000;
}

/* Summary Box */
.cart-summary-box {
  background-color: #EFEFEF;
  border-radius: 8px;
  padding: 32px 24px;
  margin-bottom: 16px;
}

.cart-summary__title {
  font-size: 16px;
  font-weight: 500;
  margin: 0 0 24px;
  color: #000;
}

.cart-summary__row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 16px;
  font-size: 14px;
  color: #333;
}

.cart-summary__row:last-child {
  margin-bottom: 0;
}

.cart-summary__divider {
  height: 1px;
  background-color: #D1D1D1;
  margin: 16px 0;
}

.cart-summary__total-row {
  margin-top: 32px;
  font-weight: 600;
  font-size: 16px;
  color: #000;
  align-items: center;
}

.cart-summary__total-price {
  font-size: 20px;
}

/* Checkout Box */
.cart-checkout-box {
  background-color: #EFEFEF;
  border-radius: 8px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cart-discount-form {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 8px;
  gap: 16px;
}

.cart-discount-input {
  flex-grow: 1;
  border: none;
  border-bottom: 1px solid #D1D1D1;
  background: transparent;
  padding: 8px 0;
  font-size: 14px;
  outline: none;
}

.cart-discount-input::placeholder {
  color: #999;
}

.cart-discount-btn {
  background: #000;
  border: 1px solid #000;
  color: #fff;
  border-radius: 4px;
  padding: 8px 32px;
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
}

.cart-discount-btn:hover {
  background: #222;
}

.heet-btn--checkout {
  background: #000;
  color: #fff;
  border: none;
  border-radius: 4px;
  width: 100%;
  padding: 14px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  text-align: center;
  transition: opacity 0.2s;
}

.heet-btn--checkout:hover {
  opacity: 0.9;
  background: #222;
  color: #fff;
  text-decoration: none;
}

.heet-btn--continue {
  background: transparent;
  color: #000;
  border: 1px solid #D1D1D1;
  border-radius: 4px;
  width: 100%;
  padding: 14px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  text-align: center;
  transition: all 0.2s;
}

.heet-btn--continue:hover {
  background: #fff;
  text-decoration: none;
}

.cart-empty {
  text-align: center;
  padding: 64px 0;
  background: #EFEFEF;
  border-radius: 8px;
}

.cart-empty p {
  font-size: 18px;
  color: #666;
  margin-bottom: 24px;
}

.cart-empty .heet-btn--checkout {
  width: auto;
  padding: 14px 32px;
}

@media (max-width: 640px) {
  .cart-item {
    padding: 16px;
  }

  .cart-item__image {
    width: 60px;
    margin-right: 16px;
  }

  .cart-summary-box {
    padding: 24px 16px;
  }

  .cart-checkout-box {
    padding: 16px;
  }

  .cart-discount-form {
    flex-direction: column;
    align-items: stretch;
  }
}