/* 二次元风格（无毛玻璃、无动画、注重可读与性能） */

:root {
    --acg-bg-overlay: rgba(10, 12, 28, 0.45);
    --acg-primary: #d93673;
    --acg-secondary: #ff9d45;
    --acg-danger: #d9365b;
    --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(217, 54, 115, .12);
    color: #c52d65;
    border: 1px solid rgba(217, 54, 115, .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(255, 157, 69, .14);
    color: #b85a00;
    border: 1px solid rgba(255, 157, 69, .28);
}

.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,
    .optional-card:hover {
        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, #f03a9a, #ff9d45);
    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(217, 54, 115, .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: #c52d65;
}

.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(217, 54, 115, .3);
}

.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(217, 54, 115, .24);
}

@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(217, 54, 115, .24);
}

.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;
}

.optional-card {
    display: 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;
}

.optional-card.is-primary {
    color: #fff;
    background: linear-gradient(90deg, #f03a9a, #ff9d45);
    border-color: transparent;
}

.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(217, 54, 115, .15), 0 4px 12px rgba(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(217, 54, 115, .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(217, 54, 115, .32);
}

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

.order-query-form .btn-primary:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(217, 54, 115, .28);
}

/* 响应式调整 */
@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(217, 54, 115, .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(217, 54, 115, .28);
}

.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(217, 54, 115, .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(217, 54, 115, .25);
}

.copy-all-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(217, 54, 115, .32);
}

/* 响应式调整 */
@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;
}

/* NOVA storefront theme */
:root {
    --otaor-bg: #fffaf9;
    --otaor-panel: #ffffff;
    --otaor-soft: #fff3f4;
    --otaor-overlay: rgba(255, 252, 251, .88);
    --otaor-text: #1d1d1f;
    --otaor-text-secondary: #424245;
    --otaor-muted: #86868b;
    --otaor-border: rgba(0, 0, 0, .08);
    --otaor-border-strong: rgba(0, 0, 0, .16);
    --otaor-accent: #d93673;
    --otaor-accent-hover: #c52d65;
    --otaor-accent-soft: rgba(217, 54, 115, .1);
    --otaor-brand-coral: #ff6070;
    --otaor-brand-orange: #ff9d45;
    --otaor-brand-gradient: linear-gradient(135deg, #f03a9a 0%, #ff6070 52%, #ff9d45 100%);
    --otaor-danger: #d70015;
    --otaor-success: #248a3d;
    --otaor-shadow: 0 2px 10px rgba(0, 0, 0, .04);
    --otaor-shadow-hover: 0 14px 36px rgba(147, 30, 73, .14);
    --acg-primary: var(--otaor-accent);
    --acg-secondary: var(--otaor-brand-orange);
    --acg-danger: var(--otaor-danger);
    --acg-text-strong: var(--otaor-text);
    --acg-text-muted: var(--otaor-muted);
    --acg-card-bg: var(--otaor-panel);
    --acg-border: var(--otaor-border);
}

html.dark {
    color-scheme: dark;
    --otaor-bg: #000000;
    --otaor-panel: #1c1c1e;
    --otaor-soft: #2c2c2e;
    --otaor-overlay: rgba(28, 28, 30, .88);
    --otaor-text: #f5f5f7;
    --otaor-text-secondary: #d2d2d7;
    --otaor-muted: #8e8e93;
    --otaor-border: rgba(255, 255, 255, .1);
    --otaor-border-strong: rgba(255, 255, 255, .2);
    --otaor-accent: #f04a7f;
    --otaor-accent-hover: #ff7397;
    --otaor-accent-soft: rgba(240, 74, 127, .16);
    --otaor-danger: #ff453a;
    --otaor-success: #30d158;
    --otaor-shadow: 0 1px 0 rgba(255, 255, 255, .04);
    --otaor-shadow-hover: 0 16px 38px rgba(0, 0, 0, .55);
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 96px;
    font-size: 16px;
    scrollbar-width: thin;
    scrollbar-color: rgba(134, 134, 139, .45) transparent;
}

html::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

html::-webkit-scrollbar-track {
    background: transparent;
}

html::-webkit-scrollbar-thumb {
    background: rgba(134, 134, 139, .45);
    border-radius: 8px;
}

body.otaor-body {
    min-height: 100vh;
    margin: 0;
    color: var(--otaor-text);
    background: var(--otaor-bg) !important;
    background-image: none !important;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
    font-size: 14px;
    line-height: 1.5;
    letter-spacing: 0;
    transition: color .2s ease, background-color .2s ease;
}

.otaor-body *,
.otaor-body *::before,
.otaor-body *::after {
    box-sizing: border-box;
    letter-spacing: 0;
}

.otaor-body a {
    color: inherit;
    text-decoration: none;
}

.otaor-body button,
.otaor-body input {
    font: inherit;
}

.otaor-body svg.lucide {
    width: 1em;
    height: 1em;
    display: block;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.otaor-body svg.lucide::before,
.otaor-body svg.lucide::after {
    content: none !important;
}

/* The project ships one duotone icon font; map regular icon markup to it. */
.otaor-body .fa-regular {
    position: relative;
    font-family: "_mcy_font_d";
    font-weight: 400;
}

.otaor-body .fa-regular::before {
    position: absolute;
    color: var(--fa-primary-color, inherit);
    opacity: var(--fa-primary-opacity, 1);
}

.otaor-body .fa-regular::after {
    content: var(--fa--fa);
    color: var(--fa-secondary-color, inherit);
    opacity: var(--fa-secondary-opacity, .4);
}

.otaor-container {
    width: min(calc(100% - 32px), 1714px);
    margin-inline: auto;
}

#pjax-container {
    min-height: calc(100vh - 226px);
}

/* Navigation */
.otaor-navbar {
    position: fixed;
    inset: 0 0 auto;
    z-index: 1050;
    min-height: 80px;
    background: var(--otaor-overlay);
    border-bottom: 1px solid var(--otaor-border);
    -webkit-backdrop-filter: blur(18px) saturate(160%);
    backdrop-filter: blur(18px) saturate(160%);
}

.otaor-navbar-inner {
    height: 80px;
    display: grid;
    grid-template-columns: minmax(190px, 1fr) auto minmax(190px, 1fr);
    align-items: center;
    gap: 24px;
}

.otaor-brand {
    display: inline-flex;
    align-items: center;
    min-width: 0;
    width: fit-content;
    max-width: 100%;
    gap: 12px;
}

.otaor-brand-mark {
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
    object-fit: contain;
}

.otaor-brand-logo {
    width: auto;
    height: 48px;
    display: block;
    object-fit: contain;
}

.otaor-brand-name {
    display: block;
    max-width: 260px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    color: var(--otaor-text);
    font-size: 27px;
    font-weight: 800;
    line-height: 1;
}

.otaor-desktop-nav,
.otaor-navbar-actions {
    display: flex;
    align-items: center;
}

.otaor-desktop-nav {
    gap: 4px;
}

.otaor-navbar-actions {
    justify-content: flex-end;
    gap: 8px;
}

.otaor-nav-link,
.otaor-icon-button,
.otaor-locale {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 8px 12px;
    color: var(--otaor-muted);
    background: transparent;
    border: 1px solid transparent;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 500;
    transition: color .2s ease, border-color .2s ease, background-color .2s ease;
}

.otaor-nav-link:hover,
.otaor-icon-button:hover {
    color: var(--otaor-text);
    border-color: var(--otaor-border);
    background: var(--otaor-soft);
}

.otaor-nav-link.is-active {
    color: var(--otaor-accent);
    background: var(--otaor-accent-soft);
}

.otaor-nav-link i,
.otaor-icon-button i,
.otaor-locale i,
.otaor-nav-link svg,
.otaor-icon-button svg,
.otaor-locale svg {
    width: 18px;
    font-size: 17px;
    text-align: center;
}

button.otaor-icon-button {
    width: 44px;
    padding: 0;
    cursor: pointer;
}

.otaor-body .theme-icon-light,
.dark .otaor-body .theme-icon-dark {
    display: none !important;
}

.dark .otaor-body .theme-icon-light {
    display: inline-block !important;
}

.otaor-locale {
    padding-inline: 10px;
    color: var(--otaor-text-secondary);
    background: transparent;
    border: 0;
    cursor: pointer;
}

.otaor-language {
    position: relative;
}

.otaor-language-menu {
    position: absolute;
    z-index: 120;
    top: calc(100% + 10px);
    right: 0;
    width: 184px;
    display: grid;
    gap: 4px;
    padding: 10px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-8px);
    background: var(--otaor-overlay);
    border: 1px solid var(--otaor-border);
    border-radius: 8px;
    box-shadow: var(--otaor-shadow-hover);
    transition: opacity .2s ease, visibility .2s ease, transform .2s ease;
}

