/* === Product Overview Module - 产品总览模块 === */
.product-overview-module.product-module {
    padding-top: 40px;
}

.product-overview-module .product-section {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.product-hero-image {
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
}

.product-hero-image img {
    width: 100%;
    height: 360px;
    object-fit: cover;
    border-radius: 16px;
}

/* Spec Tags - 产品参数标签 */
.product-spec-tags {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.spec-tag {
    display: flex;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    padding: 12px 16px;
    border-radius: 10px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    min-width: 80px;
}

.spec-tag-label {
    font-size: 12px;
    color: #9ca3af;
    margin-bottom: 4px;
}

.spec-tag-value {
    font-size: 16px;
    font-weight: var(--bold-weight, 500);
    color: var(--text-primary);
    font-family: var(--bold-font) !important;
}

.product-hero-content {
    text-align: center;
}

.product-module .product-name {
    font-size: 30px;
    font-weight: var(--bold-weight, 500);
    color: var(--text-primary);
    margin: 0 0 12px 0;
    font-family: var(--bold-font) !important;
}

.product-slogan {
    font-size: 17px;
    color: var(--text-secondary);
    margin: 0 0 20px 0;
    font-family: var(--normal-font);
}

.product-highlights {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
}

.highlight-tag {
    display: inline-flex;
    align-items: center;
    padding: 8px 18px;
    background: var(--accent-light);
    color: var(--accent-color);
    font-size: 15px;
    font-weight: 300;
    border-radius: 24px;
    font-family: var(--normal-font);
}

.product-description {
    font-size: 17px;
    color: var(--text-secondary);
    line-height: 1.9;
    margin: 0;
    font-family: var(--normal-font);
}
