/*
 * Bangalore Cafe Xpress — Catering Intake Form Styles (v1.10.0)
 *
 * Shares the v1.9.0 palette (deep green + saffron + cream).
 * Scoped to .bcx-cform-wrap so nothing leaks into the rest of the theme.
 */

:root {
    --bcx-cf-green-deep:   #0f3c26;
    --bcx-cf-green:        #165c36;
    --bcx-cf-green-soft:   #dcf3e3;
    --bcx-cf-saffron:      #f4c03a;
    --bcx-cf-saffron-deep: #c48a06;
    --bcx-cf-cream:        #fdf6e3;
    --bcx-cf-body:         #2c1b0b;
    --bcx-cf-mute:         #6b7280;
    --bcx-cf-border:       rgba(15, 60, 38, 0.14);
    --bcx-cf-field-bg:     #ffffff;
    --bcx-cf-field-bg-alt: #fafaf7;
    --bcx-cf-shadow:       0 8px 28px rgba(15, 60, 38, 0.08);
    --bcx-cf-shadow-focus: 0 0 0 3px rgba(244, 192, 58, 0.35);
}

.bcx-cform-wrap {
    max-width: 880px;
    margin: 0 auto;
    padding: 24px 16px 48px;
    color: var(--bcx-cf-body);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
    scroll-margin-top: 80px;
}

.bcx-cform-header {
    margin-bottom: 24px;
}

.bcx-cform-title {
    font-size: 28px;
    font-weight: 800;
    color: var(--bcx-cf-green-deep);
    margin: 0 0 8px;
    letter-spacing: -0.01em;
    position: relative;
    padding-bottom: 12px;
}

.bcx-cform-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 64px;
    height: 3px;
    background: linear-gradient(90deg, var(--bcx-cf-saffron) 0%, var(--bcx-cf-green) 100%);
    border-radius: 3px;
}

.bcx-cform-lede {
    color: var(--bcx-cf-mute);
    font-size: 15px;
    line-height: 1.5;
    margin: 0;
    max-width: 680px;
}

/* -----------------------------------------------------------------
 * Banners (success / error)
 * ----------------------------------------------------------------- */

.bcx-cform-banner {
    padding: 16px 20px;
    border-radius: 14px;
    margin-bottom: 20px;
    border: 1px solid transparent;
}

.bcx-cform-banner strong {
    display: block;
    font-size: 16px;
    margin-bottom: 4px;
}

.bcx-cform-banner p {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
}

.bcx-cform-banner.is-success {
    background: var(--bcx-cf-green-soft);
    border-color: rgba(22, 92, 54, 0.3);
    color: var(--bcx-cf-green-deep);
}

.bcx-cform-banner.is-error {
    background: #fef2f2;
    border-color: #fca5a5;
    color: #7f1d1d;
}

/* -----------------------------------------------------------------
 * Section (card)
 * ----------------------------------------------------------------- */

.bcx-cform-section {
    background: var(--bcx-cf-field-bg);
    border: 1px solid var(--bcx-cf-border);
    border-radius: 18px;
    padding: 22px 24px 26px;
    margin-bottom: 18px;
    box-shadow: var(--bcx-cf-shadow);
}

.bcx-cform-section-title {
    font-size: 18px;
    font-weight: 800;
    color: var(--bcx-cf-green-deep);
    margin: 0 0 14px;
    letter-spacing: -0.005em;
}

.bcx-cform-section-desc {
    color: var(--bcx-cf-mute);
    font-size: 14px;
    line-height: 1.5;
    margin: -8px 0 18px;
}

/* -----------------------------------------------------------------
 * Field grid
 * ----------------------------------------------------------------- */

.bcx-cform-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px 18px;
}

.bcx-cform-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.bcx-cform-field-full {
    grid-column: 1 / -1;
}

.bcx-cform-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--bcx-cf-green-deep);
    letter-spacing: 0.01em;
}

.bcx-cform-label em {
    color: #b45309;
    font-style: normal;
    margin-left: 2px;
}

