/* CART LAYOUT */
.cart-layout .card {
  border-radius: 0;
  border: 1px solid var(--color-border);
}

/* ITEMS — no outer border, dividers between items */

.cart-items {
  border: none !important;
}

.cart-items .card-body {
  padding: 1.25rem 1rem 1.5rem;
}

.cart-table tbody tr td {
  vertical-align: middle;
}

.cart-table {
  border-color: var(--color-border);
  border-width: 0;
}

.cart-table > :not(caption) > * > * {
  border-bottom-color: var(--color-border);
  border-bottom-width: 1px;
}

.cart-table tbody tr:last-child > * {
  border-bottom-width: 0;
}

.cart-table tbody tr:last-child {
  border-bottom: none;
}

.cart-product {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.cart-product-img {
  flex: 0 0 64px;
  height: 64px;
  border-radius: 0;
  overflow: hidden;
  background: var(--color-bg-soft);
}

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

.cart-product-text {
  min-width: 0;
}

.cart-product-brand {
  font-size: 0.75rem;
  color: var(--color-muted);
}

.cart-product-name {
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* qty controls */

.cart-qty-input {
  max-width: 80px;
  border-radius: 0;
}

/* MOBILE LIST — dividers between items, no outer border */

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

.cart-mobile-item {
  display: flex;
  gap: 0.75rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--color-border);
}

.cart-mobile-item:last-child {
  border-bottom: none;
}

.cart-mobile-img {
  flex: 0 0 80px;
  height: 80px;
  border-radius: 0;
  overflow: hidden;
  background: var(--color-bg-soft);
}

.cart-mobile-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cart-mobile-body {
  flex: 1;
  min-width: 0;
}

.cart-mobile-name {
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 0.1rem;
}

.cart-mobile-brand {
  font-size: 0.75rem;
  color: var(--color-muted);
}

.cart-mobile-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  margin-top: 0.25rem;
}

.cart-mobile-price {
  font-weight: 600;
}

.cart-mobile-subtotal {
  font-size: 0.8rem;
  color: var(--color-muted);
}

/* SUMMARY */

.cart-summary .card-body {
  padding: 1.25rem 1.25rem 1.5rem;
}

.cart-summary .btn,
.cart-summary .form-control {
  border-radius: 0;
}

/* small tweaks */

@media (max-width: 767.98px) {
  .cart-items .card-body {
    padding: 1rem 0.75rem 1.1rem;
  }
}

.cart-table .price-block {
  align-items: flex-end;
}
.cart-table .price-old {
  text-decoration: line-through;
}
.cart-mobile-price .price-block {
  align-items: flex-start;
}
/* Cart table – price column */
.cart-table td:nth-child(2),
.cart-table th:nth-child(2) {
  min-width: 120px;
  white-space: nowrap;
}
.cart-table td:nth-child(4),
.cart-table th:nth-child(4) {
  min-width: 120px;
  white-space: nowrap;
}
