/* Promotional Badge Styling for NBN Plans Cards */

/* Promotional Badge - Gold/Yellow accent at top of card */
.nbn-promotional-badge {
    position: absolute;
    top: -25px;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #ffd93d 0%, #ffcc00 100%);
    color: #1a1a2e;
    padding: 8px 20px;
    font-size: 14px;
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 8px 8px 0 0;
    box-shadow: 0 -2px 10px rgba(255, 217, 61, 0.3);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

/* No emoji - removed per requirements */

/* Adjust plan card when promotional badge is present */
.nbn-plan-card.has-promotional-discount {
    margin-top: 30px;
    position: relative;
}

/* Alternative badge style for subtle display */
.nbn-promotional-badge.subtle {
    background: rgba(255, 217, 61, 0.95);
    backdrop-filter: blur(10px);
}

/* Badge content variations */
.nbn-promotional-badge .badge-duration {
    font-size: 12px;
    font-weight: 600;
    opacity: 0.9;
}

/* Promotional pricing display in card */
.nbn-promotional-pricing {
    position: relative;
}

.nbn-promotional-pricing .original-price {
    text-decoration: line-through;
    color: #999;
    font-size: 14px;
    margin-bottom: 4px;
}

.nbn-promotional-pricing .promotional-price {
    color: #ffd93d;
    font-weight: 700;
    font-size: 1.2em;
}

.nbn-promotional-pricing .promotional-note {
    font-size: 12px;
    color: #888;
    margin-top: 4px;
}

/* Integration with existing savings badge */
.nbn-plan-card.has-promotional-discount .nbn-savings-badge {
    display: none; /* Hide regular savings badge when promotional is active */
}

/* Mobile responsive adjustments */
@media (max-width: 768px) {
    .nbn-promotional-badge {
        font-size: 12px;
        padding: 6px 15px;
        top: -20px;
    }
    
    .nbn-promotional-badge::before {
        font-size: 14px;
    }
    
    .nbn-plan-card.has-promotional-discount {
        margin-top: 25px;
    }
}

/* Animation for badge entrance */
@keyframes promotional-pulse {
    0% {
        box-shadow: 0 -2px 10px rgba(255, 217, 61, 0.3);
    }
    50% {
        box-shadow: 0 -2px 20px rgba(255, 217, 61, 0.5);
    }
    100% {
        box-shadow: 0 -2px 10px rgba(255, 217, 61, 0.3);
    }
}

.nbn-promotional-badge {
    animation: promotional-pulse 2s ease-in-out infinite;
}

/* Compatibility with NBN Flow */
.nbn-flow-plan-card.has-promotional-discount {
    margin-top: 30px;
}

.nbn-flow-plan-card .nbn-promotional-badge {
    border-radius: var(--nbn-flow-radius) var(--nbn-flow-radius) 0 0;
}

/* Dark theme adjustments */
@media (prefers-color-scheme: dark) {
    .nbn-promotional-badge {
        box-shadow: 0 -2px 15px rgba(255, 217, 61, 0.4);
    }
}