/* [project]/src/app/cart.css [app-client] (css) */
.cart-page {
  background: #fff;
  min-height: 60vh;
  padding: 40px 0 60px;
}

.cart-layout {
  grid-template-columns: 1fr 360px;
  align-items: flex-start;
  gap: 40px;
  display: grid;
}

.cart-left {
  flex-direction: column;
  gap: 0;
  display: flex;
}

.cart-right {
  position: sticky;
  top: 24px;
}

.cart-table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
}

.cart-table-header, .cart-table tbody {
  border-bottom: 1px solid #e0e0e0;
}

.cart-th {
  color: #8e8e8e;
  text-transform: capitalize;
  letter-spacing: .01em;
  text-align: left;
  white-space: nowrap;
  padding: 12px 10px;
  font-size: 13px;
  font-weight: 400;
}

.cart-th-product {
  width: 45%;
  padding-left: 0;
}

.cart-th-price, .cart-th-quantity {
  text-align: center;
}

.cart-th-subtotal {
  text-align: right;
  padding-right: 0;
}

.cart-item-row {
  border-bottom: none;
}

.cart-item-row:hover {
  background-color: #fafafa;
}

.cart-td {
  vertical-align: middle;
  padding: 20px 10px;
}

.cart-td-product {
  padding-left: 0;
}

.cart-td-price, .cart-td-quantity {
  text-align: center;
}

.cart-td-subtotal {
  text-align: right;
  padding-right: 0;
}

.cart-product-info {
  align-items: center;
  gap: 16px;
  display: flex;
}

.cart-product-thumbnail-link {
  background: #f7f7f7;
  border: none;
  border-radius: 0;
  width: 80px;
  min-width: 80px;
  height: 80px;
  display: flex;
  overflow: hidden;
}

