/* Products Page 专用样式 */

.products-page {
    background: #fff;
}

.products-hero {
    margin-bottom: 30px;
}

.products-hero .hero-image {
    width: 100%;
    max-width: 1920px;
}

.products-banner {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #fff;
    overflow: hidden;
    margin-top: 30px;
}

.products-banner img {
    width: 70%;
    max-width: 1344px;
    height: auto;
    display: block;
    object-fit: contain;
    margin: 0 auto;
}

.products-banner-4 img {
    width: 50%;
    max-width: 960px; /* 1920 的 50% */
}

.products-banner-5 img {
    width: 25%;
    max-width: 480px; /* 1920 的 25% */
}

.products-banner-2 img {
    width: 40%;
    max-width: 768px; /* 1920 的 40% */
}

.products-text-section {
    padding: 40px 20px 10px;
    text-align: center;
    background: #fff;
}

.products-text {
    font-family: 'Noto Serif SC', '思源宋体', serif;
    font-size: 18px;
    font-weight: 500;
    color: #333;
}

.products-list-section {
    padding: 10px 20px 60px;
    background: #fff;
}

.products-grid {
    display: flex;
    flex-direction: column;
    gap: 0;
    max-width: 1200px;
    margin: 0 auto;
    border-top: 1px solid #999;
}

.product-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 20px;
    padding: 24px 0;
    border-bottom: 1px solid #999;
}

.product-item {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}

.product-item img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

.product-info {
    text-align: center;
    margin-top: 16px;
    padding: 0 10px 20px;
    max-width: 260px;
    margin-left: auto;
    margin-right: auto;
}

.product-name {
    font-family: 'Noto Serif SC', '思源宋体', serif;
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 6px;
}

.product-desc {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.6;
    color: #505050;
    margin-bottom: 2px;
}

.product-price {
    font-size: 16px;
    font-weight: 600;
    color: #8B4513;
    margin-top: 6px;
}

.product-price .product-price-num {
    font-size: 2em;
    font-weight: inherit;
}

/* 移动端样式（仅产品页） */
@media (max-width: 800px) {
    .products-list-section {
        padding: 30px 15px 40px;
    }

    .product-row {
        grid-template-columns: repeat(2, 1fr);
        row-gap: 15px;
    }

    .product-name {
        font-size: 15px;
    }

    .product-desc {
        font-size: 13px;
    }

    .product-price {
        font-size: 15px;
    }

    .product-price .product-price-num {
        font-size: 2em;
    }
}

/* PC 端产品列表布局 */
@media (min-width: 801px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

