#wc-popup-cart {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0,0,0,0.2);
    max-width: 480px;
    width: 95%;
    z-index: 9999;
    font-family: sans-serif;
    display: none;
}

#wc-popup-cart .popup-close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 18px;
    font-weight: bold;
    color: #999;
    cursor: pointer;
}

#wc-popup-cart .popup-inner {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
}

#wc-popup-cart img {
    max-width: 60px;
    vertical-align: middle;
    margin-right: 8px;
}

#wc-popup-cart .added-product {
    display: flex;
    align-items: center;
    gap: 10px;
}

#wc-popup-cart .popup-actions {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    margin-top: 10px;
}

#wc-popup-cart .btn-checkout,
#wc-popup-cart .btn-continue {
    flex: 1;
    background: #ff2b84;
    color: white;
    border: none;
    padding: 10px;
    text-align: center;
    cursor: pointer;
    border-radius: 5px;
    text-decoration: none;
    font-size: 14px;
}

#wc-popup-cart .cart-summary {
    font-size: 14px;
    color: #444;
}

@media screen and (max-width: 500px) {
    #wc-popup-cart {
        width: 90%;
        max-width: 90%;
    }

#wc-popup-cart .btn-checkout:hover,
#wc-popup-cart .btn-continue:hover {
    background-color: #e02676; /* Versión más oscura al pasar el ratón */
}