/* G3M产品详情页样式 - 整合优化版 */

/* ========== 页面布局样式 ========== */
/* 页面包装器背景 */
.page-wrapper {
    background: linear-gradient(180deg, #f8fafb 0%, #f3f6f9 100%);
    min-height: 100vh;
}

/* 主内容区域 */

.atf_portfolio__details-area .container {
    background-color: #ffffff;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    padding: 40px;
    margin-top: 20px;
    margin-bottom: 20px;
}

/* ========== 旧图片型详情页统一收口 ==========
   说明：
   1. 这批历史页面原来使用“左图片 / 右推荐”两栏模板，但推荐区本质上只是 related 卡片容器；
   2. 现在统一改成全宽图片区 + 下沉 Related Cameras，避免在不同断点下继续错位；
   3. 同时兼容直接 img 和 picture 两种旧写法，不要求每个历史页面重写成同一种标签。 */
.legacy-detail-media {
    width: 100%;
}

.legacy-image-gallery {
    display: flex;
    flex-direction: column;
    gap: 0;
    width: 100%;
}

.legacy-image-gallery > img,
.legacy-image-gallery > picture {
    width: 100%;
    display: block;
    height: auto;
    margin: 0;
}

/* 旧模板里很多图片直接挂了 Bootstrap 的 col-12。
 * 这里显式清掉列内边距，避免图片在全宽模式下左右缩进或溢出。 */
.legacy-image-gallery > img.col-12 {
    padding-left: 0;
    padding-right: 0;
}

.legacy-image-gallery > picture img {
    width: 100%;
    height: auto;
    display: block;
    margin: 0;
}

/* Related Cameras 区块直接对齐 ATR2600C 的信息架构：
 * 标题在上、卡片网格在下，中间留稳定间距。 */
.legacy-related-cameras {
    margin-top: 48px;
}

.legacy-related-cameras h3 {
    margin-bottom: 24px;
    font-size: clamp(28px, 3vw, 36px);
    font-weight: 700;
    color: var(--v2-text-heading);
    line-height: 1.2;
}

/* ========== 基础样式 ========== */
.g3m-product-details {
    font-family: var(--thm-font);
    color: var(--thm-p);
    line-height: 1.6;
    position: relative;
    background-color: transparent;
}

.g3m-product-details * {
    box-sizing: border-box;
}

/* ========== 悬浮导航样式 ========== */
.g3m-floating-nav {
    position: fixed;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
    transition: all 0.3s ease;
}

/* 导航切换按钮 */
.g3m-floating-nav .nav-toggle {
    position: absolute;
    left: 0;
    top: 0;
    width: auto;
    padding: 12px 16px;
    background: var(--thm-line);
    border: none;
    border-radius: 0 8px 8px 0;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    font-size: 14px;
    font-weight: 500;
    animation: pulse 2s infinite;
}

.g3m-floating-nav .nav-toggle:hover {
    background: var(--thm-base);
    padding-right: 20px;
}

.g3m-floating-nav .nav-toggle .nav-text {
    transition: all 0.3s ease;
}

.g3m-floating-nav.active .nav-toggle {
    animation: none;
}

.g3m-floating-nav.active .nav-toggle .nav-text {
    opacity: 0;
    width: 0;
    overflow: hidden;
}

/* 导航内容区域 */
.g3m-floating-nav .nav-content {
    position: relative;
    background: #fff;
    border-radius: 0 12px 12px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    padding: 20px;
    padding-right: 40px;
    padding-bottom: 30px;
    width: 240px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-100%);
    transition: all 0.3s ease;
}

.g3m-floating-nav.active .nav-content {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

/* 导航关闭按钮 */
.g3m-floating-nav .nav-close {
    position: absolute;
    right: 10px;
    top: 10px;
    width: 30px;
    height: 30px;
    background: var(--thm-f6);
    border: none;
    border-radius: 50%;
    color: var(--thm-gray);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.g3m-floating-nav .nav-close:hover {
    background: var(--thm-base);
    color: #fff;
}

/* 导航标题 */
.g3m-floating-nav h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--thm-black);
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--thm-f6);
}

/* 导航列表 */
.g3m-floating-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.g3m-floating-nav li {
    margin-bottom: 8px;
}

/* 导航链接 */
.g3m-floating-nav .nav-link {
    display: block;
    padding: 8px 12px;
    color: var(--thm-p);
    text-decoration: none;
    border-radius: 6px;
    font-size: 14px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.g3m-floating-nav .nav-link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 0;
    background: var(--thm-base);
    transition: height 0.3s ease;
}

.g3m-floating-nav .nav-link:hover,
.g3m-floating-nav .nav-link.active {
    background: var(--thm-f6);
    color: var(--thm-base);
}

.g3m-floating-nav .nav-link.active::before {
    height: 60%;
}

/* 导航分隔线 */
.g3m-floating-nav .nav-divider {
    height: 1px;
    background: var(--thm-f3);
    margin: 20px 0;
}

/* 产品手册链接 */
.g3m-floating-nav .nav-manual {
    padding: 10px 0;
}

.g3m-floating-nav .manual-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    background: linear-gradient(135deg, var(--thm-base), var(--thm-color));
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.g3m-floating-nav .manual-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    background: linear-gradient(135deg, var(--thm-color), var(--thm-base));
}

.g3m-floating-nav .manual-link i:first-child {
    font-size: 18px;
    margin-right: 10px;
}

.g3m-floating-nav .manual-link i:last-child {
    font-size: 12px;
    margin-left: 8px;
    opacity: 0.8;
}

.g3m-floating-nav .manual-link span {
    flex: 1;
}

/* 脉冲动画 */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(85, 198, 239, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(85, 198, 239, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(85, 198, 239, 0);
    }
}

/* ========== 产品区块样式 ========== */
.product-section {
    background-color: #ffffff;
    padding: 60px;
    border-radius: 16px;
    margin-bottom: 30px;
    scroll-margin-top: 100px;
}

/* 英雄区域 */
.hero-section {
    text-align: center;
    margin-bottom: 60px;
}

.product-title {
    font-size: 48px;
    font-weight: 700;
    color: var(--thm-black);
    margin-bottom: 20px;
    line-height: 1.2;
}

.product-subtitle {
    font-size: 20px;
    color: var(--thm-gray);
    max-width: 1000px;
    margin: 0 auto;
}

/* 主产品图片 */
.main-product-image {
    text-align: center;
    margin-bottom: 40px;
}

/* 主产品图片 - 兼容 picture 标签和 img 标签 */
.main-product-image img,
.main-product-image picture {
    max-width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    display: block;
}

/* picture 标签内的 img 继承样式 */
.main-product-image picture img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* 区块标题 */
.section-title {
    color: var(--v2-text-heading);
    font-size: clamp(28px, 3vw, 40px);
    font-weight: 800;
    line-height: 1.22;
    margin-bottom: 36px;
    text-align: center;
}

.section-desc {
    font-size: 18px;
    color: var(--thm-gray);
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
}

