.cart-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.cart-item-card {
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr);
  gap: 22px;
  padding: 22px;
  background: #fff;
  border: 1px solid #ece9e5;
  box-shadow: 0 10px 30px rgba(28, 18, 11, 0.04);
  align-items: center;
}

.cart-item-image-link {
  text-decoration: none;
}

.cart-item-image-wrap {
  width: 100%;
  height: 200px;
  background: linear-gradient(to bottom, #f8f6f4, #f1eeea);
  border: 1px solid #e4dfda;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  overflow: hidden;
}

.cart-item-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.cart-item-main {
  min-width: 0;
}

.cart-item-top {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: flex-start;
  margin-bottom: 18px;
}

.cart-item-title {
  margin: 0 0 8px;
  font-size: 28px;
  line-height: 1.2;
}

.cart-item-title a {
  text-decoration: none;
  color: #1e2430;
}

.cart-item-title a:hover {
  color: #65081f;
}

.cart-item-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  color: #6e6862;
  font-size: 14px;
}

.cart-stock-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  border: 1px solid transparent;
}

.cart-stock-badge.is-in-stock {
  background: #edf7f0;
  color: #1f6b3a;
  border-color: #cfe7d7;
}

.cart-stock-badge.is-out-stock {
  background: #f8ebee;
  color: #7a1f2e;
  border-color: #dfb8c2;
}

.cart-item-price {
  font-size: 24px;
  font-weight: 700;
  color: #65081f;
  white-space: nowrap;
}

.cart-item-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  padding-top: 16px;
  border-top: 1px solid #ece9e5;
}

.cart-item-qty,
.cart-item-total {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.cart-item-qty-label,
.cart-item-total-label {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: #8a8179;
  font-weight: 700;
}

.cart-item-qty-value,
.cart-item-total strong {
  font-size: 18px;
  color: #222;
}

.cart-summary-card {
  padding: 26px 24px;
  background: #fff;
  border: 1px solid #ece9e5;
  box-shadow: 0 10px 30px rgba(28, 18, 11, 0.04);
  position: sticky;
  top: 110px;
}

.cart-summary-head {
  margin-bottom: 22px;
}

.cart-summary-head h2 {
  margin: 0 0 8px;
  font-size: 28px;
  color: #1e2430;
}

.cart-summary-head p {
  margin: 0;
  color: #6e6862;
  line-height: 1.7;
}

.cart-summary-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 0;
  border-top: 1px solid #ece9e5;
  color: #4f4a45;
}

.cart-summary-total {
  font-size: 18px;
  color: #1e2430;
}

.cart-checkout-btn {
  width: 100%;
  min-height: 54px;
  margin-top: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #65081f;
  border: 1px solid #65081f;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  transition: all 0.25s ease;
}

.cart-checkout-btn:hover {
  background: #4f0618;
  border-color: #4f0618;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(101, 8, 31, 0.18);
}

.cart-continue-link {
  margin-top: 16px;
  display: inline-block;
  color: #65081f;
  text-decoration: none;
  font-weight: 700;
}

.cart-continue-link:hover {
  color: #4f0618;
}

@media (max-width: 991px) {
  .cart-item-card {
    grid-template-columns: 1fr;
  }

  .cart-summary-card {
    position: static;
  }
}

@media (max-width: 768px) {
  .cart-item-top,
  .cart-item-bottom {
    flex-direction: column;
  }

  .cart-item-title {
    font-size: 22px;
  }

  .cart-item-price {
    font-size: 22px;
  }
}

.cart-state {
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.cart-state-icon {
  font-size: 50px;
  color: #888;
  margin-bottom: 20px;
}

.cart-state-title {
  font-weight: 500;
  margin-bottom: 15px;
}

.cart-item-qty-control {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.cart-qty-btn {
  width: 38px;
  height: 38px;
  border: 1px solid #d8d6d4;
  background: #fff;
  color: #222;
  font-size: 20px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s ease;
}

.cart-qty-btn:hover {
  background: #65081f;
  border-color: #65081f;
  color: #fff;
}

.cart-qty-btn:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}