.bcx-cform input[type="text"],
.bcx-cform input[type="tel"],
.bcx-cform input[type="email"],
.bcx-cform input[type="date"],
.bcx-cform input[type="number"],
.bcx-cform select,
.bcx-cform textarea {
    width: 100%;
    box-sizing: border-box;
    padding: 10px 12px;
    border: 1px solid var(--bcx-cf-border);
    border-radius: 10px;
    background: var(--bcx-cf-field-bg-alt);
    color: var(--bcx-cf-body);
    font-family: inherit;
    font-size: 15px;
    line-height: 1.4;
    transition: border-color 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.bcx-cform input:focus,
.bcx-cform select:focus,
.bcx-cform textarea:focus {
    outline: none;
    border-color: var(--bcx-cf-saffron);
    background: #fff;
    box-shadow: var(--bcx-cf-shadow-focus);
}

.bcx-cform textarea {
    resize: vertical;
    min-height: 70px;
}

.bcx-cform-radios {
    display: flex;
    flex-direction: column;
    gap: 8px;
    background: var(--bcx-cf-field-bg-alt);
    border: 1px solid var(--bcx-cf-border);
    border-radius: 10px;
    padding: 10px 14px;
}

.bcx-cform-radios label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--bcx-cf-body);
    cursor: pointer;
}

.bcx-cform-radios input[type="radio"] {
    accent-color: var(--bcx-cf-green);
}

/* Honeypot — never shown. */
.bcx-cform-hp {
    position: absolute;
    left: -9999px;
    top: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

/* -----------------------------------------------------------------
 * Item picker
 * ----------------------------------------------------------------- */

.bcx-cform-items {
    background: var(--bcx-cf-cream);
}

.bcx-cform-catgroup {
    margin-bottom: 18px;
}

.bcx-cform-catgroup:last-child {
    margin-bottom: 0;
}

.bcx-cform-catname {
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--bcx-cf-green);
    margin: 0 0 10px;
    padding-bottom: 4px;
    border-bottom: 1px dashed var(--bcx-cf-border);
}

.bcx-cform-itemlist {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
}

.bcx-cform-item {
    display: grid;
    grid-template-columns: 56px 1fr auto;
    grid-template-rows: auto auto;
    gap: 4px 12px;
    align-items: center;
    padding: 10px 12px;
    background: #fff;
    border: 1px solid var(--bcx-cf-border);
    border-radius: 12px;
    transition: border-color 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.bcx-cform-item:hover {
    border-color: rgba(22, 92, 54, 0.35);
    box-shadow: 0 4px 14px rgba(15, 60, 38, 0.08);
}

.bcx-cform-item.is-selected {
    border-color: var(--bcx-cf-saffron);
    background: #fffdf4;
    box-shadow: 0 2px 10px rgba(196, 138, 6, 0.15);
}

/* Qty select (preset mode) */
.bcx-cform-qty-select {
    width: auto !important;
    min-width: 140px;
    padding: 8px 10px !important;
    border: 1px solid var(--bcx-cf-border) !important;
    border-radius: 10px !important;
    background: var(--bcx-cf-field-bg-alt) !important;
    color: var(--bcx-cf-body);
    font-family: inherit;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
}

.bcx-cform-qty-select:focus {
    outline: none;
    border-color: var(--bcx-cf-saffron) !important;
    box-shadow: var(--bcx-cf-shadow-focus) !important;
    background: #fff !important;
}

/* Per-item note toggle + field */
.bcx-cform-item-noterow {
    grid-column: 2 / -1;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.bcx-cform-note-toggle {
    background: none;
    border: none;
    padding: 0;
    color: var(--bcx-cf-mute);
    font-family: inherit;
    font-size: 12.5px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    align-self: flex-start;
    transition: color 0.15s ease;
}

.bcx-cform-note-toggle:hover,
.bcx-cform-note-toggle:focus-visible {
    color: var(--bcx-cf-green);
    outline: none;
}

.bcx-cform-note-toggle-plus {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--bcx-cf-green-soft);
    color: var(--bcx-cf-green-deep);
    font-weight: 700;
    font-size: 12px;
    line-height: 1;
    transition: transform 0.15s ease, background 0.15s ease;
}

.bcx-cform-note-toggle.is-open .bcx-cform-note-toggle-plus {
    transform: rotate(45deg);
    background: var(--bcx-cf-saffron);
}

.bcx-cform-note-input {
    width: 100% !important;
    padding: 8px 10px !important;
    border: 1px solid var(--bcx-cf-border) !important;
    border-radius: 8px !important;
    background: var(--bcx-cf-field-bg-alt) !important;
    color: var(--bcx-cf-body);
    font-family: inherit;
    font-size: 13.5px;
    resize: vertical;
    min-height: 44px;
}

.bcx-cform-note-input[hidden] {
    display: none !important;
}

.bcx-cform-item-thumb {
    width: 56px;
    height: 56px;
    border-radius: 10px;
    object-fit: cover;
    display: block;
}

.bcx-cform-item-thumb.is-placeholder {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--bcx-cf-green-soft);
    font-size: 28px;
    color: var(--bcx-cf-green);
}

