.payphone-result {
    max-width: 760px;
    margin: 60px auto;
    text-align: center;
    padding: 0 20px;
}

.payphone-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 30px;
    border-radius: 50%;
    background: #fff5f5;
    color: #e74c3c;
    border: 2px solid #f8caca;
    font-size: 42px;
    line-height: 86px;
    font-weight: 300;
}

.payphone-result h1 {
    font-size: 40px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.payphone-subtitle {
    max-width: 650px;
    margin: 0 auto 35px;
    font-size: 18px;
    color: #666;
    line-height: 1.6;
}

.payphone-order-summary {
    display: flex;
    gap: 20px;
    justify-content: space-between;
    margin-bottom: 30px;
    padding: 25px;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    background: #fafafa;
}

.summary-item {
    flex: 1;
    text-align: center;
}

.summary-item span {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    color: #888;
}

.summary-item strong {
    font-size: 20px;
    color: #333;
}

.payphone-card {
    text-align: left;
    background: #fff;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 30px;
}

.payphone-card h3 {
    margin: 0 0 20px;
    font-size: 24px;
    color: #333;
}

.payphone-message {
    color: #555;
    font-size: 16px;
    line-height: 1.6;
}

.payphone-message p:last-child {
    margin-bottom: 0;
}

.payphone-info {
    margin-bottom: 35px;
}

.payphone-tips {
    display: flex;
    flex-direction: column;
    gap: 20px;
    text-align: left;
}

.tip-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.tip-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.tip-item strong {
    display: block;
    margin-bottom: 6px;
    font-size: 16px;
    color: #333;
}

.tip-item p {
    margin: 0;
    color: #666;
    line-height: 1.6;
}

.payphone-actions {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.payphone-actions .btn {
    min-width: 240px;
    padding: 14px 28px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
}

.payphone-actions .btn-primary {
    box-shadow: 0 6px 18px rgba(0, 123, 255, .15);
}

.payphone-actions .btn-default {
    background: #fff;
    border: 1px solid #ddd;
}

.payphone-actions .btn-default:hover {
    background: #f8f9fa;
}

@media (max-width: 768px) {

    .payphone-order-summary {
        flex-direction: column;
        gap: 15px;
    }

    .payphone-actions {
        flex-direction: column;
    }

    .payphone-actions .btn {
        width: 100%;
        min-width: auto;
    }

    .tip-item {
        align-items: flex-start;
    }

    .payphone-result h1 {
        font-size: 32px;
    }

    .payphone-subtitle {
        font-size: 16px;
    }
}