.cart-product-thumbnail-link img {
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.cart-product-details {
  flex-direction: column;
  gap: 3px;
  display: flex;
}

.cart-product-title {
  color: #000;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
}

.cart-quantity-controls {
  border: 1px solid #d5d5d5;
  border-radius: 0;
  align-items: center;
  display: inline-flex;
  overflow: hidden;
}

.cart-qty-btn {
  cursor: pointer;
  color: #555;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  background: #fff;
  border: none;
  justify-content: center;
  align-items: center;
  width: 34px;
  height: 34px;
  font-size: 15px;
  transition: all .15s;
  display: flex;
}

.cart-qty-btn:hover:not(:disabled) {
  color: #000;
  background: #f5f5f5;
}

.cart-qty-btn:disabled {
  opacity: .3;
  cursor: not-allowed;
}

.cart-qty-value {
  color: #000;
  background: #fff;
  border-left: 1px solid #d5d5d5;
  border-right: 1px solid #d5d5d5;
  justify-content: center;
  align-items: center;
  width: 38px;
  height: 34px;
  font-size: 14px;
  font-weight: 400;
  display: flex;
}

.cart-subtotal-cell {
  justify-content: flex-end;
  align-items: center;
  gap: 14px;
  display: flex;
}

.cart-delete-x-btn {
  cursor: pointer;
  color: #a0a0a0;
  background: none;
  border: none;
  justify-content: center;
  align-items: center;
  width: 24px;
  height: 24px;
  padding: 0;
  font-size: 18px;
  line-height: 1;
  transition: color .15s;
  display: flex;
}

.cart-delete-x-btn:hover {
  color: #000;
}

.cart-bottom-actions {
  border-top: none;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-top: 8px;
  padding: 24px 0 0;
  display: flex;
}

.cart-coupon-section {
  align-items: center;
  gap: 0;
  display: flex;
}

.cart-coupon-input {
  color: #000;
  border: 1px solid #d5d5d5;
  border-right: none;
  border-radius: 0;
  outline: none;
  min-width: 170px;
  height: 42px;
  padding: 0 14px;
  font-size: 13px;
  transition: border-color .2s;
}

.cart-coupon-input::-moz-placeholder {
  color: #a0a0a0;
  font-style: italic;
}

.cart-coupon-input::placeholder {
  color: #a0a0a0;
  font-style: italic;
}

.cart-coupon-input:focus {
  border-color: #888;
}

.cart-apply-coupon-btn {
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #000;
  cursor: pointer;
  white-space: nowrap;
  background: #fff;
  border: 2px solid #000;
  height: 42px;
  padding: 0 20px;
  font-size: 12px;
  font-weight: 700;
  transition: all .2s;
}

.cart-apply-coupon-btn:hover {
  color: #fff;
  background: #000;
}

.cart-action-buttons {
  align-items: center;
  gap: 12px;
  display: flex;
}

.cart-empty-btn {
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #000;
  cursor: pointer;
  white-space: nowrap;
  background: #fff;
  border: none;
  align-items: center;
  gap: 8px;
  height: 42px;
  padding: 0 18px;
  font-size: 12px;
  font-weight: 700;
  transition: color .2s;
  display: flex;
}

.cart-empty-btn:hover {
  color: #555;
}

.cart-empty-btn:disabled {
  opacity: .5;
  cursor: not-allowed;
}

.cart-update-btn {
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #fff;
  cursor: default;
  white-space: nowrap;
  background: #e0e0e0;
  border: none;
  border-radius: 0;
  height: 42px;
  padding: 0 26px;
  font-size: 12px;
  font-weight: 700;
}

.cart-update-btn:hover {
  background: #d0d0d0;
}

.cart-summary-card {
  background: #f7f7f7;
  border: 1px solid #e0e0e0;
  border-radius: 0;
  flex-direction: column;
  gap: 18px;
  padding: 24px 20px;
  display: flex;
}

.cart-summary-row {
  justify-content: space-between;
  align-items: flex-start;
  display: flex;
}

.cart-summary-label {
  color: #555;
  font-size: 14px;
  font-weight: 500;
}

.cart-summary-label-primary {
  color: #000;
  font-size: 14px;
  font-weight: 700;
}

.cart-summary-value {
  color: #000;
  font-size: 14px;
  font-weight: 600;
}

.cart-summary-shipment {
  flex-direction: column;
  gap: 8px;
  display: flex;
}

.cart-summary-shipping-info {
  flex-direction: column;
  gap: 5px;
  display: flex;
}

.cart-free-shipping {
  color: #000;
  text-underline-offset: 2px;
  font-size: 13px;
  font-weight: 400;
  text-decoration: underline;
}

.cart-shipping-to-label {
  color: #8e8e8e;
  font-style: italic;
}

.cart-shipping-address {
  color: #8e8e8e;
  direction: rtl;
  font-size: 12px;
  font-style: italic;
  line-height: 1.5;
}

.cart-change-address {
  color: #000;
  cursor: pointer;
  align-items: center;
  gap: 5px;
  margin-top: 2px;
  font-size: 12px;
  text-decoration: none;
  transition: color .15s;
  display: inline-flex;
}

.cart-change-address:hover {
  color: #555;
}

.cart-summary-divider {
  background: #e0e0e0;
  height: 1px;
}

.cart-summary-total {
  padding: 0;
}

.cart-summary-label-total, .cart-summary-value-total {
  color: #000;
  font-size: 15px;
  font-weight: 700;
}

.cart-checkout-link {
  text-decoration: none;
  display: block;
}

.cart-checkout-btn {
  color: #000;
  letter-spacing: .08em;
  text-transform: uppercase;
  cursor: pointer;
  background: #fff;
  border: 2px solid #000;
  width: 100%;
  height: 48px;
  font-size: 13px;
  font-weight: 700;
  transition: all .2s;
}

.cart-checkout-btn:hover {
  color: #fff;
  background: #000;
}

@media (width <= 960px) {
  .cart-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .cart-right {
    position: static;
  }
}

@media (width <= 640px) {
  .cart-page {
    padding: 20px 0 40px;
  }

  .cart-th-price, .cart-td-price {
    display: none;
  }

  .cart-product-thumbnail-link {
    width: 64px;
    min-width: 64px;
    height: 64px;
  }

  .cart-coupon-input {
    min-width: 120px;
  }

  .cart-bottom-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .cart-action-buttons {
    justify-content: flex-end;
  }
}


/*# sourceMappingURL=src_app_cart_8664dd8d.css.map*/