.stock-status {
  display: inline-flex;
  align-items: center;
  min-height: 27px;
  margin: 8px 0 4px;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.3;
}

.stock-status.in-stock {
  background: #e8f7ed;
  color: #176b35;
}

.stock-status.out-of-stock {
  background: #fde9e8;
  color: #a12b24;
}

.btn:disabled,
.product-action-btn:disabled,
.home-commerce-actions button:disabled {
  opacity: .52;
  cursor: not-allowed;
  pointer-events: none;
}

.cart-table-wrap {
  padding: 12px 22px;
}

.cart-item-unavailable {
  background: #fff7f6;
}

.cart-quantity-input {
  width: 76px;
  min-height: 40px;
  padding: 8px;
  border: 1px solid #d9d9d9;
  border-radius: 4px;
  text-align: center;
}

.cart-remove-btn {
  padding: 9px 13px;
  white-space: nowrap;
  font-size: 12px;
}

.cart-summary-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 22px;
  border: 1px solid #ececec;
  border-radius: 5px;
  background: #fff;
}

.cart-summary-actions h3,
.cart-stock-warning {
  margin: 0;
}

.cart-adjusted-notice {
  margin-bottom: 18px;
  border-left: 4px solid #e4a62b;
  background: #fff5dd;
  color: #6b4b0a;
}

.cart-stock-warning {
  margin-top: 7px;
  color: #a12b24;
  font-size: 13px;
  font-weight: 600;
}

.cart-empty-state {
  padding: 60px 20px;
  text-align: center;
}

.cart-empty-state > i {
  display: block;
  margin-bottom: 14px;
  color: #e4a62b;
  font-size: 58px;
}

.checkout-stock-summary > div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 9px 0;
  border-bottom: 1px solid #eee;
}

.checkout-stock-summary .checkout-total {
  margin-top: 8px;
  border-bottom: 0;
  font-size: 18px;
}

@media (max-width: 768px) {
  .cart-summary-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .cart-summary-actions .btn {
    margin: 3px 0;
  }
}
