/* ==========================================================
   ESENCY CART PAGE STYLESHEET (styles-cart.css)
   ========================================================== */

.cart-wrap {
  max-width: 960px;
  margin: 40px auto;
  padding: 0 16px;
}

.cart-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 16px;
}

.cart-table th,
.cart-table td {
  padding: 12px;
  border-bottom: 1px solid #222;
}

.qty-btn {
  padding: 4px 10px;
  border: 1px solid #444;
  background: #111;
  color: #fff;
  border-radius: 6px;
  cursor: pointer;
}

.remove-btn {
  border: none;
  background: transparent;
  color: #f66;
  cursor: pointer;
}

.totals {
  display: flex;
  justify-content: flex-end;
  gap: 24px;
  font-weight: 700;
  margin: 16px 0;
}

.checkout-container {
  display: flex;
  justify-content: flex-end;
  margin: 24px 0;
}

.empty {
  text-align: center;
  padding: 40px 0;
  opacity: 0.8;
}

#printify-test-btn {
  padding: 12px 16px;
  border: none;
  border-radius: 8px;
  font-weight: 700;
  background: #111;
  color: #fff;
  cursor: pointer;
}

#printify-test-btn:hover {
  background: var(--brand);
  color: #000;
}
