/* 用户端界面（无毛玻璃、无动画、注重可读与性能） */

:root {
    --acg-bg-overlay: rgba(10, 12, 28, 0.45);
    --acg-primary: #7a8cff;
    --acg-secondary: #b88cff;
    --acg-danger: #ff6b88;
    --acg-text-strong: #111319;
    --acg-text-muted: #6b7280;
    --acg-card-bg: rgba(255, 255, 255);
    --acg-border: #e5e7eb;
}

html {
    font-size: 13px;
}

a {
    text-decoration: none;
}

/* 背景直接铺图 + 颜色叠加（不使用 fixed，避免闪烁） */
body {
    background-image: linear-gradient(180deg, var(--acg-bg-overlay), rgba(10, 12, 28, 0.6)), url('/assets/admin/images/login/bg.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

/* 导航：渐变条 + 细边框 */
.navbar-acg {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 10px 0;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(10px);
    box-shadow: 0px 10px 30px 0px rgba(82, 63, 105, 0.05);
    z-index: 999999;
}

.navbar-acg .navbar-brand {
    font-size: 1.45rem;
}

.navbar-acg .nav-link {
    color: #898989;
    font-size: 1.2rem;
}

.navbar-acg .nav-link.active {
    color: #479afb;
}

.navbar-acg .nav-link.active {
    font-weight: 600;
}

@media (max-width: 767.98px) {
    .user-info-box {
        position: absolute;
        right: 64px;
        top: 8px;
    }
    .user-login-box {
        position: absolute;
        right: 68px;
        top: 14px;
    }
}


/* Hero 文案块（纯色卡片） */
.hero-acg {
    background: var(--acg-card-bg);
    border: 1px solid var(--acg-border);
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .08);
}

.hero-title {
    font-weight: 800;
    letter-spacing: .3px;
}

.hero-sub {
    color: var(--acg-text-muted);
}

.accent-bar {
    height: 4px;
    width: 64px;
    background: linear-gradient(90deg, var(--acg-primary), var(--acg-secondary));
    border-radius: 4px;
}

/* 分类 Chip */
.chip-list {
    display: flex;
    gap: .5rem;
    overflow-x: visible;
    overflow-y: visible;
    padding: 2px 0 .25rem;
    flex-wrap: wrap;
}

.chip-list::-webkit-scrollbar {
    height: 6px;
}

.chip-list::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, .15);
    border-radius: 999px;
}

.chip {
    display: inline-flex;
    align-items: center;
    padding: .4rem 1rem;
    border-radius: 999px;
    background: rgb(255 248 248 / 23%);
    color: #707070;
    border: none;
    text-decoration: none;
    white-space: nowrap;
    transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease;
    transform-origin: center;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    font-size: 1.231rem;
}

.chip.is-primary {
    color: #fff;
    background: linear-gradient(90deg, var(--acg-primary), var(--acg-secondary));
    border-color: transparent;
}

/* 商品卡片（简洁，无动态特效） */
.acg-card {
    background: var(--acg-card-bg);
    border: none;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    transition: transform .25s ease, box-shadow .25s ease;
    cursor: pointer;
    position: relative;
    display: flex;
    flex-direction: column;
}

.acg-thumb {
    height: 160px;
    position: relative;
    transition: transform .25s ease;
}

/* 内容容器弹性布局，底部元素对齐 */
.acg-card > .p-3 {
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
}

/* 价格行靠近底部，库存/已售置底对齐 */
.acg-card > .p-3 .stat-row {
    margin-top: auto;
}

.goods-title {
    font-weight: 700;
    color: #1f1f1f;
    margin: 0;
    font-size: 15px;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 2.7em; /* 2 行占位，保证一行与两行卡片对齐 */
}

.price {
    color: var(--acg-danger);
    font-weight: 800;
    font-size: 20px;
}

.price .unit {
    font-weight: 600;
    font-size: 16px;
    color: #ef7d93;
}

.meta {
    color: var(--acg-text-muted);
}

.stat-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .5rem;
}

.stat-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--acg-text-muted);
}

.badge-soft {
    display: inline-block;
    padding: .15rem .45rem;
    border-radius: 999px;
    font-size: 12px;
}

.badge-soft-primary {
    background: rgba(122, 140, 255, .12);
    color: #5b6ce6;
    border: 1px solid rgba(122, 140, 255, .25);
}

.badge-soft-success {
    background: rgba(80, 200, 120, .12);
    color: #3aa76d;
    border: 1px solid rgba(80, 200, 120, .25);
}

.badge-soft-danger {
    background: rgba(255, 0, 0, 0.12);
    color: #ff0000;
    border: 1px solid rgba(255, 0, 0, 0.25);
}

.badge-soft-muted {
    background: rgba(31, 41, 55, 0.12);
    color: rgba(31, 41, 55);
    border: 1px solid rgba(31, 41, 55, 0.25);
}

.badge-soft-warning {
    background: rgba(254, 243, 199, 0.12);
    color: #fef3c7;
    border: 1px solid rgba(254, 243, 199, 0.25);
}


.badge-soft-info {
    background: rgba(186, 149, 251, 0.12);
    color: #ba95fb;
    border: 1px solid rgba(186, 149, 251, 0.25);
}

.shared-button {
    cursor: pointer;
    transition: transform .25s ease, box-shadow .25s ease;
}

.shared-button:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, .12);
}

.tags {
    display: flex;
    gap: .35rem;
    flex-wrap: wrap;
    margin-bottom: .4rem;
}

.acg-card.soldout {
    filter: grayscale(1) contrast(.92) brightness(.98);
}

.acg-card.soldout:hover {
    transform: none;
    box-shadow: rgba(100, 100, 111, .2) 0 7px 29px 0;
}

.soldout-ribbon {
    position: absolute;
    top: 12px;
    left: -36px;
    transform: rotate(-45deg);
    background: linear-gradient(90deg, #ff8080, #ff6b88);
    color: #fff;
    padding: 4px 46px;
    font-weight: 800;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    box-shadow: 0 6px 16px rgba(255, 107, 136, .35);
}

/* 分类图标（演示使用统一图片） */
.chip .chip-icon {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: inline-block;
    margin-right: 6px;
}

/* 布局微调 */
.section-title {
    color: #111827;
    font-weight: 700;
}

.notice {
    color: #374151;
}

@media (min-width: 992px) {
    .hero-acg {
        padding: 32px;
    }
}

/* 响应式卡片封面高度调整 */
@media (max-width: 575.98px) {
    .acg-thumb {
        height: 120px;
    }
}

@media (min-width: 576px) and (max-width: 991.98px) {
    .acg-thumb {
        height: 140px;
    }
}

/* 移动端 chip 紧凑化，保持单行显示 */
@media (max-width: 575.98px) {
    .chip {
        padding: .35rem .6rem;
        font-size: 13px;
    }

    .chip .chip-icon {
        width: 16px;
        height: 16px;
        margin-right: 4px;
    }

    /* 隐藏移动端横向滚动条但可滑动 */
    .chip-list {
        -ms-overflow-style: none;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
    }

    .chip-list::-webkit-scrollbar {
        display: none;
    }
}

/* 仅在支持 hover 的设备启用动效，避免手机耗电与误触 */
@media (hover: hover) and (pointer: fine) {
    .chip:hover {
        transform: scale(1.02);
    }

    .sku:hover {
        transform: scale(1.02);
    }

    .acg-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 12px 30px rgba(0, 0, 0, .12);
    }

    .acg-card:hover .acg-thumb {
        transform: scale(1.03);
    }
}

/* 系统减少动态时，弱化动效 */
@media (prefers-reduced-motion: reduce) {
    .chip, .acg-card, .acg-thumb, .sku {
        transition-duration: .001ms !important;
    }
}

/* 顶部图标与输入组微调 */
.navbar-acg .nav-link .nav-icon {
    margin-right: .35rem;
    font-size: 1.15rem;
}

.navbar-acg .btn .nav-icon {
    margin-right: .35rem;
}

.brand-logo {
    width: 22px;
    height: 22px;
    border-radius: 4px;
}

.search-input {
    max-width: 360px;
}

.search-input .input-group-text {
    border: 1px solid #90909075;
    background: transparent;
    border-right: 0;
    padding: 0 0 0 10px;
    border-bottom-left-radius: 12px;
    border-top-left-radius: 12px;
}

.search-input .form-control {
    border: 1px solid #90909075;
    border-left: 0;
    border-bottom-right-radius: 12px;
    border-top-right-radius: 12px;

}

