/* Wrapper */
.cw-totals {
  border: 1px solid #fff;
  border-radius: 14px;
  padding: 20px;
}

/* Rows Container */
.cw-totals__rows {
  display: flex;
  flex-direction: column;
}

/* Einzelne Zeile */
.cw-totals__row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 12px 0;
  border-bottom: 1px solid #fff;
  gap: 20px;
}

.cw-totals__row:last-child {
  border-bottom: none;
}

/* Label */
.cw-totals__label {
  font-weight: bold;
  opacity: 0.8;
  color: var(--clr-red);
}

/* Value */
.cw-totals__value {
  text-align: right;
  display: flex;
  flex-direction: column;
}

/* Shipping UL sauber machen */
.cw-totals__value ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.cw-totals__value li {
  margin: 0;
}

/* Gesamt stärker hervorheben */
.cw-totals__row--total {
  font-size: 18px;
  font-weight: 700;
}

/* Checkout Button Abstand */
.cw-totals__checkout {
  margin-top: 20px;
}

.cw-totals__checkout .button {
  width: 100%;
  border: 1px solid var(--clr-red) !important;
  color: var(--clr-red);
  border-radius: 3px;
  padding: 0.5rem 1rem;
}

/* Mobile */
@media (max-width: 768px) {
  .cw-totals__row {
    flex-direction: column;
    align-items: flex-start;
  }

  .cw-totals__value {
    text-align: left;
    width: 100%;
  }
}
