:root {
    --brand: #e1cd87;
    --dark: #111113;
    --grey: #F9F9F9;
    --grey-2: #C1C1C1;
    --grey-3: #616161;
    --white: #fff;
    --btn-border: #ADADB9;
    --white-50: rgba(255, 255, 255, .5);
    --dark-50: rgb(17, 17, 19, .5);
    --black: #000;

    --font-family: 'Century Gothic Paneuropean', sans-serif;

    --def-transition: all 0.3s ease;
}

@font-face {
    font-family: 'Century Gothic Paneuropean';
    src: url('../fonts/CenturyGothicPaneuropeanRegular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Century Gothic Paneuropean';
    src: url('../fonts/CenturyGothicPaneuropeanBold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Century Gothic Paneuropean';
    src: url('../fonts/CenturyGothicPaneuropeanBlack.woff2') format('woff2');
    font-weight: 900;
    font-style: normal;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

html {
    height: 100%;
    scroll-behavior: smooth;
}

body {
    position: relative;
    min-width: 320px;
    height: 100%;
    font-family: var(--font-family);
    font-size: 15px;
    font-weight: 400;
    color: var(--dark);
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: var(--dark);
}

a:visited {
    color: inherit;
}

input,
textarea,
select {
    font-size: 16px;
    font-family: var(--font-family);
    border: 1px solid var(--btn-border);
    padding: 9.5px 15px;
    line-height: 1;
}

input::placeholder,
textarea::placeholder {
    font-family: var(--font-family);
    color: var(--grey-3);
}

button {
    /* all: unset; */
    border: 0;
    outline: none;
    background-color: transparent;
}

.container {
    --width: 1300px;
    --offset: 40px;

    max-width: calc(var(--width) + var(--offset) * 2);
    margin: 0 auto;
    padding: 0 var(--offset);
}

.container-l {
    --width: 1520px;
}

.container-s {
    --width: 1050px;
}

/* .inner-container {
    max-width: 1300px;
    margin: 0 auto;
} */

.btn {
    display: inline-block;
    padding: 12px 25px;
    font-size: 15px;
    font-weight: 700;

    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease-in-out;
    color: var(--dark);
}

.btn-primary {
    background: linear-gradient(90deg, #e1cd87 0%, #d7bf76 100%);
}

.btn-primary:hover {
    background: linear-gradient(90deg, #d7bf76 0%, #e1cd87 100%);
}

.btn-arrow {
    position: relative;
    display: inline-flex;
    align-items: center;
    background-color: var(--brand);
    border: 1px solid var(--grey-3);
    /* width: 270px; */
    height: 48px;
    cursor: pointer;
    padding: 0 72px 0 24px;
}

.btn-arrow:hover {
    background-color: var(--white);
}

.btn-arrow-icon {
    --size: 48px;
    position: absolute;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: var(--size);
    height: var(--size);
    border-left: 1px solid;
    border-color: inherit;
}

.btn-arrow-white {
    border: 1px solid var(--btn-border);
    background-color: var(--white);
}

.btn-arrow-white:hover {
    background-color: var(--brand);
    color: var(--dark);
}

.btn-square {
    --size: 38px;
    display: grid;
    place-items: center;
    width: var(--size);
    height: var(--size);
    border: 1px solid var(--dark);
    background-color: var(--brand);
}

/* Section */

.site-main {
    padding: 20px 0 70px;
}

.site-main-page {
    padding: 70px 0;
}

.section {
    position: relative;
    padding: 100px 0;
}

.section-grey {
    background-color: var(--grey);
}

.hor-line {
    width: 30px;
    height: 1px;
    background-color: var(--brand);
}

.section-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
}

.section-title {
    font-size: 34px;
    font-weight: 700;
    text-transform: uppercase;
}

.section-subtitle {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 700;
    color: var(--brand);
}

.highlight-text {
    font-weight: 700;
    color: var(--brand);
}

/* Header */

.header {}

.header-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
}

.header-logo img {
    height: 32px;
}

.header-nav {}

.menu {
    display: flex;
    align-items: center;
}

.menu li {
    list-style: none;
}

.menu a {
    display: block;
    padding: 8px 16px;
    font-size: 15px;
    font-weight: 400;
    text-decoration: none;
    color: var(--dark);
    transition: all 0.3s ease-in-out;
}

.menu a:hover {
    color: var(--brand);
}

.header-cta {
    display: flex;
    align-items: center;
    gap: 30px;
}

.header-burger {
    display: none;
}

.ct-row {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 15px;
    font-weight: 700;
    color: var(--dark);
    transition: var(--def-transition);
}

a.ct-row:hover {
    color: var(--brand);
}

.drawer {
    position: fixed;
    width: 320px;
    top: 0;
    right: -100%;
    height: 100%;
    background: var(--bg-add);
    z-index: 999;
    transition: all 0.3s linear;
    overflow-y: auto;
    color: var(--white);
}

.drawer-row {
    overflow-x: hidden;
    padding: 18px 20px;
}

.drawer.active {
    right: 0;
    background-color: var(--dark);
}

.drawer .menu {
    flex-direction: column;
}

.drawer a {
    color: var(--white);
}

.drawer-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 30px;
    height: 30px;
    cursor: pointer;
}

.drawer .ct-row {
    margin-top: 20px;
    justify-content: center;
}

/* Intro */
.intro {
    padding: 0;
}

.intro-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.intro-content {
    /* padding: 20px 0; */
    max-width: 520px;
    flex: 1 0 auto;
}

.intro-subtitle {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 12px;
    font-size: 12px;
}

.intro-title {
    margin-bottom: 12px;
    font-weight: 700;
    font-size: 44px;
}

.intro-text {
    margin-bottom: 32px;
    font-size: 18px;
}

.intro-btn {}

.intro-images {
    position: relative;
    background-image: url(../images/intro/intro-bg.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    background-position: center;

    max-width: 100%;
    overflow: hidden;
}

.intro-images img {
    /* width: 100%; */
    display: block;
    margin: 0 auto;
}

.brand-logo {
    max-width: 140px;
    position: absolute;
    z-index: 2;
    left: 50px;
    bottom: 30px;
}

.ponsse-logo {
    max-width: 140px;
    margin-top: 20px;
}

/* Top categories */
.top-categories {
    padding: 30px 0;
}

.top-categories-row {
    display: grid;
    justify-content: center;
    grid-template-columns: repeat(3, minmax(auto, 520px));
    gap: 20px;
}

.full-img-card {
    position: relative;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    height: 250px;
    transition: var(--def-transition);
}

.full-img-card::before {
    content: '';
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, .6));
    transition: var(--def-transition);
}

.full-img-card:hover::before {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, .2));
}

