/* ==============================================
   PREMIUM SLIDERS (Glassmorphic)
   ============================================== */

.duration-group {
    margin-top: 24px;
    margin-bottom: 32px;
}

.duration-group label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

/* Duration Manual Input */
.duration-input-wrap {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: rgba(243, 194, 106, 0.1);
    padding: 2px 10px;
    border-radius: 8px;
    box-shadow: 0 0 15px rgba(243, 194, 106, 0.1);
}

.duration-manual-input {
    width: 42px;
    background: transparent;
    border: none;
    outline: none;
    color: var(--gold);
    font-size: 1.1rem;
    font-weight: 800;
    font-family: inherit;
    text-align: right;
    -moz-appearance: textfield;
}

.duration-manual-input::-webkit-outer-spin-button,
.duration-manual-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.duration-manual-input:focus {
    background: rgba(243, 194, 106, 0.08);
    border-radius: 4px;
}

.duration-unit {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gold);
    opacity: 0.7;
}

/* Base Slider */
.premium-slider {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    outline: none;
    margin: 15px 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.premium-slider:hover {
    background: rgba(255, 255, 255, 0.12);
}

/* Chrome/Safari Thumb */
.premium-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 22px;
    height: 22px;
    background: var(--gold);
    cursor: pointer;
    border-radius: 50%;
    border: 4px solid #1a1a1a;
    box-shadow: 0 0 15px var(--gold-glow);
    transition: all 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.premium-slider:active::-webkit-slider-thumb {
    transform: scale(1.2);
    box-shadow: 0 0 25px var(--gold-glow);
}

/* Firefox Thumb */
.premium-slider::-moz-range-thumb {
    width: 22px;
    height: 22px;
    background: var(--gold);
    cursor: pointer;
    border-radius: 50%;
    border: 4px solid #1a1a1a;
    box-shadow: 0 0 15px var(--gold-glow);
    transition: all 0.2s ease;
}

/* Marks */
.slider-marks {
    display: flex;
    justify-content: space-between;
    padding: 0 4px;
    margin-top: 8px;
}

.slider-marks span {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 500;
    position: relative;
}

.slider-marks span::before {
    content: '';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 1px;
}