/* Houston event checkout additions on top of the shared service checkout layout.
   The page reuses the princess_makeover.css layout primitives, then re-themes
   them here to match the dark Houston site palette (houston_landing.css). All
   overrides are scoped to .houston-site-body so other venues are unaffected. */

.houston-site-body .event-checkout-main {
    padding-bottom: 64px;
}

/* Hero header matches the Houston VIP Experiences / Field Trips pages. */
.houston-site-body .event-checkout-hero {
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    display: grid;
    gap: 14px;
    justify-items: center;
    min-height: 0;
    overflow: visible;
    padding: 0;
    text-align: center;
}

.houston-site-body .event-checkout-hero::after {
    display: none;
}

.houston-site-body .event-checkout-hero .event-hero-image {
    aspect-ratio: 4 / 3;
    border: 1px solid rgba(246, 241, 231, 0.14);
    border-radius: 18px;
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.32);
    display: block;
    height: auto;
    object-fit: cover;
    width: 100%;
    max-width: 560px;
}

.houston-site-body .event-checkout-hero .houston-events-eyebrow {
    margin-bottom: 0 !important;
}

.houston-site-body .event-checkout-hero h1 {
    color: #fffaf0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2.15rem, 7vw, 3.25rem);
    font-weight: 900;
    letter-spacing: -0.02em;
    line-height: 0.98;
    margin: 0;
    max-width: 720px;
    text-align: center;
    text-transform: none;
    overflow-wrap: anywhere;
}

.houston-site-body .event-checkout-hero p:not(.houston-events-eyebrow) {
    color: rgba(246, 241, 231, 0.7);
    font-size: clamp(1rem, 2vw, 1.25rem);
    font-weight: 500;
    line-height: 1.45;
    margin: 0;
    max-width: 320px;
    text-align: center;
}

/* Hero attribute pills (mirror the mobile .cp-fact pills, but shown at every
   breakpoint — used by the Princess Makeover hero). */
.houston-site-body .event-hero-facts {
    display: flex;
    flex-wrap: wrap;
    gap: 9px 10px;
    justify-content: center;
    margin-top: 8px;
    max-width: 360px;
}

.houston-site-body .event-hero-fact {
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--houston-line);
    border-radius: 999px;
    color: rgba(246, 241, 231, 0.86);
    display: inline-flex;
    font-size: 0.82rem;
    font-weight: 500;
    gap: 6px;
    padding: 8px 13px;
}

.houston-site-body .event-hero-fact svg {
    color: var(--houston-teal);
    height: 15px;
    width: 15px;
}

/* Small per-service icon on each makeover tile (artwork from the makeover
   image set). The source art is thin colored line-work on a transparent
   background; recolor it to a soft light tone so it reads on the dark cards
   without needing a backing chip. Sits between the checkbox and the body. */
.houston-site-body .event-checkout-item .makeover-item-icon {
    /* brightness(0) → solid black, invert(1) → solid white, regardless of the
       art's source color; opacity softens it to match the cream body text. */
    filter: brightness(0) invert(1);
    flex: none;
    height: 32px;
    margin-top: 1px;
    object-fit: contain;
    opacity: 0.82;
    width: 32px;
}

/* Checkout layout grid (two columns on desktop, sticky summary). */
.houston-site-body .event-checkout-layout {
    margin-top: 36px;
}

@media (min-width: 820px) {
    .houston-site-body .event-checkout-layout {
        grid-template-columns: minmax(0, 1fr) 320px;
    }
}

/* Section titles & hints on the dark theme. */
.houston-site-body .event-checkout-main .makeover-section-title {
    color: var(--houston-text);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.houston-site-body .event-checkout-main .makeover-section-hint {
    color: var(--houston-muted);
}

.houston-site-body .event-checkout-main .makeover-intro label {
    color: rgba(246, 241, 231, 0.72);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.houston-site-body .event-checkout-main .makeover-guest-name {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 10px;
    color: var(--houston-text);
    font-weight: 600;
    min-height: 48px;
}

.houston-site-body .event-checkout-main .makeover-guest-name::placeholder {
    color: rgba(246, 241, 231, 0.4);
}

.houston-site-body .event-checkout-main .makeover-guest-name:focus {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--houston-teal);
}

/* Notes box. Inherits the input skin above; only the bits a textarea needs
   differ. Vertical-only resize: horizontal drag would break the 320px layout. */
.houston-site-body .event-checkout-main .event-text-field-area {
    display: block;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.5;
    min-height: 84px;
    padding: 12px 14px;
    resize: vertical;
    width: 100%;
}

/* Product cards. */
.houston-site-body .event-checkout-item {
    background: var(--houston-card);
    border: 1px solid var(--houston-line);
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.16);
    color: var(--houston-text);
    transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}