.bcx-cform-item-body {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.bcx-cform-item-title {
    font-size: 14.5px;
    font-weight: 600;
    color: var(--bcx-cf-green-deep);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    line-height: 1.3;
}

.bcx-cform-item-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 4px 12px;
    font-size: 12.5px;
    color: var(--bcx-cf-mute);
}

.bcx-cform-item-price {
    color: var(--bcx-cf-green-deep);
    font-weight: 700;
}

.bcx-cform-item-price small {
    color: var(--bcx-cf-mute);
    font-weight: 500;
    font-size: 11px;
    margin-left: 2px;
}

.bcx-cform-item-qty {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--bcx-cf-field-bg-alt);
    border: 1px solid var(--bcx-cf-border);
    border-radius: 10px;
    padding: 4px 8px 4px 6px;
}

.bcx-cform-item-qty input {
    width: 58px !important;
    padding: 6px 4px !important;
    border: none !important;
    background: transparent !important;
    text-align: center;
    font-weight: 700;
    font-size: 15px;
    color: var(--bcx-cf-green-deep);
    box-shadow: none !important;
}

.bcx-cform-item-qty input:focus {
    outline: none;
    background: transparent !important;
}

.bcx-cform-item-qty-unit {
    font-size: 11px;
    color: var(--bcx-cf-mute);
    text-transform: lowercase;
    letter-spacing: 0.04em;
}

/* Veg / non-veg dot */
.bcx-cform-dot {
    width: 10px;
    height: 10px;
    border-radius: 3px;
    border: 2px solid transparent;
    flex: none;
    display: inline-block;
    position: relative;
}

.bcx-cform-dot.veg {
    border-color: #16a34a;
}

.bcx-cform-dot.veg::after {
    content: "";
    position: absolute;
    inset: 1px;
    background: #16a34a;
    border-radius: 50%;
}

.bcx-cform-dot.nonveg {
    border-color: #dc2626;
}

.bcx-cform-dot.nonveg::after {
    content: "";
    position: absolute;
    inset: 1px;
    background: #dc2626;
    border-radius: 50%;
}

/* -----------------------------------------------------------------
 * Submit
 * ----------------------------------------------------------------- */

.bcx-cform-actions {
    text-align: center;
    margin-top: 10px;
}

/* v1.10.3 — live tally: how many items the customer has picked. */
.bcx-cform-pickcount {
    font-size: 13px;
    color: var(--bcx-cf-mute);
    margin: 0 0 10px;
    min-height: 1.25em;
}
.bcx-cform-pickcount.has-picks {
    color: var(--bcx-cf-green-deep);
    font-weight: 700;
}

.bcx-cform-submit {
    display: inline-block;
    padding: 14px 32px;
    border: none;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--bcx-cf-saffron) 0%, var(--bcx-cf-saffron-deep) 100%);
    color: var(--bcx-cf-green-deep);
    font-family: inherit;
    font-size: 16px;
    font-weight: 800;
    letter-spacing: 0.01em;
    cursor: pointer;
    box-shadow: 0 6px 18px rgba(196, 138, 6, 0.35);
    transition: transform 0.15s ease, box-shadow 0.15s ease, color 0.15s ease;
}

.bcx-cform-submit:hover,
.bcx-cform-submit:focus-visible {
    transform: translateY(-2px);
    color: #fff;
    box-shadow: 0 10px 26px rgba(196, 138, 6, 0.45);
    outline: none;
}

.bcx-cform-submit:active {
    transform: translateY(0);
}

.bcx-cform-fineprint {
    color: var(--bcx-cf-mute);
    font-size: 12.5px;
    margin: 12px 0 0;
}

/* -----------------------------------------------------------------
 * Mobile
 * ----------------------------------------------------------------- */

@media (max-width: 640px) {
    .bcx-cform-wrap { padding: 16px 12px 32px; }
    .bcx-cform-title { font-size: 22px; }
    .bcx-cform-section { padding: 16px 14px 20px; border-radius: 14px; }
    .bcx-cform-section-title { font-size: 16px; }
    .bcx-cform-grid { grid-template-columns: 1fr; gap: 12px; }
    .bcx-cform-item {
        grid-template-columns: 48px 1fr;
        grid-template-rows: auto auto auto;
        gap: 8px 10px;
    }
    .bcx-cform-item-thumb { width: 48px; height: 48px; }
    .bcx-cform-item-qty {
        grid-column: 1 / -1;
        justify-content: flex-start;
    }
    .bcx-cform-item-noterow {
        grid-column: 1 / -1;
    }
    .bcx-cform-qty-select {
        width: 100% !important;
    }
    .bcx-cform-submit { width: 100%; }
}

