/* ============================================================
   AiSea 主题 · 暗黑霓虹（视觉参照 gpt.hicxy.com）
   配色：bg #080c10 / surface #111820 / cyan #00e5ff / purple #7c5cfc
   ============================================================ */

html {
    overflow-x: hidden;
}

.aisea-body {
    /* 重定义系统组件变量，让共享组件自动适配深色 */
    --acg-primary: #00e5ff;
    --acg-secondary: #7c5cfc;
    --acg-danger: #ff6b88;
    --acg-text-strong: #e8edf3;
    --acg-text-muted: #8b99ab;
    --acg-card-bg: #111820;
    --acg-border: rgba(255, 255, 255, 0.09);

    --ai-bg: #080c10;
    --ai-bg2: #0d1117;
    --ai-surface: #111820;
    --ai-surface2: #0d141c;
    --ai-border: rgba(255, 255, 255, 0.07);
    --ai-border-strong: rgba(255, 255, 255, 0.14);
    --ai-accent: #00e5ff;
    --ai-accent2: #7c5cfc;
    --ai-accent3: #ff6b35;
    --ai-green: #22c55e;
    --ai-text: #e8edf3;
    --ai-muted: #6b7a8d;
    --ai-muted2: #9aa8ba;
    --ai-glow: rgba(0, 229, 255, 0.08);

    background: var(--ai-bg) !important;
    background-image: none !important;
    color: var(--ai-text);
    font-family: Inter, "HarmonyOS Sans SC", "MiSans", "PingFang SC", "Microsoft YaHei", sans-serif;
    min-height: 100vh;
    position: relative;
}

.aisea-body h1, .aisea-body h2, .aisea-body h3,
.aisea-body h4, .aisea-body h5, .aisea-body h6 {
    color: var(--ai-text);
}

.aisea-muted {
    color: var(--ai-muted) !important;
}

/* 背景光晕 */
.aisea-orb {
    position: fixed;
    border-radius: 50%;
    filter: blur(90px);
    pointer-events: none;
    z-index: 0;
}

.aisea-orb-1 {
    width: 560px;
    height: 560px;
    top: -220px;
    left: -120px;
    background: radial-gradient(circle, rgba(0, 229, 255, 0.14), transparent 65%);
}

.aisea-orb-2 {
    width: 620px;
    height: 620px;
    top: 60px;
    right: -220px;
    background: radial-gradient(circle, rgba(124, 92, 252, 0.16), transparent 65%);
}

.aisea-main {
    position: relative;
    z-index: 1;
}

/* ============================ 导航 ============================ */

.aisea-nav {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(8, 12, 16, 0.86);
    backdrop-filter: saturate(160%) blur(18px);
    -webkit-backdrop-filter: saturate(160%) blur(18px);
    border-bottom: 1px solid var(--ai-border);
}

.aisea-nav-inner {
    display: flex;
    align-items: center;
    gap: 18px;
    min-height: 62px;
}

.aisea-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    margin-right: 4px;
}

.aisea-brand-logo {
    width: 30px;
    height: 30px;
    border-radius: 8px;
    object-fit: cover;
    background: var(--ai-surface);
}

.aisea-brand-name {
    font-size: 1.45rem;
    font-weight: 800;
    color: var(--ai-text);
    letter-spacing: 0.2px;
}

.aisea-brand-name::after {
    content: "·AI";
    color: var(--ai-accent);
    font-weight: 800;
    margin-left: 6px;
}

.aisea-nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
    flex: 1;
}

.aisea-nav-link {
    color: var(--ai-muted2);
    text-decoration: none;
    font-size: 1.08rem;
    padding: 8px 14px;
    border-radius: 10px;
    transition: color .15s ease, background .15s ease;
    white-space: nowrap;
}

.aisea-nav-link:hover {
    color: var(--ai-text);
    background: rgba(255, 255, 255, 0.05);
}

.aisea-nav-link.active {
    color: var(--ai-accent);
    font-weight: 600;
}

.aisea-nav-right {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: auto;
}

/* 汉堡按钮（三条杠） */
.aisea-hamburger {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    border: 1px solid var(--ai-border);
    background: transparent;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    cursor: pointer;
    transition: border-color .15s ease;
}

