.rh-voucher-notice {
    margin: 0 0 1.5rem;
    padding: 1rem 1.25rem;
    border-radius: 0.375rem;
    font-size: 0.95rem;
}

.rh-voucher-notice--success {
    background: rgba(166, 181, 138, 0.15);
    border: 1px solid rgba(166, 181, 138, 0.45);
    color: #36312a;
}

.rh-voucher-notice--error {
    background: rgba(140, 46, 31, 0.08);
    border: 1px solid rgba(140, 46, 31, 0.35);
    color: #8c2e1f;
}

.rh-voucher-form-wrap {
    text-align: left;
}

.rh-voucher-form {
    display: grid;
    gap: 1.5rem;
}

.rh-voucher-form__section {
    display: grid;
    gap: 0.75rem;
}

.rh-voucher-form__heading {
    margin: 0;
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 1.25rem;
    color: #36312a;
}

.rh-voucher-form__subsection {
    display: grid;
    gap: 0.75rem;
    margin-top: 0.25rem;
}

.rh-voucher-form__subheading {
    margin: 0;
    font-size: 0.95rem;
    font-weight: 500;
    color: #36312a;
}

.rh-voucher-field-hint {
    margin: 0;
    font-size: 0.75rem;
    color: rgba(54, 49, 42, 0.65);
}

.rh-voucher-amounts {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
}

@media (min-width: 640px) {
    .rh-voucher-amounts {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

.rh-voucher-custom-amount {
    margin-top: 0.25rem;
}

.rh-voucher-amount {
    position: relative;
    cursor: pointer;
}

.rh-voucher-amount input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.rh-voucher-amount__label {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 3.5rem;
    border: 1px solid #d9d2c3;
    border-radius: 0.375rem;
    background: #fff;
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 1.35rem;
    color: #36312a;
    transition: all 0.2s ease;
}

.rh-voucher-amount input:checked + .rh-voucher-amount__label,
.rh-voucher-amount__label:hover {
    border-color: #a6b58a;
    background: rgba(166, 181, 138, 0.12);
    box-shadow: inset 0 0 0 1px #a6b58a;
}

.rh-voucher-delivery {
    display: grid;
    gap: 0.75rem;
}

.rh-voucher-delivery__option {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.85rem 1rem;
    border: 1px solid #d9d2c3;
    border-radius: 0.375rem;
    background: #fff;
    cursor: pointer;
}

.rh-voucher-delivery__option input {
    margin: 0;
}

.rh-voucher-grid {
    display: grid;
    gap: 0.75rem;
}

@media (min-width: 640px) {
    .rh-voucher-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.rh-voucher-field {
    display: grid;
    gap: 0.35rem;
    font-size: 0.875rem;
    color: #36312a;
}

.rh-voucher-field--full {
    grid-column: 1 / -1;
}

.rh-voucher-field input,
.rh-voucher-field textarea {
    width: 100%;
    border: 1px solid #d9d2c3;
    border-radius: 0.375rem;
    padding: 0.7rem 0.85rem;
    font: inherit;
    color: #36312a;
    background: #fff;
}

.rh-voucher-field input:focus,
.rh-voucher-field textarea:focus {
    outline: 2px solid rgba(166, 181, 138, 0.45);
    border-color: #a6b58a;
}

.rh-voucher-optional {
    font-style: normal;
    color: rgba(54, 49, 42, 0.55);
    font-size: 0.8rem;
}

.rh-voucher-form__error {
    margin: 0;
    color: #8c2e1f;
    font-size: 0.9rem;
}

.rh-voucher-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    border: 0;
    background: #a6b58a;
    color: #f5efe0;
    padding: 0.9rem 1.25rem;
    font-size: 0.75rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    font-weight: 500;
    cursor: pointer;
    transition: opacity 0.2s ease;
}

.rh-voucher-submit:hover:not(:disabled) {
    opacity: 0.9;
}

.rh-voucher-submit:disabled {
    opacity: 0.65;
    cursor: wait;
}

.rh-voucher-form__note {
    margin: 0;
    font-size: 0.75rem;
    color: rgba(54, 49, 42, 0.65);
    text-align: center;
}
