/* product-detail.css - products/ 产品内页专用样式 */

/* ============================
   面包屑（与 contact/about/solution 统一）
   ============================ */
.prd-breadcrumb {
    background: #f8fafc;
    border-bottom: 1px dashed #e2e8f0;
}
.prd-breadcrumb .container {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    height: 52px;
    font-size: 0.875rem;
    color: #64748b;
}
.prd-breadcrumb a {
    color: #64748b;
    text-decoration: none;
    transition: color 0.25s ease;
}
.prd-breadcrumb a:hover {
    color: #0284c7;
}
.prd-breadcrumb__sep {
    color: #cbd5e1;
    user-select: none;
}
.prd-breadcrumb__current {
    color: #334155;
}

/* ============================
   内容区：面包屑与正文间距
   用 ::before 撑出灰色过渡区
   ============================ */
.why-choose-us {
    position: relative;
    overflow: visible !important;
}
.why-choose-us::before {
    content: '';
    display: block;
    height: 25px;
    background-color: #f8f8f8;
}