.aisea-hamburger:hover {
    border-color: var(--ai-border-strong);
}

.aisea-hamburger span {
    display: block;
    width: 20px;
    height: 2px;
    border-radius: 2px;
    background: var(--ai-text);
    transition: transform .2s ease, opacity .2s ease;
}

.aisea-hamburger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.aisea-hamburger.open span:nth-child(2) {
    opacity: 0;
}

.aisea-hamburger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* 汉堡下拉菜单 */
.aisea-menu {
    display: none;
    border-top: 1px solid var(--ai-border);
    background: rgba(10, 14, 19, 0.98);
    max-height: calc(100vh - 62px);
    overflow-y: auto;
}

.aisea-menu.open {
    display: block;
}

.aisea-menu-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 22px;
    color: var(--ai-muted2);
    text-decoration: none;
    font-size: 1.1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    transition: color .15s ease, background .15s ease;
}

.aisea-menu-item i {
    width: 20px;
    text-align: center;
    color: var(--ai-muted);
}

.aisea-menu-item:hover {
    color: var(--ai-text);
    background: rgba(255, 255, 255, 0.03);
}

.aisea-menu-item.aisea-menu-accent {
    color: var(--ai-accent);
}

.aisea-menu-item.aisea-menu-accent i {
    color: var(--ai-accent);
}

/* 导航用户信息 */
.aisea-user-btn {
    color: var(--ai-text);
    border: 1px solid var(--ai-border);
    border-radius: 12px;
    padding: 4px 10px;
    background: transparent;
}

.aisea-user-btn:hover {
    border-color: var(--ai-border-strong);
    color: var(--ai-text);
}

.aisea-avatar {
    width: 30px;
    height: 30px;
    object-fit: cover;
    background: var(--ai-surface);
}

.aisea-user-name {
    font-size: 13px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--ai-text);
}

.aisea-user-balance {
    font-size: 11px;
    line-height: 1.2;
    color: var(--ai-accent);
}

.aisea-body .aisea-dropdown {
    background: #0e141b;
    border: 1px solid var(--ai-border-strong);
    border-radius: 14px;
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.55);
    overflow: hidden;
}

.aisea-body .aisea-dropdown .dropdown-item {
    color: var(--ai-muted2);
    padding: 9px 16px;
}

.aisea-body .aisea-dropdown .dropdown-item:hover {
    background: rgba(0, 229, 255, 0.08);
    color: var(--ai-text);
}

.aisea-body .aisea-dropdown .dropdown-divider {
    border-color: var(--ai-border);
}

/* ============================ 按钮 ============================ */

.aisea-btn-cyan, .aisea-btn-purple, .aisea-btn-ghost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    border: none;
    border-radius: 12px;
    padding: 9px 18px;
    font-size: 1.05rem;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    transition: transform .15s ease, box-shadow .15s ease, filter .15s ease;
    white-space: nowrap;
}

.aisea-btn-cyan {
    background: linear-gradient(135deg, #00e5ff, #00b8d9);
    color: #04222b;
    box-shadow: 0 8px 26px rgba(0, 229, 255, 0.25);
}

.aisea-btn-cyan:hover {
    color: #04222b;
    transform: translateY(-1px);
    filter: brightness(1.06);
    box-shadow: 0 12px 30px rgba(0, 229, 255, 0.35);
}

.aisea-btn-purple {
    background: linear-gradient(135deg, #8b6bff, #6c4de0);
    color: #fff;
    box-shadow: 0 8px 26px rgba(124, 92, 252, 0.3);
}

.aisea-btn-purple:hover {
    color: #fff;
    transform: translateY(-1px);
    filter: brightness(1.06);
}

.aisea-btn-ghost {
    background: transparent;
    border: 1px solid var(--ai-border-strong);
    color: var(--ai-muted2);
}

.aisea-btn-ghost:hover {
    color: var(--ai-text);
    border-color: var(--ai-accent);
}

.aisea-btn-lg {
    padding: 13px 30px;
    font-size: 1.18rem;
    border-radius: 14px;
}

/* ============================ HERO ============================ */

.aisea-hero {
    text-align: center;
    padding: 64px 0 34px;
    border-bottom: 1px solid var(--ai-border);
    background:
        radial-gradient(900px 420px at 18% -10%, rgba(0, 229, 255, 0.07), transparent 60%),
        radial-gradient(900px 460px at 85% -5%, rgba(124, 92, 252, 0.09), transparent 60%);
}

.aisea-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 9px 22px;
    border-radius: 999px;
    border: 1px solid rgba(0, 229, 255, 0.35);
    background: rgba(0, 229, 255, 0.05);
    color: var(--ai-accent);
    font-size: 0.98rem;
    font-weight: 600;
    letter-spacing: 0.6px;
    margin-bottom: 26px;
}

.aisea-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--ai-accent);
    box-shadow: 0 0 12px var(--ai-accent);
}

