/* =====================================================================
 * 前台店铺样式
 * ===================================================================== */

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    font-size: 15px;
    line-height: 1.6;
    color: var(--docs-ink);
    background: #fff;
}

a {
    color: var(--docs-blue);
    text-decoration: none;
}

a:hover {
    color: var(--docs-blue-dark);
}

img {
    max-width: 100%;
    display: block;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ---------- Header ---------- */
.site-header {
    background: #fff;
    border-bottom: 1px solid var(--docs-line);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-inner {
    display: flex;
    align-items: center;
    gap: 24px;
    height: 64px;
}

.brand {
    font-size: 22px;
    font-weight: 700;
    color: var(--docs-ink);
    white-space: nowrap;
}

.brand img {
    height: 40px;
    width: auto;
    display: block;
}

.main-nav {
    flex: 1;
}

.main-nav > ul {
    display: flex;
    align-items: center;
    gap: 4px;
}

.main-nav > ul > li {
    position: relative;
}

.main-nav > ul > li > a {
    display: block;
    padding: 8px 14px;
    color: var(--docs-ink);
    font-weight: 500;
    border-radius: 4px;
}

.main-nav > ul > li > a:hover {
    background: #f5f7fa;
    color: var(--docs-blue);
}

/* 下拉子分类 */
.main-nav .dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 180px;
    background: #fff;
    border: 1px solid var(--docs-line);
    border-radius: 6px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
    padding: 6px 0;
    display: none;
}

.main-nav .has-children:hover .dropdown {
    display: block;
}

.main-nav .dropdown a {
    display: block;
    padding: 8px 16px;
    color: var(--docs-ink);
}

.main-nav .dropdown a:hover {
    background: #f5f7fa;
    color: var(--docs-blue);
}

.header-search {
    display: flex;
    align-items: center;
    gap: 6px;
}

.header-search input {
    height: 36px;
    padding: 0 12px;
    border: 1px solid #cfd7e5;
    border-radius: 6px;
    font-size: 14px;
    width: 200px;
}

.header-search button {
    height: 36px;
    padding: 0 16px;
    border: none;
    border-radius: 6px;
    background: var(--docs-blue);
    color: #fff;
    cursor: pointer;
    font-size: 14px;
}

.header-search button:hover {
    background: var(--docs-blue-dark);
}

.nav-toggle {
    display: none;
    border: none;
    background: none;
    font-size: 22px;
    cursor: pointer;
}

/* ---------- Hero ---------- */
.hero {
    background: linear-gradient(135deg, var(--docs-blue-soft) 0%, #e2ebff 100%);
    padding: 60px 0;
    text-align: center;
}

.hero h1 {
    font-size: 36px;
    margin-bottom: 12px;
    color: var(--docs-ink);
}

.hero p {
    font-size: 18px;
    color: var(--docs-muted);
}

/* ---------- Section ---------- */
.section {
    padding: 48px 0;
}

.section-title {
    font-size: 26px;
    margin-bottom: 24px;
    text-align: center;
    color: var(--docs-ink);
}

.section-more {
    text-align: center;
    margin-top: 28px;
}

.btn {
    display: inline-block;
    padding: 10px 24px;
    background: var(--docs-blue);
    color: #fff;
    border-radius: 6px;
    font-weight: 500;
}

.btn:hover {
    background: var(--docs-blue-dark);
    color: #fff;
}

/* ---------- Category grid ---------- */
.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
}

.category-card {
    position: relative;
    display: block;
    border: 1px solid var(--docs-line);
    border-radius: 8px;
    overflow: hidden;
    background: var(--docs-surface);
    height: 160px;
}

.category-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.category-card .category-name {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 10px;
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    text-align: center;
    font-weight: 500;
}

/* ---------- Product grid ---------- */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 24px;
}

.product-card {
    border: 1px solid var(--docs-line);
    border-radius: 8px;
    overflow: hidden;
    transition: box-shadow 0.2s ease;
    background: #fff;
}

.product-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.product-card-image {
    display: block;
    height: 200px;
    background: #f5f7fa;
    overflow: hidden;
}

.product-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-card-image .no-image {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: #bbb;
}

.product-card-body {
    padding: 14px;
}

.product-name {
    font-size: 16px;
    margin-bottom: 6px;
}

.product-name a {
    color: var(--docs-ink);
}

.product-name a:hover {
    color: var(--docs-blue);
}

.product-model {
    color: var(--docs-muted);
    font-size: 13px;
    margin-bottom: 6px;
}