.houston-site-body .event-checkout-item:hover {
    border-color: var(--houston-line-strong);
}

.houston-site-body .event-checkout-item.selected {
    background: rgba(24, 185, 145, 0.08);
    border-color: rgba(24, 185, 145, 0.55);
    box-shadow: 0 0 0 1px rgba(24, 185, 145, 0.28), 0 10px 30px rgba(0, 0, 0, 0.2);
}

.houston-site-body .event-checkout-item input[type="checkbox"] {
    accent-color: var(--houston-teal);
}

.houston-site-body .event-checkout-item .makeover-item-name {
    color: var(--houston-text);
}

.houston-site-body .event-checkout-item .makeover-item-price {
    color: var(--houston-teal);
}

.houston-site-body .event-checkout-item .makeover-item-desc {
    color: var(--houston-muted-2);
}

.houston-site-body .event-checkout-item .makeover-qty {
    border-top-color: var(--houston-line);
}

.houston-site-body .event-checkout-item .makeover-qty-label {
    color: var(--houston-muted);
}

.houston-site-body .event-checkout-item .quantity-btn {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--houston-line);
    color: var(--houston-text);
}

.houston-site-body .event-checkout-item .quantity-btn:hover:not(:disabled) {
    background: rgba(24, 185, 145, 0.18);
    border-color: var(--houston-teal);
}

.houston-site-body .event-checkout-item .quantity-display {
    color: var(--houston-teal);
    font-weight: 900;
}

.event-checkout-header {
    display: grid;
    gap: 10px;
    justify-items: center;
    margin-bottom: 28px;
}

.event-checkout-header img {
    aspect-ratio: 5 / 1;
    border-radius: 14px;
    display: block;
    height: auto;
    max-width: 760px;
    object-fit: cover;
    width: 100%;
}

.event-required-badge,
.event-upsell-badge,
.event-included-badge {
    border-radius: 999px;
    display: inline-flex;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.02em;
    line-height: 1;
    padding: 4px 9px;
    text-transform: uppercase;
}

.event-required-badge {
    background: rgba(239, 159, 39, 0.18);
    color: #f5b54a;
    margin-bottom: 6px;
}

.event-upsell-badge {
    background: rgba(24, 185, 145, 0.16);
    color: #50d0b8;
    margin-bottom: 6px;
}

.event-included-badge {
    background: rgba(80, 208, 184, 0.16);
    color: #6fe0c9;
    margin-bottom: 6px;
}

.event-checkout-item--required {
    border-width: 2px;
}

.event-checkout-item--required input[type="checkbox"] {
    cursor: default;
}

.houston-site-body .event-checkout-item--highlight {
    border-color: rgba(239, 159, 39, 0.6);
    box-shadow: 0 0 0 2px rgba(239, 159, 39, 0.22), 0 14px 34px rgba(0, 0, 0, 0.24);
}

.event-product-image {
    aspect-ratio: 5 / 4;
    border-radius: 10px;
    display: block;
    height: auto;
    margin-bottom: 12px;
    object-fit: cover;
    width: 100%;
}

.event-checkout-item--required .event-product-image {
    aspect-ratio: 5 / 4;
    max-width: 360px;
}

.event-checkout-item[data-locked="true"] .quantity-btn {
    cursor: not-allowed;
    opacity: 0.45;
}

/* Order summary panel. */
.houston-site-body .event-checkout-panel {
    background: var(--houston-card);
    border: 1px solid var(--houston-line);
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.16);
    padding: 26px 28px;
}

@media (min-width: 820px) {
    .houston-site-body .event-checkout-panel {
        top: 96px;
    }
}

.houston-site-body .event-checkout-panel .makeover-summary-title {
    color: var(--houston-text);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.houston-site-body .event-checkout-panel .makeover-summary-row {
    color: rgba(246, 241, 231, 0.78);
    font-weight: 720;
}

.houston-site-body .event-checkout-panel .makeover-summary-row--total {
    border-top-color: var(--houston-line);
    color: var(--houston-text);
}

.houston-site-body .event-checkout-panel #total-display {
    color: var(--houston-teal);
}