.aisea-hero-title {
    font-size: clamp(2.3rem, 6vw, 4rem);
    font-weight: 900;
    letter-spacing: 1px;
    line-height: 1.18;
    margin-bottom: 18px;
}

.aisea-hero-gradient {
    display: block;
    background: linear-gradient(92deg, #00e5ff 10%, #7c5cfc 60%, #b18cff 95%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.aisea-hero-tags {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px 12px;
    margin-bottom: 22px;
}

.aisea-tag {
    color: var(--ai-text);
    font-size: 1.18rem;
    font-weight: 700;
}

.aisea-tag-slash {
    color: var(--ai-muted);
    font-weight: 400;
}

.aisea-pill {
    padding: 5px 14px;
    border-radius: 999px;
    border: 1px solid rgba(0, 229, 255, 0.4);
    color: var(--ai-accent);
    font-size: 0.92rem;
    font-weight: 600;
}

.aisea-hero-desc {
    max-width: 640px;
    margin: 0 auto 30px;
    color: var(--ai-muted);
    font-size: 1.16rem;
    line-height: 2;
}

.aisea-hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 44px;
}

.aisea-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    max-width: 860px;
    margin: 0 auto;
}

.aisea-stat {
    padding: 18px 10px;
    border-radius: 16px;
    border: 1px solid var(--ai-border);
    background: rgba(17, 24, 32, 0.55);
}

.aisea-stat-num {
    font-size: 1.7rem;
    font-weight: 900;
    color: var(--ai-accent);
    line-height: 1.2;
}

.aisea-stat-label {
    margin-top: 4px;
    color: var(--ai-muted);
    font-size: 0.98rem;
}

/* ============================ 面板 ============================ */

.aisea-body .aisea-panel {
    background: rgba(17, 24, 32, 0.72);
    border: 1px solid var(--ai-border);
    border-radius: 20px;
    padding: 22px;
    margin-top: 24px;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 16px 44px rgba(0, 0, 0, 0.35);
}

.aisea-panel-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--ai-border);
}

.aisea-panel-icon {
    color: var(--ai-accent);
    font-size: 1.15rem;
}

.aisea-panel-title {
    margin: 0;
    font-size: 1.18rem;
    font-weight: 800;
    color: var(--ai-text);
}

.aisea-section-head {
    text-align: center;
    padding: 8px 0 18px;
}

.aisea-section-label {
    color: var(--ai-accent);
    letter-spacing: 4px;
    font-size: 0.88rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.aisea-section-title {
    font-size: 1.9rem;
    font-weight: 900;
}

.aisea-section-sub {
    color: var(--ai-muted);
    margin: 6px 0 0;
    font-size: 1.05rem;
}

/* 公告内容在深色下的可读性处理 */
.aisea-notice-body {
    color: #c6d0dc;
    line-height: 1.9;
    font-size: 1.05rem;
    overflow-wrap: anywhere;
}

.aisea-notice-body a {
    color: var(--ai-accent);
}

.aisea-notice-body [style*="color: rgb(0, 0, 0)"],
.aisea-notice-body [style*="color:#000"],
.aisea-notice-body [style*="color: #000"],
.aisea-notice-body [style*="color:black"],
.aisea-notice-body [style*="color: black"],
.aisea-notice-body font[color="#000000"],
.aisea-notice-body font[color="black"] {
    color: inherit !important;
}

/* ============================ 分类 + 搜索 ============================ */

.aisea-toolbar {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 18px;
    flex-wrap: wrap;
}

.aisea-chip-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    flex: 1;
    min-width: 240px;
}