/* ========== 特性展示 ========== */
/* 特性网格 */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.feature-card {
    background: var(--thm-f6);
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.feature-value {
    font-size: 48px;
    font-weight: 700;
    color: var(--thm-base);
    margin-bottom: 15px;
}

.feature-label {
    font-size: 20px;
    font-weight: 600;
    color: var(--thm-black);
    margin-bottom: 10px;
}

.feature-desc {
    font-size: 14px;
    color: var(--thm-gray);
}

/* 技术特性高亮 */
.tech-highlight {
    background: linear-gradient(135deg, #0066cc, #004499);
    color: #fff;
    padding: 60px;
    border-radius: 20px;
    text-align: center;
    margin-bottom: 60px;
}

.tech-highlight h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 30px;
}

.tech-highlight p {
    font-size: 18px;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
}

/* 技术特性详情 */
.tech-feature {
    margin-bottom: 60px;
}

.tech-feature h3 {
    font-size: 28px;
    font-weight: 600;
    color: var(--thm-black);
    margin-bottom: 20px;
}

.tech-feature p {
    font-size: 18px;
    color: var(--thm-gray);
    line-height: 1.8;
    margin-bottom: 30px;
}

/* 技术特性图片 - 兼容 picture 标签和 img 标签。
 * 使用直接子节点选择器，避免 future split 图在 picture 内部被重复计算间距。 */
.tech-feature > img,
.tech-feature > picture {
    width: 100%;
    height: auto;
    border-radius: 12px;
    display: block;
}

/* picture 标签内的 img 继承样式。
 * 显式清零外边距，保证一组切分后的技术图可无缝衔接。 */
.tech-feature > picture img {
    width: 100%;
    height: auto;
    display: block;
    margin-top: 0;
}

/* 同一个 tech-feature 内连续展示的切图不增加额外间距。
 * 同时移除连续项的圆角，避免切图拼接时露出底色形成白缝。 */
.tech-feature > img + img,
.tech-feature > img + picture,
.tech-feature > picture + img,
.tech-feature > picture + picture {
    margin-top: 0;
    border-radius: 0;
}

/* 连续切图的首张同样不能保留底部圆角，否则拼接处仍会被视觉识别成断开。 */
.tech-feature > img:has(+ img),
.tech-feature > img:has(+ picture),
.tech-feature > picture:has(+ img),
.tech-feature > picture:has(+ picture) {
    border-radius: 0;
}

/* 背景特性区块 */
.feature-with-bg {
    background: var(--thm-fb);
    border-radius: 20px;
    padding: 60px;
}

/* 内容网格 */
.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.text-content h3 {
    font-size: 28px;
    font-weight: 600;
    color: var(--thm-black);
    margin-bottom: 20px;
}

.text-content p {
    font-size: 18px;
    color: var(--thm-gray);
    line-height: 1.8;
}

/* ========== 兼容性和选项 ========== */
.compatibility-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 30px;
}

.option-card {
    background: var(--thm-f6);
    padding: 30px;
    border-radius: 12px;
}

.option-card h4 {
    font-size: 22px;
    font-weight: 600;
    color: var(--thm-black);
    margin-bottom: 15px;
}

.option-card p {
    font-size: 16px;
    color: var(--thm-gray);
    line-height: 1.6;
}

.compatibility-note {
    text-align: center;
    font-size: 16px;
    color: var(--thm-gray);
    margin-bottom: 30px;
}

