/* ============================================
   Simple B2B Products - 前端样式
   工业简约风格 (Industrial Minimalist)
   ============================================ */

   :root {
    --sbp-primary: #1a2b4b;
    --sbp-accent: #d9232e;
    --sbp-text: #333333;
    --sbp-text-light: #666666;
    --sbp-bg-light: #f8f9fa;
    --sbp-border: #e0e0e0;
    --sbp-sidebar-width: 280px;
    --sbp-sidebar-bg: #ffffff;
    --sbp-sidebar-header-bg: #5a8a8a;
    --sbp-sidebar-hover: #f5f7fa;
    --sbp-sidebar-active: #eef3f8;
}

.sbp-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

/* ============================================
   产品列表页 - 左右布局
   ============================================ */

.sbp-products-wrapper.sbp-layout-sidebar {
    max-width: 1400px;
    margin: 0 auto;
    padding: 30px 20px;
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

/* 移动端筛选按钮 - 桌面端隐藏 */
.sbp-mobile-filter-btn {
    display: none;
}

/* 遮罩层 - 桌面端隐藏 */
.sbp-sidebar-overlay {
    display: none;
}

/* ============================================
   左侧分类导航侧边栏
   ============================================ */

.sbp-sidebar {
    width: var(--sbp-sidebar-width);
    min-width: var(--sbp-sidebar-width);
    flex-shrink: 0;
    background: var(--sbp-sidebar-bg);
    border: 1px solid var(--sbp-border);
    border-radius: 6px;
    overflow: hidden;
    position: sticky;
    top: 100px;
}

.sbp-sidebar-header {
    background: var(--sbp-sidebar-header-bg);
    padding: 14px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.sbp-sidebar-title {
    margin: 0;
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    letter-spacing: 0.5px;
}

/* 关闭按钮 - 桌面端隐藏 */
.sbp-sidebar-close {
    display: none;
}

.sbp-sidebar-nav {
    padding: 0;
}

.sbp-sidebar-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.sbp-sidebar-list ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

/* 分类项 */
.sbp-sidebar-item {
    border-bottom: 1px solid #f0f0f0;
}

.sbp-sidebar-item:last-child {
    border-bottom: none;
}

.sbp-sidebar-link-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.sbp-sidebar-link {
    flex: 1;
    display: block;
    padding: 12px 18px;
    color: var(--sbp-text);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.15s ease;
    line-height: 1.4;
}

.sbp-sidebar-link:hover {
    color: var(--sbp-sidebar-header-bg);
    background: var(--sbp-sidebar-hover);
}

/* 当前激活项 */
.sbp-sidebar-item.current > .sbp-sidebar-link-wrap .sbp-sidebar-link {
    color: var(--sbp-sidebar-header-bg);
    font-weight: 600;
    background: var(--sbp-sidebar-active);
}

/* 顶级分类加粗 */
.sbp-sidebar-item.sbp-sidebar-top > .sbp-sidebar-link-wrap .sbp-sidebar-link {
    font-weight: 600;
    font-size: 14px;
}

/* 展开/折叠按钮 */
.sbp-sidebar-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 100%;
    min-height: 42px;
    border: none;
    background: transparent;
    cursor: pointer;
    color: #aaa;
    transition: all 0.2s ease;
    flex-shrink: 0;
    padding: 0;
}

.sbp-sidebar-toggle:hover {
    color: var(--sbp-sidebar-header-bg);
    background: var(--sbp-sidebar-hover);
}

.sbp-sidebar-toggle svg {
    transition: transform 0.25s ease;
}

/* 展开状态箭头旋转 */
.sbp-sidebar-item.open > .sbp-sidebar-link-wrap .sbp-sidebar-toggle svg {
    transform: rotate(90deg);
}

/* 子级分类缩进 */
.sbp-sidebar-children {
    background: #fafbfc;
    overflow: hidden;
}

.sbp-sidebar-children .sbp-sidebar-link {
    padding-left: 36px;
    font-size: 13px;
    font-weight: 400;
    color: var(--sbp-text-light);
}

.sbp-sidebar-children .sbp-sidebar-children .sbp-sidebar-link {
    padding-left: 52px;
    font-size: 12.5px;
}

.sbp-sidebar-children .sbp-sidebar-item {
    border-bottom-color: #eef0f2;
}

/* 全部产品项 */
.sbp-sidebar-all > .sbp-sidebar-link-wrap .sbp-sidebar-link {
    font-weight: 600;
}

/* ============================================
   右侧产品内容区
   ============================================ */

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

/* 产品网格 - 通用 3 列 */
.sbp-products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 60px;
}