.otaor-language.is-open .otaor-language-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

.otaor-language-menu > strong {
    padding: 6px 9px;
    color: var(--otaor-muted);
    font-size: 11px;
    font-weight: 650;
}

.otaor-language-menu button {
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 8px 9px;
    color: var(--otaor-text-secondary);
    text-align: left;
    background: transparent;
    border: 0;
    border-radius: 6px;
    cursor: pointer;
    transition: color .2s ease, background-color .2s ease;
}

.otaor-language-menu button:hover,
.otaor-language-menu button.is-active {
    color: var(--otaor-accent);
    background: var(--otaor-accent-soft);
}

.otaor-language-menu button svg {
    width: 16px;
    height: 16px;
    opacity: 0;
}

.otaor-language-menu button.is-active svg {
    opacity: 1;
}

.otaor-user-menu .dropdown-toggle::after {
    display: none;
}

.otaor-user-avatar {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    object-fit: cover;
}

.otaor-dropdown {
    min-width: 190px;
    padding: 8px;
    color: var(--otaor-text);
    background: var(--otaor-panel);
    border-color: var(--otaor-border);
    border-radius: 8px;
    box-shadow: var(--otaor-shadow-hover);
}

.otaor-dropdown .dropdown-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 10px;
    color: var(--otaor-text-secondary);
    border-radius: 6px;
}

.otaor-dropdown .dropdown-item:hover {
    color: var(--otaor-text);
    background: var(--otaor-soft);
}

.otaor-mobile-menu {
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    padding: 12px 16px 16px;
    background: var(--otaor-overlay);
    border-bottom: 1px solid var(--otaor-border);
    -webkit-backdrop-filter: blur(18px);
    backdrop-filter: blur(18px);
}

.otaor-mobile-search {
    height: 44px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding-inline: 14px;
    color: var(--otaor-muted);
    background: var(--otaor-soft);
    border: 1px solid var(--otaor-border);
    border-radius: 8px;
}

.otaor-mobile-search input {
    min-width: 0;
    flex: 1;
    color: var(--otaor-text);
    background: transparent;
    border: 0;
    outline: 0;
}

.otaor-mobile-menu-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin-top: 10px;
}

.otaor-mobile-menu-links a {
    min-height: 44px;
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 10px 12px;
    color: var(--otaor-text-secondary);
    background: var(--otaor-panel);
    border: 1px solid var(--otaor-border);
    border-radius: 8px;
}

/* Home showcase */
.otaor-featured {
    min-height: 100vh;
    padding: 96px 0 56px;
}

.platform-showcase {
    width: min(100%, 1024px);
    display: grid;
    grid-template-columns: 200px minmax(0, 1fr) 200px;
    align-items: stretch;
    gap: 16px;
    margin: 0 auto 32px;
}

.platform-card {
    position: relative;
    min-width: 0;
    min-height: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    isolation: isolate;
    padding: 22px 16px 20px;
    text-align: center;
    background: linear-gradient(180deg, rgba(255, 255, 255, .96), rgba(248, 250, 252, .98));
    border: 1px solid rgba(217, 54, 115, .11);
    border-radius: 18px;
    box-shadow: 0 1px 2px rgba(15, 23, 42, .04), 0 8px 24px rgba(217, 54, 115, .06);
    transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

.platform-card::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: radial-gradient(120% 80% at 50% -10%, rgba(255, 96, 112, .16), transparent 55%);
    pointer-events: none;
}

.platform-card-sheen {
    position: absolute;
    top: -40%;
    left: -30%;
    z-index: 0;
    width: 70%;
    height: 90%;
    background: linear-gradient(125deg, rgba(255, 255, 255, .75), transparent 60%);
    opacity: .55;
    transform: rotate(12deg);
    pointer-events: none;
}

.platform-card-icon {
    position: relative;
    z-index: 1;
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    margin-bottom: 14px;
    background: linear-gradient(145deg, rgba(240, 58, 154, .12), rgba(255, 157, 69, .07));
    border: 1px solid rgba(217, 54, 115, .16);
    border-radius: 16px;
}

.platform-card-icon img {
    width: 24px;
    height: 34px;
    object-fit: contain;
}

.platform-card-brand,
.platform-card strong,
.platform-card small,
.platform-card-cta {
    position: relative;
    z-index: 1;
}

.platform-card-brand {
    margin-bottom: 3px;
    color: var(--otaor-accent);
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
}

.platform-card strong {
    margin-bottom: 6px;
    color: #1d1d1f;
    font-size: 15px;
    font-weight: 650;
    line-height: 1.25;
}

