@charset "utf-8";

/* Product detail page — page-07 */

.product-detail-page main {
    background: #fff
}

.product-detail-hero {
    position: relative;
    background: #eee;
    overflow: hidden
}

.product-detail-hero__media {
    aspect-ratio: 1920 / 650;
    max-height: 650px
}

.product-detail-hero__media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover
}

.product-detail-hero__overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    background: linear-gradient(180deg, rgba(0, 0, 0, .08) 0%, rgba(0, 0, 0, .42) 100%)
}

.product-detail-hero__inner {
    width: 100%;
    padding: 28px 20px 32px
}

.product-detail-hero__caption {
    max-width: min(720px, 58vw)
}

.product-detail-hero__title {
    margin: 0 0 10px;
    font-size: clamp(22px, 2.6vw, 36px);
    font-weight: var(--fontbold6);
    color: #fff;
    line-height: 1.25;
    text-transform: uppercase;
    letter-spacing: .02em;
    word-break: break-word
}

.product-detail-hero__desc {
    margin: 0;
    max-width: min(560px, 50vw);
    font-size: 14px;
    line-height: 1.65;
    color: rgba(255, 255, 255, .9)
}

.product-detail-hero__title:empty,
.product-detail-hero__desc:empty {
    display: none
}

.product-detail-crumb {
    padding: 14px 20px;
    font-size: 13px;
    line-height: 1.5;
    color: var(--text-muted);
    background: #fff;
    border-bottom: 1px solid #eee
}

.product-detail-crumb a {
    color: var(--text-muted)
}

.product-detail-crumb a:hover {
    color: var(--color)
}

.product-detail-main {
    padding: 28px 20px 56px;
    min-width: 0;
    box-sizing: border-box
}

.product-detail-section-title {
    margin: 0 0 32px;
    font-size: clamp(24px, 2.6vw, 32px);
    font-weight: var(--fontbold6);
    color: var(--fontcolor);
    text-align: center;
    position: relative;
    padding-bottom: 16px
}

.product-detail-section-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--color);
    border-radius: 2px
}

.product-detail-section-title:empty {
    display: none
}

/* Overview — page-07: 800×800 gallery + info card */
.product-detail-overview {
    display: grid;
    grid-template-columns: minmax(0, 800px) minmax(0, 1fr);
    gap: 32px 48px;
    align-items: start;
    margin-bottom: 48px;
    min-width: 0;
    max-width: 100%
}

.product-detail-gallery {
    width: 100%;
    max-width: 800px;
    min-width: 0
}

.product-detail-gallery-swiper {
    width: 100%;
    max-width: 100%;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    background: #fff;
    overflow: hidden
}

.product-detail-gallery-swiper .swiper-wrapper {
    min-width: 0
}

.product-detail-gallery-swiper .swiper-slide {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box
}

.product-detail-gallery__slide {
    position: relative;
    width: 100%;
    max-width: 100%;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    overflow: hidden
}

.product-detail-gallery__slide img {
    display: block;
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain
}

.product-detail-info {
    min-width: 0;
    max-width: 100%
}

.product-detail-gallery__thumbs {
    display: flex;
    flex-wrap: nowrap;
    gap: 10px;
    margin-top: 12px;
    overflow-x: auto;
    scrollbar-width: none
}

.product-detail-gallery__thumbs::-webkit-scrollbar {
    display: none
}

.product-detail-gallery__thumb {
    flex: 0 0 80px;
    width: 80px;
    height: 80px;
    padding: 0;
    border: 2px solid transparent;
    border-radius: 6px;
    background: #f8f9fb;
    cursor: pointer;
    overflow: hidden;
    transition: border-color .2s linear
}

.product-detail-gallery__thumb.is-active,
.product-detail-gallery__thumb:hover {
    border-color: var(--color)
}

.product-detail-gallery__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.product-detail-info__card {
    padding: 22px 24px;
    margin-bottom: 20px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    background: #fff
}