.aisea-body .chip.aisea-chip {
    background: var(--ai-surface2);
    color: var(--ai-muted2);
    border: 1px solid var(--ai-border);
    box-shadow: none;
    font-size: 1.05rem;
    padding: 0.45rem 1.05rem;
}

.aisea-body .chip.aisea-chip:hover {
    color: var(--ai-text);
    border-color: var(--ai-border-strong);
    transform: translateY(-1px);
}

.aisea-body .chip.aisea-chip.is-primary {
    background: linear-gradient(90deg, rgba(0, 229, 255, 0.16), rgba(124, 92, 252, 0.16));
    border: 1px solid rgba(0, 229, 255, 0.55);
    color: var(--ai-accent);
    font-weight: 700;
    box-shadow: 0 6px 20px rgba(0, 229, 255, 0.12);
}

.aisea-chip-icon {
    width: 18px;
    height: 18px;
    border-radius: 5px;
    display: inline-block;
    margin-right: 7px;
}

.aisea-search {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--ai-surface2);
    border: 1px solid var(--ai-border);
    border-radius: 14px;
    padding: 6px 6px 6px 14px;
    min-width: 300px;
    transition: border-color .15s ease, box-shadow .15s ease;
}

.aisea-search:focus-within {
    border-color: rgba(0, 229, 255, 0.55);
    box-shadow: 0 0 0 4px rgba(0, 229, 255, 0.08);
}

.aisea-search i {
    color: var(--ai-muted);
}

.aisea-body .aisea-search-input {
    flex: 1;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    color: var(--ai-text) !important;
    font-size: 1.05rem;
    padding: 6px 2px;
    outline: none;
}

.aisea-body .aisea-search-input::placeholder {
    color: var(--ai-muted);
}

.aisea-search-btn {
    border: none;
    border-radius: 10px;
    padding: 8px 18px;
    font-weight: 700;
    background: linear-gradient(135deg, #00e5ff, #00b8d9);
    color: #04222b;
    cursor: pointer;
    transition: filter .15s ease;
}

.aisea-search-btn:hover {
    filter: brightness(1.08);
}

/* ============================ 商品卡片 ============================ */

.aisea-item-list {
    min-height: 120px;
}

.aisea-card-col {
    text-decoration: none;
}

.aisea-goods-card {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 18px;
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(0, 229, 255, 0.05), rgba(17, 24, 32, 0.9) 38%);
    border: 1px solid var(--ai-border);
    overflow: hidden;
    transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.aisea-goods-card:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 229, 255, 0.45);
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.45), 0 0 0 4px rgba(0, 229, 255, 0.06);
}

.aisea-goods-card.soldout {
    filter: grayscale(0.7);
    opacity: 0.75;
}

.aisea-goods-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 8px;
}

.aisea-goods-thumb {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background-color: var(--ai-surface2);
    background-size: cover;
    background-position: center;
    border: 1px solid var(--ai-border);
    flex-shrink: 0;
}