/* ========== 模式性能 ========== */
.mode-performance {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.mode-item h3 {
    font-size: 24px;
    font-weight: 600;
    color: var(--thm-black);
    margin-bottom: 10px;
}

.mode-settings {
    font-size: 16px;
    color: var(--thm-gray);
    margin-bottom: 20px;
}

/* ========== 图片展示 ========== */
.dimensions-gallery,
.package-images {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* 尺寸画廊和包装图片 - 兼容 picture 标签和 img 标签 */
.dimensions-gallery img,
.dimensions-gallery picture,
.package-images img,
.package-images picture {
    width: 100%;
    height: auto;
    border-radius: 12px;
    display: block;
}

/* picture 标签内的 img 继承样式 */
.dimensions-gallery picture img,
.package-images picture img {
    width: 100%;
    height: auto;
    display: block;
}

/* ========== AE676C 专用模块对齐 ========== */
.product-showcase {
    margin-bottom: 40px;
    text-align: center;
}

.product-showcase img,
.product-showcase picture {
    max-width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    display: block;
}

.product-showcase picture img {
    width: 100%;
    height: auto;
}

.ae-image-zoom {
    display: block;
    color: inherit;
    cursor: zoom-in;
    text-decoration: none;
}

.ae-image-zoom img,
.ae-image-zoom picture {
    display: block;
    transition: transform 0.3s ease;
}

.ae-image-zoom:hover img {
    transform: scale(1.015);
}

.description-card {
    background: linear-gradient(135deg, var(--thm-f6) 0%, #ffffff 100%);
    border-radius: 20px;
    padding: 40px;
    margin-top: 40px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.description-card h2,
.info-card h3,
.feature-content h3 {
    color: var(--v2-text-heading);
    font-weight: 800;
    line-height: 1.28;
}

.description-card h2 {
    font-size: 30px;
    margin-bottom: 20px;
}

.description-card p,
.info-card p,
.feature-content p,
.feature-content li {
    color: var(--thm-gray);
    font-size: 17px;
    line-height: 1.8;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

#advantages .feature-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-item {
    background: var(--thm-f6);
    border-radius: 16px;
    padding: 36px 28px;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: rgba(var(--v2-primary-500-rgb), 0.1);
    color: var(--thm-base);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 22px;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px;
}

.info-card {
    background: var(--thm-f6);
    border-radius: 16px;
    padding: 28px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.info-card img,
.info-card picture {
    width: 100%;
    height: auto;
    border-radius: 12px;
    display: block;
    margin-bottom: 24px;
}

.info-card .ae-image-zoom {
    margin-bottom: 24px;
}

.info-card .ae-image-zoom picture {
    margin-bottom: 0;
}

.ae-card-stack {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.ae-section-stack + .ae-card-stack {
    margin-top: 40px;
}

.ae-section-stack {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.ae-text-panel {
    width: 100%;
    max-width: none;
}

.ae-text-panel-full {
    max-width: none;
    width: 100%;
}

.ae-subsection-title {
    margin: 4px 0 0;
    color: var(--v2-text-heading);
    font-size: clamp(22px, 2.2vw, 30px);
    font-weight: 800;
    line-height: 1.3;
}

.ae-scenario-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.ae-scenario-card {
    min-height: 92px;
    display: flex;
    align-items: center;
    border: 1px solid rgba(var(--v2-primary-500-rgb), 0.1);
    border-radius: 14px;
    background: var(--v2-bg-primary);
    color: var(--v2-text-heading);
    font-size: 16px;
    font-weight: 700;
    line-height: 1.5;
    padding: 22px 24px;
}

.ae-setup-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
    width: 100%;
    max-width: none;
    margin: 0;
}

.ae-setup-card {
    overflow: hidden;
    border: 1px solid rgba(var(--v2-primary-500-rgb), 0.1);
    border-radius: 18px;
    background: var(--v2-bg-primary);
}

.ae-setup-card .ae-image-zoom {
    position: relative;
    display: block;
    overflow: hidden;
}

.ae-setup-card img {
    width: 100%;
    aspect-ratio: 1 / 0.92;
    display: block;
    object-fit: cover;
}

.ae-setup-label {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    min-height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 18px;
    background: rgba(18, 24, 30, 0.9);
    color: var(--v2-text-inverse);
    font-size: clamp(16px, 1.8vw, 26px);
    font-weight: 600;
    line-height: 1.25;
    text-align: center;
}

.ae-parameter-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    margin-top: 0;
}

.ae-parameter-card {
    min-height: 190px;
    display: grid;
    grid-template-rows: auto auto 1fr;
    align-items: center;
    justify-items: center;
    gap: 10px;
    padding: 24px 18px;
    background: var(--v2-bg-primary);
    border: 1px solid var(--v2-bg-divider);
    border-radius: 16px;
    text-align: center;
}

.ae-parameter-icon {
    width: 82px;
    height: 62px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2px;
}

.ae-parameter-icon img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.ae-parameter-label {
    color: var(--v2-text-muted);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    line-height: 1.3;
    text-transform: uppercase;
}

.ae-parameter-value {
    color: var(--v2-text-heading);
    font-size: clamp(18px, 1.8vw, 26px);
    font-weight: 800;
    line-height: 1.18;
}

.ae-stacked-card {
    width: 100%;
}

.ae-graph-card {
    padding: 0;
    background: transparent;
    border: 0 !important;
}

.ae-graph-card .ae-media-block {
    padding: 0;
    background: transparent;
    border: 0;
    border-radius: 0;
}

.ae-graph-card .ae-media-block picture,
.ae-graph-card .ae-media-block img {
    border: 0 !important;
}

.ae-graph-card h3 {
    margin-top: 22px;
}

.ae-stacked-card .ae-media-block img {
    border: 0;
}

.ae-stacked-card p:last-child {
    margin-bottom: 0;
}

.ae-check-list {
    display: grid;
    gap: 12px;
    margin: 22px 0;
    padding: 0;
    list-style: none;
}

.ae-check-list li {
    position: relative;
    padding-left: 28px;
    color: var(--v2-text-body);
    line-height: 1.65;
}

.ae-check-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--v2-primary-500);
    font-weight: 700;
}

.ae-media-block {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin: 0;
    line-height: 0;
}

.ae-media-block .ae-image-zoom {
    margin-bottom: 0;
    overflow: hidden;
    line-height: 0;
}

.ae-media-block picture,
.ae-media-block img {
    width: 100%;
    height: auto;
    display: block;
    vertical-align: top;
}

.ae-media-block picture {
    border: 0;
    border-radius: 0;
}

.ae-media-block img {
    margin-bottom: 0;
}

.ae-media-caption {
    display: block;
    max-width: min(780px, 100%);
    margin: 0 auto;
    padding: 0;
    background: transparent;
    border: 0;
    border-radius: 0;
    color: var(--v2-text-muted);
    font-size: 13px;
    font-weight: 500;
    line-height: 1.55;
    text-align: center;
}

.ae-media-caption::before {
    display: none;
    content: none;
}

.ae-media-caption-card {
    display: grid;
    gap: 4px;
    max-width: 720px;
    padding: 14px 16px;
    background: var(--v2-bg-secondary);
    border: 1px solid var(--v2-bg-divider);
    border-radius: 12px;
    text-align: center;
}

.ae-media-caption-card::before {
    display: none;
}

.ae-media-caption-card h3 {
    margin-bottom: 4px;
    color: var(--v2-text-heading);
    font-size: 15px;
    line-height: 1.4;
}

.ae-media-caption-card p {
    margin-bottom: 0;
    color: var(--v2-text-muted);
    font-size: 14px;
    line-height: 1.65;
}

.ae-image-note-card {
    width: 100%;
    display: grid;
    gap: 6px;
    margin: 0;
    padding: 16px 20px 18px;
    border: 1px solid rgba(var(--v2-primary-500-rgb), 0.08);
    border-top: 0;
    border-radius: 0 0 var(--v2-radius-md) var(--v2-radius-md);
    background: var(--v2-bg-secondary);
    text-align: center;
    line-height: var(--v2-line-height-base);
}

.ae-image-note-card h3 {
    margin-bottom: 2px;
    color: var(--v2-text-heading);
    font-size: 16px;
    font-weight: 800;
    line-height: 1.4;
}

.ae-image-note-card p {
    max-width: 680px;
    margin: 0 auto;
    color: var(--v2-text-muted);
    font-size: 14px;
    line-height: 1.65;
}

.ae-connection-note {
    max-width: 960px;
    margin: 30px auto 0;
    padding: 28px;
    background: var(--v2-bg-primary);
    border: 1px solid var(--v2-bg-divider);
    border-radius: 16px;
}

.ae-note-label {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    margin-bottom: 10px;
    padding: 5px 10px;
    border-radius: 999px;
    background: rgba(var(--v2-primary-500-rgb), 0.08);
    color: var(--v2-primary-700);
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.ae-connection-note h3 {
    margin-bottom: 12px;
    color: var(--v2-text-heading);
    font-size: 24px;
    line-height: 1.35;
}

.ae-connection-note p {
    margin-bottom: 12px;
    color: var(--v2-text-body);
    line-height: 1.7;
}

.ae-connection-note p:last-of-type {
    margin-bottom: 0;
}

.ae-connection-setups {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.ae-connection-setups span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 126px;
    min-height: 34px;
    padding: 7px 12px;
    border: 1px solid var(--v2-bg-divider);
    border-radius: 999px;
    background: var(--v2-bg-secondary);
    color: var(--v2-text-heading);
    font-size: 13px;
    font-weight: 600;
    line-height: 1;
    text-align: center;
}

.dimensions-gallery .ae-image-zoom,
.package-images .ae-image-zoom {
    margin-bottom: 0;
}

.info-card h3,
.feature-content h3 {
    font-size: clamp(22px, 1.8vw, 28px);
    margin: 0 0 14px;
}

.feature-showcase {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 40px;
    align-items: center;
    background: var(--thm-fb);
    border-radius: 20px;
    padding: 50px;
    margin-bottom: 40px;
}

.feature-showcase img,
.feature-showcase picture {
    width: 100%;
    height: auto;
    border-radius: 12px;
    display: block;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.feature-showcase .ae-image-zoom {
    align-self: center;
}

.feature-showcase .ae-image-zoom picture {
    box-shadow: none;
}

.feature-content ul {
    padding-left: 0;
    margin: 24px 0 0;
    list-style: none;
}

.feature-content li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
}

.feature-content li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--thm-base);
    font-weight: 700;
}

/* ========== 表格样式 ========== */
/* 规格表格 */
.specs-table-wrapper {
    overflow-x: auto;
    border-radius: 12px;
}

.specs-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.specs-table th,
.specs-table td {
    padding: 20px;
    text-align: left;
    border-bottom: 1px solid var(--thm-f3);
}

.specs-table th {
    background: var(--thm-f6);
    font-weight: 600;
    color: var(--thm-black);
    width: 30%;
}

.specs-table td {
    color: var(--thm-gray);
}

.specs-table tr:last-child th,
.specs-table tr:last-child td {
    border-bottom: none;
}

/* 规格表格分组 */
.specs-group {
    margin-bottom: 40px;
}

.specs-subtitle {
    font-size: 22px;
    font-weight: 600;
    color: var(--thm-black);
    margin-bottom: 20px;
    padding-left: 15px;
    position: relative;
}

.specs-subtitle::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 20px;
    background: var(--thm-base);
    border-radius: 2px;
}

/* 性能表格 */
.performance-table {
    width: 100%;
    border-collapse: collapse;
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    margin-bottom: 10px;
}

.performance-table thead {
    background: var(--thm-line);
    color: #ffffff;
}

.performance-table thead tr:first-child th {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.performance-table th {
    padding: 15px 12px;
    text-align: center;
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 0.3px;
}

.performance-table th[rowspan] {
    vertical-align: middle;
}

.performance-table th[colspan] {
    border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.performance-table th[colspan]:first-child {
    border-left: none;
}

.performance-table tbody {
    background: #ffffff;
}

.performance-table td {
    padding: 16px 12px;
    text-align: center;
    border: 1px solid var(--thm-f3);
    font-size: 15px;
    color: var(--thm-p);
    font-weight: 500;
}

.performance-table tbody tr {
    transition: all 0.3s ease;
}

.performance-table tbody tr:hover {
    background-color: var(--thm-f6);
    transform: scale(1.01);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.performance-table tbody tr:first-child td {
    border-top: none;
}

.performance-table tbody td:first-child {
    font-weight: 600;
    color: var(--thm-black);
    background-color: rgba(245, 248, 250, 0.5);
}

.performance-table tbody td:not(:first-child) {
    font-family: 'Roboto Mono', monospace;
    color: var(--thm-base);
}

.ae-table-heading {
    margin: 28px 0 14px;
    font-size: 18px;
    font-weight: 700;
    color: var(--v2-text-heading);
}

.ae-table-wrapper {
    overflow-x: auto;
    border: 1px solid rgba(var(--v2-primary-500-rgb), 0.1);
    border-radius: 14px;
    background: var(--v2-bg-primary);
}

.ae-frame-rate-table {
    min-width: 720px;
    margin-bottom: 0;
    border-radius: 0;
    box-shadow: none;
}

.ae-frame-rate-table th,
.ae-frame-rate-table td {
    border-color: var(--v2-bg-divider);
}

.ae-frame-rate-table tbody th {
    padding: 16px 12px;
    text-align: center;
    border: 1px solid var(--v2-bg-divider);
    background: var(--v2-bg-content);
    color: var(--v2-text-heading);
    font-weight: 700;
    font-family: 'Roboto Mono', monospace;
}

.ae-frame-rate-table td {
    border-color: var(--v2-bg-divider);
}

.ae-specs-table-wrapper {
    overflow: visible;
    margin-top: 36px;
}

.ae-specs-table-wrapper > .ae-table-heading {
    margin: 0 0 14px;
}

.ae-measured-performance-scroll {
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    border: 1px solid var(--v2-bg-divider);
    border-radius: 8px;
    background: var(--v2-bg-primary);
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: var(--v2-primary-500) var(--v2-bg-content);
}

.ae-measured-performance-scroll::-webkit-scrollbar {
    height: 8px;
}

.ae-measured-performance-scroll::-webkit-scrollbar-track {
    background: var(--v2-bg-content);
}

.ae-measured-performance-scroll::-webkit-scrollbar-thumb {
    background: var(--v2-primary-500);
    border-radius: 999px;
}

.ae-measured-performance-scroll:focus-visible {
    outline: 2px solid var(--v2-primary-500);
    outline-offset: 4px;
}

.ae-measured-performance-table {
    margin: 0;
    table-layout: auto;
    border: 0;
    border-radius: 0;
    box-shadow: none;
}

.ae-measured-performance-table .ae-measured-performance-metric-column {
    width: 34%;
}

.ae-measured-performance-table th {
    width: auto;
}

.ae-measured-performance-table th,
.ae-measured-performance-table td {
    display: table-cell;
    vertical-align: middle;
    overflow-wrap: normal;
    word-break: normal;
}

/* ========== 功能描述区域 ========== */
.function-description {
    background: linear-gradient(135deg, var(--thm-f6) 0%, #ffffff 100%);
    padding: 60px;
    border-radius: 20px;
    margin-top: 60px;
}

.function-description h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--thm-black);
    margin-bottom: 25px;
}

.function-description > p {
    font-size: 18px;
    color: var(--thm-gray);
    line-height: 1.8;
    margin-bottom: 40px;
}

/* 特性列表 */
.feature-list {
    background: #fff;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.feature-list h3 {
    font-size: 24px;
    font-weight: 600;
    color: var(--thm-black);
    margin-bottom: 25px;
}

.feature-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 15px;
}

.feature-list li {
    display: flex;
    align-items: center;
    font-size: 16px;
    color: var(--thm-p);
    padding: 10px 0;
}

.feature-list li i {
    color: var(--thm-base);
    margin-right: 12px;
    font-size: 18px;
}

/* ========== 包装清单 ========== */
.package-list {
    background: var(--thm-f6);
    padding: 40px;
    border-radius: 16px;
    margin-top: 30px;
}

.package-list h3 {
    font-size: 24px;
    font-weight: 600;
    color: var(--thm-black);
    margin-bottom: 25px;
    display: flex;
    align-items: center;
}

.package-list h3::before {
    content: '';
    width: 4px;
    height: 24px;
    background: var(--thm-base);
    margin-right: 12px;
    border-radius: 2px;
}

.package-list ul {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 15px;
}

.package-list li {
    display: flex;
    align-items: center;
    font-size: 16px;
    color: var(--thm-p);
    padding: 12px 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.package-list li:hover {
    transform: translateX(10px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.package-list li::before {
    content: '✓';
    color: var(--thm-base);
    font-weight: bold;
    margin-right: 12px;
    font-size: 18px;
}

.package-note {
    font-size: 14px;
    color: var(--thm-gray);
    font-style: italic;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 8px;
    border-left: 3px solid var(--thm-base);
}

/* ========== 图表说明 ========== */
.chart-description {
    font-size: 15px;
    color: var(--thm-gray);
    line-height: 1.7;
    margin: 15px 0 20px 0;
    padding: 15px;
    background: var(--thm-f6);
    border-radius: 8px;
    border-left: 3px solid var(--thm-base);
}


/* ========== 响应式设计 ========== */
@media (max-width: 1200px) {
    .g3m-floating-nav {
        display: none;
    }

    .product-title {
        font-size: 36px;
    }

    .section-title {
        font-size: 28px;
    }

    .ae-parameter-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    /* 容器调整 */
    .atf_portfolio__details-area .container {
        padding: 20px;
        border-radius: 16px;
    }

    .product-section {
        padding: 40px 20px;
        margin-bottom: 20px;
    }

    /* 英雄区域 */
    .hero-section {
        margin-bottom: 40px;
    }

    .product-title {
        font-size: 28px;
    }

    .product-subtitle {
        font-size: 16px;
    }

    /* 区块标题 */
    .section-title {
        font-size: 24px;
        margin-bottom: 30px;
    }

    /* 特性网格 */
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .feature-grid,
    .info-grid,
    .feature-showcase {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    #advantages .feature-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .ae-parameter-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
    }

    .ae-setup-grid {
        gap: 16px;
    }

    .ae-setup-label {
        min-height: 46px;
        padding: 10px 12px;
        font-size: 15px;
    }

    .ae-parameter-card {
        min-height: 170px;
        padding: 20px 14px;
    }

    .ae-subsection-title {
        font-size: 22px;
    }

    .feature-card {
        padding: 30px 20px;
    }

    .feature-item,
    .description-card,
    .info-card,
    .feature-showcase {
        padding: 30px 20px;
    }

    .feature-value {
        font-size: 36px;
    }

    /* 功能描述区域 */
    .function-description {
        padding: 40px 20px;
        margin-top: 40px;
    }

    .function-description h2 {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .function-description > p {
        font-size: 16px;
        margin-bottom: 30px;
    }

    /* 特性列表容器 */
    .feature-list {
        padding: 25px 20px;
    }

    .feature-list h3 {
        font-size: 20px;
        margin-bottom: 20px;
    }

    /* 特性列表 - 单列显示 */
    .feature-list ul {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .feature-list li {
        font-size: 15px;
        padding: 8px 0;
        line-height: 1.5;
    }

    .feature-list li i {
        font-size: 16px;
        margin-right: 10px;
        flex-shrink: 0;
    }

    .product-showcase,
    .feature-showcase,
    .info-card img,
    .info-card picture {
        margin-bottom: 20px;
    }

    .ae-media-caption-card {
        padding: 12px 14px;
        text-align: center;
    }

    .ae-connection-note {
        padding: 22px 18px;
    }

    .ae-connection-note h3 {
        font-size: 20px;
    }

    .description-card h2 {
        font-size: 24px;
    }

    .description-card p,
    .info-card p,
    .feature-content p,
    .feature-content li {
        font-size: 15px;
    }

    /* 技术特性 */
    .tech-highlight {
        padding: 40px 20px;
    }

    .tech-highlight h3 {
        font-size: 24px;
    }

    .tech-highlight p {
        font-size: 16px;
    }

    /* 背景特性 */
    .feature-with-bg {
        padding: 40px 20px;
    }

    .content-grid {
        grid-template-columns: 1fr;
    }

    /* 兼容性选项 */
    .compatibility-options {
        grid-template-columns: 1fr;
    }

    /* 表格 */
    .specs-table {
        font-size: 14px;
    }

    .specs-table th,
    .specs-table td {
        padding: 15px;
    }

    .frame-rate-table {
        padding: 20px;
        overflow-x: auto;
    }

    .performance-table {
        min-width: 500px;
        font-size: 14px;
    }

    .performance-table th,
    .performance-table td {
        padding: 10px 8px;
        font-size: 13px;
    }

    /* 包装清单 */
    .package-list {
        padding: 30px 20px;
    }

    .package-list ul {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .package-list li {
        padding: 10px 15px;
        font-size: 14px;
    }

    /* 导航手册链接 */
    .g3m-floating-nav .manual-link {
        padding: 10px 14px;
        font-size: 14px;
    }

    .g3m-floating-nav .manual-link i:first-child {
        font-size: 16px;
        margin-right: 8px;
    }

    /* 图表说明 */
    .chart-description {
        font-size: 14px;
        padding: 12px;
        margin: 12px 0 16px 0;
    }
}

@media (max-width: 480px) {
    /* 基础元素 */
    .product-title {
        font-size: 24px;
    }

    .product-subtitle {
        font-size: 14px;
    }

    .section-title {
        font-size: 20px;
    }

    .ae-parameter-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    .ae-setup-grid {
        grid-template-columns: 1fr;
    }

    .ae-parameter-card {
        min-height: 132px;
        padding: 14px 10px;
        gap: 8px;
    }

    .ae-parameter-icon {
        width: 54px;
        height: 42px;
        margin-bottom: 0;
    }

    .ae-parameter-label {
        font-size: 11px;
        letter-spacing: 0.04em;
        line-height: 1.25;
    }

    .ae-parameter-value {
        font-size: 14px;
        line-height: 1.25;
        overflow-wrap: anywhere;
    }

    .ae-connection-setups span {
        flex: 1 1 calc(50% - 10px);
        min-width: 0;
    }

    /* 特性卡片 */
    .feature-value {
        font-size: 28px;
    }

    .feature-label {
        font-size: 16px;
    }

    #advantages .feature-item {
        padding: 20px 12px;
    }

    #advantages .feature-icon {
        width: 42px;
        height: 42px;
        font-size: 16px;
        margin-bottom: 12px;
    }

    #advantages .feature-label {
        font-size: 13px;
        line-height: 1.3;
    }

    #advantages .feature-desc {
        font-size: 12px;
        line-height: 1.45;
    }

    /* 技术特性 */
    .tech-feature h3 {
        font-size: 20px;
    }

    .tech-feature p {
        font-size: 14px;
    }

    /* 功能描述区域 */
    .function-description {
        padding: 30px 15px;
        margin-top: 30px;
    }

    .function-description h2 {
        font-size: 22px;
    }

    .function-description > p {
        font-size: 15px;
        line-height: 1.6;
    }

    .feature-list {
        padding: 20px 15px;
    }

    .feature-list h3 {
        font-size: 18px;
    }

    .feature-list li {
        font-size: 14px;
        padding: 6px 0;
    }

    .feature-list li i {
        font-size: 14px;
        margin-right: 8px;
    }

    .feature-item,
    .description-card,
    .info-card,
    .feature-showcase {
        padding: 24px 15px;
    }

    .feature-icon {
        width: 46px;
        height: 46px;
        font-size: 18px;
        margin-bottom: 16px;
    }
}


.atf-section-padding {
    padding: 40px 0;
}

/* ========================================
   V2 Shared Alignment
   说明：行星相机详情页继续保留自身产品模块，只将重复公共层改为 V2 语义。
   ======================================== */

body.product-detail-v2 .page-wrapper {
    /* 详情页外层背景统一回到视觉规范内容底色，避免家族样式再次叠加品牌渐变。 */
    background: var(--v2-bg-content);
}

body.product-detail-v2 .atf_portfolio__details-area .container {
    background: var(--v2-bg-primary);
    border: 0;
    box-shadow: none;
    padding-top: 0;
    padding-bottom: 0;
}

body.product-detail-v2 .g3m-product-details {
    color: var(--v2-text-body);
}

body.product-detail-v2 .g3m-floating-nav .nav-toggle {
    animation: none;
}

body.product-detail-v2 .atf-page-heading[style*="--planetary-camera-ban-bg"] .atf-page-heading-title {
    color: var(--v2-text-heading) !important;
    text-shadow: 0 2px 8px rgba(255, 255, 255, 0.48);
}

body.product-detail-v2 .atf-page-heading.atf-align-left .banner-center-btn .btn-banner-center {
    border-radius: var(--v2-radius-button-pill, 22px);
}

@media (min-width: 769px) {
    body.product-detail-v2 .atf-page-heading[style*="--planetary-camera-ban-bg"] .banner-center-btn {
        bottom: 24%;
    }
}

body.product-detail-v2 .product-section {
    background: var(--v2-bg-primary);
    border: 0;
    border-bottom: 1px solid rgba(var(--v2-primary-500-rgb), 0.1);
    border-radius: 0;
    box-shadow: none;
    margin-bottom: 0;
    padding: 72px 0;
    scroll-margin-top: var(--detail-scroll-offset);
}

body.product-detail-v2 .product-section:first-of-type {
    padding-top: 40px;
}

body.product-detail-v2 .product-section:last-of-type {
    border-bottom: 0;
}

body.product-detail-v2 .product-title {
    color: var(--v2-text-heading);
}

body.product-detail-v2 .product-subtitle {
    color: var(--v2-text-secondary);
}

body.product-detail-v2 .main-product-image img,
body.product-detail-v2 .main-product-image picture,
body.product-detail-v2 .main-product-image .img-fluid {
    border-radius: 8px;
    border: 1px solid rgba(var(--v2-primary-500-rgb), 0.12);
    box-shadow: none;
}

body.product-detail-v2 .main-product-image img:hover,
body.product-detail-v2 .main-product-image picture:hover,
body.product-detail-v2 .main-product-image .img-fluid:hover {
    transform: none;
    box-shadow: none;
}

/* ========================================
   V2 Planetary Final Alignment
   说明：
   - 行星相机详情页补齐 CTA、性能卡、规格表和标签块的 V2 语义。
   ======================================== */

body.product-detail-v2 .atf_portfolio__details-area.bg-f6 {
    background: var(--v2-bg-primary) !important;
    background-color: var(--v2-bg-primary) !important;
}

body.product-detail-v2 .performance-card,
body.product-detail-v2 .feature-card,
body.product-detail-v2 .feature-item,
body.product-detail-v2 .info-card,
body.product-detail-v2 .ae-scenario-card,
body.product-detail-v2 .ae-parameter-card,
body.product-detail-v2 .description-card,
body.product-detail-v2 .feature-showcase,
body.product-detail-v2 .comparison-item,
body.product-detail-v2 .application-card {
    background: var(--v2-bg-primary);
    border-color: var(--v2-bg-divider);
}

body.product-detail-v2 .product-showcase img,
body.product-detail-v2 .product-showcase picture,
body.product-detail-v2 .feature-showcase img,
body.product-detail-v2 .feature-showcase picture,
body.product-detail-v2 .info-card img,
body.product-detail-v2 .info-card picture,
body.product-detail-v2 .dimensions-gallery img,
body.product-detail-v2 .dimensions-gallery picture,
body.product-detail-v2 .package-images img,
body.product-detail-v2 .package-images picture {
    border: 1px solid rgba(var(--v2-primary-500-rgb), 0.1);
    box-shadow: none;
}

body.product-detail-v2 .description-card,
body.product-detail-v2 .feature-card,
body.product-detail-v2 .feature-item,
body.product-detail-v2 .info-card,
body.product-detail-v2 .ae-scenario-card,
body.product-detail-v2 .ae-parameter-card,
body.product-detail-v2 .feature-showcase,
body.product-detail-v2 .function-description,
body.product-detail-v2 .feature-list,
body.product-detail-v2 .package-list,
body.product-detail-v2 .specs-table,
body.product-detail-v2 .performance-table,
body.product-detail-v2 .package-list li {
    border: 1px solid rgba(var(--v2-primary-500-rgb), 0.1);
    box-shadow: none;
}

body.product-detail-v2 .description-card,
body.product-detail-v2 .feature-card,
body.product-detail-v2 .feature-item,
body.product-detail-v2 .info-card,
body.product-detail-v2 .ae-scenario-card,
body.product-detail-v2 .ae-parameter-card,
body.product-detail-v2 .feature-showcase,
body.product-detail-v2 .function-description,
body.product-detail-v2 .package-list {
    background: var(--v2-bg-primary);
}

body.product-detail-v2 .ae-media-block picture {
    border: 0;
    box-shadow: none;
}

body.product-detail-v2 .ae-media-block img {
    margin-bottom: 0;
}

body.product-detail-v2 .ae-stacked-card .ae-media-block img {
    border: 0;
}

body.product-detail-v2 .feature-item:hover,
body.product-detail-v2 .feature-card:hover,
body.product-detail-v2 .package-list li:hover {
    border-color: rgba(var(--v2-primary-500-rgb), 0.24);
    box-shadow: none;
    transform: translateY(-2px);
}

body.product-detail-v2 .feature-showcase {
    background: var(--v2-bg-primary);
}

body.product-detail-v2 .spec-tag,
body.product-detail-v2 .feature-badge,
body.product-detail-v2 .application-tag {
    background: var(--v2-bg-content);
    border: 1px solid var(--v2-bg-divider);
    border-radius: var(--v2-radius-pill);
    color: var(--v2-text-body);
}

body.product-detail-v2 .buy-btn,
body.product-detail-v2 .manual-link,
body.product-detail-v2 .btn-primary {
    background: var(--v2-primary-500);
    border-color: var(--v2-primary-500);
    color: var(--v2-text-inverse);
}

body.product-detail-v2 .buy-btn:hover,
body.product-detail-v2 .manual-link:hover,
body.product-detail-v2 .btn-primary:hover {
    background: var(--v2-primary-400);
    border-color: var(--v2-primary-400);
}

body.product-detail-v2 .specs-table th,
body.product-detail-v2 .performance-table th {
    background: var(--v2-bg-functional);
    color: var(--v2-text-heading);
}

body.product-detail-v2 .atf_portfolio__details-title {
    font-size: 24px;
    line-height: 32px;
    font-weight: 500;
    color: var(--v2-text-heading);
}

body.product-detail-v2 .atf_portfolio__details-area .container,
body.product-detail-v2 .legacy-detail-media,
body.product-detail-v2 .legacy-image-gallery {
    border-radius: 8px;
}

body.product-detail-v2 .legacy-image-gallery {
    overflow: hidden;
    border: 1px solid rgba(var(--v2-primary-500-rgb), 0.1);
}

body.product-detail-v2 .legacy-image-gallery > img,
body.product-detail-v2 .legacy-image-gallery > picture,
body.product-detail-v2 .legacy-image-gallery > picture img {
    border-radius: 0;
}

body.product-detail-v2 .legacy-image-gallery > img:first-child,
body.product-detail-v2 .legacy-image-gallery > picture:first-child,
body.product-detail-v2 .legacy-image-gallery > picture:first-child img {
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

body.product-detail-v2 .legacy-image-gallery > img:last-child,
body.product-detail-v2 .legacy-image-gallery > picture:last-child,
body.product-detail-v2 .legacy-image-gallery > picture:last-child img {
    border-bottom-right-radius: 8px;
    border-bottom-left-radius: 8px;
}

body.product-detail-v2 .legacy-related-cameras h3 {
    font-size: 32px;
    line-height: 40px;
    font-weight: 500;
}

body.product-detail-v2 .g3m-product-details .product-title {
    font-size: 48px;
    line-height: 56px;
    font-weight: 500;
}

body.product-detail-v2 .g3m-product-details .product-subtitle,
body.product-detail-v2 .g3m-product-details p,
body.product-detail-v2 .g3m-product-details li,
body.product-detail-v2 .g3m-product-details td {
    font-size: 16px;
    line-height: 24px;
}

body.product-detail-v2 .g3m-product-details .product-section h2,
body.product-detail-v2 .g3m-product-details .section-title {
    font-size: 32px;
    line-height: 40px;
    font-weight: 500;
}

body.product-detail-v2 .g3m-product-details .product-section h3 {
    font-size: 24px;
    line-height: 32px;
    font-weight: 500;
}

body.product-detail-v2 .g3m-product-details .function-description,
body.product-detail-v2 .g3m-product-details .feature-list,
body.product-detail-v2 .g3m-product-details .feature-card,
body.product-detail-v2 .g3m-product-details .feature-item,
body.product-detail-v2 .g3m-product-details .feature-showcase,
body.product-detail-v2 .g3m-product-details .info-card,
body.product-detail-v2 .g3m-product-details .tech-highlight,
body.product-detail-v2 .g3m-product-details .tech-feature,
body.product-detail-v2 .g3m-product-details .option-card,
body.product-detail-v2 .g3m-product-details .specs-table-wrapper,
body.product-detail-v2 .g3m-product-details .mode-item,
body.product-detail-v2 .g3m-product-details .highlight-item,
body.product-detail-v2 .g3m-product-details .performance-table,
body.product-detail-v2 .g3m-product-details .specs-table,
body.product-detail-v2 .g3m-product-details .package-list,
body.product-detail-v2 .g3m-product-details .package-list li,
body.product-detail-v2 .g3m-product-details img,
body.product-detail-v2 .g3m-product-details picture,
body.product-detail-v2 .g3m-product-details .main-product-image img,
body.product-detail-v2 .g3m-product-details .main-product-image picture,
body.product-detail-v2 .g3m-product-details .product-showcase img,
body.product-detail-v2 .g3m-product-details .product-showcase picture,
body.product-detail-v2 .g3m-product-details .dimensions-gallery img,
body.product-detail-v2 .g3m-product-details .dimensions-gallery picture,
body.product-detail-v2 .g3m-product-details .package-images img,
body.product-detail-v2 .g3m-product-details .package-images picture {
    border-radius: 8px;
}

@media (max-width: 768px) {
    body.product-detail-v2 .atf_portfolio__details-title {
        font-size: 20px;
        line-height: 28px;
        font-weight: 500;
    }

    body.product-detail-v2 .legacy-related-cameras h3 {
        font-size: 24px;
        line-height: 32px;
        font-weight: 500;
    }

    body.product-detail-v2 .g3m-product-details .product-title {
        font-size: 28px;
        line-height: 36px;
        font-weight: 500;
    }

    body.product-detail-v2 .atf-page-heading.atf-align-left .banner-center-btn .btn-banner-center {
        border-radius: 21px;
    }

    body.product-detail-v2 .g3m-product-details .product-subtitle,
    body.product-detail-v2 .g3m-product-details p,
    body.product-detail-v2 .g3m-product-details li,
    body.product-detail-v2 .g3m-product-details td {
        font-size: 16px;
        line-height: 24px;
    }

    body.product-detail-v2 .g3m-product-details .product-section h2,
    body.product-detail-v2 .g3m-product-details .section-title {
        font-size: 24px;
        line-height: 32px;
        font-weight: 500;
    }

    body.product-detail-v2 .g3m-product-details .product-section h3 {
        font-size: 20px;
        line-height: 28px;
        font-weight: 500;
    }

    body.product-detail-v2 .g3m-product-details .performance-table,
    body.product-detail-v2 .g3m-product-details .specs-table {
        width: 100%;
        min-width: 0;
        max-width: 100%;
        table-layout: fixed;
    }

    body.product-detail-v2 .g3m-product-details .performance-table th,
    body.product-detail-v2 .g3m-product-details .performance-table td,
    body.product-detail-v2 .g3m-product-details .specs-table th,
    body.product-detail-v2 .g3m-product-details .specs-table td {
        overflow-wrap: anywhere;
    }
}

body.ae676c-detail-page #advantages .feature-grid {
    gap: 24px;
    margin-bottom: 0;
}

body.ae676c-detail-page #advantages .feature-item {
    min-height: 248px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 32px 24px;
    border-radius: 8px;
    transition: border-color 0.2s ease, transform 0.2s ease;
}

body.ae676c-detail-page #advantages .feature-item:hover {
    transform: translateY(-2px);
}

body.ae676c-detail-page #advantages .feature-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 18px;
    border: 1px solid rgba(var(--v2-primary-500-rgb), 0.12);
    background: var(--v2-bg-functional);
}

body.ae676c-detail-page #advantages .feature-label {
    color: var(--v2-text-heading);
    font-size: 18px;
    font-weight: 800;
    line-height: 1.35;
}