.houston-site-body .event-checkout-panel .makeover-summary-note {
    color: var(--houston-muted);
}

.event-date-field .makeover-section-hint {
    margin: 6px 0 0;
}

.houston-site-body .event-checkout-panel .event-date-field {
    border-top: 1px solid var(--houston-line);
    margin: 14px 0 16px;
    padding-top: 14px;
}

.houston-site-body .event-date-field label,
.houston-site-body .event-choice-field label {
    color: rgba(246, 241, 231, 0.72);
    display: block;
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    margin-bottom: 8px;
    text-transform: uppercase;
}

/* Department picker (Morning Rounds) — matches the dark panel date field. */
.houston-site-body .event-checkout-panel .event-choice-field {
    border-top: 1px solid var(--houston-line);
    margin: 14px 0 16px;
    padding-top: 14px;
}

.event-choice-field .makeover-section-hint {
    margin: 6px 0 0;
}

.houston-site-body .event-choice-select {
    appearance: none;
    -webkit-appearance: none;
    background-color: rgba(255, 255, 255, 0.04);
    /* appearance:none removes the native arrow, so put one back — without it
       the one required choice on this page looks like a disabled text box.
       Stroke is --houston-muted; a data URI cannot read a CSS variable. */
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8' fill='none' stroke='%23aaa69d' stroke-width='1.8'%3E%3Cpath d='M1 1.5 6 6.5l5-5'/%3E%3C/svg%3E");
    background-position: right 14px center;
    background-repeat: no-repeat;
    background-size: 12px;
    border: 1px solid var(--houston-line);
    border-radius: 10px;
    color: var(--houston-text);
    color-scheme: dark;
    cursor: pointer;
    font-size: 0.95rem;
    padding: 11px 38px 11px 14px;
    width: 100%;
}

.houston-site-body .event-choice-select:focus-visible {
    border-color: var(--houston-text);
    outline: 2px solid var(--houston-teal);
    outline-offset: 2px;
}

.houston-site-body .event-choice-field.is-invalid label {
    color: #f5b54a;
}

.houston-site-body .event-choice-field.is-invalid .event-choice-select {
    background: rgba(239, 159, 39, 0.12);
    border-color: #f5b54a;
    box-shadow: 0 0 0 3px rgba(239, 159, 39, 0.18);
}

.houston-site-body .event-choice-select option {
    background: #24231f;
    color: var(--houston-text);
}

/* Per-venue species behind each Morning Rounds team, under the picker. This is
   supporting detail, so it stays quieter than the field's own label and hint —
   and it uses the page's tokens so both venue themes follow automatically. */
.houston-site-body .event-choice-species-caption {
    margin-top: 10px;
}

.houston-site-body .event-choice-species {
    list-style: none;
    margin: 4px 0 0;
    padding: 0;
}

.houston-site-body .event-choice-species-item {
    border-top: 1px solid var(--houston-line);
    font-size: 0.76rem;
    line-height: 1.5;
    padding: 6px 0 6px 10px;
}

.houston-site-body .event-choice-species-item:first-child {
    border-top: 0;
}

/* The guest's current pick, tied back to the dropdown. Colour alone would not
   do it (WCAG 1.4.1) and would not land at all: every text node below owns its
   own colour, so the marker lives on the row itself. */
.houston-site-body .event-choice-species-item.is-selected {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    box-shadow: inset 3px 0 0 var(--houston-teal);
}

/* Deliberately NOT recoloured to --houston-teal: that token is per-venue, and
   against the selected row's painted fill it measures 4.27:1 (austin) and
   4.17:1 (sanantonio) — under AA for 12px/700 text. The inset accent bar, the
   lighter fill and aria-current already carry the state. */
.houston-site-body .event-choice-species-item.is-selected .event-choice-species-team {
    color: var(--houston-text);
}

.houston-site-body .event-choice-species-item.is-selected .event-choice-species-names {
    color: var(--houston-text);
}

/* Already taken for the chosen date — the dropdown says "(booked)", so this row
   must not read as available either. */
.houston-site-body .event-choice-species-item.is-booked {
    opacity: 0.55;
}

.houston-site-body .event-choice-species-item.is-booked .event-choice-species-team {
    text-decoration: line-through;
}