.product-detail-info__title {
    margin: 0;
    font-size: clamp(18px, 1.9vw, 24px);
    font-weight: var(--fontbold6);
    color: var(--fontcolor);
    line-height: 1.35;
    text-transform: uppercase;
    letter-spacing: .01em
}

.product-detail-info__subtitle {
    margin: 12px 0 0;
    font-size: 12px;
    line-height: 1.7;
    color: #000;
    word-break: break-word
}

.product-detail-info__title:empty {
    display: none
}

.product-detail-info__subtitle:empty {
    display: none
}

.product-detail-info__divider {
    height: 1px;
    margin: 16px 0 18px;
    background: #eee
}

.product-detail-info__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 14px
}

.product-detail-info__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 0;
    height: 38px;
    padding: 0 18px;
    border-radius: 999px;
    background: var(--color);
    color: #fff;
    border: 1px solid var(--color);
    font-size: 13px;
    font-weight: var(--fontbold5);
    text-decoration: none;
    white-space: nowrap;
    transition: background .2s linear, border-color .2s linear
}

.product-detail-info__btn:hover {
    background: var(--color-hover);
    border-color: var(--color-hover)
}

.product-detail-info__hint {
    margin: 0 0 12px;
    font-size: 12px;
    line-height: 1.5;
    color: var(--text-muted)
}

.product-detail-info__hint a {
    color: var(--color);
    text-decoration: underline
}

.product-detail-info__contact {
    margin: 0 0 14px;
    padding: 0;
    list-style: none
}

.product-detail-info__contact li {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
    font-size: 12px;
    line-height: 1.5;
    color: var(--text-muted)
}

.product-detail-info__contact li i {
    font-size: 16px;
    color: var(--color)
}

.product-detail-info__contact a {
    color: inherit;
    text-decoration: none
}

.product-detail-info__contact a:hover {
    color: var(--color)
}

.product-detail-info__share {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px 12px;
    padding-top: 12px;
    border-top: 1px solid #eee
}

.product-detail-info__share-label {
    font-size: 12px;
    color: var(--text-muted)
}

.product-detail-info__highlights {
    font-size: 14px;
    line-height: 1.75;
    color: var(--text-muted)
}

.product-detail-info__highlights p {
    margin: 0 0 .6em
}

.product-detail-info__highlights ul {
    margin: 0;
    padding: 0;
    list-style: none
}

.product-detail-info__highlights li {
    position: relative;
    margin-bottom: 8px;
    padding-left: 14px
}

.product-detail-info__highlights li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 9px;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--fontcolor)
}

.product-detail-info__highlights:empty {
    display: none
}

/* Block title — centered + blue bar */
.product-detail-block-title {
    margin: 0 0 24px;
    font-size: clamp(20px, 2.2vw, 26px);
    font-weight: var(--fontbold6);
    color: var(--fontcolor);
    text-align: center;
    position: relative;
    padding-bottom: 14px
}

.product-detail-block-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 56px;
    height: 3px;
    background: var(--color);
    border-radius: 2px
}

/* Product Features — page-07 icon carousel */
.product-detail-features {
    margin: 48px 0 56px;
    padding: 56px 0 28px;
    border-top: 1px solid #e8eaed;
    clear: both
}

.product-detail-features:not(:has(.swiper-slide)) {
    display: none
}

.product-detail-features__title {
    margin: 0 0 72px;
    font-size: clamp(26px, 3vw, 36px);
    font-weight: var(--fontbold6);
    color: rgba(0, 0, 0, .75);
    text-align: center;
    line-height: 1.4
}

.product-detail-features__stage {
    position: relative;
    display: block;
    max-width: 1480px;
    margin: 0 auto;
    padding: 0 56px;
    background: transparent
}

.product-detail-features__nav {
    position: absolute;
    top: 50%;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 1px solid #d1d5db;
    border-radius: 50%;
    background: #fff;
    color: #4b5563;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(15, 23, 42, .1);
    transform: translateY(-50%);
    transition: color .2s linear, border-color .2s linear, box-shadow .2s linear, background .2s linear
}

