.cta-inline-banner {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 16px;
    flex-wrap: wrap;
}

/* CTA BUTTON */
.cta-btn {
    background: linear-gradient(90deg, #126fbf, #1d8be4);
    color: #fff;
    padding: 12px 34px;
    border-radius: 50px;
    font-size: 17px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(18, 111, 191, 0.35);
    transition: 0.3s;
    white-space: nowrap;
}

.cta-btn:hover {
    transform: translateY(-2px);
}

/* PRICE BOX (NEW ADD) */
.price-box {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.08);
    padding: 8px 14px;
    border-radius: 12px;
    backdrop-filter: blur(6px);
}

/* NEW PRICE */
.new-price {
    font-size: 24px;
    font-weight: 800;
    color: #00e676;
    text-shadow: 0 0 10px rgba(0, 230, 118, 0.3);
}

/* OLD PRICE (FIXED - BIGGER & CLEAN) */
.old-price {
    font-size: 18px;
    font-weight: 600;
    color: #ff5252;
    text-decoration: line-through;
    opacity: 0.85;
}

/* DISCOUNT BADGE */
.discount-tag {
    background: #ff1744;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 20px;
    animation: pulse 1.5s infinite;
}

/* PULSE EFFECT */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

/* MOBILE */
@media (max-width: 768px) {
    .cta-inline-banner {
        justify-content: center;
        gap: 12px;
    }

    .new-price {
        font-size: 20px;
    }
}