/* NBN Flow - Clean Dedicated Styles */

/* ==========================================
   CSS VARIABLES & BASE SETUP
   ========================================== */

:root {
    /* NBN Flow specific colors */
    --nbn-flow-primary: #ff8e53;
    --nbn-flow-secondary: #20d6b4;
    --nbn-flow-accent: #ffd93d;
    --nbn-flow-dark: #1a1a2e;
    --nbn-flow-light: #fff;
    --nbn-flow-gray: #6b7280;
    --nbn-flow-gray-light: #f3f4f6;
    --nbn-flow-border: rgba(107, 114, 128, 0.2);
    --nbn-flow-shadow: rgba(0, 0, 0, 0.1);

    /* Spacing */
    --nbn-flow-spacing-xs: 0.5rem;
    --nbn-flow-spacing-sm: 1rem;
    --nbn-flow-spacing-md: 1.5rem;
    --nbn-flow-spacing-lg: 2rem;
    --nbn-flow-spacing-xl: 3rem;

    /* Border radius */
    --nbn-flow-radius-sm: 0.375rem;
    --nbn-flow-radius-md: 0.5rem;
    --nbn-flow-radius-lg: 0.75rem;
    --nbn-flow-radius-xl: 1rem;

    /* Typography */
    --nbn-flow-font-weight-normal: 400;
    --nbn-flow-font-weight-medium: 500;
    --nbn-flow-font-weight-semibold: 600;
    --nbn-flow-font-weight-bold: 700;
    --nbn-flow-font-weight-extrabold: 800;

    /* Transitions */
    --nbn-flow-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ==========================================
   GOOD NEWS MESSAGE
   ========================================== */

.nbn-qualification-success {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border: 2px solid #10b981;
    border-radius: var(--nbn-flow-radius-lg);
    padding: var(--nbn-flow-spacing-lg);
    margin: var(--nbn-flow-spacing-md) 0;
    color: white;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.25);
    animation: slideInUp 0.6s ease-out;
    overflow: hidden;
}

.nbn-qualification-success::after {
    content: '';
    display: table;
    clear: both;
}

.nbn-qualification-success .nbn-success-icon {
    display: block;
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    text-align: center;
    line-height: 48px;
    font-size: 24px;
    font-weight: 700;
    float: left;
    margin-right: var(--nbn-flow-spacing-md);
    margin-top: 4px;
}

.nbn-qualification-success-content {
    overflow: hidden;
    display: block;
}

.nbn-qualification-success-content h3 {
    margin: 0 0 var(--nbn-flow-spacing-xs) 0;
    font-size: 1.5rem;
    font-weight: var(--nbn-flow-font-weight-bold);
    color: white !important;
    font-family: inherit;
}

.nbn-qualification-success-content p {
    margin: 0;
    font-size: 1rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.95) !important;
    font-family: inherit;
}

.nbn-connection-type-info {
    display: block;
    margin-top: var(--nbn-flow-spacing-xs);
    font-size: 0.9rem;
}

.nbn-connection-type-info strong {
    color: var(--nbn-flow-accent);
    font-weight: var(--nbn-flow-font-weight-semibold);
}

@keyframes slideInUp {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* ==========================================
   EMBEDDED CHECKOUT FORM
   ========================================== */

.nbn-checkout-form {
    margin-top: var(--nbn-flow-spacing-lg);
    border-top: 2px solid var(--nbn-flow-border);
    padding-top: var(--nbn-flow-spacing-lg);
}

.nbn-checkout-form h3 {
    margin: 0 0 var(--nbn-flow-spacing-md) 0;
    color: var(--nbn-flow-dark);
    font-size: 1.25rem;
    font-weight: var(--nbn-flow-font-weight-semibold);
}

.nbn-checkout-form-container {
    background: var(--nbn-flow-gray-light);
    border-radius: var(--nbn-flow-radius-lg);
    padding: var(--nbn-flow-spacing-lg);
    margin-bottom: var(--nbn-flow-spacing-lg);
}

.nbn-checkout-loading {
    text-align: center;
    padding: var(--nbn-flow-spacing-xl);
    color: var(--nbn-flow-gray);
}

#nbn-embedded-checkout {
    max-width: none;
}

#nbn-embedded-checkout .col2-set {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--nbn-flow-spacing-lg);
    margin-bottom: var(--nbn-flow-spacing-lg);
}

#nbn-embedded-checkout .woocommerce-billing-fields h3,
#nbn-embedded-checkout .woocommerce-shipping-fields h3 {
    margin-bottom: var(--nbn-flow-spacing-md);
    color: var(--nbn-flow-dark);
    font-size: 1.1rem;
    font-weight: var(--nbn-flow-font-weight-medium);
}

#nbn-embedded-checkout .form-row {
    margin-bottom: var(--nbn-flow-spacing-md);
}

#nbn-embedded-checkout .form-row label {
    display: block;
    margin-bottom: var(--nbn-flow-spacing-xs);
    font-weight: var(--nbn-flow-font-weight-medium);
    color: var(--nbn-flow-dark);
}

#nbn-embedded-checkout .form-row input[type='text'],
#nbn-embedded-checkout .form-row input[type='email'],
#nbn-embedded-checkout .form-row input[type='tel'],
#nbn-embedded-checkout .form-row select,
#nbn-embedded-checkout .form-row textarea {
    width: 100%;
    padding: var(--nbn-flow-spacing-xs) var(--nbn-flow-spacing-sm);
    border: 2px solid var(--nbn-flow-border);
    border-radius: var(--nbn-flow-radius-sm);
    font-size: 1rem;
    line-height: 1.5;
    transition: var(--nbn-flow-transition);
    background: white;
}

#nbn-embedded-checkout .form-row input:focus,
#nbn-embedded-checkout .form-row select:focus,
#nbn-embedded-checkout .form-row textarea:focus {
    outline: none;
    border-color: var(--nbn-flow-primary);
    box-shadow: 0 0 0 3px rgba(255, 142, 83, 0.1);
}

.woocommerce-checkout-payment {
    background: white;
    border: 2px solid var(--nbn-flow-border);
    border-radius: var(--nbn-flow-radius-lg);
    padding: var(--nbn-flow-spacing-lg);
    margin-top: var(--nbn-flow-spacing-lg);
}

.woocommerce-checkout-payment h3 {
    margin: 0 0 var(--nbn-flow-spacing-md) 0;
    color: var(--nbn-flow-dark);
    font-size: 1.1rem;
    font-weight: var(--nbn-flow-font-weight-medium);
}

.wc_payment_methods {
    list-style: none;
    margin: 0;
    padding: 0;
}

.wc_payment_method {
    margin-bottom: var(--nbn-flow-spacing-sm);
    padding: var(--nbn-flow-spacing-md);
    border: 2px solid var(--nbn-flow-border);
    border-radius: var(--nbn-flow-radius-md);
    transition: var(--nbn-flow-transition);
}

.wc_payment_method:hover {
    border-color: var(--nbn-flow-primary);
}

.wc_payment_method input[type='radio'] {
    margin-right: var(--nbn-flow-spacing-xs);
}

.wc_payment_method label {
    font-weight: var(--nbn-flow-font-weight-medium);
    color: var(--nbn-flow-dark);
    cursor: pointer;
}

.payment_box {
    margin-top: var(--nbn-flow-spacing-md);
    padding: var(--nbn-flow-spacing-md);
    background: var(--nbn-flow-gray-light);
    border-radius: var(--nbn-flow-radius-sm);
}

.nbn-checkout-actions {
    text-align: center;
    margin-top: var(--nbn-flow-spacing-lg);
}

#nbn-flow-place-order {
    background: linear-gradient(135deg, var(--nbn-flow-primary) 0%, #e67e40 100%);
    color: white;
    border: none;
    padding: var(--nbn-flow-spacing-md) var(--nbn-flow-spacing-xl);
    border-radius: var(--nbn-flow-radius-lg);
    font-size: 1.1rem;
    font-weight: var(--nbn-flow-font-weight-semibold);
    cursor: pointer;
    transition: var(--nbn-flow-transition);
    box-shadow: 0 4px 12px rgba(255, 142, 83, 0.3);
}

