
/* Minimal Custom CSS */

.card-custom {
        background: white;
        border-radius: 16px;
        box-shadow: 0 1px 3px rgba(0,0,0,0.06);
        border: none;
    }
.card-custom .aviris__bg-dark {
    background: var(--bg-dark);
    border-radius: 16px;

}
.pricing-icon-free {
    width: 48px;
    height: 48px;
    background: #f1f5f9;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #64748b;
}

.premium-card-wrapper {
    border-radius: 16px;
}

.premium-top {
    background: var(--aviris-primary);
    position: relative;
}

.pricing-card-upper, .premium-top{
    min-height: 390px;
}


.pricing-icon-premium {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
}

.device-box{
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.billing-pill {
    padding: 6px 12px;
    border-radius: 8px;
    font-weight: 600;
    color: white;
    cursor: pointer;
    transition: all 0.3s;
    white-space: nowrap;
    display: flex;
    align-items: center;
}

.billing-pill.active {
    background: var(--aviris-secondary);
    color: white;
    border-color: var(--aviris-secondary);
}



/* Custom Range Slider */
.custom-range {
    -webkit-appearance: none;
    width: 100%;
    height: 6px;
    border-radius: 3px;
    background: rgba(255, 255, 255, 0.2);
    outline: none;
    position: relative;
}

/* Webkit (Chrome, Safari, Edge) */
.custom-range::-webkit-slider-runnable-track {
    width: 100%;
    height: 6px;
    border-radius: 3px;
    background: rgba(255, 255, 255, 0.2);
}

.custom-range::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: white;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
    transition: all 0.2s ease;
    margin-top: -7px;
}

.custom-range::-webkit-slider-thumb:hover {
    transform: scale(1.2);
    box-shadow: 0 4px 12px rgba(0,0,0,0.4);
}

/* Firefox */
.custom-range::-moz-range-track {
    width: 100%;
    height: 6px;
    border-radius: 3px;
    background: rgba(255, 255, 255, 0.2);
}

.custom-range::-moz-range-progress {
    height: 6px;
    border-radius: 3px;
    background: var(--aviris-secondary);
}

.custom-range::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: white;
    cursor: pointer;
    border: none;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
    transition: all 0.2s ease;
}

.custom-range::-moz-range-thumb:hover {
    transform: scale(1.2);
    box-shadow: 0 4px 12px rgba(0,0,0,0.4);
}

/* Wrapper for progress fill (Webkit) */
.range-wrapper {
    position: relative;
    width: 100%;
}

.range-progress {
    position: absolute;
    height: 6px;
    background: var(--aviris-secondary);
    border-radius: 3px 0 0 3px;
    pointer-events: none;
    transition: width 0.2s ease;
    top: 11px;
    left: 0;
    z-index: 0;
}

.custom-range {
    position: relative;
    z-index: 1;
    background: transparent;
}

.promo-input {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 10px;
    border-radius: 10px;
    height: 46px;
}

.promo-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.promo-input:focus {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    color: white;
}

.text-white-50 {
    color: rgba(255, 255, 255, 0.5);
}

.device-input {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: white;
    font-weight: 600;
    width: 30px;
    text-align: center;
    font-size: inherit;
    outline: none;
    padding: 0;
    margin: 0;
}

.device-input:focus {
    background: rgba(255, 255, 255, 0.1);
    /* border-radius: 4px;
    padding: 2px 4px; */
}

.device-input::-webkit-outer-spin-button,
.device-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.device-input[type=number] {
    -moz-appearance: textfield;
}

@media (max-width: 991.98px) {
    .billing-pill {
        font-size: 11px;
        padding: 5px 10px;
    }
        .slots-container {
        gap: 4px;
    }

}

.card-brand-icon {
      position: absolute;
    left: 12px;
    top: 45%;
    transform: translateY(-50%);
    font-size: 30px;
    pointer-events: none;
}


.billing-bill-content{
    background: #99f8dc45;
    padding: 8px;
    border-radius: 12px;
}

.pricing-badge-off{
    background: #1a5e4a9e;
    color: white;
    display: flex;
    align-items: center;
    border-radius: 25px;

    font-weight: 700;
    font-size: 13px;
    padding: 6px 14px;
}