.houston-site-body .event-choice-species-team {
    color: var(--houston-text);
    font-weight: 700;
    margin-right: 6px;
}

.houston-site-body .event-choice-species-names {
    color: var(--houston-muted);
}

.houston-site-body .event-choice-species-names.is-empty {
    font-style: italic;
}

.houston-site-body .event-choice-species-all {
    margin-top: 2px;
}

/* 44px tall: this is the feature's main phone interaction. */
.houston-site-body .event-choice-species-all summary {
    align-items: center;
    /* Teal, not muted: at --houston-muted this row was byte-identical to the
       species text beside it, with no marker and no underline — nothing said
       "openable". Measured 4.83-6.25:1 across the three venues. */
    color: var(--houston-teal);
    cursor: pointer;
    display: flex;
    font-size: 0.76rem;
    gap: 6px;
    min-height: 44px;
}

/* display:flex kills the UA ::marker, so draw the triangle back. */
.houston-site-body .event-choice-species-all summary::before {
    border-bottom: 4px solid transparent;
    border-left: 5px solid currentColor;
    border-top: 4px solid transparent;
    content: '';
    flex: none;
    transition: transform 140ms cubic-bezier(0.16, 1, 0.3, 1);
}

.houston-site-body .event-choice-species-all[open] summary::before {
    transform: rotate(90deg);
}

/* Match the select's branded ring rather than inheriting Chrome's. */
.houston-site-body .event-choice-species-all summary:focus-visible {
    border-radius: 6px;
    outline: 2px solid var(--houston-teal);
    outline-offset: 2px;
}

/* Cap the revealed list: a 26-species team otherwise pushes the Checkout
   button off the desktop viewport the moment a guest opens it. 9em is exactly
   six line boxes at line-height 1.5 — 8.5em sliced the sixth line in half. */
.houston-site-body .event-choice-species-all p {
    border-left: 2px solid var(--houston-line);
    color: var(--houston-muted);
    margin: 0 0 6px;
    max-height: 9em;
    overflow-y: auto;
    overscroll-behavior: contain;
    padding-left: 10px;
}

/* Court time picker (Pickleball) — hourly slots with remaining court spaces. */
.houston-site-body .event-checkout-panel .event-time-field {
    border-top: 1px solid var(--houston-line);
    margin: 14px 0 16px;
    padding-top: 14px;
}

.houston-site-body .event-time-field label {
    color: rgba(246, 241, 231, 0.72);
    display: block;
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.event-time-field .makeover-section-hint {
    margin: 8px 0 0;
}

.event-time-slots {
    display: flex;
    flex-direction: column;
    gap: 8px;
    max-height: 320px;
    overflow-y: auto;
}

.houston-site-body .event-time-slot {
    align-items: center;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--houston-line);
    border-radius: 10px;
    color: var(--houston-cream, #f6f1e7);
    cursor: pointer;
    display: flex;
    gap: 10px;
    justify-content: space-between;
    padding: 11px 14px;
    text-align: left;
    transition: border-color 0.15s ease, background 0.15s ease;
    width: 100%;
}

.houston-site-body .event-time-slot:hover:not(:disabled) {
    border-color: rgba(246, 241, 231, 0.55);
}

.event-time-slot-time {
    font-size: 0.98rem;
    font-weight: 800;
}

.event-time-slot-detail {
    color: rgba(246, 241, 231, 0.62);
    font-size: 0.8rem;
    letter-spacing: 0.02em;
}

.houston-site-body .event-time-slot.is-selected {
    background: rgba(42, 164, 196, 0.18);
    border-color: #2aa4c4;
    box-shadow: 0 0 0 2px rgba(42, 164, 196, 0.28);
}

.houston-site-body .event-time-slot.is-unavailable,
.houston-site-body .event-time-slot:disabled {
    cursor: not-allowed;
    opacity: 0.45;
}

.houston-site-body .event-time-slot.is-unavailable .event-time-slot-detail {
    color: #e9a23b;
}

/* Inline calendar re-themed for the dark panel. */
.houston-site-body .event-inline-calendar {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--houston-line);
    border-radius: 10px;
    margin-top: 8px;
    max-width: 270px;
    padding: 10px;
}

.houston-site-body .event-checkout-panel .event-inline-calendar {
    margin-left: auto;
    margin-right: auto;
}