#nbn-flow-place-order:hover {
    box-shadow: 0 6px 20px rgba(255, 142, 83, 0.4);
}

#nbn-flow-place-order:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Mobile responsive */
@media (max-width: 768px) {
    #nbn-embedded-checkout .col2-set {
        grid-template-columns: 1fr;
        gap: var(--nbn-flow-spacing-md);
    }

    .nbn-checkout-form-container {
        padding: var(--nbn-flow-spacing-md);
    }
}

/* ==========================================
   MAIN CONTAINER - FULL WIDTH DARK THEME
   ========================================== */

.nbn-flow-container {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--troppo-text-primary);
    background: transparent;
    position: relative;
    z-index: 10;
}

/* ==========================================
   SINGLE PAGE LAYOUT - DARK THEME
   ========================================== */

.nbn-flow-container.nbn-single-page {
    background: transparent;
}

.nbn-flow-section {
    background: rgba(26, 26, 46, 0.6);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--troppo-radius-lg);
    padding: 3rem;
    margin-bottom: 3rem;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.2);
    transition: var(--troppo-transition-smooth);
    position: relative;
}

.nbn-flow-section:hover:not(.nbn-section-disabled) {
    box-shadow: 0 4px 12px var(--nbn-flow-shadow);
}

.nbn-flow-section.nbn-section-disabled {
    opacity: 0.6;
    pointer-events: none;
}

.nbn-section-title {
    margin: 0 0 2rem 0;
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--troppo-text-primary);
    display: flex;
    align-items: center;
}

.nbn-section-title .troppo-highlight {
    background: var(--troppo-gradient-sunset);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nbn-section-placeholder {
    color: var(--troppo-text-secondary);
    font-style: italic;
    padding: var(--nbn-flow-spacing-lg);
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--troppo-radius-md);
}

/* Address Section */
.nbn-address-verified {
    background: linear-gradient(135deg, rgba(32, 214, 180, 0.1) 0%, rgba(255, 142, 83, 0.1) 100%);
    border-radius: var(--nbn-flow-radius-lg);
    padding: var(--nbn-flow-spacing-lg);
    margin-bottom: var(--nbn-flow-spacing-lg);
    border: 2px solid rgba(32, 214, 180, 0.3);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.nbn-success-message {
    text-align: left;
}

.nbn-success-message h3 {
    font-size: 1.5rem;
    font-weight: var(--nbn-flow-font-weight-bold);
    color: var(--nbn-flow-primary);
    margin-bottom: var(--nbn-flow-spacing-md);
    display: flex;
    align-items: center;
    gap: var(--nbn-flow-spacing-sm);
}

.nbn-success-message p {
    margin: 0 0 var(--nbn-flow-spacing-sm) 0;
    color: var(--nbn-flow-dark);
    font-size: 1rem;
    line-height: 1.6;
}

.nbn-success-message p strong {
    color: var(--nbn-flow-primary);
    font-weight: var(--nbn-flow-font-weight-semibold);
}

.nbn-success-icon {
    font-size: 1.8rem;
}

.nbn-success-subtitle {
    font-size: 1.1rem;
    color: var(--nbn-flow-gray);
    margin-bottom: var(--nbn-flow-spacing-lg) !important;
}

.nbn-address-details {
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--nbn-flow-radius-md);
    padding: var(--nbn-flow-spacing-md);
    border-left: 3px solid var(--nbn-flow-primary);
}

.nbn-address-details p {
    margin-bottom: var(--nbn-flow-spacing-xs) !important;
}

.nbn-address-details p:last-child {
    margin-bottom: 0 !important;
}

.nbn-address-actions {
    display: flex !important;
    gap: 10px;
    margin-top: var(--nbn-flow-spacing-md);
    flex-wrap: wrap;
}

.nbn-address-actions .nbn-change-address {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--nbn-flow-dark);
    padding: 0.5rem 1.25rem;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    width: auto;
}

.nbn-address-actions .nbn-change-address:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--nbn-flow-primary);
}

.nbn-address-actions .nbn-select-plan {
    padding: 0.5rem 1.25rem;
    font-size: 0.85rem;
    white-space: nowrap;
    width: auto !important;
}

@media (max-width: 480px) {
    .nbn-address-actions {
        flex-direction: column;
    }
    .nbn-address-actions .nbn-change-address,
    .nbn-address-actions .nbn-select-plan {
        width: 100% !important;
        text-align: center;
        justify-content: center;
    }
}

/* Address Selection UI - multiple addresses from Vocus */
.nbn-address-selection {
    margin-top: 16px;
}

.nbn-address-selection.hidden {
    display: none;
}

.nbn-address-selection__message {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 12px;
    font-size: 14px;
}

.nbn-address-selection__list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 12px;
    max-height: 300px;
    overflow-y: auto;
}

.nbn-address-selection__item {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    padding: 12px 16px;
    color: #fff;
    text-align: left;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.2s ease;
}

.nbn-address-selection__item:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
}

.nbn-address-selection__item.selected {
    background: rgba(0, 200, 83, 0.15);
    border-color: #00c853;
}

/* Cart Section */
.nbn-section-cart {
    background: rgba(26, 26, 46, 0.8);
    backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.15);
    position: sticky;
    bottom: var(--nbn-flow-spacing-lg);
    z-index: 10;
}

.nbn-cart-items {
    list-style: none;
    margin: 0;
    padding: 0;
}

.nbn-cart-items li {
    padding: var(--nbn-flow-spacing-xs) 0;
    border-bottom: 1px solid var(--nbn-flow-border);
}

.nbn-cart-items li:last-child {
    border-bottom: none;
}

.nbn-cart-total {
    margin-top: var(--nbn-flow-spacing-md);
    padding-top: var(--nbn-flow-spacing-md);
    border-top: 2px solid var(--nbn-flow-primary);
    font-size: 1.2rem;
}

.nbn-cart-actions {
    text-align: center;
    margin-top: var(--nbn-flow-spacing-lg);
}

/* ==========================================
   MODEM OPTIONS
   ========================================== */

.nbn-modem-options {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: var(--nbn-flow-spacing-md);
}

.nbn-modem-option {
    border: 2px solid var(--nbn-flow-border);
    border-radius: var(--nbn-flow-radius-lg);
    padding: var(--nbn-flow-spacing-md);
    text-align: center;
    transition: var(--nbn-flow-transition);
}

.nbn-modem-option:hover {
    border-color: var(--nbn-flow-primary);
    box-shadow: 0 4px 12px rgba(255, 142, 83, 0.2);
}

.nbn-modem-option.selected {
    border-color: var(--nbn-flow-primary);
    background: rgba(255, 142, 83, 0.05);
}

.nbn-modem-image {
    margin-bottom: var(--nbn-flow-spacing-sm);
}

.nbn-modem-image img {
    max-width: 150px;
    height: auto;
}

.nbn-modem-icon {
    font-size: 3rem;
    margin-bottom: var(--nbn-flow-spacing-sm);
}

.nbn-modem-details h4 {
    margin: 0 0 var(--nbn-flow-spacing-xs) 0;
    font-size: 1.1rem;
    font-weight: var(--nbn-flow-font-weight-semibold);
}

.nbn-modem-details p {
    margin: 0 0 var(--nbn-flow-spacing-sm) 0;
    color: var(--nbn-flow-gray);
    font-size: 0.9rem;
}

.nbn-modem-price {
    font-size: 1.2rem;
    font-weight: var(--nbn-flow-font-weight-bold);
    color: var(--nbn-flow-primary);
    margin-bottom: var(--nbn-flow-spacing-sm);
}

/* ==========================================
   PROGRESS BAR
   ========================================== */

.nbn-flow-progress {
    margin-bottom: var(--nbn-flow-spacing-xl);
    background: var(--nbn-flow-light);
    border-radius: var(--nbn-flow-radius-lg);
    padding: var(--nbn-flow-spacing-lg);
    box-shadow: 0 4px 6px var(--nbn-flow-shadow);
}

.nbn-progress-header {
    position: relative;
}

.nbn-progress-bar {
    height: 4px;
    background: var(--nbn-flow-gray-light);
    border-radius: 2px;
    margin-bottom: var(--nbn-flow-spacing-lg);
    position: relative;
    overflow: hidden;
}

