/* ============================================================
   how-to-order.css — Секция "Как сделать заказ"
   Стиль как у рекомендаций, 4 карточки в ряд
   ============================================================ */

.how-to-order-steps {
    display: flex;
    justify-content: space-between;
    gap: 1.5rem;
    margin: 2rem 0;
}

.how-to-order-step {
    flex: 1;
    background: white;
    border-radius: 12px;
    padding: 2rem 1.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    border: 1.5px solid #e0e0e0;
    transition: all 0.3s ease;
    text-align: center;
}

.how-to-order-step:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.how-to-order-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 1.2rem auto;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1.5px solid #ccc;
    color: #888;
    transition: all 0.3s ease;
}

.how-to-order-step:hover .how-to-order-icon {
    border-color: #999;
    color: #555;
}

.how-to-order-step h3 {
    color: #333;
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.how-to-order-step p {
    color: #666;
    line-height: 1.6;
    font-size: 0.9rem;
    text-align: center;
}

/* Тонкая линия сверху */
.how-to-order-step:nth-child(1) { border-top: 2px solid #ccc; }
.how-to-order-step:nth-child(2) { border-top: 2px solid #ccc; }
.how-to-order-step:nth-child(3) { border-top: 2px solid #ccc; }
.how-to-order-step:nth-child(4) { border-top: 2px solid #ccc; }

/* Мобильная адаптация */
@media screen and (max-width: 980px) {
    .how-to-order-steps {
        flex-wrap: wrap;
        gap: 1rem;
    }

    .how-to-order-step {
        flex: 1 1 45%;
        padding: 1.5rem;
    }
}

@media screen and (max-width: 736px) {
    .how-to-order-steps {
        flex-direction: column;
        gap: 1rem;
    }

    .how-to-order-step {
        padding: 1.2rem;
    }

    .how-to-order-step h3 {
        font-size: 1rem;
    }

    .how-to-order-step p {
        font-size: 0.85rem;
    }
}