.product-detail-features__nav--prev {
    left: 0
}

.product-detail-features__nav--next {
    right: 0
}

.product-detail-features__nav i {
    font-size: 16px;
    line-height: 1
}

.product-detail-features__nav:hover:not(.is-disabled) {
    color: #fff;
    background: var(--color);
    border-color: var(--color);
    box-shadow: 0 6px 18px rgba(var(--color-rgb), .28)
}

.product-detail-features__nav.is-disabled {
    opacity: .4;
    cursor: default;
    pointer-events: none
}

.product-detail-features__nav.swiper-button-lock {
    display: none !important
}

.product-detail-features-swiper {
    width: 100%;
    min-width: 0;
    overflow: hidden
}

.product-detail-features-swiper .swiper-slide {
    height: auto
}

.product-detail-features__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 28px;
    box-sizing: border-box
}

.product-detail-features__media {
    width: 72px;
    margin: 0 auto
}

.product-detail-features__media img {
    display: block;
    width: 72px;
    max-width: 100%;
    height: auto;
    margin: 0 auto;
    object-fit: contain
}

.product-detail-features__label {
    margin: 24px 0 0;
    max-width: 280px;
    font-size: 16px;
    line-height: 1.75;
    color: rgba(0, 0, 0, .75);
    text-align: center;
    font-weight: var(--fontbold4)
}

.product-detail-features__sub {
    margin: 6px 0 0;
    max-width: 280px;
    font-size: 14px;
    line-height: 1.6;
    color: rgba(0, 0, 0, .55);
    text-align: center;
    font-weight: var(--fontbold4)
}

.product-detail-features__label:empty,
.product-detail-features__sub:empty {
    display: none
}

.product-detail-features__pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 52px
}

.product-detail-features__pagination.swiper-pagination-lock {
    display: none
}

.product-detail-features__pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    margin: 0 !important;
    background: transparent;
    border: 1px solid var(--color);
    opacity: 1;
    box-sizing: border-box;
    transition: background .2s linear, transform .2s linear, border-color .2s linear
}

.product-detail-features__pagination .swiper-pagination-bullet-active {
    background: var(--color);
    border-color: var(--color);
    transform: scale(1.05)
}

/* Pill row — blue capsule + divider below */
.product-detail-content-source {
    display: none !important
}

.product-detail-pill-row {
    display: flex;
    align-items: center;
    margin: 0
}

.product-detail-pill {
    display: inline-block;
    padding: 9px 20px;
    border-radius: 999px;
    background: var(--color);
    color: #fff;
    font-size: 14px;
    font-weight: var(--fontbold6);
    line-height: 1.2;
    white-space: nowrap
}

.product-detail-pill-divider {
    height: 1px;
    margin: 14px 0 18px;
    background: #d1d5db
}

.product-detail-specs,
.product-detail-advantages,
.product-detail-diagram,
.product-detail-scenarios-sec {
    margin-bottom: 40px
}

.product-detail-specs.is-empty,
.product-detail-advantages.is-empty,
.product-detail-diagram.is-empty,
.product-detail-scenarios-sec.is-empty {
    display: none
}

.product-detail-advantages__lead {
    margin: 0 0 28px;
    max-width: 1100px;
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-muted)
}

.product-detail-scenarios-sec {
    margin-top: 8px;
    margin-bottom: 56px;
    padding-top: 8px
}

.product-detail-scenarios-sec__lead {
    margin: 8px 0 36px;
    max-width: none;
    font-size: 16px;
    line-height: 1.75;
    color: #4b5563;
    letter-spacing: .01em;
    white-space: normal;
    word-break: break-word
}

.product-detail-advantages__lead:empty,
.product-detail-scenarios-sec__lead:empty {
    display: none
}

.product-detail-advantages__mount {
    margin-top: 8px
}

/* Specs table */
.product-detail-specs__mount {
    padding: 0 48px
}

.product-detail-specs__mount table,
.product-detail-specs__mount .product-detail-specs {
    width: 100%;
    margin: 0;
    border-collapse: collapse;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    overflow: hidden;
    font-size: 14px;
    line-height: 1.65
}