.platform-card small {
    min-height: 44px;
    margin-bottom: 15px;
    color: #86868b;
    font-size: 11px;
    line-height: 1.55;
}

.platform-card-cta {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 6px 12px;
    color: var(--otaor-accent);
    background: var(--otaor-accent-soft);
    border: 1px solid rgba(217, 54, 115, .14);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
}

.platform-card-cta i {
    font-size: 10px;
}

.platform-card-cta svg {
    width: 10px;
    height: 10px;
}

.showcase-banner {
    position: relative;
    display: block;
    overflow: hidden;
    aspect-ratio: 7 / 4;
    background: var(--otaor-panel);
    border: 1px solid var(--otaor-border);
    border-radius: 16px;
}

.showcase-banner img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.showcase-banner-mobile,
.platform-showcase-mobile {
    display: none;
}

.otaor-notice {
    width: min(100%, 1024px);
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin: -8px auto 24px;
    padding: 12px 14px;
    color: var(--otaor-text-secondary);
    background: var(--otaor-panel);
    border: 1px solid var(--otaor-border);
    border-radius: 8px;
}

.otaor-notice > i,
.otaor-notice > svg {
    flex: 0 0 auto;
    align-self: center;
    margin-top: 0;
    color: var(--otaor-accent);
}

.otaor-notice p:last-child {
    margin-bottom: 0;
}

.otaor-catalog {
    scroll-margin-top: 90px;
}

.item-list {
    display: grid !important;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 16px;
    margin: 0 !important;
}

.product-card {
    min-width: 0;
    overflow: hidden;
    background: var(--otaor-panel);
    border: 1px solid var(--otaor-border);
    border-radius: 8px;
    box-shadow: var(--otaor-shadow);
    animation: otaor-card-in .45s ease both;
    transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.product-card-link {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-image-wrap {
    position: relative;
    display: block;
    overflow: hidden;
    flex: 0 0 auto;
    aspect-ratio: 1;
    background: var(--otaor-soft);
}

.product-image-wrap img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform .45s ease;
}

.product-badge,
.product-soldout {
    position: absolute;
    top: 8px;
    left: 8px;
    z-index: 1;
    padding: 3px 7px;
    color: #fff;
    background: rgba(29, 29, 31, .68);
    border-radius: 5px;
    font-size: 11px;
    line-height: 1.4;
}

.product-soldout {
    left: auto;
    right: 8px;
    background: rgba(215, 0, 21, .86);
}

.product-card-body {
    min-height: 116px;
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 11px 12px 12px;
}

.product-name {
    min-height: 40px;
    display: -webkit-box;
    overflow: hidden;
    color: var(--otaor-text);
    font-size: 14px;
    font-weight: 550;
    line-height: 1.42;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.product-purchase-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 8px;
    margin-top: auto;
}

.product-price {
    min-width: 0;
    overflow-wrap: anywhere;
    color: var(--otaor-accent);
    font-size: 18px;
    font-weight: 750;
    line-height: 1.25;
}

.product-cart {
    width: 32px;
    height: 32px;
    display: grid;
    place-items: center;
    flex: 0 0 32px;
    color: var(--otaor-muted);
    border: 1px solid var(--otaor-border);
    border-radius: 50%;
    transition: color .2s ease, border-color .2s ease, background-color .2s ease;
}

.product-meta {
    display: flex;
    align-items: center;
    gap: 6px;
    overflow: hidden;
    margin-top: 6px;
    color: var(--otaor-muted);
    font-size: 12px;
    white-space: nowrap;
}

.product-meta span:last-child {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
}

.product-card.is-sold-out {
    opacity: .62;
}

.product-card.is-sold-out .product-image-wrap img {
    filter: grayscale(1);
}

.product-skeleton {
    aspect-ratio: .74;
    overflow: hidden;
    background: linear-gradient(100deg, var(--otaor-panel) 20%, var(--otaor-soft) 40%, var(--otaor-panel) 60%);
    background-size: 200% 100%;
    border: 1px solid var(--otaor-border);
    border-radius: 8px;
    animation: otaor-shimmer 1.2s infinite linear;
}

.catalog-empty {
    grid-column: 1 / -1;
    min-height: 260px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: var(--otaor-muted);
    background: var(--otaor-panel);
    border: 1px solid var(--otaor-border);
    border-radius: 8px;
}

.catalog-empty i {
    font-size: 30px;
}

.catalog-empty svg {
    width: 30px;
    height: 30px;
}

/* Product detail */
.otaor-detail-page {
    width: min(calc(100% - 32px), 1714px);
    padding: 96px 0 56px;
}

.product-detail-layout {
    display: grid;
    grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
    align-items: start;
    gap: 24px;
}

.product-detail-media {
    width: 100%;
    min-width: 0;
    align-self: start;
    aspect-ratio: 1;
    padding: 12px;
    background: var(--otaor-panel);
    border: 1px solid var(--otaor-border);
    border-radius: 8px;
}

.product-detail-media .item-cover {
    position: static;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: 1px solid var(--otaor-border);
    border-radius: 6px;
}

.product-purchase {
    min-width: 0;
    height: 100%;
    min-height: 0;
    display: flex;
    flex-direction: column;
    padding-top: 4px;
}

.product-title-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
}

.product-title-row h1 {
    margin: 0;
    color: var(--otaor-text);
    font-size: 28px;
    font-weight: 700;
    line-height: 1.28;
}

.product-title-row p {
    margin: 0;
    color: var(--otaor-muted);
    font-size: 14px;
}

.product-price-panel {
    margin-top: 20px;
    padding: 16px 18px;
    background: linear-gradient(135deg, var(--otaor-accent-soft), rgba(255, 157, 69, .05));
    border: 1px solid rgba(217, 54, 115, .14);
    border-radius: 8px;
}

.product-price-panel > span {
    display: block;
    margin-bottom: 5px;
    color: var(--otaor-muted);
    font-size: 12px;
}

.product-price-panel .price {
    color: var(--otaor-text);
    font-size: 38px;
    font-weight: 650;
    line-height: 1.15;
}

.product-price-panel .price .unit {
    margin-right: 3px;
    color: inherit;
    font-size: 24px;
}

.product-facts {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 14px;
}

.product-facts > span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 5px 9px;
    color: var(--otaor-muted);
    background: var(--otaor-soft);
    border-radius: 999px;
    font-size: 12px;
}

.product-facts b {
    margin-left: 0;
    color: var(--otaor-text-secondary);
    font-weight: 600;
}

.product-facts small {
    color: var(--otaor-muted);
    font-size: inherit;
}

.product-options {
    display: flex !important;
    flex-direction: column;
    gap: 18px !important;
    margin-top: 22px;
    flex: 1;
}

