/* 产品页面背景 */
#page-product {
    background: #FFF9F9;
}

.product-title {
    font-size: 22px;
    color: #c53030;
    margin-bottom: 24px;
}

.product-item {
    background: white;
    padding: 16px;
    border-radius: 12px;
    margin: 12px 0;
    width: 100%;
    max-width: 320px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.product-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 10px;
}

.product-name {
    font-weight: bold;
    font-size: 18px;
    margin-bottom: 6px;
}

.product-desv {
    color: #666;
    font-size: 14px;
}

.carousel-container {
    width: 100%;
    max-width: 320px;
    position: relative;
}

.carousel-image {
    width: 100%;
    height: 320px;
    object-fit: cover;
    border-radius: 16px;
    background: #f0f0f0;
}

.carousel-nav {
    margin-top: 12px;
    display: flex;
    justify-content: center;
    gap: 12px;
}

.nav-btn {
    padding: 6px 12px;
    background: #f0f0f0;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    cursor: pointer;
}

#product-desc-text {
    margin-top: 16px;
    font-size: 16px;
    color: #333;
    max-width: 320px;
}