.nbn-progress-fill {
    height: 100%;
    background: linear-gradient(135deg, var(--nbn-flow-primary) 0%, var(--nbn-flow-secondary) 100%);
    border-radius: 2px;
    transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.nbn-progress-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        45deg,
        transparent 25%,
        rgba(255, 255, 255, 0.2) 25%,
        rgba(255, 255, 255, 0.2) 50%,
        transparent 50%,
        transparent 75%,
        rgba(255, 255, 255, 0.2) 75%
    );
    background-size: 20px 20px;
    animation: progress-stripes 1s linear infinite;
}

@keyframes progress-stripes {
    0% {
        background-position: 0 0;
    }

    100% {
        background-position: 20px 0;
    }
}

.nbn-progress-steps {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.nbn-progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
    position: relative;
    cursor: pointer;
    transition: var(--nbn-flow-transition);
}

.nbn-progress-step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--nbn-flow-gray-light);
    border: 2px solid var(--nbn-flow-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: var(--nbn-flow-font-weight-bold);
    color: var(--nbn-flow-gray);
    margin-bottom: var(--nbn-flow-spacing-xs);
    transition: var(--nbn-flow-transition);
}

.nbn-progress-step.active .nbn-progress-step-number {
    background: linear-gradient(135deg, var(--nbn-flow-primary) 0%, var(--nbn-flow-secondary) 100%);
    border-color: transparent;
    color: var(--nbn-flow-light);
    box-shadow: 0 4px 12px rgba(255, 142, 83, 0.3);
}

.nbn-progress-step-label {
    font-size: 0.875rem;
    font-weight: var(--nbn-flow-font-weight-medium);
    color: var(--nbn-flow-gray);
    transition: var(--nbn-flow-transition);
}

.nbn-progress-step.active .nbn-progress-step-label {
    color: var(--nbn-flow-dark);
    font-weight: var(--nbn-flow-font-weight-semibold);
}

/* ==========================================
   STEP CONTENT
   ========================================== */

.nbn-flow-content {
    background: var(--nbn-flow-light);
    border-radius: var(--nbn-flow-radius-lg);
    box-shadow: 0 4px 6px var(--nbn-flow-shadow);
    overflow: hidden;
}

.nbn-flow-step {
    padding: var(--nbn-flow-spacing-xl);
    min-height: 500px;
    animation: fadeIn 0.5s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.nbn-step-content {
    max-width: 800px;
    margin: 0 auto;
}

.nbn-step-title {
    font-size: 2.5rem;
    font-weight: var(--nbn-flow-font-weight-extrabold);
    color: var(--nbn-flow-dark);
    text-align: center;
    margin-bottom: var(--nbn-flow-spacing-sm);
}

.nbn-step-subtitle {
    font-size: 1.125rem;
    color: var(--nbn-flow-gray);
    text-align: center;
    margin-bottom: var(--nbn-flow-spacing-xl);
}

/* ==========================================
   FORM ELEMENTS
   ========================================== */

.nbn-form-group {
    margin-bottom: var(--nbn-flow-spacing-lg);
}

.nbn-form-group label {
    display: block;
    font-weight: var(--nbn-flow-font-weight-semibold);
    color: var(--troppo-text-primary);
    margin-bottom: var(--nbn-flow-spacing-xs);
}

.nbn-form-control {
    width: 100%;
    padding: var(--nbn-flow-spacing-md);
    border: 2px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--troppo-radius-md);
    font-size: 1rem;
    transition: var(--troppo-transition-smooth);
    background: rgba(255, 255, 255, 0.05);
    color: var(--troppo-text-primary);
}

.nbn-form-control:focus {
    outline: none;
    border-color: var(--troppo-lagoon);
    box-shadow: 0 0 0 4px rgba(32, 214, 180, 0.2);
    background: rgba(255, 255, 255, 0.08);
}

.nbn-form-actions {
    text-align: center;
    margin-top: var(--nbn-flow-spacing-lg);
}

/* ==========================================
   BUTTONS
   ========================================== */

.nbn-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: var(--nbn-flow-spacing-md) var(--nbn-flow-spacing-lg);
    border: none;
    border-radius: var(--nbn-flow-radius-md);
    font-size: 1rem;
    font-weight: var(--nbn-flow-font-weight-semibold);
    text-decoration: none;
    cursor: pointer;
    transition: var(--nbn-flow-transition);
    min-width: 120px;
    gap: var(--nbn-flow-spacing-xs);
}

.nbn-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none !important;
}

.nbn-btn-primary {
    background: linear-gradient(135deg, var(--nbn-flow-primary) 0%, var(--nbn-flow-accent) 100%);
    color: var(--nbn-flow-light);
    box-shadow: 0 4px 12px rgba(255, 142, 83, 0.3);
}

.nbn-btn-primary:hover:not(:disabled) {
    box-shadow: 0 6px 20px rgba(255, 142, 83, 0.4);
}

.nbn-btn-secondary {
    background: var(--nbn-flow-gray-light);
    color: var(--nbn-flow-gray);
    border: 2px solid var(--nbn-flow-border);
}

.nbn-btn-secondary:hover:not(:disabled) {
    background: var(--nbn-flow-gray);
    color: var(--nbn-flow-light);
}

.nbn-btn-outline {
    background: transparent;
    color: var(--nbn-flow-primary);
    border: 2px solid var(--nbn-flow-primary);
}

.nbn-btn-outline:hover:not(:disabled) {
    background: var(--nbn-flow-primary);
    color: var(--nbn-flow-light);
}

.nbn-btn-large {
    padding: var(--nbn-flow-spacing-lg) var(--nbn-flow-spacing-xl);
    font-size: 1.125rem;
    min-width: 200px;
}

/* ==========================================
   PLANS GRID & CAROUSEL
   ========================================== */

.nbn-plans-container {
    position: relative;
    overflow: hidden;
    margin-bottom: var(--nbn-flow-spacing-xl);
}

.nbn-plans-grid {
    display: flex;
    gap: var(--nbn-flow-spacing-lg);
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 0 40px; /* Space for arrows */
}

.nbn-plans-grid::-webkit-scrollbar {
    display: none;
}

/* Scroll Arrows */
.nbn-scroll-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: var(--nbn-flow-white);
    border: 2px solid var(--nbn-flow-border);
    border-radius: 50%;
    color: var(--nbn-flow-primary);
    font-size: 1.5rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--nbn-flow-transition);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    pointer-events: auto;
    user-select: none;
}

.nbn-scroll-arrow:hover {
    background: var(--nbn-flow-primary);
    color: var(--nbn-flow-white);
    border-color: var(--nbn-flow-primary);
}

.nbn-scroll-arrow.prev {
    left: 0;
}

.nbn-scroll-arrow.next {
    right: 0;
}

.nbn-scroll-arrow:disabled,
.nbn-scroll-arrow.disabled {
    opacity: 0.3;
    cursor: not-allowed;
    pointer-events: none;
}

.nbn-scroll-arrow:disabled:hover,
.nbn-scroll-arrow.disabled:hover {
    background: var(--nbn-flow-white);
    color: var(--nbn-flow-primary);
}

.nbn-plan-card {
    border: 2px solid var(--nbn-flow-border);
    border-radius: var(--nbn-flow-radius-lg);
    padding: var(--nbn-flow-spacing-lg);
    transition: var(--nbn-flow-transition);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    flex: 0 0 calc(33.333% - var(--nbn-flow-spacing-lg));
    min-width: 320px;
    max-width: 400px;
}

.nbn-plan-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, var(--nbn-flow-primary) 0%, var(--nbn-flow-secondary) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.nbn-plan-card:hover {
    box-shadow: 0 8px 24px var(--nbn-flow-shadow);
    border-color: var(--nbn-flow-primary);
}

.nbn-plan-card:hover::before {
    opacity: 1;
}

.nbn-plan-card.selected {
    border-color: var(--nbn-flow-primary);
    background: linear-gradient(135deg, rgba(255, 142, 83, 0.05) 0%, rgba(32, 214, 180, 0.05) 100%);
}

.nbn-plan-card.selected::before {
    opacity: 1;
}