.product-detail-specs__mount table thead th {
    padding: 14px 20px;
    background: var(--color);
    color: #fff;
    font-weight: var(--fontbold6);
    text-align: left;
    border: 0
}

.product-detail-specs__mount table thead th + th {
    border-left: 1px solid rgba(255, 255, 255, .15)
}

.product-detail-specs__mount table tbody td {
    padding: 16px 20px;
    border-top: 1px solid #e5e7eb;
    vertical-align: top
}

.product-detail-specs__mount table tbody tr:nth-child(even) {
    background: #f8f9fb
}

.product-detail-specs__mount table thead th:first-child {
    text-align: center
}

.product-detail-specs__mount table tbody tr td:first-child {
    width: 30%;
    font-weight: var(--fontbold7);
    color: var(--fontcolor);
    text-align: center;
    vertical-align: middle
}

.product-detail-specs__mount table tbody tr td:last-child {
    color: var(--text-muted)
}

.product-detail-specs__mount table tbody td ul {
    margin: 0;
    padding: 0;
    list-style: none
}

.product-detail-specs__mount table tbody td li {
    position: relative;
    margin-bottom: 6px;
    padding-left: 12px
}

.product-detail-specs__mount table tbody td li::before {
    content: "-";
    position: absolute;
    left: 0;
    color: var(--text-muted)
}

/* Product Advantages — square badges, spaced out */
.product-detail-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
    gap: 24px 28px;
    margin: 0;
    padding: 8px 0 0;
    list-style: none
}

.product-detail-badges li {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 140px;
    min-height: 140px;
    height: auto;
    padding: 6px 6px 8px;
    border-radius: 12px;
    background: var(--color);
    color: #fff;
    font-size: 12px;
    font-weight: var(--fontbold6);
    text-align: center;
    line-height: 1.3;
    box-sizing: border-box;
    overflow: hidden;
    word-break: break-word;
    overflow-wrap: anywhere;
    box-shadow: 0 8px 20px rgba(30, 58, 138, .16);
    transition: transform .2s linear, box-shadow .2s linear
}

.product-detail-badges li:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(30, 58, 138, .22)
}

.product-detail-badges__icon {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    width: 88px;
    height: 88px;
    margin: 0 0 4px;
    font-size: 32px;
    line-height: 1;
    font-weight: var(--fontbold6)
}

.product-detail-badges__icon img {
    display: block;
    max-width: 88px !important;
    max-height: 88px !important;
    width: auto !important;
    height: auto !important;
    margin: 0;
    object-fit: contain
}

.product-detail-badges__text {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    max-width: 100%;
    max-height: 2.6em;
    overflow: hidden;
    text-overflow: ellipsis;
    word-break: break-word;
    overflow-wrap: anywhere
}

/* Rich-text content inside badges (clients paste img/text without sizing) */
.product-detail-badges li > * {
    max-width: 100%;
    box-sizing: border-box
}

.product-detail-badges li p,
.product-detail-badges li div,
.product-detail-badges li span {
    margin: 0;
    max-width: 100%;
    word-break: break-word;
    overflow-wrap: anywhere
}

.product-detail-badges li > .product-detail-badges__text,
.product-detail-badges li span.product-detail-badges__text {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis
}

.product-detail-badges li img {
    display: block;
    max-width: 88px !important;
    max-height: 88px !important;
    width: auto !important;
    height: auto !important;
    margin: 0 auto 4px;
    object-fit: contain
}

.product-detail-advantages__mount img {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 0 auto
}

.product-detail-advantages__image {
    margin-top: 36px;
    text-align: center
}

.product-detail-advantages__image img {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 0 auto;
    border-radius: 8px
}

.product-detail-advantages__image img[src=""],
.product-detail-advantages__image:not(:has(img[src]:not([src=""]))) {
    display: none
}

/* System diagram */
.product-detail-diagram {
    text-align: center
}

