#woo-popup-cart-overlay {
    position: fixed; top:0; left:0; width:100%; height:100%;
    background: rgba(0,0,0,0.7);
    z-index:9999; display: flex; justify-content: center; align-items: center;
}
.woo-popup-cart {
    background: #fff; padding: 20px; max-width: 500px; width: 90%;
    position: relative; border-radius: 10px; overflow-y: auto; max-height: 90%;
}
.woo-popup-cart-close {
    position: absolute; top:10px; right:10px; background:transparent;
    border:none; font-size:24px; cursor:pointer;
}
.woo-popup-cart-item { margin-bottom:15px; border-bottom:1px solid #eee; padding-bottom:10px; }
.woo-cart-item-row { display:flex; gap:15px; align-items:center; }
.woo-cart-item-image img { border-radius:8px; width:80px; }
.woo-cart-item-details { flex:1; }
.woo-cart-subtotal { font-weight:bold; margin-top:15px; }
.woo-popup-cart-buttons { text-align:right; margin-top:10px; }
.woo-popup-cart-buttons a { background:#0073aa; color:#fff; padding:10px 20px; border-radius:5px; text-decoration:none; }

.my-cart-popup-title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 20px;
  text-align: left;
  color: #333;
  border-bottom: 2px solid #ccc;
  padding-bottom: 10px;
}

.my-cart-popup-products {
  max-height: 400px;  /* Höhe des Produkt-Scrollbereichs */
  overflow-y: auto;   /* Scrollbar wenn nötig */
}

.woo-popup-cart-close {
  font-size: 38px; /* größerer Schließen-Button */
  width: 40px;
  height: 40px;
  top: 10px;
  right: 10px;
}

.woo-popup-cart-close {
  color: #2d2d2d !important;
}

.woo-popup-checkout {
  background-color: #008a67 !important;
  border-color: #008a67 !important;
}

