/* ════════════════════════════════════════════════════════════════════
   Book Your Robot — gate-first single-page reservation, mobile-first.
   ════════════════════════════════════════════════════════════════════ */

.fbm-byr-wrap {
    max-width: 1240px; margin: 0 auto; padding: 16px 18px 96px;
    color: #111827; font-family: var(--fbm-font, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif);
    box-sizing: border-box;
}
@media (max-width: 640px) { .fbm-byr-wrap { padding: 8px 0 24px; } }

/* ── Mobile-only overrides — full width, no boxed cards ────────── */
@media (max-width: 640px) {
    /* Sections become flush — keep white bg + tiny separator gap */
    .fbm-byr-section,
    .fbm-byr-slider-block,
    .pb-cell {
        border-left: 0 !important;
        border-right: 0 !important;
        border-radius: 0 !important;
        box-shadow: none !important;
        padding-left: 14px !important;
        padding-right: 14px !important;
    }
    .fbm-byr-header { padding-left: 14px; padding-right: 14px; }
    .fbm-byr-tabs { padding-left: 12px; padding-right: 12px; margin-left: 0; margin-right: 0; }
    .fbm-byr-pricebar { gap: 6px; padding: 0; }

    /* Sticky bottom bar → static so it doesn't cover form fields */
    .fbm-byr-summary {
        position: static !important;
        bottom: auto !important;
        margin: 0;
        border-radius: 0;
        box-shadow: none;
    }

    /* Inputs at 16px (prevents iOS zoom on focus) */
    .fbm-byr-wrap input[type="text"],
    .fbm-byr-wrap input[type="email"],
    .fbm-byr-wrap input[type="tel"],
    .fbm-byr-wrap input[type="number"],
    .fbm-byr-wrap input[type="date"],
    .fbm-byr-wrap select,
    .fbm-byr-wrap textarea { font-size: 16px; }

    /* Slider marker labels — tighter, vertically grouped */
    .slider-marks { font-size: 10px; height: 42px; }
    .slider-marks span i { font-size: 9px; padding: 1px 4px; margin-top: 1px; }
}

/* Slider marks — vertical stack: number on top, save badge below */
.slider-marks span {
    display: flex !important; flex-direction: column; align-items: center;
}
.slider-marks span:nth-child(1) { align-items: flex-start; }
.slider-marks span:last-child { align-items: flex-end; }
.slider-marks span i {
    background: #dcfce7; color: #15803d; padding: 1px 5px; border-radius: 4px; font-style: normal; margin-top: 2px;
}
.fbm-byr-wrap *,.fbm-byr-wrap *::before,.fbm-byr-wrap *::after { box-sizing: border-box; }