.product-detail-diagram__mount .product-detail-diagram,
.product-detail-diagram__mount > img {
    margin: 0
}

.product-detail-diagram__mount img {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 0 auto;
    border-radius: 8px
}

/* Application scenarios — 3 columns, square up to 800px */
.product-detail-scenarios {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 800px));
    gap: 32px 40px;
    margin: 0;
    justify-content: start;
    align-items: start
}

.product-detail-scenarios[data-count="1"] {
    grid-template-columns: minmax(0, 800px)
}

.product-detail-scenarios[data-count="2"] {
    grid-template-columns: repeat(2, minmax(0, 800px))
}

.product-detail-scenarios:not(:has(.product-detail-scenarios__item)) {
    display: none
}

.product-detail-scenarios__item {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 800px;
    min-width: 0;
    text-align: left
}

.product-detail-scenarios__media {
    position: relative;
    width: 100%;
    max-width: 800px;
    overflow: hidden;
    margin-bottom: 16px;
    border-radius: 8px;
    background: transparent;
    aspect-ratio: 1 / 1
}

.product-detail-scenarios__media img,
.product-detail-scenarios__item > img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .45s ease
}

.product-detail-scenarios__item:hover .product-detail-scenarios__media img {
    transform: scale(1.04)
}

.product-detail-scenarios__body {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 0 2px;
    max-width: 800px
}

.product-detail-scenarios__title,
.product-detail-scenarios__item h3,
.product-detail-scenarios__item h4 {
    margin: 0;
    font-size: 16px;
    font-weight: var(--fontbold6);
    color: var(--fontcolor);
    line-height: 1.4;
    letter-spacing: -.01em
}

.product-detail-scenarios__text,
.product-detail-scenarios__item p {
    margin: 0;
    font-size: 13px;
    line-height: 1.65;
    color: #6b7280
}

/* Other Products — full-width grey panel, 2 cards per page */
.product-detail-other {
    margin: 0 0 48px;
    padding: 44px 0 48px;
    background: #f3f4f6
}

.product-detail-other:not(:has(.swiper-slide)) {
    display: none
}

.product-detail-other__inner {
    padding: 0 20px
}

.product-detail-other__title {
    margin: 0 0 28px;
    font-size: clamp(20px, 2.2vw, 26px);
    font-weight: var(--fontbold6);
    color: var(--fontcolor);
    text-align: center
}

.product-detail-other__slider {
    display: flex;
    align-items: center;
    gap: 12px
}

.product-detail-other__nav {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border: 1px solid #e5e7eb;
    border-radius: 50%;
    background: #fff;
    color: #b0b8c4;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(15, 23, 42, .08);
    transition: border-color .2s linear, color .2s linear, box-shadow .2s linear
}

.product-detail-other__nav i {
    font-size: 14px
}

.product-detail-other__nav:hover {
    border-color: #d1d5db;
    color: var(--fontcolor);
    box-shadow: 0 4px 14px rgba(15, 23, 42, .1)
}

.product-detail-other-swiper {
    flex: 1;
    min-width: 0;
    overflow: hidden;
    padding: 36px 6px 4px
}

.product-detail-other-swiper .swiper-wrapper {
    align-items: stretch
}

.product-detail-other-swiper .swiper-slide {
    height: auto
}

.product-detail-other-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(120px, 42%);
    align-items: center;
    gap: 0 12px;
    width: 100%;
    min-height: 160px;
    padding: 24px 12px 24px 28px;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 4px 18px rgba(15, 23, 42, .07);
    color: inherit;
    text-decoration: none;
    overflow: visible;
    transition: box-shadow .2s linear, transform .2s linear
}

.product-detail-other-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(15, 23, 42, .11)
}

.product-detail-other-card__info {
    grid-column: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center
}

.product-detail-other-card__name {
    margin: 0;
    font-size: clamp(16px, 1.5vw, 20px);
    font-weight: var(--fontbold6);
    color: var(--fontcolor);
    line-height: 1.25;
    text-transform: uppercase;
    letter-spacing: .02em
}