/* ============================================
   产品卡片（保持原有风格）
   ============================================ */

.sbp-product-card {
    transition: all 0.3s ease;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    border-radius: 6px;
    border: 1px solid #ddd;
}

.sbp-product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 10px rgba(0,0,0,0.1);
}

.sbp-product-image {
    position: relative;
    padding-top: 66.67%;
    overflow: hidden;
    border-bottom: 1px solid #ddd;
}

.sbp-product-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.1s cubic-bezier(0.215, 0.61, 0.355, 1);
    opacity: 0.9;
}

.sbp-product-card:hover .sbp-product-image img {
    transform: scale(1.05);
    opacity: 1;
}

.sbp-product-image a {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.sbp-product-info {
    padding: 20px 15px;
    background: #fff;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.sbp-product-title {
    margin: 0 0 10px 0;
    font-size: 18px !important;
    font-weight: 700;
    color: #333;
    text-align: left;
    line-height: 1.3;
    padding: 0;
}

.sbp-product-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s;
    display: block;
}

.sbp-product-title a:hover {
    color: #3498db;
}

.sbp-product-desc {
    font-size: 13px;
    color: #999;
    line-height: 1.6;
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-align: left;
}

.sbp-product-more {
    margin-top: auto;
    text-align: left;
}

.sbp-product-more a {
    color: #3498db;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 1px;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
}

.sbp-product-more a:hover {
    transform: translateX(5px);
}

/* 分页 */
.sbp-pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 60px;
}

.sbp-pagination a,
.sbp-pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    background: #fff;
    border: 1px solid #ddd;
    color: var(--sbp-text);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.2s ease;
}

.sbp-pagination a:hover {
    border-color: var(--sbp-primary);
    color: var(--sbp-primary);
}

.sbp-pagination .current {
    background: var(--sbp-primary);
    color: #fff;
    border-color: var(--sbp-primary);
}

/* 无产品提示 */
.sbp-no-products {
    text-align: center;
    padding: 100px 20px;
    color: var(--sbp-text-light);
    font-size: 16px;
    background: #f9f9f9;
}

/* ============================================
   产品详情页样式（保持不变）
   ============================================ */

.sbp-single-product {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
}

.sbp-product-main {
    display: grid;
    grid-template-columns: 55% 40%;
    gap: 5%;
    margin-bottom: 80px;
}

.sbp-product-images {
    position: sticky;
    top: 40px;
}

/* 主图容器 */
.sbp-main-image-wrap {
    position: relative;
    margin-bottom: 15px;
    border-radius: 6px;
    overflow: hidden;
    background: #f9f9f9;
}

.sbp-main-image {
    cursor: zoom-in;
    position: relative;
    padding-top: 66.67%;
}

.sbp-main-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: opacity 0.3s ease;
}

/* 左右箭头 */
.sbp-gallery-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border: none;
    background: rgba(255, 255, 255, 0.85);
    color: #333;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.25s ease;
    z-index: 2;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
    padding: 0;
}

.sbp-main-image-wrap:hover .sbp-gallery-arrow {
    opacity: 1;
}

.sbp-gallery-arrow:hover {
    background: #fff;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
}

.sbp-arrow-prev { left: 12px; }
.sbp-arrow-next { right: 12px; }

/* 图片计数器 */
.sbp-gallery-counter {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background: rgba(0, 0, 0, 0.55);
    color: #fff;
    font-size: 12px;
    padding: 3px 10px;
    border-radius: 12px;
    z-index: 2;
    pointer-events: none;
}

/* 缩略图条 */
.sbp-gallery-thumbnails {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 4px;
    scrollbar-width: thin;
    scrollbar-color: #ccc transparent;
}

