/* 产品列表 */
.products-section {
    width: 1180px;
    margin: 40px auto;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.product-card {
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s;
}

.img-wrapper {
    background-color: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    height: 240px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.img-wrapper img {
    max-width: 50%;
}

.product-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
    text-align: left;
    font-weight: 400;
}

.price {
    color: #ffffff;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    font-size: 18px;
}

.stars {
    color: #7B4DFF;
    margin-left: 10px;
    font-size: 12px;
}

.quantity-selector {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.quantity-selector button {
    width: 50px;
    height: 50px;
    line-height: 30px;
    padding: 0;
    font-size: 20px;
}

.quantity-selector input {
    width: 50px;
    background: transparent;
    border: none;
    font-size: 20px;
    color: white;
    text-align: center;
}

.add-btn {
    width: 100%;
    padding: 10px;
}