/*
Theme Name: MOKELING Child
Theme URI: https://mokeling.com
Description: MOKELING 官网子主题
Author: MOKELING
Template: bricks
Version: 1.0.0
*/

/* ============================================
   MOKELING 全站排版规范
   字体：Inter + Noto Sans SC + JetBrains Mono
   背景：#ffffff | 强调色：#0071e3
   ============================================ */

/* 字体回退栈 */
body {
    font-family: "Inter", "Noto Sans SC", system-ui, -apple-system, sans-serif;
    background-color: #ffffff;
    color: #1D1D1F;
    -webkit-font-smoothing: antialiased;
}

/* 产品名称 H1 */
.product-title {
    font-family: "Inter", "Noto Sans SC", sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #1D1D1F;
    line-height: 1.3;
    letter-spacing: -0.02em;
    margin: 0 0 8px 0;
}
@media (max-width: 768px) {
    .product-title { font-size: 22px; }
}

/* 产品型号 */
.product-model {
    font-family: "JetBrains Mono", monospace;
    font-size: 13px;
    font-weight: 500;
    color: #6E6E73;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin: 0 0 6px 0;
    display: block;
}

/* 参数表区域标题 */

/* 参数表内容 */
.mkl-spec-name {
    font-family: "Inter", "Noto Sans SC", sans-serif;
    font-size: 14px;
    color: #6E6E73;
}
.mkl-spec-value {
    font-family: "Inter", "Noto Sans SC", sans-serif;
    font-size: 14px;
    color: #1D1D1F;
}
/* 去掉按钮点击后的 focus 蓝框 */
.mkl-btn:focus { outline: none; }

/* 全站容器最大宽度，从 958px 扩展到 1200px，建议范围 1100–1440px */
.brxe-container {
    max-width: 1200px !important;
}

/* 产品详情页图片列宽度，建议范围 50–65% */
.product-gallery {
    flex: 0 0 56% !important;
    max-width: 56% !important;
}

/* 产品详情页左右两列间距，建议范围 32–60px */
.product-hero {
    gap: 48px !important;
}


/* 页面最小宽度，防止窄窗口布局破坏；单一来源（product-list.css 注释引用此处） */
html, body { min-width: 1200px; }
