:root {
    --boe2-bg: #f2f5fb;
    --boe2-surface: #ffffff;
    --boe2-surface-soft: #f7f9ff;
    --boe2-border: #dde4f1;
    --boe2-text: #111827;
    --boe2-muted: #6b7280;
    --boe2-primary: #2563eb;
    --boe2-primary-dark: #1e4ec9;
    --boe2-success: #16a34a;
    --boe2-danger: #dc2626;
    --boe2-dark: #0b1732;
    --boe2-shadow: 0 18px 40px rgba(17, 24, 39, 0.08);
    --boe2-radius-lg: 20px;
    --boe2-radius-md: 14px;
    --boe2-radius-sm: 10px;
}

[hidden] {
    display: none !important;
}

.boe2-app,
.boe2-app * {
    box-sizing: border-box;
    font-family: "Manrope", sans-serif;
}

.boe2-app {
    max-width: 1500px;
    margin: 20px auto;
    color: var(--boe2-text);
}

.boe2-topbar {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 14px;
    padding: 18px;
    border-radius: 24px;
    background: linear-gradient(140deg, #ffffff 0%, #eef3ff 100%);
    border: 1px solid var(--boe2-border);
    box-shadow: var(--boe2-shadow);
}

.boe2-kicker {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--boe2-primary);
    letter-spacing: 0.09em;
}

.boe-kicker {
    display: inline-flex;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #1d4ed8;
}

.boe2-topbar h1 {
    margin: 6px 0;
    font-size: 30px;
    line-height: 1.1;
}

.boe2-topbar p {
    margin: 0;
    color: var(--boe2-muted);
}

.boe2-topbar-actions {
    display: inline-flex;
    gap: 8px;
    flex-wrap: wrap;
}

