/* 产品展示区域 */
.products-showcase {
    padding: 80px 0;
    background: transparent;
}

.product-row {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 80px;
}

.product-row:last-child {
    margin-bottom: 0;
}

.product-row.reverse {
    flex-direction: row-reverse;
}

.product-info {
    flex: 1;
}

.product-title {
    font-size: 28px;
    color: #333;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
}

.product-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px;
    height: 3px;
    background: var(--primary-color);
}

.product-desc {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 30px;
}

.product-image {
    flex: 1;
    max-width: 600px;
}

.product-image img {
    width: 100%;
    height: auto;
    border-radius: 0;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

/* 响应式调整 */
@media (max-width: 992px) {
    .products-showcase {
        padding: 60px 0;
    }
    
    .product-row {
        gap: 40px;
        margin-bottom: 60px;
    }
    
    .product-image {
        max-width: 500px;
    }
}

@media (max-width: 768px) {
    .product-row, 
    .product-row.reverse {
        flex-direction: column;
        gap: 30px;
        margin-bottom: 50px;
    }
    
    .product-title {
        font-size: 24px;
        text-align: center;
    }
    
    .product-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .product-image {
        max-width: 100%;
        order: -1;
    }
}