.flower-order-page {
    --flower-order-blue: #486173;
    --flower-order-blue-dark: #2f4555;
    --flower-order-gold: #baad7b;
    --flower-order-surface: #f7f6f3;
    --flower-order-border: rgba(72, 97, 115, .18);
    padding: 60px 0 80px;
    background: #fbfbfa;
}

.public-flower-order-shell {
    max-width: 1180px;
    margin: 0 auto;
}

.public-flower-order-intro {
    margin-bottom: 1.25rem;
    padding: 1.5rem 1.75rem;
    border-left: 4px solid var(--flower-order-gold);
    background: var(--flower-order-surface);
}

.public-flower-order-eyebrow {
    margin: 0 0 .2rem;
    color: var(--flower-order-gold);
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .11em;
    text-transform: uppercase;
}

.public-flower-order-intro h2 {
    margin: 0 0 .35rem;
    color: var(--flower-order-blue-dark);
    font-size: clamp(1.45rem, 3vw, 2rem);
    font-style: normal;
    line-height: 1.25;
}

.public-flower-order-intro p:last-child {
    margin: 0;
    color: #61717e;
}

.admin-flower-order-page .container > .flower-order-form {
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
}

.flower-order-form .flower-order-form-grid {
    margin-right: -10px;
    margin-left: -10px;
}

.flower-order-form .flower-order-column {
    display: flex;
    padding: 10px;
}

.flower-order-form .flower-order-panel {
    width: 100%;
    padding: 1.35rem;
    border: 1px solid var(--flower-order-border);
    border-radius: 3px;
    background: #fff;
    box-shadow: 0 7px 20px rgba(47, 69, 85, .06);
}

.flower-order-form .flower-order-panel-heading {
    display: flex;
    align-items: flex-start;
    gap: .75rem;
    margin-bottom: 1.2rem;
    padding-bottom: .9rem;
    border-bottom: 1px solid var(--flower-order-border);
}

.flower-order-form .flower-order-panel-number {
    display: inline-flex;
    flex: 0 0 1.75rem;
    align-items: center;
    justify-content: center;
    width: 1.75rem;
    height: 1.75rem;
    border-radius: 50%;
    background: var(--flower-order-blue);
    color: #fff;
    font-size: .75rem;
    font-weight: 700;
}

.flower-order-form .flower-order-panel-heading h2 {
    margin: 0 0 .15rem;
    color: var(--flower-order-blue-dark);
    font-size: 1.05rem;
    font-style: normal;
    line-height: 1.3;
}

.flower-order-form .flower-order-panel-heading p {
    margin: 0;
    color: #6b7982;
    font-size: .78rem;
    line-height: 1.4;
}

.flower-order-form .form-group {
    margin-bottom: 1rem;
}

.flower-order-form .form-group > label,
.flower-order-form .flower-order-group-label {
    display: block;
    margin-bottom: .4rem;
    color: var(--flower-order-blue-dark);
    font-size: .82rem;
    font-weight: 700;
    letter-spacing: 0;
    text-transform: none;
}

.flower-order-form .admin-optional-label {
    margin-left: .25rem;
    color: #7d8589;
    font-size: .65rem;
    font-weight: 500;
    text-transform: lowercase;
}

.flower-order-form .form-control {
    min-height: 46px;
    border: 1px solid #cfd5d8;
    border-radius: 2px;
    background: #fff;
    color: var(--flower-order-blue-dark);
    box-shadow: none;
}

.flower-order-form .form-control:focus {
    border-color: var(--flower-order-blue);
    box-shadow: 0 0 0 3px rgba(186, 173, 123, .28);
}

.flower-order-form .flower-order-choice-list {
    display: grid;
    gap: .45rem;
}

.flower-order-form .flower-order-choice-list-inline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.flower-order-form .flower-order-choice {
    display: flex;
    align-items: center;
    gap: .5rem;
    min-height: 2.55rem;
    margin: 0;
    padding: .55rem .65rem;
    border: 1px solid #d4d8da;
    border-radius: 2px;
    background: #fff;
    color: #455862;
    cursor: pointer;
    font-size: .78rem;
    font-weight: 600;
    letter-spacing: 0;
    text-transform: none;
}

.flower-order-form .flower-order-choice:hover {
    border-color: var(--flower-order-gold);
    background: rgba(186, 173, 123, .08);
}

.flower-order-form .flower-order-choice input {
    flex: 0 0 auto;
    margin: 0;
    accent-color: var(--flower-order-gold);
}

.flower-order-form .flower-order-submit {
    align-items: center;
    justify-content: center;
    min-height: 48px;
    border-color: var(--flower-order-blue);
    background: var(--flower-order-blue);
    color: #fff;
    cursor: pointer;
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    text-align: center;
}

.flower-order-form .flower-order-actions {
    clear: both;
    margin-top: 1.25rem;
}

.flower-order-form .flower-order-submit:hover {
    border-color: var(--flower-order-gold);
    background: var(--flower-order-gold);
    color: #243846;
}

.flower-order-form :is(input, button, a):focus-visible {
    outline: 3px solid rgba(186, 173, 123, .75);
    outline-offset: 3px;
}

.flower-order-page .hp-field {
    position: absolute !important;
    left: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}

@media (max-width: 991.98px) {
    .flower-order-form .flower-order-column {
        flex: 0 0 50%;
        max-width: 50%;
    }

    .flower-order-form .flower-order-column:last-child {
        flex-basis: 100%;
        max-width: 100%;
    }
}

@media (max-width: 767.98px) {
    .flower-order-page {
        padding: 42px 0 55px;
    }

    .public-flower-order-intro {
        padding: 1.25rem;
    }

    .flower-order-form .flower-order-column {
        flex-basis: 100%;
        max-width: 100%;
    }
}

@media (max-width: 399.98px) {
    .flower-order-form .flower-order-choice-list-inline {
        grid-template-columns: 1fr;
    }
}
