body {
    background: 
        linear-gradient(90deg, rgba(255, 50, 77, 0.02) 1px, transparent 1px),
        linear-gradient(rgba(255, 50, 77, 0.02) 1px, transparent 1px),
        #ffffff;
    background-size: 30px 30px, 30px 30px, 100% 100%;
    background-position: 0 0, 0 0, 0 0;
    padding-top: 120px;
    min-height: 100vh;
}

.order-container {
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
    padding: 2rem;
}

.order-card {
    background: 
        linear-gradient(90deg, rgba(255, 50, 77, 0.025) 1px, transparent 1px),
        linear-gradient(rgba(255, 50, 77, 0.025) 1px, transparent 1px),
        linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
    background-size: 20px 20px, 20px 20px, 100% 100%;
    background-position: 0 0, 0 0, 0 0;
    border-radius: 25px;
    padding: 3rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 3px solid #ececec;
    position: relative;
    min-height: 650px;
    overflow: hidden;
}

.order-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: 5%;
    right: 40%;
    height: 4px;
    background: linear-gradient(to right, 
        transparent 0%, 
        rgba(58, 208, 213, 0) 20%,
        #ff324d 50%, 
        rgba(58, 79, 213, 0) 80%,
        transparent 100%);
    border-radius: 4px;
    opacity: 0.8;
    z-index: 2;
}

.order-card > * {
    position: relative;
    z-index: 1;
}

.order-card::after {
    content: '';
    position: absolute;
    left: -2px;
    top: 40%;
    bottom: 5%;
    width: 4px;
    background: linear-gradient(to bottom, 
        transparent 0%, 
        rgba(58, 208, 213, 0) 20%,
        #ff324d 50%, 
        rgba(58, 79, 213, 0) 80%,
        transparent 100%);
    border-radius: 4px;
    opacity: 0.8;
}

/* Progress Indicators */
.progress-indicators {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
}

.indicator {
    width: 40px;
    height: 4px;
    background: #e0e0e0;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.indicator.active {
    background: #ff324d;
    width: 50px;
}

/* Step Content */
.step-content {
    text-align: center;
    animation: fadeIn 0.5s ease;
}

.step-content.hidden {
    display: none;
}

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

.step-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 2rem;
    background: linear-gradient(145deg, rgba(255, 50, 77, 0.1), rgba(255, 50, 77, 0.05));
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: #ff324d;
}

.step-content h2 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.step-content p {
    color: #7f8c8d;
    font-size: 1rem;
    margin-bottom: 2.5rem;
}

/* Options List */
.options-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.option-item {
    border: 2px solid #ececec;
    border-radius: 15px;
    padding: 1.2rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.option-item:hover {

    transform: translateY(-3px);
}

.option-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(145deg, rgba(255, 50, 77, 0.15), rgba(255, 50, 77, 0.08));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #ff324d;
    flex-shrink: 0;
}

.option-text {
    flex: 1;
    text-align: left;
}

.option-text h4 {
    color: #2c3e50;
    font-size: 1.1rem;
    margin-bottom: 0.2rem;
    font-weight: 600;
}

.option-text p {
    color: #7f8c8d;
    font-size: 0.85rem;
    margin: 0;
}

.option-arrow {
    width: 40px;
    height: 40px;
    background: rgba(255, 50, 77, 0.1);
    border-radius: 20%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ff324d;
    transition: all 0.3s ease;
}

.option-item:hover .option-arrow {
    background: #ff324d;
    color: white;
    transform: translateX(3px);
}

/* Navigation Buttons */
.navigation-buttons {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 2rem;
}

.nav-btn {
    padding: 0.9rem 2rem;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border: none;
}

.back-btn {
    background: transparent;
    color: #2c3e50;
    border: 2px solid #ececec;
}

.back-btn:hover:not(:disabled) {
    background: #f8f9fa;
    border-color: #ff324d;
    color: #ff324d;
    transform: translateY(-2px);
}

.back-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.skip-btn {
    background: linear-gradient(135deg, #ff324d, #ff5a6e);
    color: white;
    border: none;
}

.skip-btn:hover {
    background: linear-gradient(135deg, #e62a43, #ff324d);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 50, 77, 0.4);
}

/* Responsive */
@media (max-width: 768px) {
    .order-card {
        padding: 2rem 1.5rem;
    }

    .step-icon {
        width: 100px;
        height: 100px;
        font-size: 2.5rem;
    }

    .step-content h2 {
        font-size: 1.5rem;
    }

    .option-item {
        padding: 1rem;
    }

    .option-icon {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }

    .navigation-buttons {
        flex-direction: column-reverse;
    }

    .nav-btn {
        width: 100%;
        justify-content: center;
    }
}