body.ae676c-detail-page #advantages .feature-desc {
    margin-top: 10px;
    color: var(--v2-text-secondary);
    font-size: 14px;
    line-height: 1.6;
}

body.ae676c-detail-page #sensor .ae-section-stack {
    gap: 24px;
}

body.ae676c-detail-page .product-section > .hero-section,
body.ae676c-detail-page .product-section > .product-showcase,
body.ae676c-detail-page .product-section > .description-card,
body.ae676c-detail-page .product-section > .feature-grid,
body.ae676c-detail-page .product-section > .ae-section-stack,
body.ae676c-detail-page .product-section > .ae-card-stack,
body.ae676c-detail-page .product-section > .ae-setup-grid,
body.ae676c-detail-page .product-section > .dimensions-gallery,
body.ae676c-detail-page .product-section > .ae-connection-note,
body.ae676c-detail-page .product-section > .package-images,
body.ae676c-detail-page .product-section > .package-list,
body.ae676c-detail-page .product-section > .ae-specs-table-wrapper {
    width: 100%;
    max-width: 1360px;
    margin-right: auto;
    margin-left: auto;
}

body.ae676c-detail-page .product-section > .section-title {
    max-width: 1360px;
    margin-right: auto;
    margin-left: auto;
}

body.ae676c-detail-page #sensor .ae-section-stack > .ae-media-block {
    overflow: visible;
    border: 0;
    border-radius: 0;
    background: transparent;
    line-height: 0;
}