.nbn-plan-header {
    text-align: center;
    margin-bottom: var(--nbn-flow-spacing-lg);
}

.nbn-plan-name {
    font-size: 1.5rem;
    font-weight: var(--nbn-flow-font-weight-bold);
    color: var(--nbn-flow-dark);
    margin-bottom: var(--nbn-flow-spacing-sm);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
}

.nbn-plan-price {
    font-size: 2rem;
    font-weight: var(--nbn-flow-font-weight-extrabold);
    color: var(--nbn-flow-primary);
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: var(--nbn-flow-spacing-xs);
}

.nbn-plan-term {
    font-size: 1rem;
    font-weight: var(--nbn-flow-font-weight-normal);
    color: var(--nbn-flow-gray);
}

.nbn-plan-features {
    margin-bottom: var(--nbn-flow-spacing-lg);
    display: block !important; /* Ensure features section is always visible */
    visibility: visible !important;
}

/* Features Accordion Styles */
.nbn-features-toggle {
    width: 100%;
    background: transparent;
    border: 1px solid var(--nbn-flow-border);
    border-radius: var(--nbn-flow-radius-md);
    padding: var(--nbn-flow-spacing-sm) var(--nbn-flow-spacing-md);
    display: flex !important; /* Force display */
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: var(--nbn-flow-transition);
    color: var(--nbn-flow-dark);
    font-size: 0.875rem;
    font-weight: var(--nbn-flow-font-weight-semibold);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: var(--nbn-flow-spacing-sm);
    visibility: visible !important;
}

.nbn-features-toggle:hover {
    background: rgba(0, 0, 0, 0.02);
    border-color: var(--nbn-flow-primary);
}

.nbn-features-toggle.active {
    background: rgba(255, 142, 83, 0.05);
    border-color: var(--nbn-flow-primary);
    color: var(--nbn-flow-primary);
}

.nbn-toggle-icon {
    font-size: 1.25rem;
    font-weight: 300;
    transition: transform var(--nbn-flow-transition);
    color: var(--nbn-flow-gray);
}

.nbn-features-toggle.active .nbn-toggle-icon {
    transform: rotate(45deg);
    color: var(--nbn-flow-primary);
}

.nbn-features-content {
    max-height: 0;
    overflow: hidden;
    transition:
        max-height 0.3s ease-out,
        opacity 0.3s ease-out;
    opacity: 0;
}

.nbn-features-content.active {
    max-height: 500px;
    opacity: 1;
    transition:
        max-height 0.3s ease-in,
        opacity 0.3s ease-in;
}

.nbn-features-list {
    list-style: none;
    margin: 0;
    padding: var(--nbn-flow-spacing-sm) 0;
}

.nbn-feature-item {
    display: flex;
    align-items: flex-start;
    gap: var(--nbn-flow-spacing-sm);
    margin-bottom: var(--nbn-flow-spacing-sm);
    font-size: 0.9rem;
    color: var(--nbn-flow-gray);
    line-height: 1.5;
}

.nbn-feature-item:last-child {
    margin-bottom: 0;
}

.nbn-feature-custom-icon {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.nbn-plan-feature {
    display: flex;
    align-items: center;
    gap: var(--nbn-flow-spacing-xs);
    margin-bottom: var(--nbn-flow-spacing-xs);
    font-size: 0.875rem;
    color: var(--nbn-flow-gray);
}

.nbn-feature-icon {
    font-size: 1rem;
}

.nbn-plan-tagline {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--nbn-flow-primary);
    margin-top: var(--nbn-flow-spacing-md);
    margin-bottom: var(--nbn-flow-spacing-sm);
    text-align: center;
}

.nbn-plan-category-badge {
    display: inline-block;
    background: var(--nbn-flow-accent);
    color: var(--nbn-flow-white);
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: 600;
    margin-top: 0.5rem;
    text-transform: uppercase;
}

.nbn-plan-description {
    color: var(--nbn-flow-gray);
    margin-bottom: var(--nbn-flow-spacing-lg);
    line-height: 1.6;
    text-align: center;
    font-size: 0.95rem;
}

.nbn-plan-actions {
    text-align: center;
}

/* ==========================================
   PLAN INFO LINKS
   ========================================== */

.nbn-plan-info-links {
    text-align: center;
    margin-top: var(--nbn-flow-spacing-xl);
    margin-bottom: var(--nbn-flow-spacing-lg);
    font-size: 0.9rem;
}

.nbn-plan-info-links a {
    color: var(--nbn-flow-white);
    text-decoration: underline;
    transition: var(--nbn-flow-transition);
}

.nbn-plan-info-links a:hover {
    color: var(--nbn-flow-primary);
    text-decoration: none;
}

.nbn-plan-info-links .link-separator {
    color: var(--nbn-flow-white);
    opacity: 0.5;
    margin: 0 var(--nbn-flow-spacing-sm);
}

/* ==========================================
   MODEMS GRID
   ========================================== */

.nbn-modems-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--nbn-flow-spacing-lg);
    margin-bottom: var(--nbn-flow-spacing-xl);
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive grid adjustments */
@media (max-width: 1024px) {
    .nbn-plan-card {
        flex: 0 0 calc(50% - var(--nbn-flow-spacing-md));
        min-width: 280px;
    }

    .nbn-modems-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nbn-modems-grid {
        grid-template-columns: 1fr;
    }
}

.nbn-modem-card {
    background: var(--nbn-flow-light);
    border: 2px solid var(--nbn-flow-border);
    border-radius: var(--nbn-flow-radius-lg);
    padding: var(--nbn-flow-spacing-lg);
    transition: var(--nbn-flow-transition);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: var(--nbn-flow-spacing-md);
    align-items: center;
    text-align: center;
}

.nbn-modem-card:hover {
    box-shadow: 0 8px 24px var(--nbn-flow-shadow);
    border-color: var(--nbn-flow-primary);
}

.nbn-modem-card.selected {
    border-color: var(--nbn-flow-primary);
    background: linear-gradient(135deg, rgba(255, 142, 83, 0.05) 0%, rgba(32, 214, 180, 0.05) 100%);
}

.nbn-modem-image {
    flex-shrink: 0;
    width: 225px;
    height: 225px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--nbn-flow-gray-light);
    border-radius: var(--nbn-flow-radius-md);
    overflow: hidden;
    margin-bottom: var(--nbn-flow-spacing-md);
}

.nbn-modem-image img,
.nbn-modem-image .modem-product-image,
.nbn-modem-image .modem-placeholder {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    width: auto;
    height: auto;
}

.nbn-modem-details {
    flex: 1;
    width: 100%;
}

.nbn-modem-name {
    font-size: 1.25rem;
    font-weight: var(--nbn-flow-font-weight-bold);
    color: var(--nbn-flow-dark);
    margin-bottom: var(--nbn-flow-spacing-xs);
}

.nbn-modem-price {
    font-size: 1.5rem;
    font-weight: var(--nbn-flow-font-weight-bold);
    color: var(--nbn-flow-primary);
    margin-bottom: var(--nbn-flow-spacing-sm);
}

.nbn-modem-description {
    color: var(--nbn-flow-gray);
    margin-bottom: var(--nbn-flow-spacing-lg);
    line-height: 1.6;
}

/* ==========================================
   PHONE OPTIONS
   ========================================== */

.nbn-phone-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--nbn-flow-spacing-lg);
    margin-bottom: var(--nbn-flow-spacing-xl);
}

.nbn-phone-option {
    background: var(--nbn-flow-light);
    border: 2px solid var(--nbn-flow-border);
    border-radius: var(--nbn-flow-radius-lg);
    padding: var(--nbn-flow-spacing-xl);
    text-align: center;
    transition: var(--nbn-flow-transition);
    cursor: pointer;
}

.nbn-phone-option:hover {
    box-shadow: 0 8px 24px var(--nbn-flow-shadow);
    border-color: var(--nbn-flow-primary);
}

.nbn-phone-option.selected {
    border-color: var(--nbn-flow-primary);
    background: linear-gradient(135deg, rgba(255, 142, 83, 0.05) 0%, rgba(32, 214, 180, 0.05) 100%);
}

