.order-section,
.order-write {
    padding: 4rem 0;
}

.order-section h2 {
    text-align: center;
    color: #2c3e50;
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.order-write h2 {
    color: #2c3e50;
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.order-form {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #2c3e50;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
}

.form-group textarea {
    resize: vertical;
}

.form-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

/* Responsive */
@media (max-width: 768px) {
    .order-section,
    .order-write {
        padding: 2rem 0;
    }
    
    .order-section h2,
    .order-write h2 {
        font-size: 1.75rem;
        margin-bottom: 1.5rem;
    }
    
    .order-form {
        padding: 1.5rem;
    }
    
    .form-group input,
    .form-group textarea {
        font-size: 16px; /* iOS 줌 방지 */
        padding: 0.875rem;
    }
    
    .form-actions {
        flex-direction: column;
    }
    
    .form-actions .btn {
        width: 100%;
        min-height: 44px;
    }
}

@media (max-width: 480px) {
    .order-section h2,
    .order-write h2 {
        font-size: 1.5rem;
    }
}

