/* Dark theme styling to match web-order.css */
.order-form-area {
    padding: 100px 0;
    background: #111111;
    color: #ffffff;
}

.order-form-wrapper {
    background: #161616;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
    padding: 60px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.form-section {
    margin-bottom: 40px;
    border-bottom: 1px solid #2e2e2e;
    padding-bottom: 30px;
}

.form-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.form-section h3.section-title,
.form-step h3.section-title {
    font-size: 22px;
    margin-bottom: 25px;
    color: #ffffff;
    font-weight: 600;
    font-family: var(--tp-ff-gallery);
    text-align: center;
}

.input-group {
    margin-bottom: 20px;
}

.input-group input,
.input-group textarea,
.input-group select {
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 11px;
    font-size: 15px;
    background: #2e2e2e;
    color: #ffffff;
}

.input-group textarea {
    min-height: 120px;
    resize: vertical;
}

.checkbox-group .checkbox-label,
.form-label {
    font-weight: 500;
    margin-bottom: 15px;
    color: #ffffff;
}

.checkbox-wrapper, .color-selection {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 15px;
}

.checkbox-wrapper.formats {
    grid-template-columns: repeat(2, 1fr);
}

.checkbox-wrapper label, .color-selection label {
    display: flex;
    align-items: center;
    font-size: 15px;
    color: #ffffff;
    cursor: pointer;
}

.checkbox-wrapper input, .color-selection input {
    margin-right: 10px;
    width: auto;
}

.submit-btn {
    width: 100%;
    margin: 13px auto;
    padding: 10px 40px;
    border: none;
    background: #fff;
    color: #111;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.submit-btn:hover {
    transform: translateY(-3px);
    transition: all 0.3s ease;
}

#success-message {
    /* position: absolute; */
    top: 0;
    left: 0;
    /* width: 100%; */
    height: 100%;
    background: #161616;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.success-content {
    padding: 30px;
    max-width: 500px;
}

.success-content i {
    font-size: 80px;
    color: #4CAF50;
    margin-bottom: 20px;
}

.success-content h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #ffffff;
}

.success-content p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #ffffff;
}

.back-home-btn {
    display: inline-block;
    padding: 12px 30px;
    background: #ffffff;
    color: #111111;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.back-home-btn:hover {
    background: #000000;
    color:#fff;
}

/* Additional styles for form elements */
.form-select {
    background-color: #2e2e2e;
    color: #ffffff;
    border: none;
    border-radius: 11px;
}

.form-select option {
    background-color: #2e2e2e;
    color: #ffffff;
}

/* Additional dark theme radio and checkbox styles */
input[type="radio"], input[type="checkbox"] {
    accent-color: var(--color-1);
}

/* Conditional field styling */
.conditional-field {
    margin-top: 15px;
}

/* Step indicator styling */
.step-line {
    background-color: #2e2e2e;
}

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

.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;
}

@media (max-width: 768px) {
    .order-form-wrapper {
        padding: 40px 20px;
    }
    
    .checkbox-wrapper, .color-selection {
        grid-template-columns: 1fr;
    }
    
    .checkbox-wrapper.formats {
        grid-template-columns: 1fr;
    }
}