.sbp-gallery-thumbnails::-webkit-scrollbar {
    height: 4px;
}

.sbp-gallery-thumbnails::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 2px;
}

.sbp-gallery-thumbnail {
    width: 72px;
    height: 72px;
    min-width: 72px;
    cursor: pointer;
    border: 2px solid transparent;
    border-radius: 4px;
    overflow: hidden;
    transition: all 0.2s ease;
    background: #f9f9f9;
}

.sbp-gallery-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
    transition: opacity 0.2s;
}

.sbp-gallery-thumbnail:hover img,
.sbp-gallery-thumbnail.active img {
    opacity: 1;
}

.sbp-gallery-thumbnail.active {
    border-color: var(--sbp-primary);
}

/* ============================================
   Lightbox 全屏查看
   ============================================ */

.sbp-lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
    align-items: center;
    justify-content: center;
}

.sbp-lightbox.active {
    display: flex;
}

.sbp-lightbox-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.92);
}

.sbp-lightbox-close {
    position: absolute;
    top: 20px;
    right: 24px;
    background: none;
    border: none;
    color: #fff;
    font-size: 36px;
    cursor: pointer;
    z-index: 3;
    line-height: 1;
    opacity: 0.7;
    transition: opacity 0.2s;
    padding: 0;
}

.sbp-lightbox-close:hover {
    opacity: 1;
}

.sbp-lightbox-content {
    position: relative;
    z-index: 2;
    max-width: 90vw;
    max-height: 85vh;
}

.sbp-lightbox-content img {
    max-width: 90vw;
    max-height: 85vh;
    display: block;
    object-fit: contain;
    border-radius: 4px;
}

.sbp-lightbox-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border: none;
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    opacity: 0.7;
    transition: all 0.2s;
    padding: 0;
}

.sbp-lightbox-arrow:hover {
    background: rgba(255, 255, 255, 0.3);
    opacity: 1;
}

.sbp-lightbox-prev { left: 20px; }
.sbp-lightbox-next { right: 20px; }

.sbp-lightbox-counter {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    z-index: 3;
}

.sbp-product-details {
    padding-top: 10px;
}

.sbp-product-details h1 {
    margin: 0 0 30px 0;
    font-size: 32px;
    font-weight: 700;
    color: var(--sbp-text);
    line-height: 1.2;
}

.sbp-product-meta {
    margin-bottom: 30px;
    border-top: 1px solid var(--sbp-border);
    border-bottom: 1px solid var(--sbp-border);
    padding: 20px 0;
}

.sbp-product-meta-item {
    margin-bottom: 15px;
    font-size: 16px;
    color: var(--sbp-text-light);
    display: flex;
}

.sbp-product-meta-item strong {
    color: var(--sbp-text);
    font-weight: 600;
    width: 80px;
    flex-shrink: 0;
}

.sbp-product-short-desc {
    font-size: 16px;
    color: var(--sbp-text-light);
    line-height: 1.8;
    margin-bottom: 30px;
    margin-top: 20px;
}

.sbp-product-categories {
    margin-top: 20px;
    display: flex;
    gap: 10px;
}

.sbp-product-categories a {
    display: inline-block;
    padding: 6px 12px;
    background: #f0f4f8;
    color: var(--sbp-primary);
    text-decoration: none;
    font-size: 13px;
    transition: all 0.2s ease;
    border-radius: 4px;
}

.sbp-product-categories a:hover {
    background: var(--sbp-primary);
    color: #fff;
}

.sbp-contact-section {
    margin-top: 30px;
    padding: 20px;
    background: #f8f9fa;
    border-left: 4px solid var(--sbp-primary);
}

.sbp-contact-title {
    font-size: 14px;
    color: var(--sbp-text-light);
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.sbp-contact-phone {
    font-size: 24px;
    font-weight: 700;
    color: var(--sbp-primary);
    line-height: 1.2;
}

.sbp-contact-link {
    display: inline-block;
    margin-top: 10px;
    color: var(--sbp-accent);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
}

.sbp-contact-link:hover {
    text-decoration: underline;
}

.sbp-product-content {
    margin-top: 60px;
}

.sbp-product-content-title {
    font-size: 22px;
    font-weight: 600;
    color: var(--sbp-text);
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
    border-bottom: 1px solid #e0e0e0;
}

.sbp-product-content-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--sbp-primary);
}