.search-input .form-control:focus {
    border: var(--bs-border-width) solid #90909075 !important;
    border-left: none !important;
    box-shadow: none;
}

/* 通用 panel 样式（公告/购买区） */
.panel {
    border: none;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    box-shadow: 0px 10px 30px 0px rgba(82, 63, 105, 0.05);
}

.panel + .panel {
    margin-top: 16px;
}

.panel-header {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 12px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    padding: 16px;

}

.panel-header .icon {
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.panel-title {
    margin: 0;
    color: #111827;
    font-size: 1.2rem;
}

.panel-body {
    color: #1f2937;
    padding: 0 16px 16px 16px;
}

.muted {
    color: var(--acg-text-muted);
}

.item-message {
    text-align: center;
    margin-top: 12px;
    color: grey;
    font-size: 14px;
}


/* SKU LIST */
.sku-list {
    display: flex;
    gap: .5rem;
    overflow-x: visible;
    overflow-y: visible;
    flex-wrap: wrap;
    margin-top: 2px;
}

.sku-list::-webkit-scrollbar {
    height: 6px;
}

.sku-list::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, .15);
    border-radius: 16px;
}

.sku {
    display: inline-flex;
    align-items: center;
    position: relative;
    padding: .2rem .6rem;
    border-radius: 16px;
    background: rgba(255, 248, 248, 0.63);
    color: #929292;
    border: none;
    text-decoration: none;
    white-space: nowrap;
    transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease;
    transform-origin: center;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    font-size: 14px;
}

/* 价格加价徽标（悬浮在 SKU 右上角） */
.sku .badge-money,
.sku .badge-moeny {
    position: absolute;
    top: -15px;
    right: -12px;
    z-index: 1;
    padding: 1px 4px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 500;
    line-height: 1.1;
    color: #fff;
    background: linear-gradient(90deg, #ffb84d, #ff6b88);
    border: 2px solid #ffffff;
    box-shadow: 0 8px 18px rgba(255, 107, 136, .35);
    pointer-events: none; /* 不干扰点击 SKU */
}

/* 在选中/主色 SKU 上同样清晰可见 */
.sku.is-primary .badge-money,
.sku.is-primary .badge-moeny,
.pay-list .pay.is-primary .badge-money,
.pay-list .pay.active .badge-money,
.pay-list .pay.selected .badge-money {
    border-color: rgba(255, 255, 255, 0.95);
}

@media (hover: hover) and (pointer: fine) {
    .sku:hover .badge-money,
    .sku:hover .badge-moeny {
        transform: translateY(-1px) scale(1.05);
        transition: transform .12s ease;
    }
}

@media (max-width: 575.98px) {
    .sku .badge-money,
    .sku .badge-moeny {
        transform: scale(.94);
        transform-origin: top right;
    }
}

.sku.is-primary {
    color: #fff;
    background: linear-gradient(90deg, #ffb1b1, #ab57ff);
    border-color: transparent;
}

.vstack label {
    color: grey;
    font-size: 14px;
}

.vstack .form-control {
    font-size: 14px;
    background: rgba(255, 255, 255, 0.49);
    border: var(--bs-border-width) solid #ababab47;
}

.captcha-input {
    border-bottom-right-radius: 0;
    border-top-right-radius: 0;
    border-right: none;
}

.captcha-img {
    border-bottom-left-radius: 0;
    border-top-left-radius: 0;
    border-left: none;
    background: rgba(255, 255, 255, 0.49);
    padding: 0;
    height: 100%;
    cursor: pointer;
    margin-left: 2px;
}

/* 容器（外层白底圆角、淡粉描边与光晕） */
.input-group.qty-group {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 6px 8px;
    border-radius: 0.375rem;
    width: 140px; /* 可按需要调整 */
    background: linear-gradient(180deg, #ffffff, #fff4f8);
    border: 2px solid #ffd6e5;
    box-shadow: 0 14px 24px rgba(255, 105, 135, .18),
    0 0 0 6px rgba(255, 214, 229, .35) inset;
}

/* 左右按钮（粉色圆角方块） */
.input-group.qty-group > button {
    width: 32px;
    height: 24px;
    border: 0;
    border-radius: 0.375rem;
    color: #ffffff;
    font-size: 14px;
    line-height: 1;
    font-weight: 700;
    cursor: pointer;
    background: linear-gradient(180deg, #ff74a9, #ff5c8e);
    box-shadow: 0 8px 18px rgba(255, 92, 142, .35);
    transition: transform .12s ease, filter .12s ease;
}

.input-group.qty-group > button:hover {
    filter: brightness(1.06);
}

.input-group.qty-group > button:active {
    transform: scale(.98);
}

/* 中间数字输入（透明背景、无边框、大号数字） */
.input-group.qty-group > input[type="number"] {
    flex: 1 1 auto;
    min-width: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
    outline: none;
    text-align: center;
    color: #ff5c8e;
    font-size: 14px;
    font-weight: 700;
    padding: 0;
}

/* 去掉数字输入的上下小箭头 */
.input-group.qty-group > input[type="number"]::-webkit-outer-spin-button,
.input-group.qty-group > input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.input-group.qty-group > input[type="number"] {
    -moz-appearance: textfield;
    appearance: textfield;
}

/* 结账分区（高阶分隔卡片） */
.cash-pay {
    position: relative;
    border-radius: 16px;
    padding: 12px;
    background: #ffffff70;
    border: none;
    box-shadow: 0 10px 28px rgba(149, 157, 165, 0.25),
    0 0 0 6px rgba(122, 140, 255, .06) inset;
}

.cash-pay .form-label {
    display: flex;
    align-items: center;
    gap: .3rem;
    margin: 4px 0 8px 4px;
    font-weight: 800;
    font-size: 1rem;
    color: #9d93f7;
}

.cash-pay .form-label i {
    width: 20px;
    height: 20px;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: #fff;
    background: linear-gradient(90deg, var(--acg-primary), var(--acg-secondary));
    box-shadow: 0 6px 14px rgba(122, 140, 255, .35);
}

.cash-pay .pay-list {
    display: flex;
    gap: .5rem;
    flex-wrap: wrap;
    padding-top: 10px;
    border-top: 1px dashed #eceff3;
}

/* 强化在结账区域内的支付按钮视觉分组 */
.cash-pay .pay-list .pay {
    background: rgba(255, 248, 248, 0.3);
    border: none;
    cursor: pointer;
}

.cash-pay .pay-list .pay.is-primary,
.cash-pay .pay-list .pay.active,
.cash-pay .pay-list .pay.selected {
    box-shadow: 0 10px 22px rgba(122, 140, 255, .28);
}

@media (max-width: 575.98px) {
    .cash-pay {
        padding: 10px;
        border-radius: 14px;
    }

    .cash-pay .form-label {
        margin-bottom: 6px;
    }
}

.pay-list .pay {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    padding: .4rem .75rem;
    border-radius: 12px;
    background: rgba(255, 248, 248, 0.15);
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    text-decoration: none;
    user-select: none;
    transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease, filter .12s ease;
}

.pay-list .pay img {
    width: 20px;
    height: 20px;
    object-fit: cover;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .08);
}

.pay-list .pay span {
    font-size: 14px;
    font-weight: 700;
    color: #a3a3a3;
}

/* 选中态，可通过添加 .active / .selected / .is-primary 类控制 */
.pay-list .pay.is-primary,
.pay-list .pay.active,
.pay-list .pay.selected {
    color: #fff;
    background: linear-gradient(90deg, var(--acg-primary), var(--acg-secondary));
    border-color: transparent;
    box-shadow: 0 8px 18px rgba(122, 140, 255, .25);
}

.pay-list .pay.is-primary span,
.pay-list .pay.active span,
.pay-list .pay.selected span {
    color: #fff;
}

@media (hover: hover) and (pointer: fine) {
    .pay-list .pay:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 20px rgba(0, 0, 0, .12);
        filter: brightness(1.02);
    }
}

/* 商品详情块微调（置于左侧商品图下） */
.item-detail {
    margin-top: 12px;
}

.item-detail .panel-header .icon {
    background: linear-gradient(90deg, var(--acg-primary), var(--acg-secondary));
    color: #fff;
}

.item-detail .panel-body img {
    max-width: 100%;
}

.item-detail .panel-body p {
    margin-bottom: 0;
    line-height: 1.7;
}

@media (max-width: 575.98px) {
    .item-detail {
        margin-top: 10px;
    }
}

/* 移动端：标题不强制占两行 */
@media (max-width: 575.98px) {
    .goods-title {
        -webkit-line-clamp: 1;
        line-clamp: 1;
        min-height: 1.35em;
    }

    .chip-list {
        flex-wrap: wrap;
    }
}


.wholesale-table {
    width: 140px;
    background: transparent;
}

.wholesale-table > * > * > * {
    background: transparent !important;
}

.wholesale-table thead th {
    color: #ff70a6 !important;
    font-size: 14px;
}

.wholesale-table tbody td {
    color: #ff70a6 !important;
    font-size: 14px;
}

/* 用户头像样式 */
#user-avatar {
    border: 2px solid #e9ecef;
    transition: border-color 0.2s ease;
}

#user-avatar:hover {
    border-color: #139655;
}

