.product-page {
    --brand-color: #6fa945;
    width: 100%;
    padding: 30px 0 58px;
    background: #fff;
    color: #080808;
}

.product-wrap {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 30px;
}

.product-breadcrumb {
    margin-bottom: 26px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 9px;
    font-size: 11px;
    font-weight: 500;
    color: rgba(0, 0, 0, .42);
}

.product-breadcrumb a {
    color: rgba(0, 0, 0, .52);
    text-decoration: none;
    transition: color .2s ease;
}

.product-breadcrumb a:hover {
    color: var(--brand-color);
}

.product-breadcrumb i {
    font-size: 8px;
    color: rgba(0, 0, 0, .25);
}

.product-hero {
    margin-bottom: 42px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.product-brand-name {
    margin: 0 0 12px;
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 500;
    text-transform: uppercase;
    color: var(--brand-color);
}

.product-hero h1 {
    margin: 0;
    max-width: 760px;
    font-family: var(--font-heading);
    font-size: clamp(46px, 4.9vw, 72px);
    font-weight: 500;
    line-height: .94;
    letter-spacing: -.035em;
    text-transform: uppercase;
    color: #050606;
}

.product-actions {
    margin-top: 26px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.product-btn {
    min-height: 42px;
    padding: 0 22px;
    border-radius: 5px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 11px;
    font-family: var(--font-ui);
    font-size: 11px;
    font-weight: 850;
    letter-spacing: .02em;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    transition: .22s ease;
}

.product-btn-main {
    border: 1px solid var(--brand-color);
    background: var(--brand-color);
    color: #fff;
}

.product-btn-main:hover {
    border-color: #101010;
    background: #101010;
}

.product-btn-light {
    border: 1px solid var(--brand-color);
    background: #fff;
    color: var(--brand-color);
}

.product-btn-light:hover {
    background: var(--brand-color);
    color: #fff;
}

.product-hero-text {
    width: 100%;
    max-width: none;

    margin-top: 34px;
    padding-top: 26px;

    border-top: 1px solid rgba(0, 0, 0, .08);

    font-size: 16px;
    font-weight: 500;
    line-height: 1.85;
    color: rgba(0, 0, 0, .68);

    text-align: justify;
}

.product-hero-text p {
    margin: 0 0 18px;
}

.product-hero-text p:last-child {
    margin-bottom: 0;
}

.product-main-layout {
    display: grid;
    grid-template-columns: 230px minmax(0, 1fr);
    gap: 22px;
    align-items: stretch;
}

.product-tabs {
    border: 1px solid rgba(0, 0, 0, .10);
    border-radius: 5px;
    overflow: hidden;
    background: #fff;
    align-self: stretch;
}

.product-tabs a {
    position: relative;
    height: 112px;
    min-height: 112px;
    padding: 20px 24px 18px 26px;
    border-bottom: 1px solid rgba(0, 0, 0, .08);
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #050606;
    text-decoration: none;
    background: #fff;
    transition: .22s ease;
}

.product-tabs a:last-child {
    border-bottom: 0;
}

.product-tabs a::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: transparent;
    transition: .22s ease;
}

.product-tabs a span {
    margin-bottom: 9px;
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 500;
    color: rgba(0, 0, 0, .50);
}

.product-tabs a strong {
    margin-bottom: 7px;
    font-family: var(--font-heading);
    font-size: 19px;
    font-weight: 500;
    line-height: 1;
    text-transform: uppercase;
}

.product-tabs a small {
    font-size: 11px;
    font-weight: 500;
    line-height: 1.35;
    color: rgba(0, 0, 0, .48);
}

.product-tabs a:hover::before,
.product-tabs a.active::before {
    background: var(--brand-color);
}

.product-tabs a:hover span,
.product-tabs a.active span,
.product-tabs a:hover strong,
.product-tabs a.active strong {
    color: var(--brand-color);
}

.product-content {
    position: relative;
    min-width: 0;
    height: 560px;
}

.product-panel {
    display: none;
    height: 100%;
}

.product-panel.active {
    display: block;
    height: 100%;
    animation: productPanelFade .22s ease both;
}

@keyframes productPanelFade {
    from { opacity: 0; }
    to { opacity: 1; }
}

.product-gallery {
    position: relative;
    width: 100%;
    height: 100%;
    padding: 16px;
    border: 1px solid rgba(0, 0, 0, .10);
    border-radius: 5px;
    background: #fff;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.gallery-stage {
    position: relative;
    width: 100%;
    flex: 1;
    min-height: 0;
    background: #f5f5f5;
    overflow: hidden;
}

.gallery-stage img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    padding: 30px 42px;
    object-fit: contain;
    opacity: 0;
    transform: scale(.985);
    transition: opacity .26s ease, transform .26s ease;
}

.gallery-stage img.active {
    opacity: 1;
    transform: scale(1);
}

