/* Order Page */

.order-hero {
    padding: 140px 0 40px;
    text-align: center;
}

.order-hero h1 {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 400;
    letter-spacing: -0.41px;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.order-hero p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.8;
    max-width: 600px;
    margin: 0 auto;
}

.order-form-section {
    padding: 40px 0 100px;
}

.order-form-section .form-wrapper {
    max-width: 700px;
    margin: 0 auto;
}

/* Order Form — mirrors waitlist form styles */
.order-form .form-row {
    display: grid;
    gap: 16px;
    margin-bottom: 16px;
}

.order-form .form-row.two-col {
    grid-template-columns: 1fr 1fr;
}

.order-form .form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 8px;
}

.order-form label {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 6px;
}

.order-form .field-hint {
    font-size: 12px;
    color: var(--text-light);
    margin-bottom: 6px;
}

.order-form input[type="text"],
.order-form input[type="email"],
.order-form select,
.order-form textarea {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 12px 14px;
    font-size: 14px;
    font-family: var(--font-body);
    color: var(--text-dark);
    background: #fff;
    transition: border-color 0.2s ease;
    outline: none;
    width: 100%;
    box-sizing: border-box;
    -webkit-appearance: none;
    appearance: none;
}

.order-form select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px;
}

.order-form input:focus,
.order-form select:focus,
.order-form textarea:focus {
    border-color: var(--primary-color);
}

.order-form textarea {
    resize: vertical;
}

.order-submit-btn {
    display: inline-block;
    padding: 16px 48px;
    background-color: var(--primary-color);
    color: #fff;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 500;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 16px;
    width: 100%;
}

.order-submit-btn:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
}

.order-submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

@media (max-width: 768px) {
    .order-hero {
        padding: 120px 0 30px;
    }

    .order-hero h1 {
        font-size: 36px;
    }

    .order-form .form-row.two-col {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .order-hero h1 {
        font-size: 28px;
    }
}