.nbn-phone-icon {
    font-size: 3rem;
    margin-bottom: var(--nbn-flow-spacing-md);
}

.nbn-phone-option h3 {
    font-size: 1.25rem;
    font-weight: var(--nbn-flow-font-weight-bold);
    color: var(--nbn-flow-dark);
    margin-bottom: var(--nbn-flow-spacing-xs);
}

.nbn-phone-option p {
    color: var(--nbn-flow-gray);
    margin-bottom: var(--nbn-flow-spacing-lg);
}

.nbn-phone-price {
    font-size: 1.25rem;
    font-weight: var(--nbn-flow-font-weight-bold);
    color: var(--nbn-flow-primary);
    margin-bottom: var(--nbn-flow-spacing-lg);
}

/* ==========================================
   CART SUMMARY
   ========================================== */

.nbn-cart-summary {
    background: var(--nbn-flow-gray-light);
    border-radius: var(--nbn-flow-radius-lg);
    padding: var(--nbn-flow-spacing-lg);
    margin-bottom: var(--nbn-flow-spacing-xl);
}

.nbn-cart-address {
    background: var(--nbn-flow-light);
    border-radius: var(--nbn-flow-radius-md);
    padding: var(--nbn-flow-spacing-md);
    margin-bottom: var(--nbn-flow-spacing-lg);
}

.nbn-cart-address h4 {
    font-size: 1rem;
    font-weight: var(--nbn-flow-font-weight-semibold);
    color: var(--nbn-flow-dark);
    margin-bottom: var(--nbn-flow-spacing-xs);
}

.nbn-cart-items {
    margin-bottom: var(--nbn-flow-spacing-lg);
}

.nbn-cart-item {
    background: var(--nbn-flow-light);
    border-radius: var(--nbn-flow-radius-md);
    padding: var(--nbn-flow-spacing-md);
    margin-bottom: var(--nbn-flow-spacing-md);
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.nbn-item-details h4 {
    font-size: 1.125rem;
    font-weight: var(--nbn-flow-font-weight-semibold);
    color: var(--nbn-flow-dark);
    margin-bottom: var(--nbn-flow-spacing-xs);
}

.nbn-item-type {
    font-size: 0.875rem;
    color: var(--nbn-flow-gray);
    margin: 0;
}

.nbn-item-price {
    text-align: right;
    flex-shrink: 0;
}

.nbn-price {
    font-size: 1.25rem;
    font-weight: var(--nbn-flow-font-weight-bold);
    color: var(--nbn-flow-primary);
}

.nbn-recurring,
.nbn-one-time {
    display: block;
    font-size: 0.875rem;
    color: var(--nbn-flow-gray);
    margin-top: var(--nbn-flow-spacing-xs);
}

.nbn-cart-totals {
    border-top: 2px solid var(--nbn-flow-border);
    padding-top: var(--nbn-flow-spacing-md);
}

.nbn-total-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--nbn-flow-spacing-sm);
    font-size: 1.125rem;
    font-weight: var(--nbn-flow-font-weight-semibold);
}

.nbn-total-amount {
    color: var(--nbn-flow-primary);
    font-weight: var(--nbn-flow-font-weight-bold);
}

/* ==========================================
   NAVIGATION
   ========================================== */

.nbn-flow-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: var(--nbn-flow-spacing-xl);
    padding-top: var(--nbn-flow-spacing-lg);
    border-top: 1px solid var(--nbn-flow-border);
}

/* ==========================================
   LOADING STATE
   ========================================== */

.nbn-flow-loading {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26, 26, 46, 0.8);
    backdrop-filter: blur(4px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    color: var(--nbn-flow-light);
}

.nbn-flow-spinner {
    width: 60px;
    height: 60px;
    border: 4px solid rgba(255, 142, 83, 0.2);
    border-top: 4px solid var(--nbn-flow-primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: var(--nbn-flow-spacing-md);
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* ==========================================
   ADDRESS RESULT
   ========================================== */

.nbn-address-result {
    background: var(--nbn-flow-gray-light);
    border-radius: var(--nbn-flow-radius-md);
    padding: var(--nbn-flow-spacing-lg);
    margin-top: var(--nbn-flow-spacing-lg);
}

.nbn-address-result.success {
    background: linear-gradient(135deg, rgba(32, 214, 180, 0.1) 0%, rgba(78, 205, 196, 0.1) 100%);
    border: 2px solid var(--nbn-flow-secondary);
}

.nbn-address-result.error {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.1) 0%, rgba(220, 38, 38, 0.1) 100%);
    border: 2px solid #ef4444;
}

/* ==========================================
   RESPONSIVE DESIGN
   ========================================== */

@media (max-width: 768px) {
    .nbn-flow-container {
        padding: var(--nbn-flow-spacing-sm);
    }

    .nbn-progress-steps {
        flex-wrap: wrap;
        gap: var(--nbn-flow-spacing-sm);
    }

    .nbn-progress-step {
        flex: 0 0 calc(33.333% - var(--nbn-flow-spacing-sm));
        min-width: 80px;
    }

    .nbn-progress-step-label {
        font-size: 0.75rem;
    }

    .nbn-step-title {
        font-size: 2rem;
    }

    .nbn-plans-grid {
        padding: 0;
        gap: var(--nbn-flow-spacing-md);
    }

    .nbn-plan-card {
        flex: 0 0 100%;
        max-width: none;
    }

    .nbn-scroll-arrow {
        display: flex;
    }

    .nbn-modems-grid,
    .nbn-phone-options {
        grid-template-columns: 1fr;
    }

    .nbn-modem-card {
        flex-direction: column;
        text-align: center;
    }

    .nbn-flow-navigation {
        flex-direction: column;
        gap: var(--nbn-flow-spacing-md);
    }

    .nbn-flow-navigation .nbn-btn {
        width: 100%;
        min-width: auto;
    }

    .nbn-cart-item {
        flex-direction: column;
        gap: var(--nbn-flow-spacing-sm);
        text-align: center;
    }

    .nbn-item-price {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .nbn-flow-step {
        padding: var(--nbn-flow-spacing-lg);
    }

    .nbn-step-title {
        font-size: 1.75rem;
    }

    .nbn-plan-price {
        font-size: 1.5rem;
    }

    .nbn-btn {
        padding: var(--nbn-flow-spacing-sm) var(--nbn-flow-spacing-md);
        font-size: 0.875rem;
    }

    .nbn-scroll-arrow {
        display: none;
    }
}

/* ==========================================
   UTILITIES
   ========================================== */

.nbn-text-center {
    text-align: center;
}

.nbn-text-left {
    text-align: left;
}

.nbn-text-right {
    text-align: right;
}

.nbn-hidden {
    display: none !important;
}

.nbn-visible {
    display: block !important;
}

.nbn-error {
    color: #ef4444;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid #ef4444;
    border-radius: var(--nbn-flow-radius-md);
    padding: var(--nbn-flow-spacing-md);
    text-align: center;
}

.nbn-success {
    color: var(--nbn-flow-secondary);
    background: rgba(32, 214, 180, 0.1);
    border: 1px solid var(--nbn-flow-secondary);
    border-radius: var(--nbn-flow-radius-md);
    padding: var(--nbn-flow-spacing-md);
    text-align: center;
}

/* Smooth scrolling for step navigation */
html {
    scroll-behavior: smooth;
}

/* ==========================================
   MODEM SECTION
   ========================================== */

.nbn-modems-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--nbn-flow-spacing-lg);
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--nbn-flow-spacing-md);
}

.nbn-modem-card {
    background: var(--nbn-flow-light);
    border-radius: var(--nbn-flow-radius-lg);
    padding: var(--nbn-flow-spacing-lg);
    box-shadow: 0 4px 6px var(--nbn-flow-shadow);
    transition: var(--nbn-flow-transition);
    border: 2px solid transparent;
    cursor: pointer;
    width: 100% !important; /* Override the 380px fixed width */
    min-height: auto !important; /* Override the min-height */
    display: flex !important;
    flex-direction: column !important;
}

.nbn-modem-card:hover,
.nbn-modem-card.selected {
    border-color: var(--nbn-flow-primary);
    box-shadow: 0 8px 25px rgba(255, 142, 83, 0.2);
}