/* ── Gate modal ───────────────────────────────────────────────────── */
.fbm-byr-gate {
    position: fixed; inset: 0; background: rgba(15,23,42,.78); backdrop-filter: blur(4px);
    z-index: 99999; display: flex; align-items: flex-start; justify-content: center;
    padding: 24px 16px; overflow-y: auto;
}
.fbm-byr-gate-card {
    background: #fff; width: 100%; max-width: 440px; border-radius: 16px;
    padding: 26px 22px 22px; box-shadow: 0 20px 60px rgba(0,0,0,.35); margin: auto 0;
}
.fbm-byr-gate-tag { color: #16a34a; font-size: 11px; font-weight: 800; letter-spacing: .12em; margin-bottom: 6px; }
.fbm-byr-gate-card h2 { font-size: 1.4rem; margin: 0 0 8px; font-weight: 800; line-height: 1.2; }
.fbm-byr-gate-card > p { color: #6b7280; margin: 0 0 18px; font-size: 14px; line-height: 1.4; }
.fbm-byr-privacy { color: #9ca3af; font-size: 12px; text-align: center; margin: 10px 0 0; }

/* ── Form fields ──────────────────────────────────────────────────── */
.fbm-byr-field { margin-bottom: 12px; }
.fbm-byr-field label,.fbm-byr-fld-label {
    display: block; font-size: 13px; font-weight: 600; margin-bottom: 5px; color: #374151;
}
.fbm-byr-wrap input[type="text"],
.fbm-byr-wrap input[type="email"],
.fbm-byr-wrap input[type="tel"],
.fbm-byr-wrap input[type="number"],
.fbm-byr-wrap input[type="date"],
.fbm-byr-wrap select,
.fbm-byr-wrap textarea {
    width: 100%; padding: 11px 12px; font-size: 15px; border: 1px solid #d1d5db;
    border-radius: 9px; background: #fff; color: #111827;
    -webkit-appearance: none; appearance: none;
}
.fbm-byr-wrap select {
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path fill='none' stroke='%236b7280' stroke-width='2' d='M1 1l5 5 5-5'/></svg>");
    background-repeat: no-repeat; background-position: right 12px center; padding-right: 34px;
}
.fbm-byr-wrap input:focus,.fbm-byr-wrap select:focus,.fbm-byr-wrap textarea:focus {
    outline: none; border-color: #2563eb; box-shadow: 0 0 0 3px rgba(37,99,235,.15);
}
.fbm-byr-hint { display: block; font-size: 12px; color: #6b7280; margin-top: 4px; }

/* ── Primary button ──────────────────────────────────────────────── */
.fbm-byr-btn-primary {
    width: 100%; padding: 13px 16px; background: #16a34a; color: #fff;
    border: none; border-radius: 9px; font-size: 15px; font-weight: 700;
    cursor: pointer; transition: background .18s, transform .1s;
}
.fbm-byr-btn-primary:hover:not(:disabled) { background: #15803d; }
.fbm-byr-btn-primary:active:not(:disabled) { transform: translateY(1px); }
.fbm-byr-btn-primary:disabled { background: #9ca3af; cursor: not-allowed; }

.fbm-byr-errors {
    background: #fee2e2; border: 1px solid #fecaca; color: #991b1b;
    padding: 9px 12px; border-radius: 8px; font-size: 13px; margin: 10px 0 0;
}
.fbm-byr-errors p { margin: 3px 0; }

/* ── Header ──────────────────────────────────────────────────────── */
.fbm-byr-header { margin-bottom: 14px; padding: 4px 2px; }
.fbm-byr-tag { color: #16a34a; font-size: 11px; font-weight: 800; letter-spacing: .12em; display: block; }
.fbm-byr-header h1 { font-size: 1.45rem; margin: 4px 0 4px; font-weight: 800; line-height: 1.25; }
.fbm-byr-header p { color: #6b7280; margin: 0; font-size: 14px; }
.fbm-byr-header a { color: #2563eb; text-decoration: underline; }

/* ── Sections ────────────────────────────────────────────────────── */
.fbm-byr-section {
    background: #fff; border: 1px solid #e5e7eb; border-radius: 12px;
    padding: 16px 14px; margin-bottom: 12px; box-shadow: 0 1px 2px rgba(0,0,0,.03);
}
.fbm-byr-section-title { font-size: 1.05rem; margin: 0 0 12px; font-weight: 700; }

/* ── Tabs ────────────────────────────────────────────────────────── */
.fbm-byr-tabs {
    display: flex; gap: 6px; overflow-x: auto; padding: 0 0 12px; margin: 0 -2px 8px;
    -webkit-overflow-scrolling: touch; scrollbar-width: none;
}
.fbm-byr-tabs::-webkit-scrollbar { display: none; }
.fbm-byr-tab {
    flex-shrink: 0; padding: 8px 14px; border: 1px solid #e5e7eb; background: #fff;
    border-radius: 999px; font-size: 13px; font-weight: 600; cursor: pointer;
    color: #374151; transition: all .15s; font-family: inherit; white-space: nowrap;
}
.fbm-byr-tab:hover { border-color: #2563eb; color: #2563eb; }
.fbm-byr-tab.is-active { background: #1f2937; border-color: #1f2937; color: #fff; }

/* ── Inventory grid ──────────────────────────────────────────────── */
.fbm-byr-inventory-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
@media (min-width: 600px) { .fbm-byr-inventory-grid { grid-template-columns: repeat(3, 1fr); gap: 12px; } }
@media (min-width: 900px) { .fbm-byr-inventory-grid { grid-template-columns: repeat(4, 1fr); } }
.fbm-byr-card-model {
    border: 2px solid #e5e7eb; border-radius: 11px; overflow: hidden; cursor: pointer;
    transition: all .15s; background: #fff;
}
.fbm-byr-card-model:hover { border-color: #2563eb; }
.fbm-byr-card-model.selected { border-color: #2563eb; background: #eff6ff; }
.fbm-byr-card-model.is-disabled { opacity: .55; cursor: not-allowed; filter: grayscale(.4); }
.fbm-byr-card-thumb { position: relative; background: #f3f4f6; aspect-ratio: 1/1; }
.fbm-byr-card-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.fbm-byr-card-noimg { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; color: #9ca3af; font-size: 1.6rem; font-weight: 700; }
.fbm-byr-stock { position: absolute; top: 6px; right: 6px; padding: 3px 8px; font-size: 10px; font-weight: 800; border-radius: 999px; text-transform: uppercase; letter-spacing: .04em; }
.fbm-byr-stock-ok  { background: #dcfce7; color: #15803d; }
.fbm-byr-stock-low { background: #fef3c7; color: #b45309; }
.fbm-byr-stock-out { background: #fee2e2; color: #b91c1c; }
.fbm-byr-card-body { padding: 9px 10px 11px; }
.fbm-byr-card-family { font-size: 10px; color: #6b7280; text-transform: uppercase; letter-spacing: .04em; line-height: 1.2; }
.fbm-byr-card-name   { font-size: 13px; font-weight: 700; line-height: 1.25; margin: 2px 0 4px; }
.fbm-byr-card-price  { font-size: 14px; font-weight: 700; color: #2563eb; }
.fbm-byr-card-price span { font-size: 11px; color: #6b7280; font-weight: 500; }

.fbm-byr-empty {
    background: #f9fafb; border: 1px dashed #d1d5db; border-radius: 10px;
    padding: 18px 14px; color: #6b7280; text-align: center; font-size: 14px;
}

/* ── Selected model bar ──────────────────────────────────────────── */
.fbm-byr-selected {
    display: flex; align-items: center; gap: 12px; padding: 10px 12px;
    background: #f9fafb; border-radius: 10px; margin-bottom: 14px;
}
.fbm-byr-selected img { width: 52px; height: 52px; object-fit: cover; border-radius: 8px; flex-shrink: 0; }
.fbm-byr-sel-family { font-size: 11px; color: #6b7280; text-transform: uppercase; letter-spacing: .04em; }
.fbm-byr-sel-name   { font-size: 15px; font-weight: 700; }
.fbm-byr-sel-stock  { font-size: 12px; color: #b45309; font-weight: 600; margin-top: 3px; }

/* ════════════════════════════════════════════════════════════════════
   Calendar
   ════════════════════════════════════════════════════════════════════ */
.fbm-byr-cal-hint { color: #6b7280; font-size: 13px; margin: 0 0 12px; }

.fbm-byr-cal-nav {
    display: flex; align-items: center; gap: 8px; margin-bottom: 10px;
}
.fbm-byr-cal-arrow {
    flex-shrink: 0; width: 36px; height: 36px; border: 1px solid #d1d5db; background: #fff;
    border-radius: 8px; font-size: 22px; line-height: 1; cursor: pointer; color: #1f2937;
    font-family: inherit;
}
.fbm-byr-cal-arrow:disabled { opacity: .4; cursor: not-allowed; }
.fbm-byr-cal-arrow:hover:not(:disabled) { border-color: #2563eb; color: #2563eb; }
.fbm-byr-cal-titles {
    flex: 1; display: grid; grid-template-columns: 1fr; gap: 12px;
    text-align: center; font-weight: 700; font-size: 15px;
}
.fbm-byr-cal-title:nth-child(2) { display: none; }

.fbm-byr-cal-grid {
    display: grid; grid-template-columns: 1fr; gap: 12px;
}
.fbm-byr-cal-grid .fbm-byr-cal-month:nth-child(2) { display: none; }

@media (min-width: 720px) {
    .fbm-byr-cal-titles { grid-template-columns: 1fr 1fr; }
    .fbm-byr-cal-titles .fbm-byr-cal-title:nth-child(2) { display: block; }
    .fbm-byr-cal-grid   { grid-template-columns: 1fr 1fr; }
    .fbm-byr-cal-grid .fbm-byr-cal-month:nth-child(2) { display: block; }
}

.fbm-byr-cal-month {
    border: 1px solid #e5e7eb; border-radius: 10px; padding: 10px; background: #fff;
}
.fbm-byr-cal-weekdays {
    display: grid; grid-template-columns: repeat(7, 1fr);
    gap: 4px; font-size: 11px; color: #6b7280; text-align: center; margin-bottom: 6px; font-weight: 600;
}
.fbm-byr-cal-days {
    display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px;
}
.fbm-byr-cal-blank {
    aspect-ratio: 1/1.05; visibility: hidden;
}
.fbm-byr-cal-day {
    aspect-ratio: 1/1.1; display: flex; flex-direction: column; align-items: center; justify-content: center;
    border: 1px solid #e5e7eb; border-radius: 8px; background: #fff; cursor: pointer;
    padding: 4px 2px; font-family: inherit; transition: transform .08s, background .15s, border-color .15s, opacity .15s;
    overflow: hidden;
    min-height: 48px;
}
.fbm-byr-cal-day .d { font-size: 16px; font-weight: 700; color: #111827; line-height: 1; }
.fbm-byr-cal-day .p { font-size: 11px; font-weight: 700; line-height: 1.1; margin-top: 3px; white-space: nowrap; }

/* Tier backgrounds + price color */
.fbm-byr-cal-day.is-full { background: #fff; }
.fbm-byr-cal-day.is-full .p { color: #6b7280; }
.fbm-byr-cal-day.is-mid  { background: #fef9c3; border-color: #fde68a; }
.fbm-byr-cal-day.is-mid  .p { color: #b45309; }
.fbm-byr-cal-day.is-best { background: #dcfce7; border-color: #86efac; }
.fbm-byr-cal-day.is-best .p { color: #15803d; }

.fbm-byr-cal-day.is-booked {
    background: #f3f4f6; border-color: #e5e7eb; cursor: not-allowed;
}
.fbm-byr-cal-day.is-booked .d { color: #9ca3af; }

/* While picking end date — cells outside the 7..90-day window are dimmed/disabled */
.fbm-byr-cal-day.is-disabled {
    opacity: 0.32; cursor: not-allowed;
}
.fbm-byr-cal-day.is-disabled:hover { transform: none; border-color: #e5e7eb; }

.fbm-byr-cal-day:hover:not(.is-booked):not(.is-disabled) { border-color: #2563eb; transform: translateY(-1px); }
.fbm-byr-cal-day.is-start, .fbm-byr-cal-day.is-end {
    background: #2563eb !important; border-color: #2563eb !important; color: #fff;
}
.fbm-byr-cal-day.is-start .d, .fbm-byr-cal-day.is-end .d,
.fbm-byr-cal-day.is-start .p, .fbm-byr-cal-day.is-end .p { color: #fff; }
.fbm-byr-cal-day.is-in-range {
    background: #dbeafe !important; border-color: #93c5fd !important;
}
.fbm-byr-cal-day.is-in-range .d { color: #1e40af; }
.fbm-byr-cal-day.is-in-range .p { color: #1e40af; }

.fbm-byr-range-info {
    background: #eff6ff; border: 1px solid #bfdbfe; color: #1e40af;
    padding: 9px 12px; border-radius: 8px; font-size: 13px; font-weight: 600;
    margin: 0 0 12px;
}

/* ── Slider blocks (How many days / When do you need it) ───── */
.fbm-byr-slider-block {
    background: #fff; border: 1px solid #e5e7eb; border-radius: 12px;
    padding: 16px 18px 8px; margin-bottom: 14px;
}
.fbm-byr-slider-block .slider-head {
    display: flex; justify-content: space-between; align-items: baseline;
    flex-wrap: wrap; gap: 8px; margin-bottom: 6px;
}
.fbm-byr-slider-block label { font-weight: 600; color: #374151; font-size: 14px; }
.fbm-byr-slider-block output {
    font-weight: 700; color: #111827; font-size: 16px;
}
.fbm-byr-next-avail {
    font-size: 13px; color: #6b7280; margin: 2px 0 8px;
}
.fbm-byr-next-avail strong { color: #15803d; }
.slider-marks span br { line-height: 1; }

/* range input — modern, touchable */
.fbm-byr-range {
    -webkit-appearance: none; -moz-appearance: none; appearance: none;
    width: 100%; height: 32px; background: transparent; cursor: pointer;
    padding: 0; margin: 6px 0 0; border: none;
}
.fbm-byr-range:focus { outline: none; }
.fbm-byr-range:focus::-webkit-slider-runnable-track { background: #d1d5db; }
.fbm-byr-range::-webkit-slider-runnable-track {
    height: 6px; background: #e5e7eb; border-radius: 999px; border: none;
}
.fbm-byr-range::-moz-range-track {
    height: 6px; background: #e5e7eb; border-radius: 999px; border: none;
}
.fbm-byr-range::-ms-track {
    height: 6px; background: #e5e7eb; border-radius: 999px; border: none; color: transparent;
}
.fbm-byr-range::-webkit-slider-thumb {
    -webkit-appearance: none; appearance: none;
    width: 26px; height: 26px; border-radius: 50%;
    background: #2563eb; border: 3px solid #fff;
    box-shadow: 0 2px 6px rgba(37,99,235,.35);
    margin-top: -10px; cursor: grab;
}
.fbm-byr-range::-webkit-slider-thumb:active { cursor: grabbing; }
.fbm-byr-range::-moz-range-thumb {
    width: 26px; height: 26px; border-radius: 50%;
    background: #2563eb; border: 3px solid #fff;
    box-shadow: 0 2px 6px rgba(37,99,235,.35);
    cursor: grab;
}

/* slider tier marker labels */
.slider-marks {
    position: relative; height: 38px; margin-top: 4px;
    font-size: 11px; color: #6b7280;
}
.slider-marks span {
    position: absolute; top: 0;
    transform: translateX(-50%);
    text-align: center; cursor: pointer; line-height: 1.15;
    padding: 1px 2px;
}
.slider-marks span i {
    display: block; font-style: normal; font-size: 10px; color: #15803d; font-weight: 700; margin-top: 2px;
}
.slider-marks span[style*="left:0%"]   { transform: translateX(0); text-align: left; }
.slider-marks span[style*="left:100%"] { transform: translateX(-100%); text-align: right; }

/* ── Live pricebar (under sliders) ────────────────────────────── */
.fbm-byr-pricebar {
    display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
    margin-bottom: 14px;
}
@media (max-width: 480px) {
    .fbm-byr-pricebar { grid-template-columns: 1fr; }
}
.pb-cell {
    background: #fff; border: 1px solid #e5e7eb; border-radius: 12px;
    padding: 14px 16px;
}
.pb-cell-total { background: #f0fdf4; border-color: #86efac; }
.pb-label {
    font-size: 11px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase;
    color: #6b7280; margin-bottom: 4px;
}
.pb-cell-total .pb-label { color: #15803d; }
.pb-num {
    font-size: 32px; font-weight: 800; color: #111827; line-height: 1.05;
}
.pb-total { color: #15803d; }
.pb-savings, .pb-detail {
    font-size: 12px; margin-top: 6px; color: #4b5563;
}
.save-chip {
    display: inline-block; padding: 3px 8px; border-radius: 6px;
    background: #dcfce7; color: #15803d; font-weight: 700; font-size: 12px;
}
.save-chip.neutral { background: #f3f4f6; color: #6b7280; }
.save-chip.weekend { background: #fef3c7; color: #b45309; margin-left: 6px; display: inline-flex; align-items: center; gap: 6px; }

.info-btn {
    display: inline-flex; align-items: center; justify-content: center;
    width: 18px; height: 18px; border-radius: 50%; border: none;
    background: #b45309; color: #fff; font-size: 11px; font-weight: 800;
    cursor: pointer; padding: 0; line-height: 1;
}
.info-btn:hover { background: #92400e; }
.info-tip {
    display: none; margin-top: 8px; padding: 10px 12px;
    background: #fffbeb; border: 1px solid #fde68a; border-radius: 8px;
    font-size: 12px; color: #78350f; line-height: 1.4;
}
.info-tip.is-open { display: block; }

/* ── Savings matrix — 3 modern statistic cards ────────────────── */
.fbm-byr-matrix {
    display: grid; grid-template-columns: 1fr; gap: 12px; margin: 4px 0 18px;
}
@media (min-width: 720px) {
    .fbm-byr-matrix { grid-template-columns: repeat(3, 1fr); gap: 14px; }
}
.matrix-card {
    position: relative; background: #fff; border: 1px solid #e5e7eb;
    border-radius: 14px; padding: 18px 16px 16px;
    transition: transform .12s, box-shadow .15s, border-color .12s;
    overflow: hidden;
}
.matrix-card:hover { transform: translateY(-2px); box-shadow: 0 6px 16px rgba(0,0,0,.06); }

.matrix-tag {
    font-size: 11px; font-weight: 800; letter-spacing: .08em;
    text-transform: uppercase; color: #6b7280; margin-bottom: 4px;
}
.matrix-days { font-size: 15px; font-weight: 600; color: #1f2937; }

.matrix-rate { display: flex; align-items: baseline; gap: 4px; margin: 14px 0 6px; }
.matrix-rate .rate-num { font-size: 38px; font-weight: 800; color: #111827; line-height: 1; }
.matrix-rate .rate-unit { font-size: 14px; color: #6b7280; font-weight: 600; }

.matrix-total { font-size: 13px; color: #4b5563; }

.matrix-save {
    display: inline-block; margin-top: 10px;
    padding: 4px 9px; font-size: 12px; font-weight: 700;
    background: #dcfce7; color: #15803d; border-radius: 6px;
}

.matrix-badge {
    position: absolute; top: 12px; right: 12px;
    padding: 3px 8px; font-size: 10px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase;
    border-radius: 999px;
}

/* Variants */
.matrix-deploy { border-color: #bfdbfe; background: linear-gradient(180deg, #eff6ff 0%, #fff 60%); }
.matrix-deploy .matrix-badge { background: #2563eb; color: #fff; }
.matrix-deploy .matrix-rate .rate-num { color: #1e40af; }

.matrix-full { border-color: #86efac; background: linear-gradient(180deg, #ecfdf5 0%, #fff 60%); }
.matrix-full .matrix-badge { background: #15803d; color: #fff; }
.matrix-full .matrix-rate .rate-num { color: #15803d; }

.matrix-card.is-disabled { opacity: 0.55; }

.fbm-byr-cal-legend {
    display: flex; flex-wrap: wrap; gap: 10px 14px; font-size: 12px; color: #4b5563;
    margin-top: 12px;
}
.fbm-byr-leg { display: inline-block; width: 12px; height: 12px; border-radius: 3px; vertical-align: middle; margin-right: 4px; }
.fbm-byr-leg-booked { background: #f3f4f6; border: 1px solid #d1d5db; }
.fbm-byr-leg-full   { background: #fff; border: 1px solid #d1d5db; }
.fbm-byr-leg-mid    { background: #fef9c3; border: 1px solid #fde68a; }
.fbm-byr-leg-best   { background: #dcfce7; border: 1px solid #86efac; }

.fbm-byr-day-readout {
    margin-top: 10px; padding: 9px 12px; background: #f9fafb;
    border: 1px solid #e5e7eb; border-radius: 8px; font-size: 14px; color: #1f2937;
    display: none;
}
.fbm-byr-day-readout strong { color: #111827; }

/* ── Months stepper ──────────────────────────────────────────────── */
.fbm-byr-stepper {
    display: inline-flex; align-items: stretch;
    border: 1px solid #d1d5db; border-radius: 10px; overflow: hidden;
}
.fbm-byr-step-btn {
    width: 44px; padding: 0; background: #f9fafb; border: none; font-size: 22px; line-height: 1;
    cursor: pointer; color: #1f2937; font-family: inherit;
}
.fbm-byr-step-btn:hover { background: #e5e7eb; }
.fbm-byr-stepper input {
    width: 60px; border: none; border-left: 1px solid #d1d5db; border-right: 1px solid #d1d5db;
    text-align: center; font-size: 16px; font-weight: 700; -moz-appearance: textfield;
    border-radius: 0 !important;
}
.fbm-byr-stepper input::-webkit-outer-spin-button,
.fbm-byr-stepper input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }

/* ── Battery checkbox kept for future, hidden if not used (no rule needed) ── */

/* ── 2-col grid ──────────────────────────────────────────────────── */
.fbm-byr-grid-2 { display: grid; grid-template-columns: 1fr; gap: 10px; }
@media (min-width: 640px) { .fbm-byr-grid-2 { grid-template-columns: 1fr 1fr; gap: 12px; } .fbm-byr-full { grid-column: 1 / -1; } }

/* ── Included banners ────────────────────────────────────────────── */
.fbm-byr-included {
    background: #f0fdf4; border: 1px solid #bbf7d0; border-radius: 10px;
    padding: 10px 12px; margin-top: 14px;
}
.fbm-byr-included-row {
    display: flex; gap: 9px; align-items: flex-start; padding: 5px 0;
    font-size: 13px; color: #374151;
}
.fbm-byr-included-row span:first-child { font-size: 16px; flex-shrink: 0; line-height: 1.2; }
.fbm-byr-included-row strong { color: #15803d; }

/* ── Sticky summary ──────────────────────────────────────────────── */
.fbm-byr-summary {
    background: #1f2937; color: #fff; border-radius: 12px; padding: 14px;
    margin-top: 12px; position: sticky; bottom: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,.18); z-index: 10;
}
.fbm-byr-summary-line { display: flex; justify-content: space-between; align-items: baseline; }
.fbm-byr-summary-line strong { font-size: 22px; font-weight: 800; }
.fbm-byr-summary-sub { font-size: 12px; color: #d1d5db; margin: 2px 0 10px; }

/* ── Success / cancelled ─────────────────────────────────────────── */
.fbm-byr-success { text-align: center; padding: 32px 20px; }
.fbm-byr-success-icon {
    width: 60px; height: 60px; background: #dcfce7; color: #15803d; border-radius: 999px;
    display: inline-flex; align-items: center; justify-content: center; font-size: 32px; font-weight: 800; margin-bottom: 14px;
}
.fbm-byr-success h2 { font-size: 1.4rem; color: #15803d; margin: 0 0 12px; font-weight: 800; }
.fbm-byr-success p  { margin: 6px 0; color: #4b5563; }

.fbm-byr-btn-secondary {
    margin-top: 12px; padding: 10px 16px; background: #f3f4f6; color: #374151;
    border: 1px solid #d1d5db; border-radius: 9px; font-size: 14px; font-weight: 600;
    cursor: pointer; font-family: inherit;
}
.fbm-byr-btn-secondary:hover { background: #e5e7eb; }