.sbp-product-content-body {
    font-size: 16px;
    line-height: 1.8;
    color: var(--sbp-text);
    max-width: 900px;
}

.sbp-product-content-body p {
    margin-bottom: 20px;
}

.sbp-product-content-body img {
    max-width: 100%;
    height: auto;
    margin: 30px 0;
    display: block;
}

.sbp-product-content-body table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
    font-size: 15px;
}

.sbp-product-content-body th,
.sbp-product-content-body td {
    padding: 12px 20px;
    border: 1px solid #e0e0e0;
    text-align: left;
}

.sbp-product-content-body th {
    background: #f8f9fa;
    color: var(--sbp-primary);
    font-weight: 600;
    width: 25%;
}

.sbp-related-products {
    margin-top: 80px;
    padding-top: 60px;
    border-top: 1px solid var(--sbp-border);
}

.sbp-related-products h2 {
    margin: 20px 0;
    font-size: 16px;
    font-weight: 600;
    color: var(--sbp-text);
    text-align: center;
}
.sbp-related-products > h2 {
    font-size: 24px;
}

/* 相关产品 PC 端 4 列 */
.sbp-related-grid {
    grid-template-columns: repeat(4, 1fr);
}

/* ============================================
   响应式设计
   ============================================ */

/* 平板竖屏 */
@media (max-width: 1024px) {
    .sbp-products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .sbp-product-main {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .sbp-product-images {
        position: static;
        max-width: 600px;
        margin: 0 auto;
		width: 100%;
    }
}

/* 手机端：侧边栏变为抽屉 */
@media (max-width: 768px) {
    .sbp-products-wrapper.sbp-layout-sidebar {
        flex-direction: column;
        padding: 20px 15px;
        gap: 0;
    }

    /* 移动端筛选按钮 */
    .sbp-mobile-filter-btn {
        display: flex;
        align-items: center;
        gap: 8px;
        width: 100%;
        padding: 12px 16px;
        margin-bottom: 20px;
        background: #fff;
        border: 1px solid var(--sbp-border);
        border-radius: 6px;
        font-size: 14px;
        font-weight: 600;
        color: var(--sbp-text);
        cursor: pointer;
        transition: all 0.2s;
    }

    .sbp-mobile-filter-btn:hover {
        border-color: var(--sbp-sidebar-header-bg);
        color: var(--sbp-sidebar-header-bg);
    }

    /* 遮罩层 */
    .sbp-sidebar-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.5);
        z-index: 9998;
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .sbp-sidebar-overlay.active {
        display: block;
        opacity: 1;
    }

    /* 侧边栏抽屉模式 */
    .sbp-sidebar {
        position: fixed;
        top: 0;
        left: -320px;
        width: 300px;
        min-width: 300px;
        height: 100vh;
        z-index: 9999;
        border-radius: 0;
        border: none;
        overflow-y: auto;
        transition: left 0.3s ease;
        box-shadow: none;
    }

    .sbp-sidebar.active {
        left: 0;
        box-shadow: 4px 0 20px rgba(0, 0, 0, 0.15);
    }

    /* 关闭按钮 - 移动端显示 */
    .sbp-sidebar-close {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 32px;
        height: 32px;
        border: none;
        background: rgba(255, 255, 255, 0.2);
        border-radius: 4px;
        cursor: pointer;
        color: #fff;
        padding: 0;
        transition: background 0.2s;
    }

    .sbp-sidebar-close:hover {
        background: rgba(255, 255, 255, 0.3);
    }

    .sbp-main-content {
        width: 100%;
    }

    .sbp-products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .sbp-product-title {
        font-size: 14px;
    }

    .sbp-single-product {
        padding: 30px 20px;
    }

    .sbp-product-details h1 {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .sbp-products-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .sbp-product-title {
        font-size: 16px;
    }
}