.gallery-arrow,
.features-arrow {
    position: absolute;
    top: 42%;
    z-index: 5;
    width: 38px;
    height: 38px;
    border: 1px solid rgba(0, 0, 0, .08);
    border-radius: 50%;
    background: #fff;
    color: #111;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 9px 22px rgba(0, 0, 0, .12);
    cursor: pointer;
    transition: .22s ease;
}

.gallery-arrow.prev {
    left: 30px;
}

.gallery-arrow.next {
    right: 30px;
}

.features-arrow.prev {
    left: 16px;
}

.features-arrow.next {
    right: 16px;
}

.gallery-arrow:hover,
.features-arrow:hover {
    border-color: var(--brand-color);
    background: var(--brand-color);
    color: #fff;
}

.gallery-dots {
    position: absolute;
    left: 50%;
    bottom: 112px;
    z-index: 6;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
}

.gallery-dots button {
    width: 8px;
    height: 8px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: #c9c9c9;
    cursor: pointer;
}

.gallery-dots button.active {
    background: var(--brand-color);
}

.gallery-thumbs {
    flex: 0 0 auto;
    margin-top: 16px;
    display: flex;
    flex-wrap: nowrap;
    gap: 10px;
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 6px;
    scrollbar-width: none;
}

.gallery-thumbs::-webkit-scrollbar {
    display: none;
}

.gallery-thumbs button {
    flex: 0 0 105px;
    width: 105px;
    height: 72px;
    padding: 5px;
    border: 0;
    background: #f7f7f7;
    opacity: .72;
    cursor: pointer;
    transition: .22s ease;
}

.gallery-thumbs button.active,
.gallery-thumbs button:hover {
    opacity: 1;
    box-shadow: inset 0 0 0 2px var(--brand-color);
}

.gallery-thumbs img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.features-slider {
    position: relative;
    height: 100%;
}

.features-track {
    height: 100%;
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 100%;
    grid-template-columns: none;
    gap: 18px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scrollbar-width: none;
}

.features-track::-webkit-scrollbar {
    display: none;
}

.feature-card {
    width: 100%;
    height: 100%;
    scroll-snap-align: start;
    border: 1px solid rgba(0, 0, 0, .10);
    border-radius: 5px;
    background: #fff;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.feature-image {
    flex: 1;
    min-height: 0;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-image img {
    width: 100%;
    height: 100%;
    padding: 30px 42px;
    object-fit: contain;
    display: block;
}

.feature-card p {
    flex: 0 0 auto;
    min-height: 92px;
    margin: 0;
    padding: 18px 20px;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.55;
    color: rgba(0, 0, 0, .66);
}

.video-box {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 5px;
    overflow: hidden;
    background: #111;
}

.video-box iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.tech-tabs-box {
    height: 100%;
    border: 1px solid rgba(0, 0, 0, .10);
    border-radius: 5px;
    background: #fff;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.tech-tabs-nav {
    flex: 0 0 auto;
    display: flex;
    border-bottom: 1px solid rgba(0, 0, 0, .10);
    background: #f5f5f5;
}

.tech-tabs-nav button {
    min-height: 54px;
    padding: 0 28px;
    border: 0;
    border-right: 1px solid rgba(0, 0, 0, .10);
    background: transparent;
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 500;
    text-transform: uppercase;
    color: #111;
    cursor: pointer;
    transition: .22s ease;
}

.tech-tabs-nav button.active {
    background: #fff;
    color: var(--brand-color);
}

.tech-tabs-content {
    flex: 1;
    min-height: 0;
    background: #fff;
    overflow: auto;
}

.tech-tab-panel {
    display: none;
    min-height: 100%;
}

.tech-tab-panel.active {
    display: block;
}

.tech-table-scroll {
    width: 100%;
    min-height: 100%;
    overflow-x: auto;
}

.tech-tabs-box table {
    width: 100%;
    min-width: 650px;
    border-collapse: collapse;
}

.tech-tabs-box td {
    padding: 15px 16px;
    border-right: 1px solid rgba(0, 0, 0, .08);
    border-bottom: 1px solid rgba(0, 0, 0, .08);
    font-size: 13px;
    font-weight: 600;
    text-align: center;
    color: rgba(0, 0, 0, .70);
}

.tech-tabs-box td:last-child {
    border-right: 0;
}

.tech-tabs-box tr:last-child td {
    border-bottom: 0;
}

.tech-tabs-box tr.is-header td {
    background: #f4f4f4;
    color: #111;
    font-weight: 800;
    text-transform: uppercase;
}

.tech-tabs-box td.is-bold {
    color: #111;
    font-weight: 800;
}

.related-products {
    margin-top: 38px;
}

.related-products h2 {
    position: relative;
    margin: 0 0 20px;
    padding-bottom: 10px;
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
}

.related-products h2::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 34px;
    height: 2px;
    background: var(--brand-color);
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.related-card a {
    min-height: 215px;
    padding: 18px 20px;
    border: 1px solid rgba(0, 0, 0, .10);
    border-radius: 5px;
    background: #fff;
    color: #111;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    transition: .22s ease;
}

.related-card a:hover {
    border-color: var(--brand-color);
    box-shadow: 0 16px 34px rgba(0, 0, 0, .08);
}

.related-image {
    width: 100%;
    aspect-ratio: 3 / 2;
    margin-bottom: 18px;

    background: #f7f7f7;
    border-radius: 4px;
    overflow: hidden;

    display: flex;
    align-items: center;
    justify-content: center;
}

.related-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;

    box-sizing: border-box;
}

