


:root {
    --pn-color-primary: #038263;
    --pn-color-primary-light: #3AB39E;
    --pn-color-bg-gray: #F5F5F5;
    --pn-color-white: #FFFFFF;
    --pn-color-black: #000000;
    --pn-color-text-dark: #222222;
    --pn-color-text-gray: #828282;
    --pn-color-text-price: #4F4F4F;
    --pn-font-main: 'Manrope', sans-serif;
    --pn-border-radius: 4px;
}

.pn-container,
.pn-container * {
    box-sizing: border-box;
}


.pn-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    overflow-x: hidden;
}


.pn-breadcrumbs {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 12px;
}

.pn-breadcrumbs__item {
    font-family: var(--pn-font-main);
    font-weight: 500;
    font-size: 18px;
    line-height: 1.366;
    color: var(--pn-color-primary-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.pn-breadcrumbs__item:hover {
    color: var(--pn-color-primary);
}

.pn-breadcrumbs__separator {
    font-family: 'Gothic A1', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.4;
    color: var(--pn-color-primary-light);
}

.pn-breadcrumbs__item--current {
    color: var(--pn-color-primary);
}


.pn-page-header {
    margin-bottom: 40px;
}

.pn-page-title {
    font-family: var(--pn-font-main);
    font-weight: 600;
    font-size: 50px;
    line-height: 1.366;
    color: var(--pn-color-primary);
    margin: 0;
}


.pn-content {
    display: flex;
    gap: 24px;
    margin-bottom: 40px;
}

.pn-content__main {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.pn-content__sidebar {
    width: 280px;
    flex-shrink: 0;
}


.pn-product-top {
    display: flex;
    flex-direction: row;
    gap: 24px;
    margin-bottom: 24px;
    align-items: flex-start;
}


.pn-gallery {
    display: flex;
    flex-direction: row;
    gap: 24px;
    flex-shrink: 0;
    flex-grow: 0;
}

.pn-gallery__thumbs {
    display: flex;
    flex-direction: column;
    gap: 18px;
    width: 91px;
}

.pn-gallery__thumbs::-webkit-scrollbar {
    height: 4px;
}

.pn-gallery__thumbs::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 2px;
}

.pn-gallery__thumbs::-webkit-scrollbar-thumb {
    background: var(--pn-color-primary);
    border-radius: 2px;
}

.pn-gallery__thumbs::-webkit-scrollbar-thumb:hover {
    background: #026b54;
}

.pn-gallery__thumb {
    width: 100%;
    height: 68px;
    background: var(--pn-color-white);
    border: 2px solid #F5F5F5;
    border-radius: var(--pn-border-radius);
    padding: 0 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.pn-gallery__thumb:hover {
    border-color: var(--pn-color-primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(3, 130, 99, 0.15);
}

.pn-gallery__thumb--active {
    border-color: var(--pn-color-primary);
    background: rgba(3, 130, 99, 0.05);
    box-shadow: 0 4px 8px rgba(3, 130, 99, 0.2);
}

.pn-gallery__thumb-img {
    max-width: 100%;
    max-height: 39px;
    object-fit: contain;
}

.pn-gallery__main {
    width: 100%;
    max-width: 553px;
    height: 412px;
    background: var(--pn-color-white);
    border: 1px solid #F5F5F5;
    border-radius: var(--pn-border-radius);
    padding: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pn-gallery__main-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: opacity 0.2s ease;
    opacity: 1;
}


.pn-specs-block {
    display: flex;
    flex-direction: column;
    width: 256px;
    min-width: 256px;
    flex-shrink: 0;
    flex-grow: 0;
}

.pn-specs {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 24px 0;
}

.pn-specs__content {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.pn-specs__title {
    font-family: var(--pn-font-main);
    font-weight: 600;
    font-size: 18px;
    line-height: 1.4;
    color: var(--pn-color-black);
    margin: 0;
}

.pn-specs__item {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.pn-specs__label {
    font-family: var(--pn-font-main);
    font-weight: 500;
    font-size: 16px;
    line-height: 1.366;
    color: var(--pn-color-text-gray);
}

.pn-specs__value {
    font-family: var(--pn-font-main);
    font-weight: 500;
    font-size: 16px;
    line-height: 1.366;
    color: var(--pn-color-black);
}


.pn-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--pn-font-main);
    font-weight: 600;
    font-size: 16px;
    line-height: 1.366;
    text-decoration: none;
    border-radius: var(--pn-border-radius);
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    outline: none;
}

.pn-btn--secondary {
    height: 40px;
    padding: 0 20px;
    background: var(--pn-color-bg-gray);
    color: var(--pn-color-text-dark);
}

.pn-btn--secondary:hover {
    background: #E5E5E5;
}

.pn-btn--primary {
    height: 48px;
    padding: 0 20px;
    background: var(--pn-color-primary);
    color: var(--pn-color-white);
}

.pn-btn--primary:hover {
    background: #026b54;
}


.pn-description {
    background: var(--pn-color-bg-gray);
    border-radius: 0 var(--pn-border-radius) var(--pn-border-radius) 0;
    overflow: hidden;
}

.pn-tabs {
    background: var(--pn-color-bg-gray);
    padding: 24px 40px;
}

.pn-tabs__header {
    background: var(--pn-color-white);
    border-radius: var(--pn-border-radius);
    padding: 10px 4px;
    height: 48px;
    display: flex;
    align-items: center;
    margin-bottom: 24px;
}

.pn-tabs__nav {
    display: flex;
    align-items: center;
    gap: 4px;
    width: 100%;
}

.pn-tabs__tab {
    height: 40px;
    padding: 12px 20px;
    background: transparent;
    border: none;
    border-radius: var(--pn-border-radius);
    font-family: var(--pn-font-main);
    font-weight: 600;
    font-size: 16px;
    line-height: 1.366;
    color: var(--pn-color-black);
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    outline: none;
}

.pn-tabs__tab:hover {
    background: #E5E5E5;
}

.pn-tabs__tab:active {
    transform: scale(0.98);
}

.pn-tabs__tab--active {
    background: var(--pn-color-primary);
    color: var(--pn-color-white);
    box-shadow: 0 2px 8px rgba(3, 130, 99, 0.3);
}

.pn-tabs__tab--active:hover {
    background: #026b54;
}

.pn-tabs__content {
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.pn-tabs__content--active {
    display: block;
    opacity: 1;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.pn-tabs__body {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.pn-tabs__section {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.pn-tabs__section-title {
    font-family: var(--pn-font-main);
    font-weight: 600;
    font-size: 25px;
    line-height: 1.366;
    text-transform: uppercase;
    color: var(--pn-color-text-dark);
    margin: 0;
}

.pn-tabs__text {
    font-family: var(--pn-font-main);
    font-weight: 500;
    font-size: 16px;
    line-height: 1.366;
    color: var(--pn-color-text-dark);
    margin: 0;
}


.pn-app-card {
    background: var(--pn-color-bg-gray);
    border-radius: var(--pn-border-radius);
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.pn-app-card__content {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.pn-app-card__title {
    font-family: var(--pn-font-main);
    font-weight: 600;
    font-size: 18px;
    line-height: 1.428;
    color: var(--pn-color-text-dark);
    margin: 0;
    text-align: center;
    text-transform: uppercase;
    
}

.pn-app-card__desc {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.pn-app-card__text {
    font-family: var(--pn-font-main);
    font-weight: 500;
    font-size: 16px;
    line-height: 1.366;
    color: var(--pn-color-text-dark);
    margin: 0;
}

.pn-app-card__footer {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.pn-app-card__info {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.pn-status {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 8px;
}

.pn-status__dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--pn-color-primary);
}

.pn-status__text {
    font-family: var(--pn-font-main);
    font-weight: 500;
    font-size: 14px;
    line-height: 1.4;
    color: var(--pn-color-primary);
}

.pn-price {
    font-family: var(--pn-font-main);
    font-weight: 700;
    font-size: 20px;
    line-height: 1.366;
    text-transform: uppercase;
    color: var(--pn-color-text-price);
    margin: 0;
}


@media (max-width: 1200px) {
    .pn-content {
        flex-direction: column;
    }

    .pn-content__sidebar {
        width: 100%;
    }

    .pn-product-top {
        flex-wrap: wrap;
    }

    .pn-gallery__main {
        width: 100%;
        max-width: 553px;
    }

    .pn-specs-block {
        width: 100%;
        max-width: 400px;
    }
}

@media (max-width: 768px) {
    .pn-container {
        padding: 0 14px;
    }

    .pn-page-header {
        gap: 20px;
    }

    .pn-breadcrumbs {
        flex-wrap: wrap;
        width: 100%;
        height: auto;
        min-height: 22px;
    }

    .pn-breadcrumbs__item {
        font-size: 16px;
        line-height: 1.366;
    }

    .pn-breadcrumbs__separator {
        font-size: 14px;
        line-height: 1.4;
    }

    .pn-page-title {
        font-size: 28px;
        line-height: 1.428;
    }

    .pn-content {
        gap: 20px;
    }

    .pn-product-top {
        flex-direction: column;
        gap: 24px;
        margin-bottom: 24px;
    }

    .pn-gallery {
        flex-direction: column !important;
        width: 100% !important;
        gap: 12px !important;
        margin: 0;
        align-items: flex-start !important;
    }

    .pn-gallery__thumbs {
        order: 2 !important;
        flex-direction: row !important;
        width: 100% !important;
        overflow-x: auto;
        overflow-y: hidden;
        gap: 8px !important;
        padding: 0;
        -webkit-overflow-scrolling: touch;
        scroll-behavior: smooth;
        scrollbar-width: none;
        -ms-overflow-style: none;
        display: flex !important;
        align-items: center;
    }

    .pn-gallery__main {
        order: 1 !important;
        width: 100% !important;
        height: 223px;
        padding: 24px;
        display: flex !important;
        align-items: center;
        justify-content: center;
        background: var(--pn-color-white);
        border: 1px solid #F5F5F5;
        border-radius: var(--pn-border-radius);
    }

    .pn-gallery__main-img {
        width: 100%;
        height: auto;
        max-height: 167px;
        object-fit: contain;
    }
    
    .pn-gallery__thumbs::-webkit-scrollbar {
        display: none;
        height: 0;
        width: 0;
    }

    .pn-gallery__thumb {
        min-width: 59px;
        width: 59px;
        height: 44px;
        flex-shrink: 0;
        padding: 0 4px;
        border: 1px solid #F5F5F5;
        background: var(--pn-color-white);
        border-radius: var(--pn-border-radius);
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: border-color 0.2s ease;
    }
    
    .pn-gallery__thumb:hover {
        transform: none;
        box-shadow: none;
        border-color: var(--pn-color-primary-light);
    }
    
    .pn-gallery__thumb--active {
        border: 1px solid var(--pn-color-primary);
        background: var(--pn-color-white);
        box-shadow: none;
    }
    
    .pn-gallery__thumb-img {
        width: 100%;
        height: auto;
        max-height: 30px;
        object-fit: contain;
    }

    .pn-specs-block {
        width: 100%;
        max-width: 100%;
    }

    .pn-specs {
        padding: 24px 0;
        gap: 20px;
    }
    
    .pn-specs__content {
        gap: 16px;
    }

    .pn-specs__title {
        font-size: 18px;
        font-weight: 600;
        line-height: 1.4;
        color: #000000;
        margin: 0;
    }

    .pn-specs__item {
        gap: 2px;
    }

    .pn-specs__label {
        font-size: 16px;
        font-weight: 500;
        line-height: 1.366;
        color: #828282;
    }
    
    .pn-specs__value {
        font-size: 16px;
        font-weight: 500;
        line-height: 1.366;
        color: #000000;
    }

    .pn-tabs {
        padding: 16px;
    }

    .pn-tabs__header {
        padding: 8px 4px;
        height: 44px;
    }

    .pn-tabs__nav {
        overflow-x: auto;
        gap: 4px;
    }

    .pn-tabs__nav::-webkit-scrollbar {
        display: none;
    }

    .pn-tabs__nav {
        -ms-overflow-style: none;
        scrollbar-width: none;
    }

    .pn-tabs__tab {
        font-size: 14px;
        padding: 10px 16px;
        height: 36px;
    }

    .pn-tabs__section-title {
        font-size: 18px;
    }

    .pn-tabs__text {
        font-size: 14px;
    }

    .pn-tabs__body {
        gap: 24px;
    }

    .pn-app-card {
        display: flex;
        width: 100%;
        padding: 20px;
        flex-direction: column;
        align-items: flex-start;
    }

    .pn-app-card__title {
        font-size: 22px;
    }

    .pn-app-card__text {
        font-size: 14px;
    }

    .pn-price {
        font-size: 24px;
    }

    .pn-status__text {
        font-size: 13px;
    }

    .pn-btn {
        font-size: 14px;
    }

    .pn-btn--secondary {
        height: 40px;
        padding: 0 20px;
        font-size: 16px;
        font-weight: 600;
    }

    .pn-app-card__footer{
        width: 100%;
    }

    .pn-btn--primary {
        height: 44px;
        padding: 0 16px;
    }
}

@media (max-width: 480px) {
    .pn-container {
        padding: 0 12px;
    }

    .pn-page-title {
        font-size: 24px;
    }

    .pn-breadcrumbs__item {
        font-size: 14px;
    }

    .pn-breadcrumbs__separator {
        font-size: 12px;
    }

    .pn-gallery {
        width: 100%;
        max-width: 100%;
    }
    
    .pn-gallery__main {
        width: 100%;
        max-width: 100%;
        height: 200px;
        padding: 20px;
    }
    
    .pn-gallery__main-img {
        width: 100%;
        max-width: 100%;
        max-height: 140px;
        object-fit: contain;
    }
    
    .pn-gallery__thumbs {
        width: 100%;
        max-width: 100%;
    }
    
    .pn-gallery__thumb {
        min-width: 54px;
        width: 54px;
        height: 40px;
    }
    
    .pn-gallery__thumb-img {
        max-height: 26px;
        object-fit: contain;
    }

    .pn-tabs {
        padding: 12px;
    }

    .pn-tabs__section-title {
        font-size: 16px;
    }

    .pn-app-card {
        width: 100%;
        padding: 16px;
    }

    .pn-app-card__title {
        font-size: 20px;
    }

    .pn-price {
        font-size: 20px;
    }
}


.pn-other-products {
    padding: 50px 0;
    overflow: visible;
}

.pn-other-products__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.pn-other-products__title {
    font-family: var(--pn-font-main);
    font-weight: 600;
    font-size: 30px;
    line-height: 1.366;
    text-transform: uppercase;
    color: var(--pn-color-primary);
    margin: 0;
}

.pn-other-products__nav {
    display: none;
    gap: 12px;
}


.pn-other-products__nav-btn--prev-desktop,
.pn-other-products__nav-btn--next-desktop {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 100;
    width: 40px;
    height: 40px;
    background: #A4A4A4;
    border: none;
    border-radius: var(--pn-border-radius);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.pn-other-products__nav-btn--prev-desktop {
    left: 10px;
}

.pn-other-products__nav-btn--next-desktop {
    right: 10px;
}


.pn-other-products__nav-btn--prev-desktop svg,
.pn-other-products__nav-btn--next-desktop svg {
    width: 16px;
    height: 16px;
}

.pn-other-products__nav-btn--prev-desktop svg path,
.pn-other-products__nav-btn--next-desktop svg path {
    stroke: white;
}

.pn-other-products__nav-btn--prev-desktop:disabled,
.pn-other-products__nav-btn--next-desktop:disabled {
    background: #F6F6F6;
    opacity: 0.5;
    cursor: not-allowed;
}

.pn-other-products__nav-btn--prev-desktop:disabled svg path,
.pn-other-products__nav-btn--next-desktop:disabled svg path {
    stroke: #A4A4A4;
}

.pn-other-products__nav-btn--prev-desktop:not(:disabled):hover,
.pn-other-products__nav-btn--next-desktop:not(:disabled):hover {
    background: #7D8291;
    transform: translateY(-50%) scale(1.05);
}

.pn-other-products__nav-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #A4A4A4;
    border: none;
    border-radius: var(--pn-border-radius);
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.pn-other-products__nav-btn:hover:not(:disabled) {
    background: #7D8291;
    transform: scale(1.05);
}

.pn-other-products__nav-btn:disabled {
    background: #F6F6F6;
    cursor: not-allowed;
    opacity: 0.5;
}

.pn-other-products__nav-btn svg {
    width: 16px;
    height: 16px;
}

.pn-other-products__container {
    position: relative;
    overflow: hidden;
    min-height: 500px;
    width: 100%;
}

.pn-other-products__grid {
    display: flex;
    flex-wrap: nowrap;
    gap: 24px;
    overflow: visible;
    transition: transform 0.3s ease;
    will-change: transform;
}

.pn-product-card {
    flex: 0 0 calc((100% - 48px) / 3);
    min-width: calc((100% - 48px) / 3);
    max-width: calc((100% - 48px) / 3);
}


.pn-product-card {
    position: relative;
    background: var(--pn-color-white);
    border: 1px solid #F5F5F5;
    border-radius: var(--pn-border-radius);
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.pn-product-card:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

.pn-product-card__link {
    display: flex;
    flex-direction: column;
    height: 100%;
    text-decoration: none;
    color: inherit;
}

.pn-product-card__image-wrapper {
    background: var(--pn-color-white);
    padding: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 326px;
    border-radius: var(--pn-border-radius) var(--pn-border-radius) 0 0;
}

.pn-product-card__image {
    max-width: 100%;
    max-height: 223px;
    object-fit: contain;
    border-radius: 10px;
}

.pn-product-card__content {
    background: var(--pn-color-white);
    padding: 16px 24px 24px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
}

.pn-product-card__info {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 12px;
}

.pn-product-card__heading {
    font-family: var(--pn-font-main);
    font-weight: 600;
    font-size: 30px;
    line-height: 1.366;
    text-transform: uppercase;
    color: var(--pn-color-text-dark);
    margin: 0;
}

.pn-product-card__footer {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: auto;
}

.pn-product-card__price {
    font-family: var(--pn-font-main);
    font-weight: 600;
    font-size: 28px;
    line-height: 1.428;
    color: var(--pn-color-text-price);
    margin: 0;
}

.pn-product-card__btn {
    background: var(--pn-color-primary);
    color: var(--pn-color-white);
    font-family: var(--pn-font-main);
    font-weight: 600;
    font-size: 16px;
    line-height: 1.366;
    border: none;
    border-radius: var(--pn-border-radius);
    padding: 0 20px;
    height: 40px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.pn-product-card__btn:hover {
    background: #026b54;
}


.pn-product-card__tooltip {
    position: absolute;
    top: 0;
    right: 0;
    padding: 8px;
    border-radius: var(--pn-border-radius);
    cursor: help;
}

.pn-product-card__tooltip-icon {
    width: 24px;
    height: 24px;
}



@media (max-width: 1200px) {
    .pn-product-card {
        flex: 0 0 calc((100% - 24px) / 2);
        min-width: calc((100% - 24px) / 2);
    }
}


@media (max-width: 768px) {
    .pn-other-products {
        padding: 32px 0;
    }

    .pn-other-products__header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        margin-bottom: 12px;
    }

    .pn-other-products__title {
        font-size: 25px;
        margin-bottom: 0;
    }

    .pn-other-products__nav {
        display: flex;
        width: 100%;
        max-width: 100%;
        height: 36px;
        background: #F6F6F6;
        border-radius: var(--pn-border-radius);
        padding: 0;
        gap: 0;
        justify-content: space-between;
        align-self: stretch;
        align-items: center;
    }

    .pn-other-products__nav-btn {
        width: 36px;
        height: 36px;
        flex-shrink: 0;
        background: #7D8291;
        border: none;
        border-radius: var(--pn-border-radius);
        cursor: pointer;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .pn-other-products__nav-btn svg {
        width: 16px;
        height: 16px;
    }
    
    .pn-other-products__nav-btn svg path {
        stroke: white;
    }
    
    .pn-other-products__nav-btn:disabled {
        background: transparent;
        cursor: not-allowed;
        opacity: 1;
    }
    
    .pn-other-products__nav-btn:disabled svg path {
        stroke: #7D8291;
        opacity: 0.5;
    }
    
    .pn-other-products__nav-btn:not(:disabled):hover {
        background: #6a6f7d;
    }
    
    
    .pn-other-products__nav-btn--prev-desktop,
    .pn-other-products__nav-btn--next-desktop {
        display: none !important;
    }

    
    .pn-other-products__container {
        position: relative;
        overflow: hidden;
        margin: 0;
        padding: 0;
    }

    .pn-other-products__grid {
        display: flex !important;
        grid-template-columns: none !important;
        flex-direction: row;
        flex-wrap: nowrap;
        gap: 16px;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
        scroll-behavior: smooth;
        transform: none !important;
    }

    .pn-other-products__grid::-webkit-scrollbar {
        display: none;
        height: 0;
        width: 0;
    }

    .pn-product-card {
        flex: 0 0 300px !important;
        min-width: 300px;
        max-width: 300px;
        scroll-snap-align: start;
        scroll-snap-stop: always;
    }

    .pn-product-card__image-wrapper {
        padding: 24px;
        height: 223px;
    }

    .pn-product-card__image {
        max-height: 150px;
    }

    .pn-product-card__content {
        padding: 16px;
    }

    .pn-product-card__heading {
        font-size: 25px;
    }

    .pn-product-card__price {
        font-size: 25px;
        text-transform: uppercase;
    }

    .pn-product-card__btn {
        font-weight: 400;
        font-size: 14px;
        padding: 0 16px;
        width: 100%;
    }

    .pn-product-card__tooltip {
        right: 0;
    }
}

@media (max-width: 480px) {
    .pn-other-products__title {
        font-size: 20px;
    }

    .pn-product-card {
        flex: 0 0 280px !important;
        min-width: 280px;
        max-width: 280px;
    }

    .pn-product-card__heading {
        font-size: 20px;
    }

    .pn-product-card__price {
        font-size: 20px;
    }
}


.pn-reviews {
    padding: 50px 0;
}

.pn-reviews__title {
    font-family: var(--pn-font-main);
    font-weight: 600;
    font-size: 30px;
    line-height: 1.366;
    text-transform: uppercase;
    color: var(--pn-color-primary);
    margin: 0 0 24px 0;
}

.pn-reviews__container {
    position: relative;
    overflow: hidden;
}

.pn-reviews__grid {
    display: flex;
    flex-wrap: nowrap;
    gap: 24px;
    overflow: visible;
    transition: transform 0.3s ease;
    will-change: transform;
}

.pn-review-card {
    flex: 0 0 calc((100% - 48px) / 3);
    min-width: calc((100% - 48px) / 3);
    max-width: calc((100% - 48px) / 3);
    width: calc((100% - 48px) / 3);
    background: var(--pn-color-white);
    border: 1px solid #F5F5F5;
    border-radius: var(--pn-border-radius);
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.pn-review-card:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

.pn-review-card__image-wrapper {
    position: relative;
    width: 100%;
    height: 288px;
    border-radius: var(--pn-border-radius);
    overflow: hidden;
    background: #F5F5F5;
}

.pn-review-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.pn-review-card__zoom-btn {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 48px;
    height: 48px;
    background: var(--pn-color-white);
    border: none;
    border-radius: var(--pn-border-radius);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    transition: all 0.3s ease;
    padding: 8px;
}

.pn-review-card__zoom-btn:hover {
    background: #F5F5F5;
    transform: scale(1.05);
}

.pn-review-card__zoom-btn svg {
    width: 24px;
    height: 24px;
}

.pn-review-card__zoom-btn svg path {
    fill: #A4A4A4;
    transition: fill 0.3s ease;
}

.pn-review-card__zoom-btn:hover svg path {
    fill: #7D8291;
}

.pn-review-card__placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #F5F5F5;
}

.pn-review-card__placeholder-icon {
    width: 64px;
    height: 64px;
    opacity: 0.5;
}



.pn-review-card__info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.pn-review-card__name {
    font-family: var(--pn-font-main);
    font-weight: 600;
    font-size: 16px;
    line-height: 1.366;
    color: var(--pn-color-primary);
    margin: 0;
}

.pn-review-card__position {
    font-family: var(--pn-font-main);
    font-weight: 500;
    font-size: 16px;
    line-height: 1.366;
    color: var(--pn-color-text-dark);
    margin: 0;
}


.pn-reviews__show-all {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: #A4A4A4;
    border: none;
    border-radius: var(--pn-border-radius);
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.pn-reviews__show-all.show {
    display: flex;
}

.pn-reviews__show-all:hover:not(:disabled) {
    background: #7D8291;
    transform: translateY(-50%) scale(1.05);
}



.pn-reviews__show-all svg {
    width: 16px;
    height: 16px;
}


.pn-reviews__nav {
    display: none;
    width: 100%;
    background: #F6F6F6;
    border-radius: var(--pn-border-radius);
    padding: 0;
    gap: 0;
    justify-content: space-between;
    margin-top: 12px;
}

.pn-reviews__nav.show {
    display: flex;
}

.pn-reviews__nav-btn {
    width: 36px;
    height: 36px;
    background: #7D8291;
    border: none;
    border-radius: var(--pn-border-radius);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.pn-reviews__nav-btn svg {
    width: 16px;
    height: 16px;
}

.pn-reviews__nav-btn svg path {
    stroke: white;
}

.pn-reviews__nav-btn:disabled {
    background: transparent;
    cursor: not-allowed;
}

.pn-reviews__nav-btn:disabled svg path {
    stroke: #7D8291;
    opacity: 0.5;
}

.pn-reviews__nav-btn:not(:disabled):hover {
    background: #6a6f7d;
}


.pn-review-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.pn-review-modal--active {
    opacity: 1;
    visibility: visible;
}

.pn-review-modal__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    cursor: pointer;
}

.pn-review-modal__content {
    position: relative;
    z-index: 1;
    max-width: 90%;
    max-height: 90%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pn-review-modal__image {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: var(--pn-border-radius);
}

.pn-review-modal__close {
    position: absolute;
    top: -50px;
    right: 0;
    width: 40px;
    height: 40px;
    background: transparent;
    border: 2px solid white;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.pn-review-modal__close:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: rotate(90deg);
}

.pn-review-modal__close svg {
    width: 20px;
    height: 20px;
}

.pn-reviews__empty {
    text-align: center;
    color: var(--pn-color-text-gray);
    padding: 40px 0;
}


.pn-review-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.pn-review-modal--active {
    opacity: 1;
    visibility: visible;
}

.pn-review-modal__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    cursor: pointer;
}

.pn-review-modal__content {
    position: relative;
    z-index: 1;
    max-width: 90%;
    max-height: 90%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pn-review-modal__image {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: var(--pn-border-radius);
}

.pn-review-modal__close {
    position: absolute;
    top: -50px;
    right: 0;
    width: 40px;
    height: 40px;
    background: transparent;
    border: 2px solid white;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.pn-review-modal__close:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: rotate(90deg);
}

.pn-review-modal__close svg {
    width: 20px;
    height: 20px;
}


@media (max-width: 1200px) and (min-width: 769px) {
    .pn-review-card {
        flex: 0 0 calc((100% - 24px) / 2);
        min-width: calc((100% - 24px) / 2);
        max-width: calc((100% - 24px) / 2);
        width: calc((100% - 24px) / 2);
    }
}


@media (max-width: 768px) {
    .pn-reviews {
        padding: 32px 0;
    }

    .pn-reviews__title {
        font-size: 25px;
    }

    .pn-reviews__nav {
        display: flex;
    }
    
    
    .pn-review-card__zoom-btn {
        display: none;
    }

    .pn-reviews__show-all {
        display: none;
    }

    .pn-reviews__container {
        overflow: hidden;
    }

    .pn-reviews__grid {
        display: flex;
        flex-wrap: nowrap;
        gap: 16px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
        scroll-behavior: smooth;
        transform: none !important;
    }

    .pn-reviews__grid::-webkit-scrollbar {
        display: none;
    }

    .pn-review-card {
        flex: 0 0 300px;
        min-width: 300px;
        max-width: 300px;
        scroll-snap-align: start;
        gap: 24px;
    }

    .pn-review-card__image-wrapper {
        height: 201px;
    }


    .pn-review-card__name,
    .pn-review-card__position {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .pn-reviews__title {
        font-size: 20px;
    }

    .pn-review-card {
        flex: 0 0 280px;
        min-width: 280px;
        max-width: 280px;
    }
}


.pn-seo-text {
    padding: 50px 0;
}

.pn-seo-text__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    margin-bottom: 32px;
}

.pn-seo-text__title {
    font-family: var(--pn-font-main);
    font-weight: 200;
    font-size: 30px;
    line-height: 1.366;
    text-transform: uppercase;
    color: var(--pn-color-text-dark);
    margin: 0;
}

.pn-seo-text__catalog-btn {
    height: 40px;
    padding: 0 20px;
    font-size: 16px;
    font-weight: 600;
    white-space: nowrap;
    flex-shrink: 0;
}

.pn-seo-text__content {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.pn-seo-text__question {
    font-family: var(--pn-font-main);
    font-weight: 600;
    font-size: 18px;
    line-height: 1.4;
    color: var(--pn-color-text-dark);
    margin: 0 0 8px 0;
}

.pn-seo-text__text-wrapper {
    position: relative;
    overflow: hidden;
}

.pn-seo-text__text {
    font-family: var(--pn-font-main);
    font-weight: 500;
    font-size: 16px;
    line-height: 1.366;
    color: #8E8E8E;
    margin: 0;
    transition: max-height 0.3s ease;
}

.pn-seo-text__text--collapsed {
    max-height: 4.5em; 
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.pn-seo-text__toggle-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    border: none;
    padding: 0;
    cursor: pointer;
    font-family: var(--pn-font-main);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.375;
    color: #424242;
    margin-top: 8px;
    transition: all 0.3s ease;
}

.pn-seo-text__toggle-btn:hover {
    color: var(--pn-color-primary);
}

.pn-seo-text__toggle-text {
    user-select: none;
}

.pn-seo-text__toggle-icon {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.pn-seo-text__toggle-icon path {
    stroke: #424242;
    transition: stroke 0.3s ease;
}

.pn-seo-text__toggle-btn:hover .pn-seo-text__toggle-icon path {
    stroke: var(--pn-color-primary);
}


@media (max-width: 768px) {
    .pn-seo-text {
        padding: 32px 0;
    }

    .pn-seo-text__header {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
        margin-bottom: 32px;
    }

    .pn-seo-text__title {
        font-weight: 600;
        font-size: 25px;
    }

    .pn-seo-text__catalog-btn {
        width: 100%;
        height: 40px;
        padding: 0 16px;
        font-size: 14px;
        font-weight: 400;
        justify-content: center;
    }

    .pn-seo-text__question {
        font-size: 18px;
    }

    .pn-seo-text__text {
        font-size: 14px;
        color: #828282;
    }

    .pn-seo-text__text--collapsed {
        max-height: 4em; 
        -webkit-line-clamp: 3;
    }

    .pn-seo-text__toggle-btn {
        font-size: 14px;
        line-height: 1.571;
    }
}


.pn-faq {
    padding: 50px 0;
}

.pn-faq__wrapper {
    display: flex;
    gap: 133px;
    align-items: flex-start;
}

.pn-faq__sidebar {
    width: 437px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.pn-faq__title {
    font-family: var(--pn-font-main);
    font-weight: 600;
    font-size: 30px;
    line-height: 1.366;
    text-transform: uppercase;
    color: var(--pn-color-text-dark);
    margin: 0;
}

.pn-faq__consultant {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.pn-faq__consultant-content {
    background: #F5F5F5;
    border-radius: var(--pn-border-radius);
    padding: 12px 24px;
    display: flex;
    align-items: center;
    gap: 24px;
    min-height: 64px;
}

.pn-faq__consultant-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pn-faq__consultant-icon svg {
    width: 24px;
    height: 24px;
}

.pn-faq__consultant-icon svg path {
    fill: var(--pn-color-primary);
}

.pn-faq__consultant-text {
    font-family: var(--pn-font-main);
    font-weight: 500;
    font-size: 14px;
    line-height: 1.366;
    color: var(--pn-color-primary);
    margin: 0;
}

.pn-faq__consultant-btn {
    width: 100%;
    height: 40px;
    padding: 0 20px;
    font-size: 16px;
    font-weight: 600;
}

.pn-faq__list {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.pn-faq__item {
    background: var(--pn-color-white);
    border: 1px solid #F5F5F5;
    border-radius: var(--pn-border-radius);
    overflow: hidden;
    transition: all 0.3s ease;
}

.pn-faq__item:hover {
    border-color: var(--pn-color-primary-light);
}

.pn-faq__item--active {
    border-color: var(--pn-color-primary);
}

.pn-faq__question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 24px 32px;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: all 0.3s ease;
}

.pn-faq__question:hover {
    background: rgba(3, 130, 99, 0.02);
}

.pn-faq__question-text {
    font-family: var(--pn-font-main);
    font-weight: 600;
    font-size: 18px;
    line-height: 1.4;
    color: var(--pn-color-text-dark);
    flex: 1;
}

.pn-faq__icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.pn-faq__icon path {
    stroke: var(--pn-color-text-dark);
    transition: stroke 0.3s ease;
}

.pn-faq__answer-wrapper {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.pn-faq__item--active .pn-faq__answer-wrapper {
    max-height: 1000px;
}

.pn-faq__answer {
    padding: 0 32px 24px 32px;
    font-family: var(--pn-font-main);
    font-weight: 500;
    font-size: 16px;
    line-height: 1.366;
    color: var(--pn-color-text-dark);
}

.pn-faq__answer p {
    margin: 0 0 12px 0;
}

.pn-faq__answer p:last-child {
    margin-bottom: 0;
}

.pn-faq__empty {
    text-align: center;
    color: var(--pn-color-text-gray);
    padding: 40px 0;
}


@media (max-width: 1200px) {
    .pn-faq__wrapper {
        gap: 60px;
    }
    
    .pn-faq__sidebar {
        width: 350px;
    }
}


@media (max-width: 768px) {
    .pn-faq {
        padding: 32px 0;
    }

    .pn-faq__wrapper {
        flex-direction: column;
        gap: 24px;
    }

    .pn-faq__sidebar {
        width: 100%;
    }

    .pn-faq__title {
        font-size: 25px;
    }

    .pn-faq__consultant-content {
        padding: 12px 24px;
        gap: 20px;
        min-height: 64px;
    }

    .pn-faq__consultant-text {
        font-size: 14px;
    }

    .pn-faq__consultant-btn {
        height: 40px;
        padding: 0 16px;
        font-size: 14px;
        font-weight: 400;
    }

    .pn-faq__list {
        width: 100%;
    }

    .pn-faq__item {
        width: 100%;
    }

    .pn-faq__question {
        padding: 16px;
        gap: 12px;
    }

    .pn-faq__question-text {
        font-size: 16px;
    }

    .pn-faq__answer {
        padding: 0 16px 16px 16px;
        font-size: 14px;
    }
}


.pn-cta-form {
    background: var(--pn-color-primary);
    padding: 64px 0;
}

.pn-cta-form .pn-container {
    padding: 0 2vh;
}

@media (min-width: 769px) {
    .pn-cta-form .pn-container {
        padding: 0 40px;
    }
}

.pn-cta-form__wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 24px;
    width: 100%;
    box-sizing: border-box;
}

@media (min-width: 1201px) {
    .pn-cta-form__wrapper {
        gap: 140px;
    }
}

.pn-cta-form__left {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    gap: 0;
    align-self: stretch;
}

.pn-cta-form__header {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.pn-cta-form__subtitle {
    font-family: var(--pn-font-main);
    font-weight: 600;
    font-size: 16px;
    line-height: 1.366;
    color: var(--pn-color-white);
    margin: 0;
}

.pn-cta-form__title {
    font-family: var(--pn-font-main);
    font-weight: 600;
    font-size: 50px;
    line-height: 1.366;
    color: var(--pn-color-white);
    margin: 0;
}

.pn-cta-form__consultant {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: auto;
}

.pn-cta-form__right {
    flex-shrink: 1;
    flex-basis: 783px;
    min-width: 0;
    max-width: 783px;
    box-sizing: border-box;
}

.pn-cta-form__consultant-card {
    background: var(--pn-color-bg-gray);
    border-radius: var(--pn-border-radius);
    padding: 12px 24px;
    display: flex;
    align-items: center;
    gap: 24px;
    height: 64px;
    width: 100%;
    max-width: 100%;
}

.pn-cta-form__consultant-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.pn-cta-form__consultant-icon svg {
    width: 100%;
    height: 100%;
}

.pn-cta-form__consultant-text {
    font-family: var(--pn-font-main);
    font-weight: 500;
    font-size: 14px;
    line-height: 1.366;
    color: var(--pn-color-text-dark);
    margin: 0;
}

.pn-cta-form__email-block {
    background: #3FA862;
    border-radius: var(--pn-border-radius);
    padding: 4px;
    display: flex;
    gap: 4px;
    width: 100%;
    max-width: 100%;
}

.pn-cta-form__email-btn {
    flex: 1;
    background: var(--pn-color-primary);
    border-radius: var(--pn-border-radius);
    padding: 0 20px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--pn-font-main);
    font-weight: 600;
    font-size: 16px;
    line-height: 1.366;
    color: var(--pn-color-white);
    text-decoration: none;
    transition: background 0.3s ease;
    white-space: nowrap;
}

.pn-cta-form__email-btn:hover {
    background: #027050;
}

.pn-cta-form__copy-btn {
    flex: 1;
    background: transparent;
    border: none;
    border-radius: var(--pn-border-radius);
    padding: 0 20px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--pn-font-main);
    font-weight: 600;
    font-size: 16px;
    line-height: 1.366;
    color: var(--pn-color-white);
    cursor: pointer;
    transition: background 0.3s ease;
}

.pn-cta-form__copy-btn:hover {
    background: rgba(255, 255, 255, 0.1);
}

.pn-cta-form__copy-btn svg {
    width: 16px;
    height: 16px;
}

.pn-cta-form__right {
    flex-shrink: 1;
    flex-basis: 783px;
    min-width: 0;
    max-width: 783px;
    box-sizing: border-box;
}

.pn-cta-form__form-wrapper {
    background: var(--pn-color-bg-gray);
    border-radius: 8px;
    padding: 24px 16px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: visible;
}

@media (min-width: 769px) {
    .pn-cta-form__form-wrapper {
        padding: 40px 48px;
    }
}


.pn-cta-form__form-wrapper .wpcf7-form {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: auto;
    column-gap: 24px;
    row-gap: 24px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: visible;
}

.pn-cta-form__form-wrapper .wpcf7-form > .inp,
.pn-cta-form__form-wrapper .wpcf7-form > p {
    margin: 0;
    max-width: 100%;
    box-sizing: border-box;
}

.pn-cta-form__form-wrapper .wpcf7-form .wpcf7-form-control-wrap {
    display: block;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}


.pn-cta-form__form-wrapper .wpcf7-form > .inp.pn-cta-form__field-1 {
    grid-column: 1;
    grid-row: 1;
}

.pn-cta-form__form-wrapper .wpcf7-form > .inp.pn-cta-form__field-2 {
    grid-column: 2;
    grid-row: 1;
}


.pn-cta-form__form-wrapper .wpcf7-form > .inp.pn-cta-form__field-3 {
    grid-column: 1 / -1;
    grid-row: 2;
}


.pn-cta-form__form-wrapper .wpcf7-form > .inp.pn-cta-form__field-comment,
.pn-cta-form__form-wrapper .wpcf7-form > .inp.inp_textarea {
    grid-column: 1 / -1;
    grid-row: 3;
}


.pn-cta-form__form-wrapper .wpcf7-form > .pn-cta-form__form-footer {
    grid-column: 1 / -1;
    grid-row: 4;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    margin: 0;
}


.pn-cta-form__form-wrapper .wpcf7-form .pn-cta-form__form-footer .btn_c {
    margin: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    flex-shrink: 0 !important;
    flex-grow: 0 !important;
}

.pn-cta-form__form-wrapper .wpcf7-form .pn-cta-form__form-footer .btn_c .btn_m,
.pn-cta-form__form-wrapper .wpcf7-form .pn-cta-form__form-footer .btn_c .wpcf7-submit {
    width: 100%;
    height: 44px;
    display: flex;
    justify-content: center;
    align-items: center;
    align-self: stretch;
    padding: 0 16px;
}


.pn-cta-form__form-wrapper .wpcf7-form .pn-cta-form__form-footer .wpcf7-form-control-wrap {
    width: 100%;
    display: block !important;
    margin: 0;
}


.pn-cta-form__form-wrapper .wpcf7-form .pn-cta-form__form-footer .wpcf7-acceptance {
    display: block !important;
    visibility: visible !important;
    margin: 0;
    width: 100%;
}


.pn-cta-form__form-wrapper .wpcf7-form .pn-cta-form__form-footer .wpcf7-acceptance input[type="checkbox"] {
    display: none;
}

.pn-cta-form__form-wrapper .wpcf7-form .pn-cta-form__form-footer .wpcf7-acceptance .wpcf7-list-item {
    margin: 0;
    width: 100%;
    display: block;
}

.pn-cta-form__form-wrapper .wpcf7-form .pn-cta-form__form-footer .wpcf7-acceptance .wpcf7-list-item label {
    margin: 0;
    cursor: default;
    display: block;
    width: 100%;
    font-family: 'Gothic A1', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 140%;
    color: #A4A4A4;
}


.pn-cta-form__form-wrapper .wpcf7-form .pn-cta-form__form-footer .wpcf7-acceptance .wpcf7-list-item-label a,
.pn-cta-form__form-wrapper .wpcf7-form .pn-cta-form__form-footer .wpcf7-acceptance .pn-agreement-highlight {
    color: #038263;
    text-decoration: none;
    font-weight: 400;
}


.pn-cta-form__form-wrapper .wpcf7-form > .btn_c:not(.pn-cta-form__form-footer .btn_c),
.pn-cta-form__form-wrapper .wpcf7-form > div.btn_c:not(.pn-cta-form__form-footer .btn_c),
.pn-cta-form__form-wrapper .wpcf7-form > p:has(.wpcf7-submit) {
    grid-column: 1 / -1 !important;
    grid-row: 4 !important;
    margin: 0;
}


.pn-cta-form__form-wrapper .wpcf7-form > .wpcf7-acceptance:not(.pn-cta-form__form-footer .wpcf7-acceptance),
.pn-cta-form__form-wrapper .wpcf7-form > span.wpcf7-acceptance:not(.pn-cta-form__form-footer .wpcf7-acceptance) {
    grid-column: 1 / -1 !important;
    grid-row: 5 !important;
    margin: 0;
    padding-top: 0;
    display: block !important;
    visibility: visible !important;
}


.pn-cta-form__form-wrapper .wpcf7-form > .inp:not(.pn-cta-form__field-1):not(.pn-cta-form__field-2):not(.pn-cta-form__field-3):not(.pn-cta-form__field-comment):not(.inp_textarea),
.pn-cta-form__form-wrapper .wpcf7-form > p:not(:has(.wpcf7-submit)),
.pn-cta-form__form-wrapper .wpcf7-form > div:not(.inp):not(.btn_c):not(.wpcf7-acceptance),
.pn-cta-form__form-wrapper .wpcf7-form > fieldset {
    grid-column: 1 / -1;
}

.pn-cta-form__form-wrapper .wpcf7-form label {
    display: block;
    font-family: 'Gothic A1', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.2;
    color: var(--pn-color-text-dark);
    margin-bottom: 4px;
}


.pn-cta-form__form-wrapper .wpcf7-form .inp {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.pn-cta-form__form-wrapper .wpcf7-form .inp label {
    display: block;
    font-family: 'Gothic A1', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.2;
    color: var(--pn-color-text-dark);
    margin-bottom: 4px;
}

.pn-cta-form__form-wrapper .wpcf7-form input[type="text"],
.pn-cta-form__form-wrapper .wpcf7-form input[type="email"],
.pn-cta-form__form-wrapper .wpcf7-form input[type="tel"],
.pn-cta-form__form-wrapper .wpcf7-form textarea {
    width: 100%;
    max-width: 100%;
    padding: 12px;
    background: var(--pn-color-white);
    border: none;
    border-radius: var(--pn-border-radius);
    font-family: var(--pn-font-main);
    font-weight: 600;
    font-size: 16px;
    line-height: 1.366;
    color: var(--pn-color-text-dark);
    box-sizing: border-box;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}


.pn-cta-form__form-wrapper .wpcf7-form .wpcf7-not-valid input,
.pn-cta-form__form-wrapper .wpcf7-form .wpcf7-not-valid textarea,
.pn-cta-form__form-wrapper .wpcf7-form input.wpcf7-not-valid,
.pn-cta-form__form-wrapper .wpcf7-form textarea.wpcf7-not-valid {
    border: 2px solid #FF4444 !important;
    box-shadow: 0 0 0 3px rgba(255, 68, 68, 0.1);
    background: #FFF5F5;
}

.pn-cta-form__form-wrapper .wpcf7-form .wpcf7-not-valid {
    position: relative;
}

.pn-cta-form__form-wrapper .wpcf7-form input::placeholder,
.pn-cta-form__form-wrapper .wpcf7-form textarea::placeholder {
    color: #A4A4A4;
    font-weight: 600;
}

.pn-cta-form__form-wrapper .wpcf7-form textarea {
    min-height: 120px;
    resize: vertical;
    padding-bottom: 40px;
}

.pn-cta-form__form-wrapper .wpcf7-form .wpcf7-form-row {
    display: flex;
    gap: 24px;
}

.pn-cta-form__form-wrapper .wpcf7-form .wpcf7-form-row .wpcf7-form-control-wrap {
    flex: 1;
}



.pn-cta-form__form-wrapper .wpcf7-form .wpcf7-acceptance {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}


.pn-cta-form__form-wrapper .wpcf7-form .wpcf7-submit,
.pn-cta-form__form-wrapper .wpcf7-form .btn_m,
.pn-cta-form__form-wrapper .wpcf7-form input[type="submit"],
.pn-cta-form__form-wrapper .wpcf7-form button[type="submit"] {
    width: 100%;
    height: 44px;
    display: flex;
    justify-content: center;
    align-items: center;
    align-self: stretch;
    background: var(--pn-color-primary);
    border: none;
    border-radius: var(--pn-border-radius);
    font-family: var(--pn-font-main);
    font-weight: 600;
    font-size: 16px;
    line-height: 1.366;
    color: var(--pn-color-white);
    cursor: pointer;
    transition: background 0.3s ease;
    padding: 0 16px;
    box-sizing: border-box;
}

.pn-cta-form__form-wrapper .wpcf7-form .wpcf7-submit:hover,
.pn-cta-form__form-wrapper .wpcf7-form .btn_m:hover,
.pn-cta-form__form-wrapper .wpcf7-form input[type="submit"]:hover,
.pn-cta-form__form-wrapper .wpcf7-form button[type="submit"]:hover {
    background: #027050;
}


.pn-cta-form__form-wrapper .wpcf7-form .wpcf7-acceptance {
    margin: 0;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}


.pn-cta-form__form-wrapper .wpcf7-form .wpcf7-acceptance input[type="checkbox"] {
    display: none;
}

.pn-cta-form__form-wrapper .wpcf7-form .wpcf7-acceptance .wpcf7-list-item {
    display: block !important;
    margin: 0;
    width: 100%;
    box-sizing: border-box;
    visibility: visible !important;
    opacity: 1 !important;
}

.pn-cta-form__form-wrapper .wpcf7-form .wpcf7-acceptance .wpcf7-list-item label {
    display: block !important;
    margin: 0;
    cursor: default;
    width: 100%;
    box-sizing: border-box;
    visibility: visible !important;
    opacity: 1 !important;
}

.pn-cta-form__form-wrapper .wpcf7-form .wpcf7-acceptance .wpcf7-list-item-label {
    font-family: 'Gothic A1', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.4;
    color: #7D8291;
    margin: 0;
    padding: 0;
    cursor: default;
    word-wrap: break-word;
    overflow-wrap: break-word;
    white-space: normal;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    width: 100%;
    box-sizing: border-box;
}


.pn-cta-form__form-wrapper .wpcf7-form .wpcf7-acceptance .wpcf7-list-item-label .pn-agreement-highlight,
.pn-cta-form__form-wrapper .wpcf7-form .wpcf7-acceptance .wpcf7-list-item-label a {
    color: #038263 !important;
    font-weight: 400;
    text-decoration: none;
}


.pn-cta-form__form-wrapper .wpcf7-form .wpcf7-form-footer .wpcf7-agreement {
    font-family: 'Gothic A1', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.4;
    color: #7D8291;
    margin: 0;
}


@media (max-width: 1200px) {
    .pn-cta-form__wrapper {
        flex-direction: column;
        align-items: flex-start;
        gap: 40px;
    }

    .pn-cta-form__left {
        width: 100%;
        align-self: stretch;
        gap: 40px;
    }

    .pn-cta-form__consultant {
        margin-top: 0;
    }

    .pn-cta-form__consultant-card {
        width: 100%;
        max-width: 100%;
    }

    .pn-cta-form__email-block {
        width: 100%;
        max-width: 100%;
    }

    .pn-cta-form__right {
        width: 100%;
        max-width: 100%;
        flex-basis: auto;
    }

    .pn-cta-form__form-wrapper {
        padding: 32px;
        width: 100%;
        max-width: 100%;
    }

    .pn-cta-form__form-wrapper .wpcf7-form {
        display: flex;
        flex-direction: column;
    }

    .pn-cta-form__form-wrapper .wpcf7-form > .inp,
    .pn-cta-form__form-wrapper .wpcf7-form > p,
    .pn-cta-form__form-wrapper .wpcf7-form > div:not(.inp) {
        grid-column: 1 / -1 !important;
        width: 100% !important;
    }
}


@media (max-width: 768px) {
    .pn-cta-form {
        background: #237768;
        padding: 32px 0;
        width: calc(100% + 16px);
        margin-left: -8px;
    }

    .pn-cta-form .pn-container {
        padding: 0 16px;
    }

    .pn-cta-form__wrapper {
        align-items: flex-start;
        gap: 40px;
    }

    .pn-cta-form__left {
        align-self: stretch;
        gap: 20px;
    }

    .pn-cta-form__consultant {
        margin-top: 0;
    }

    .pn-cta-form__header {
        gap: 8px;
    }

    .pn-cta-form__subtitle {
        font-size: 16px;
    }

    .pn-cta-form__title {
        font-size: 28px;
        line-height: 1.429;
    }

    .pn-cta-form__consultant {
        gap: 8px;
    }

    .pn-cta-form__consultant-card {
        width: 100%;
        max-width: 100%;
        padding: 12px 24px;
        gap: 20px;
        height: 64px;
    }

    .pn-cta-form__consultant-text {
        font-size: 14px;
    }

    .pn-cta-form__right {
        gap: 8px;
    }

    .pn-cta-form__email-block {
        width: 100%;
        max-width: 100%;
        flex-direction: row;
    }

    .pn-cta-form__email-btn {
        flex: 1;
        height: 38px;
        font-size: 14px;
        font-weight: 400;
        padding: 0 4px;
        white-space: nowrap;
    }

    .pn-cta-form__copy-btn {
        flex: 0 0 auto;
        height: 38px;
        font-size: 14px;
        font-weight: 400;
        padding: 0 16px;
    }

    .pn-cta-form__form-wrapper {
        padding: 16px;
    }

    .pn-cta-form__form-wrapper .wpcf7-form {
        display: flex;
        flex-direction: column;
        gap: 16px;
    }

    .pn-cta-form__form-wrapper .wpcf7-form > .inp,
    .pn-cta-form__form-wrapper .wpcf7-form > p,
    .pn-cta-form__form-wrapper .wpcf7-form > div:not(.inp) {
        grid-column: 1 / -1 !important;
        width: 100% !important;
    }

    .pn-cta-form__form-wrapper .wpcf7-form label {
        font-size: 12px;
    }

    .pn-cta-form__form-wrapper .wpcf7-form input[type="text"],
    .pn-cta-form__form-wrapper .wpcf7-form input[type="email"],
    .pn-cta-form__form-wrapper .wpcf7-form input[type="tel"],
    .pn-cta-form__form-wrapper .wpcf7-form textarea {
        font-size: 14px;
        font-weight: 500;
        padding: 12px;
    }

    .pn-cta-form__form-wrapper .wpcf7-form .wpcf7-form-row {
        flex-direction: column;
        gap: 16px;
    }

    .pn-cta-form__form-wrapper .wpcf7-form .wpcf7-submit {
        width: 100%;
        height: 44px;
    }

    
    .pn-cta-form__form-wrapper .wpcf7-form > .pn-cta-form__form-footer {
        display: flex !important;
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 8px !important;
    }

    .pn-cta-form__form-wrapper .wpcf7-form .pn-cta-form__form-footer .btn_c {
        width: 100% !important;
        max-width: 100% !important;
        flex: none !important;
    }

    .pn-cta-form__form-wrapper .wpcf7-form .pn-cta-form__form-footer .btn_c .btn_m,
    .pn-cta-form__form-wrapper .wpcf7-form .pn-cta-form__form-footer .btn_c .wpcf7-submit {
        width: 100% !important;
        max-width: 100% !important;
        height: 44px !important;
        padding: 0 16px !important;
        font-size: 14px !important;
        font-weight: 400 !important;
        border-radius: 4px !important;
    }

    .pn-cta-form__form-wrapper .wpcf7-form .pn-cta-form__form-footer .wpcf7-form-control-wrap {
        width: 100% !important;
        flex: none !important;
        display: block !important;
    }

    .pn-cta-form__form-wrapper .wpcf7-form .pn-cta-form__form-footer .wpcf7-acceptance {
        width: 100% !important;
        max-width: 100% !important;
    }

    .pn-cta-form__form-wrapper .wpcf7-form .pn-cta-form__form-footer .wpcf7-acceptance .wpcf7-list-item label {
        font-size: 14px !important;
        line-height: 140% !important;
        text-align: left !important;
    }

    .pn-cta-form__form-wrapper .wpcf7-form .wpcf7-submit,
    .pn-cta-form__form-wrapper .wpcf7-form .btn_m,
    .pn-cta-form__form-wrapper .wpcf7-form input[type="submit"],
    .pn-cta-form__form-wrapper .wpcf7-form button[type="submit"] {
        width: 100%;
        max-width: 100%;
        min-width: auto;
    }

    .pn-cta-form__form-wrapper .wpcf7-form .wpcf7-form-footer .wpcf7-agreement {
        font-size: 14px;
    }
}


.pn-portfolio-slider {
    padding: 64px 0;
    background: var(--pn-color-bg-light);
}

.pn-portfolio-slider__title {
    font-family: var(--pn-font-main, 'Manrope', sans-serif);
    font-weight: 600;
    font-size: 25px;
    line-height: normal;
    text-transform: uppercase;
    margin-bottom: 32px;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.pn-portfolio-slider__title-line {
    display: flex;
    gap: 0;
    white-space: nowrap;
}

.pn-portfolio-slider__title-part1 {
    color: #222;
}

.pn-portfolio-slider__title-part2 {
    color: #038263;
    margin-left: 8px;
}


.pn-portfolio-slider__nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: #A4A4A4;
    border: none;
    border-radius: var(--pn-border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    padding: 0;
}

.pn-portfolio-slider__nav-btn:hover:not(:disabled) {
    background: #7D8291;
    transform: translateY(-50%) scale(1.05);
}

.pn-portfolio-slider__nav-btn:disabled {
    background: #F6F6F6 !important;
    cursor: not-allowed;
    opacity: 1;
    pointer-events: none;
}

.pn-portfolio-slider__nav-btn svg {
    width: 16px;
    height: 16px;
}

.pn-portfolio-slider__nav-btn svg path {
    stroke: white;
}

.pn-portfolio-slider__nav-btn:disabled svg path {
    stroke: #A4A4A4;
}

.pn-portfolio-slider__nav-btn--prev {
    left: 10px;
}

.pn-portfolio-slider__nav-btn--next {
    right: 10px;
}


.pn-portfolio-slider__projects-wrapper {
    position: relative;
    overflow: hidden;
}

.pn-portfolio-slider__projects-container {
    position: relative;
    overflow: hidden;
    padding-bottom: 0;
}

.pn-portfolio-slider__projects {
    display: flex;
    gap: 24px;
    transition: transform 0.3s ease;
    will-change: transform;
}

.pn-portfolio-slider__project-card {
    flex: 0 0 calc(33.333% - 16px);
    background: var(--pn-color-white);
    border-radius: var(--pn-border-radius);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pn-portfolio-slider__project-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.pn-portfolio-slider__project-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.pn-portfolio-slider__project-img {
    width: 100%;
    height: 240px;
    overflow: hidden;
    background: #F5F5F5;
    position: relative;
}

.pn-portfolio-slider__project-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.pn-portfolio-slider__project-card:hover .pn-portfolio-slider__project-image {
    transform: scale(1.05);
}

.pn-portfolio-slider__project-placeholder {
    width: 100%;
    height: 100%;
    background: #E0E0E0;
}

.pn-portfolio-slider__project-desc {
    padding: 20px;
}

.pn-portfolio-slider__project-title {
    font-family: var(--pn-font-main);
    font-weight: 600;
    font-size: 18px;
    line-height: 1.2;
    color: var(--pn-color-text-dark);
    margin-bottom: 12px;
}

.pn-portfolio-slider__project-more {
    font-family: var(--pn-font-main);
    font-weight: 600;
    font-size: 14px;
    line-height: 1.2;
    color: #237768;
    text-decoration: underline;
}


@media (max-width: 1200px) {
    .pn-portfolio-slider__project-card {
        flex: 0 0 calc(50% - 12px);
    }

    .pn-portfolio-slider__nav-btn--prev {
        left: 10px;
    }

    .pn-portfolio-slider__nav-btn--next {
        right: 10px;
    }
}


@media (max-width: 768px) {
    .pn-portfolio-slider {
        padding: 32px 0;
    }

    .pn-portfolio-slider__title {
        font-size: 25px;
        margin-bottom: 24px;
    }


    .pn-portfolio-slider__projects-container {
        padding-bottom: 70px;
        overflow: visible;
    }

    .pn-portfolio-slider__projects-wrapper {
        overflow: visible;
    }

    .pn-portfolio-slider__nav-btn {
        top: auto;
        bottom: 20px;
        transform: translateY(0);
        width: 40px;
        height: 40px;
        z-index: 20;
    }

    .pn-portfolio-slider__nav-btn:hover:not(:disabled) {
        transform: translateY(0) scale(1.05);
    }

    .pn-portfolio-slider__nav-btn svg {
        width: 16px;
        height: 16px;
    }

    .pn-portfolio-slider__nav-btn--prev {
        left: 16px;
        right: auto;
    }

    .pn-portfolio-slider__nav-btn--prev:hover:not(:disabled) {
        transform: translateY(0) scale(1.05);
    }

    .pn-portfolio-slider__nav-btn--next {
        right: 16px;
        left: auto;
    }

    .pn-portfolio-slider__nav-btn--next:hover:not(:disabled) {
        transform: translateY(0) scale(1.05);
    }

    .pn-portfolio-slider__projects {
        gap: 16px;
    }

    .pn-portfolio-slider__project-card {
        flex: 0 0 100%;
    }

    .pn-portfolio-slider__project-img {
        height: 200px;
    }

    .pn-portfolio-slider__project-desc {
        padding: 16px;
    }

    .pn-portfolio-slider__project-title {
        font-size: 16px;
    }
}


.pn-cta-form .pn-container .pn-cta-form__wrapper .pn-cta-form__right .pn-cta-form__form-wrapper .wpcf7-form > .pn-cta-form__form-footer .btn_c {
    width: 100% !important;
    max-width: 100% !important;
    min-width: auto !important;
    flex: 0 0 auto !important;
}

.pn-cta-form .pn-container .pn-cta-form__wrapper .pn-cta-form__right .pn-cta-form__form-wrapper .wpcf7-form > .pn-cta-form__form-footer .wpcf7-form-control-wrap {
    width: 100% !important;
    flex: none !important;
    min-width: 0 !important;
}


.pn-docs {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    min-width: 0;
}

.pn-doc-card {
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
    gap: 8px;
    padding: 12px;
    width: 420px;
    height: 62px;
    background: var(--pn-color-white);
    border: 1px solid #E6E6E6;
    border-radius: var(--pn-border-radius);
    text-decoration: none;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.pn-doc-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.pn-doc-card__icon {
    flex-shrink: 0;
    align-self: center;
}

.pn-doc-card__icon-bg {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0;
    padding: 8px;
    width: 40px;
    height: 40px;
    background: #EBEBEB;
    border-radius: var(--pn-border-radius);
    position: relative;
}

.pn-doc-card__icon-bg svg {
    width: 19.2px;
    height: 24px;
    position: absolute;
    top: 0;
    left: 2.4px;
}

.pn-doc-card__icon-text {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 5.4px;
    line-height: 1.21;
    color: var(--pn-color-white);
    position: absolute;
    bottom: 2.4px;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    width: 19.2px;
    text-align: center;
}

.pn-doc-card__info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
    align-self: center;
}

.pn-doc-card__title {
    font-family: var(--pn-font-main);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.366;
    color: #424242;
    margin-bottom: 0;
    height: 22px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.pn-doc-card__size {
    font-family: var(--pn-font-main);
    font-weight: 400;
    font-size: 12px;
    line-height: 1.5;
    letter-spacing: -0.011em;
    color: #237768;
    margin-top: 2px;
}

.pn-doc-card__download {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 7px;
    width: 38px;
    height: 38px;
    background: #237768;
    border-radius: 2px;
    flex-shrink: 0;
    align-self: center;
    transition: background 0.3s ease;
}

.pn-doc-card:hover .pn-doc-card__download {
    background: var(--pn-color-primary);
}

.pn-doc-card__download svg {
    width: 14px;
    height: 15.37px;
    color: var(--pn-color-white);
}


@media (max-width: 768px) {
    .pn-docs {
        flex-direction: column;
        gap: 24px;
        padding: 0;
    }

    .pn-doc-card {
        width: 100%;
        align-self: stretch;
    }
}


.pn-specs-table {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.pn-specs-table__table {
    width: 100%;
    border-collapse: collapse;
    background: var(--pn-color-white);
    border: 1px solid #F5F5F5;
    border-radius: var(--pn-border-radius);
    overflow: hidden;
}

.pn-specs-table__row {
    display: table-row;
}

.pn-specs-table__row--header {
    background: var(--pn-color-primary);
}

.pn-specs-table__row--odd {
    background: var(--pn-color-white);
}

.pn-specs-table__row--even {
    background: var(--pn-color-bg-gray);
}

.pn-specs-table__cell {
    padding: 10px 12px;
    border: 1px solid #F5F5F5;
    border-top: none;
    border-left: none;
    font-family: var(--pn-font-main);
    font-weight: 400;
    font-size: 14px;
    line-height: 1.366;
    color: #222222;
    text-align: left;
    vertical-align: top;
}

.pn-specs-table__cell:first-child {
    border-left: 1px solid #F5F5F5;
}

.pn-specs-table__cell--header {
    font-family: 'Gothic A1', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.2;
    color: var(--pn-color-white);
    background: var(--pn-color-primary);
    border-color: #F5F5F5;
}

.pn-specs-table__row--header .pn-specs-table__cell {
    border-top: 1px solid #F5F5F5;
}

.pn-specs-table__note {
    background: var(--pn-color-white);
    border-radius: var(--pn-border-radius);
    padding: 10px;
    font-family: var(--pn-font-main);
    font-weight: 400;
    font-size: 14px;
    line-height: 1.366;
    color: #222222;
    text-align: left;
}


@media (max-width: 768px) {
    .pn-specs-table__table {
        width: 100%;
        max-width: 328px;
    }

    .pn-specs-table__cell {
        font-size: 12px;
        line-height: 1.5;
        letter-spacing: -0.011em;
        padding: 10px 12px;
    }

    .pn-specs-table__cell--header {
        font-size: 12px;
        line-height: 1.2;
    }

    .pn-specs-table__note {
        font-size: 14px;
        padding: 12px;
    }
}