body {
    background: #f7f8fa;
    font-family: 'Microsoft YaHei', Arial, sans-serif;
    margin: 0;
    padding: 0;
}

.header {
    padding: 10px 10px 8px 8px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-left {
    font-weight: bold;
    font-size: 18px;
    color: #ea1a26;
}

.header-actions {
    position: relative;
    display: flex;
    align-items: center;
}

.header-actions i {
    font-size: 18px;
    color: #444;
    margin-left: 20px;
    cursor: pointer;
}

.header-actions i:hover {
    color: #ea1a26;
}

.cart-icon-link {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.cart-badge {
    position: absolute;
    top: -8px;
    right: -10px;
    background: #ea1a26;
    color: #fff;
    font-size: 10px;
    font-weight: bold;
    min-width: 16px;
    height: 16px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    line-height: 1;
    padding: 0 4px;
}

.main-container {
    max-width: 100%;
    margin: 0;
    background: #fff;
    border-radius: 0;
    box-shadow: 0px 6px 40px rgba(0, 0, 0, 0.07);
    padding-bottom: 6px;
}

.filter-row {
    background-color: #fff;
    padding: 4px 12px;
    margin-bottom: 0;
}

.search-box {
    display: flex;
    margin: 0 auto;
}

.search-box input {
    width: 100%;
    flex: 1;
    padding: 7px 12px;
    border: 1px solid #e0e0e0;
    border-radius: 20px 0 0 20px;
    font-size: 14px;
    outline: none;
}

.search-box input:focus {
    border-color: #ea1a26;
    box-shadow: 0 0 0 3px rgba(234, 26, 38, 0.2);
    outline: none;
    transition: all 0.3s ease;
}

.search-box button {
    padding: 7px 12px;
    background-color: #ea1a26;
    color: white;
    border: none;
    border-radius: 0 20px 20px 0;
    cursor: pointer;
}

.no-results {
    text-align: center;
    padding: 20px;
    color: #999;
}

.goods-list {
    padding: 0 8px 0 8px;
}

.goods-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.goods-list-item {
    background: #fff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    padding: 5px 8px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.05);
    margin-bottom: 6px;
    overflow: hidden;
}

.goods-img-wrap {
    width: 64px;
    height: 64px;
    border-radius: 8px;
    background: #f6f6fa;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    overflow: hidden;
    cursor: pointer;
}

.goods-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.goods-detail {
    flex: 1;
    margin-left: 6px;
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
    overflow: hidden;
}

.goods-title {
    font-size: 13px;
    font-weight: 600;
    color: #222;
    line-height: 1.3;
    word-break: break-all;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

/* 底部行：价格 + 库存 + 评分 */
.goods-bottom-row {
    display: flex;
    align-items: baseline;
    gap: 6px;
    margin-top: 1px;
    min-height: 18px;
}

.goods-price {
    font-size: 15px;
    font-weight: bold;
    color: #ea1a26;
    flex-shrink: 0;
}

.goods-stock {
    color: #999;
    font-size: 11px;
    flex-shrink: 0;
}

.goods-stock.out-of-stock {
    color: #ea1a26;
    font-weight: 500;
}

.goods-meta {
    color: #999;
    font-size: 11px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    min-width: 0;
}

.goods-meta .fa-star {
    color: #f5c524;
    margin-right: 2px;
}

.goods-star-inline {
    font-size: 11px;
    color: #999;
    font-weight: 400;
    white-space: nowrap;
    margin-left: 4px;
}

.goods-star-inline .fa-star {
    color: #f5c524;
    margin-right: 2px;
    font-size: 10px;
}

.goods-actions {
    margin-left: 4px;
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.add-btn {
    background: #ea1a26;
    color: #fff;
    border: none;
    border-radius: 50%;
    font-size: 14px;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background .18s, transform .15s;
    padding: 0;
}

.add-btn:active {
    background: #d11519;
    transform: scale(0.9);
}

.notify-btn {
    background: #f0f0f0;
    color: #ccc;
    border: none;
    border-radius: 50%;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    cursor: not-allowed;
    padding: 0;
}

.cart-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 30;
    background: #fff;
    box-shadow: 0 -2px 18px rgba(234, 26, 39, 0.07);
    padding: 0 8px;
}

.cart-bar-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 50px;
}

.cart-fee-detail {
    padding: 6px 0 2px 0;
    border-bottom: 1px solid #f0f0f0;
}

.cart-fee-detail .fee-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2px 0;
    font-size: 12px;
    color: #888;
}

.cart-fee-detail .fee-label {
    color: #999;
}

.cart-fee-detail .fee-value {
    color: #666;
}

.cart-price {
    font-size: 17px;
    color: #ea1a26;
    font-weight: bold;
}

.pay-btn {
    background: linear-gradient(100deg, #fb565a 0%, #ea1a26 54%, #f75d3f 100%);
    color: #fff;
    border: none;
    border-radius: 18px;
    font-size: 15px;
    font-weight: 700;
    padding: 0 28px;
    height: 36px;
    letter-spacing: 1px;
    box-shadow: 0 2px 8px rgba(234, 26, 39, 0.15);
    cursor: pointer;
    position: relative;
    transition: box-shadow .15s, background .2s, transform .16s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    outline: none;
}

.pay-btn:active {
    transform: scale(0.96);
    box-shadow: 0 1px 5px rgba(234, 26, 39, 0.10);
}

.pay-btn:focus {
    outline: 2px solid #faacac;
}

.pay-btn:disabled {
    background: linear-gradient(100deg, #eee, #f5f5f5);
    color: #bbb;
    cursor: not-allowed;
    box-shadow: none;
    filter: grayscale(0.2);
}

.pay-btn .fa {
    margin-right: 8px;
    font-size: 1.2em;
}

.loading {
    text-align: center;
    padding: 20px;
    color: #666;
    display: none;
}

/* ===== 模式选择器 ===== */
.order-mode-bar {
    background: #fff;
    padding: 10px 12px;
    border-bottom: 1px solid #f0f0f2;
}

.mode-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.mode-channels {
    display: flex;
    gap: 0;
    background: #f2f2f2;
    border-radius: 20px;
    padding: 3px;
    box-shadow: inset 0 1px 2px rgba(0,0,0,0.04);
}

.mode-ch {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 6px 16px;
    border-radius: 17px;
    font-size: 13px;
    font-weight: 500;
    color: #999;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    user-select: none;
    white-space: nowrap;
}

.mode-ch i {
    font-size: 12px;
}

.mode-ch.active {
    color: #fff;
    background: linear-gradient(135deg, #ea1a26 0%, #f75d3f 100%);
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(234, 26, 38, 0.3);
}

.mode-ch:not(.active):hover {
    color: #666;
}

.mode-time {
    display: flex;
    gap: 0;
    background: #f2f2f2;
    border-radius: 16px;
    padding: 3px;
    box-shadow: inset 0 1px 2px rgba(0,0,0,0.04);
}

.mode-time-item {
    padding: 5px 14px;
    border-radius: 13px;
    font-size: 13px;
    font-weight: 500;
    color: #999;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    user-select: none;
    text-align: center;
    white-space: nowrap;
}

.mode-time-item.active {
    color: #ea1a26;
    font-weight: 600;
    background: #fff;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
}

/* ===== 紧凑表单 ===== */
.mode-form {
    display: flex;
    flex-direction: column;
    gap: 4px;
    animation: slideDown 0.25s ease;
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-4px); }
    to { opacity: 1; transform: translateY(0); }
}

.form-row-sm {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 2px 12px;
    border-radius: 8px;
    transition: background 0.15s;
}

.form-row-sm:active {
    background: #f9f9fb;
}

.form-icon-sm {
    color: #ea1a26;
    font-size: 14px;
    width: 16px;
    text-align: center;
    flex-shrink: 0;
}

.form-input-sm {
    flex: 1;
    padding: 6px 10px;
    border: 1px solid #e8e8ec;
    border-radius: 8px;
    font-size: 14px;
    line-height: 1.3;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
    background: #fafafa;
    min-width: 0;
}

.form-input-sm:focus {
    border-color: #ea1a26;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(234, 26, 38, 0.08);
}

/* ===== 可点击的表单行（地址选择） ===== */
.form-input-clickable {
    cursor: pointer;
    user-select: none;
    color: #bbb;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    transition: color 0.15s;
}

.form-input-clickable:not(.placeholder) {
    color: #333;
    font-weight: 500;
}

.form-arrow-sm {
    color: #ccc;
    font-size: 12px;
    flex-shrink: 0;
}

/* ===== 日期时间 ===== */
.dt-compact {
    flex: 1;
    min-width: 0;
    font-size: 14px;
    padding: 4px 6px;
    line-height: 1.4;
    text-align: left;
}

.dt-compact::-webkit-datetime-edit {
    padding: 0;
    text-align: left;
}

.dt-compact::-webkit-date-and-time-value {
    text-align: left;
}

.dt-compact::-webkit-calendar-picker-indicator {
    font-size: 16px;
    padding: 0;
    margin: 0;
    display: inline-block;
    opacity: 0.6;
    cursor: pointer;
}

/* ===== 邮寄地址选择抽屉 ===== */
.consignee-overlay {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.45);
    z-index: 500;
    justify-content: center;
    align-items: flex-end;
}

.consignee-overlay.active {
    display: flex;
}

.consignee-sheet {
    width: 100%;
    max-width: 540px;
    max-height: 90vh;
    background: #fff;
    border-radius: 16px 16px 0 0;
    display: flex;
    flex-direction: column;
    animation: sheetUp 0.3s ease;
    overflow: hidden;
}

@keyframes sheetUp {
    from { transform: translateY(100%); }
    to { transform: translateY(0); }
}

.consignee-sheet-bar {
    width: 36px;
    height: 4px;
    background: #ddd;
    border-radius: 2px;
    margin: 8px auto 0;
    flex-shrink: 0;
}

.consignee-sheet-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    border-bottom: 1px solid #f0f0f0;
    flex-shrink: 0;
}