.event-calendar-header {
    align-items: center;
    display: grid;
    gap: 6px;
    grid-template-columns: 28px 1fr 28px;
    margin-bottom: 8px;
}

.houston-site-body .event-calendar-month {
    color: var(--houston-text);
    font-size: 0.82rem;
    font-weight: 800;
    text-align: center;
}

.houston-site-body .event-calendar-nav {
    align-items: center;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid var(--houston-line);
    border-radius: 6px;
    color: var(--houston-text);
    cursor: pointer;
    display: inline-flex;
    font-size: 1.05rem;
    font-weight: 800;
    height: 28px;
    justify-content: center;
    line-height: 1;
    width: 28px;
}

.houston-site-body .event-calendar-nav:hover:not(:disabled) {
    background: rgba(24, 185, 145, 0.2);
    border-color: var(--houston-teal);
}

.event-calendar-nav:disabled {
    cursor: not-allowed;
    opacity: 0.38;
}

.event-calendar-weekdays,
.event-calendar-grid {
    display: grid;
    gap: 3px;
    grid-template-columns: repeat(7, minmax(0, 1fr));
}

.houston-site-body .event-calendar-weekdays {
    color: var(--houston-muted);
    font-size: 0.58rem;
    font-weight: 800;
    margin-bottom: 4px;
    text-align: center;
    text-transform: uppercase;
}

.event-calendar-empty {
    min-height: 28px;
}

.houston-site-body .event-calendar-day {
    align-items: center;
    aspect-ratio: 1;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--houston-line);
    border-radius: 6px;
    color: var(--houston-text);
    cursor: pointer;
    display: inline-flex;
    font-size: 0.72rem;
    font-weight: 700;
    justify-content: center;
    min-height: 28px;
    min-width: 0;
}

.houston-site-body .event-calendar-day:hover,
.houston-site-body .event-calendar-day:focus-visible {
    border-color: var(--houston-teal);
    outline: none;
}

.houston-site-body .event-calendar-day.is-today {
    border-color: var(--houston-teal);
}

.houston-site-body .event-calendar-day.is-selected {
    background: var(--houston-teal);
    border-color: var(--houston-teal);
    color: #08231c;
}

.houston-site-body .event-calendar-day.is-disabled {
    background: rgba(255, 255, 255, 0.02);
    color: rgba(246, 241, 231, 0.32);
    cursor: not-allowed;
    text-decoration: line-through;
}

.houston-site-body .event-fixed-quantity {
    border-top: 1px solid var(--houston-line);
    color: var(--houston-muted-2);
    font-size: 0.86rem;
    font-weight: 700;
    margin: 10px 0 0;
    padding-top: 10px;
}

.houston-site-body #event-checkout-btn {
    width: 100%;
    font-size: 1rem;
    justify-content: center;
    margin-top: 4px;
    padding: 14px 20px;
}

.houston-site-body #event-checkout-btn:disabled {
    cursor: not-allowed;
    opacity: 0.55;
}

/* Deliberately NOT sticky. Opening a disclosure grows the panel and pushes this
   button down, but `.houston-site-page` is `overflow: hidden`, so it — not the
   viewport — is the scrollport for any sticky descendant, and a sticky button
   would simply never pin (measured: rule applied, position:sticky computed, top
   unchanged). What actually bounds the damage is the native exclusive accordion
   on the species disclosures (only one list can be open) plus the 6-line cap on
   the revealed list: at max scroll the CTA measures bottom 808.8px in a 900px
   viewport with a list open, i.e. still reachable. */

@media (max-width: 819px) {
    .houston-site-body .event-checkout-hero {
        margin-bottom: 4px;
    }
}


/* --- Extended field types: select, radio, textarea, checkbox_group, animal_roster --- */

/* Select fields in the form body (not the summary panel) */
.houston-site-body .event-checkout-main .event-tf-select {
    width: 100%;
    padding: 12px 14px;
    font-size: 1rem;
    color: var(--houston-text);
    background: rgba(0,0,0,0.25);
    border: 1px solid var(--houston-line);
    border-radius: 6px;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23f6f1e7' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 18px;
    cursor: pointer;
}

.houston-site-body .event-checkout-main .event-tf-select:focus {
    outline: none;
    border-color: var(--houston-teal);
}

.houston-site-body .event-checkout-main .event-tf-select option {
    background: #1a1a1a;
    color: var(--houston-text);
}

/* Radio button groups */
.houston-site-body .event-tf-radio-group {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 8px;
}