.modem-image {
    text-align: center;
    margin-bottom: var(--nbn-flow-spacing-md);
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--nbn-flow-gray-light);
    border-radius: var(--nbn-flow-radius-md);
    overflow: hidden;
}

.modem-image img,
.modem-product-image {
    max-width: 100%;
    max-height: 180px;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: var(--nbn-flow-radius-sm);
}

.modem-details {
    text-align: center;
    margin-bottom: var(--nbn-flow-spacing-lg);
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    width: 100% !important;
}

.modem-name {
    font-size: 1.25rem;
    font-weight: var(--nbn-flow-font-weight-bold);
    color: var(--nbn-flow-dark);
    margin-bottom: var(--nbn-flow-spacing-xs);
    line-height: 1.3;
    width: 100%;
}

.modem-description {
    font-size: 0.9rem;
    color: var(--nbn-flow-gray);
    margin-bottom: var(--nbn-flow-spacing-sm);
    line-height: 1.4;
    width: 100%;
}

.modem-price {
    font-size: 1.1rem;
    font-weight: var(--nbn-flow-font-weight-semibold);
    color: var(--nbn-flow-primary);
    width: 100%;
}

.modem-actions {
    text-align: center;
}

.modem-actions .troppo-btn {
    width: 100%;
    padding: var(--nbn-flow-spacing-sm) var(--nbn-flow-spacing-md);
    font-weight: var(--nbn-flow-font-weight-medium);
}

.nbn-modem-card.selected .modem-actions .troppo-btn {
    background-color: var(--nbn-flow-secondary);
    border-color: var(--nbn-flow-secondary);
}

/* Modem Quantity Controls */
.nbn-modem-quantity {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--nbn-flow-spacing-sm);
    margin-bottom: var(--nbn-flow-spacing-md);
}

.nbn-quantity-label {
    font-weight: var(--nbn-flow-font-weight-semibold);
    color: var(--nbn-flow-text);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: var(--nbn-flow-spacing-xs);
}

.nbn-quantity-controls {
    display: flex;
    align-items: center;
    gap: var(--nbn-flow-spacing-xs);
    background: rgba(30, 30, 48, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--nbn-flow-radius-md);
    padding: 6px;
}

.nbn-modem-qty-btn {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.1);
    color: var(--nbn-flow-white);
    border-radius: var(--nbn-flow-radius-sm);
    cursor: pointer;
    font-size: 1.4rem;
    font-weight: var(--nbn-flow-font-weight-bold);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    backdrop-filter: blur(10px);
}

.nbn-modem-qty-btn:hover {
    background: var(--nbn-flow-primary);
    color: var(--nbn-flow-white);
    border-color: var(--nbn-flow-primary);
}

.nbn-modem-qty-btn:active {
    opacity: 0.9;
}

.nbn-modem-qty-input {
    width: 60px;
    height: 36px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.9);
    border-radius: var(--nbn-flow-radius-sm);
    font-size: 1.1rem;
    font-weight: var(--nbn-flow-font-weight-bold);
    color: var(--nbn-flow-dark);
    transition: var(--nbn-flow-transition);
}

.nbn-modem-qty-input:focus {
    outline: none;
    border-color: var(--nbn-flow-primary);
    box-shadow: 0 0 0 3px rgba(255, 142, 83, 0.2);
}

/* Update price display for quantity */
.modem-price small {
    display: block;
    font-size: 0.8rem;
    color: var(--nbn-flow-gray);
    font-weight: var(--nbn-flow-font-weight-normal);
    margin-top: 4px;
}

/* Responsive design for modems */
@media (max-width: 1024px) {
    .nbn-modems-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nbn-modems-grid {
        grid-template-columns: 1fr;
        gap: var(--nbn-flow-spacing-md);
        padding: var(--nbn-flow-spacing-sm);
    }

    .modem-image {
        height: 150px;
    }

    .modem-image img,
    .modem-product-image {
        max-height: 130px;
    }
}

/* ==========================================
   PLAN USERS SECTION
   ========================================== */

.nbn-users-box {
    margin: 0 -1px 0 -1px;
    padding: 1.5rem 2rem 2.5rem;
    background: var(--troppo-card-background, var(--nbn-flow-dark));
    border: none;
    text-align: center;
    position: relative;
    overflow: visible;
    width: calc(100% + 2px);
    box-sizing: border-box;
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 35px), 50% 100%, 0 calc(100% - 35px));
    height: 110px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.nbn-users-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(32, 214, 180, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.nbn-users-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--nbn-flow-secondary);
    line-height: 1;
    margin-bottom: 0.25rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.nbn-users-label {
    font-size: 0.875rem;
    color: var(--nbn-flow-secondary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Focus styles for accessibility */
.nbn-btn:focus,
.nbn-form-control:focus,
.nbn-plan-card:focus,
.nbn-modem-card:focus,
.nbn-phone-option:focus {
    outline: 3px solid rgba(255, 142, 83, 0.3);
    outline-offset: 2px;
}

/* Voice Selection - Simplified Yes/No Buttons */
.nbn-voip-simple-options {
    display: flex;
    gap: var(--nbn-flow-spacing-lg);
    justify-content: center;
    margin: var(--nbn-flow-spacing-xl) 0;
}

/* Voice Price Display */
.nbn-voip-price-display {
    text-align: center;
    margin: var(--nbn-flow-spacing-xl) 0;
    padding: var(--nbn-flow-spacing-lg);
    background: var(--nbn-flow-card-bg);
    border: 1px solid var(--nbn-flow-border);
    border-radius: var(--nbn-flow-radius-lg);
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.nbn-voip-price-name {
    font-size: 20px;
    font-weight: 600;
    color: var(--nbn-flow-text);
    margin-bottom: var(--nbn-flow-spacing-sm);
}

.nbn-voip-price-amount {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: var(--nbn-flow-spacing-xs);
}

.nbn-voip-price-value {
    font-size: 32px;
    font-weight: 700;
    color: var(--nbn-flow-accent);
}

.nbn-voip-price-term {
    font-size: 18px;
    font-weight: 400;
    color: var(--nbn-flow-secondary);
}

.nbn-voip-simple-btn {
    min-width: 200px;
    padding: var(--nbn-flow-spacing-lg) var(--nbn-flow-spacing-xl);
    background: var(--nbn-flow-card-bg);
    border: 2px solid var(--nbn-flow-border);
    border-radius: var(--nbn-flow-radius-lg);
    color: var(--nbn-flow-text);
    font-size: 24px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nbn-voip-simple-btn:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--nbn-flow-accent);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.nbn-voip-simple-btn.selected {
    background: var(--nbn-flow-accent);
    border-color: var(--nbn-flow-accent);
    color: #fff;
    box-shadow: 0 8px 24px rgba(51, 153, 255, 0.3);
}

.nbn-voip-simple-btn.selected:hover {
    background: #2a7ae4;
    border-color: #2a7ae4;
}

.nbn-voip-simple-yes {
    border-color: #28a745;
}

.nbn-voip-simple-yes:hover {
    border-color: #28a745;
    background: rgba(40, 167, 69, 0.1);
}

.nbn-voip-simple-yes.selected {
    background: #28a745;
    border-color: #28a745;
}

.nbn-voip-simple-no {
    border-color: #6c757d;
}

.nbn-voip-simple-no:hover {
    border-color: #6c757d;
    background: rgba(108, 117, 125, 0.1);
}

.nbn-voip-simple-no.selected {
    background: #6c757d;
    border-color: #6c757d;
}

.nbn-voip-btn-text {
    display: block;
    text-align: center;
}

/* Hidden voice data container */
.nbn-voip-data {
    display: none;
}

/* ==========================================
   MODEM RECOMMENDED BADGE
   ========================================== */

.nbn-modem-recommended {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 10;
}

.recommended-badge {
    background: var(--nbn-flow-secondary);
    color: var(--nbn-flow-dark);
    padding: 5px 12px;
    border-radius: var(--nbn-flow-radius-lg);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 4px var(--nbn-flow-shadow);
}

.nbn-modem-card {
    position: relative;
}

.nbn-modem-recommended-card {
    border: 2px solid var(--nbn-flow-secondary);
    box-shadow: 0 4px 12px rgba(32, 214, 180, 0.2);
}

.nbn-modem-recommended-card .modem-actions button {
    background: var(--nbn-flow-secondary);
    color: var(--nbn-flow-dark);
}

.nbn-modem-recommended-card .modem-actions button:hover {
    background: #1bc5a5;
    box-shadow: 0 4px 12px rgba(32, 214, 180, 0.3);
}

/* ==========================================
   MODEM CARD UX REDESIGN - Oliva reviewed
   Badges, Summary, Details, Card alignment
   ========================================== */

/* Badge container - full-width banner above the image */
.nbn-modem-badge {
    text-align: center;
    padding: 10px 16px;
    min-height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: calc(-1 * var(--nbn-flow-spacing-lg)) calc(-1 * var(--nbn-flow-spacing-lg)) var(--nbn-flow-spacing-md) calc(-1 * var(--nbn-flow-spacing-lg));
    border-radius: var(--nbn-flow-radius-lg) var(--nbn-flow-radius-lg) 0 0;
    background: rgba(255, 255, 255, 0.04);
}

/* Recommended banner - visually dominant (BYO card) */
.nbn-modem-recommended-card .nbn-modem-badge {
    background: var(--nbn-flow-secondary);
    padding: 12px 16px;
}

.nbn-modem-recommended-card .nbn-modem-badge .recommended-badge {
    background: none;
    box-shadow: none;
    padding: 0;
    color: var(--nbn-flow-dark);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1.5px;
}

/* "Best for" badge - less prominent than recommended */
.best-for-badge {
    display: inline-block;
    background: rgba(255, 142, 83, 0.15);
    color: var(--nbn-flow-primary);
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    line-height: 1.4;
}

/* Modem summary text - consistent height for alignment */
.modem-summary {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
    margin-bottom: var(--nbn-flow-spacing-md);
    min-height: 80px;
    width: 100%;
}

/* "More details" toggle - styled as disclosure link */
.modem-details-toggle {
    display: inline-block;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 142, 83, 0.3);
    color: var(--nbn-flow-primary);
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    padding: 6px 16px;
    margin-bottom: var(--nbn-flow-spacing-md);
    border-radius: 100px;
    text-decoration: none;
    transition: all 0.15s ease-out;
    letter-spacing: 0.3px;
}

.modem-details-toggle:hover {
    background: rgba(255, 142, 83, 0.1);
    border-color: var(--nbn-flow-primary);
    color: var(--nbn-flow-primary);
}

/* Expandable details content */
.modem-expanded-details {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    padding: var(--nbn-flow-spacing-md);
    background: rgba(255, 255, 255, 0.06);
    border-radius: var(--nbn-flow-radius-md);
    margin-bottom: var(--nbn-flow-spacing-md);
    border: none;
    width: 100%;
}

/* Price amount span for JS updates */
.modem-price-amount {
    font-size: 1.3rem;
    font-weight: var(--nbn-flow-font-weight-bold);
}

/* Card layout: flex column to push actions to bottom */
.nbn-modem-card {
    position: relative;
    display: flex !important;
    flex-direction: column !important;
}

/* Details section fills available space */
.nbn-modem-card .modem-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

/* Actions pinned to bottom */
.modem-actions {
    margin-top: auto;
    text-align: center;
    padding-top: var(--nbn-flow-spacing-sm);
}

/* Consistent card heights via flex */
.nbn-modems-grid {
    align-items: stretch;
}

/* Recommended card visual elevation */
.nbn-modem-recommended-card {
    border-color: var(--nbn-flow-secondary) !important;
    box-shadow: 0 4px 20px rgba(32, 214, 180, 0.15), 0 0 0 1px rgba(32, 214, 180, 0.1) !important;
    transform: scale(1.02);
}

/* Quantity input visibility fix */
.nbn-modem-qty-input {
    width: 50px;
    height: 36px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.9);
    border-radius: var(--nbn-flow-radius-sm);
    font-size: 1.1rem;
    font-weight: var(--nbn-flow-font-weight-bold);
    color: var(--nbn-flow-dark);
    -moz-appearance: textfield;
    -webkit-appearance: none;
    appearance: none;
}

.nbn-modem-qty-input::-webkit-inner-spin-button,
.nbn-modem-qty-input::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}