body.ae676c-detail-page #sensor .ae-section-stack > .ae-media-block img {
    border: 0 !important;
    border-radius: 0 !important;
}

body.ae676c-detail-page #sensor .ae-section-stack + .ae-card-stack {
    margin-top: 32px;
}

body.ae676c-detail-page #sensor .ae-stacked-card .ae-media-block {
    margin-top: 22px;
}

body.ae676c-detail-page .ae-setup-grid,
body.ae676c-detail-page .dimensions-gallery,
body.ae676c-detail-page .package-images,
body.ae676c-detail-page .ae-card-stack,
body.ae676c-detail-page .ae-section-stack,
body.ae676c-detail-page .ae-text-panel,
body.ae676c-detail-page .ae-specs-table-wrapper {
    width: 100%;
    max-width: none;
}

body.ae676c-detail-page .ae-setup-grid {
    gap: 28px;
    margin-right: 0;
    margin-left: 0;
}

body.ae676c-detail-page .ae-setup-card {
    border-color: rgba(var(--v2-primary-500-rgb), 0.12);
    box-shadow: none;
}

body.ae676c-detail-page #sensor .ae-card-stack {
    gap: 40px;
}

body.ae676c-detail-page #sensor .info-card {
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
}

body.ae676c-detail-page #sensor .info-card h3,
body.ae676c-detail-page #sensor .info-card p,
body.ae676c-detail-page #sensor .info-card .ae-check-list {
    max-width: none;
}

