#mpk-floating-cart-icon {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background-color: #FFA500;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: opacity 0.3s, transform 0.3s;
    z-index: 1000;
    opacity: 0;
    transform: translateY(100px);
    pointer-events: none;
}

#mpk-floating-cart-icon.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

#mpk-floating-cart-icon img {
    width: 32px;
    height: auto;
    filter: brightness(0) invert(1);
}

.mpk-cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background-color: red;
    color: white;
    border-radius: 50%;
    padding: 2px 6px;
    font-size: 12px;
    font-weight: bold;
}

#mpk-modal-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1001;
}

#mpk-modal-content {
    background-color: transparent;
    padding: 40px;
    text-align: center;
    position: relative;
}

#mpk-close-modal {
    position: absolute;
    top: 10px;
    right: 15px;
    background: none;
    border: none;
    font-size: 32px;
    color: white;
    cursor: pointer;
}

#mpk-cart-button {
    background-color: #FFA500;
    color: white;
    text-decoration: none;
    padding: 15px 30px;
    font-size: 18px;
    border-radius: 8px;
    font-weight: bold;
    transition: background-color 0.3s;
    display: inline-block;
    margin-top: 30px;
}

#mpk-cart-button:hover {
    background-color: #e69500;
}

.button.checkout.wc-forward {
    display: none !important;
}