.product-detail-other-card__bar {
    display: block;
    width: 36px;
    height: 3px;
    margin: 10px 0 12px;
    background: var(--color);
    border-radius: 2px;
    font-style: normal
}

.product-detail-other-card__desc {
    margin: 0;
    font-size: 13px;
    line-height: 1.55;
    color: var(--text-muted)
}

.product-detail-other-card__desc:empty {
    display: none
}

.product-detail-other-card__more {
    display: inline-block;
    margin-top: 14px;
    font-size: 13px;
    font-weight: var(--fontbold5);
    color: var(--color)
}

.product-detail-other-card__more::after {
    content: " \2192"
}

.product-detail-other-card__media {
    grid-column: 2;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    align-self: stretch;
    margin: -52px 4px -24px 0;
    overflow: visible;
    pointer-events: none
}

.product-detail-other-card__media img {
    display: block;
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: 220px;
    object-fit: contain
}

.product-detail-other__pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 24px
}

.product-detail-other__pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    margin: 0 !important;
    background: #fff;
    border: 2px solid var(--color);
    opacity: 1;
    box-sizing: border-box;
    transition: background .2s linear, transform .2s linear
}

.product-detail-other__pagination .swiper-pagination-bullet-active {
    background: var(--color);
    transform: scale(1.05)
}

/* Certifications */
.product-detail-certs {
    margin-bottom: 48px;
    padding-bottom: 24px
}

.product-detail-certs .l-wrap {
    padding-top: 8px
}

.product-detail-certs__banner img[src=""] {
    display: none
}

.product-detail-certs__banner img {
    display: block;
    width: 100%;
    max-height: 650px;
    object-fit: cover
}

@media (max-width: 1024px) {
    .product-detail-overview {
        grid-template-columns: minmax(0, 1fr);
        gap: 28px
    }

    .product-detail-gallery {
        max-width: 100%
    }

    .product-detail-scenarios {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 24px 28px;
        max-width: none
    }

    .product-detail-scenarios[data-count="1"],
    .product-detail-scenarios[data-count="2"] {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        max-width: none
    }

    .product-detail-scenarios[data-count="1"] {
        grid-template-columns: minmax(0, 1fr);
        max-width: 800px
    }

    .product-detail-scenarios__item,
    .product-detail-scenarios__body,
    .product-detail-scenarios__media {
        max-width: 800px
    }

    .product-detail-features__stage {
        max-width: 100%;
        padding: 0 48px;
        min-width: 0
    }

    .product-detail-features__title {
        margin-bottom: 52px
    }

    .product-detail-features__media {
        width: 60px
    }

    .product-detail-features__media img {
        width: 60px
    }

    .product-detail-features__item {
        padding: 0 16px
    }

    .product-detail-features__label {
        max-width: 220px
    }

    .product-detail-features__pagination {
        margin-top: 40px
    }

    .product-detail-features-swiper {
        width: 100%;
        min-width: 0;
        max-width: 100%
    }

    .product-detail-badges {
        gap: 18px 20px
    }

    .product-detail-badges li {
        width: 124px;
        min-height: 124px;
        padding: 4px 4px 6px;
        font-size: 12px
    }

    .product-detail-badges__icon {
        width: 76px;
        height: 76px;
        margin-bottom: 2px
    }

    .product-detail-badges__icon img,
    .product-detail-badges li img {
        max-width: 76px !important;
        max-height: 76px !important
    }
}

