/* Barra de progreso regalo por productos */
#gift-by-products-container {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

#gift-by-products-link {
    display: block;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

#gift-by-products-bar {
    position: relative;
    width: 100%;
    height: 36px;
    background: rgba(0, 0, 0, 0.25);
    border-radius: 18px;
    overflow: hidden;
    border: none;
    box-shadow: none;
}

#gift-by-products-fill {
    position: absolute;
    height: 100%;
    left: 0;
    top: 0;
    background: #eb3288;
    width: 0;
    transition: width 0.5s ease-in-out;
    border-radius: 18px;
}

#gift-by-products-text-back,
#gift-by-products-text-front {
    position: absolute;
    width: 100%;
    text-align: center;
    line-height: 34px;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    text-decoration: none;
}

#gift-by-products-text-back {
    color: rgba(255, 255, 255, 0.95);
}

#gift-by-products-text-front {
    color: white;
    clip-path: inset(0 0 0 0);
    transition: clip-path 0.5s ease-in-out;
}

#gift-by-products-bar.gift-achieved {
    animation: gift-by-products-glow 2s ease-in-out;
}

@keyframes gift-by-products-glow {
    0% { box-shadow: 0 0 0 transparent; }
    50% { box-shadow: 0 0 12px rgba(235, 50, 136, 0.4); }
    100% { box-shadow: 0 0 0 transparent; }
}

@media (max-width: 480px) {
    #gift-by-products-container {
        padding: 0 12px;
    }
    #gift-by-products-bar {
        height: 32px;
        border-radius: 16px;
    }
    #gift-by-products-fill {
        border-radius: 16px;
    }
    #gift-by-products-text-back,
    #gift-by-products-text-front {
        font-size: 13px;
        line-height: 30px;
    }
}