.consignee-sheet-title {
    font-size: 16px;
    font-weight: 600;
    color: #333;
}

.consignee-sheet-close {
    width: 28px; height: 28px;
    border: none; background: #f5f5f5; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; color: #999; font-size: 13px;
}

.consignee-sheet-close:hover { background: #eee; color: #333; }

.consignee-iframe {
    flex: 1;
    width: 100%;
    border: none;
    min-height: 500px;
}

/* ===== 商品门店信息：门店名称 + 距离 + 导航 ===== */
.goods-store-info {
    display: flex;
    align-items: center;
    gap: 0;
    font-size: 11px;
    color: #888;
    line-height: 1.4;
    min-width: 0;
}

.goods-store-name {
    color: #c4565a;
    font-weight: 500;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    flex-shrink: 1;
    min-width: 0;
    max-width: 140px;
}

.goods-store-sep {
    color: #ccc;
    margin: 0 4px;
    flex-shrink: 0;
}

.goods-store-dist {
    font-size: 10px;
    font-weight: 600;
    color: #ea1a26;
    white-space: nowrap;
}

.goods-store-dist-nav {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    padding: 1px 6px;
    border-radius: 10px;
    font-size: 10px;
    color: #ea1a26;
    background: #fff0f0;
    text-decoration: none;
    transition: all 0.2s ease;
    flex-shrink: 0;
    white-space: nowrap;
}

.goods-store-dist-nav:hover {
    background: rgba(234, 26, 38, 0.12);
    color: #d01520;
}

.goods-store-dist-nav .fas {
    font-size: 10px;
}

/* ===== 门店选择由 StoreLocator 组件管理，样式见 store-locator.css ===== */

/* ===== 时长选择 ===== */
.form-select-sm {
    flex: 0 0 auto;
    width: 80px;
    min-width: 0;
    padding: 6px 8px;
    border: 1px solid #e8e8ec;
    border-radius: 8px;
    font-size: 14px;
    line-height: 1.3;
    outline: none;
    background: #fafafa;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%23999'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 8px center;
    padding-right: 24px;
    cursor: pointer;
    box-sizing: border-box;
    height: 32px;
    transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}

.form-select-sm:focus {
    border-color: #ea1a26;
    background-color: #fff;
    box-shadow: 0 0 0 3px rgba(234, 26, 38, 0.08);
}

.form-select-sm:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.form-time-unit {
    color: #999;
    font-size: 13px;
    flex-shrink: 0;
}

.form-input-label {
    font-size: 14px;
    color: #666;
    flex-shrink: 0;
    min-width: 28px;
}

/* ===== 人数步进器 ===== */
/* ===== 人数步进器 ===== */
.guest-stepper {
    display: flex;
    align-items: center;
    gap: 0;
    flex: 1;
    background: #f0f0f0;
    border-radius: 20px;
    padding: 2px;
    touch-action: manipulation;
}

.stepper-btn {
    width: 26px;
    height: 26px;
    border: none;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #999;
    font-size: 16px;
    transition: all 0.15s;
    padding: 0;
    touch-action: manipulation;
    box-shadow: 0 1px 2px rgba(0,0,0,0.06);
}

.stepper-btn i {
    font-size: 10px;
    pointer-events: none;
}

.stepper-btn:active {
    background: #ea1a26;
    color: #fff;
    transform: scale(0.88);
    box-shadow: none;
}

.stepper-btn:disabled {
    opacity: 0.2;
    cursor: not-allowed;
    box-shadow: none;
}

.stepper-input:read-only {
    color: #999;
    opacity: 0.7;
}

.stepper-input {
    width: 52px;
    min-width: 52px;
    text-align: center;
    font-size: 16px;
    font-weight: 700;
    color: #333;
    border: none;
    background: transparent;
    outline: none;
    -moz-appearance: textfield;
    line-height: 1;
    padding: 0;
    touch-action: manipulation;
}

.stepper-input::-webkit-outer-spin-button,
.stepper-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.stepper-input:focus {
    color: #ea1a26;
}

/* ===== 资源选择底部面板 ===== */
.res-overlay {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.45);
    z-index: 600;
    justify-content: center;
    align-items: flex-end;
}