@media (max-width: 768px) {
    .product-detail-hero__caption {
        max-width: 100%
    }

    .product-detail-hero__desc {
        max-width: 100%
    }

    .product-detail-main {
        padding: 32px 15px 48px
    }

    .product-detail-info__actions {
        flex-direction: column
    }

    .product-detail-info__btn {
        width: 100%;
        white-space: normal;
        height: auto;
        min-height: 38px;
        padding: 8px 18px;
        text-align: center
    }

    .product-detail-features {
        padding: 40px 0 16px
    }

    .product-detail-features__title {
        margin-bottom: 40px;
        font-size: 22px
    }

    .product-detail-features__stage {
        padding: 0 40px
    }

    .product-detail-features__nav {
        width: 38px;
        height: 38px;
        color: #374151
    }

    .product-detail-features__nav i {
        font-size: 15px
    }

    .product-detail-features__media {
        width: 48px
    }

    .product-detail-features__media img {
        width: 48px
    }

    .product-detail-features__label {
        margin-top: 16px;
        font-size: 14px;
        max-width: 170px
    }

    .product-detail-features__sub {
        font-size: 13px;
        max-width: 170px
    }

    .product-detail-features__item {
        padding: 0 10px
    }

    .product-detail-features__pagination {
        margin-top: 32px
    }

    .product-detail-features__pagination .swiper-pagination-bullet {
        width: 8px;
        height: 8px
    }

    .product-detail-advantages__lead {
        margin-bottom: 22px;
        font-size: 14px
    }

    .product-detail-scenarios-sec {
        margin-bottom: 40px
    }

    .product-detail-scenarios-sec__lead {
        margin-bottom: 28px;
        font-size: 15px;
        white-space: normal
    }

    .product-detail-scenarios {
        grid-template-columns: minmax(0, 1fr);
        gap: 24px;
        max-width: none
    }

    .product-detail-scenarios[data-count="1"],
    .product-detail-scenarios[data-count="2"] {
        grid-template-columns: minmax(0, 1fr);
        max-width: none
    }

    .product-detail-scenarios__item,
    .product-detail-scenarios__body,
    .product-detail-scenarios__media {
        max-width: 800px
    }

    .product-detail-scenarios__media {
        margin-bottom: 12px;
        border-radius: 8px
    }

    .product-detail-scenarios__title,
    .product-detail-scenarios__item h3,
    .product-detail-scenarios__item h4 {
        font-size: 15px
    }

    .product-detail-scenarios__text,
    .product-detail-scenarios__item p {
        font-size: 13px
    }

    .product-detail-badges {
        gap: 14px 16px
    }

    .product-detail-badges li {
        width: 108px;
        min-height: 108px;
        padding: 4px;
        font-size: 12px;
        border-radius: 10px
    }

    .product-detail-badges__icon {
        width: 64px;
        height: 64px;
        margin-bottom: 2px;
        font-size: 24px
    }

    .product-detail-badges__icon img,
    .product-detail-badges li img {
        max-width: 64px !important;
        max-height: 64px !important
    }

    .product-detail-specs__mount {
        padding: 0 12px;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch
    }

    .product-detail-specs__mount table {
        width: 100%;
        max-width: 100%
    }

    .product-detail-other {
        padding: 36px 0 40px;
        min-width: 0;
        max-width: 100%;
        overflow: hidden
    }

    .product-detail-other__inner {
        min-width: 0;
        box-sizing: border-box;
        padding-left: 15px;
        padding-right: 15px
    }

    .product-detail-other__nav {
        display: none
    }

    .product-detail-other-swiper {
        padding: 28px 0 4px;
        min-width: 0;
        max-width: 100%
    }

    .product-detail-other-card {
        grid-template-columns: minmax(0, 1fr) minmax(100px, 40%);
        min-height: 140px;
        padding: 20px 8px 20px 20px;
        min-width: 0
    }

    .product-detail-other-card__media {
        margin: -36px 2px -18px 0;
        min-width: 0
    }

    .product-detail-other-card__media img {
        max-height: 180px;
        max-width: 100%
    }

    .product-detail-specs__mount table tbody tr td:first-child {
        width: 36%
    }

    .product-detail-certs__banner img {
        max-height: none;
        height: auto;
        object-fit: contain
    }
}

@media (max-width: 480px) {
    .product-detail-info__actions {
        flex-direction: column
    }

    .product-detail-info__btn {
        width: 100%
    }

    .product-detail-gallery__thumb {
        flex: 0 0 64px;
        width: 64px;
        height: 64px
    }
}