.boe2-btn {
    border: 0;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 700;
    padding: 10px 16px;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.boe2-btn:hover {
    transform: translateY(-1px);
}

.boe2-btn-sm {
    padding: 7px 10px;
    font-size: 12px;
}

.boe2-btn-primary {
    color: #fff;
    background: linear-gradient(135deg, var(--boe2-primary), #3f83f8);
}

.boe2-btn-primary:hover {
    background: linear-gradient(135deg, var(--boe2-primary-dark), var(--boe2-primary));
}

.boe2-btn-ghost {
    color: var(--boe2-primary-dark);
    border: 1px solid #b7caf7;
    background: #f3f7ff;
}

.boe2-btn-success {
    color: #fff;
    background: linear-gradient(135deg, #119a45, #22c55e);
}

.boe2-btn-danger {
    color: #fff;
    background: linear-gradient(135deg, #dc2626, #ef4444);
}

.boe2-shell {
    padding: 18px;
    border-radius: 24px;
    border: 1px solid var(--boe2-border);
    background:
        radial-gradient(circle at 90% 10%, rgba(59, 130, 246, 0.1), transparent 30%),
        linear-gradient(180deg, #f8faff 0%, #f1f5fb 100%);
}

.boe2-view {
    display: none;
}

.boe2-view.is-active {
    display: block;
    animation: boe2FadeIn 0.2s ease;
}

.boe2-grid {
    display: grid;
    gap: 14px;
}

.boe2-grid-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.boe2-action-card {
    padding: 18px;
    border-radius: var(--boe2-radius-lg);
    border: 1px solid var(--boe2-border);
    background: var(--boe2-surface);
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
    display: grid;
    gap: 10px;
}

.boe2-action-card h2 {
    margin: 0;
}

.boe2-action-card p {
    margin: 0;
    color: var(--boe2-muted);
}

.boe2-wizard-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}

.boe2-wizard-head h2 {
    margin: 4px 0;
}

.boe2-step-progress {
    min-width: 220px;
}

.boe2-progress-track {
    width: 100%;
    height: 10px;
    border-radius: 999px;
    background: #dde5f6;
    overflow: hidden;
    margin-top: 8px;
}

.boe2-progress-track > span {
    display: block;
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, #2563eb, #60a5fa);
    transition: width 0.2s ease;
}

.boe2-wizard-layout {
    display: grid;
    grid-template-columns: 260px minmax(0, 1fr);
    gap: 12px;
}

.boe2-question-nav {
    background: var(--boe2-surface);
    border-radius: var(--boe2-radius-lg);
    border: 1px solid var(--boe2-border);
    padding: 10px;
    display: grid;
    gap: 8px;
    align-content: start;
    box-shadow: 0 10px 20px rgba(15, 23, 42, 0.05);
}

.boe2-step-item {
    border: 1px solid var(--boe2-border);
    background: #fff;
    border-radius: var(--boe2-radius-sm);
    padding: 9px;
    display: grid;
    grid-template-columns: 28px 1fr;
    align-items: center;
    gap: 8px;
    text-align: left;
    cursor: pointer;
}

.boe2-step-index {
    display: inline-flex;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 800;
    background: #edf2ff;
    color: #1d4ed8;
}

.boe2-step-text {
    font-size: 13px;
    font-weight: 700;
    color: #475569;
}

.boe2-step-item.is-active {
    border-color: #8fb2ff;
    background: #eff5ff;
}

.boe2-step-item.is-done .boe2-step-index {
    background: #d8ffe6;
    color: #15803d;
}

.boe2-question-stage {
    min-width: 0;
}

.boe2-question-card {
    display: none;
    background: var(--boe2-surface);
    border: 1px solid var(--boe2-border);
    border-radius: var(--boe2-radius-lg);
    padding: 16px;
    box-shadow: 0 12px 22px rgba(17, 24, 39, 0.05);
}

.boe2-question-card.is-active {
    display: block;
    animation: boe2Slide 0.2s ease;
}

.boe2-question-card h3,
.boe2-question-card h4 {
    margin: 0 0 12px;
}

.boe2-form-grid {
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.boe2-form-grid-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.boe2-form-grid-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.boe2-form-grid-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.boe2-form-grid label,
.boe2-block-field,
.boe2-room-toolbar-row label,
.boe2-item-detail label {
    display: grid;
    gap: 6px;
}

.boe2-form-grid label > span,
.boe2-block-field > span,
.boe2-room-toolbar-row label > span,
.boe2-item-detail label > span {
    font-size: 12px;
    color: #6b7280;
    font-weight: 700;
}

.boe2-form-grid input,
.boe2-form-grid select,
.boe2-form-grid textarea,
.boe2-inline-form input,
.boe2-inline-form select,
.boe2-room-toolbar input,
.boe2-room-toolbar select,
.boe2-item-detail input,
.boe2-item-detail select,
.boe2-item-detail textarea {
    width: 100%;
    border: 1px solid #cfdaee;
    border-radius: 10px;
    padding: 10px 11px;
    font-size: 14px;
    color: #111827;
    background: #fff;
}

.boe2-form-grid label.is-full {
    grid-column: 1 / -1;
}

.boe2-inline-form {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 8px;
}

.boe2-choice-row {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.boe2-choice {
    border: 1px solid #cfdbf4;
    border-radius: 999px;
    padding: 8px 14px;
    background: #f3f7ff;
    font-size: 13px;
    font-weight: 700;
    color: #1e3a8a;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.boe2-choice input {
    margin: 0;
}

.boe2-home-types {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 10px;
}

.boe2-home-type-chip {
    border: 1px solid #cad8f8;
    background: #eff4ff;
    color: #1e3a8a;
    border-radius: 999px;
    padding: 8px 14px;
    font-size: 14px;
    font-weight: 800;
    cursor: pointer;
}

.boe2-home-type-chip.is-active {
    border-color: #1d4ed8;
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    color: #fff;
}

.boe2-room-layout {
    display: grid;
    grid-template-columns: 290px minmax(0, 1fr);
    gap: 12px;
}

.boe2-room-sidebar,
.boe2-room-main {
    border: 1px solid var(--boe2-border);
    border-radius: var(--boe2-radius-md);
    background: #fff;
    padding: 10px;
}

.boe2-room-list {
    display: grid;
    gap: 8px;
    max-height: 520px;
    overflow: auto;
    padding-right: 4px;
    margin-bottom: 10px;
}

.boe2-room-chip {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 6px;
    border: 1px solid var(--boe2-border);
    border-radius: 10px;
    background: #fff;
}

.boe2-room-chip > button[data-room-id] {
    border: 0;
    background: none;
    text-align: left;
    padding: 9px;
    display: grid;
    gap: 2px;
    cursor: pointer;
}

.boe2-room-chip strong {
    font-size: 14px;
}

.boe2-room-chip span {
    font-size: 11px;
    color: #64748b;
}

.boe2-room-chip.is-active {
    border-color: #79a5ff;
    background: #f0f6ff;
}

.boe2-room-remove {
    border: 0;
    background: transparent;
    color: #dc2626;
    font-size: 18px;
    cursor: pointer;
    padding: 0 9px;
}

.boe2-room-toolbar {
    border: 1px solid #d9e3f8;
    border-radius: 12px;
    padding: 10px;
    background: #f7f9ff;
    margin-bottom: 10px;
}

.boe2-room-toolbar-head {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    align-items: flex-start;
}

.boe2-room-toolbar-head h4 {
    margin: 0 0 4px;
}

.boe2-room-toolbar-head p {
    margin: 0;
    color: #64748b;
    font-size: 12px;
}

.boe2-room-photo {
    min-width: 180px;
}

.boe2-room-photo-list {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.boe2-room-photo-list figure {
    margin: 0;
    width: 58px;
    height: 58px;
    border-radius: 10px;
    border: 1px solid #d5def1;
    overflow: hidden;
    position: relative;
}

.boe2-room-photo-list img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.boe2-room-photo-list button {
    position: absolute;
    top: 2px;
    right: 2px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 0;
    font-size: 11px;
    color: #fff;
    background: rgba(15, 23, 42, 0.75);
    cursor: pointer;
}

.boe2-room-photo-list figcaption {
    position: absolute;
    left: 2px;
    bottom: 2px;
    border-radius: 999px;
    padding: 1px 5px;
    font-size: 9px;
    font-weight: 700;
    color: #1e3a8a;
    background: rgba(255, 255, 255, 0.9);
}

.boe2-photo-picker {
    position: relative;
    display: inline-flex;
    background: #e8f0ff;
    color: #1d4ed8;
    border-radius: 9px;
    font-size: 12px;
    font-weight: 700;
    padding: 7px 10px;
    cursor: pointer;
    overflow: hidden;
    margin-bottom: 6px;
}

.boe2-photo-picker input {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
}

.boe2-room-toolbar-row {
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 8px;
    margin-top: 8px;
}

.boe2-room-box-counter {
    margin-top: 8px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px dashed #adc1ea;
    border-radius: 10px;
    padding: 8px 10px;
    font-size: 12px;
    color: #334155;
}

.boe2-room-packing-inline {
    margin-top: 8px;
    animation: boe2Slide 0.2s ease;
}

.boe2-room-ai {
    margin-top: 8px;
    border: 1px dashed #b8c9ea;
    border-radius: 10px;
    padding: 10px;
    background: #f6f9ff;
}

.boe2-room-ai-actions {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.boe2-room-ai-hint {
    margin: 8px 0;
    color: #475569;
    font-size: 12px;
}

.boe2-ai-suggestion-list {
    display: grid;
    gap: 6px;
    margin-bottom: 8px;
}

.boe2-ai-suggestion-row {
    border: 1px solid #d7e2f6;
    border-radius: 9px;
    background: #fff;
    padding: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
}

.boe2-ai-suggestion-row strong {
    display: block;
    font-size: 13px;
}

.boe2-ai-suggestion-row small {
    color: #64748b;
    font-size: 11px;
}

.boe2-ai-suggestion-row button {
    border: 1px solid #a9c0f5;
    background: #e9f0ff;
    color: #1d4ed8;
    border-radius: 8px;
    padding: 6px 10px;
    font-weight: 700;
    cursor: pointer;
}

.boe2-ai-empty {
    margin: 0 0 8px;
    font-size: 12px;
    color: #64748b;
}

.boe2-manual-add {
    margin-top: 10px;
    border-top: 1px dashed #bfd0ef;
    padding-top: 10px;
}

.boe2-manual-add-head {
    font-size: 12px;
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 8px;
}

.boe2-manual-add-row {
    display: grid;
    grid-template-columns: 1fr 88px auto;
    gap: 8px;
}

.boe2-manual-add-hint {
    margin: 7px 0 0;
    font-size: 11px;
    color: #64748b;
}

.boe2-manual-estimate {
    margin: 6px 0 0;
    padding: 7px 8px;
    border-radius: 8px;
    background: #eef4ff;
    border: 1px solid #d0def8;
    color: #1e40af;
    font-size: 11px;
    font-weight: 700;
}

.boe2-inline-counter {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.boe2-camera-modal {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.68);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    overflow-y: auto;
    z-index: 99999;
}

.boe2-camera-dialog {
    width: min(760px, 100%);
    background: #fff;
    border: 1px solid #d6e0f5;
    border-radius: 16px;
    padding: 12px;
    box-shadow: 0 22px 50px rgba(15, 23, 42, 0.25);
    display: grid;
    gap: 8px;
    max-height: calc(100dvh - 24px);
    overflow-y: auto;
}

.boe2-camera-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
    position: sticky;
    top: 0;
    background: #fff;
    z-index: 3;
    padding-bottom: 2px;
}

.boe2-camera-head h3 {
    margin: 0;
    font-size: 18px;
}

.boe2-camera-dialog video {
    width: 100%;
    max-height: 52vh;
    border-radius: 12px;
    border: 1px solid #d3ddf2;
    background: #0f172a;
    object-fit: cover;
}

.boe2-camera-actions {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.boe2-camera-live-actions .boe2-btn {
    flex: 1 1 170px;
}

.boe2-camera-footer-actions {
    justify-content: flex-end;
}

.boe2-camera-shot img {
    width: 100%;
    max-height: 180px;
    object-fit: cover;
    border-radius: 10px;
    border: 1px solid #d5dff2;
}

.boe2-camera-status {
    margin: 0;
    font-size: 12px;
    color: #64748b;
}

.boe2-camera-live-list {
    border: 1px solid #d8e2f4;
    border-radius: 10px;
    background: #f8fbff;
    padding: 8px;
    max-height: 180px;
    overflow-y: auto;
}

.boe2-camera-live-list h4 {
    margin: 0 0 6px;
    font-size: 13px;
}

body.boe2-camera-open {
    overflow: hidden;
}

.boe2-inline-counter button,
.boe2-item-controls button,
.boe2-selected-actions button {
    border: 1px solid #b7c9ec;
    background: #f5f8ff;
    border-radius: 8px;
    min-width: 30px;
    height: 30px;
    font-weight: 800;
    cursor: pointer;
    color: #1d4ed8;
}

.boe2-item-grid {
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
}

.boe2-item-tools {
    border: 1px solid #d7e2f6;
    border-radius: 12px;
    background: #f9fbff;
    padding: 9px;
    display: grid;
    gap: 8px;
    margin-bottom: 10px;
}

.boe2-item-tools-top {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 8px;
    align-items: center;
}

.boe2-item-tools-top input[type="search"] {
    width: 100%;
    border: 1px solid #cad7f1;
    border-radius: 10px;
    padding: 9px 11px;
    font-size: 14px;
}

.boe2-item-category-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.boe2-item-tab {
    border: 1px solid #c7d8f8;
    background: #eef4ff;
    color: #1e40af;
    border-radius: 999px;
    padding: 6px 10px;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
}

.boe2-item-tab.is-active {
    border-color: #3b82f6;
    background: #2563eb;
    color: #fff;
}

.boe2-item-toggle {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 700;
    color: #475569;
}

.boe2-item-toggle-light {
    color: #334155;
}

.boe2-item-card {
    border: 1px solid #d8e2f4;
    border-radius: 14px;
    background: #fff;
    padding: 9px;
    display: grid;
    gap: 6px;
    position: relative;
    overflow: visible;
    animation: boe2CardRise 0.2s ease;
}

.boe2-item-card.is-selected {
    border-color: #73a3ff;
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.15);
}

.boe2-item-card.is-open {
    z-index: 25;
}

.boe2-item-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: #2563eb;
    color: #fff;
    font-size: 12px;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.boe2-item-main {
    display: grid;
    grid-template-columns: 68px 1fr;
    gap: 8px;
}

.boe2-item-visual {
    width: 68px;
    height: 68px;
    border-radius: 10px;
    border: 1px solid #d6e0f3;
    background: #f4f7ff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    color: #1d4ed8;
    font-size: 24px;
}

.boe2-item-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.boe2-item-content h5 {
    margin: 0;
    font-size: 15px;
    line-height: 1.2;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.boe2-item-desc {
    margin: 2px 0;
    color: #64748b;
    font-size: 12px;
}

.boe2-item-volume {
    font-size: 11px;
    color: #1d4ed8;
    font-weight: 700;
}

.boe2-item-disassembly {
    margin: 3px 0 0;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.01em;
}

.boe2-item-disassembly.is-yes {
    color: #15803d;
}

.boe2-item-disassembly.is-no {
    color: #b42318;
}

.boe2-item-controls {
    display: grid;
    grid-template-columns: 30px 1fr 30px auto;
    align-items: center;
    gap: 6px;
}

.boe2-item-controls strong {
    text-align: center;
}

.boe2-toggle-btn {
    padding: 0 9px !important;
}

.boe2-item-detail {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 8px);
    border: 1px solid #d8e2f4;
    border-radius: 12px;
    background: #fff;
    padding: 10px;
    gap: 8px;
    box-shadow: 0 16px 34px rgba(15, 23, 42, 0.18);
}

.boe2-item-volume-detail {
    margin: 0;
    padding: 7px 8px;
    border: 1px dashed #c7d7f3;
    border-radius: 8px;
    font-size: 12px;
    color: #1d4ed8;
    background: #f8fbff;
}

.boe2-item-card.is-open .boe2-item-detail {
    display: grid;
}

@media (max-width: 540px) {
    .boe2-item-card.is-open {
        z-index: 15;
    }

    .boe2-item-detail {
        top: calc(100% + 6px);
        padding: 9px;
        box-shadow: 0 12px 26px rgba(15, 23, 42, 0.16);
    }
}

.boe2-item-detail label.is-muted {
    opacity: 0.55;
}

.boe2-photo-list {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.boe2-photo-list figure {
    width: 58px;
    height: 58px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #cad8f1;
    position: relative;
    margin: 0;
}

.boe2-photo-list img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.boe2-photo-list button {
    position: absolute;
    top: 2px;
    right: 2px;
    width: 18px;
    height: 18px;
    border: 0;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    cursor: pointer;
}

.boe2-photo-hint {
    margin: 0;
    color: #6b7280;
    font-size: 11px;
}

.boe2-selected-wrap {
    margin-top: 12px;
}

.boe2-selected-wrap-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.boe2-selected-wrap-head h4 {
    margin: 0;
}

.boe2-selected-room {
    border: 1px solid #d8e1f2;
    border-radius: 12px;
    background: #fff;
    margin-bottom: 8px;
    overflow: hidden;
}

.boe2-selected-head {
    width: 100%;
    border: 0;
    background: #f3f7ff;
    display: flex;
    justify-content: space-between;
    padding: 10px 12px;
    font-weight: 800;
    cursor: pointer;
}

.boe2-selected-head small {
    color: #475569;
    font-weight: 600;
}

.boe2-selected-body {
    display: none;
    padding: 10px;
}

.boe2-selected-room.is-open .boe2-selected-body {
    display: grid;
    gap: 8px;
}

.boe2-selected-row {
    border: 1px solid #e0e8f8;
    border-radius: 10px;
    padding: 8px;
    display: grid;
    gap: 7px;
}

.boe2-selected-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 6px;
}

.boe2-selected-main small {
    color: #64748b;
}

.boe2-selected-actions {
    display: grid;
    grid-template-columns: 30px 30px 1fr 1fr auto;
    gap: 6px;
}

.boe2-selected-actions select {
    border: 1px solid #cad7f1;
    border-radius: 8px;
    padding: 6px 8px;
    min-width: 0;
}

.boe2-selected-actions .is-danger {
    color: #b91c1c;
    border-color: #fecaca;
    background: #fff1f2;
}

.boe2-address-columns,
.boe2-summary-grid,
.boe2-signature-grid {
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.boe2-address-columns > div:not(.boe2-address-card) {
    border: 1px solid #dbe4f6;
    border-radius: 12px;
    background: #f9fbff;
    padding: 12px;
}

.boe2-address-columns > div:not(.boe2-address-card) h4 {
    margin: 0 0 10px;
}

.boe2-contact-shell {
    display: grid;
    gap: 12px;
}

.boe2-contact-top {
    border: 1px solid #d9e4f8;
    border-radius: 14px;
    background: linear-gradient(145deg, #f7faff 0%, #eef4ff 100%);
    padding: 10px;
}

.boe2-contact-top label {
    border: 1px solid #d8e3f7;
    border-radius: 12px;
    background: #fff;
    padding: 10px;
}

.boe2-address-columns-enhanced {
    gap: 12px;
}

.boe2-address-card {
    border: 1px solid #d7e2f7;
    border-radius: 16px;
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    padding: 12px;
    box-shadow: 0 10px 24px rgba(30, 58, 138, 0.06);
}

.boe2-address-card-head {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
}

.boe2-address-card-head h4 {
    margin: 0;
}

.boe2-address-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 72px;
    height: 24px;
    padding: 0 10px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.boe2-address-card-pickup .boe2-address-badge {
    color: #1d4ed8;
    background: #dbeafe;
}

.boe2-address-card-delivery .boe2-address-badge {
    color: #b45309;
    background: #ffedd5;
}

.boe2-summary-card,
.boe2-preview-wrap {
    border: 1px solid #d9e2f5;
    border-radius: 12px;
    padding: 12px;
    background: #fff;
}

.boe2-summary-top {
    margin-bottom: 10px;
}

.boe2-summary-card-volume {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 95% 0%, rgba(37, 99, 235, 0.14), transparent 34%),
        linear-gradient(180deg, #ffffff 0%, #f6f9ff 100%);
    animation: boe2CardRise 0.35s ease;
}

.boe2-summary-card-volume::after {
    content: "";
    position: absolute;
    top: -40%;
    left: -15%;
    width: 36%;
    height: 180%;
    transform: rotate(15deg);
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.35) 50%, transparent 100%);
    pointer-events: none;
    animation: boe2Sweep 4.6s ease-in-out infinite;
}

.boe2-volume-row {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 8px;
}

.boe2-volume-row span {
    border: 1px solid #d2def8;
    border-radius: 9px;
    padding: 7px 10px;
    font-size: 12px;
    color: #334155;
}

.boe2-offer-hero {
    margin-top: 10px;
    border: 1px solid #d3e1fb;
    border-radius: 14px;
    background: linear-gradient(140deg, #eff5ff 0%, #f8fbff 100%);
    padding: 10px 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.boe2-offer-hero-main {
    display: grid;
    gap: 2px;
}

.boe2-offer-hero-main span {
    font-size: 11px;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: #475569;
    font-weight: 800;
}

.boe2-offer-hero-main strong {
    font-size: clamp(28px, 3.2vw, 44px);
    line-height: 1;
    color: #1d4ed8;
    letter-spacing: 0.01em;
}

.boe2-offer-hero-main small {
    color: #64748b;
    font-size: 12px;
}

.boe2-vehicle-stack {
    margin-top: 8px;
}

.boe2-vehicle-card {
    display: grid;
    grid-template-columns: 1fr 180px;
    align-items: center;
    gap: 14px;
    border: 1px solid #dbe3f4;
    border-radius: 12px;
    padding: 12px;
    margin-bottom: 6px;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.boe2-vehicle-card:hover {
    transform: translateY(-2px);
    border-color: #aac2ef;
    box-shadow: 0 12px 24px rgba(37, 99, 235, 0.12);
}

.boe2-vehicle-info {
    display: grid;
    gap: 2px;
}

.boe2-vehicle-info strong {
    font-size: 24px;
    line-height: 1.15;
}

.boe2-vehicle-info small {
    color: #64748b;
    font-size: 13px;
}

.boe2-vehicle-media {
    width: 180px;
    height: 112px;
    border: 1px solid #d9e2f7;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    color: #1e40af;
    overflow: hidden;
    justify-self: end;
    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.08);
}

.boe2-vehicle-media img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 4px;
}

.boe2-room-summary-shell {
    border: 1px solid #d8e3f7;
    border-radius: 14px;
    padding: 12px;
    background: linear-gradient(180deg, #f9fbff 0%, #ffffff 100%);
    margin-bottom: 10px;
}

.boe2-room-summary-shell-head {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    align-items: baseline;
    margin-bottom: 10px;
}

.boe2-room-summary-shell-head h4 {
    margin: 0;
}

.boe2-room-summary-shell-head small {
    color: #64748b;
    font-size: 12px;
}

.boe2-room-summary-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.boe2-room-summary-item {
    border: 1px solid #d8e4f7;
    border-radius: 12px;
    background: #fff;
    padding: 10px;
    display: grid;
    gap: 8px;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.06);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    animation: boe2CardRise 0.3s ease both;
}

.boe2-room-summary-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(37, 99, 235, 0.12);
}

.boe2-room-summary-item:nth-child(2n) {
    animation-delay: 0.05s;
}

.boe2-room-summary-headline {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 8px;
}

.boe2-room-summary-title {
    display: grid;
    gap: 2px;
}

.boe2-room-summary-title strong {
    font-size: 18px;
    line-height: 1.2;
}

.boe2-room-summary-title small {
    color: #64748b;
    font-size: 11px;
}

.boe2-room-summary-meta {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 6px;
    justify-content: flex-end;
}

.boe2-room-summary-meta span {
    border: 1px solid #cddaf2;
    border-radius: 999px;
    padding: 3px 8px;
    font-size: 11px;
    font-weight: 700;
    color: #1e40af;
    background: #eff4ff;
}

.boe2-room-photo-gallery {
    display: grid;
    grid-template-columns: 1fr 70px;
    gap: 8px;
}

.boe2-room-photo-main {
    width: 100%;
    height: 122px;
    border-radius: 10px;
    object-fit: cover;
    border: 1px solid #d7e2f6;
}

.boe2-room-photo-thumbs {
    display: grid;
    gap: 6px;
}

.boe2-room-photo-thumbs img {
    width: 100%;
    height: 36px;
    border-radius: 8px;
    border: 1px solid #dbe4f6;
    object-fit: cover;
}

.boe2-room-summary-items {
    max-height: 178px;
    overflow-y: auto;
    padding-right: 3px;
}

.boe2-room-summary-item ul {
    margin: 0;
    padding-left: 16px;
    display: grid;
    gap: 6px;
}

.boe2-room-summary-item li {
    font-size: 14px;
    color: #1f2937;
}

.boe2-room-summary-empty {
    list-style: none;
    margin-left: -16px;
    color: #64748b !important;
}

.boe2-break-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
}

.boe2-break-grid > div {
    border: 1px solid #e2e8f7;
    border-radius: 10px;
    padding: 8px 10px;
    display: flex;
    justify-content: space-between;
    gap: 8px;
    font-size: 12px;
}

.boe2-suggested-input-wrap input {
    font-size: 18px;
    font-weight: 800;
    color: #1d4ed8;
    background: #f1f6ff;
}

.boe2-break-grid span {
    color: #64748b;
}

.boe2-contract-list {
    display: grid;
    gap: 8px;
    margin: 10px 0;
}

.boe2-step7-shell {
    display: grid;
    gap: 10px;
}

.boe2-step-tabs {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    border: 1px solid #d6e3fb;
    border-radius: 12px;
    background: #f4f8ff;
    padding: 6px;
}

.boe2-step-tab {
    border: 1px solid transparent;
    border-radius: 10px;
    background: transparent;
    color: #334155;
    font-size: 13px;
    font-weight: 800;
    padding: 10px 12px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.boe2-step-tab.is-active {
    border-color: #aac5ff;
    background: #fff;
    color: #1d4ed8;
    box-shadow: 0 8px 18px rgba(37, 99, 235, 0.12);
}

.boe2-step7-panel {
    display: none;
    border: 1px solid #dbe5f8;
    border-radius: 14px;
    background: #fff;
    padding: 12px;
}

.boe2-step7-panel.is-active {
    display: block;
    animation: boe2FadeIn 0.2s ease;
}

.boe2-step7-panel .boe2-preview-wrap {
    margin: 0;
}

.boe2-clause-item {
    border: 1px solid #dbe3f7;
    border-radius: 10px;
    padding: 8px;
    display: grid;
    grid-template-columns: 18px 1fr;
    gap: 8px;
    align-items: start;
    font-size: 13px;
}

.boe2-signature-box {
    border: 1px solid #d5def3;
    border-radius: 12px;
    background: #fff;
    padding: 10px;
}

.boe2-signature-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.boe2-signature-box canvas {
    width: 100%;
    height: 180px;
    border: 1px dashed #aac1ef;
    border-radius: 10px;
    background: #fff;
}

.boe2-preview-wrap h4 {
    margin-top: 0;
}

.boe2-preview-doc {
    display: grid;
    gap: 10px;
}

.boe2-preview-block {
    border: 1px solid #e1e8f6;
    border-radius: 10px;
    padding: 10px;
}

.boe2-preview-block h4 {
    margin: 0 0 8px;
}

.boe2-preview-block p {
    margin: 2px 0;
    font-size: 13px;
}

.boe2-preview-room {
    border: 1px solid #e4e9f5;
    border-radius: 10px;
    padding: 9px;
    margin-bottom: 8px;
}

.boe2-preview-room header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 8px;
}

.boe2-preview-room h4 {
    margin: 0;
}

.boe2-preview-room-photo {
    width: clamp(140px, 30vw, 220px);
    max-width: 46%;
    height: 98px;
    border-radius: 10px;
    object-fit: cover;
    border: 1px solid #dbe4f7;
    flex: 0 0 auto;
}

.boe2-preview-room ul {
    margin: 8px 0 0 16px;
    padding: 0;
}

.boe2-preview-signatures {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
}

.boe2-preview-signatures > div {
    border: 1px solid #e3e9f7;
    border-radius: 10px;
    padding: 8px;
}

.boe2-preview-signatures img {
    width: 100%;
    border: 1px solid #d9e2f4;
    border-radius: 8px;
    background: #fff;
}

.boe2-actions {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 10px;
}

.boe2-save-state {
    margin: 8px 0 0;
    color: #475569;
    font-size: 12px;
}

.boe2-question-footer {
    margin-top: 10px;
    display: flex;
    justify-content: space-between;
    gap: 8px;
}

.boe2-table-wrap {
    overflow: auto;
    border: 1px solid #dce3f3;
    border-radius: 14px;
    background: #fff;
}

.boe2-table {
    width: 100%;
    min-width: 760px;
    border-collapse: collapse;
}

.boe2-table th,
.boe2-table td {
    border-bottom: 1px solid #e5eaf7;
    padding: 10px;
    text-align: left;
    font-size: 13px;
}

.boe2-status {
    display: inline-flex;
    padding: 4px 8px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 800;
}

.boe2-status-evet {
    color: #166534;
    background: #dcfce7;
}

.boe2-status-hayir {
    color: #991b1b;
    background: #fee2e2;
}

.boe2-status-haber_verecek {
    color: #9a3412;
    background: #ffedd5;
}

.boe2-calendar-controls {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.boe2-busy-calendar {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 6px;
    margin-top: 10px;
}

.boe2-calendar-weekday {
    text-align: center;
    font-size: 12px;
    font-weight: 700;
    color: #64748b;
    padding: 4px;
}

.boe2-calendar-day {
    min-height: 74px;
    border: 1px solid #d8e2f5;
    border-radius: 10px;
    background: #fff;
    padding: 7px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
}

.boe2-calendar-day.is-empty {
    border: 0;
    background: transparent;
}

.boe2-calendar-day.is-busy {
    border-color: #fca5a5;
    background: #fff5f5;
}

.boe2-calendar-day.is-selected {
    border-color: #60a5fa;
    box-shadow: 0 0 0 2px rgba(96, 165, 250, 0.35);
}

.boe2-day-badge {
    display: inline-flex;
    align-self: flex-start;
    border-radius: 999px;
    padding: 3px 7px;
    font-size: 10px;
    font-weight: 800;
    background: #fee2e2;
    color: #991b1b;
}

.boe2-day-badge.is-free {
    background: #dcfce7;
    color: #166534;
}

.boe2-calendar-mini {
    margin-top: 10px;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(98px, 1fr));
    gap: 8px;
}

.boe2-mini-day {
    border: 1px solid #d7e2f5;
    background: #fff;
    border-radius: 10px;
    padding: 8px;
    display: grid;
    gap: 2px;
    text-align: left;
    cursor: pointer;
}

.boe2-mini-day strong {
    font-size: 12px;
}

.boe2-mini-day span,
.boe2-mini-day small {
    font-size: 11px;
    color: #64748b;
}

.boe2-mini-day.is-busy {
    border-color: #f8b4b4;
    background: #fff1f2;
}

.boe2-mini-day.is-free {
    border-color: #9fd8b9;
    background: #f0fdf4;
}

.boe2-mini-day.is-selected {
    border-color: #60a5fa;
    box-shadow: 0 0 0 2px rgba(96, 165, 250, 0.3);
}

.boe2-pdf-stage {
    position: fixed;
    left: -99999px;
    top: 0;
    width: 210mm;
    background: #fff;
    z-index: -1;
}

.boe2-pdf-document {
    width: 190mm;
    margin: 0 auto;
    background: #fff;
    color: #111827;
    padding: 10mm;
}

.boe2-pdf-room-photo,
.boe2-pdf-damage-photos img {
    max-width: 100%;
    border: 1px solid #dce5f6;
    border-radius: 8px;
}

.boe2-pdf-damage-photos {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 6px;
}

.boe2-empty,
.boe2-empty-row {
    color: #64748b;
    font-size: 13px;
}

.boe-login-shell {
    max-width: 420px;
    margin: 30px auto;
    padding: 16px;
}

.boe-login-card {
    border: 1px solid #d9e3f5;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 14px 36px rgba(17, 24, 39, 0.12);
    padding: 20px;
}

.boe-login-card h1 {
    margin: 8px 0;
}

.boe-login-card p {
    margin: 0 0 12px;
    color: #64748b;
}

.boe-login-error {
    background: #fef2f2;
    border: 1px solid #fecaca;
    color: #991b1b;
    padding: 9px;
    border-radius: 10px;
    margin-bottom: 10px;
}

.boe-login-form {
    display: grid;
    gap: 10px;
}

.boe-login-form label {
    display: grid;
    gap: 6px;
}

.boe-login-form input {
    border: 1px solid #cfd8eb;
    border-radius: 10px;
    padding: 10px 12px;
}

.boe-primary {
    border: 0;
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    color: #fff;
    border-radius: 10px;
    font-weight: 700;
    padding: 11px;
    cursor: pointer;
}

@keyframes boe2FadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes boe2Slide {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes boe2CardRise {
    from { opacity: 0; transform: translateY(10px) scale(0.99); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes boe2Sweep {
    0% { transform: translateX(-40%) rotate(15deg); opacity: 0; }
    16% { opacity: 1; }
    42% { transform: translateX(290%) rotate(15deg); opacity: 0; }
    100% { transform: translateX(290%) rotate(15deg); opacity: 0; }
}

@media (max-width: 1220px) {
    .boe2-grid-3 {
        grid-template-columns: 1fr 1fr;
    }

    .boe2-wizard-layout {
        grid-template-columns: 1fr;
    }

    .boe2-question-nav {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    }

    .boe2-address-columns {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 980px) {
    .boe2-topbar {
        flex-direction: column;
    }

    .boe2-room-layout,
    .boe2-address-columns,
    .boe2-summary-grid,
    .boe2-signature-grid {
        grid-template-columns: 1fr;
    }

    .boe2-form-grid-4 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .boe2-step-tabs {
        grid-template-columns: 1fr;
    }

    .boe2-offer-hero {
        flex-direction: column;
        align-items: flex-start;
    }

    .boe2-room-summary-grid {
        grid-template-columns: 1fr;
    }

    .boe2-room-photo-gallery {
        grid-template-columns: 1fr 62px;
    }
}

@media (max-width: 760px) {
    .boe2-app {
        margin: 8px;
        padding-bottom: 96px;
    }

    .boe2-shell {
        padding: 10px;
    }

    .boe2-topbar {
        padding: 12px;
    }

    .boe2-topbar h1 {
        font-size: 22px;
    }

    .boe2-grid-3,
    .boe2-form-grid,
    .boe2-form-grid-2,
    .boe2-form-grid-3,
    .boe2-form-grid-4 {
        grid-template-columns: 1fr;
    }

    .boe2-question-card {
        padding: 12px;
    }

    .boe2-contact-top {
        padding: 8px;
    }

    .boe2-address-card {
        padding: 10px;
        border-radius: 12px;
    }

    .boe2-wizard-head {
        align-items: flex-start;
    }

    .boe2-step-progress {
        width: 100%;
        min-width: 0;
    }

    .boe2-question-nav {
        display: flex;
        gap: 8px;
        overflow-x: auto;
        scroll-snap-type: x proximity;
        padding: 8px;
        -webkit-overflow-scrolling: touch;
    }

    .boe2-question-nav::-webkit-scrollbar {
        height: 6px;
    }

    .boe2-step-item {
        min-width: 200px;
        flex: 0 0 auto;
        scroll-snap-align: start;
    }

    .boe2-room-toolbar-row {
        grid-template-columns: 1fr;
    }

    .boe2-room-photo {
        min-width: 0;
        width: 100%;
    }

    .boe2-room-photo-list figure {
        width: 52px;
        height: 52px;
    }

    .boe2-item-tools-top {
        grid-template-columns: 1fr;
    }

    .boe2-item-category-tabs {
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 2px;
    }

    .boe2-item-tab {
        white-space: nowrap;
    }

    .boe2-item-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
    }

    .boe2-item-main {
        grid-template-columns: 56px 1fr;
    }

    .boe2-item-visual {
        width: 56px;
        height: 56px;
        border-radius: 10px;
        font-size: 18px;
    }

    .boe2-item-content h5 {
        font-size: 14px;
    }

    .boe2-item-desc {
        display: none;
    }

    .boe2-item-volume {
        font-size: 10px;
    }

    .boe2-item-controls {
        grid-template-columns: 28px 1fr 28px;
    }

    .boe2-toggle-btn {
        grid-column: 1 / -1;
    }

    .boe2-selected-head {
        padding: 9px 10px;
        gap: 8px;
    }

    .boe2-selected-head span {
        font-size: 14px;
    }

    .boe2-selected-head small {
        font-size: 11px;
        text-align: right;
    }

    .boe2-selected-wrap-head {
        flex-direction: column;
        align-items: flex-start;
    }

    .boe2-selected-actions {
        grid-template-columns: 36px 36px 1fr 1fr;
    }

    .boe2-selected-actions .is-danger {
        grid-column: 1 / -1;
        height: 34px;
    }

    .boe2-volume-row span {
        font-size: 10px;
    }

    .boe2-offer-hero-main strong {
        font-size: clamp(26px, 8.5vw, 36px);
    }

    .boe2-vehicle-card {
        grid-template-columns: 1fr 138px;
    }

    .boe2-vehicle-info strong {
        font-size: 18px;
    }

    .boe2-vehicle-media {
        width: 138px;
        height: 88px;
    }

    .boe2-room-summary-shell {
        padding: 10px;
    }

    .boe2-room-summary-shell-head {
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 8px;
    }

    .boe2-room-summary-title strong {
        font-size: 16px;
    }

    .boe2-room-photo-main {
        height: 108px;
    }

    .boe2-room-summary-items {
        max-height: 160px;
    }

    .boe2-actions {
        flex-direction: column;
    }

    .boe2-actions .boe2-btn {
        width: 100%;
    }

    .boe2-room-ai-actions .boe2-btn {
        width: 100%;
    }

    .boe2-manual-add-row {
        grid-template-columns: 1fr;
    }

    .boe2-preview-room header {
        flex-direction: column;
    }

    .boe2-preview-room-photo {
        width: 100%;
        max-width: 100%;
        height: 170px;
    }

    .boe2-ai-suggestion-row {
        flex-direction: column;
        align-items: stretch;
    }

    .boe2-ai-suggestion-row button {
        width: 100%;
    }

    .boe2-camera-actions .boe2-btn {
        width: 100%;
    }

    .boe2-camera-modal {
        align-items: flex-start;
        padding: 8px;
    }

    .boe2-camera-dialog {
        max-height: calc(100dvh - 16px);
    }

    .boe2-camera-live-list {
        max-height: 130px;
    }
}

@media (max-width: 540px) {
    .boe2-question-nav {
        display: flex;
        overflow-x: auto;
    }

    .boe2-step-item {
        grid-template-columns: 24px 1fr;
        padding: 7px;
        min-width: 175px;
    }

    .boe2-step-index {
        width: 24px;
        height: 24px;
        font-size: 11px;
    }

    .boe2-step-text {
        font-size: 12px;
    }

    .boe2-item-grid {
        grid-template-columns: 1fr;
    }

    .boe2-item-card {
        padding: 9px;
        border-radius: 12px;
    }

    .boe2-item-main {
        grid-template-columns: 48px 1fr;
        gap: 7px;
    }

    .boe2-item-visual {
        width: 48px;
        height: 48px;
        border-radius: 9px;
    }

    .boe2-item-content h5 {
        font-size: 13px;
    }

    .boe2-item-volume {
        font-size: 11px;
    }

    .boe2-offer-hero {
        padding: 9px 10px;
    }

    .boe2-offer-hero-main small {
        font-size: 11px;
    }

    .boe2-vehicle-card {
        grid-template-columns: 1fr 118px;
        gap: 8px;
        padding: 9px;
    }

    .boe2-vehicle-info strong {
        font-size: 15px;
    }

    .boe2-vehicle-info small {
        font-size: 11px;
    }

    .boe2-vehicle-media {
        width: 118px;
        height: 74px;
    }

    .boe2-room-photo-gallery {
        grid-template-columns: 1fr;
    }

    .boe2-room-photo-thumbs {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .boe2-room-photo-thumbs img {
        height: 48px;
    }

    .boe2-calendar-mini {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}