body.ae676c-detail-page #sensor .info-card .ae-media-block {
    margin-top: 24px;
    line-height: 0;
}

body.ae676c-detail-page #sensor .info-card .ae-media-block img {
    border: 0 !important;
    border-radius: 0 !important;
}

body.ae676c-detail-page .info-card,
body.ae676c-detail-page .description-card,
body.ae676c-detail-page .feature-item,
body.ae676c-detail-page .package-list {
    box-shadow: none;
}

body.ae676c-detail-page .ae-connection-note {
    width: 100%;
    max-width: none;
    margin-right: 0;
    margin-left: 0;
}

body.ae676c-detail-page #software .ae-connection-note {
    margin-top: 0;
}

body.ae676c-detail-page #connection .dimensions-gallery {
    gap: 34px;
}

body.ae676c-detail-page #connection .dimensions-gallery .ae-media-block {
    gap: 0;
}

body.ae676c-detail-page #connection .dimensions-gallery .ae-image-zoom img {
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
}

body.ae676c-detail-page #connection .ae-media-caption-card {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 16px 20px 18px;
    border: 1px solid rgba(var(--v2-primary-500-rgb), 0.1);
    border-top: 0;
    border-radius: 0 0 var(--v2-radius-md) var(--v2-radius-md);
    background: var(--v2-bg-content);
}

