/* ===========================================
   Products Page - 产品中心页面样式
   =========================================== */

.products-page {
    padding-top: 0;
    max-width: 1200px;
    margin: 0 auto;
    background: linear-gradient(180deg, #f0f4fa 0%, #e8eef8 50%, #f5f8fc 100%);
}

/* 产品区块通用样式 */
.product-section {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.product-section-bg {
    width: 100%;
}

.product-section-bg img {
    width: 100%;
    height: auto;
    display: block;
}

.product-section-content {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;
    width: 100%;
    height: 100%;
    padding: 5% 4%;
    display: flex;
    align-items: flex-start;
}

.product-info {
    max-width: 300px;
}

.product-category {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 0.8rem;
    letter-spacing: 1px;
    text-shadow: 0 2px 8px rgba(255, 255, 255, 0.8);
}

.product-btn {
    display: inline-block;
    padding: 0.5rem 1.2rem;
    background: linear-gradient(135deg, #e68e44 0%, #c27835 100%);
    color: white;
    text-decoration: none;
    border-radius: 18px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(230, 142, 68, 0.4);
    transition: all 0.3s ease;
}

.product-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(230, 142, 68, 0.5);
}

/* 儿童产品区块 */
.product-children {
    background: linear-gradient(135deg, #fef9f3 0%, #fdf6ed 100%);
}

.product-children .product-category {
    color: #3e2f28;
}

/* 女性产品区块 */
.product-women {
    background: linear-gradient(135deg, #fdf2f0 0%, #f8e8e5 100%);
}

.product-women .product-category {
    color: #4a3f3d;
}

.product-feature-tag {
    position: absolute;
    right: 8%;
    bottom: 15%;
    z-index: 10;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.product-feature-tag span {
    font-size: 0.85rem;
    font-weight: 500;
    color: #5a6a7a;
    letter-spacing: 1px;
}

/* 老人产品区块 */
.product-elderly {
    background: linear-gradient(135deg, #e8f5e9 0%, #e0f2e1 100%);
}

.product-elderly .product-category {
    color: #2e4a3e;
}

.product-features {
    position: absolute;
    bottom: 12%;
    left: 4%;
    z-index: 10;
    display: flex;
    gap: 1.5rem;
}

.feature-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
    padding: 0.8rem 1.2rem;
    border-radius: 12px;
    backdrop-filter: blur(15px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.feature-badge:hover {
    transform: translateY(-3px);
}

.feature-sos {
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.95) 0%, rgba(255, 152, 0, 0.9) 100%);
}

.feature-health {
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.95) 0%, rgba(56, 142, 60, 0.9) 100%);
}

.feature-icon {
    font-size: 1.2rem;
}

.feature-text {
    font-size: 0.85rem;
    font-weight: 700;
    color: white;
    letter-spacing: 1px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

/* 响应式 */
@media (max-width: 768px) {
    .products-page {
        padding-top: 80px;
    }

    .product-category {
        font-size: 1.1rem;
    }

    .product-section-content {
        padding: 4% 3%;
    }

    .product-features {
        gap: 1rem;
        bottom: 10%;
        left: 3%;
    }

    .feature-badge {
        padding: 0.6rem 0.8rem;
    }

    .feature-icon {
        font-size: 1rem;
    }

    .feature-text {
        font-size: 0.75rem;
    }

    .product-feature-tag {
        right: 4%;
        bottom: 10%;
        padding: 0.4rem 0.8rem;
    }

    .product-feature-tag span {
        font-size: 0.75rem;
    }

    .product-btn {
        padding: 0.4rem 1rem;
        font-size: 0.8rem;
    }
}