.option-section h2,
.cash-pay h2,
.otaor-field label {
    display: block;
    margin: 0 0 9px;
    color: var(--otaor-text-secondary);
    font-size: 13px;
    font-weight: 650;
}

.sku-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    overflow: visible;
    padding: 0;
}

.sku {
    min-height: 40px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 13px;
    color: var(--otaor-text-secondary);
    background: var(--otaor-panel);
    border: 1px solid var(--otaor-border-strong);
    border-radius: 8px;
    box-shadow: none;
    font-size: 13px;
    transition: color .2s ease, border-color .2s ease, background-color .2s ease;
}

.sku.is-primary {
    color: var(--otaor-accent);
    background: var(--otaor-accent-soft);
    border-color: var(--otaor-accent);
    box-shadow: none;
}

.sku .badge-money,
.sku .badge-moeny {
    display: none;
}

.otaor-field .form-control,
.order-query-form .form-control {
    height: 46px;
    padding: 10px 13px;
    color: var(--otaor-text);
    background: var(--otaor-panel);
    border: 1px solid var(--otaor-border-strong);
    border-radius: 8px;
    box-shadow: none;
}

.otaor-field .form-control:focus,
.order-query-form .form-control:focus {
    border-color: var(--otaor-accent);
    box-shadow: 0 0 0 3px var(--otaor-accent-soft);
}

.optional-card {
    width: 100%;
    min-height: 44px;
    padding: 10px 13px;
    color: var(--otaor-text-secondary);
    text-align: left;
    background: var(--otaor-panel);
    border: 1px dashed var(--otaor-border-strong);
    border-radius: 8px;
    box-shadow: none;
}

.input-group.qty-group {
    width: 150px;
    height: 42px;
    display: grid !important;
    grid-template-columns: 42px 66px 42px;
    align-items: stretch;
    gap: 0;
    padding: 0;
    background: transparent;
    border: 0;
    border-radius: 8px;
    box-shadow: none;
}

.input-group.qty-group > button,
.input-group.qty-group > input[type="number"] {
    width: auto !important;
    height: 42px;
    min-width: 0;
    color: var(--otaor-text);
    background: var(--otaor-panel);
    border: 1px solid var(--otaor-border-strong);
}

.input-group.qty-group > button {
    display: grid;
    place-items: center;
    padding: 0;
    color: var(--otaor-text);
    background: var(--otaor-panel);
    border: 1px solid var(--otaor-border-strong);
    box-shadow: none;
    cursor: pointer;
}

.qty-group .change-num-sub {
    border-radius: 8px 0 0 8px;
}

.qty-group .change-num-add {
    border-radius: 0 8px 8px 0;
}

.input-group.qty-group > input[type="number"] {
    flex: none;
    padding: 0;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    background: var(--otaor-panel);
    border-inline: 0;
    border-radius: 0;
    box-shadow: none !important;
}

.captcha-group {
    width: min(100%, 320px);
    display: grid;
    grid-template-columns: minmax(0, 1fr) 112px;
    align-items: stretch;
    gap: 0;
    padding: 0;
}

.captcha-group > .captcha-input {
    width: 100% !important;
    min-width: 0 !important;
    height: 46px;
    margin: 0;
    padding: 10px 13px;
    border: 1px solid var(--otaor-border-strong);
    border-radius: 8px 0 0 8px;
    box-shadow: none !important;
}

.captcha-group .captcha-img {
    width: 112px;
    height: 46px;
    object-fit: cover;
    background: var(--otaor-panel);
    border: 1px solid var(--otaor-border-strong);
    border-left: 0;
    border-radius: 0 8px 8px 0;
    cursor: pointer;
}

.cash-pay {
    padding: 16px;
    background: var(--otaor-soft);
    border: 1px solid var(--otaor-border);
    border-radius: 8px;
    box-shadow: none;
}

.cash-pay.is-open {
    animation: otaor-card-in .35s ease both;
}

.otaor-checkout-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: auto;
    padding-top: 8px;
}

.otaor-payment-trigger {
    min-height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 12px 18px;
    border: 1px solid var(--otaor-border-strong);
    border-radius: 8px;
    cursor: pointer;
    font-weight: 650;
    transition: color .2s ease, background-color .2s ease, border-color .2s ease,
                transform .2s ease, box-shadow .2s ease;
}

.otaor-payment-trigger.is-secondary {
    color: var(--otaor-text);
    background: var(--otaor-panel);
}

.otaor-payment-trigger.is-primary {
    color: #fff;
    background: var(--otaor-accent);
    border-color: var(--otaor-accent);
}

.otaor-payment-trigger svg {
    width: 17px;
    height: 17px;
}

.cash-pay .pay-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px;
}

.cash-pay .pay-list .pay,
.pay-list .pay {
    min-height: 50px;
    display: flex;
    align-items: center;
    gap: 9px;
    margin: 0;
    padding: 9px 12px;
    color: var(--otaor-text-secondary);
    background: var(--otaor-panel);
    border: 1px solid var(--otaor-border);
    border-radius: 8px;
    box-shadow: none;
    cursor: pointer;
}

.pay-list .pay img {
    width: 28px;
    height: 28px;
    object-fit: contain;
}

.pay-list .pay span {
    color: inherit;
    font-size: 13px;
}

.product-description {
    margin-top: 36px;
    overflow: hidden;
    background: var(--otaor-panel);
    border: 1px solid var(--otaor-border);
    border-radius: 8px;
}

.product-description > h2 {
    display: flex;
    align-items: center;
    gap: 9px;
    margin: 0;
    padding: 15px 18px;
    color: var(--otaor-text);
    border-bottom: 1px solid var(--otaor-border);
    font-size: 16px;
    font-weight: 650;
}

.product-description-body {
    padding: 20px;
    color: var(--otaor-text-secondary);
    line-height: 1.7;
}

.product-description-body img {
    max-width: 100%;
    height: auto;
}

.back-to-products {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 18px;
    padding: 8px 12px;
    color: var(--otaor-muted) !important;
    border-radius: 8px;
}

.back-to-products:hover {
    color: var(--otaor-accent) !important;
    background: var(--otaor-accent-soft);
}

.otaor-legal-page {
    width: min(calc(100% - 32px), 900px);
}

.otaor-legal-article {
    display: grid;
    gap: 0;
    background: var(--otaor-panel);
    border: 1px solid var(--otaor-border);
    border-radius: 8px;
    box-shadow: var(--otaor-shadow);
}

.otaor-legal-article section {
    padding: 24px 26px;
}

.otaor-legal-article section + section {
    border-top: 1px solid var(--otaor-border);
}