body.ae676c-detail-page #connection .ae-image-note-card {
    width: 100%;
    max-width: none;
    margin: 0;
}

body.ae676c-detail-page #connection .ae-media-caption-card h3 {
    font-size: 16px;
    font-weight: 800;
}

body.ae676c-detail-page #connection .ae-media-caption-card p {
    max-width: 680px;
    margin-right: auto;
    margin-left: auto;
}

body.ae676c-detail-page #software .ae-connection-note,
body.ae676c-detail-page #connection .ae-connection-note {
    max-width: 1360px;
}

body.ae676c-detail-page #setup-options .ae-setup-grid,
body.ae676c-detail-page #connection .dimensions-gallery,
body.ae676c-detail-page #connection .ae-connection-note,
body.ae676c-detail-page #software .ae-connection-note,
body.ae676c-detail-page #package .package-images,
body.ae676c-detail-page #performance .ae-card-stack,
body.ae676c-detail-page #performance .ae-specs-table-wrapper {
    width: 100%;
}

body.ae676c-detail-page .ae-media-caption {
    border: 0;
    background: transparent;
    box-shadow: none;
}

body.ae676c-detail-page .ae-table-heading,
body.ae676c-detail-page .feature-content h3,
body.ae676c-detail-page .info-card h3,
body.ae676c-detail-page .ae-connection-note h3 {
    color: var(--v2-text-heading);
    font-weight: 800;
    line-height: 1.3;
}

body.ae676c-detail-page .ae-table-heading {
    font-size: clamp(22px, 2vw, 28px);
}

body.ae676c-detail-page .feature-content h3,
body.ae676c-detail-page .ae-connection-note h3,
body.ae676c-detail-page .info-card h3 {
    font-size: clamp(22px, 2vw, 28px);
}

body.ae676c-detail-page .ae-media-block .ae-image-zoom {
    width: 100%;
    border-radius: var(--v2-radius-md);
}

