/* ===============================
   WooCommerce Checkout Overlay
================================= */

#wcLoadingOverlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    display: none; /* hidden by default */
    align-items: center;
    justify-content: center;
    flex-direction: column;
    z-index: 9999;
    color: #ffffff;
    font-family: sans-serif;
}

#wcLoadingOverlay .progress-container {
    width: 80%;
    max-width: 400px;
    height: 20px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 20px;
    box-shadow: inset 0 0 5px rgba(0,0,0,0.3);
}

#wcLoadingOverlay .progress-bar {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, #cef782 0%, #222F30 100%);
    border-radius: 10px;
    transition: width 0.2s ease;
    background-size: 200% 100%;
    animation: wcProgressShine 2s linear infinite;
}

@keyframes wcProgressShine {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

#wcLoadingOverlay .loading-text {
    font-size: 1rem;
    text-align: center;
    letter-spacing: 0.5px;
}