.related-card strong {
    font-size: 12px;
    font-weight: 900;
    line-height: 1.25;
    text-transform: uppercase;
}

.related-card small {
    margin-top: 5px;
    font-size: 11px;
    font-weight: 500;
    color: rgba(0, 0, 0, .50);
}

.related-card em {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-style: normal;
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
    color: var(--brand-color);
}

.related-card em i {
    transition: transform .22s ease;
}

.related-card a:hover em i {
    transform: translateX(5px);
}

.product-not-found {
    min-height: 480px;
    display: flex;
    align-items: center;
}

.product-not-found h1 {
    margin: 0 0 22px;
    font-family: var(--font-heading);
    font-size: 48px;
    text-transform: uppercase;
}

@media (max-width: 1050px) {
    .product-wrap {
        padding: 0 22px;
    }

    .product-hero {
        margin-bottom: 32px;
    }

    .product-hero-text {
        max-width: 100%;
        margin-top: 26px;
        font-size: 15px;
        line-height: 1.75;
    }

    .product-main-layout {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .product-tabs {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
        border-radius: 5px;
        overflow: hidden;
    }

    .product-tabs a {
        height: 72px;
        min-height: 72px;
        padding: 10px 12px;
        border-bottom: 0;
        border-right: 1px solid rgba(0, 0, 0, .08);
    }

    .product-tabs a:last-child {
        border-right: 0;
    }

    .product-tabs a::before {
        width: 100%;
        height: 3px;
        top: auto;
        bottom: 0;
    }

    .product-tabs a span {
        margin-bottom: 5px;
        font-size: 12px;
    }

    .product-tabs a strong {
        margin-bottom: 0;
        font-size: 14px;
    }

    .product-tabs a small {
        display: none;
    }

    .related-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 760px) {
    .product-page {
        padding: 22px 0 44px;
    }

    .product-wrap {
        padding: 0 16px;
    }

    .product-breadcrumb {
        margin-bottom: 18px;
        font-size: 10px;
    }

    .product-hero {
        margin-bottom: 26px;
    }

    .product-brand-name {
        font-size: 13px;
    }

    .product-hero h1 {
        font-size: clamp(38px, 13vw, 56px);
    }

    .product-hero-text {
        margin-top: 24px;
        padding-top: 20px;
        font-size: 14px;
        line-height: 1.7;
    }

    .product-actions {
        width: 100%;
        margin-top: 20px;
    }

    .product-btn {
        width: 100%;
        min-height: 42px;
    }

    .product-tabs {
        grid-template-columns: repeat(auto-fit, minmax(90px, 1fr));
    }

    .product-tabs a {
        height: 58px;
        min-height: 58px;
        padding: 7px 6px;
        text-align: center;
        align-items: center;
    }

    .product-tabs a span {
        margin-bottom: 4px;
        font-size: 10px;
    }

    .product-tabs a strong {
        font-size: 11px;
        line-height: 1;
    }

    .product-content {
        height: 470px;
        margin-left: -16px;
        margin-right: -16px;
    }

    .product-gallery,
    .video-box,
    .tech-tabs-box,
    .feature-card {
        border-left: 0;
        border-right: 0;
        border-radius: 0;
    }

    .gallery-stage img,
    .feature-image img {
        padding: 24px;
    }

    .gallery-arrow,
    .features-arrow {
        width: 34px;
        height: 34px;
    }

    .gallery-arrow.prev {
        left: 18px;
    }

    .gallery-arrow.next {
        right: 18px;
    }

    .gallery-dots {
        bottom: 102px;
    }

    .gallery-thumbs button {
        flex-basis: 82px;
        width: 82px;
        height: 60px;
    }

    .feature-card p {
        min-height: 90px;
        padding: 15px 16px;
        font-size: 12px;
    }

    .features-arrow.prev {
        left: 18px;
    }

    .features-arrow.next {
        right: 18px;
    }

    .tech-tabs-nav {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .tech-tabs-nav button {
        min-height: 44px;
        padding: 0 10px;
        border-bottom: 1px solid rgba(0, 0, 0, .10);
        font-size: 14px;
    }

    .tech-tabs-box td {
        padding: 12px 12px;
        font-size: 12px;
    }

    .related-grid {
        grid-template-columns: 1fr;
    }
}