/* delivery.css – стили только для страницы оплаты и доставки */
.delivery-content {
    overflow-y: auto;
    flex: 1;
    padding-right: 10px;
}

.info-block {
    background: rgba(255,255,255,0.15);
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 15px;
}

.step-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.step-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.step-number {
    width: 35px;
    height: 35px;
    background: var(--dark-blue);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}

.methods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 12px;
    margin-top: 15px;
}

.method-card {
    background: rgba(255,255,255,0.2);
    padding: 15px;
    border-radius: 10px;
    text-align: center;
}

.payment-info {
    background: rgba(39,174,96,0.15);
    border-left: 4px solid #27ae60;
}

h2 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--dark-blue);
}

@media (max-width: 768px) {
    .step-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}