.otaor-legal-article h2 {
    margin: 0 0 8px;
    color: var(--otaor-text);
    font-size: 17px;
    font-weight: 700;
}

.otaor-legal-article p {
    margin: 0;
    color: var(--otaor-text-secondary);
    font-size: 14px;
    line-height: 1.8;
}

/* Order query */
.otaor-query-page {
    width: min(calc(100% - 32px), 860px);
    padding: 128px 0 72px;
}

.query-shell,
.query-result-panel,
.query-empty {
    padding: 28px;
    background: var(--otaor-panel);
    border: 1px solid var(--otaor-border);
    border-radius: 8px;
}

.query-heading {
    display: flex;
    align-items: center;
    gap: 14px;
}

.query-heading-icon {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    flex: 0 0 48px;
    color: var(--otaor-accent);
    background: var(--otaor-accent-soft);
    border-radius: 8px;
    font-size: 19px;
}

.query-heading h1 {
    margin: 0 0 3px;
    color: var(--otaor-text);
    font-size: 24px;
    font-weight: 700;
}

.query-heading p {
    margin: 0;
    color: var(--otaor-muted);
}

.order-query-form {
    margin-top: 24px;
}

.order-query-form label {
    display: block;
    margin-bottom: 8px;
    color: var(--otaor-text-secondary);
    font-size: 13px;
    font-weight: 650;
}

.query-input-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
}

.btn-search-query {
    min-width: 124px;
    min-height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 17px;
    color: #fff;
    background: var(--otaor-accent);
    border: 0;
    border-radius: 8px;
    font-weight: 650;
    cursor: pointer;
}

.btn-search-query:hover {
    background: var(--otaor-accent-hover);
}

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

.query-result-panel h2 {
    margin: 0 0 16px;
    color: var(--otaor-text);
    font-size: 17px;
}

.query-empty {
    min-height: 220px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--otaor-muted);
}

.query-empty > i {
    margin-bottom: 14px;
    font-size: 30px;
}

.query-empty h2 {
    margin: 0 0 6px;
    color: var(--otaor-text-secondary);
    font-size: 18px;
}

.query-empty p {
    margin: 0;
}

.otaor-query-page .order-item {
    color: var(--otaor-text-secondary);
    background: var(--otaor-soft);
    border-color: var(--otaor-border);
    border-radius: 8px;
    box-shadow: none;
}

/* Footer */
.company-footer {
    display: block;
    margin: 0;
    padding: 0;
    color: var(--otaor-muted);
    background: var(--otaor-panel);
    border-top: 1px solid var(--otaor-border);
}

.company-footer-inner {
    padding-block: 32px;
}

.footer-main {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) repeat(2, minmax(130px, .6fr));
    gap: 28px;
}

.footer-brand-link .otaor-brand-name {
    font-size: 24px;
}

.footer-brand-link .otaor-brand-logo {
    height: 40px;
}

.footer-brand-link .otaor-brand-mark {
    width: 32px;
    height: 32px;
    flex-basis: 32px;
}

.footer-group {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
}

.footer-group h2 {
    margin: 0 0 3px;
    color: var(--otaor-text);
    font-size: 13px;
    font-weight: 650;
}

.footer-group a,
.footer-legal a,
.footer-legal span {
    color: var(--otaor-muted);
    font-size: 12px;
}

.footer-group a:hover,
.footer-legal a:hover {
    color: var(--otaor-accent);
}

.contact-icon {
    width: 30px;
    height: 30px;
    display: grid;
    place-items: center;
    border: 1px solid var(--otaor-border);
    border-radius: 50%;
    font-size: 16px !important;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 26px;
    padding-top: 16px;
    color: var(--otaor-muted);
    border-top: 1px solid var(--otaor-border);
    font-size: 12px;
}

.footer-legal {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.footer-bar-wrap {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1030;
    justify-content: center;
    pointer-events: none;
}

.footer-bar {
    min-height: 38px;
    display: flex;
    align-items: center;
    gap: 13px;
    max-width: calc(100vw - 96px);
    padding: 8px 24px;
    color: var(--otaor-muted);
    background: var(--otaor-panel);
    border: 1px solid var(--otaor-border);
    border-bottom: 0;
    border-radius: 20px 20px 0 0;
    box-shadow: 0 -8px 24px -12px rgba(0, 0, 0, .25);
    pointer-events: auto;
}

.footer-bar a,
.footer-bar-label {
    color: inherit;
    font-size: 12px;
    white-space: nowrap;
}

.footer-bar a:hover {
    color: var(--otaor-accent);
}

.footer-bar .footer-bar-privacy {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.footer-bar-privacy-icon {
    width: 30px;
    height: 14px;
    display: block;
    flex: 0 0 30px;
}

.footer-bar-privacy-icon .privacy-brand-fill {
    fill: var(--otaor-accent);
}

.footer-bar-dot {
    width: 3px;
    height: 3px;
    flex: 0 0 3px;
    background: var(--otaor-border-strong);
    border-radius: 50%;
}

.footer-bar-icon-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.customer-service {
    position: fixed;
    right: 18px;
    bottom: 62px;
    z-index: 1040;
    width: 50px;
    height: 50px;
    display: block;
    padding: 3px;
    background: var(--otaor-panel);
    border: 1px solid var(--otaor-border);
    border-radius: 50%;
    box-shadow: 0 10px 26px rgba(217, 54, 115, .2);
}

.customer-service img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    border-radius: 50%;
}

.customer-service-status {
    position: absolute;
    right: 1px;
    bottom: 2px;
    width: 11px;
    height: 11px;
    background: #30d158;
    border: 2px solid var(--otaor-panel);
    border-radius: 50%;
}

.otaor-bottom-nav {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1035;
    height: 58px;
    display: flex;
    align-items: stretch;
    padding-bottom: env(safe-area-inset-bottom);
    background: var(--otaor-overlay);
    border-top: 1px solid var(--otaor-border);
    -webkit-backdrop-filter: blur(18px);
    backdrop-filter: blur(18px);
}

.otaor-bottom-nav a {
    min-width: 0;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    color: var(--otaor-muted);
    font-size: 11px;
}

.otaor-bottom-nav i {
    font-size: 18px;
}

.otaor-bottom-nav svg {
    width: 18px;
    height: 18px;
}

.otaor-bottom-nav a.is-active {
    color: var(--otaor-accent);
    font-weight: 650;
}

.dark .platform-card {
    background: linear-gradient(180deg, rgba(28, 28, 30, .98), rgba(22, 22, 24, .98));
    border-color: rgba(240, 74, 127, .2);
}

.dark .platform-card strong {
    color: #f5f5f7;
}

.dark .platform-card small {
    color: #98989d;
}

.dark .platform-card-brand,
.dark .platform-card-cta {
    color: #ff7397;
}

/* Storefront motion and standalone pages */
.otaor-navbar {
    animation: otaor-nav-in .55s cubic-bezier(.22, 1, .36, 1) both;
    transition: min-height .25s ease, background-color .25s ease, box-shadow .25s ease;
}

.otaor-navbar.is-scrolled {
    background: var(--otaor-overlay);
    box-shadow: 0 8px 28px rgba(0, 0, 0, .06);
}

.otaor-nav-link,
.otaor-icon-button,
.otaor-products-search button,
.view-all-product-card {
    transition: color .2s ease, background-color .2s ease, border-color .2s ease,
                transform .2s ease, box-shadow .2s ease;
}

.otaor-nav-link:active,
.otaor-icon-button:active,
.otaor-products-search button:active {
    transform: scale(.96);
}

.otaor-mobile-menu {
    display: block !important;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity .22s ease, visibility .22s ease, transform .22s ease;
}

.otaor-mobile-menu.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

.otaor-mobile-menu-links a {
    opacity: 0;
    transform: translateY(-5px);
    transition: color .2s ease, background-color .2s ease, border-color .2s ease,
                opacity .24s ease, transform .24s ease;
}

.otaor-mobile-menu.is-open .otaor-mobile-menu-links a {
    opacity: 1;
    transform: translateY(0);
}

.otaor-mobile-menu.is-open .otaor-mobile-menu-links a:nth-child(2) { transition-delay: 35ms; }
.otaor-mobile-menu.is-open .otaor-mobile-menu-links a:nth-child(3) { transition-delay: 70ms; }
.otaor-mobile-menu.is-open .otaor-mobile-menu-links a:nth-child(4) { transition-delay: 105ms; }

.otaor-page-enter {
    animation: otaor-page-in .5s cubic-bezier(.22, 1, .36, 1) both;
}

.otaor-motion-ready .otaor-reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity .65s cubic-bezier(.22, 1, .36, 1),
                transform .65s cubic-bezier(.22, 1, .36, 1);
}