/* 用户信息按钮样式 */
#userDropdown {
    padding: 4px 8px;
    border: none;
    background: transparent;
    transition: all 0.2s ease;
}

#userDropdown:hover {
    background-color: rgba(19, 150, 85, 0.1);
    border-radius: 8px;
}

/* 下拉菜单样式 */
.dropdown-menu {
    border: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    padding: 4px 0;
    backdrop-filter: saturate(180%) blur(20px);
    background: rgba(255, 255, 255, 0.7);
}

.dropdown-item {
    padding: 6px 16px;
    transition: background-color 0.2s ease;
    font-size: 14px;
    line-height: 1.3;
}

.dropdown-item:hover {
    background-color: rgba(19, 150, 85, 0.1);
}

.dropdown-item i {
    width: 16px;
    text-align: center;
}

/* 用户名和余额样式 */
#username {
    color: #212529;
    font-weight: 600;
}

#user-balance {
    color: #6c757d;
    font-weight: 500;
}

.bootstrap-table.bootstrap5 .table-switch-state button.active, .table-switch-state button:focus {
    background-color: #ffa3ad82 !important;
}

.bootstrap-table.bootstrap5 .table-switch-state button:hover {
    background-color: rgba(255, 163, 173, 0.29) !important;
}

.table {
    --bs-table-bg: rgba(255, 255, 255, 0) !important;
    --bs-table-border-color: transparent;
}

.btn-group-sm > .btn, .btn-sm {
    font-size: 1rem;
}

/* 订单查询页面样式 */
.order-query-form {

}

.order-results, .no-results, .loading-state {
    margin-top: 12px;
}

.order-query-form .form-label {
    font-weight: 600;
    color: #374151;
    margin-bottom: 8px;
}

.order-query-form .form-control {
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    padding: 12px 16px;
    font-size: 14px;
    height: 48px;
    transition: all 0.2s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.order-query-form .form-control:focus {
    background: rgba(255, 255, 255, 0.95);
    border-color: var(--acg-primary);
    box-shadow: 0 0 0 4px rgba(122, 140, 255, 0.15), 0 4px 12px rgba(0, 0, 0, 0.1);
    transform: translateY(-1px);
}

.order-query-form .btn-primary {
    background: linear-gradient(135deg, var(--acg-primary), var(--acg-secondary));
    border: none;
    border-radius: 12px;
    padding: 12px 20px;
    font-weight: 600;
    font-size: 14px;
    height: 48px;
    transition: all 0.2s ease;
    box-shadow: 0 4px 12px rgba(122, 140, 255, 0.25);
    position: relative;
    overflow: hidden;
}

.order-query-form .btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.order-query-form .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(122, 140, 255, 0.35);
}

.order-query-form .btn-primary:hover::before {
    left: 100%;
}

.order-query-form .btn-primary:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(122, 140, 255, 0.3);
}

/* 响应式调整 */
@media (max-width: 767.98px) {
    .order-query-form .btn-primary {
        width: 120px;
    }
}

/* 订单项样式 - 重新设计 */
.order-item {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.order-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--acg-primary), var(--acg-secondary));
}

.order-item:hover {
    background: rgba(255, 255, 255, 0.25);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.3);
}

/* 订单头部 */
.order-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f1f5f9;
}