.full-img-card-content {
    position: absolute;
    z-index: 2;
    display: flex;
    bottom: 0;
    justify-content: space-between;
    width: 100%;
    padding: 30px;
}

.full-img-card-title {
    margin-bottom: 16px;
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
}

.full-img-card-text {
    max-width: 243px;
    font-size: 12px;
    color: rgba(255, 255, 255, .8);
}

.full-img-card-btn {
    align-self: flex-end;
    background-color: transparent;
    border-color: var(--white);
}

/* Сatalog */
.catalog-section {
    padding: 50px 0 100px;
}

.tabs-nav {
    display: flex;
    /* margin-bottom: 30px; */
}

.tab-btn {
    font-size: 16px;
    cursor: pointer;
    padding: 12px 24px;
	color: var(--dark);
    border: 1px solid var(--btn-border);
    transition: all 0.3s ease-in-out;
}

.tab-btn:hover {
    background-color: var(--brand);
}

.tab-text {
    /* all: unset; */
    position: relative;
    padding: 18px 0;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    white-space: nowrap;
}

.tab-text:not(:last-child) {
    margin-right: 32px;
}

.tab-text.active::before,
.tab-text:hover::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--brand);
}

.tab-btn:not(:last-child) {
    border-right: none;
}

.tab-btn.active {
    background-color: var(--brand);
    /* font-weight: 700; */
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.splide__slide {
    /* background: #f0f0f0;
    padding: 60px 0;
    text-align: center;
    font-weight: bold;
    font-size: 20px; */
}

.catalog-section .splide__slide img {
    transition: var(--def-transition);
}

.catalog-section .splide__slide:hover img {
    transform: scale(1.05);
}

.view-all-btn {
    display: flex;
    width: 220px;
    margin: 30px auto 0;
}


.product-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.product-item-thumb {}

.product-item-name {
    margin-bottom: 12px;
    font-size: 20px;
    font-weight: 700;
    text-align: center;
	color: var(--dark);
}

.product-item-desc {
    font-size: 14px;
    color: var(--dark-50);
}

.splide__arrow {
    -ms-flex-align: center;
    align-items: center;
    background: transparent;
    border: 0;
    border-radius: 0;
    cursor: pointer;
    display: -ms-flexbox;
    display: flex;
    height: 39px;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 0;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 19px;
    z-index: 1;
}

.splide__arrow--prev {
    left: -60px;
}

.splide__arrow svg {
    width: 19px;
    transition: fill .2s linear;
}

.splide__arrow--next {
    right: -60px;
}

.about-us {}

.about-us-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.about-us-content {
    max-width: 630px;
}

.about-us .section-title,
.about-us-text {
    margin-bottom: 50px;
}


/* Contact */
.contact .section-title {
    text-transform: uppercase;
    margin-bottom: 17px;
}

.contact-row {
    position: relative;
    display: flex;
    gap: 60px;
    justify-content: space-between;
    padding: 50px 100px 50px 0;
    background-color: var(--white);
    box-shadow: 0 0 17px 0 rgba(0, 0, 0, 0.06);
}

.contact-row>* {
    flex: 1 1;
}

.contact-image {}

.contact-image img {
    position: absolute;
    bottom: 0;
    left: -275px;
}

.contact-info {
    width: 550px;
}

.contact-text {
    font-size: 18px;
    color: var(--grey-3);
    margin-bottom: 17px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 17px;
}

.contact-form-row {
    display: flex;
    align-items: center;
    gap: 12px;
}

.contact-form input {
    width: 100%;
}

.contact-message {
    width: 100%;
}

.btn-submit {
    width: max-content;
}


/* last-news */
.last-news {}

.last-news .splide__slide {
    /* padding: 3px; */
}

.last-news-row {}

.view-all-btn {}

.last-news-list {
    /* display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px; */
}

.news-item {
    display: block;
    background-color: var(--grey);
    transition: var(--def-transition);
}

.news-item:hover {
    /* box-shadow: 0 0 2px 2px #e3e3e3; */
    background-color: var(--brand);
}

.news-item-thumb img {
    width: 100%;
    height: 100%;
    max-height: 176px;
    object-fit: cover;
}

.news-item-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding: 30px 15px;
}

