.checkout-hero {
    padding: 55px 30px;
    text-align: center;
    background: #e8dfd2;
}

.checkout-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.checkout-hero p {
    max-width: 820px;
    margin: 0 auto;
    line-height: 1.6;
    font-size: 1.1rem;
}

.checkout-section {
    padding: 50px 20px;
    background: #f8f6f2;
}

.checkout-form {
    max-width: 760px;
    margin: 0 auto;
    background: white;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.checkout-form h2 {
    color: #6b4f2a;
}

.checkout-form label {
    display: block;
    margin-top: 18px;
    font-weight: bold;
}

.checkout-form input,
.checkout-form textarea {
    display: block;
    width: 100%;
    box-sizing: border-box;
    margin-top: 7px;
    padding: 12px;
    border: 1px solid #bbb;
    border-radius: 6px;
    font-size: 1rem;
}

.checkout-form textarea {
    resize: vertical;
}

.warning {
    color: #9b1c1c;
    font-weight: bold;
}

.checkout-result {
    max-width: 760px;
    margin: 25px auto 0 auto;
    background: #1d1a18;
    color: white;
    padding: 20px;
    border-radius: 12px;
    white-space: pre-wrap;
}