.otaor-motion-ready .otaor-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.platform-showcase .platform-card:first-child { animation: otaor-card-in .55s 80ms ease both; }
.platform-showcase .showcase-banner { animation: otaor-card-in .6s 140ms ease both; }
.platform-showcase .platform-card:last-child { animation: otaor-card-in .55s 200ms ease both; }

.showcase-banner {
    --otaor-tilt-x: 0deg;
    --otaor-tilt-y: 0deg;
    transform: perspective(900px) rotateX(var(--otaor-tilt-x)) rotateY(var(--otaor-tilt-y));
    transition: transform .2s ease, border-color .25s ease, box-shadow .25s ease;
}

.showcase-banner img {
    animation: otaor-hero-breathe 12s ease-in-out infinite alternate;
}

.platform-card-sheen {
    transition: left .65s ease, opacity .35s ease;
}

.otaor-notice-copy {
    min-width: 0;
    flex: 1;
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.otaor-notice-copy p {
    margin: 0;
}

.otaor-notice-more {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: var(--otaor-accent);
    font-size: 12px;
    font-weight: 650;
}

.otaor-section-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 18px;
}

.otaor-section-heading h2 {
    margin: 2px 0 0;
    color: var(--otaor-text);
    font-size: 24px;
    font-weight: 750;
}

.otaor-section-heading > a {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: var(--otaor-accent);
    font-weight: 600;
}

.otaor-page-kicker {
    color: var(--otaor-accent);
    font-size: 11px;
    font-weight: 750;
}

.view-all-product-card {
    min-height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 24px 16px;
    text-align: center;
    background: var(--otaor-panel);
    border: 1px dashed var(--otaor-border-strong);
    border-radius: 8px;
    animation: otaor-card-in .45s 240ms ease both;
}

.view-all-product-card > span {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    color: var(--otaor-accent);
    background: var(--otaor-accent-soft);
    border: 1px solid var(--otaor-border);
    border-radius: 50%;
}

.view-all-product-card strong {
    color: var(--otaor-text);
    font-size: 15px;
}

.view-all-product-card small {
    color: var(--otaor-muted);
}

.otaor-list-page {
    min-height: calc(100vh - 120px);
    padding-top: 120px;
    padding-bottom: 64px;
}

.otaor-page-heading {
    max-width: 760px;
    margin: 0 auto 42px;
    text-align: center;
}

.otaor-page-heading h1 {
    margin: 8px 0 10px;
    color: var(--otaor-text);
    font-size: 44px;
    font-weight: 800;
    line-height: 1.12;
}

.otaor-page-heading p {
    margin: 0;
    color: var(--otaor-muted);
    font-size: 16px;
}

.otaor-products-toolbar {
    display: grid;
    grid-template-columns: minmax(260px, 420px) minmax(0, 1fr);
    align-items: center;
    gap: 18px;
    margin-bottom: 24px;
}

.otaor-products-search {
    height: 46px;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 10px;
    padding-left: 14px;
    color: var(--otaor-muted);
    background: var(--otaor-panel);
    border: 1px solid var(--otaor-border);
    border-radius: 8px;
}

.otaor-products-search input {
    min-width: 0;
    color: var(--otaor-text);
    background: transparent;
    border: 0;
    outline: 0;
}

.otaor-products-search button {
    align-self: stretch;
    padding: 0 18px;
    color: #fff;
    background: var(--otaor-accent);
    border: 0;
    border-radius: 0 7px 7px 0;
    cursor: pointer;
}

.otaor-category-list {
    display: flex;
    justify-content: flex-end;
    gap: 8px;
    overflow-x: auto;
    padding: 2px;
    scrollbar-width: none;
}

.otaor-category-list::-webkit-scrollbar { display: none; }

.otaor-category-list .switch-category {
    min-height: 40px;
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
    padding: 8px 13px;
    color: var(--otaor-text-secondary);
    background: var(--otaor-panel);
    border: 1px solid var(--otaor-border);
    border-radius: 8px;
    transition: color .2s ease, background-color .2s ease, border-color .2s ease,
                transform .2s ease;
}

.otaor-category-list .switch-category.is-primary {
    color: #fff;
    background: var(--otaor-accent);
    border-color: var(--otaor-accent);
}

.otaor-notice-page {
    width: min(calc(100% - 32px), 980px);
}

.otaor-notice-article {
    display: grid;
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 24px;
    padding: 30px;
    background: var(--otaor-panel);
    border: 1px solid var(--otaor-border);
    border-radius: 8px;
    box-shadow: var(--otaor-shadow);
}

