/* ========================================
   ORDER PAGE — Unique accent: Cyan/Blue
   ======================================== */

.order-header {
    text-align: center;
    margin: 40px 0 32px;
}

.order-icon-wrap {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    border-radius: var(--radius-lg);
    background: rgba(0, 212, 255, 0.08);
    border: 1px solid rgba(0, 212, 255, 0.15);
    color: var(--accent-cyan);
}

.order-header h1 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.order-header p {
    font-size: 0.92rem;
    color: var(--text-secondary);
}

/* Order Card */
.order-card {
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: var(--radius-xl);
    padding: 28px;
    position: relative;
    overflow: hidden;
}

.order-card::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.04), transparent 70%);
    pointer-events: none;
}

.order-method {
    margin-bottom: 28px;
}

.method-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(0, 212, 255, 0.06);
    border: 1px solid rgba(0, 212, 255, 0.12);
    border-radius: var(--radius-full);
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--accent-cyan);
}

/* Steps */
.order-steps {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: 28px;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px 0;
    position: relative;
}

.step:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 17px;
    top: 52px;
    bottom: -4px;
    width: 1px;
    background: linear-gradient(to bottom, rgba(0, 212, 255, 0.2), transparent);
}

.step-num {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.2);
    color: var(--accent-cyan);
    font-family: 'Outfit', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.step-content p {
    font-size: 0.82rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* CTA Button */
.order-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 16px;
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    font-size: 0.95rem;
    font-weight: 600;
    color: #fff;
    transition: all 0.3s var(--ease);
    box-shadow: 0 4px 20px rgba(0, 212, 255, 0.2);
}

.order-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(0, 212, 255, 0.3);
}

.order-cta:active {
    transform: translateY(0);
}