/* =================================================================
 * v1.35.1 — Photo-grid item picker.
 * Compact tap-to-add tiles + category chip nav + sticky selection
 * bar. Replaces the tall one-row-per-dish layout.
 * ================================================================= */

/* --- Category chip nav ------------------------------------------- */
.bcx-cform-catnav {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding: 6px 2px 10px;
    position: sticky;
    top: 8px;
    z-index: 5;
    background: linear-gradient(to bottom, rgba(255,250,239,0.97) 80%, rgba(255,250,239,0));
    scrollbar-width: none;
}
.bcx-cform-catnav::-webkit-scrollbar { display: none; }
.bcx-cform-catchip {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 14px;
    border-radius: 999px;
    background: #f5eedd;
    color: #1f3326;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    border: 1px solid #e7e0d0;
    white-space: nowrap;
}
.bcx-cform-catchip:hover { background: #314528; color: #faf5e8; }
.bcx-cform-catchip-count {
    font-size: 0.72rem;
    font-weight: 700;
    background: rgba(49,69,40,0.12);
    border-radius: 999px;
    padding: 1px 7px;
}
.bcx-cform-catchip:hover .bcx-cform-catchip-count { background: rgba(250,245,232,0.25); }

/* --- Tile grid ---------------------------------------------------- */
.bcx-cform-catgroup { scroll-margin-top: 64px; }
.bcx-cform-tilegrid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 12px;
    align-items: start;
}
.bcx-cform-tile {
    position: relative;
    display: flex;
    flex-direction: column;
    /* Override the legacy .bcx-cform-item row rules that also apply. */
    align-items: stretch;
    gap: 0;
    background: #fff;
    border: 2px solid #eee7d8;
    border-radius: 14px;
    padding: 8px 8px 10px;
    cursor: pointer;
    transition: border-color .15s ease, box-shadow .15s ease, transform .08s ease;
    -webkit-tap-highlight-color: transparent;
}
.bcx-cform-tile:hover  { border-color: #d9c9a8; box-shadow: 0 4px 14px rgba(31,60,38,.08); }
.bcx-cform-tile:active { transform: scale(0.985); }
.bcx-cform-tile:focus-visible { outline: 3px solid #d9740b; outline-offset: 2px; }
.bcx-cform-tile.is-selected {
    border-color: #d9740b;
    box-shadow: 0 6px 18px rgba(217,116,11,.18);
    background: #fffaf2;
}
.bcx-cform-tile-check {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 2;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: #d9740b;
    color: #fff;
    font-weight: 800;
    font-size: 0.9rem;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0,0,0,.25);
}
.bcx-cform-tile.is-selected .bcx-cform-tile-check { display: inline-flex; }
.bcx-cform-tile-photo {
    aspect-ratio: 4 / 3;
    border-radius: 9px;
    overflow: hidden;
    background: #f5eedd;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
}
.bcx-cform-tile-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.bcx-cform-tile-photo-ph { font-size: 2rem; }
.bcx-cform-tile-name {
    font-weight: 600;
    font-size: 0.92rem;
    line-height: 1.25;
    color: #1f1d1a;
    display: flex;
    align-items: baseline;
    gap: 6px;
    margin-bottom: 2px;
}
.bcx-cform-tile-name .bcx-cform-dot { flex-shrink: 0; transform: translateY(1px); }
.bcx-cform-tile-meta {
    font-size: 0.76rem;
    color: #6b6256;
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 2px;
}

/* Controls hidden until the tile is selected — keeps tiles short. */
.bcx-cform-tile-controls {
    display: none;
    gap: 6px;
    align-items: center;
    margin-top: 8px;
}
.bcx-cform-tile.is-selected .bcx-cform-tile-controls { display: flex; }
.bcx-cform-tile-controls select.bcx-cform-qty-select,
.bcx-cform-tile-controls input[type="number"] {
    flex: 1;
    min-width: 0;
    font-size: 0.85rem;
    padding: 7px 8px;
    border: 1px solid #d9d2c0;
    border-radius: 8px;
    background: #fff;
}
.bcx-cform-tile .bcx-cform-note-toggle {
    flex: 0 0 auto;
    font-size: 0.78rem;
    padding: 7px 9px;
    border: 1px solid #d9d2c0;
    border-radius: 8px;
    background: #fff;
    cursor: pointer;
    color: #6b6256;
}
.bcx-cform-tile .bcx-cform-note-toggle.is-open,
.bcx-cform-tile .bcx-cform-note-toggle:hover { border-color: #d9740b; color: #d9740b; }
.bcx-cform-tile .bcx-cform-note-input {
    margin-top: 6px;
    width: 100%;
    box-sizing: border-box;
    font-size: 0.85rem;
    border: 1px solid #d9d2c0;
    border-radius: 8px;
    padding: 7px 9px;
    resize: vertical;
}

/* --- Sticky selection bar ----------------------------------------- */
.bcx-cform-stickybar {
    position: fixed;
    left: 50%;
    bottom: 16px;
    transform: translateX(-50%);
    z-index: 60;
    display: flex;
    align-items: center;
    gap: 14px;
    background: #314528;
    color: #faf5e8;
    border-radius: 999px;
    padding: 10px 12px 10px 20px;
    box-shadow: 0 10px 30px rgba(31,60,38,.35);
    font-size: 0.95rem;
    font-weight: 600;
    max-width: calc(100vw - 32px);
    transition: opacity .2s ease, transform .2s ease;
}
.bcx-cform-stickybar.is-suppressed {
    opacity: 0;
    pointer-events: none;
    transform: translateX(-50%) translateY(8px);
}
.bcx-cform-stickybar-go {
    border: 0;
    border-radius: 999px;
    background: #d9740b;
    color: #fff;
    font-weight: 700;
    font-size: 0.9rem;
    padding: 9px 18px;
    cursor: pointer;
    font-family: inherit;
    white-space: nowrap;
}
.bcx-cform-stickybar-go:hover { background: #c1690a; }

@media (max-width: 560px) {
    .bcx-cform-tilegrid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .bcx-cform-tile-name { font-size: 0.86rem; }
    .bcx-cform-catnav { top: 4px; }
}
@media print {
    .bcx-cform-stickybar { display: none; }
}

/* =================================================================
 * v1.35.2 — Big photo preview (hover) + lightbox (🔍 tap).
 * ================================================================= */
.bcx-cform-tile-photo { position: relative; }
.bcx-cform-tile-zoom {
    position: absolute;
    right: 6px;
    bottom: 6px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 0;
    background: rgba(255,255,255,0.92);
    box-shadow: 0 2px 8px rgba(0,0,0,.22);
    font-size: 0.9rem;
    cursor: zoom-in;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}
.bcx-cform-tile-zoom:hover { background: #fff; transform: scale(1.08); }

/* Floating hover preview (desktop only — JS gates on hover support) */
.bcx-cform-photopreview {
    position: fixed;
    z-index: 90;
    width: 340px;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 18px 50px rgba(31,60,38,.35);
    padding: 8px;
    opacity: 0;
    transform: scale(0.97);
    pointer-events: none;
    transition: opacity .14s ease, transform .14s ease;
}
.bcx-cform-photopreview.is-on { opacity: 1; transform: scale(1); }
.bcx-cform-photopreview img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    border-radius: 9px;
    display: block;
    background: #f5eedd;
}
.bcx-cform-photopreview-name {
    display: block;
    text-align: center;
    font-weight: 600;
    font-size: 0.95rem;
    color: #1f3326;
    padding: 8px 4px 4px;
}

/* Lightbox (all devices) */
.bcx-cform-lightbox {
    position: fixed;
    inset: 0;
    z-index: 200;
    background: rgba(20,26,17,0.82);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    cursor: zoom-out;
}
.bcx-cform-lightbox.is-on { display: flex; }
.bcx-cform-lightbox figure {
    margin: 0;
    width: min(680px, 94vw);
    position: relative;
}
.bcx-cform-lightbox img {
    width: 100%;
    max-height: 74vh;
    object-fit: contain;
    border-radius: 14px;
    display: block;
    box-shadow: 0 24px 70px rgba(0,0,0,.5);
    background: #fffaef;
}
.bcx-cform-lightbox figcaption {
    text-align: center;
    color: #faf5e8;
    font-weight: 600;
    font-size: 1.05rem;
    padding-top: 12px;
}
.bcx-cform-lightbox-x {
    position: absolute;
    top: -14px;
    right: -14px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 0;
    background: #fff;
    font-size: 1.3rem;
    line-height: 1;
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(0,0,0,.4);
}

/* v1.35.3 — belt-and-braces: honor [hidden] even if the theme resets it. */
.bcx-cform-stickybar[hidden] { display: none !important; }
