.res-main {
    max-width: 480px;
    margin: 0 auto;
    padding: 24px;
}

.res-heading {
    font-family: var(--font-script);
    color: var(--red-dark);
    font-size: 2.4rem;
    margin-bottom: 6px;
    text-align: center;
}

.res-subheading {
    text-align: center;
    color: #7d6f62;
    font-size: 0.9rem;
    margin-bottom: 26px;
}

button[type="submit"]:disabled,
.btn:disabled {
  background-color: #a0a0a0 !important;
  color: #ffffff !important;
  border-color: #a0a0a0 !important;
  cursor: not-allowed;
  opacity: 0.65;
}

.field {
    margin-bottom: 16px;
}

.field-row {
    display: flex;
    gap: 12px;
}

.field-row .field {
    flex: 1;
}

.field label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    color: #7d6f62;
    margin-bottom: 6px;
}

.field input,
.field textarea {
    width: 100%;
    border: 1px solid var(--warm-gray-border);
    border-radius: 10px;
    padding: 11px 12px;
    font-size: 0.9rem;
    font-family: inherit;
    background: var(--cream);
    color: var(--text-dark);
    resize: none;
}

.field input:focus,
.field textarea:focus {
    outline: none;
    border-color: var(--red);
    background: var(--white);
}

.field .error {
    display: none;
    font-size: 0.75rem;
    color: #c0392b;
    margin-top: 4px;
}

.field.invalid input {
    border-color: #c0392b;
}

.field.invalid .error {
    display: block;
}

.place-order {
    display: block;
    width: 100%;
    text-align: center;
    padding: 14px;
    border: none;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
    color: var(--white);
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    margin-top: 8px;
}

.res-confirm {
    display: none;
    text-align: center;
    padding: 60px 24px;
}

.res-confirm.show {
    display: block;
}

.checkmark {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #2f7a4f;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 26px;
}

.res-confirm h2 {
    margin-bottom: 8px;
}

.res-confirm p {
    color: #7d6f62;
    font-size: 0.9rem;
    margin-bottom: 24px;
}

@media (max-width: 640px) {
    .field-row {
        flex-direction: column;
        gap: 0;
    }
}