.res-overlay.active {
    display: flex;
}

.res-sheet {
    width: 100%;
    max-width: 540px;
    max-height: 80vh;
    background: #fff;
    border-radius: 16px 16px 0 0;
    display: flex;
    flex-direction: column;
    animation: sheetUp 0.3s ease;
    overflow: hidden;
}

.res-sheet-bar {
    width: 36px;
    height: 4px;
    background: #ddd;
    border-radius: 2px;
    margin: 8px auto 0;
    flex-shrink: 0;
}

.res-sheet-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    border-bottom: 1px solid #f0f0f0;
    flex-shrink: 0;
}

.res-sheet-title {
    font-size: 16px;
    font-weight: 600;
    color: #333;
}

.res-sheet-close {
    width: 28px; height: 28px;
    border: none; background: #f5f5f5; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; color: #999; font-size: 13px;
}

.res-sheet-close:hover { background: #eee; color: #333; }

/* 资源类型筛选 */
.res-filter-bar {
    display: flex;
    gap: 0;
    padding: 8px 16px;
    background: #fafafa;
    border-bottom: 1px solid #f0f0f0;
    flex-shrink: 0;
}

.res-filter-tab {
    padding: 5px 14px;
    border-radius: 14px;
    font-size: 13px;
    font-weight: 500;
    color: #999;
    cursor: pointer;
    transition: all 0.2s;
    user-select: none;
    margin-right: 6px;
}

.res-filter-tab:hover { color: #666; }

.res-filter-tab.active {
    color: #fff;
    background: #ea1a26;
    font-weight: 600;
}

/* 资源提示信息 */
.res-info-bar {
    padding: 6px 16px;
    font-size: 11px;
    color: #999;
    background: #fffbe6;
    border-bottom: 1px solid #fff3cd;
    flex-shrink: 0;
    display: none;
}

.res-info-bar.visible {
    display: block;
}

/* 资源列表 */
.res-list {
    flex: 1;
    overflow-y: auto;
    padding: 8px 12px;
}

.res-card {
    display: flex;
    align-items: center;
    padding: 10px 12px;
    border-radius: 10px;
    margin-bottom: 8px;
    background: #fafafa;
    cursor: pointer;
    transition: all 0.15s;
    border: 1.5px solid transparent;
    position: relative;
}

.res-card:hover { background: #f5f5f5; }

.res-card.selected {
    border-color: #ea1a26;
    background: #fff8f8;
}

.res-card.unavailable {
    opacity: 0.45;
    cursor: not-allowed;
    pointer-events: none;
}

.res-card-check {
    width: 20px; height: 20px;
    border-radius: 4px;
    border: 1.5px solid #ddd;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    margin-right: 10px;
    transition: all 0.15s;
    font-size: 11px;
    color: transparent;
}

.res-card.selected .res-card-check {
    border-color: #ea1a26;
    background: #ea1a26;
    color: #fff;
}

.res-card-body {
    flex: 1;
    min-width: 0;
}

.res-card-top {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 3px;
}

.res-card-name {
    font-size: 15px;
    font-weight: 600;
    color: #333;
}

.res-card-type-badge {
    display: inline-block;
    padding: 1px 6px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
    color: #fff;
}

.res-card-type-badge.type-1 { background: #667eea; }
.res-card-type-badge.type-2 { background: #f5a623; }
.res-card-type-badge.type-3 { background: #7ed321; }

.res-card-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    color: #888;
}

.res-card-meta i {
    font-size: 10px;
    margin-right: 2px;
    color: #bbb;
}

.res-card-capacity {
    color: #ea1a26;
    font-weight: 500;
}

.res-card-capacity.match {
    color: #52c41a;
}

.res-card-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 2px;
    flex-shrink: 0;
    margin-left: 8px;
}

.res-card-status {
    font-size: 11px;
    padding: 1px 6px;
    border-radius: 3px;
}

.res-card-status.available { color: #52c41a; background: #f6ffed; border: 1px solid #b7eb8f; }
.res-card-status.booked { color: #999; background: #f5f5f5; border: 1px solid #d9d9d9; }

/* 资源面板底部 */
.res-sheet-foot {
    padding: 10px 16px 14px;
    border-top: 1px solid #f0f0f0;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.res-selected-summary {
    flex: 1;
    font-size: 14px;
    color: #666;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.res-selected-summary.has-selection {
    color: #ea1a26;
    font-weight: 500;
}

.res-confirm-btn {
    padding: 8px 24px;
    border: none;
    border-radius: 20px;
    background: linear-gradient(100deg, #fb565a, #ea1a26);
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.15s;
    flex-shrink: 0;
}

.res-confirm-btn:active { transform: scale(0.96); }
.res-confirm-btn:disabled { background: #eee; color: #bbb; cursor: not-allowed; }

.res-empty {
    text-align: center;
    padding: 40px 0;
    color: #ccc;
    font-size: 14px;
}

.res-empty i {
    font-size: 36px;
    display: block;
    margin-bottom: 10px;
}

/* ===== 折叠/展开按钮 ===== */
.mode-toggle-btn {
    width: 28px;
    height: 28px;
    padding: 0px;
    background-clip: content-box;
    border: none;
    background: #f2f2f2;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #999;
    font-size: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
    box-sizing: content-box;
}

.mode-toggle-btn:hover {
    background: #e8e8e8;
    color: #555;
}

.mode-toggle-btn.collapsed {
    transform: none;
}

.mode-toggle-btn.collapsed i {
    transform: rotate(180deg);
}

/* ===== 可折叠表单区域 ===== */
.order-info-collapse {
    overflow: hidden;
    transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.25s ease;
    max-height: 600px;
    opacity: 1;
}

.order-info-collapse.collapsed {
    max-height: 0;
    opacity: 0;
    transition: max-height 0.25s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.15s ease;
}

/* ===== 门店服务方式 + 人数（同一行） ===== */
.service-mode-guest-row {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 4px 12px;
}

.service-mode-select {
    flex: 1;
    min-width: 0;
    max-width: 160px;
}

.guest-inline {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-left: auto;
    flex-shrink: 0;
}

.service-mode-select-label {
    font-size: 13px;
    font-weight: 500;
    color: #666;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 4px;
}

.service-mode-select-label i {
    font-size: 12px;
    color: #ea1a26;
}



