/* Step Form CSS */
form#web-order-form {
    width: 100%;
}
.step-progress {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.step {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #e0e0e0;
    color: #777;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.step.active {
    background: linear-gradient(220deg, rgba(0, 216, 255, 0.7) 0%, rgba(71, 120, 255, 0.7) 50%, rgba(118, 55, 189, 0.7) 100%);
    color: #fff;
}

.step.completed {
    background-color: #4CAF50;
    color: #fff;
}

.step-line {
    flex: 1;
    height: 3px;
    background-color: #e0e0e0;
    margin: 0 10px;
    z-index: 1;
    transition: all 0.3s ease;
}

.step-line.active {
    background: linear-gradient(220deg, rgba(0, 216, 255, 0.7) 0%, rgba(71, 120, 255, 0.7) 50%, rgba(118, 55, 189, 0.7) 100%);
}

.form-step {
    display: none;
    animation: fadeIn 0.5s ease;
}

.form-step.active {
    display: block;
}

.form-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
    padding-top: 20px;
    /* border-top: 1px solid #e0e0e0; */
}

.next-step, .prev-step {
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.next-step {
    background: linear-gradient(220deg, rgba(0, 216, 255, 0.7) 0%, rgba(71, 120, 255, 0.7) 50%, rgba(118, 55, 189, 0.7) 100%);
    color: #fff;
    margin-left: auto;
}

.next-step:hover {
    background-color: var(--primary-dark, #e66d47);
}

.prev-step {
    background-color: #2e2e2e;
    color: #ffffff;
}

.prev-step:hover {
    background-color: #d0d0d0;
}

.submit-btn {
    background: linear-gradient(220deg, rgba(0, 216, 255, 0.7) 0%, rgba(71, 120, 255, 0.7) 50%, rgba(118, 55, 189, 0.7) 100%);
    color: #fff;
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 20px;
    width: 100%;
}

.submit-btn:hover {
    background: linear-gradient(220deg, rgba(0, 216, 255, 0.7) 0%, rgba(71, 120, 255, 0.7) 50%, rgba(118, 55, 189, 0.7) 100%);
    transition: all 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Pill-style radio buttons */
.pill-selector {
    margin-bottom: 15px;
}

.pill-options {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.pill-option {
    position: relative;
    display: inline-block;
    margin: 0;
    cursor: pointer;
}

.pill-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.pill-text {
    display: inline-block;
    padding: 10px 20px;
    font-size: 14px;
    background: #2e2e2e;
    color: #88999d;
    border-radius: 8px;
    transition: all 0.3s ease;
    min-width: 80px;
    text-align: center;
}

.pill-option input[type="radio"]:checked + .pill-text {
    background: linear-gradient(220deg, rgba(0, 216, 255, 0.7) 0%, rgba(71, 120, 255, 0.7) 50%, rgba(118, 55, 189, 0.7) 100%);
    color: #fff;
    box-shadow: 0 2px 8px rgba(0, 216, 255, 0.3);
}

.pill-option:hover .pill-text {
    background: #3e3e3e;
}

.pill-option input[type="radio"]:checked:hover + .pill-text {
    background: linear-gradient(220deg, rgba(0, 216, 255, 0.8) 0%, rgba(71, 120, 255, 0.8) 50%, rgba(118, 55, 189, 0.8) 100%);
}

/* Pill styles for checkboxes and radio buttons */
.feature-options {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.checkbox-pill input[type="checkbox"],
.radio-pill input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.checkbox-pill .pill-text,
.radio-pill .pill-text {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    min-height: 44px;
    text-align: center;
    background: #2e2e2e;
    color: #88999d;
    font-size: 14px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.checkbox-pill .pill-text:hover,
.radio-pill .pill-text:hover {
    background: #3e3e3e;
}

.checkbox-pill input[type="checkbox"]:checked + .pill-text,
.radio-pill input[type="radio"]:checked + .pill-text {
    background: linear-gradient(220deg, rgba(0, 216, 255, 0.7) 0%, rgba(71, 120, 255, 0.7) 50%, rgba(118, 55, 189, 0.7) 100%);
    color: white;
    box-shadow: 0 2px 8px rgba(0, 216, 255, 0.3);
}

.checkbox-pill input[type="checkbox"]:checked + .pill-text:hover,
.radio-pill input[type="radio"]:checked + .pill-text:hover {
    background: linear-gradient(220deg, rgba(0, 216, 255, 0.8) 0%, rgba(71, 120, 255, 0.8) 50%, rgba(118, 55, 189, 0.8) 100%);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .step-progress {
        max-width: 90%;
    }
    
    .step {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
    
    .form-navigation {
        flex-direction: column;
        gap: 10px;
    }
    
    .next-step, .prev-step {
        width: 100%;
        text-align: center;
    }
    
    .feature-options {
    display: flex;
    width: 100%;
    flex-direction: column;
    }
}

.back-home-btn{
        background: linear-gradient(220deg, rgba(0, 216, 255, 0.7) 0%, rgba(71, 120, 255, 0.7) 50%, rgba(118, 55, 189, 0.7) 100%);
        color:#fff;
}