.product-short {
    color: var(--docs-text);
    font-size: 13px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ---------- Page layout ---------- */
.page-layout {
    display: flex;
    gap: 32px;
    padding-top: 24px;
    padding-bottom: 48px;
}

.sidebar {
    width: 220px;
    flex-shrink: 0;
}

.sidebar h3 {
    font-size: 16px;
    margin-bottom: 12px;
    color: var(--docs-ink);
}

.category-nav > li > a {
    display: block;
    padding: 8px 10px;
    color: var(--docs-ink);
    border-radius: 4px;
}

.category-nav > li > a:hover,
.category-nav > li > a.active {
    background: var(--docs-blue-soft);
    color: var(--docs-blue);
}

.category-nav-children {
    margin-left: 14px;
}

.category-nav-children a {
    display: block;
    padding: 6px 10px;
    color: var(--docs-text);
    font-size: 14px;
    border-radius: 4px;
}

.category-nav-children a:hover,
.category-nav-children a.active {
    color: var(--docs-blue);
}

.content-area {
    flex: 1;
    min-width: 0;
}

/* ---------- Breadcrumb ---------- */
.breadcrumb {
    font-size: 14px;
    color: var(--docs-muted);
    margin-bottom: 16px;
}

.breadcrumb .sep {
    margin: 0 8px;
    color: #ccc;
}

.breadcrumb .current {
    color: var(--docs-ink);
}

/* ---------- List toolbar ---------- */
.list-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.list-title {
    font-size: 24px;
    color: var(--docs-ink);
}

.sort-form {
    display: flex;
    align-items: center;
    gap: 8px;
}

.sort-form select {
    height: 36px;
    padding: 0 10px;
    border: 1px solid #cfd7e5;
    border-radius: 6px;
    font-size: 14px;
}

.category-description {
    color: var(--docs-text);
    margin-bottom: 20px;
}

.empty {
    padding: 40px 0;
    text-align: center;
    color: var(--docs-muted);
}

/* ---------- Pagination ---------- */
.pagination {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 32px;
}

.page-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    height: 36px;
    padding: 0 10px;
    border: 1px solid var(--docs-line, #e4e8ef);
    border-radius: 5px;
    color: var(--docs-muted, #68758a);
    background: #fff;
    transition: border-color .2s, color .2s, background .2s;
}

.page-link:hover {
    border-color: var(--docs-blue, #2457c5);
    color: var(--docs-blue, #2457c5);
    background: var(--docs-blue-soft, #edf3ff);
}

.page-link.active {
    background: var(--docs-blue, #2457c5);
    border-color: var(--docs-blue, #2457c5);
    color: #fff;
}

.page-link.disabled {
    color: #b8c1ce;
    background: #f7f9fc;
    cursor: not-allowed;
}

/* ---------- Product detail ---------- */
.product-detail {
    padding-top: 24px;
    padding-bottom: 48px;
}

.detail-main {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
}

.gallery {
    flex: 1;
    max-width: 500px;
}

.gallery-main {
    border: 1px solid var(--docs-line);
    border-radius: 8px;
    overflow: hidden;
    height: 400px;
    background: #f5f7fa;
}

.gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.gallery-thumbs {
    display: flex;
    gap: 10px;
    margin-top: 12px;
}

.gallery-thumbs .thumb {
    width: 72px;
    height: 72px;
    border: 2px solid transparent;
    border-radius: 6px;
    overflow: hidden;
    opacity: 0.7;
}

.gallery-thumbs .thumb.active {
    border-color: var(--docs-blue);
    opacity: 1;
}

.gallery-thumbs .thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.detail-info {
    flex: 1;
    min-width: 0;
}

.detail-name {
    font-size: 28px;
    color: var(--docs-ink);
    margin-bottom: 16px;
}

.detail-model,
.detail-sku {
    color: var(--docs-text);
    margin-bottom: 8px;
}

.detail-model span,
.detail-sku span,
.detail-categories span {
    font-weight: 600;
    color: var(--docs-ink);
}

.detail-categories {
    margin-bottom: 16px;
}

.detail-short {
    color: var(--docs-text);
    margin-top: 16px;
    padding: 16px;
    background: #f8fafc;
    border-radius: 8px;
}

.detail-description {
    margin-bottom: 40px;
}

.detail-description h2,
.related-section h2 {
    font-size: 22px;
    color: var(--docs-ink);
    margin-bottom: 16px;
}

.rich-text {
    color: var(--docs-text);
    line-height: 1.8;
}

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

/* ---------- Single page ---------- */
.page-single {
    padding: 32px 20px;
}

.page-title {
    font-size: 28px;
    color: var(--docs-ink);
    margin-bottom: 24px;
}

/* ---------- Wiki ---------- */
.wiki-intro { color: var(--docs-muted); font-size: 14px; }
.wiki-article-list, .wiki-product-list { display: grid; gap: 14px; }

/* Product information center */
.wiki-hero { background: var(--docs-ink); color: #fff; padding: 62px 0 54px; }
.wiki-hero h1 { max-width: 720px; margin: 10px 0 12px; font-size: 42px; line-height: 1.15; letter-spacing: -.8px; }
.wiki-hero p { max-width: 680px; margin-bottom: 26px; color: #c4d0e2; font-size: 17px; }
.eyebrow { color: #9cc6ff; font-size: 11px; font-weight: 700; letter-spacing: 1.5px; }
.wiki-search { display: flex; max-width: 680px; background: #fff; border-radius: 7px; padding: 5px; }
.wiki-search input { flex: 1; border: 0; outline: 0; padding: 12px 14px; font: inherit; min-width: 0; }
.wiki-search button { border: 0; border-radius: 5px; background: var(--docs-blue); color: #fff; padding: 0 20px; font-weight: 600; cursor: pointer; }
.wiki-hero-links { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 16px; color: #aebbd0; font-size: 13px; }
.wiki-hero-links a { color: #fff; border-bottom: 1px solid #71809a; }
.wiki-shell { display: grid; grid-template-columns: 236px minmax(0, 1fr); gap: 48px; padding-top: 38px; padding-bottom: 70px; }
.wiki-sidebar { min-width: 0; }
.sidebar-heading { color: var(--docs-ink); font-size: 15px; font-weight: 700; margin-bottom: 14px; }
.sidebar-all { display: flex; justify-content: space-between; padding: 10px 12px; margin-bottom: 6px; border-radius: 5px; background: var(--docs-surface); color: #253653; font-weight: 600; }
.sidebar-all span { color: var(--docs-blue); }
.wiki-sidebar .category-nav > li > a { display: flex; justify-content: space-between; padding: 9px 12px; color: var(--docs-muted); }
.wiki-sidebar .category-nav > li > a span { color: #9aa7b9; font-size: 12px; }
.wiki-sidebar .category-nav > li > a.active { background: var(--docs-blue-soft); color: var(--docs-blue-dark); font-weight: 600; }
.sidebar-help { margin-top: 30px; padding: 17px; border: 1px solid #dbe3ef; border-radius: 7px; background: #f8fafc; }
.sidebar-help strong { color: var(--docs-ink); font-size: 14px; }.sidebar-help p { margin: 7px 0 11px; color: var(--docs-muted); font-size: 13px; line-height: 1.5; }.sidebar-help a { font-size: 13px; font-weight: 600; }
.results-heading { display: flex; justify-content: space-between; align-items: end; gap: 20px; margin: 18px 0 24px; }.results-heading h2 { color: var(--docs-ink); font-size: 28px; margin: 5px 0; }.results-heading p { color: var(--docs-muted); }.result-count { white-space: nowrap; color: var(--docs-muted); font-size: 13px; }
.product-directory { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.product-tile { display: flex; flex-direction: column; overflow: hidden; border: 1px solid var(--docs-line); border-radius: 8px; background: #fff; transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease; }.product-tile:hover { border-color: #b7c5e5; box-shadow: 0 10px 25px rgba(23,38,63,.09); transform: translateY(-2px); }.product-tile-image { height: 160px; background: #f5f7fb; }.product-tile-image img { width: 100%; height: 100%; object-fit: contain; }.product-tile-placeholder { display: grid; place-items: center; background: linear-gradient(135deg,#e9edff,#f7f8ff); color: var(--docs-blue); font-size: 45px; font-weight: 800; }.product-tile-body { padding: 16px; }.product-tile-category { color: var(--docs-blue); font-size: 11px; font-weight: 700; letter-spacing: .7px; text-transform: uppercase; }.product-tile h3 { color: var(--docs-ink); font-size: 17px; margin: 6px 0; }.product-tile p { display: -webkit-box; overflow: hidden; min-height: 42px; color: var(--docs-muted); font-size: 13px; line-height: 1.6; -webkit-line-clamp: 2; -webkit-box-orient: vertical; }.product-tile-meta { display: flex; justify-content: space-between; gap: 8px; margin-top: 14px; color: #9aa7b9; font-size: 12px; }.product-tile-meta span:last-child { color: var(--docs-blue); font-weight: 600; }.product-tile-meta b { font-size: 15px; }.empty-state { padding: 65px 20px; border: 1px dashed #cbd5e1; border-radius: 8px; text-align: center; }.empty-state strong { display: block; color: var(--docs-ink); font-size: 20px; }.empty-state p { margin: 8px 0 18px; color: var(--docs-muted); }
.wiki-card { border: 1px solid var(--docs-line); border-radius: 8px; padding: 20px 22px; background: #fff; transition: box-shadow .2s ease, border-color .2s ease; }
.wiki-card:hover { border-color: #b7c8e8; box-shadow: 0 6px 20px rgba(50, 35, 70, .07); }
.wiki-card h2 { font-size: 19px; margin-bottom: 7px; }
.wiki-card h2 a { color: var(--docs-ink); }
.wiki-card h2 a:hover { color: var(--docs-blue); }
.wiki-card p { color: var(--docs-text); margin-bottom: 10px; }
.wiki-card-meta { color: var(--docs-muted); font-size: 13px; }
.wiki-article-page, .wiki-product-page { padding-top: 24px; padding-bottom: 48px; }
.wiki-article, .wiki-product { max-width: 860px; margin: 0 auto; }
.wiki-article-header, .wiki-product-header { border-bottom: 1px solid var(--docs-line); padding-bottom: 18px; margin-bottom: 22px; }
.wiki-article-header h1, .wiki-product-header h1 { color: var(--docs-ink); font-size: 32px; margin-bottom: 8px; }
.wiki-summary { background: #f8fafc; border-left: 3px solid var(--docs-blue); padding: 14px 18px; color: var(--docs-text); margin-bottom: 24px; }
.wiki-article .rich-text h2, .wiki-article .rich-text h3, .wiki-product .rich-text h2, .wiki-product .rich-text h3 { color: var(--docs-ink); margin: 24px 0 10px; }
.wiki-product-cover { max-height: 420px; width: auto; margin: 0 auto 24px; object-fit: contain; }
.wiki-product .detail-actions { margin-top: 28px; }
.product-detail-grid { display: grid; grid-template-columns: minmax(0, 860px) 220px; gap: 44px; align-items: start; }.product-detail-cover { margin: 10px 0 32px; padding: 20px; background: #f7f9fc; border-radius: 8px; text-align: center; }.product-detail-cover img { max-height: 420px; width: auto; margin: auto; object-fit: contain; }.product-tagline { margin: 5px 0 17px; color: var(--docs-text); font-size: 17px; }.product-identifiers { display: flex; flex-wrap: wrap; gap: 18px; color: var(--docs-text); font-size: 13px; }.product-identifiers span { display: inline-flex; gap: 7px; }.product-identifiers b { color: var(--docs-ink); }.product-info-section { padding: 27px 0; border-bottom: 1px solid var(--docs-line); }.product-info-section h2 { margin-bottom: 15px; color: var(--docs-ink); font-size: 21px; }.spec-table { overflow: hidden; border: 1px solid var(--docs-line); border-radius: 6px; }.spec-row { display: grid; grid-template-columns: 35% 65%; border-bottom: 1px solid var(--docs-line); }.spec-row:last-child { border-bottom: 0; }.spec-row > * { padding: 11px 14px; }.spec-row b { background: #f8fafc; color: var(--docs-muted); font-size: 13px; }.spec-row span { color: #344054; }.product-contact-box { display: flex; justify-content: space-between; align-items: center; gap: 20px; margin-top: 30px; padding: 22px; border-radius: 8px; background: var(--docs-ink); color: #fff; }.product-contact-box strong { font-size: 16px; }.product-contact-box p { margin-top: 4px; color: #b9c5d8; font-size: 13px; }.product-contact-box .btn { flex-shrink: 0; background: var(--docs-blue); }.toc-card, .download-card { display: flex; flex-direction: column; gap: 10px; padding: 17px; border: 1px solid var(--docs-line); border-radius: 7px; background: #fff; }.toc-card { position: sticky; top: 90px; }.toc-card strong { color: var(--docs-ink); margin-bottom: 4px; }.toc-card a { color: var(--docs-muted); font-size: 13px; }.toc-card a:hover { color: var(--docs-blue); }.download-card { margin-top: 14px; color: var(--docs-ink); }.download-card span { color: var(--docs-blue); font-size: 22px; }.download-card small { color: var(--docs-muted); }

.documentation-placeholder { display: none; }

/* 产品资料列表 */
.wiki-product-list .wiki-card h2 { margin-bottom: 8px; }
.wiki-product-list .product-model { margin-bottom: 6px; }

/* ---------- Footer ---------- */
.site-footer {
    background: var(--docs-ink);
    color: #c3cde0;
    margin-top: 48px;
}

.footer-inner {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 32px;
    padding: 48px 20px;
}

.footer-col h3 {
    color: #fff;
    font-size: 16px;
    margin-bottom: 14px;
}

.footer-col p {
    margin-bottom: 12px;
    font-size: 14px;
}

.footer-links li {
    margin-bottom: 6px;
}

.footer-links a {
    color: #c3cde0;
}

.footer-links a:hover {
    color: #fff;
}

.footer-links .footer-links {
    margin-left: 14px;
    margin-top: 6px;
}

.subscribe-form input {
    display: block;
    width: 100%;
    height: 38px;
    margin-bottom: 10px;
    padding: 0 12px;
    border: 1px solid #3a4a68;
    border-radius: 6px;
    background: #243452;
    color: #fff;
    font-size: 14px;
}

.subscribe-form input::placeholder {
    color: #8fa0bf;
}

.subscribe-form button {
    height: 38px;
    padding: 0 20px;
    border: none;
    border-radius: 6px;
    background: var(--docs-blue);
    color: #fff;
    cursor: pointer;
    font-size: 14px;
}

.subscribe-form button:hover {
    background: var(--docs-blue-dark);
}

.subscribe-message {
    margin-top: 10px;
    font-size: 14px;
}

.subscribe-message.success {
    color: var(--docs-success);
}

.subscribe-message.error {
    color: var(--docs-error);
}

.footer-bottom {
    border-top: 1px solid #2b3a56;
    padding: 18px 0;
    text-align: center;
    font-size: 14px;
}

/* ---------- Responsive ---------- */
@media (max-width: 768px) {
    .header-inner {
        flex-wrap: wrap;
        height: auto;
        padding: 12px 20px;
    }

    .nav-toggle {
        display: block;
    }

    .main-nav {
        flex-basis: 100%;
        order: 3;
        display: none;
    }

    .main-nav.open {
        display: block;
    }

    .main-nav > ul {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
    }

    .main-nav .dropdown {
        position: static;
        box-shadow: none;
        border: none;
        padding-left: 14px;
    }

    .header-search {
        margin-left: auto;
    }

    .header-search input {
        width: 140px;
    }

    .detail-main {
        flex-direction: column;
    }

    .gallery {
        max-width: none;
    }

    .gallery-main {
        height: 300px;
    }

    .page-layout {
        flex-direction: column;
    }

    .sidebar {
        width: 100%;
    }

    .wiki-hero h1 { font-size: 32px; }
    .wiki-search { display: block; padding: 8px; }
    .wiki-search input { width: 100%; margin-bottom: 8px; }
    .wiki-search button { width: 100%; height: 42px; }
    .wiki-shell { display: block; padding-top: 24px; }
    .wiki-sidebar { margin-bottom: 34px; }
    .product-directory { grid-template-columns: 1fr; }
    .results-heading { align-items: start; flex-direction: column; }
    .product-detail-grid { display: block; }
    .product-toc { display: none; }
    .product-contact-box { align-items: stretch; flex-direction: column; }
    .product-contact-box .btn { text-align: center; }
}

/* ---------- Inquiry form ---------- */
.inquiry-form .inquiry-row {
    display: flex;
    gap: 14px;
    margin-bottom: 14px;
}

.inquiry-form .inquiry-row .inquiry-field {
    flex: 1;
}

.inquiry-form .inquiry-field {
    margin-bottom: 14px;
}

.inquiry-form .inquiry-field label {
    display: block;
    margin-bottom: 6px;
    font-weight: 500;
    color: var(--docs-ink);
}

.inquiry-form .inquiry-field input,
.inquiry-form .inquiry-field textarea {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #cfd7e5;
    border-radius: 6px;
    font-size: 14px;
    font-family: inherit;
}

.inquiry-form .inquiry-field input:focus,
.inquiry-form .inquiry-field textarea:focus {
    outline: none;
    border-color: var(--docs-blue);
}

.inquiry-form .inquiry-field textarea {
    resize: vertical;
    min-height: 100px;
}

.inquiry-message {
    margin-top: 10px;
    font-size: 14px;
}

.inquiry-message.success {
    color: var(--docs-success);
}

.inquiry-message.error {
    color: var(--docs-error);
}

/* ---------- Inquiry modal ---------- */
.inquiry-modal {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.inquiry-modal.open {
    display: flex;
}

.inquiry-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
}

.inquiry-modal-dialog {
    position: relative;
    width: 100%;
    max-width: 720px;
    max-height: 90vh;
    overflow-y: auto;
    background: #fff;
    border-radius: 12px;
    padding: 32px;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.24);
}

.inquiry-modal-close {
    position: absolute;
    top: 12px;
    right: 14px;
    border: none;
    background: none;
    font-size: 26px;
    line-height: 1;
    cursor: pointer;
    color: var(--docs-muted);
}

.inquiry-modal-close:hover {
    color: var(--docs-ink);
}

.inquiry-modal-title {
    font-size: 22px;
    color: var(--docs-ink);
    margin-bottom: 20px;
    padding-right: 24px;
}

/* ---------- Inquiry floating button ---------- */
.inquiry-fab {
    position: fixed;
    right: 0;
    top: 80%;
    transform: translateY(-50%);
    z-index: 900;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border: none;
    border-radius: 50%;
    background: var(--docs-blue);
    color: #fff;
    cursor: pointer;
    box-shadow: 0 6px 18px rgba(36, 87, 197, 0.28);
}

.inquiry-fab:hover {
    background: var(--docs-blue-dark);
}

/* ---------- Contact page ---------- */
.contact-layout {
    display: flex;
    gap: 40px;
}

.contact-info {
    flex: 1;
    max-width: 340px;
}

.contact-intro {
    color: var(--docs-text);
    margin-bottom: 20px;
}

.contact-item {
    margin-bottom: 18px;
}

.contact-item h3 {
    font-size: 15px;
    color: var(--docs-ink);
    margin-bottom: 4px;
}

.contact-item p {
    color: var(--docs-text);
}

.contact-form {
    flex: 1.4;
    min-width: 0;
    border: 1px solid var(--docs-line);
    border-radius: 10px;
    padding: 24px;
    background: var(--docs-surface);
}

.contact-form-title {
    font-size: 20px;
    color: var(--docs-ink);
    margin-bottom: 18px;
}

.detail-actions {
    margin-top: 20px;
}

@media (max-width: 768px) {
    .contact-layout {
        flex-direction: column;
    }

    .contact-info {
        max-width: none;
    }

    .inquiry-form .inquiry-row {
        flex-direction: column;
        gap: 0;
    }
}

/* ---------- Product Wiki documentation theme ---------- */
:root {
    --docs-ink: #172033;
    --docs-text: #465268;
    --docs-muted: #68758a;
    --docs-line: #e4e8ef;
    --docs-blue: #2457c5;
    --docs-blue-dark: #1d46a0;
    --docs-blue-soft: #edf3ff;
    --docs-surface: #f7f9fc;
    --docs-hover: #fbfcfe;
    --docs-success: #288a5b;
    --docs-error: #c84b4b;
}
body { color: var(--docs-ink); background: #fff; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
.docs-header { position: sticky; top: 0; z-index: 100; border-bottom: 1px solid var(--docs-line); background: rgba(255,255,255,.96); backdrop-filter: blur(8px); }
.docs-header-inner { display: flex; align-items: center; gap: 34px; height: 66px; }
.docs-header .brand { flex: 0 0 auto; color: var(--docs-ink); font-size: 21px; font-weight: 700; }
.docs-header .brand img { max-height: 38px; width: auto; }
.docs-nav { display: flex; align-items: center; gap: 25px; flex: 1; }
.docs-nav a { color: #596579; font-size: 14px; }.docs-nav a:hover, .docs-nav a.active { color: var(--docs-blue); }
.docs-header-search { display: flex; flex: 0 1 270px; width: 270px; min-width: 190px; height: 38px; margin-left: auto; overflow: hidden; border: 1px solid #d7dde7; border-radius: 5px; background: #fff; }
.docs-header-search input { flex: 1 1 auto; width: auto; min-width: 0; height: 100%; border: 0; outline: 0; padding: 0 11px; color: var(--docs-ink); font: inherit; }.docs-header-search input::placeholder { color: #8b96a7; opacity: 1; }.docs-header-search button { flex: 0 0 40px; width: 40px; height: 100%; padding: 0; border: 0; border-left: 1px solid #e2e6ed; background: #fff; color: var(--docs-blue); cursor: pointer; }.docs-header-search button svg { display: block; width: 16px; height: 16px; margin: auto; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.docs-intro { border-bottom: 1px solid var(--docs-line); background: var(--docs-surface); }.docs-intro-inner { padding: 54px 20px 48px; }.docs-intro h1 { margin: 9px 0 10px; color: var(--docs-ink); font-size: 38px; letter-spacing: -.8px; }.docs-intro p { margin-bottom: 24px; color: var(--docs-muted); font-size: 16px; }.docs-search { display: flex; width: min(670px, 100%); height: 48px; border: 1px solid #cfd7e5; border-radius: 5px; background: #fff; box-shadow: 0 2px 5px rgba(30,50,80,.04); }.docs-search input { flex: 1; min-width: 0; padding: 0 15px; border: 0; outline: 0; color: var(--docs-ink); font: inherit; }.docs-search button { padding: 0 18px; border: 0; border-radius: 0 4px 4px 0; background: var(--docs-blue); color: #fff; font-weight: 600; cursor: pointer; }.docs-search-hint { margin-top: 9px; color: #8a96a8; font-size: 12px; }
.docs-layout { display: grid; grid-template-columns: 224px minmax(0, 1fr); gap: 52px; padding-top: 36px; padding-bottom: 72px; }.docs-sidebar { min-width: 0; }.sidebar-heading { margin-bottom: 12px; color: var(--docs-ink); font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: .6px; }.sidebar-all { display: flex; justify-content: space-between; margin-bottom: 8px; padding: 9px 10px; border-radius: 4px; color: var(--docs-muted); font-size: 14px; }.sidebar-all span { color: var(--docs-muted); font-size: 12px; }.sidebar-all.active { background: var(--docs-blue-soft); color: var(--docs-blue); font-weight: 600; }.docs-sidebar .category-nav > li > a { display: flex; justify-content: space-between; padding: 8px 10px; border-radius: 4px; color: var(--docs-muted); font-size: 14px; }.docs-sidebar .category-nav > li > a span:last-child { color: #a5afbe; font-size: 12px; }.docs-sidebar .category-nav > li > a:hover, .docs-sidebar .category-nav > li > a.active { background: var(--docs-blue-soft); color: var(--docs-blue); }.docs-sidebar .category-nav-children { margin-left: 12px; }.docs-sidebar .category-nav-children a { display: flex; justify-content: space-between; padding: 6px 10px; color: #7a8698; font-size: 13px; }.docs-sidebar-note { margin-top: 25px; padding: 14px; border-top: 1px solid var(--docs-line); color: var(--docs-muted); font-size: 12px; line-height: 1.6; }.docs-sidebar-note strong { color: var(--docs-ink); font-size: 13px; }.docs-sidebar-note p { margin-top: 5px; }
.docs-content { min-width: 0; }.docs-content .breadcrumb, .docs-product-page .breadcrumb { margin-bottom: 20px; color: #8b96a7; }.docs-content .breadcrumb a, .docs-product-page .breadcrumb a { color: var(--docs-blue); }.docs-list-heading { display: flex; align-items: end; justify-content: space-between; gap: 20px; margin-bottom: 22px; }.docs-list-heading h2 { margin: 4px 0 5px; color: var(--docs-ink); font-size: 26px; }.docs-list-heading p { color: var(--docs-muted); font-size: 14px; }.result-count { color: #8b96a7; font-size: 13px; white-space: nowrap; }
.product-reference-list { border-top: 1px solid var(--docs-line); }.product-reference-row { display: grid; grid-template-columns: 86px minmax(0, 1fr) 190px 22px; align-items: center; gap: 18px; min-height: 132px; padding: 17px 7px; border-bottom: 1px solid var(--docs-line); }.product-reference-row:hover { background: #fbfcfe; }.reference-thumb { display: grid; place-items: center; width: 86px; height: 86px; overflow: hidden; border: 1px solid #e4e8ef; border-radius: 4px; background: var(--docs-surface); color: var(--docs-blue); font-size: 28px; font-weight: 700; }.reference-thumb img { width: 100%; height: 100%; object-fit: contain; }.reference-category { color: var(--docs-blue); font-size: 11px; font-weight: 700; letter-spacing: .7px; text-transform: uppercase; }.reference-main h3 { margin: 5px 0 5px; color: var(--docs-ink); font-size: 17px; }.reference-main p { display: -webkit-box; overflow: hidden; margin: 0; color: var(--docs-muted); font-size: 13px; line-height: 1.5; -webkit-line-clamp: 2; -webkit-box-orient: vertical; }.reference-meta { display: flex; flex-direction: column; gap: 5px; color: var(--docs-muted); font-size: 12px; }.reference-meta b { display: inline-block; width: 43px; color: #9aa5b5; font-weight: 500; }.reference-arrow { color: #a5afbe; font-size: 20px; }.product-reference-row:hover .reference-arrow { color: var(--docs-blue); }
.docs-product-page { padding-top: 27px; padding-bottom: 72px; }.docs-product-layout { display: grid; grid-template-columns: minmax(0, 820px) 188px; gap: 48px; align-items: start; }.docs-product-header { padding-bottom: 21px; border-bottom: 1px solid var(--docs-line); }.docs-product-header h1 { margin: 7px 0 8px; color: var(--docs-ink); font-size: 34px; letter-spacing: -.5px; }.product-tagline { margin: 0 0 17px; color: var(--docs-muted); font-size: 16px; }.product-identifiers { display: flex; flex-wrap: wrap; gap: 19px; color: var(--docs-muted); font-size: 12px; }.product-identifiers span { display: inline-flex; gap: 6px; }.product-identifiers b { color: #8b96a7; font-weight: 600; }.docs-product-cover { max-height: 330px; margin: 25px 0; padding: 15px; border: 1px solid var(--docs-line); border-radius: 5px; background: var(--docs-surface); text-align: center; }.docs-product-cover img { width: auto; max-height: 300px; margin: auto; object-fit: contain; }.product-gallery { display: flex; gap: 9px; margin: -13px 0 24px; }.product-gallery img { width: 66px; height: 66px; padding: 4px; border: 1px solid var(--docs-line); border-radius: 4px; object-fit: contain; }.product-info-section { padding: 26px 0; border-bottom: 1px solid var(--docs-line); }.product-info-section h2 { margin-bottom: 14px; color: var(--docs-ink); font-size: 21px; }.rich-text { color: #465268; font-size: 14px; line-height: 1.85; }.rich-text p { margin: 0 0 12px; }.rich-text ul, .rich-text ol { margin: 8px 0 14px 20px; }.rich-text li { margin: 4px 0; }.rich-text strong { color: var(--docs-ink); }.spec-table { overflow: hidden; border: 1px solid var(--docs-line); border-radius: 4px; }.spec-row { display: grid; grid-template-columns: 35% 65%; border-bottom: 1px solid var(--docs-line); font-size: 13px; }.spec-row:last-child { border-bottom: 0; }.spec-row > * { padding: 10px 13px; }.spec-row b { background: var(--docs-surface); color: #647187; font-weight: 600; }.spec-row span { color: #344054; }.docs-question { display: flex; justify-content: space-between; align-items: center; gap: 20px; margin-top: 29px; padding: 17px 19px; border: 1px solid #d8e1f1; border-radius: 5px; background: #f5f8ff; }.docs-question strong { color: var(--docs-ink); font-size: 14px; }.docs-question p { margin-top: 4px; color: var(--docs-muted); font-size: 12px; }.docs-question-button { flex-shrink: 0; padding: 9px 14px; border: 1px solid #b8c9eb; border-radius: 4px; background: #fff; color: var(--docs-blue); font: inherit; font-size: 13px; font-weight: 600; cursor: pointer; }.docs-question-button:hover { background: var(--docs-blue); color: #fff; }
.docs-product-sidebar { min-width: 0; }.docs-toc { position: sticky; top: 91px; display: flex; flex-direction: column; gap: 9px; padding-left: 17px; border-left: 1px solid var(--docs-line); }.docs-toc strong { margin-bottom: 3px; color: var(--docs-ink); font-size: 12px; text-transform: uppercase; letter-spacing: .7px; }.docs-toc a { color: #7a8698; font-size: 12px; line-height: 1.35; }.docs-toc a:hover { color: var(--docs-blue); }.docs-download { display: flex; flex-direction: column; gap: 4px; margin-top: 20px; padding: 13px; border: 1px solid var(--docs-line); border-radius: 4px; color: var(--docs-ink); }.docs-download strong { font-size: 12px; }.docs-download span { color: var(--docs-blue); font-size: 11px; }.docs-download:hover { border-color: #b8c9eb; background: var(--docs-blue-soft); }
.docs-footer { border-top: 1px solid var(--docs-line); background: #fbfcfe; color: #7a8698; }.docs-footer-inner { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 35px; padding: 31px 20px; }.docs-footer-inner > div { display: flex; flex-direction: column; gap: 7px; font-size: 12px; }.docs-footer-inner strong { margin-bottom: 4px; color: var(--docs-ink); font-size: 12px; }.docs-footer-brand { color: var(--docs-ink); font-size: 17px; font-weight: 700; }.docs-footer-inner p { margin: 0; }.docs-footer-inner a { color: #7a8698; }.docs-footer-inner a:hover { color: var(--docs-blue); }.docs-footer-bottom { padding: 14px 0; border-top: 1px solid var(--docs-line); font-size: 11px; }
.inquiry-fab { display: none; }

@media (max-width: 768px) {
    .docs-header-inner { flex-wrap: wrap; height: auto; padding: 11px 20px; gap: 14px; }.docs-header .brand { margin-right: auto; }.docs-nav { display: none; order: 3; flex-basis: 100%; }.docs-nav.open { display: flex; flex-direction: column; align-items: stretch; gap: 0; padding: 7px 0; }.docs-nav a { padding: 8px 0; }.docs-header-search { width: 180px; }.docs-intro-inner { padding-top: 39px; }.docs-intro h1 { font-size: 31px; }.docs-search { display: block; height: auto; padding: 6px; }.docs-search input { display: block; width: 100%; height: 40px; }.docs-search button { display: block; width: 100%; height: 40px; border-radius: 4px; }.docs-layout { display: block; padding-top: 25px; }.docs-sidebar { margin-bottom: 34px; }.docs-list-heading { align-items: start; flex-direction: column; }.product-reference-row { grid-template-columns: 64px minmax(0, 1fr) 20px; gap: 12px; min-height: 106px; padding: 13px 0; }.reference-thumb { width: 64px; height: 64px; }.reference-main h3 { font-size: 15px; }.reference-main p { font-size: 12px; }.reference-meta { display: none; }.docs-product-layout { display: block; }.docs-product-sidebar { display: none; }.docs-product-header h1 { font-size: 28px; }.docs-question { align-items: stretch; flex-direction: column; }.docs-question-button { width: 100%; }.docs-footer-inner { grid-template-columns: 1fr 1fr; }.docs-footer-inner > div:first-child { grid-column: 1 / -1; }
}
@media (min-width: 769px) { .nav-toggle { display: none; } }

/* ---------- Documentation home ---------- */
.docs-home-intro { border-bottom: 1px solid var(--docs-line); background: linear-gradient(115deg, #f8fafc 0%, #eef3fb 100%); }
.docs-home-inner { padding: 70px 20px 66px; }.docs-home-inner h1 { margin: 10px 0 16px; color: var(--docs-ink); font-size: 46px; line-height: 1.12; letter-spacing: -1.2px; }.docs-home-inner h1 span { color: var(--docs-blue); }.docs-home-inner p { margin-bottom: 25px; color: var(--docs-muted); font-size: 17px; }.docs-home-search { max-width: 700px; }
.docs-home-body { padding-bottom: 72px; }.docs-stat-strip { display: grid; grid-template-columns: 140px 140px 140px minmax(0, 1fr); gap: 0; margin: 0 0 60px; padding: 21px 0; border-bottom: 1px solid var(--docs-line); }.docs-stat-strip > div { display: flex; flex-direction: column; gap: 3px; padding: 0 20px; border-right: 1px solid var(--docs-line); }.docs-stat-strip > div:first-child { padding-left: 0; }.docs-stat-strip > div:last-child { border-right: 0; }.docs-stat-strip strong { color: var(--docs-ink); font-size: 22px; }.docs-stat-strip span { color: var(--docs-muted); font-size: 12px; }.docs-stat-note { justify-content: center; padding-left: 30px !important; color: var(--docs-muted); font-size: 13px; line-height: 1.5; }
.docs-home-section { padding: 4px 0 55px; }.home-section-heading { display: flex; justify-content: space-between; align-items: end; gap: 20px; margin-bottom: 22px; }.home-section-heading h2 { margin: 5px 0 4px; color: var(--docs-ink); font-size: 25px; }.home-section-heading p { color: var(--docs-muted); font-size: 13px; }.home-section-heading > a { color: var(--docs-blue); font-size: 13px; font-weight: 600; white-space: nowrap; }.docs-category-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 12px; }.docs-category-card { display: flex; flex-direction: column; min-height: 130px; padding: 17px; border: 1px solid var(--docs-line); border-radius: 5px; background: #fff; }.docs-category-card:hover { border-color: #b7c8e8; background: #fbfcff; }.docs-category-number { color: #a7b2c3; font-size: 11px; }.docs-category-card strong { margin-top: auto; color: var(--docs-ink); font-size: 15px; }.docs-category-card > span:last-child { margin-top: 8px; color: #8290a4; font-size: 12px; }.docs-category-card b { float: right; color: var(--docs-blue); font-size: 16px; }.docs-recent-section { padding-top: 0; }.docs-recent-list { border-top: 1px solid var(--docs-line); }.docs-recent-row { display: grid; grid-template-columns: 105px minmax(0, 1fr) 150px 20px; align-items: center; gap: 17px; min-height: 70px; border-bottom: 1px solid var(--docs-line); color: var(--docs-ink); }.docs-recent-row:hover { background: #fbfcfe; }.recent-date { color: var(--docs-muted); font-size: 12px; }.recent-name { display: flex; flex-direction: column; gap: 2px; }.recent-name strong { font-size: 14px; }.recent-name small { color: #8b96a7; font-size: 11px; }.recent-model { color: var(--docs-muted); font-size: 12px; }.recent-arrow { color: #a5afbe; font-size: 18px; }.docs-recent-row:hover .recent-arrow { color: var(--docs-blue); }
.docs-site-label { display: flex; flex-direction: column; gap: 1px; padding-left: 19px; border-left: 1px solid var(--docs-line); white-space: nowrap; }.docs-site-label span { color: #8a96a8; font-size: 9px; font-weight: 700; letter-spacing: 1.2px; }.docs-site-label strong { color: var(--docs-ink); font-size: 11px; letter-spacing: .6px; }.docs-header-meta { display: flex; align-items: center; gap: 6px; color: #8a96a8; font-size: 11px; white-space: nowrap; }.docs-status-dot { width: 6px; height: 6px; border-radius: 50%; background: #39a66b; }
@media (max-width: 1000px) { .docs-header-inner { gap: 18px; }.docs-header-meta { display: none; }.docs-nav { gap: 15px; }.docs-header-search { flex-basis: 205px; width: 205px; }.docs-site-label { display: none; }.docs-category-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 768px) { .docs-home-inner { padding: 48px 20px 42px; }.docs-home-inner h1 { font-size: 34px; }.docs-stat-strip { grid-template-columns: 1fr 1fr; gap: 17px 0; margin-bottom: 40px; }.docs-stat-strip > div:nth-child(2) { border-right: 0; }.docs-stat-note { grid-column: 1 / -1; padding: 14px 0 0 !important; border-top: 1px solid var(--docs-line); border-right: 0 !important; }.home-section-heading { align-items: start; flex-direction: column; }.docs-category-grid { grid-template-columns: 1fr; }.docs-recent-row { grid-template-columns: 78px minmax(0, 1fr) 18px; gap: 10px; }.recent-model { display: none; } }

/* ---------- Category directory ---------- */
.docs-category-page { padding-top: 27px; padding-bottom: 72px; }
.docs-category-page .breadcrumb { margin-bottom: 28px; color: #8b96a7; }
.docs-category-page .breadcrumb a { color: var(--docs-blue); }
.docs-category-directory { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px 18px; }
.docs-category-group { min-width: 0; }
.docs-category-group > .docs-category-card { min-height: 154px; }
.docs-subcategory-list { margin-top: 8px; border-top: 1px solid var(--docs-line); }
.docs-subcategory-row { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 10px 4px; border-bottom: 1px solid var(--docs-line); color: var(--docs-muted); font-size: 13px; }
.docs-subcategory-row:hover { color: var(--docs-blue); }
.docs-subcategory-row > span:last-child { flex-shrink: 0; color: var(--docs-muted); font-size: 11px; }
.docs-subcategory-row b { margin-left: 5px; color: var(--docs-blue); font-size: 14px; }

@media (max-width: 1000px) { .docs-category-directory { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 768px) { .docs-category-page { padding-top: 25px; }.docs-category-directory { grid-template-columns: 1fr; gap: 18px; }.docs-category-group > .docs-category-card { min-height: 130px; } }

/* Keep all public pages and interactive states on the documentation theme. */
.docs-header-search button:hover {
    background: var(--docs-blue-dark);
    color: #fff;
}

.btn,
.inquiry-form button.btn {
    border: 0;
    background: var(--docs-blue);
    color: #fff;
    cursor: pointer;
    transition: background .2s ease, box-shadow .2s ease, transform .2s ease;
}

.btn:hover,
.inquiry-form button.btn:hover {
    background: var(--docs-blue-dark);
    color: #fff;
}

.btn:focus-visible,
.inquiry-fab:focus-visible,
.inquiry-modal-close:focus-visible,
.docs-header-search button:focus-visible,
.docs-search button:focus-visible,
.docs-question-button:focus-visible {
    outline: 3px solid rgba(36, 87, 197, .24);
    outline-offset: 2px;
}

.inquiry-form .inquiry-field input,
.inquiry-form .inquiry-field textarea {
    border-color: #cfd7e5;
    background: #fff;
    color: var(--docs-ink);
    transition: border-color .2s ease, box-shadow .2s ease;
}

.inquiry-form .inquiry-field input:focus,
.inquiry-form .inquiry-field textarea:focus {
    border-color: var(--docs-blue);
    box-shadow: 0 0 0 3px rgba(36, 87, 197, .12);
}

.inquiry-modal-dialog {
    border: 1px solid var(--docs-line);
}

.inquiry-modal-close:hover {
    color: var(--docs-blue);
}

.contact-form {
    border-color: var(--docs-line);
    background: var(--docs-surface);
}

.contact-intro,
.contact-item p,
.rich-text {
    color: var(--docs-text);
}

.error-page .error-code {
    color: var(--docs-blue);
}

.error-page .error-message {
    color: var(--docs-ink);
}

/* Respect the same narrow-screen spacing as the documentation pages. */
@media (max-width: 768px) {
    .inquiry-modal {
        padding: 12px;
    }

    .inquiry-modal-dialog {
        max-height: 92vh;
        padding: 24px 20px;
    }

    .inquiry-fab {
        width: 48px;
        height: 48px;
    }
}

/* Do not show the legacy floating control on documentation pages. */
.docs-header ~ .inquiry-fab {
    display: none;
}

/* The documentation footer is the only footer style used by the active Wiki layout. */
.docs-footer a:hover {
    color: var(--docs-blue);
}

/* Match the standalone content page to the documentation reading surface. */
.page-single {
    color: var(--docs-text);
}

.page-single .page-title {
    color: var(--docs-ink);
}

.page-single .breadcrumb .current {
    color: var(--docs-muted);
}

/* Remove any remaining legacy purple tokens from active styles. */
.inquiry-fab svg {
    display: block;
    width: 24px;
    height: 24px;
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
    }
}

/* Keep every primary action consistent with the documentation blue. */
.docs-search button:hover,
.wiki-search button:hover {
    background: var(--docs-blue-dark);
    color: #fff;
}

.docs-header-search button:hover svg {
    color: #fff;
}

/* Normalize active documentation surfaces that still use legacy utility selectors. */
.docs-content,
.docs-category-page,
.docs-product-page,
.docs-home-body {
    color: var(--docs-text);
}

.docs-content h1,
.docs-content h2,
.docs-content h3,
.docs-category-page h1,
.docs-category-page h2,
.docs-product-page h1,
.docs-product-page h2 {
    color: var(--docs-ink);
}

.docs-content a,
.docs-category-page a,
.docs-product-page a {
    transition: color .2s ease, background-color .2s ease, border-color .2s ease;
}

.docs-category-card:hover,
.product-reference-row:hover,
.docs-recent-row:hover {
    background: var(--docs-hover);
}

.docs-question-button:hover,
.docs-download:hover {
    border-color: #b7c8e8;
}

.docs-question-button:hover {
    background: var(--docs-blue);
    color: #fff;
}

.docs-footer {
    color: var(--docs-muted);
}

.docs-footer-bottom {
    border-top-color: var(--docs-line);
}

@media (max-width: 768px) {
    .docs-header-search button:hover {
        background: #fff;
        color: var(--docs-blue);
    }
}

@media (prefers-contrast: more) {
    .docs-header,
    .docs-footer,
    .docs-category-card,
    .product-reference-row,
    .inquiry-modal-dialog {
        border-color: #9aa8bc;
    }
}