.aisea-goods-badges {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.aisea-badge {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
}

.aisea-badge-green {
    color: #34d399;
    background: rgba(52, 211, 153, 0.1);
    border: 1px solid rgba(52, 211, 153, 0.35);
}

.aisea-badge-hot {
    color: #fff;
    background: linear-gradient(90deg, #00b8d9, #7c5cfc);
}

.aisea-goods-title {
    margin: 2px 0 0;
    font-size: 1.16rem;
    font-weight: 800;
    color: var(--ai-text);
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 2.8em;
}

.aisea-goods-brief {
    margin: 0;
    color: var(--ai-muted);
    font-size: 0.99rem;
    line-height: 1.65;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 3.3em;
    flex: 1;
}

.aisea-goods-brief-empty {
    visibility: hidden;
}

.aisea-goods-footer {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 8px;
    margin-top: auto;
}

.aisea-goods-price {
    color: var(--ai-accent);
    font-size: 1.55rem;
    font-weight: 900;
    line-height: 1;
}

.aisea-goods-price .unit {
    font-size: 0.95rem;
    margin-right: 2px;
}

.aisea-goods-stat {
    color: var(--ai-muted);
    font-size: 0.9rem;
}

.aisea-goods-go {
    margin-top: 4px;
    padding-top: 12px;
    border-top: 1px dashed var(--ai-border);
    color: var(--ai-muted2);
    font-size: 0.98rem;
    font-weight: 600;
    transition: color .15s ease;
}

.aisea-goods-card:hover .aisea-goods-go {
    color: var(--ai-accent);
}

.aisea-empty, .aisea-body .item-message {
    width: 100%;
    text-align: center;
    color: var(--ai-muted);
    font-size: 1.1rem;
    padding: 40px 0;
}

.aisea-empty i {
    display: block;
    font-size: 2.4rem;
    margin-bottom: 10px;
    color: var(--ai-muted);
}

/* ============================ 服务保障 ============================ */

.aisea-guarantee {
    display: flex;
    align-items: center;
    gap: 16px 26px;
    flex-wrap: wrap;
    margin: 26px 0 40px;
    padding: 20px 24px;
    border-radius: 18px;
    border: 1px solid var(--ai-border);
    background: rgba(17, 24, 32, 0.6);
}

.aisea-guarantee-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 999px;
    border: 1px solid rgba(52, 211, 153, 0.45);
    color: #34d399;
    font-weight: 700;
    white-space: nowrap;
}

.aisea-guarantee-items {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 26px;
}

.aisea-guarantee-items span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--ai-muted2);
    font-size: 1.02rem;
}

.aisea-check {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: rgba(52, 211, 153, 0.16);
    border: 1px solid rgba(52, 211, 153, 0.55);
    position: relative;
    flex-shrink: 0;
}

.aisea-check::after {
    content: "";
    position: absolute;
    left: 5px;
    top: 2.5px;
    width: 5px;
    height: 9px;
    border: solid #34d399;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

/* ============================ 表单控件（深色） ============================ */

.aisea-body .form-label {
    color: var(--ai-muted2);
    font-weight: 600;
}

.aisea-body .form-control,
.aisea-body .form-select {
    background: var(--ai-surface2);
    border: 1px solid var(--ai-border-strong);
    color: var(--ai-text);
    border-radius: 12px;
}

.aisea-body .form-control:focus,
.aisea-body .form-select:focus {
    background: var(--ai-surface2);
    border-color: rgba(0, 229, 255, 0.55);
    box-shadow: 0 0 0 4px rgba(0, 229, 255, 0.08);
    color: var(--ai-text);
}

.aisea-body .form-control::placeholder {
    color: var(--ai-muted);
}

.aisea-body .form-check-label {
    color: var(--ai-muted2);
}

.aisea-body .input-group-text {
    background: var(--ai-surface2);
    border: 1px solid var(--ai-border-strong);
    color: var(--ai-muted2);
}

/* ============================ 商品详情页 ============================ */

.aisea-item-page {
    padding-top: 22px;
    padding-bottom: 30px;
}

.aisea-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--ai-muted2);
    text-decoration: none;
    font-size: 1.02rem;
    margin-bottom: 4px;
}

.aisea-back:hover {
    color: var(--ai-accent);
}

.aisea-cover-card {
    position: relative;
    min-height: 300px;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid var(--ai-border);
    background: var(--ai-surface2);
}

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

.aisea-item-name {
    font-size: 1.7rem;
    font-weight: 900;
    margin-bottom: 10px;
}

.aisea-body .aisea-abacus .price {
    color: var(--ai-accent);
    font-size: 2rem;
    font-weight: 900;
}

.aisea-body .aisea-abacus .price .unit {
    font-size: 1.1rem;
}

/* 徽章（深色化） */
.aisea-body .badge-soft {
    padding: 0.28rem 0.7rem;
    font-weight: 600;
}

.aisea-body .badge-soft-success {
    color: #34d399;
    background: rgba(52, 211, 153, 0.1);
    border: 1px solid rgba(52, 211, 153, 0.35);
}

.aisea-body .badge-soft-primary {
    color: #7fb7ff;
    background: rgba(64, 140, 255, 0.12);
    border: 1px solid rgba(64, 140, 255, 0.35);
}

.aisea-body .badge-soft-info {
    color: var(--ai-accent);
    background: rgba(0, 229, 255, 0.08);
    border: 1px solid rgba(0, 229, 255, 0.35);
    cursor: pointer;
}

