/** Shopify CDN: Minification failed

Line 241:27 Expected "}" to go with "{"

**/
/* assets/custom-cart-design.css */

.cc-wrapper {
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 20px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: #111;
}

/* --- HEADER --- */
.cc-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 50px;
}

.cc-title {
  font-size: 42px; /* Groß und Fett wie im Screenshot */
  font-weight: 700;
  margin: 0;
  line-height: 1.1;
}

.cc-continue-link {
  font-size: 16px;
  color: #111;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* --- TABLE HEADER (Grid) --- */
.cc-table-header {
  display: grid;
  grid-template-columns: 3fr 1.5fr 1fr; /* Produkt | Anzahl | Summe */
  border-bottom: 1px solid #e5e5e5;
  padding-bottom: 15px;
  margin-bottom: 30px;
}

.cc-th {
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #777;
  font-weight: 600;
}

.cc-th.center { text-align: center; padding-right: 40px; } /* Optische Korrektur für Anzahl */
.cc-th.right { text-align: right; }

/* --- CART ITEM ROW --- */
.cc-item-row {
  display: grid;
  grid-template-columns: 120px 1fr 1.5fr 1fr; /* Bild | Info | Anzahl-Box | Summe */
  gap: 30px;
  align-items: start;
  border-bottom: 1px solid #e5e5e5;
  padding-bottom: 30px;
  margin-bottom: 30px;
}

/* Spalte 1: Bild */
.cc-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

/* Spalte 2: Info & Einzelpreise */
.cc-info {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.cc-product-title {
  font-size: 18px;
  font-weight: 700;
  color: #000;
  text-decoration: none;
  line-height: 1.4;
  margin-bottom: 5px;
}

.cc-unit-prices {
  font-size: 16px;
  color: #444;
  margin-bottom: 8px;
}

.cc-price-old {
  text-decoration: line-through;
  color: #999;
  margin-right: 8px;
}

.cc-price-new {
  font-weight: 600;
  color: #111;
}

.cc-discount-tag {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: #444;
  margin-top: 5px;
}

.cc-discount-tag svg {
  width: 14px;
  height: 14px;
  fill: #000; 
}

/* Spalte 3: Menge & Trash */
.cc-qty-wrapper {
  display: flex;
  align-items: center;
  justify-content: center; /* Zentriert in der Spalte */
  gap: 20px;
}

.cc-qty-box {
  display: flex;
  align-items: center;
  border: 1px solid #111; /* Schwarzer Rahmen wie im Bild */
  padding: 0;
  width: 140px;
  height: 44px;
}

.cc-qty-btn {
  background: none;
  border: none;
  width: 40px;
  height: 100%;
  font-size: 18px;
  cursor: pointer;
  color: #111;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cc-qty-input {
  width: 100%;
  border: none;
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  color: #111;
  -moz-appearance: textfield;
}
.cc-qty-input:focus { outline: none; }
.cc-qty-input::-webkit-outer-spin-button,
.cc-qty-input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }

.cc-remove-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
  opacity: 0.6;
  transition: opacity 0.2s;
}
.cc-remove-btn:hover { opacity: 1; }

/* Spalte 4: Gesamtsumme */
.cc-total-col {
  text-align: right;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.cc-line-old {
  text-decoration: line-through;
  color: #999;
  font-size: 16px;
  display: block;
  margin-bottom: 4px;
}

.cc-line-new {
  font-weight: 700;
  font-size: 18px;
  color: #111;
}

/* --- FOOTER / SUMMARY --- */
.cc-footer {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  margin-top: 40px;
  text-align: right;
}

.cc-summary-row {
  display: flex;
  align-items: baseline;
  gap: 20px;
  margin-bottom: 15px;
}

.cc-label-total {
  font-size: 18px;
  font-weight: 700;
  color: #000;
}

.cc-price-total {
  font-size: 24px;
  font-weight: 400; /* Wie im Screenshot eher normal/leicht fett */
  color: #333;
}

.cc-tax-note {
  font-size: 14px;
  color: #555;
  line-height: 1.5;
  max-width: 400px;
}

.cc-tax-note a { color: inherit; text-decoration: underline; }

/* Loading State Overlay */
.cc-wrapper.loading { opacity: 0.6; pointer-events: none; }

/* Mobile Responsive */
@media (max-width: 768px) {