body.ae676c-detail-page #sensor .ae-section-stack > .ae-media-block .ae-image-zoom,
body.ae676c-detail-page #sensor .info-card .ae-media-block .ae-image-zoom,
body.ae676c-detail-page .ae-graph-card .ae-media-block .ae-image-zoom {
    border-radius: 0;
    overflow: visible;
}

body.ae676c-detail-page .ae-image-note-card {
    background: var(--v2-bg-secondary);
}

body.ae676c-detail-page .product-title {
    font-size: var(--v2-h0-font-size);
    line-height: var(--v2-h0-line-height);
    font-weight: 500;
}

body.ae676c-detail-page .product-subtitle,
body.ae676c-detail-page .description-card p,
body.ae676c-detail-page .feature-content p,
body.ae676c-detail-page .info-card p,
body.ae676c-detail-page .ae-connection-note p,
body.ae676c-detail-page .package-list li,
body.ae676c-detail-page .specs-table td,
body.ae676c-detail-page .specs-table th,
body.ae676c-detail-page .performance-table td,
body.ae676c-detail-page .performance-table th {
    font-size: 16px;
    line-height: 24px;
}

body.ae676c-detail-page .section-title,
body.ae676c-detail-page .description-card h2 {
    font-size: 32px;
    line-height: 40px;
    font-weight: 500;
}

body.ae676c-detail-page .ae-table-heading,
body.ae676c-detail-page .feature-content h3,
body.ae676c-detail-page .info-card h3,
body.ae676c-detail-page .ae-setup-card h3,
body.ae676c-detail-page .ae-connection-note h3,
body.ae676c-detail-page .package-list h3 {
    font-size: 24px;
    line-height: 32px;
    font-weight: 500;
}

body.ae676c-detail-page .description-card,
body.ae676c-detail-page .info-card,
body.ae676c-detail-page .ae-stacked-card,
body.ae676c-detail-page .feature-item,
body.ae676c-detail-page .ae-scenario-card,
body.ae676c-detail-page .ae-parameter-card,
body.ae676c-detail-page .ae-setup-card,
body.ae676c-detail-page .ae-image-note-card,
body.ae676c-detail-page .ae-connection-note,
body.ae676c-detail-page .package-list,
body.ae676c-detail-page .package-list li,
body.ae676c-detail-page .ae-media-caption-card,
body.ae676c-detail-page .ae-table-wrapper,
body.ae676c-detail-page .specs-table-wrapper,
body.ae676c-detail-page .ae-specs-table-wrapper,
body.ae676c-detail-page .specs-table,
body.ae676c-detail-page .performance-table,
body.ae676c-detail-page .ae-media-block .ae-image-zoom,
body.ae676c-detail-page .ae-media-block img {
    border-radius: 8px;
}

body.ae676c-detail-page #connection .ae-image-zoom img {
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
}

body.ae676c-detail-page #connection .ae-media-caption-card {
    border-radius: 0 0 8px 8px;
}

body.ae676c-detail-page #sensor .ae-section-stack > .ae-media-block img,
body.ae676c-detail-page #sensor .info-card .ae-media-block img,
body.ae676c-detail-page #sensor .ae-section-stack > .ae-media-block .ae-image-zoom,
body.ae676c-detail-page #sensor .info-card .ae-media-block .ae-image-zoom,
body.ae676c-detail-page .ae-graph-card .ae-media-block .ae-image-zoom {
    border-radius: 8px !important;
}

@media (max-width: 768px) {
    body.ae676c-detail-page #advantages .feature-grid {
        gap: 14px;
    }

    body.ae676c-detail-page #advantages .feature-item {
        min-height: 190px;
        padding: 22px 14px;
    }

    body.ae676c-detail-page #advantages .feature-icon {
        width: 42px;
        height: 42px;
        margin-bottom: 12px;
        font-size: 16px;
    }

    body.ae676c-detail-page #advantages .feature-label {
        font-size: 14px;
        line-height: 1.3;
    }

    body.ae676c-detail-page #advantages .feature-desc {
        font-size: 12px;
        line-height: 1.45;
    }

    body.ae676c-detail-page .ae-setup-grid {
        gap: 16px;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    body.ae676c-detail-page .ae-setup-label {
        min-height: 44px;
        padding: 8px 10px;
        font-size: 12px;
        line-height: 1.25;
    }

    body.ae676c-detail-page .product-title {
        font-size: var(--v2-mobile-banner-title-font-size);
        line-height: var(--v2-mobile-banner-title-line-height);
        font-weight: 500;
    }

    body.ae676c-detail-page .section-title,
    body.ae676c-detail-page .description-card h2 {
        font-size: 24px;
        line-height: 32px;
        font-weight: 500;
    }

    body.ae676c-detail-page .ae-table-heading,
    body.ae676c-detail-page .feature-content h3,
    body.ae676c-detail-page .info-card h3,
    body.ae676c-detail-page .ae-setup-card h3,
    body.ae676c-detail-page .ae-connection-note h3,
    body.ae676c-detail-page .package-list h3 {
        font-size: 20px;
        line-height: 28px;
        font-weight: 500;
    }

    body.ae676c-detail-page #native-adc .ae-table-wrapper {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: thin;
        scrollbar-color: var(--v2-primary-500) var(--v2-bg-content);
    }

    body.ae676c-detail-page #native-adc .ae-table-wrapper::-webkit-scrollbar {
        height: 8px;
    }

    body.ae676c-detail-page #native-adc .ae-table-wrapper::-webkit-scrollbar-track {
        background: var(--v2-bg-content);
    }

    body.ae676c-detail-page #native-adc .ae-table-wrapper::-webkit-scrollbar-thumb {
        background: var(--v2-primary-500);
        border-radius: 999px;
    }

    body.ae676c-detail-page #native-adc .ae-table-wrapper:focus-visible {
        outline: 2px solid var(--v2-primary-500);
        outline-offset: 4px;
    }

    body.ae676c-detail-page #native-adc .ae-frame-rate-table {
        width: 720px;
        min-width: 720px;
        max-width: none;
        table-layout: auto;
    }

    body.ae676c-detail-page #native-adc .ae-frame-rate-table th,
    body.ae676c-detail-page #native-adc .ae-frame-rate-table td {
        white-space: nowrap;
        overflow-wrap: normal;
        word-break: normal;
    }

    body.ae676c-detail-page #performance .ae-measured-performance-table {
        width: 640px;
        min-width: 640px;
        max-width: none;
        table-layout: auto;
    }

    body.ae676c-detail-page #performance .ae-measured-performance-table th,
    body.ae676c-detail-page #performance .ae-measured-performance-table td {
        display: table-cell;
        white-space: normal;
        overflow-wrap: normal;
        word-break: normal;
    }
}

@media (max-width: 767px) {
    body.ae676c-detail-page .atf-page-heading.atf-align-left .atf-post-label {
        display: flex !important;
        flex-wrap: nowrap !important;
        align-items: center !important;
        gap: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
        height: 42px !important;
        min-height: 42px !important;
        padding: 0 12px !important;
        overflow-x: auto !important;
        overflow-y: hidden !important;
        white-space: nowrap !important;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    body.ae676c-detail-page .atf-page-heading.atf-align-left .atf-post-label::-webkit-scrollbar {
        display: none;
        width: 0;
        height: 0;
    }

    body.ae676c-detail-page .atf-page-heading.atf-align-left .atf-post-label > span,
    body.ae676c-detail-page .atf-page-heading.atf-align-left .atf-post-label > span a {
        flex: 0 0 auto !important;
        font-size: 14px !important;
        line-height: 22px !important;
        white-space: nowrap !important;
    }

    body.ae676c-detail-page .atf-page-heading.atf-align-left .atf-post-label > span:not(:last-child)::after {
        margin-right: 8px !important;
        margin-left: 8px !important;
    }
}