.aisea-body .badge-soft-danger {
    color: #ff8097;
    background: rgba(255, 107, 136, 0.12);
    border: 1px solid rgba(255, 107, 136, 0.4);
}

.aisea-body .badge-soft-muted {
    color: var(--ai-muted);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--ai-border);
}

/* SKU 选择 */
.aisea-body .sku {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 0.5rem 1rem;
    border-radius: 12px;
    background: var(--ai-surface2);
    border: 1px solid var(--ai-border-strong);
    color: var(--ai-muted2);
    text-decoration: none;
    box-shadow: none;
    margin: 0 8px 8px 0;
    transition: border-color .15s ease, color .15s ease, transform .15s ease;
}

.aisea-body .sku:hover {
    transform: translateY(-1px);
    color: var(--ai-text);
    border-color: var(--ai-border-strong);
}

.aisea-body .sku.is-primary {
    color: var(--ai-accent);
    background: rgba(0, 229, 255, 0.08);
    border-color: rgba(0, 229, 255, 0.6);
    font-weight: 700;
    box-shadow: 0 6px 18px rgba(0, 229, 255, 0.12);
}

.aisea-body .sku .badge-money {
    background: rgba(124, 92, 252, 0.18);
    color: #b6a3ff;
    padding: 1px 8px;
    border-radius: 999px;
    font-size: 12px;
}

/* 数量选择 */
.aisea-body .qty-group {
    background: var(--ai-surface2);
    border: 1px solid var(--ai-border-strong);
    box-shadow: none;
    border-radius: 12px;
    width: 170px;
}

.aisea-body .qty-group .form-control {
    background: transparent;
    border: none;
    box-shadow: none;
}

.aisea-body .input-group.qty-group > button,
.aisea-body .change-num-sub,
.aisea-body .change-num-add {
    width: 30px;
    height: 30px;
    border-radius: 9px;
    border: 1px solid var(--ai-border-strong);
    background: rgba(255, 255, 255, 0.05);
    color: var(--ai-text);
    font-size: 1.1rem;
    line-height: 1;
    cursor: pointer;
    flex-shrink: 0;
    box-shadow: none;
    transition: border-color .15s ease, color .15s ease;
}

.aisea-body .input-group.qty-group > button:hover,
.aisea-body .change-num-sub:hover,
.aisea-body .change-num-add:hover {
    border-color: rgba(0, 229, 255, 0.55);
    color: var(--ai-accent);
    filter: none;
}

.aisea-body .input-group.qty-group > input[type=number] {
    color: var(--ai-text);
}

/* 自选卡密按钮 */
.aisea-body .optional-card {
    background: var(--ai-surface2);
    color: var(--ai-muted2);
    border: 1px dashed var(--ai-border-strong);
    box-shadow: none;
    border-radius: 12px;
    padding: 0.45rem 0.9rem;
}

/* 批发表 */
.aisea-body .wholesale-table,
.aisea-body .wholesale-table th,
.aisea-body .wholesale-table td {
    color: var(--ai-muted2);
    border-color: var(--ai-border);
    background: transparent;
}

/* 支付区域 */
.aisea-body .cash-pay.aisea-cash-pay {
    background: rgba(13, 20, 28, 0.85);
    border: 1px solid var(--ai-border-strong);
    border-radius: 16px;
    box-shadow: none;
    padding: 16px !important;
}

.aisea-body .cash-pay .form-label {
    color: var(--ai-text);
    font-weight: 700;
}

.aisea-body .pay-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.aisea-body .pay-list .pay {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 11px 20px;
    border-radius: 12px;
    background: var(--ai-surface);
    border: 1px solid var(--ai-border-strong);
    color: var(--ai-text);
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform .15s ease, border-color .15s ease, box-shadow .15s ease;
}

.aisea-body .pay-list .pay:hover {
    transform: translateY(-2px);
    border-color: rgba(0, 229, 255, 0.6);
    box-shadow: 0 10px 26px rgba(0, 229, 255, 0.14);
    filter: none;
}

.aisea-body .pay-list .pay img {
    width: 22px;
    height: 22px;
    object-fit: contain;
}

/* 商品完整介绍 */
.aisea-description {
    color: #c6d0dc;
    line-height: 2;
    font-size: 1.08rem;
    overflow-wrap: anywhere;
}

