#order {
    position: relative;
    background: linear-gradient(135deg, #f9f9f9, #e0f7fa);
    padding: 60px 20px;
    text-align: center;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    overflow: hidden;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1s ease, transform 1s ease;
}

#order.visible {
    opacity: 1;
    transform: translateY(0);
}

#order::before,
#order::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    filter: blur(60px);
    pointer-events: none;
}

#order::before {
    width: 250px; height: 250px;
    top: -80px; left: -60px;
    animation: float1 15s ease-in-out infinite alternate;
}

#order::after {
    width: 200px; height: 200px;
    bottom: -100px; right: -50px;
    animation: float2 18s ease-in-out infinite alternate;
}

@keyframes float1 {
    0% { transform: translate(0,0); }
    50% { transform: translate(20px,-10px); }
    100% { transform: translate(0,0); }
}

@keyframes float2 {
    0% { transform: translate(0,0); }
    50% { transform: translate(-15px,-8px); }
    100% { transform: translate(0,0); }
}

#order .order-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}
/* 
#order h2 {
    font-size: 2.2rem;
    color: #222;
    margin-bottom: 20px;
} */

#order p, #order ul li {
    font-size: 1.1rem;
    color: #333;
    line-height: 1.6;
}

#order a {
    color: #e74c3c;
    text-decoration: none;
    font-weight: 600;
}

#order a:hover {
    text-decoration: underline;
}
#order ul {
    list-style: none;   /* убирает точки */
    padding: 0;         /* убирает отступ слева */
    margin: 0;          /* по желанию, чтобы список был ровнее */
}

#order ul {
    list-style: none;
    padding: 0;
    margin: 30px 0;
    display: flex;
    flex-direction: column;
    gap: 15px; /* расстояние между карточками */
}

#order ul li {
    background: #ffffffaa; /* полупрозрачный белый */
    border-radius: 12px;
    padding: 15px 20px;
    font-size: 1.1rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#order ul li:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 18px rgba(0,0,0,0.12);
}

#order ul li {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.8s ease forwards;
}

#order ul li:nth-child(1) { animation-delay: 0.2s; }
#order ul li:nth-child(2) { animation-delay: 0.4s; }
#order ul li:nth-child(3) { animation-delay: 0.6s; }

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
