/* Custom Slider Styling */
.custom-slider::-webkit-slider-thumb {
    appearance: none;
    width: 24px;
    height: 24px;
    background: #f97316; /* brand-500 */
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 0 10px rgba(249, 115, 22, 0.5);
    border: 4px solid #fff;
    transition: transform 0.2s;
}

.custom-slider::-webkit-slider-thumb:hover {
    transform: scale(1.2);
}

.custom-slider::-moz-range-thumb {
    width: 24px;
    height: 24px;
    background: #f97316;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 0 10px rgba(249, 115, 22, 0.5);
    border: 4px solid #fff;
    transition: transform 0.2s;
}

.custom-slider::-moz-range-thumb:hover {
    transform: scale(1.2);
}

/* Base resets & utilities */
html {
    scroll-behavior: smooth;
}

/* Glassmorphism additions for dynamic feel */
::selection {
    background-color: #f97316;
    color: white;
}

.active-package {
    border-color: #f97316 !important;
    background-color: rgba(249, 115, 22, 0.1) !important;
}

.active-package span {
    color: #fb923c !important; /* brand-400 */
}

.text-glow {
    text-shadow: 0 0 20px rgba(249, 115, 22, 0.4);
}

.floating-badge {
    opacity: 0;
    transform: translateX(20px);
}