.aisea-description img {
    max-width: 100%;
    border-radius: 12px;
}

.aisea-description a {
    color: var(--ai-accent);
}

.aisea-description table {
    color: #c6d0dc;
    border-color: var(--ai-border-strong);
}

.aisea-description table td,
.aisea-description table th {
    border: 1px solid var(--ai-border-strong);
    padding: 6px 10px;
}

.aisea-description blockquote {
    border-left: 3px solid var(--ai-accent);
    padding: 6px 14px;
    background: rgba(0, 229, 255, 0.05);
    border-radius: 0 10px 10px 0;
    color: var(--ai-muted2);
}

.aisea-description [style*="color: rgb(0, 0, 0)"],
.aisea-description [style*="color:#000"],
.aisea-description [style*="color: #000"],
.aisea-description [style*="color:black"],
.aisea-description [style*="color: black"],
.aisea-description font[color="#000000"],
.aisea-description font[color="black"] {
    color: inherit !important;
}

/* ============================ 订单查询页 ============================ */

.aisea-query-page {
    padding-top: 34px;
    padding-bottom: 40px;
}

.aisea-query-input-wrap {
    width: min(360px, 78vw);
}

.aisea-body .order-item {
    background: rgba(17, 24, 32, 0.8);
    border: 1px solid var(--ai-border);
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.35);
}

.aisea-body .order-item:hover {
    border-color: var(--ai-border-strong);
}

.aisea-body .order-no,
.aisea-body .order-time,
.aisea-body .payment-time,
.aisea-body .payment-dst,
.aisea-body .amount-label {
    color: var(--ai-muted2);
}

.aisea-body .order-no-text {
    color: var(--ai-text);
}

.aisea-body .amount-value {
    color: var(--ai-accent);
}

.aisea-body .goods-section {
    background: rgba(13, 20, 28, 0.8);
    border: 1px solid var(--ai-border);
    border-radius: 14px;
}

.aisea-body .goods-name {
    color: var(--ai-text);
}

.aisea-body .card-section {
    background: rgba(13, 20, 28, 0.8);
    border: 1px solid var(--ai-border);
    border-radius: 14px;
}

.aisea-body .card-section .card-header {
    background: transparent;
    border-bottom: 1px solid var(--ai-border);
}

.aisea-body .card-section .card-title,
.aisea-body .shipment-title {
    color: var(--ai-text);
}

.aisea-body .card-content-no-password,
.aisea-body .card-password-section,
.aisea-body .password-form {
    background: transparent;
    border: none;
}

.aisea-body .card-display {
    background: #0a1016;
    color: #9be8c4;
    border: 1px solid var(--ai-border-strong);
    border-radius: 12px;
    padding: 14px;
    font-family: Consolas, "Courier New", monospace;
}

/* ============================ 页脚 ============================ */

.aisea-footer {
    position: relative;
    z-index: 1;
    border-top: 1px solid var(--ai-border);
    padding: 30px 0 40px;
    margin-top: 30px;
    text-align: center;
    background: rgba(8, 12, 16, 0.6);
}

.aisea-footer-links {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px 26px;
    margin-bottom: 14px;
}

.aisea-footer-links a {
    color: var(--ai-muted2);
    text-decoration: none;
    font-size: 1.02rem;
}

.aisea-footer-links a:hover {
    color: var(--ai-accent);
}

.aisea-footer-copy {
    color: var(--ai-muted);
    font-size: 0.95rem;
}

.aisea-footer-icp {
    margin-left: 14px;
}

/* ============================ 响应式 ============================ */

@media (max-width: 991.98px) {
    .aisea-toolbar {
        flex-direction: column;
        align-items: stretch;
    }

    .aisea-search {
        min-width: 0;
        width: 100%;
    }
}

@media (max-width: 767.98px) {
    .aisea-hero {
        padding-top: 44px;
    }

    .aisea-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .aisea-hero-desc {
        font-size: 1.05rem;
    }

    .aisea-brand-name {
        font-size: 1.2rem;
    }

    .aisea-nav-inner {
        gap: 10px;
    }

    .aisea-cover-card {
        min-height: 220px;
    }
}