/* ==========================================
   CONSOLIDATED: nbn-flow-container-fix.css
   Fixes container overflow and scroll detection
   ========================================== */

/* Fix the plans container to allow proper scrolling */
.nbn-flow .nbn-plans-container {
    position: relative;
    overflow: visible !important;
    margin-bottom: var(--nbn-flow-spacing-xl);
    padding: 0 60px;
}

/* Ensure plans grid has proper constraints and scrolling */
.nbn-flow .nbn-plans-grid {
    display: flex;
    gap: 20px;
    overflow-x: auto !important;
    overflow-y: hidden;
    scroll-behavior: auto;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    max-width: 100%;
    position: relative;
}

/* Force plan cards to not wrap and maintain minimum width */
.nbn-flow .nbn-plan-card {
    flex: 0 0 auto;
    min-width: 380px;
    max-width: 380px;
    width: 380px;
}

/* Hide scrollbar */
.nbn-flow .nbn-plans-grid::-webkit-scrollbar {
    display: none;
}

.nbn-flow .nbn-plans-grid {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* Ensure arrows stay visible and positioned correctly */
.nbn-flow .nbn-scroll-arrow {
    position: absolute !important;
    z-index: 100 !important;
    display: flex !important;
    visibility: visible !important;
}

/* Medium screens */
@media (max-width: 1200px) {
    .nbn-flow .nbn-plan-card {
        min-width: 320px;
        max-width: 320px;
        width: 320px;
    }
}

/* Small screens */
@media (max-width: 768px) {
    .nbn-flow .nbn-plans-container {
        padding: 0 10px;
    }

    .nbn-flow .nbn-plan-card {
        min-width: 280px;
        max-width: 280px;
        width: 280px;
    }

    .nbn-flow .nbn-scroll-arrow {
        display: none !important;
    }
}


/* ==========================================
   CONSOLIDATED: nbn-flow-arrow-fix.css
   Arrow visibility and styling for flow plans
   ========================================== */

/* Arrow base styling */
.nbn-flow .nbn-scroll-arrow {
    position: absolute;
    top: 50%;
    margin-top: -20px;
    width: 40px;
    height: 40px;
    background: #fff;
    border: 2px solid #333;
    border-radius: 50%;
    color: #333;
    font-size: 24px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.nbn-flow .nbn-scroll-arrow.prev {
    left: 10px;
}

.nbn-flow .nbn-scroll-arrow.next {
    right: 10px;
}

.nbn-flow .nbn-scroll-arrow:not(.disabled):hover {
    background: #333;
    color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.nbn-flow .nbn-scroll-arrow:not(.disabled):active {
    opacity: 0.9;
}

.nbn-flow .nbn-scroll-arrow.disabled,
.nbn-flow .nbn-scroll-arrow[aria-disabled='true'] {
    opacity: 0.4;
    cursor: not-allowed;
    background: #f5f5f5;
    border-color: #ccc;
    color: #999;
}

.nbn-flow .nbn-scroll-arrow.disabled:hover,
.nbn-flow .nbn-scroll-arrow[aria-disabled='true']:hover {
    background: #f5f5f5;
    color: #999;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .nbn-flow .nbn-plans-container {
        position: relative;
        padding: 0 50px !important;
    }

    .nbn-flow .nbn-scroll-arrow {
        display: flex !important;
        position: absolute;
        top: 50%;
        margin-top: -17.5px;
        width: 35px;
        height: 35px;
        font-size: 16px;
        z-index: 101;
    }

    .nbn-flow .nbn-scroll-arrow.prev {
        left: 5px;
    }

    .nbn-flow .nbn-scroll-arrow.next {
        right: 5px;
    }

    .nbn-flow .nbn-plans-grid {
        display: flex !important;
        flex-wrap: nowrap !important;
        gap: 15px;
        padding-left: 10px;
        scroll-padding-left: 10px;
    }

    .nbn-flow .nbn-plan-card:first-child {
        margin-left: 0 !important;
    }

    .nbn-flow .nbn-plan-card {
        flex: 0 0 280px !important;
        min-width: 280px !important;
        max-width: 280px !important;
        margin: 0 !important;
    }
}

@media (max-width: 480px) {
    .nbn-flow .nbn-plans-container {
        padding: 0 40px !important;
    }

    .nbn-flow .nbn-scroll-arrow {
        width: 30px;
        height: 30px;
        font-size: 14px;
    }

    .nbn-flow .nbn-scroll-arrow.prev {
        left: 3px;
    }

    .nbn-flow .nbn-scroll-arrow.next {
        right: 3px;
    }

    .nbn-flow .nbn-plan-card {
        flex: 0 0 260px !important;
        min-width: 260px !important;
        max-width: 260px !important;
    }
}

.nbn-flow .nbn-plans-container {
    position: relative;
    padding: 0 60px;
}

.nbn-flow .nbn-plans-grid {
    overflow-x: auto;
    scroll-behavior: auto;
    -webkit-overflow-scrolling: touch;
}

.nbn-flow .nbn-plans-grid::-webkit-scrollbar {
    display: none;
}

.nbn-flow .nbn-plans-grid {
    scrollbar-width: none;
}

.nbn-flow .nbn-plan-card {
    flex-shrink: 0;
}

.nbn-flow .nbn-plans-container .nbn-scroll-arrow.prev,
.nbn-flow .nbn-plans-container .nbn-scroll-arrow.next {
    display: flex !important;
    visibility: visible !important;
}

.nbn-flow .nbn-scroll-arrow {
    z-index: 100;
}


/* ==========================================
   CONSOLIDATED: nbn-flow-pricing-fix.css
   Ensures prices are always visible
   ========================================== */

/* Show monthly prices by default on page load */
.nbn-flow .nbn-plan-price .nbn-monthly-price {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* Hide weekly prices by default */
.nbn-flow .nbn-plan-price .nbn-weekly-price {
    display: none !important;
}

/* Ensure the price container itself is visible */
.nbn-flow .nbn-plan-price {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* Show weekly prices when weekly filter is active */
.nbn-flow .nbn-payment-filter[data-payment='weekly'].active ~ .nbn-plans-container .nbn-weekly-price,
body[data-payment-filter='weekly'] .nbn-flow .nbn-weekly-price {
    display: block !important;
}

/* Hide monthly prices when weekly filter is active */
.nbn-flow .nbn-payment-filter[data-payment='weekly'].active ~ .nbn-plans-container .nbn-monthly-price,
body[data-payment-filter='weekly'] .nbn-flow .nbn-monthly-price {
    display: none !important;
}

/* Ensure price text is visible */
.nbn-flow .nbn-plan-price,
.nbn-flow .nbn-weekly-price,
.nbn-flow .nbn-monthly-price {
    visibility: visible !important;
    opacity: 1 !important;
}

/* Unified filter rules for both contexts */
.nbn-plan-card .nbn-weekly-price {
    display: none !important;
}

.nbn-plan-card .nbn-monthly-price {
    display: block !important;
}

/* Weekly payment selected */
body[data-payment-filter='weekly'] .nbn-plan-card:not(.filter-hidden) .nbn-weekly-price {
    display: block !important;
}

body[data-payment-filter='weekly'] .nbn-plan-card:not(.filter-hidden) .nbn-monthly-price {
    display: none !important;
}

/* Monthly payment selected */
body[data-payment-filter='monthly'] .nbn-plan-card:not(.filter-hidden) .nbn-monthly-price {
    display: block !important;
}

body[data-payment-filter='monthly'] .nbn-plan-card:not(.filter-hidden) .nbn-weekly-price {
    display: none !important;
}

/* Ensure price containers are always visible for shown cards */
.nbn-plan-card:not(.filter-hidden) .nbn-plan-price,
.nbn-plan-card:not(.filter-hidden) .nbn-plan-pricing {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    min-height: 60px;
}

/* Filter hidden cards */
.nbn-plan-card.filter-hidden {
    display: none !important;
}

/* No plans message */
.nbn-no-plans-message {
    grid-column: 1 / -1;
    text-align: center;
    padding: 30px 20px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    font-style: italic;
}

/* Step visibility - ensure all flow steps always visible */
.nbn-flow-section,
.nbn-modems-section,
.nbn-voip-section,
.nbn-cart-summary-section {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.nbn-flow-section.hidden,
.nbn-modems-section.hidden,
.nbn-voip-section.hidden,
.nbn-cart-summary-section.hidden {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* Cart visibility */
.nbn-flow-cart,
.nbn-cart-summary,
.nbn-flow-checkout {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.nbn-flow-cart.hidden,
.nbn-cart-summary.hidden,
.nbn-flow-checkout.hidden {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}


/* ==========================================
   CONSOLIDATED: nbn-flow-pricing-initial-fix.css
   Aggressive rules for prices on initial page load.
   Must appear after pricing-fix rules above.
   ========================================== */

/* Force all price containers to be visible */
.nbn-flow .nbn-plan-card .nbn-plan-price,
.nbn-flow .nbn-plan-price,
.nbn-flow .nbn-price-container {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    height: auto !important;
    overflow: visible !important;
}

/* Force monthly prices to show by default on initial load */
.nbn-flow .nbn-monthly-price,
.nbn-flow .nbn-plan-price .nbn-monthly-price,
.nbn-flow .nbn-plan-card .nbn-monthly-price {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* Ensure price values are visible */
.nbn-flow .nbn-price-value {
    display: inline !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* Fix for when body does not have payment filter attribute yet */
body:not([data-payment-filter]) .nbn-flow .nbn-monthly-price {
    display: block !important;
}

body:not([data-payment-filter]) .nbn-flow .nbn-weekly-price {
    display: none !important;
}

/* Override any conflicting rules from other stylesheets */
.nbn-flow .nbn-plans-container .nbn-plan-card .nbn-plan-price .nbn-monthly-price {
    display: block !important;
}

/* Ensure price containers have minimum height */
.nbn-flow .nbn-plan-price:not(:empty) {
    min-height: 30px;
}

/* Loading state for plan filtering */
.nbn-plans-grid.loading {
    opacity: 0.6;
    pointer-events: none;
}

.nbn-loading {
    text-align: center;
    padding: 2rem;
    color: #fff;
    font-size: 1.1rem;
}

.nbn-error {
    text-align: center;
    padding: 2rem;
    color: #ff6b6b;
    font-size: 1.1rem;
    background: rgba(255, 107, 107, 0.1);
    border-radius: 8px;
    margin: 1rem 0;
}


/* ==========================================
   CONSOLIDATED: nbn-phone-frequency-fix.css
   VoIP plan billing frequency display
   ========================================== */

.nbn-voip-plan-price {
    font-size: 1.5em;
    font-weight: 700;
    color: var(--nbn-flow-primary, #35a95c);
    margin: 10px 0;
}

.nbn-voip-weekly-price,
.nbn-voip-monthly-price {
    display: inline-block;
}

.nbn-voip-plan-card[data-payment-type='weekly'] .nbn-voip-monthly-price {
    display: none !important;
}

.nbn-voip-plan-card[data-payment-type='weekly'] .nbn-voip-weekly-price {
    display: inline-block !important;
}

.nbn-voip-plan-card[data-payment-type='monthly'] .nbn-voip-weekly-price {
    display: none !important;
}

.nbn-voip-plan-card[data-payment-type='monthly'] .nbn-voip-monthly-price {
    display: inline-block !important;
}

.nbn-voip-plan-card:not([data-payment-type]) .nbn-voip-weekly-price {
    display: none !important;
}

.nbn-voip-plan-card:not([data-payment-type]) .nbn-voip-monthly-price {
    display: inline-block !important;
}

.nbn-voip-plan-term {
    font-size: 0.7em;
    color: var(--nbn-flow-text-light, #666);
    font-weight: 400;
}

.nbn-voip-included {
    font-size: 0.9em;
    color: var(--nbn-flow-success, #28a745);
    margin-top: 10px;
}

@media (max-width: 768px) {
    .nbn-voip-plan-price {
        font-size: 1.3em;
    }

    .nbn-voip-plan-term {
        font-size: 0.6em;
    }
}
