/* ========================================
   LIVE ECOCASH BUTTON - Bootstrap style + floating
   Looks like btn-warning but with our orange + shadow
   Used by: <button class="live-ecocash-btn">
   ======================================== */

.live-ecocash-btn {
    position: relative;
    display: inline-block;
    width: 100%;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.5;
    color: #fff;
    text-align: center;
    text-decoration: none;
    vertical-align: middle;
    cursor: pointer;
    user-select: none;
    background: #FF6B00;
    border: 1px solid #FF6B00;
    border-radius: 8px;
    box-shadow: 
        0 2px 4px rgba(0, 0, 0, 0.1),
        0 8px 20px rgba(255, 107, 0, 0.35);
    transition: all 0.15s ease-in-out;
    overflow: hidden;
    margin-top: 20px;
}

.live-ecocash-btn:hover {
    background: #E55F00;
    border-color: #E55F00;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 
        0 4px 8px rgba(0, 0, 0, 0.15),
        0 12px 28px rgba(255, 107, 0, 0.45);
}

.live-ecocash-btn:active {
    background: #CC5500;
    border-color: #CC5500;
    transform: translateY(0);
    box-shadow: 
        0 1px 2px rgba(0, 0, 0, 0.1),
        0 4px 12px rgba(255, 107, 0, 0.3);
}

.live-ecocash-btn:focus {
    outline: 0;
    box-shadow: 
        0 0 0 4px rgba(255, 107, 0, 0.25),
        0 8px 20px rgba(255, 107, 0, 0.35);
}

/* Bootstrap-style shine sweep */
.live-ecocash-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.live-ecocash-btn:hover::before {
    left: 100%;
}

/* Disabled state like Bootstrap */
.live-ecocash-btn:disabled {
    opacity: 0.65;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

