/* Warenkorb */
.return-to-shop .button {
	background-color: #8360C3 !important;
	color: #fff !important; 
	border-radius: 20px !important;
	font-family: Comfortaa;
	margin-top: 20px !important;
	font-size: 12px !important;
	padding: 12px 20px !important;
}
.cart-empty.woocommerce-info {
	margin: 0px !important;
}
/* Layout für die Cart-Seite */
.cart-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 20px; /* Abstand zwischen den Spalten */
}

/* Linke Spalte: Produkt-Tabelle */
.cart-left {
    flex: 1 1 60%; /* Nimmt mindestens 60% der Breite ein */
    max-width: 70%; /* Maximale Breite der linken Spalte */
    box-sizing: border-box;
}

/* Rechte Spalte: Cart-Totals */
.cart-right {
    flex: 1 1 30%; /* Nimmt mindestens 30% der Breite ein */
    max-width: 35%; /* Maximale Breite der rechten Spalte */
}
.cart-summe {
    background-color: #fff; /* Optional: Hintergrundfarbe */
    padding: 20px;
    border: 2px solid #f1f1f1;
    border-radius: 15px;
    box-sizing: border-box;
}
.cart-summe h2 {
    font-size: 17px;
}
.cart-summe td, .cart-summe th {
    background-color: #fff;
    color: #000;
}
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit.alt, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button.alt, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button.alt, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button.alt, :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce #respond input#submit.alt, :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce a.button.alt, :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce button.button.alt, :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce input.button.alt{
    background-color: #CE1417;
    border: 1px solid #CE1417;
    border-radius: 100px; 
}

/* Tabelle im Warenkorb */
.shop_table {
    width: 100%;
    border-collapse: collapse;
}

.shop_table th, 
.shop_table td {
    padding: 0px;
    border: 0px solid !important;
    text-align: left;
    background-color: #fff !important;
}

.shop_table th {
    background-color: #fff;
    font-weight: bold;
}
table tbody>tr:nth-child(odd)>td, table tbody>tr:nth-child(odd)>th {
    background-color: #fff !important;
}
.woocommerce table.shop_table {
    border: 0px solid !important;
}

/* Tabelle 2 */
.gutschein {
    width: 20px;
}

/* Buttons */
.actions button,
.coupon button {
    background-color: #0071a1;
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 3px;
    cursor: pointer;
}

.actions button:hover,
.coupon button:hover {
    background-color: #005c85;
}

.coupon input {
    padding: 10px;
    margin-right: 10px;
    border: 1px solid #ddd;
    border-radius: 3px;
}

.woocommerce .cart-collaterals .cart_totals, .woocommerce-page .cart-collaterals .cart_totals {
    float: none;
    width: 100%;
}



/* Responsive Design */
@media (max-width: 768px) {
    .cart-layout {
        flex-direction: column;
    }

    .cart-left, .cart-right {
        max-width: 100%;
        flex: 1 1 100%;
    }

    .cart-right {
        margin-top: 0px;
    }
	.cart-left {
        margin-bottom: -25px;
    }
}



/* Warenkorb */
/* Versandkosten*/
.woocommerce-shipping-methods {
  list-style: none;
  padding: 0;
  margin: 0;
}

.woocommerce-shipping-methods li {
  margin-bottom: 0px;
  display: flex;
  align-items: center;
  justify-content: flex-end; 
}

.shipping_method {
  appearance: none; 
  width: 20px;
  height: 20px;
  border: 2px solid #f1f1f1;
  border-radius: 50%; 
  margin-right: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  position: relative;
}

.shipping_method:checked {
  background-color: #8360C3; 
  border-color: 
		#8360C3;
}

.shipping_method:checked::before {
  content: "";
  width: 10px;
  height: 10px;
  background-color: white;
  border-radius: 50%;
  position: absolute;
}

label {
  cursor: pointer;
  font-size: 14px;
  color: #333;
	margin-top: 5px;
}
.woocommerce-shipping-totals .shipping {
	background-color: #ffffff !important
}
.woocommerce-shipping-destination, .woocommerce-shipping-calculator {
	display: none;
}
.order-total th, .order-total td {
	border-top: 2px solid #f1f1f1 !important;
}

/* Gutschein Note */
.order-notes {
	  background-color: #fff;
		color: #000;
    padding: 20px;
    border: 2px solid #f1f1f1;
    border-radius: 15px;
    box-sizing: border-box;
	  display: flex;
  	flex-direction: column;
  	gap: 15px;
	  margin-top: 15px;
}

.info-container {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.bild-container {
  width: 20px;
  flex-shrink: 0;
}

.bild-container img {
  width: 100%;
  height: auto;
}

.text-container {
  flex: 1;
	font-size: 12px;
	font-family: Comfortaa;
}

.bezahlmoeglichkeiten {
  display: flex;
  gap: 5px;
	margin-top: 5px;
}
.bezahlmoeglichkeiten img {
  width: 40px;
  height: auto;
	border: 2px solid #f1f1f1 !important;
	border-radius: 8px !important;
}

/* Checkout Button */
.checkout-button.button.alt.wc-forward {
	  background-color: #8360C3;
    border: 1px solid #8360C3;
    border-radius: 100px; 
	  font-size: 14px;
	  font-family: Comfortaa;
}
.checkout-button.button.alt.wc-forward:hover {
	  background-color: #8360C3;
    border: 1px solid #8360C3;
    border-radius: 100px; 
}
/* Order Tabelle */
.woocommerce-cart-form {
	border: 2px solid #f1f1f1;
	border-radius: 15px;
	padding: 20px;
}
input.input-text {
	border-radius: 20px !important
}
/* Mobil Adjustments */
@media (max-width: 676px) {
	
}
td.product-name::before, td.product-price::before, td.product-quantity::before, td.product-subtotal::before {
	display: none;
}
.woocommerce-cart-form__cart-item td {
	padding: 5px 12px !important;
}
