/* Coaching Minutes Slider Styles */
.coaching-slider-container {
    background: linear-gradient(135deg, #b71c1c 0%, #1a0000 100%);
    border-radius: 20px;
    padding: 30px;
    margin: 30px 0;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.coaching-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 20px;
}

.coaching-total,
.coaching-minutes,
.coaching-cashback {
    display: flex;
    align-items: center;
    gap: 15px;
}

.icon-wrapper {
    width: 50px;
    height: 50px;
	background: transparent !important;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
}


.total-info,
.minutes-info,
.cashback-info {
    display: flex;
    flex-direction: column;
}

.label {
    color: #ffffff;
    font-size: 14px;
    font-weight: 400;
    opacity: 0.8;
    margin-bottom: 5px;
}

.amount {
    color: #ffa726;
    font-size: 28px;
    font-weight: 700;
}

.coaching-minutes .amount {
    color: #ff9800;
}

.cashback-amount {
    color: #4caf50;
}

/* Slider Markers */
.slider-markers {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    padding: 0 60px;
}

.slider-markers span {
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.slider-markers span:hover {
    color: #ffa726;
    transform: scale(1.1);
}

.slider-markers span.active {
    color: #ffa726;
}

.slider-markers span.active::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 8px;
    height: 8px;
    background: #ffa726;
    border-radius: 50%;
}

/* Slider Wrapper */
.slider-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 50px;
    padding: 15px 20px;
    margin-bottom: 30px;
}

.slider-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #ff9800;
    border: none;
    color: #ffffff;
    font-size: 24px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(255, 152, 0, 0.4);
}

.slider-btn:hover {
    background: #ffa726;
    transform: scale(1.1);
}

.slider-btn:active {
    transform: scale(0.95);
}

.slider-track {
    flex: 1;
    position: relative;
}

/* Custom Range Slider */
#coaching-minutes-slider {
    width: 100%;
    height: 8px;
    -webkit-appearance: none;
    appearance: none;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    outline: none;
    cursor: pointer;
}

#coaching-minutes-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background: #ffa726;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(255, 167, 38, 0.5);
    transition: all 0.3s ease;
}

#coaching-minutes-slider::-webkit-slider-thumb:hover {
    transform: scale(1.2);
    box-shadow: 0 6px 20px rgba(255, 167, 38, 0.7);
}

#coaching-minutes-slider::-moz-range-thumb {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background: #ffa726;
    cursor: pointer;
    border: none;
    box-shadow: 0 4px 15px rgba(255, 167, 38, 0.5);
    transition: all 0.3s ease;
}

#coaching-minutes-slider::-moz-range-thumb:hover {
    transform: scale(1.2);
    box-shadow: 0 6px 20px rgba(255, 167, 38, 0.7);
}

/* Slider Value Display */
.slider-value-display {
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    background: #ffa726;
    color: #ffffff;
    padding: 8px 16px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 16px;
    box-shadow: 0 4px 15px rgba(255, 167, 38, 0.4);
    pointer-events: none;
}

.slider-value-display::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid #ffa726;
}

/* Checkout Button Styling (opcional) */
.single_add_to_cart_button {
    background: #ff9800 !important;
    color: #ffffff !important;
    border-radius: 50px !important;
    padding: 15px 40px !important;
    font-size: 18px !important;
    font-weight: 700 !important;
    border: none !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    width: 100% !important;
    margin-top: 20px !important;
}

.single_add_to_cart_button:hover {
    background: #ffa726 !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 152, 0, 0.4) !important;
}

/* Responsive Design */
@media (max-width: 768px) {
    .coaching-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .slider-markers {
        padding: 0 40px;
        font-size: 12px;
    }
    
    .amount {
        font-size: 22px;
    }
    
    .slider-wrapper {
        padding: 12px 15px;
    }
    
    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .coaching-slider-container {
        padding: 20px;
    }
    
    .slider-markers span {
        font-size: 11px;
    }
    
    .icon-wrapper {
        width: 40px;
        height: 40px;
    }
    
    .icon-wrapper img {
        width: 28px;
        height: 28px;
    }
}