.order-left {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.order-status {
    flex-shrink: 0;
}

.status-badge {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 24px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.status-badge.status-pending {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: white;
    border: none;
}

.status-badge.status-paid {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    border: none;
}

.status-badge.status-completed {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: white;
    border: none;
}

.status-badge.status-cancelled {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: white;
    border: none;
}

.status-badge.status-shipped {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
    color: white;
    border: none;
}

.status-badge.status-waiting-shipment {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: white;
    border: none;
}

.shipment-content {
    display: flex;
    align-items: center;
    gap: 6px;
}

/* 发货状态徽章样式 */
.shipment-status {

}

.shipment-badge {
    display: inline-flex;
    align-items: center;
    padding: 3px 6px;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.shipment-badge.shipment-pending {
    background: rgba(251, 191, 36, 0.2);
    color: #d97706;
    border: 1px solid rgba(251, 191, 36, 0.3);
}

.shipment-badge.shipment-paid {
    background: rgba(34, 197, 94, 0.2);
    color: #16a34a;
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.shipment-badge.shipment-shipped {
    background: rgba(139, 92, 246, 0.2);
    color: #7c3aed;
    border: 1px solid rgba(139, 92, 246, 0.3);
}

.shipment-badge.shipment-waiting {
    background: rgba(245, 158, 11, 0.2);
    color: #d97706;
    border: 1px solid rgba(245, 158, 11, 0.3);
}

.order-basic {
    flex: 1;
}

.order-no {
    font-size: 18px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 8px;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
}

.order-time,
.payment-time,
.payment-dst {
    font-size: 14px;
    color: #374151;
    margin-bottom: 4px;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.6);
}

.order-time:last-child,
.payment-time:last-child,
.payment-dst:last-child {
    margin-bottom: 0;
}

.order-right {
    text-align: right;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    height: 100%;
    gap: 12px;
}

.order-amount {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
}

.amount-label {
    font-size: 12px;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.amount-value {
    font-size: 24px;
    font-weight: 800;
    color: var(--acg-danger);
    line-height: 1;
}

/* 商品信息 */
.goods-section {
    display: flex;
    align-items: stretch;
    gap: 12px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.goods-thumb {
    flex-shrink: 0;
    display: flex;
    align-items: stretch;
}

.goods-image {
    width: 72px;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    border: 2px solid white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.goods-details {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.goods-name {
    font-size: 16px;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 8px 0;
    line-height: 1.4;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
}

.goods-meta {
    display: flex;
    gap: 4px;
    flex-wrap: wrap;
}

.goods-price {
    font-size: 18px;
    font-weight: 700;
    color: var(--acg-danger);
}

.payment-dst {
    display: flex;
    align-items: center;
}

.payment-method {
    display: inline-flex;
    align-items: center;
    gap: 2px;
    /*background: #bdbdbd3b;*/

    /*box-shadow: rgba(14, 63, 126, 0.04) 0px 0px 0px 1px, rgba(42, 51, 69, 0.04) 0px 1px 1px -0.5px, rgba(42, 51, 70, 0.04) 0px 3px 3px -1.5px, rgba(42, 51, 70, 0.04) 0px 6px 6px -3px, rgba(14, 63, 126, 0.04) 0px 12px 12px -6px, rgba(14, 63, 126, 0.04) 0px 24px 24px -12px;*/
    /*padding: 3px 6px;*/
    cursor: pointer;
    box-shadow: inset rgb(255 197 249 / 24%) -20px 0px 2px 2px;
    border-radius: 4px;

}

.payment-icon {
    width: 18px;
    height: 18px;
    object-fit: contain;
    border-radius: 4px;
}

.payment-name {
    font-size: 1rem;
    color: #21c44d;
}

/* 响应式设计 */
@media (max-width: 767.98px) {
    .order-header {
        flex-direction: column;
        gap: 12px;
    }

    .order-meta {
        margin-left: 0;
    }

    .order-content {
        flex-direction: column;
        gap: 16px;
    }

    .goods-info {
        flex-direction: column;
        gap: 12px;
    }

    .goods-thumb {
        align-self: center;
    }

    .payment-info {
        text-align: center;
        min-width: auto;
    }
}

/* 加载状态样式 */
.loading-state .icon-spin {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* 无结果状态样式 */
.no-results .fa-search {
    opacity: 0.6;
}

/* 验证码输入组样式调整 */
.order-query-form .captcha-input {
    border-bottom-right-radius: 0;
    border-top-right-radius: 0;
    border-right: none;
}

.order-query-form .captcha-img {
    border-bottom-left-radius: 0;
    border-top-left-radius: 0;
    border-left: none;
    background: rgba(255, 255, 255, 0.8);
    padding: 0;
    height: 100%;
    cursor: pointer;
    margin-left: 2px;
    border-radius: 0 8px 8px 0;
}

/* 虚拟卡密样式 - 重新设计 */
.card-section {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #f1f5f9;
}

.card-header {
    margin-bottom: 16px;
}

.card-title {
    margin: 0;
    font-weight: 700;
    color: #1f2937;
    font-size: 16px;
    display: flex;
    align-items: center;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
}

.password-input-group {
    margin-bottom: 16px;
}

.password-label {
    display: block;
    font-weight: 600;
    color: #374151;
    margin-bottom: 8px;
    font-size: 14px;
}

.card-password-input {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    border-right: none;
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid #e5e7eb;
    border-radius: 8px 0 0 8px;
    padding: 10px 12px;
    height: 42px;
    transition: all 0.2s ease;
}

.card-password-input:focus {
    border-color: var(--acg-primary);
    box-shadow: 0 0 0 3px rgba(122, 140, 255, 0.1);
}

.view-card-btn {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    border-left: none;
    background: linear-gradient(135deg, var(--acg-primary), var(--acg-secondary));
    color: white;
    border: 2px solid var(--acg-primary);
    border-radius: 0 8px 8px 0;
    padding: 10px 16px;
    height: 42px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.2s ease;
}

.view-card-btn:hover {
    background: linear-gradient(135deg, var(--acg-secondary), var(--acg-primary));
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(122, 140, 255, 0.3);
}

.card-content,
.card-content-no-password {
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 16px;
    margin-top: 12px;
}

.card-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.card-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid #f3f4f6;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.card-item:hover {
    background: rgba(255, 255, 255, 0.95);
    border-color: var(--acg-primary);
    box-shadow: 0 2px 8px rgba(122, 140, 255, 0.1);
}

.card-info {
    flex: 1;
}

.card-name {
    font-weight: 600;
    color: #111827;
    margin-bottom: 4px;
    font-size: 14px;
}

.card-value {
    font-family: 'Courier New', monospace;
    background: #f8f9fa;
    padding: 12px 16px;
    border-radius: 6px;
    border: 1px solid #e9ecef;
    color: #495057;
    font-size: 13px;
    line-height: 1.6;
    white-space: pre-line;
    word-break: break-all;
    user-select: all;
    cursor: pointer;
    transition: all 0.2s ease;
    min-height: 60px;
    max-height: 200px;
    overflow-y: auto;
}

.card-value:hover {
    background: #e9ecef;
    border-color: var(--acg-primary);
}

.card-actions {
    display: flex;
    gap: 8px;
    margin-left: 12px;
}

.copy-card-btn {
    padding: 6px 10px;
    font-size: 12px;
    border-radius: 6px;
    border: 1px solid #dee2e6;
    background: white;
    color: #6c757d;
    transition: all 0.2s ease;
}

.copy-card-btn:hover {
    background: var(--acg-primary);
    color: white;
    border-color: var(--acg-primary);
}

.card-loading {
    text-align: center;
    padding: 20px;
    color: #6b7280;
}

.card-loading .icon-spin {
    color: var(--acg-primary);
    font-size: 1.5rem;
}

/* 响应式调整 */
@media (max-width: 767.98px) {
    .card-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .card-actions {
        margin-left: 0;
        width: 100%;
        justify-content: flex-end;
    }

    .view-card-btn {
        font-size: 13px;
        padding: 10px 12px;
    }
}

.card-display {
    white-space: pre-line;
}

/* 新的卡密显示样式 */
.card-display-content {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
}

.card-text {
    font-family: 'Courier New', monospace;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(5px);
    padding: 16px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #1f2937;
    font-size: 14px;
    line-height: 1.8;
    white-space: pre-line;
    word-break: break-all;
    user-select: all;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-bottom: 16px;
    min-height: 80px;
    max-height: 300px;
    overflow-y: auto;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
}

.card-text:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.4);
}

.copy-all-btn {
    background: linear-gradient(135deg, var(--acg-primary), var(--acg-secondary));
    border: none;
    border-radius: 8px;
    padding: 12px 24px;
    color: white;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.2s ease;
    box-shadow: 0 4px 12px rgba(122, 140, 255, 0.25);
}

.copy-all-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(122, 140, 255, 0.35);
}

/* 响应式调整 */
@media (max-width: 767.98px) {
    .order-item {
        padding: 20px;
    }

    .goods-section {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }

    .goods-meta {
        justify-content: center;
    }

    .order-header {
        flex-direction: column;
        gap: 16px;
    }

    .order-right {
        align-self: flex-start;
    }

    .card-display-content {
        padding: 16px;
    }

    .card-text {
        font-size: 13px;
        padding: 12px;
    }
}

/* 加载更多状态样式 */
.load-more-loading,
.load-more-end {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    margin-top: 16px;
}

.load-more-loading .icon-spin {
    color: var(--acg-primary);
    font-size: 1.2rem;
}

.load-more-loading span {
    color: #374151;
    font-weight: 500;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
}

.load-more-end {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.1);
}

.load-more-end span {
    color: #6b7280;
    font-size: 14px;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.6);
}

.load-more-end .fa-check-circle {
    color: #10b981;
}

/* 滚动条样式优化 */
.order-list::-webkit-scrollbar {
    width: 6px;
}

.order-list::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
}

.order-list::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 3px;
}

.order-list::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.5);
}

