/* Cart button positioning */
.cart-container {
    position: fixed;
    top: 100px;
    right: 40px;
    z-index: 1000;
    background: rgba(46, 204, 113, 0.1);
    padding: 10px;
    border-radius: 8px;
    border: 2px solid #2ecc71;
    min-height: 50px;
    min-width: 200px;
}

/* Style the PayPal cart button */
paypal-cart-button {
    display: block;
    min-width: 200px;
}

/* Show loading text if button doesn't appear */
.cart-container:empty::after {
    content: "🛒 Winkelwagen laden...";
    color: #2ecc71;
    font-size: 14px;
}