.houston-site-body .event-tf-radio-option {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: rgba(0,0,0,0.25);
    border: 1px solid var(--houston-line);
    border-radius: 6px;
    cursor: pointer;
    color: var(--houston-text);
    transition: border-color 0.15s;
}

.houston-site-body .event-tf-radio-option:hover {
    border-color: var(--houston-line-strong);
}

.houston-site-body .event-tf-radio-option input[type="radio"] {
    accent-color: var(--houston-teal);
}

.houston-site-body .event-tf-radio-option input[type="radio"]:checked + span {
    color: var(--houston-teal);
}

/* Textarea fields */
.houston-site-body .event-checkout-main .event-tf-textarea {
    width: 100%;
    padding: 12px 14px;
    font-size: 1rem;
    font-family: inherit;
    color: var(--houston-text);
    background: rgba(0,0,0,0.25);
    border: 1px solid var(--houston-line);
    border-radius: 6px;
    resize: vertical;
    min-height: 100px;
}

.houston-site-body .event-checkout-main .event-tf-textarea:focus {
    outline: none;
    border-color: var(--houston-teal);
}

.houston-site-body .event-checkout-main .event-tf-textarea::placeholder {
    color: rgba(246, 241, 231, 0.4);
}

/* Checkbox groups */
.houston-site-body .event-tf-checkbox-group {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 8px;
}

.houston-site-body .event-tf-checkbox-option {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: rgba(0,0,0,0.25);
    border: 1px solid var(--houston-line);
    border-radius: 6px;
    cursor: pointer;
    color: var(--houston-text);
    transition: border-color 0.15s;
}

.houston-site-body .event-tf-checkbox-option:hover {
    border-color: var(--houston-line-strong);
}

.houston-site-body .event-tf-checkbox-option input[type="checkbox"] {
    accent-color: var(--houston-teal);
}

/* Animal roster selection */
.houston-site-body .event-tf-animal-roster {
    margin-top: 8px;
}

.houston-site-body .event-tf-caveat {
    padding: 10px 14px;
    margin-bottom: 12px;
    background: rgba(233, 162, 59, 0.15);
    border-left: 3px solid #e9a23b;
    border-radius: 4px;
    color: #e9a23b;
    font-size: 0.9rem;
}

.houston-site-body .event-tf-animal-category {
    margin-bottom: 16px;
}

.houston-site-body .event-tf-animal-category-title {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--houston-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 8px;
}

.houston-site-body .event-tf-animal-options {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.houston-site-body .event-tf-animal-option {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    background: rgba(0,0,0,0.25);
    border: 1px solid var(--houston-line);
    border-radius: 6px;
    cursor: pointer;
    color: var(--houston-text);
    font-size: 0.9rem;
    transition: border-color 0.15s, background 0.15s;
}

.houston-site-body .event-tf-animal-option:hover {
    border-color: var(--houston-line-strong);
}

.houston-site-body .event-tf-animal-option input[type="checkbox"] {
    accent-color: var(--houston-teal);
}

.houston-site-body .event-tf-animal-option input[type="checkbox"]:checked + span {
    color: var(--houston-teal);
}

/* Sloth highlight */
.houston-site-body .event-tf-animal-sloth {
    border-color: #e9a23b;
    background: rgba(233, 162, 59, 0.1);
}

.houston-site-body .event-tf-animal-sloth span {
    color: #e9a23b;
}

.houston-site-body .event-tf-animal-constraint-msg {
    margin-top: 10px;
    padding: 10px 14px;
    border-radius: 4px;
    font-size: 0.9rem;
}

.houston-site-body .event-tf-animal-constraint-msg.error {
    background: rgba(220, 53, 69, 0.15);
    border-left: 3px solid #dc3545;
    color: #dc3545;
}

/* Info block (Austin outreach rates) */
.houston-site-body .event-info-block {
    margin-top: 24px;
    padding: 16px;
    background: rgba(0,0,0,0.2);
    border: 1px solid var(--houston-line);
    border-radius: 8px;
}

.houston-site-body .event-info-contact {
    color: var(--houston-text);
    margin-bottom: 12px;
    line-height: 1.5;
}

.houston-site-body .event-info-rates {
    margin: 0;
    padding-left: 20px;
    color: var(--houston-muted);
}

.houston-site-body .event-info-rates li {
    margin-bottom: 4px;
}