.item-cover {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.acg-cover {
    position: relative;
    overflow: hidden;
}

.flex-fill {
    flex: 1 1 auto;
}

.br-12 {
    border-radius: 12px;
}

footer {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 8px 0;
    color: #858585;
}

/* 前台固定左侧导航 */
:root {
    --sf-sidebar-width: 248px;
    --sf-topbar-height: 68px;
}

.sf-body {
    min-width: 320px;
    min-height: 100vh;
    overflow-x: hidden;
}

.sf-layout {
    min-height: 100vh;
}

.sf-sidebar {
    position: fixed;
    inset: 0 auto 0 0;
    z-index: 1040;
    display: flex;
    width: var(--sf-sidebar-width);
    min-height: 100vh;
    flex-direction: column;
    background: rgba(255, 255, 255, .96);
    border-right: 1px solid #e5e9f0;
    box-shadow: 8px 0 24px rgba(35, 45, 65, .06);
}

.sf-brand-row {
    display: flex;
    min-height: var(--sf-topbar-height);
    align-items: center;
    justify-content: space-between;
    padding: 0 18px;
    border-bottom: 1px solid #edf0f4;
}

.sf-brand {
    display: flex;
    min-width: 0;
    align-items: center;
    gap: 10px;
    color: #1d2735;
}

.sf-brand__logo {
    width: 32px;
    height: 32px;
    flex: 0 0 32px;
    object-fit: cover;
    border-radius: 6px;
}

.sf-brand__name {
    overflow: hidden;
    font-size: 16px;
    font-weight: 700;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.sf-icon-button {
    display: inline-flex;
    width: 36px;
    height: 36px;
    align-items: center;
    justify-content: center;
    padding: 0;
    color: #667085;
    background: transparent;
    border: 0;
    border-radius: 6px;
}

.sf-icon-button:hover {
    color: #1f65bd;
    background: #eef5ff;
}

.sf-sidebar-close,
.sf-sidebar-toggle {
    display: none;
}

.sf-nav {
    flex: 1 1 auto;
    min-height: 0;
    padding: 14px 12px 24px;
    overflow-x: hidden;
    overflow-y: auto;
}

.sf-nav__section + .sf-nav__section {
    margin-top: 20px;
}

.sf-nav__label {
    padding: 0 10px 7px;
    color: #98a2b3;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
}

.sf-nav__link,
.sf-nav__parent,
.sf-nav__child,
.sf-nav__product-toggle,
.sf-nav__action {
    display: flex;
    width: 100%;
    min-height: 40px;
    align-items: center;
    gap: 11px;
    padding: 9px 11px;
    color: #596579;
    text-align: left;
    background: transparent;
    border: 0;
    border-radius: 6px;
}

.sf-smm-platform__toggle small,
.sf-smm-type small {
    margin-left: auto;
    color: #98a2b3;
    font-size: 10px;
}

.sf-smm-platform > summary {
    list-style: none;
    cursor: pointer;
}

.sf-smm-platform > summary::-webkit-details-marker { display: none; }

.sf-smm-platform__chevron {
    width: auto !important;
    flex: 0 0 auto !important;
    margin-left: 2px;
    font-size: 9px;
    transition: transform .18s ease;
}

.sf-smm-platform[open] .sf-smm-platform__chevron { transform: rotate(180deg); }
.sf-smm-types { display: none; margin: 2px 0 5px 25px; }
.sf-smm-platform[open] .sf-smm-types { display: block; }

.sf-smm-type {
    min-height: 31px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 8px;
    border-radius: 5px;
    color: #667085;
    font-size: 12px;
}

.sf-smm-type:hover,
.sf-smm-type.active { color: #175cd3; background: #eef6ff; }
.sf-smm-type.active { font-weight: 600; }
.sf-smm-type span { min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

.sf-nav__link > i,
.sf-nav__parent > i:first-child,
.sf-nav__child > i,
.sf-nav__product-toggle > i:first-child,
.sf-nav__action > i {
    width: 18px;
    flex: 0 0 18px;
    text-align: center;
}

.sf-nav__link:hover,
.sf-nav__parent:hover,
.sf-nav__child:hover,
.sf-nav__product-toggle:hover,
.sf-nav__action:hover {
    color: #1f65bd;
    background: #f2f6fb;
}

.sf-nav__link.active,
.sf-nav__group.active > .sf-nav__parent,
.sf-nav__child.active,
.sf-nav__product.active > .sf-nav__product-toggle,
.sf-nav__action.active {
    color: #1f65bd;
    font-weight: 600;
    background: #eaf3ff;
}

.sf-nav__parent span,
.sf-nav__link span,
.sf-nav__child span,
.sf-nav__product-toggle span,
.sf-nav__action span {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.sf-nav__chevron {
    margin-left: auto;
    font-size: 11px;
    transition: transform .18s ease;
}

.sf-nav__children {
    display: none;
    margin: 4px 0 4px 20px;
    padding-left: 10px;
    border-left: 1px solid #dde4ed;
}

.sf-nav__group.open .sf-nav__children {
    display: block;
}

.sf-nav__group.open > .sf-nav__parent .sf-nav__chevron {
    transform: rotate(180deg);
}

.sf-nav__child {
    min-height: 36px;
    padding: 7px 9px;
    font-size: 12px;
}

.sf-nav__product-toggle {
    min-height: 36px;
    padding: 7px 9px;
    font-size: 12px;
}

.sf-nav__actions {
    display: none;
    margin: 2px 0 5px 18px;
    padding-left: 8px;
    border-left: 1px solid #e5e9f0;
}

.sf-nav__product.open .sf-nav__actions {
    display: block;
}

.sf-nav__product.open > .sf-nav__product-toggle .sf-nav__chevron {
    transform: rotate(180deg);
}

.sf-nav__action {
    min-height: 32px;
    padding: 6px 8px;
    font-size: 11px;
}

.sf-account {
    flex: 0 0 auto;
    padding: 12px;
    background: #fbfcfe;
    border-top: 1px solid #e9edf2;
}

.sf-account__user {
    display: flex;
    min-width: 0;
    align-items: center;
    gap: 10px;
    padding: 7px;
    color: #273345;
    border-radius: 6px;
}

.sf-account__user:hover {
    background: #eef5ff;
}

.sf-account__avatar,
.sf-topbar__account img {
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
    object-fit: cover;
    border-radius: 50%;
}

.sf-account__meta {
    display: flex;
    min-width: 0;
    flex: 1 1 auto;
    flex-direction: column;
}

.sf-account__meta strong,
.sf-account__meta small {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.sf-account__meta small {
    color: #7a8698;
    font-size: 11px;
}

.sf-account__meta em {
    color: #198754;
    font-style: normal;
    font-weight: 600;
}

.sf-account__actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
    margin-top: 6px;
}

.sf-account__actions a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 7px 4px;
    color: #687386;
    font-size: 11px;
    background: #fff;
    border: 1px solid #e3e8ef;
    border-radius: 6px;
}

.sf-account__guest {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.sf-workspace {
    min-height: 100vh;
    margin-left: var(--sf-sidebar-width);
}

.sf-topbar {
    position: sticky;
    top: 0;
    z-index: 1020;
    display: flex;
    min-height: var(--sf-topbar-height);
    align-items: center;
    gap: 16px;
    padding: 10px 24px;
    background: rgba(255, 255, 255, .9);
    border-bottom: 1px solid #e8ecf1;
    box-shadow: 0 4px 16px rgba(42, 51, 70, .04);
    backdrop-filter: blur(12px);
}

.sf-page-title {
    display: flex;
    min-width: 0;
    flex: 1 1 auto;
    flex-direction: column;
}

.sf-page-title strong {
    overflow: hidden;
    color: #202938;
    font-size: 16px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.sf-page-title small {
    overflow: hidden;
    max-width: 520px;
    color: #8490a2;
    font-size: 11px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.sf-search {
    width: min(340px, 38vw);
    max-width: none;
}

.sf-topbar__account {
    display: flex;
    max-width: 160px;
    align-items: center;
    gap: 8px;
    color: #344054;
}

.sf-topbar__account span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.sf-sidebar-shade {
    display: none;
}

@media (max-width: 991.98px) {
    .sf-sidebar {
        width: min(280px, calc(100vw - 44px));
        transform: translateX(-100%);
        transition: transform .2s ease;
    }

    .sf-sidebar-close,
    .sf-sidebar-toggle {
        display: inline-flex;
    }

    .sf-workspace {
        margin-left: 0;
    }

    .sf-sidebar-shade {
        position: fixed;
        inset: 0;
        z-index: 1035;
        width: 100%;
        height: 100%;
        padding: 0;
        background: rgba(15, 23, 42, .42);
        border: 0;
        opacity: 0;
        pointer-events: none;
        transition: opacity .2s ease;
    }

    .sf-sidebar-open .sf-sidebar {
        transform: translateX(0);
    }

    .sf-sidebar-open .sf-sidebar-shade {
        display: block;
        opacity: 1;
        pointer-events: auto;
    }

    .sf-sidebar-open {
        overflow: hidden;
    }

    .sf-topbar {
        flex-wrap: wrap;
        gap: 10px;
        padding: 10px 14px;
    }

    .sf-search {
        order: 3;
        width: 100%;
    }

    .sf-topbar__account span {
        display: none;
    }
}

@media (max-width: 575.98px) {
    .sf-topbar__account {
        display: none;
    }

    .sf-workspace main.container {
        padding-right: 12px;
        padding-left: 12px;
    }
}

/* External API catalog */
.proxy-purchase__summary {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-bottom: 14px;
}

.proxy-purchase__summary > div {
    display: flex;
    min-height: 68px;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
    padding: 12px;
    border: 1px solid #e4e7ec;
    border-radius: 6px;
    background: #f8fafc;
}

.proxy-purchase small,
.proxy-purchase__form > label > span { color: #98a2b3; font-size: 11px; }
.proxy-purchase__summary strong { color: #344054; font-size: 14px; }

.proxy-purchase__form {
    display: grid;
    grid-template-columns: minmax(180px, 1fr) minmax(140px, .7fr) minmax(140px, .7fr) auto;
    align-items: end;
    gap: 14px;
    padding: 14px;
    border: 1px solid #e4e7ec;
    border-radius: 6px;
    background: #fff;
}

.proxy-purchase__form label,
.proxy-purchase__price { display: flex; min-width: 0; flex-direction: column; gap: 6px; }
.proxy-purchase__price strong { color: #344054; font-size: 15px; }
.proxy-purchase__price:last-of-type strong { color: #d92d20; }
.proxy-purchase__note { margin-top: 12px; color: #667085; font-size: 12px; }
.proxy-order-credentials { display: flex; flex-direction: column; gap: 3px; }
.proxy-order-credentials code { max-width: 180px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

@media (max-width: 760px) {
    .proxy-purchase__summary { grid-template-columns: 1fr; }
    .proxy-purchase__form { grid-template-columns: 1fr 1fr; }
    .proxy-purchase__form label { grid-column: 1 / -1; }
}

.upstream-catalog__toolbar {
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 14px;
}

.upstream-catalog__status {
    color: #667085;
    font-size: 13px;
}

.upstream-catalog__grid {
    display: grid;
    grid-template-columns: minmax(260px, .8fr) minmax(360px, 1.2fr);
    gap: 14px;
}

.upstream-column {
    min-width: 0;
    border: 1px solid #e4e7ec;
    border-radius: 6px;
    background: #fff;
    overflow: hidden;
}

.upstream-column__header {
    min-height: 58px;
    padding: 10px 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid #e4e7ec;
    background: #f8fafc;
}

.upstream-column__header h6 {
    margin: 0 auto 0 0;
    font-size: 14px;
    white-space: nowrap;
}

.upstream-search {
    width: min(240px, 52%);
    flex: 1 1 190px;
    max-width: 280px;
    height: 34px;
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 0 9px;
    border: 1px solid #d0d5dd;
    border-radius: 5px;
    background: #fff;
}

.upstream-search input {
    width: 100%;
    min-width: 0;
    border: 0;
    outline: 0;
    background: transparent;
    font-size: 13px;
}

.upstream-operator {
    width: 140px;
}

.upstream-sort {
    width: 112px;
    flex: 0 0 112px;
}

.upstream-search--secondary {
    width: min(220px, 48%);
    flex: 1 1 180px;
    max-width: 260px;
}

.upstream-column--secondary .upstream-search,
.upstream-column--secondary .upstream-operator,
.upstream-column--secondary .upstream-sort {
    height: 34px;
}

.upstream-list {
    height: min(62vh, 590px);
    min-height: 360px;
    overflow-y: auto;
}

.upstream-item {
    width: 100%;
    min-height: 58px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 9px 12px;
    border: 0;
    border-bottom: 1px solid #eef0f3;
    background: #fff;
    text-align: left;
    color: #344054;
}

.upstream-item:hover,
.upstream-item.active {
    background: #eef6ff;
}

.upstream-item.active {
    box-shadow: inset 3px 0 #1677ff;
}

.upstream-item__identity {
    min-width: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.upstream-item__icon {
    position: relative;
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
    display: grid;
    place-items: center;
    overflow: hidden;
    border: 1px solid #e4e7ec;
    border-radius: 6px;
    background: #f8fafc;
}

.upstream-item__icon img {
    position: absolute;
    inset: 3px;
    width: calc(100% - 6px);
    height: calc(100% - 6px);
    object-fit: contain;
    background: #fff;
}

.upstream-item__icon--country img {
    inset: 6px 2px;
    width: calc(100% - 4px);
    height: calc(100% - 12px);
    object-fit: cover;
    border-radius: 2px;
}

.upstream-item__icon-fallback {
    color: #475467;
    font-size: 11px;
    font-weight: 700;
    line-height: 1;
}

.upstream-item__icon--country .upstream-item__icon-fallback {
    color: #667085;
    font-size: 15px;
}

.upstream-item__text {
    min-width: 0;
    display: flex;
    flex-direction: column;
}

.upstream-item__text strong,
.upstream-item__text small {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.upstream-item__text strong { font-size: 14px; }
.upstream-item__text small { color: #98a2b3; }
.upstream-item__detail { flex: 0 0 auto; color: #1677ff; font-size: 13px; }

.upstream-list__empty {
    height: 100%;
    min-height: 160px;
    display: grid;
    place-items: center;
    padding: 24px;
    color: #98a2b3;
    text-align: center;
}

.upstream-checkout {
    min-height: 74px;
    display: grid;
    grid-template-columns: minmax(220px, 1fr) auto 120px auto;
    align-items: center;
    gap: 18px;
    margin-top: 12px;
    padding: 12px 14px;
    border: 1px solid #e4e7ec;
    border-radius: 6px;
    background: #f8fafc;
}

.upstream-checkout__selection,
.upstream-checkout__total { display: flex; min-width: 0; flex-direction: column; gap: 2px; }
.upstream-checkout__quantity { display: flex; flex-direction: column; gap: 3px; }
.upstream-checkout__selection small,
.upstream-checkout__total small,
.upstream-checkout__quantity > small { color: #98a2b3; font-size: 11px; }
.upstream-checkout__selection strong { overflow: hidden; color: #344054; font-size: 14px; text-overflow: ellipsis; white-space: nowrap; }
.upstream-checkout__selection span { color: #667085; font-size: 12px; }
.upstream-checkout__total { text-align: right; }
.upstream-checkout__total strong { color: #d92d20; font-size: 16px; }

.upstream-stepper {
    width: 126px;
    height: 36px;
    display: grid;
    grid-template-columns: 34px 1fr 34px;
    overflow: hidden;
    border: 1px solid #d0d5dd;
    border-radius: 5px;
    background: #fff;
}
.upstream-stepper button { border: 0; background: #f2f4f7; color: #475467; }
.upstream-stepper button:hover { background: #e4e7ec; }
.upstream-stepper input { width: 100%; min-width: 0; border: 0; border-right: 1px solid #d0d5dd; border-left: 1px solid #d0d5dd; outline: 0; text-align: center; }
.upstream-stepper input::-webkit-inner-spin-button { display: none; }

@media (max-width: 760px) {
    .upstream-checkout { grid-template-columns: minmax(0, 1fr) auto; gap: 12px; }
    .upstream-checkout__selection { grid-column: 1 / -1; }
    .upstream-checkout__total { text-align: left; }
}

@media (max-width: 900px) {
    .upstream-catalog__grid { grid-template-columns: 1fr; }
    .upstream-list { height: 420px; min-height: 280px; }
}

@media (max-width: 560px) {
    .upstream-column__header { flex-wrap: wrap; }
    .upstream-search { width: 100%; }
    .upstream-operator { width: 100%; }
    .upstream-sort { width: 100%; flex-basis: 100%; }
    .upstream-search--secondary { flex-basis: 100%; }
    .upstream-list { height: 360px; }
}

.sms-order-lines { display: flex; flex-direction: column; gap: 4px; }
.sms-order-lines code { width: fit-content; max-width: 220px; overflow: hidden; color: #175cd3; text-overflow: ellipsis; white-space: nowrap; }
.sms-order-lines small { color: #98a2b3; font-size: 10px; }
.sms-order-service,
.sms-order-amount { display: flex; flex-direction: column; gap: 2px; }
.sms-order-service strong { color: #344054; font-size: 13px; }
.sms-order-service small,
.sms-order-amount small { color: #98a2b3; font-size: 11px; }
.sms-detail-dialog { height: 100%; overflow-y: auto; padding: 16px; background: #f8fafc; }
.sms-detail-order { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 8px 16px; margin-bottom: 12px; padding: 11px 13px; border: 1px solid #e4e7ec; border-radius: 6px; background: #fff; color: #667085; font-size: 12px; }
.sms-detail-order strong { color: #344054; }
.sms-detail-list { display: flex; flex-direction: column; gap: 10px; }
.sms-detail-item { padding: 13px; border: 1px solid #e4e7ec; border-radius: 6px; background: #fff; }
.sms-detail-item__head { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; padding-bottom: 10px; border-bottom: 1px solid #eef0f3; }
.sms-detail-item__head > div { min-width: 0; display: flex; flex-direction: column; gap: 3px; }
.sms-detail-item__head strong { overflow: hidden; color: #101828; font-size: 15px; text-overflow: ellipsis; white-space: nowrap; }
.sms-detail-item__head small { color: #98a2b3; font-size: 11px; }
.sms-detail-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 10px 16px; margin: 12px 0; }
.sms-detail-grid > div { min-width: 0; }
.sms-detail-grid dt { margin-bottom: 3px; color: #98a2b3; font-size: 11px; font-weight: 400; }
.sms-detail-grid dd { margin: 0; overflow: hidden; color: #475467; font-size: 12px; text-overflow: ellipsis; white-space: nowrap; }
.sms-detail-code-block { padding: 10px 11px; border-radius: 5px; background: #f9fafb; }
.sms-detail-code-block > span { display: block; margin-bottom: 6px; color: #667085; font-size: 11px; }
.sms-detail-codes { display: flex; flex-wrap: wrap; gap: 7px; }
.sms-detail-codes > div { max-width: 100%; display: inline-flex; flex-wrap: wrap; align-items: center; gap: 7px; padding: 5px 8px; border: 1px solid #d0d5dd; border-radius: 4px; background: #fff; }
.sms-detail-codes code { color: #175cd3; font-size: 13px; }
.sms-detail-codes span { flex: 1 1 100%; overflow-wrap: anywhere; color: #475467; font-size: 11px; }
.sms-detail-codes small { color: #98a2b3; font-size: 10px; }
.sms-detail-actions { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 8px; margin-top: 12px; }
.sms-detail-actions .btn { min-height: 32px; display: inline-flex; align-items: center; gap: 6px; }

@media (max-width: 560px) {
    .sms-detail-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .sms-detail-actions .btn { flex: 1 1 100%; justify-content: center; }
}

.smm-catalog__toolbar {
    min-height: 42px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 12px;
}

.smm-catalog__status { color: #667085; font-size: 13px; }
.smm-catalog__filters { display: flex; align-items: center; justify-content: flex-end; gap: 8px; }
.smm-catalog__filters .form-select { width: 150px; height: 34px; font-size: 12px; }
.smm-catalog__filters .btn { height: 34px; display: inline-flex; align-items: center; gap: 6px; }

.smm-catalog__grid {
    display: grid;
    grid-template-columns: minmax(190px, 260px) minmax(0, 1fr);
    gap: 14px;
    align-items: start;
}

.smm-category-list {
    height: 560px;
    overflow-y: auto;
    border: 1px solid #e4e7ec;
    border-radius: 6px;
    background: #f8fafc;
}

.smm-category {
    width: 100%;
    min-height: 46px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 8px 12px;
    border: 0;
    border-bottom: 1px solid #eaecf0;
    background: transparent;
    color: #344054;
    text-align: left;
}

.smm-category span {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.smm-category small {
    min-width: 28px;
    padding: 2px 6px;
    border-radius: 8px;
    background: #e4e7ec;
    color: #475467;
    text-align: center;
}

.smm-category:hover,
.smm-category.active { background: #eef6ff; color: #175cd3; }
.smm-category.active { box-shadow: inset 3px 0 #1677ff; }

.smm-service-area {
    min-width: 0;
    height: 560px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid #e4e7ec;
    border-radius: 6px;
    background: #fff;
}
.smm-service-area__header {
    min-height: 52px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 14px;
    border-bottom: 1px solid #e4e7ec;
}
.smm-service-area__header h6 { margin: 0; font-size: 14px; }
.smm-service-list { min-height: 0; flex: 1; overflow-y: auto; }

.smm-service {
    min-height: 76px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 150px 140px 86px;
    align-items: center;
    gap: 18px;
    padding: 11px 14px;
    border-bottom: 1px solid #eef0f3;
}
.smm-service:hover { background: #f9fafb; }
.smm-service__identity { min-width: 0; }
.smm-service__identity > strong {
    display: block;
    overflow: hidden;
    color: #101828;
    font-size: 14px;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.smm-service__meta { display: flex; flex-wrap: wrap; gap: 5px; margin-top: 7px; }
.smm-tag { padding: 2px 6px; border-radius: 4px; background: #f2f4f7; color: #667085; font-size: 11px; }
.smm-tag.is-positive { background: #ecfdf3; color: #027a48; }
.smm-tag.is-warning { background: #fffaeb; color: #b54708; }
.smm-service__limits,
.smm-service__price { display: flex; flex-direction: column; gap: 3px; }
.smm-service__limits small,
.smm-service__price small { color: #98a2b3; font-size: 11px; }
.smm-service__limits strong { color: #475467; font-size: 13px; }
.smm-service__price { text-align: right; }
.smm-service__price strong { color: #1677ff; font-size: 14px; }
.smm-service__buy { width: 86px; height: 34px; display: inline-flex; align-items: center; justify-content: center; gap: 6px; }
.smm-service-list__empty { min-height: 280px; display: grid; place-items: center; padding: 24px; color: #98a2b3; text-align: center; }

.smm-purchase-layer { overflow: hidden; border-radius: 8px !important; background: #f4f6f8 !important; box-shadow: 0 22px 60px rgba(16, 24, 40, .24) !important; }
.smm-purchase-layer .layui-layer-title { height: 52px; padding: 0 54px 0 20px; border-bottom: 1px solid #dce1e8; background: #fff; color: #202631; font-size: 15px; font-weight: 600; line-height: 52px; }
.smm-purchase-layer .layui-layer-setwin { top: 19px; right: 18px; }
.smm-purchase-layer .layui-layer-content { max-height: calc(100vh - 110px); overflow-y: auto; background: #f4f6f8; }
.smm-order-form { color: #202631; }
.smm-order-summary { display: flex; align-items: center; gap: 14px; padding: 20px 22px; background: #2d333d; }
.smm-order-summary__icon { width: 44px; height: 44px; display: inline-flex; flex: 0 0 44px; align-items: center; justify-content: center; border: 1px solid rgba(255,255,255,.18); border-radius: 7px; background: rgba(255,255,255,.09); color: #fff; font-size: 19px; }
.smm-order-summary__body { min-width: 0; display: flex; flex: 1; flex-direction: column; gap: 4px; }
.smm-order-summary__body > small { color: #b8c0cc; font-size: 11px; }
.smm-order-summary__body > strong { overflow: hidden; color: #fff; font-size: 15px; line-height: 1.45; text-overflow: ellipsis; white-space: nowrap; }
.smm-order-summary__meta { display: flex; flex-wrap: wrap; gap: 6px; }
.smm-order-summary__meta span { padding: 2px 6px; border-radius: 4px; background: rgba(255,255,255,.1); color: #dce2ea; font-size: 11px; }
.smm-order-overview { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); border-bottom: 1px solid #dce1e8; background: #fff; }
.smm-order-overview > div { min-width: 0; display: flex; flex-direction: column; gap: 4px; padding: 14px 20px; border-right: 1px solid #e6e9ee; }
.smm-order-overview > div:last-child { border-right: 0; }
.smm-order-overview span { color: #788291; font-size: 11px; }
.smm-order-overview strong { overflow: hidden; color: #29313d; font-size: 13px; text-overflow: ellipsis; white-space: nowrap; }
.smm-order-overview > div:first-child strong { color: #1769d2; font-size: 15px; }
.smm-order-section-title { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 18px 22px 0; }
.smm-order-section-title span { color: #252c36; font-size: 14px; font-weight: 600; }
.smm-order-section-title small { color: #8a94a3; font-size: 11px; }
.smm-order-fields { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; padding: 14px 22px 22px; }
.smm-order-field { min-width: 0; display: flex; flex-direction: column; gap: 7px; margin: 0; }
.smm-order-field > span { color: #4c5665; font-size: 12px; font-weight: 500; }
.smm-order-field.is-required > span::after { margin-left: 3px; color: #e5484d; content: '*'; }
.smm-order-field .form-control,
.smm-order-field .form-select { width: 100%; min-height: 42px; border: 1px solid #cfd5de; border-radius: 6px; background-color: #fff; color: #202631; font-size: 13px; box-shadow: none; }
.smm-order-field .form-control:focus,
.smm-order-field .form-select:focus { border-color: #4d8ee8; box-shadow: 0 0 0 3px rgba(45, 117, 214, .12); }
.smm-order-field .form-control::placeholder { color: #a0a8b4; }
.smm-order-field textarea.form-control { min-height: 104px; padding-top: 10px; resize: vertical; }
.smm-order-field--full { grid-column: 1 / -1; }
.smm-order-footer { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 16px 22px; border-top: 1px solid #dce1e8; background: #fff; }
.smm-order-total { min-width: 0; display: flex; flex-direction: column; gap: 2px; }
.smm-order-total span { color: #788291; font-size: 11px; }
.smm-order-total strong { color: #e04444; font-size: 22px; font-variant-numeric: tabular-nums; line-height: 1.2; }
.smm-order-submit { width: 188px; min-height: 42px; display: inline-flex; flex: 0 0 188px; align-items: center; justify-content: center; gap: 8px; border-radius: 6px; background: #286fd1; box-shadow: 0 5px 14px rgba(40,111,209,.2); }
.smm-order-submit:hover { background: #1f61ba; }
.smm-order-submit:disabled { box-shadow: none; opacity: .65; }
.smm-order-target { display: inline-block; max-width: 260px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; vertical-align: middle; }

@media (max-width: 800px) {
    .smm-catalog__toolbar { align-items: flex-start; flex-direction: column; }
    .smm-catalog__filters { width: 100%; justify-content: flex-start; }
    .smm-catalog__filters .form-select { min-width: 0; flex: 1 1 140px; }
    .smm-catalog__grid { grid-template-columns: 1fr; }
    .smm-category-list,
    .smm-service-area { height: 420px; }
}

@media (max-width: 560px) {
    .smm-catalog__filters { flex-wrap: wrap; }
    .smm-catalog__filters .form-select { width: 100%; flex-basis: 100%; }
    .smm-service { grid-template-columns: minmax(0, 1fr) auto; gap: 10px; }
    .smm-service__identity { grid-column: 1 / -1; }
    .smm-service__limits { grid-column: 1; }
    .smm-service__price { grid-column: 2; }
    .smm-service__buy { grid-column: 1 / -1; width: 100%; }
    .smm-purchase-layer { border-radius: 0 !important; }
    .smm-purchase-layer .layui-layer-content { max-height: calc(100vh - 52px); }
    .smm-order-summary { padding: 17px 16px; }
    .smm-order-overview { grid-template-columns: 1fr 1fr; }
    .smm-order-overview > div { padding: 12px 16px; }
    .smm-order-overview > div:nth-child(2) { border-right: 0; }
    .smm-order-overview > div:last-child { grid-column: 1 / -1; border-top: 1px solid #e6e9ee; }
    .smm-order-section-title { padding: 16px 16px 0; }
    .smm-order-fields { grid-template-columns: 1fr; }
    .smm-order-field--full { grid-column: auto; }
    .smm-order-fields { gap: 12px; padding: 12px 16px 18px; }
    .smm-order-footer { position: sticky; bottom: 0; gap: 12px; padding: 13px 16px; z-index: 2; }
    .smm-order-total strong { font-size: 19px; }
    .smm-order-submit { width: 150px; flex-basis: 150px; }
}
.long-rental-toolbar{display:flex;align-items:center;justify-content:space-between;margin-bottom:16px;color:#667085;font-size:13px}.long-rental-toolbar .btn{display:inline-flex;align-items:center;gap:6px}.long-rental-layout{display:grid;grid-template-columns:minmax(0,1fr) 320px;gap:20px;align-items:start}.long-rental-catalog{min-width:0}.long-rental-filters{display:grid;grid-template-columns:200px minmax(220px,1fr) 140px;gap:12px;margin-bottom:14px}.long-rental-filters label{display:flex;flex-direction:column;gap:6px;color:#667085;font-size:12px}.long-rental-list{height:520px;overflow:auto;border:1px solid #e4e7ec}.long-rental-product{display:grid;width:100%;grid-template-columns:minmax(0,1fr) 90px 130px;align-items:center;gap:14px;padding:13px 16px;border:0;border-bottom:1px solid #eef0f3;background:#fff;text-align:left}.long-rental-product:hover{background:#f8fafc}.long-rental-product.active{background:#eff6ff;box-shadow:inset 3px 0 #2563eb}.long-rental-product>span{display:flex;min-width:0;flex-direction:column;gap:3px}.long-rental-product strong{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.long-rental-product small{color:#98a2b3;font-size:11px}.long-rental-product__stock,.long-rental-product__price{text-align:right}.long-rental-product__price b{color:#dc2626}.long-rental-empty{display:flex;height:100%;min-height:180px;align-items:center;justify-content:center;color:#98a2b3}.long-rental-checkout{position:sticky;top:92px;padding:18px;border-top:4px solid #b9c8ff;background:#f4f6ff}.long-rental-checkout h6{margin:0 0 12px;color:#1d4ed8}.long-rental-checkout dl{margin:0}.long-rental-checkout dl>div{display:flex;align-items:center;justify-content:space-between;gap:12px;padding:9px 0;border-bottom:1px solid #dfe5f0}.long-rental-checkout dt{font-weight:400;color:#667085}.long-rental-checkout dd{max-width:190px;margin:0;text-align:right}.long-rental-checkout dd .form-control,.long-rental-checkout dd .form-select{width:190px}.long-rental-total{display:flex;align-items:center;justify-content:space-between;padding:18px 0}.long-rental-total strong{color:#ef4444;font-size:22px}.long-rental-checkout>small{display:block;margin-top:10px;color:#667085;line-height:1.6}
@media(max-width:992px){.long-rental-layout{grid-template-columns:1fr}.long-rental-checkout{position:static}.long-rental-filters{grid-template-columns:1fr 1fr}.long-rental-filters label:last-child{grid-column:span 2}.long-rental-list{height:440px}}
@media(max-width:576px){.long-rental-filters{grid-template-columns:1fr}.long-rental-filters label:last-child{grid-column:auto}.long-rental-product{grid-template-columns:minmax(0,1fr) 70px 105px;padding:11px 10px}.long-rental-checkout dd .form-control,.long-rental-checkout dd .form-select{width:160px}}
.geonode-store__toolbar{display:flex;align-items:center;justify-content:space-between;gap:16px;margin-bottom:16px}.geonode-store__toolbar>div{display:flex;min-width:0;flex-direction:column;gap:3px}.geonode-store__toolbar strong{color:#101828;font-size:15px}.geonode-store__toolbar small{color:#667085;font-size:12px}.geonode-store__layout{display:grid;grid-template-columns:minmax(0,1fr) 310px;gap:20px;align-items:start}.geonode-products{height:500px;overflow:auto;border:1px solid #e4e7ec;background:#fff}.geonode-product{display:grid;width:100%;grid-template-columns:minmax(220px,1fr) 90px 70px 120px;align-items:center;gap:14px;padding:15px 16px;border:0;border-bottom:1px solid #eef0f3;background:#fff;text-align:left}.geonode-product:hover{background:#f8fafc}.geonode-product.active{background:#eff6ff;box-shadow:inset 3px 0 #2563eb}.geonode-product>span{display:flex;min-width:0;flex-direction:column;gap:3px}.geonode-product__main strong{overflow:hidden;color:#101828;text-overflow:ellipsis;white-space:nowrap}.geonode-product small{color:#98a2b3;font-size:11px}.geonode-product b{color:#344054;font-size:14px}.geonode-product__price{text-align:right}.geonode-product__price b{color:#1677ff}.geonode-empty{display:grid;height:100%;min-height:200px;place-items:center;padding:20px;color:#98a2b3}.geonode-checkout{position:sticky;top:92px;padding:18px;border-top:4px solid #8fb4ff;background:#f4f7ff}.geonode-checkout h6{margin:0 0 12px;color:#1d4ed8}.geonode-checkout dl{margin:0}.geonode-checkout dl>div{display:flex;align-items:flex-start;justify-content:space-between;gap:12px;padding:9px 0;border-bottom:1px solid #dfe5f0}.geonode-checkout dt{font-weight:400;color:#667085}.geonode-checkout dd{max-width:170px;margin:0;color:#344054;text-align:right;overflow-wrap:anywhere}.geonode-checkout__total{display:flex;align-items:center;justify-content:space-between;padding:18px 0}.geonode-checkout__total strong{color:#ef4444;font-size:22px}.geonode-checkout>small{display:block;margin-top:10px;color:#667085;line-height:1.6}
@media(max-width:900px){.geonode-store__layout{grid-template-columns:1fr}.geonode-checkout{position:static}.geonode-products{height:420px}}
@media(max-width:600px){.geonode-product{grid-template-columns:minmax(0,1fr) 70px 90px;padding:12px 10px}.geonode-product>span:nth-child(3){display:none}.geonode-checkout dd{max-width:150px}}
.sms-record-transaction,.sms-record-phone{font-variant-numeric:tabular-nums;color:#172033}.sms-record-country,.sms-record-service{display:flex;align-items:center;gap:9px;min-width:150px}.sms-record-country>span,.sms-record-service>span{display:flex;min-width:0;flex-direction:column}.sms-record-country strong,.sms-record-service strong{overflow:hidden;text-overflow:ellipsis;white-space:nowrap;font-weight:500}.sms-record-country small,.sms-record-service small{color:#98a2b3;font-size:11px}.sms-record-flag{width:24px;height:18px;flex:0 0 auto;object-fit:cover;border:1px solid #e5e7eb}.sms-record-service-icon{width:24px;height:24px;flex:0 0 auto;object-fit:contain}.sms-record-icon-fallback{display:inline-flex;width:24px;height:24px;flex:0 0 auto;align-items:center;justify-content:center;color:#98a2b3}.sms-record-code{min-width:130px}.sms-record-code__value{display:flex;flex-wrap:wrap;gap:5px}.sms-record-code__value code{padding:2px 6px;border-radius:3px;background:#eef4ff;color:#1d4ed8;font-size:13px}.sms-record-code__actions{display:flex;flex-direction:column;align-items:flex-start;gap:4px;margin-top:5px}.sms-record-code__actions button{padding:0;border:0;background:transparent;color:#b7791f;font-size:11px}.sms-record-code__actions button:hover{color:#8a5a14}.sms-record-price{color:#172033;white-space:nowrap}.sms-record-date{white-space:nowrap;font-variant-numeric:tabular-nums}.sms-record-detail{padding:18px}.sms-record-detail dl{margin:0 0 18px}.sms-record-detail dl>div{display:flex;justify-content:space-between;gap:18px;padding:9px 0;border-bottom:1px solid #edf0f4}.sms-record-detail dt{font-weight:400;color:#667085}.sms-record-detail dd{margin:0;text-align:right}.sms-record-detail__messages{display:flex;flex-direction:column;gap:8px}.sms-record-detail__messages>div{display:grid;grid-template-columns:90px 1fr auto;gap:10px;padding:9px;background:#f8fafc}.sms-record-detail__messages small{color:#98a2b3}
