/* 产品页面样式 */
.product-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 120px 40px 80px;
    gap: 60px;
}

.product-image {
    flex: 1;
    max-width: 600px;
}

.product-image img {
    width: 500px;
    height: auto;
    border-radius: 20px;
}

.product-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.product-title {
    font-size: 48px;
    font-weight: bold;
    color: #000;
}

.product-description {
    font-size: 18px;
    color: #777;
    line-height: 1.6;
    margin-bottom: 10px;
}

.product-price {
    font-size: 32px;
    font-weight: bold;
    color: #000;
    margin: 10px 0;
}

.product-features {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.feature-text {
    font-size: 16px;
    color: #777;
    line-height: 1.6;
}

.order-button {
    display: inline-block;
    background-color: #000;
    color: #fff;
    padding: 18px 0;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 100%;
    max-width: 400px;
    text-decoration: none;
}

.order-button:hover {
    background-color: #333;
}

/* 相关产品部分 */
.related-products {
    padding: 0 40px 80px;
}

.related-title {
    font-size: 36px;
    font-weight: bold;
    color: #000;
    margin-bottom: 40px;
    text-align: left;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    row-gap: 60px;
}

.product-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.product-card-image {
    width: 150px;
    height: 250px;
    object-fit: cover;
    margin-bottom: 20px;
    border-radius: 15px;
}

.product-card-title {
    font-size: 24px;
    font-weight: bold;
    color: #000;
    margin-bottom: 10px;
    text-align: left;
}

.product-card-description {
    font-size: 16px;
    color: #777;
    line-height: 1.5;
    text-align: left;
    margin-bottom: 10px;
    max-width: 250px;
}

.product-card-price {
    font-size: 20px;
    font-weight: bold;
    color: #000;
}

/* 响应式样式 - Products页面 */
@media (max-width: 1024px) {
    .product-section {
        padding: 120px 20px 60px;
        gap: 40px;
    }
    
    .product-image img {
        width: 100%;
        max-width: 400px;
    }
    
    .products-grid {
        gap: 30px;
    }
}

@media (max-width: 767px) {
    .product-section {
        flex-direction: column;
        padding: 100px 20px 40px;
        gap: 30px;
    }
    
    .product-image {
        max-width: 100%;
        display: flex;
        justify-content: center;
    }
    
    .product-image img {
        max-width: 300px;
    }
    
    .product-details {
        align-items: center;
        text-align: center;
    }
    
    .product-title {
        font-size: 36px;
    }
    
    .product-description {
        font-size: 16px;
    }
    
    .product-price {
        font-size: 28px;
    }
    
    .product-features {
        width: 100%;
        max-width: 400px;
    }
    
    .related-products {
        padding: 0 20px 60px;
    }
    
    .related-title {
        font-size: 28px;
        text-align: center;
        margin-bottom: 30px;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .product-card {
        align-items: center;
    }
    
    .product-card-title {
        font-size: 20px;
        text-align: center;
    }
    
    .product-card-description {
        font-size: 14px;
        text-align: center;
    }
}

@media (max-width: 479px) {
    .product-section {
        padding: 80px 20px 30px;
    }
    
    .product-title {
        font-size: 28px;
    }
    
    .product-price {
        font-size: 24px;
    }
    
    .order-button {
        padding: 14px 0;
        font-size: 16px;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .product-card-image {
        width: 120px;
        height: 200px;
    }
} 