.otaor-notice-article-icon {
    width: 64px;
    height: 64px;
    display: grid;
    place-items: center;
    color: var(--otaor-accent);
    background: var(--otaor-accent-soft);
    border: 1px solid var(--otaor-border);
    border-radius: 8px;
    font-size: 26px;
}

.otaor-notice-article-content > span {
    color: var(--otaor-accent);
    font-size: 11px;
    font-weight: 750;
}

.otaor-notice-article-content h2 {
    margin: 4px 0 18px;
    color: var(--otaor-text);
    font-size: 22px;
}

.otaor-rich-text {
    overflow-wrap: anywhere;
    color: var(--otaor-text-secondary);
    font-size: 15px;
    line-height: 1.8;
}

.otaor-rich-text img,
.otaor-rich-text video {
    max-width: 100%;
    height: auto;
}

@media (hover: hover) and (pointer: fine) {
    .platform-card:hover .platform-card-sheen {
        left: 72%;
        opacity: .8;
    }

    .showcase-banner:hover {
        border-color: var(--otaor-border-strong);
        box-shadow: var(--otaor-shadow-hover);
    }

    .view-all-product-card:hover {
        color: var(--otaor-accent);
        border-color: var(--otaor-accent);
        transform: translateY(-4px);
        box-shadow: var(--otaor-shadow-hover);
    }

    .view-all-product-card:hover > span {
        transform: translateX(3px);
    }

    .otaor-category-list .switch-category:hover {
        border-color: var(--otaor-border-strong);
        transform: translateY(-1px);
    }

    .platform-card:hover {
        transform: translateY(-3px);
        border-color: rgba(217, 54, 115, .3);
        box-shadow: 0 16px 40px rgba(217, 54, 115, .14);
    }

    .product-card:hover {
        transform: translateY(-4px);
        border-color: var(--otaor-border-strong);
        box-shadow: var(--otaor-shadow-hover);
    }

    .product-card:hover .product-image-wrap img {
        transform: scale(1.04);
    }

    .product-card:hover .product-cart {
        color: var(--otaor-text);
        background: var(--otaor-soft);
        border-color: var(--otaor-border-strong);
    }

    .otaor-payment-trigger:hover {
        transform: translateY(-2px);
        box-shadow: var(--otaor-shadow);
    }
}

