/* ==================== 坚果碎系列产品页面样式 ==================== */

/* 页面标题横幅 */
.product-banner {
    background: #7a9c3d;
    padding: 25px 0;
    margin-bottom: 40px;
}

.page-title {
    font-size: 36px;
    font-weight: 600;
    color: #fff;
    /*text-align: center;*/
}

/* 产品区域 */
.product-section {
    padding: 0 0 60px;
    background: transparent;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* 产品卡片 */
.product-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    cursor: pointer;
}

.product-card:hover {
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
    transform: translateY(-8px);
}

.product-fullimg {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.4s ease;
}

.product-card:hover .product-fullimg {
    transform: scale(1.03);
}

/* ==================== 响应式设计 ==================== */
@media (max-width: 992px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .page-title {
        font-size: 24px;
    }
}

@media (max-width: 576px) {
    .product-banner {
        padding: 20px 0;
        margin-bottom: 25px;
    }
    
    .page-title {
        font-size: 20px;
    }
    
    .product-section {
        padding: 0 0 40px;
    }
    
    .product-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}
