/* Buy page - public layout */
body.buy-page { background: #e9ecef !important; color: #333; }

.bundle-card {
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 12px 30px rgba(0,0,0,.45);
    transition: .2s;
}
.bundle-card:hover { transform: translateY(-4px); }

.bundle-top {
    padding: 32px 16px 36px;
    text-align: center;
}
.bundle-logo {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    border: 2px solid #000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 22px;
    margin: auto;
}

.bundle-bottom {
    background: #000;
    color: #fff;
}
.bundle-bottom .col-6 { padding: 16px 8px; }
.bundle-bottom small { opacity: .8; }

.mtn-top { background: #ffcc00; color: #000; }
.telecel-top { background: #c62828; color: #fff; }
.at-top {
    background: linear-gradient(135deg, #c62828, #1565c0);
    color: #fff;
}

.buy-whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 58px;
    height: 58px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 30px rgba(0,0,0,.35);
    z-index: 999;
    animation: buy-pulse 2s infinite;
}
.wa-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    background: #ff3b3b;
    color: #fff;
    font-size: 12px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}
@keyframes buy-pulse {
    0% { box-shadow: 0 0 0 0 rgba(37,211,102,.6); }
    70% { box-shadow: 0 0 0 18px rgba(37,211,102,0); }
    100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}