.news-item-date {
    font-size: 14px;
    color: var(--grey-3);
}

.news-item-title {
    font-weight: 700;
    font-size: 18px;
}

.news-item-more {
    font-size: 16px;
}

.last-news-nav {
    display: flex;
    align-items: center;
    gap: 12px;
}

.custom-slider-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: transparent;
    border: 1px solid var(--btn-border);
    cursor: pointer;
    transition: var(--def-transition);
}

.custom-slider-btn:hover {
    background-color: var(--brand);
    border-color: var(--brand);
}

.custom-slider-btn:hover path {
    stroke: var(--white);
}

/* Footer */
.footer {
    padding: 50px 0;
    color: var(--grey-2);
    background-color: var(--dark);
}

.footer-brand-desc {
    font-size: 16px;
    line-height: 120%;
    color: var(--grey-2);
}

.footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.footer-column {
    flex: 1 1 auto;
}

.footer-logo {
    display: flex;
    width: 150px;
    margin-bottom: 10px;
}

.footer-label {
    font-weight: 700;
    font-size: 16px;
    line-height: 100%;
    text-transform: uppercase;
    font-weight: bold;
    margin-bottom: 25px;
    color: var(--white);
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li,
.menu-column a {
    font-size: 16px;
    line-height: 100%;
}

.footer-column ul li:not(:last-child) {
    margin-bottom: 20px;
}

.footer-column ul li a:hover {
    text-decoration: underline;
}

.menu-column a {
    color: var(--gray-2);
}

.contact-column li {
    display: flex;
    align-items: center;
    gap: 8px;
}

.contact-column li,
.contact-column a {
    font-size: 15px;
    font-weight: 700;
    line-height: 133%;
    color: var(--grey);
}

.footer-bottom {
    margin-top: 40px;
}

.footer-links {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
    font-size: 14px;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    line-height: 100%;
}

.footer-links a:hover {
    text-decoration: underline;
}

.footer-links a:last-child {
    /* margin-left: auto; */
}

.footer-meta {
    /* display: flex;
    font-size: 13px; */
    /* margin-bottom: 10px; */
}

.cookie-note {
    font-size: 12px;
    color: var(--grey-2);
    line-height: 1.4;
}

.footer-cpr {
    margin-top: 30px;
    font-size: 14px;
    line-height: 120%;
    color: var(--grey-2);
}


/* Archives */

.main {
    padding: 70px 0;
}

.breadcrumb_last {
    text-decoration: underline;
    text-underline-offset: 3px;

}

.page-header {
    padding: 52.5px 0;
    background-color: var(--grey);
}

.archive-row {
    display: flex;
    gap: 40px;
}


.archive-items {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    align-items: start;
    flex: 1 0;
}

.product-type {
    background-color: var(--grey);
    padding: 30px;
}

.product-type:hover {
    /* background-color: v; */
    transition: all 0.3s ease;
    box-shadow: 0 0 2px 2px #e3e3e3;
}

.product-type-row {}

.product-type-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.product-type-number {
    font-size: 12px;
    font-weight: 700;
    color: var(--grey-2);
}



.product-type-mid {}

.product-type-bot {}

.product-type-title {
    margin-bottom: 12px;
    font-size: 22px;
    font-weight: 700;
    color: var(--black);
}

.product-type-text {
    font-size: 14px;
    color: var(--grey-3);
}

/* Cat page */

.product-card {
    background-color: var(--grey);
    padding: 30px;
	height: 100%;
}

.product-card-row {}

.product-card-image {
    display: flex;
    justify-content: center;
}

.product-card-details {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    /* flex-wrap: wrap; */
    gap: 6px;
}

.product-card-detail {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.product-card-detail-name {
    font-size: 12px;
    text-align: center;
    color: var(--grey-3);
}

.product-card-detail-value {
    font-weight: 700;
    font-size: 14px;
    color: var(--dark);
    border: 1px solid var(--btn-border);
    border-radius: 2px;
    padding: 6px 15px 3px 15px;
    background: var(--white);
    line-height: 1;
    text-align: center;
}

.product-card-info {
    margin-top: 25px;
}

.product-card-title {
    margin-bottom: 20px;
    font-size: 22px;
    font-weight: 700;
    color: var(--black);
}

.product-card-text {
    margin-bottom: 30px;
    font-size: 16px;
    color: var(--grey-3);
}

.product-card-more {}



/* Widget */
.widget-area {
    width: 330px;
    flex: 0 0 auto;
}

.widget {
    margin-bottom: 40px;
}

.widget-title {
    width: 100%;
    padding: 12px 15px;
    margin-bottom: 16px;
    font-size: 18px;
    font-weight: 700;
    color: var(--black);
    background-color: var(--grey);
}

.product-cat-list {
    margin: 0 0 0 15px;
}

.cat-item {
    list-style: none;
}

.cat-item a {
    font-size: 16px;
    color: var(--black);
}

.cat-item a:hover {
    text-decoration: underline;
}

.callus {
    display: flex;
    gap: 14px;
    align-items: center;
    padding: 20px 15px;
    border: 1px solid #f0f0f0;
}

.callus img {
    width: 30px;
    height: 30px;
}

.callus-info-manager {
    /* margin-bottom: 4px; */
    display: flex;
    font-size: 14px;
    color: var(--black);
}

.callus-info-phone {
    font-size: 20px;
    font-weight: 700;
    color: var(--black);
}


/* Single product */

.product-info {
    /* padding: 40px 20px;
    background-color: #fefefe;
    border-bottom: 1px solid #ddd; */
}

.product-info-row {
    display: grid;
    align-items: center;
    gap: 40px;
    grid-template-columns: auto 500px;
}

.product-info-cat-link:hover {
    text-decoration: underline;
}

.product-info-img {
    position: relative;
    background-image: url(../images/bg/product-bg.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    max-width: 100%;
    overflow: hidden;
    text-align: right;
}

.product-info-img .wp-post-image {
    max-width: 773px;
    /* width: 100%; */
}

.product-info-content {}

.product-info-cat {
    margin-bottom: 12px;
}

.product-info-title {
    margin-bottom: 30px;
    font-size: 34px;
    font-weight: 700;
}

.product-info-text {
    margin-bottom: 30px;
    font-size: 16px;
    color: var(--grey-3);
}

.product-info-btn {}

.product-details {
    padding: 20px 0 70px;
}

.product-details-title {
    margin-bottom: 30px;
}

.product-details-tabs {
    margin: 0 0 70px 0;
    border-bottom: 1px solid var(--grey-2);
}

.specs-content {
    display: grid;
    grid-template-columns: 500px 500px;
    gap: 50px;
    /* justify-content: center; */
    justify-content: space-between;
}

.specs-table {
    /* flex: 1; */
    width: 100%;
    min-width: 280px;
}

.specs-group {
    margin-bottom: 30px;
}

.specs-group-name {
    margin-bottom: 20px;
    font-size: 20px;
    font-weight: 700;
    color: var(--black);
    /* border-left: 4px solid var(--brand); */
    /* padding-left: 10px; */
}

.specs-table ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.specs-table li {
    display: flex;
    justify-content: space-between;
    font-size: 16px;
    color: var(--grey-3);
    padding: 2px 0;
    /* border-bottom: 1px dotted #ccc; */
}

.specs-table li span {
/*     font-style: italic; */
    font-weight: 600;
    color: var(--dark);
    width: 150px;
}

.gallery-images {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 20px;
}

.gallery-item {
    width: 180px;
    height: 180px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contacts-page .contact-row {
    padding: 50px 30px;
}

.contact-form {
    /* border-right: 1px solid var(--grey-2); */
}

.contact-information-text {
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: bold;
}

.contact-information-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-information .ct-row {
    font-weight: 400;
}


.entry-content h2,
.entry-content h3,
.entry-content h4 {
    margin-bottom: 25px;
}

.entry-content ol,
.entry-content ul {
    margin: 25px 0;
}

@media screen and (max-width: 1200px) {

    /* General */
    .container {
        --width: 100%;
        --offset: 15px;
    }

    /* Header */
    .header-nav {
        display: none;
    }

    .header-cta .phone-number {
        display: none;
    }

    .header-row {
        justify-content: flex-start;
    }

    .header-cta {
        margin-left: auto;
        gap: 10px;
    }

    .header-burger {
        display: flex;
    }

    /* Top cat */
    .top-categories-row {
        gap: 12px;
    }

    /* About us */
    .about-us-row {
        gap: 30px;
    }

    .about-us-content {
        max-width: 480px;
    }

    /* Contact */
    .contact-row {
        padding: 30px;
    }

    .contact-image {
        display: none;
    }

    /*  */
    .archive-row {
        flex-direction: column;
    }

    .widget-area {
        width: 100%;
    }

    .product-info-img .wp-post-image {
        max-width: 100%;
    }
}

@media screen and (max-width: 767px) {
    .mobile-scrolling {
        display: flex !important;
        overflow-x: scroll;
        flex-wrap: nowrap;
        -ms-overflow-style: none;
        scrollbar-width: none;
    }

    .header-btn {
        display: none;
    }

    .section {
        padding: 30px 0;
    }

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

    .intro {
        padding: 30px 0 0 0;
    }

    .intro-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .intro-title {
        font-size: 30px;
    }

    .intro .brand-logo {
        max-width: 90px;
        left: 0;
        bottom: 0;
    }

    /* Top cat */
    .top-categories-row {
        grid-template-columns: 1fr;
    }

    .catalog-section {
        padding: 20px 0 50px;
    }

    .catalog-section .section-heading {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .catalog-section .tabs-nav {
        flex-direction: column;
        width: 100%;
    }

    .tab-btn {
        text-align: center;
    }

    .tab-btn:not(:last-child) {
        border-right: 1px solid var(--btn-border);
        border-bottom: 0;
    }

    .splide__arrows {
        display: none;
    }

    /* About us */
    .about-us-row {
        flex-direction: column;
    }

    .about-us-content {
        max-width: 100%;
    }

    .about-us .section-title,
    .about-us-text {
        margin-bottom: 30px;
    }

    .last-news-list {
        grid-template-columns: repeat(1, 1fr);
    }

    /* Contact */
    .contact-row {
        padding: 30px 15px;
    }

    .contact-form-row {
        flex-direction: column;
        align-items: flex-start;
    }



    /* footer */

    .footer-top {
        flex-direction: column;
        gap: 30px;
    }

    .footer-links {
        flex-direction: column;
        gap: 16px;
    }

    .archive-items {
        grid-template-columns: 1fr;
    }
	
	.product-card {
		height: auto
	}

    .product-type,
    .product-card {
        padding: 30px 15px;
    }

    /* Single */
    .product-info-row {
        grid-template-columns: 1fr;
    }

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

    .gallery-images {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    }

    .gallery-item {
        width: 120px;
        height: 120px;
    }

    .product-info .brand-logo {
        max-width: 90px;
        left: 0;
        bottom: 020px
    }

    .contacts-content .contact-row {
        flex-direction: column;
    }
}


.term-spareparts .archive-items {
	display: inline-flex;
    flex-direction: column;
}
.term-spareparts .archive-items .product-card-row {
    display: flex;
    align-items: center;
	width: 100%;
    gap: 30px;
}
.term-spareparts .product-card {
	height: auto;
	width: 100%;
}
.term-spareparts .product-card-details {
	max-width: 280px
}
.term-spareparts .product-card-detail {
	gap: 4px
}
.term-spareparts .product-card-group {
	display: inline-flex;
    flex-direction: column;
    width: 100%;
}
.term-spareparts .product-card-image {
    display: flex;
    justify-content: center;
    max-width: 250px;
}
.term-spareparts .product-card-title {
	font-size: 20px
}
.term-spareparts .product-card-text {
	font-size: 15px
}


.header {
  width: 100%;
  position: relative;
  transition: all 0.3s ease;
  transform: translateY(0);
  opacity: 1;
	background: #fff
}

.header-fixed {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  width: 100%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  /* Анимация появления сверху */
  transform: translateY(-100%);
  opacity: 0;
/*   animation: slideDown 0.3s ease forwards; */
}

/* при показе */
.header-fixed {
  animation: slideDown 0.3s ease forwards;
}

/* при скрытии */
.header-fixed.header-hide {
  animation: slideUp 0.3s ease forwards;
}

/* появление сверху */
@keyframes slideDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* исчезновение вверх */
@keyframes slideUp {
  from {
    transform: translateY(0);
    opacity: 1;
  }
  to {
    transform: translateY(-100%);
    opacity: 0;
  }
}

/* Клон хедера для удержания пространства */
.header-clone {
  visibility: hidden;
}

@media (max-width: 767px) {
	.page-header {
		padding: 36px 0
	}
	.product-info-text {
		font-size: 14px
	}
	.product-info-title {
		margin-bottom: 20px;
		font-size: 28px;
	}
	.specs-content {
		gap: 20px
	}
	.specs-table ul {
		display: flex;
	    flex-direction: column;
    	gap: 3px;
	}
	.specs-table li {
		flex-direction: column;
		gap: 3px;
	}
	.specs-table li span {
		width: 100%
	}
	.product-details {
		padding-bottom: 0
	}
	.term-spareparts .archive-items .product-card-row {
		display: flex;
    	flex-direction: column;
	}
	.term-spareparts .product-card-title {
		font-size: 16px
	}
	.term-spareparts .product-card-text {
		font-size: 14px
	}
	.contact-info .section-title {
		font-size: 25px
	}
}