@media (max-width: 1279.98px) {
    .item-list {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .otaor-navbar-inner {
        grid-template-columns: auto 1fr auto;
    }
}

@media (max-width: 991.98px) {
    .otaor-navbar-inner {
        display: flex;
        justify-content: space-between;
    }

    .otaor-desktop-nav {
        display: none;
    }

    .otaor-navbar-actions {
        margin-left: auto;
    }

    .otaor-brand-name {
        max-width: min(48vw, 300px);
    }

    .otaor-featured {
        padding-top: 80px;
    }

    .platform-showcase-desktop {
        display: none;
    }

    .showcase-banner-mobile {
        width: min(100%, 768px);
        display: block;
        margin: 0 auto 16px;
        border-radius: 12px;
    }

    .platform-showcase-mobile {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 12px;
        margin-bottom: 40px;
    }

    .platform-card.is-compact {
        padding: 14px 8px 13px;
        border-radius: 14px;
    }

    .platform-card.is-compact .platform-card-icon {
        width: 38px;
        height: 38px;
        margin-bottom: 8px;
        border-radius: 10px;
    }

    .platform-card.is-compact .platform-card-icon img {
        width: 21px;
        height: 21px;
    }

    .platform-card.is-compact .platform-card-brand {
        margin-bottom: 2px;
        font-size: 8px;
    }

    .platform-card.is-compact strong {
        margin-bottom: 4px;
        font-size: 12px;
    }

    .platform-card.is-compact small {
        min-height: 38px;
        margin-bottom: 8px;
        font-size: 10px;
        line-height: 1.4;
    }

    .platform-card.is-compact .platform-card-cta {
        padding: 4px 8px;
        font-size: 10px;
    }

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

    .product-detail-layout {
        grid-template-columns: minmax(0, 1fr);
        gap: 26px;
    }

    .product-purchase {
        height: auto;
        min-height: auto;
    }

    .product-detail-media {
        width: min(100%, 620px);
        margin-inline: auto;
    }

    .product-purchase {
        width: min(100%, 620px);
        margin-inline: auto;
    }

    .otaor-products-toolbar {
        grid-template-columns: minmax(0, 1fr);
    }

    .otaor-category-list {
        justify-content: flex-start;
    }
}

@media (max-width: 767.98px) {
    .otaor-container {
        width: calc(100% - 32px);
    }

    .otaor-brand {
        gap: 10px;
    }

    .otaor-brand-mark {
        width: 38px;
        height: 38px;
        flex-basis: 38px;
    }

    .otaor-brand-name {
        max-width: 30vw;
        font-size: 16px;
    }

    .otaor-brand-logo {
        height: 48px;
        max-width: min(54vw, 215px);
    }

    .otaor-featured {
        padding-bottom: 44px;
    }

    .platform-showcase-mobile {
        gap: 10px;
    }

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

    .product-card-body {
        min-height: 114px;
        padding: 10px;
    }

    .product-name {
        min-height: 39px;
        font-size: 13px;
    }

    .product-price {
        font-size: 16px;
    }

    .product-cart {
        width: 28px;
        height: 28px;
        flex-basis: 28px;
        font-size: 12px;
    }

    .product-meta {
        font-size: 11px;
    }

    .company-footer-inner {
        padding-bottom: 86px;
    }

    .footer-main {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 22px;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .customer-service {
        right: 16px;
        bottom: 76px;
    }

    .otaor-detail-page {
        padding-top: 96px;
    }

    .product-detail-media {
        padding: 10px;
        border-radius: 14px;
    }

    .product-title-row h1 {
        font-size: 22px;
    }

    .product-title-row > .shared-button {
        display: none;
    }

    .product-price-panel .price {
        font-size: 36px;
    }

    .product-description {
        margin-top: 28px;
    }

    .product-description-body {
        padding: 16px;
    }

    .otaor-checkout-actions {
        gap: 8px;
    }

    .otaor-payment-trigger {
        min-height: 50px;
        padding-inline: 10px;
        font-size: 13px;
    }

    .otaor-legal-article section {
        padding: 20px;
    }

    .otaor-query-page {
        padding-top: 104px;
    }

    .query-shell,
    .query-result-panel,
    .query-empty {
        padding: 20px;
    }

    .otaor-list-page {
        padding-top: 104px;
        padding-bottom: 48px;
    }

    .otaor-page-heading {
        margin-bottom: 30px;
    }

    .otaor-page-heading h1 {
        font-size: 34px;
    }

    .otaor-section-heading h2 {
        font-size: 21px;
    }

    .otaor-notice-article {
        grid-template-columns: minmax(0, 1fr);
        gap: 16px;
        padding: 22px;
    }

    .otaor-notice-article-icon {
        width: 52px;
        height: 52px;
        font-size: 22px;
    }
}

@media (max-width: 479.98px) {
    .otaor-navbar-actions {
        gap: 2px;
    }

    .otaor-language .otaor-locale {
        padding-inline: 7px;
    }

    .otaor-language-menu {
        right: -42px;
    }

    .otaor-brand-name {
        max-width: 30vw;
        font-size: 16px;
    }

    .platform-card.is-compact {
        min-height: 168px;
        padding-inline: 5px;
    }

    .platform-card.is-compact small {
        display: none;
        min-height: 0;
    }

    .platform-card.is-compact strong {
        min-height: 30px;
        display: flex;
        align-items: center;
        margin-bottom: 7px;
        line-height: 1.25;
    }

    .otaor-notice {
        margin-top: -16px;
    }

    .otaor-notice-more {
        display: none;
    }

    .otaor-products-search {
        grid-template-columns: auto minmax(0, 1fr);
    }

    .otaor-products-search button {
        grid-column: 1 / -1;
        min-height: 42px;
        margin-left: -14px;
        border-radius: 0 0 7px 7px;
    }

    .otaor-products-search {
        height: auto;
        padding-top: 12px;
    }

    .query-input-row {
        grid-template-columns: minmax(0, 1fr);
    }

    .btn-search-query {
        width: 100%;
    }

    .cash-pay .pay-list {
        grid-template-columns: minmax(0, 1fr);
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }

    .otaor-motion-ready .otaor-reveal {
        opacity: 1;
        transform: none;
    }
}

@keyframes otaor-page-in {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes otaor-nav-in {
    from { opacity: 0; transform: translateY(-100%); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes otaor-hero-breathe {
    from { transform: scale(1); }
    to { transform: scale(1.035); }
}

@keyframes otaor-card-in {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes otaor-shimmer {
    from { background-position: 100% 0; }
    to { background-position: -100% 0; }
}

/* Products catalog: NOVA reference layout. */
.otaor-products-page {
    min-height: calc(100vh - 120px);
    padding-top: 116px;
    padding-bottom: 72px;
}

.otaor-products-search-wide {
    width: 100%;
    height: 46px;
    display: block;
    margin-bottom: 28px;
    padding: 0 16px;
    box-shadow: 0 8px 28px rgba(0, 0, 0, .04);
}

.otaor-products-search-wide input {
    width: 100%;
    height: 100%;
}

.otaor-products-layout {
    display: grid;
    grid-template-columns: 278px minmax(0, 1fr);
    align-items: start;
    gap: 28px;
}

.otaor-category-sidebar {
    position: sticky;
    top: 96px;
    overflow: hidden;
    background: var(--otaor-panel);
    border: 1px solid var(--otaor-border);
    border-radius: 8px;
    box-shadow: var(--otaor-shadow);
}

.otaor-category-heading {
    padding: 22px 20px 16px;
    border-bottom: 1px solid var(--otaor-border);
}

.otaor-category-heading h1 {
    margin: 4px 0 0;
    color: var(--otaor-text);
    font-size: 22px;
    font-weight: 750;
    line-height: 1.25;
}

.otaor-category-sidebar .otaor-category-list {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 2px;
    overflow: visible;
    padding: 8px;
}

.otaor-category-sidebar .otaor-category-list .switch-category {
    width: 100%;
    min-height: 52px;
    display: grid;
    grid-template-columns: 36px minmax(0, 1fr) auto;
    gap: 11px;
    padding: 8px 10px;
    color: var(--otaor-text-secondary);
    background: transparent;
    border: 1px solid transparent;
    border-radius: 7px;
}

.otaor-category-sidebar .otaor-category-list .switch-category.is-primary {
    color: var(--otaor-accent);
    background: var(--otaor-accent-soft);
    border-color: rgba(217, 54, 115, .2);
}

.otaor-category-sidebar .switch-category strong {
    min-width: 0;
    overflow: hidden;
    font-size: 14px;
    font-weight: 650;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.otaor-category-sidebar .switch-category small {
    min-width: 24px;
    padding: 2px 6px;
    color: var(--otaor-muted);
    background: var(--otaor-soft);
    border-radius: 5px;
    font-size: 11px;
    text-align: center;
}

.otaor-category-sidebar .switch-category.is-primary small {
    color: var(--otaor-accent);
    background: var(--otaor-panel);
}

.otaor-category-icon {
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    overflow: hidden;
    color: var(--otaor-accent);
    background: var(--otaor-soft);
    border: 1px solid var(--otaor-border);
    border-radius: 7px;
}

.otaor-category-icon img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.otaor-products-catalog {
    min-width: 0;
}

.otaor-products-catalog .item-list {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

@media (hover: hover) and (pointer: fine) {
    .otaor-category-sidebar .otaor-category-list .switch-category:hover {
        color: var(--otaor-accent);
        background: var(--otaor-soft);
        border-color: var(--otaor-border);
        transform: none;
    }
}

@media (max-width: 1279.98px) {
    .otaor-products-layout {
        grid-template-columns: 244px minmax(0, 1fr);
        gap: 22px;
    }

    .otaor-products-catalog .item-list {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 991.98px) {
    .otaor-products-page {
        padding-top: 104px;
    }

    .otaor-products-layout {
        grid-template-columns: minmax(0, 1fr);
        gap: 20px;
    }

    .otaor-category-sidebar {
        position: static;
        overflow: visible;
        background: transparent;
        border: 0;
        box-shadow: none;
    }

    .otaor-category-heading {
        padding: 0 0 12px;
        border: 0;
    }

    .otaor-category-heading h1 {
        font-size: 20px;
    }

    .otaor-category-sidebar .otaor-category-list {
        flex-direction: row;
        gap: 8px;
        overflow-x: auto;
        padding: 2px 0 6px;
    }

    .otaor-category-sidebar .otaor-category-list .switch-category {
        width: auto;
        min-width: 160px;
        flex: 0 0 auto;
        background: var(--otaor-panel);
        border-color: var(--otaor-border);
    }
}

@media (max-width: 767.98px) {
    .otaor-products-page {
        padding-top: 96px;
        padding-bottom: 48px;
    }

    .otaor-products-search-wide {
        height: 46px;
        margin-bottom: 22px;
    }

    .otaor-products-catalog .item-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }
}

@media (max-width: 479.98px) {
    .otaor-products-search-wide {
        padding: 0 14px;
    }

    .otaor-category-sidebar .otaor-category-list .switch-category {
        min-width: 148px;
    }
}
