

.hamburger .line{
    width: 30px;
    height: 3px;
    background-color: #000000;
    display: block;
    margin: 5px auto;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }
  
  .hamburger:hover{
    cursor: pointer;
  }

#hamburger-1 {
    display: none;
    padding: 0;
    border: 0;
    background: transparent;
    appearance: none;
}
  
  /* ONE */
  
  #hamburger-1.is-active .line:nth-child(2){
    opacity: 0;
  }
  
  #hamburger-1.is-active .line:nth-child(1){
    -webkit-transform: translateY(9px) rotate(45deg);
    -ms-transform: translateY(9px) rotate(45deg);
    -o-transform: translateY(9px) rotate(45deg);
    transform: translateY(9px) rotate(45deg);
  }
  
  #hamburger-1.is-active .line:nth-child(3){
    -webkit-transform: translateY(-8px) rotate(-45deg);
    -ms-transform: translateY(-8px) rotate(-45deg);
    -o-transform: translateY(-8px) rotate(-45deg);
    transform: translateY(-8px) rotate(-45deg);
  }

.admin-bar .header {
    top: 32px;
}

.admin-bar .header-nomain.header {
    top: 0;
}

.container-page {
    max-width: 1310px;
    margin: 0 auto;
    padding: 0 15px;
}

.container-fluid {
    width: 100%;
    padding: 0;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 2;
}

.logo a {
    font-weight: 500;
    font-size: 24px;
    line-height: 117%;
    letter-spacing: -0.05em;
    text-transform: uppercase;
    color: #25262b;
}

.wow {
    visibility: hidden;
}

.header__wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    background-color: color(srgb 0.9247 0.9288 0.9467);
}

.header__right {
    display: flex;
    justify-content: center;
    align-items: center;
}

.socwrap ul {
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
}

.socwrap ul li {
    list-style-type: none;
    margin-right: 15px;
}

.socwrap ul li a {}

.phonewr a {
    font-weight: 400;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0.01em;
    color: #1c1d1e;
}

.header__callback {
    margin-left: 20px;
}

.header__callback .btn {
    padding: 8px 16px;
    font-size: 14px;
}

.itemcatalog__actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.itemcatalog__actions .btn {
    flex: 1;
    min-width: 120px;
    text-align: center;
    margin-top: 24px;
}

.menuhead li {
    list-style-type: none;
    margin-right: 20px;
    position: relative;
}

.menuhead li:last-child {
    margin-right: 0;
}

.menuhead ul {
    display: flex;
    align-items: center;
    justify-content: center;
}

.menuhead a {
    font-weight: 400;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0.01em;
    color: #1c1d1e;
    transition: all 0.3s ease;
    display: block;
    padding: 5px 0;
}

.menuhead a:hover {
    opacity: 0.7;
}

/* Выпадающее меню */
.menuhead .menu-item-has-children {
    position: relative;
}

.menuhead .menu-item-has-children > a {
    position: relative;
    padding-right: 15px;
}

.menuhead .menu-item-has-children > a::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 5px solid #1c1d1e;
    transition: transform 0.3s ease;
}

.menuhead .menu-item-has-children:hover > a::after {
    transform: translateY(-50%) rotate(180deg);
}

.menuhead .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 200px;
    background: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 10px 0;
    margin-top: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

.menuhead .menu-item-has-children:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.menuhead .sub-menu li {
    margin-right: 0;
    margin-bottom: 0;
    width: 100%;
}

.menuhead .sub-menu li:last-child {
    margin-bottom: 0;
}

.menuhead .sub-menu a {
    padding: 10px 20px;
    font-size: 14px;
    white-space: nowrap;
}

.menuhead .sub-menu a:hover {
    background-color: #f5f5f5;
    opacity: 1;
}

/* Вложенные подменю (если есть) */
.menuhead .sub-menu .menu-item-has-children > a::after {
    right: 20px;
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
    border-left: 5px solid #1c1d1e;
    border-right: none;
    top: 50%;
    transform: translateY(-50%);
}

.menuhead .sub-menu .sub-menu {
    top: 0;
    left: 100%;
    margin-left: 10px;
    margin-top: 0;
}

/* Мобильная версия выпадающего меню */
@media (max-width: 768px) {
    .menuhead .menu-item-has-children > .sub-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border-radius: 0;
        margin-top: 0;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }
    
    .menuhead .menu-item-has-children.menu-open > .sub-menu {
        max-height: 500px;
        padding: 10px 0;
    }
    
    .menuhead .sub-menu a {
        padding: 8px 15px;
    }
}

.itemcatalog__title {
    transition: all 0.3s ease;
}

.itemcatalog__title:hover {
    opacity: 0.7;
}

.header__soc {
    margin-right: 35px;
}

.cataloghome__item.itemcatalog.itemcatalog__bgfon {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background-color: #fff6fe;
}

.btn {
    white-space: nowrap;
}

.cataloghome__item.itemcatalog.itemcatalog__bgfon .btn.btn-orange.btn-catalog {
    border: 2px solid #000000;
    transition: all 0.3s ease;
}

.cataloghome__item.itemcatalog.itemcatalog__bgfon .btn.btn-orange.btn-catalog:hover {
    border: 2px solid #e0e0e0;
    opacity: 0.7;
}

.itemcatalog__bottom li {
    font-weight: 400;
    font-size: 14px;
    line-height: 143%;
    color: #000000;
}

.socwrap ul li a svg {
    display: flex;
    align-items: center;
    height: 10px;
    width: auto;
    max-width: 14px;
}

.titlebl {
    padding: 85px 44px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    min-height: 70vh;
    overflow: hidden;
    z-index: 1;
}

.titlebl__background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.titlebl__gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: 400% 400%;
    animation: gradientShift 25s ease infinite;
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.titlebl__airflow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.titlebl__stream {
    position: absolute;
    width: 3px;
    height: 100%;
    background: linear-gradient(to bottom, 
        transparent 0%, 
        rgba(0, 0, 0, 0.08) 20%, 
        rgba(0, 0, 0, 0.12) 50%, 
        rgba(0, 0, 0, 0.08) 80%, 
        transparent 100%);
    animation: airStream 15s linear infinite;
    opacity: 0.7;
}

.titlebl__stream::before {
    content: '';
    position: absolute;
    top: 0;
    left: -1px;
    width: 5px;
    height: 30%;
    background: linear-gradient(to bottom, 
        transparent 0%, 
        rgba(0, 0, 0, 0.15) 50%, 
        transparent 100%);
    animation: airPulse 3s ease-in-out infinite;
}

.titlebl__stream--1 {
    left: 15%;
    animation-duration: 12s;
    animation-delay: 0s;
    background: linear-gradient(to bottom, 
        transparent 0%, 
        rgba(100, 181, 246, 0.2) 20%, 
        rgba(100, 181, 246, 0.35) 50%, 
        rgba(100, 181, 246, 0.2) 80%, 
        transparent 100%);
}

.titlebl__stream--1::before {
    background: linear-gradient(to bottom, 
        transparent 0%, 
        rgba(100, 181, 246, 0.45) 50%, 
        transparent 100%);
}

.titlebl__stream--2 {
    left: 35%;
    animation-duration: 14s;
    animation-delay: -2s;
}

.titlebl__stream--3 {
    left: 55%;
    animation-duration: 13s;
    animation-delay: -4s;
    background: linear-gradient(to bottom, 
        transparent 0%, 
        rgba(100, 181, 246, 0.2) 20%, 
        rgba(100, 181, 246, 0.35) 50%, 
        rgba(100, 181, 246, 0.2) 80%, 
        transparent 100%);
}

.titlebl__stream--3::before {
    background: linear-gradient(to bottom, 
        transparent 0%, 
        rgba(100, 181, 246, 0.45) 50%, 
        transparent 100%);
}

.titlebl__stream--4 {
    left: 75%;
    animation-duration: 15s;
    animation-delay: -6s;
}

.titlebl__stream--5 {
    left: 90%;
    animation-duration: 16s;
    animation-delay: -8s;
    background: linear-gradient(to bottom, 
        transparent 0%, 
        rgba(100, 181, 246, 0.2) 20%, 
        rgba(100, 181, 246, 0.35) 50%, 
        rgba(100, 181, 246, 0.2) 80%, 
        transparent 100%);
}

.titlebl__stream--5::before {
    background: linear-gradient(to bottom, 
        transparent 0%, 
        rgba(100, 181, 246, 0.45) 50%, 
        transparent 100%);
}

@keyframes airStream {
    0% {
        transform: translateY(-100%) scaleY(1);
        opacity: 0;
    }
    10% {
        opacity: 0.8;
    }
    90% {
        opacity: 0.8;
    }
    100% {
        transform: translateY(100vh) scaleY(1.2);
        opacity: 0;
    }
}

@keyframes airPulse {
    0%, 100% {
        opacity: 0.5;
        transform: scaleY(1);
    }
    50% {
        opacity: 0.9;
        transform: scaleY(1.5);
    }
}

.titlebl__air-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.titlebl__air-dot {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(0, 0, 0, 0.25);
    border-radius: 50%;
    animation: airFlow 20s linear infinite;
}

.titlebl__air-dot:nth-child(1) {
    left: 10%;
    animation-duration: 18s;
    animation-delay: 0s;
    background: rgba(100, 181, 246, 0.4);
    width: 5px;
    height: 5px;
}

.titlebl__air-dot:nth-child(2) {
    left: 25%;
    animation-duration: 22s;
    animation-delay: -2s;
}

.titlebl__air-dot:nth-child(3) {
    left: 40%;
    animation-duration: 20s;
    animation-delay: -4s;
    background: rgba(100, 181, 246, 0.4);
    width: 5px;
    height: 5px;
}

.titlebl__air-dot:nth-child(4) {
    left: 55%;
    animation-duration: 19s;
    animation-delay: -6s;
}

.titlebl__air-dot:nth-child(5) {
    left: 70%;
    animation-duration: 21s;
    animation-delay: -8s;
    background: rgba(100, 181, 246, 0.4);
    width: 5px;
    height: 5px;
}

.titlebl__air-dot:nth-child(6) {
    left: 85%;
    animation-duration: 23s;
    animation-delay: -10s;
}

.titlebl__air-dot:nth-child(7) {
    left: 20%;
    animation-duration: 17s;
    animation-delay: -12s;
    background: rgba(100, 181, 246, 0.4);
    width: 5px;
    height: 5px;
}

.titlebl__air-dot:nth-child(8) {
    left: 45%;
    animation-duration: 24s;
    animation-delay: -14s;
}

.titlebl__air-dot:nth-child(9) {
    left: 65%;
    animation-duration: 18s;
    animation-delay: -16s;
    background: rgba(100, 181, 246, 0.4);
    width: 5px;
    height: 5px;
}

.titlebl__air-dot:nth-child(10) {
    left: 80%;
    animation-duration: 22s;
    animation-delay: -18s;
}

@keyframes airFlow {
    0% {
        transform: translateY(100vh) translateX(0);
        opacity: 0;
    }
    10% {
        opacity: 0.4;
    }
    50% {
        transform: translateY(50vh) translateX(20px);
        opacity: 0.5;
    }
    90% {
        opacity: 0.4;
    }
    100% {
        transform: translateY(-10vh) translateX(40px);
        opacity: 0;
    }
}

.titlebl__wrapper {
    position: relative;
    z-index: 2;
}

.titlebl__title {
    max-width: 568px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 3;
}

.titlebl__title h1 {
    font-weight: 500;
    font-size: 60px;
    line-height: 100%;
    letter-spacing: -0.03em;
    text-align: center;
    color: #25262b;
    margin-bottom: 0;
    position: relative;
    z-index: 4;
}

.titlebl__title p {
    margin-top: 16px;
    font-weight: 400;
    font-size: 16px;
    text-align: center;
    color: #25262b;
    margin-bottom: 0;
    position: relative;
    z-index: 4;
}

.imageshome {
    position: relative;
    z-index: 1;
    width: 100%;
    margin-top: 0;
}

.imageshome img {
    width: 100%;
}

.ptb80 {
    padding-top: 80px;
    padding-bottom: 80px;
}

.cataloghome__title {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 454px;
    margin: 0 auto;
    flex-direction: column;
}

.cataloghome__title.cataloghome__title-page {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;
    margin: 0;
    max-width: 100%;
}

.cataloghome__title h2 {
    font-weight: 500;
    font-size: 44px;
    line-height: 109%;
    letter-spacing: -0.04em;
    text-align: center;
    color: #25262b;
    margin-bottom: 0;
}

.cataloghome__title h1 {
    font-weight: 500;
    font-size: 44px;
    line-height: 109%;
    letter-spacing: -0.04em;
    color: #25262b;
    margin-bottom: 0;
}

.cataloghome__title p {
    margin-bottom: 0;
    margin-top: 16px;
    font-weight: 400;
    font-size: 16px;
    text-align: center;
    color: #25262b;
}


.cataloghome__item {
    display: flex;
    flex-direction: column;
    position: relative;
}

.cataloghome__catalog {
    display: flex;
    flex-wrap: wrap;
    border-top: 0.5px solid #dedede;
    border-bottom: 0.5px solid #dedede;
    background-color: #ffffff;
}

.cataloghome__catalog .cataloghome__item {
    border: 0.5px solid #dedede;
    padding: 32px;
    width: 33.33%;
}

.cataloghome__catalog .cataloghome__item:nth-child(4) {
    width: 50%;
}

.cataloghome__catalog .cataloghome__item:nth-child(5) {
    width: 50%;
}

.itemcatalog__top {
    display: flex;
    justify-content: space-between;
}

.itemcatalog__title {
    margin-bottom: 24px;
    display: block;
}

.itemcatalog__title span {
    font-weight: 500;
    font-size: 20px;
    line-height: 120%;
    letter-spacing: -0.04em;
    color: #000;
}

.wrboxsale {
    display: flex;
}

.wrboxsale__item {
    margin-right: 2px;
    width: 40px;
    height: 40px;
    display: flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    font-weight: 400;
    font-size: 10px;
    line-height: 160%;
    letter-spacing: -0.04em;
    border-radius: 100%;
}

.new {
    background: #000;
    color: #ffffff;
}

.hit {
    background: #fff5b5;
    color: #000;
}

.itemcatalog__middle {
    width: 100%;
    height: 285px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.itemcatalog__middle a {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.itemcatalog__middle picture {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.itemcatalog__middle picture img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.itemcatalog__bottom ul {
    display: flex;
    flex-direction: column;
    margin: 0;
    padding: 0;
}

.itemcatalog__bottom ul li {
    list-style-type: none;
    margin-bottom: 12px;
    display: flex;
    justify-content: space-between;
}

.itemcatalog__bottom ul li span {
    font-weight: 400;
    font-size: 14px;
    line-height: 143%;
    color: #656565;
}

.itemcatalog__bottom ul li:last-child {
    margin-bottom: 0;
}

.itemcatalog__price {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.itemcatalog__price-normal {
    font-weight: 500;
    font-size: 20px;
    line-height: 120%;
    letter-spacing: -0.04em;
    color: #000;
    white-space: nowrap;
}

.itemcatalog__price-sale {
    font-weight: 400;
    font-size: 14px;
    line-height: 171%;
    letter-spacing: -0.04em;
    text-decoration: line-through;
    color: #656565;
}

.titleblock {
    display: flex;
    flex-direction: column;
}

.titleblock h2 {
    font-weight: 500;
    font-size: 44px;
    line-height: 109%;
    letter-spacing: -0.04em;
    color: #25262b;
    margin-bottom: 0;
}

.titleblock h1 {
    font-weight: 500;
    font-size: 44px;
    line-height: 109%;
    letter-spacing: -0.04em;
    color: #25262b;
    margin-bottom: 0;
}

.titleblock p {
    font-weight: 400;
    font-size: 16px;
    color: #25262b;
    margin-bottom: 0;
    margin-top: 16px;
}

.questions__title {
    width: 50%;
    margin-left: 50%;
}

.questions {
    padding: 80px 0;
}

.questions__wrapper {
    margin: 0 auto;
    width: 100%;
}

.questions__item {
    transition: all 0.3s ease;
    overflow: hidden;
    width: 100%;
}

.questions__item:last-child {
    margin-bottom: 0;
}

.accordion-item {
    cursor: pointer;
    border-bottom: 1px solid #E0E2E9;
    border-top: 1px solid #E0E2E9;
    position: relative;
}

.accordion-item.active {}

.accordion-item:not(.active) {
    opacity: 0.7;
}

.accordion-item:not(.active):hover {
    opacity: 1;
    border-color: #000000;
}

.questions__col:first-child {
    position: relative;
}

.questions__col-text {
    font-weight: 600;
    font-size: 20rem;
    color: #E0E2E9;
    line-height: 13rem;
    position: absolute;
    top: -10px;
}


.questions__item__header {
    padding: 30px 0;
    display: flex;
    align-items: center;
}

.questions__item__title {
    flex: 1;
}

.questions__item__title span {
    font-weight: 500;
    font-size: 20px;
    line-height: 1.3;
    color: #25262b;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 30px;
    opacity: 0;
    pointer-events: none;
}

.accordion-item.active .accordion-content {
    max-height: 500px;
    padding: 0 0 30px;
    opacity: 1;
    pointer-events: auto;
}

.accordion-arrow {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
    color: #ff6b35;
}

.accordion-item.active .accordion-arrow {
    transform: rotate(180deg);
}

.quiz-variables {
    list-style: none;
    margin: 0;
    padding: 0;
    width: 50%;
    margin-left: auto;
}

.quiz-variables li {
    margin-bottom: 15px;
}

.quiz-variables li:last-child {
    margin-bottom: 0;
}

.quiz-variable {
    display: block;
    cursor: pointer;
    transition: all 0.3s ease;
}

.quiz-variable input[type="radio"] {
    display: none;
}

.bloghomeitem {
    transition: all 0.3s ease;
}

.bloghomeitem:hover {
    background-color: #fff6fe;
}

.bloghomeitem:hover .bloghomeitem__top-title {
    opacity: 0.7;
}

.bloghomeitem__link {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.quiz-variable .item {
    padding: 15px 20px;
    padding-left: 50px;
    border: 2px solid #e0e0e0;
    border-radius: 0;
    background: #fff;
    transition: all 0.3s ease;
    position: relative;
}

.quiz-variable .item::before {
    content: '';
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    border: 2px solid #d0d0d0;
    border-radius: 50%;
    background: #fff;
    transition: all 0.3s ease;
}

.quiz-variable .item::after {
    content: '';
    position: absolute;
    left: 24px;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: transparent;
    transition: all 0.3s ease;
}

.quiz-variable .item .title {
    font-weight: 400;
    font-size: 16px;
    color: #25262b;
}

.quiz-variable:hover .item {
    border-color: #000000;
    background: #ffffff;
}

.quiz-variable:hover .item::before {
    border-color: #000000;
}

.quiz-variable input[type="radio"]:checked+.item {
    border-color: #000000;
    background: #000000;
}

.quiz-variable input[type="radio"]:checked+.item::before {
    border-color: #fff;
    background: transparent;
}

.quiz-variable input[type="radio"]:checked+.item::after {
    background: #fff;
}

.quiz-variable input[type="radio"]:checked+.item .title {
    color: #fff;
    font-weight: 500;
}

.quiz-final-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 50%;
    margin-left: auto;
    position: relative;
    z-index: 2;
}

.quiz-final-form .input {
    flex: 1;
    min-width: 250px;
}

.quiz-final-form .form-group--checkbox {
    width: 100%;
}

.quiz-final-form .form-group--checkbox .checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-size: 14px;
    line-height: 1.5;
    color: #000;
}

.quiz-final-form .form-group--checkbox .checkbox-label input[type="checkbox"] {
    margin-top: 2px;
    width: 18px;
    height: 18px;
    min-width: 18px;
    cursor: pointer;
    accent-color: #000;
    flex-shrink: 0;
}

.quiz-final-form .form-group--checkbox .checkbox-label span {
    flex: 1;
}

.quiz-final-form .form-group--checkbox .checkbox-label a {
    color: #000;
    text-decoration: underline;
    transition: opacity 0.3s ease;
}

.quiz-final-form .form-group--checkbox .checkbox-label a:hover {
    opacity: 0.7;
}

.quiz-final-form .form-input {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.quiz-final-form .form-input:focus {
    outline: none;
    border-color: #000000;
}

.btn {
    padding: 15px 30px;
    border: none;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-orange {
    background: #000000;
    color: #fff;
}

.btn-orange:hover {
    background: #000000;
    transform: translateY(-2px);
}

.questions__col {
    width: 50%;
    flex-shrink: 0;
}

.preim__wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    border: 0.5px solid #E0E2E9;
}

.preim__item {
    width: 50%;
    padding: 32px;
}

.preim__title {
    max-width: 50%;
    margin-left: auto;
    width: 100%;
    padding-right: 30px;
}

.preimitem {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 250px;
    border: 0.5px solid #E0E2E9;
}

.preimitem__title span {
    font-weight: 500;
    font-size: 20px;
    line-height: 120%;
    letter-spacing: -0.04em;
    color: #000;
}

.preimitem__txt p {
    font-weight: 400;
    font-size: 14px;
    line-height: 143%;
    color: #656565;
    margin-bottom: 0;
}

.portfolio img {
    width: 100%;
}

/* About Home Block */
.abouthome {
    background-color: #fff;
}

.abouthome__title {
    max-width: 1310px;
    margin: 0 auto 40px;
    padding: 0 15px;
}

.abouthome__wrapper {
    max-width: 1310px;
    margin: 0 auto;
    padding: 0 15px;
}

.abouthome__content {
    max-width: 100%;
    margin: 0 auto;
    padding: 40px;
    background-color: #fff;
    border: 0.5px solid #E0E2E9;
    text-align: center;
    background-color: #fff6fe;
}

.abouthome__content p {
    font-weight: 400;
    font-size: 16px;
    line-height: 160%;
    color: #656565;
    margin: 0 0 32px 0;
}

.abouthome__content .btn {
    margin-top: 0;
}

/* Reviews Home Block */
.reviewshome {
    background-color: #fff;
}

.reviewshome__wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    border: 0.5px solid #E0E2E9;
}

.reviewshome__item {
    border: 0.5px solid #E0E2E9;
    padding: 32px;
    background-color: #fff;
    display: flex;
    flex-direction: column;
}

.reviewitem__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 16px;
}

.reviewitem__info {
    flex: 1;
}

.reviewitem__name {
    font-weight: 500;
    font-size: 18px;
    line-height: 120%;
    letter-spacing: -0.04em;
    color: #000;
    margin-bottom: 8px;
}

.reviewitem__date {
    font-weight: 400;
    font-size: 14px;
    line-height: 143%;
    color: #656565;
}

.reviewitem__rating {
    display: flex;
    gap: 4px;
}

.reviewitem__rating .star {
    color: #FFD700;
    font-size: 20px;
    line-height: 1;
}

.reviewitem__text {
    margin-bottom: 16px;
    flex: 1;
}

.reviewitem__text p {
    font-weight: 400;
    font-size: 14px;
    line-height: 143%;
    color: #656565;
    margin: 0;
}

.reviewitem__photo {
    margin-top: auto;
}

.reviewitem__photo-link {
    display: block;
    overflow: hidden;
    border-radius: 4px;
    transition: transform 0.3s ease;
}

.reviewitem__photo-link:hover {
    transform: scale(1.05);
}

.reviewitem__photo-link img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

/* Reviews Page Block */
.page-reviews {
    padding: 100px 0 0;
}

.reviewspage {
    background-color: #fff;
}

/* Portfolio Page Block */
.page-portfolio {
    padding: 100px 0 0;
}


.reviewspage__wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border: 0.5px solid #E0E2E9;
}

.reviewspage__item {
    border: 0.5px solid #E0E2E9;
    padding: 32px;
    background-color: #fff;
    display: flex;
    flex-direction: column;
}

.contactformhome {
    position: relative;
    overflow: hidden;
}

.contactformhome__background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.contactformhome__gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #f8f8f8 0%, #e0e0e0 25%, #f5f5f5 50%, #e8e8e8 75%, #f0f0f0 100%);
    background-size: 400% 400%;
    animation: gradientShift 25s ease infinite;
}

.contactformhome__airflow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.contactformhome__stream {
    position: absolute;
    width: 3px;
    height: 100%;
    background: linear-gradient(to bottom, 
        transparent 0%, 
        rgba(0, 0, 0, 0.08) 20%, 
        rgba(0, 0, 0, 0.12) 50%, 
        rgba(0, 0, 0, 0.08) 80%, 
        transparent 100%);
    animation: airStream 15s linear infinite;
    opacity: 0.7;
}

.contactformhome__stream::before {
    content: '';
    position: absolute;
    top: 0;
    left: -1px;
    width: 5px;
    height: 30%;
    background: linear-gradient(to bottom, 
        transparent 0%, 
        rgba(0, 0, 0, 0.15) 50%, 
        transparent 100%);
    animation: airPulse 3s ease-in-out infinite;
}

.contactformhome__stream--1 {
    left: 15%;
    animation-duration: 12s;
    animation-delay: 0s;
    background: linear-gradient(to bottom, 
        transparent 0%, 
        rgba(100, 181, 246, 0.2) 20%, 
        rgba(100, 181, 246, 0.35) 50%, 
        rgba(100, 181, 246, 0.2) 80%, 
        transparent 100%);
}

.contactformhome__stream--1::before {
    background: linear-gradient(to bottom, 
        transparent 0%, 
        rgba(100, 181, 246, 0.45) 50%, 
        transparent 100%);
}

.contactformhome__stream--2 {
    left: 35%;
    animation-duration: 14s;
    animation-delay: -2s;
}

.contactformhome__stream--3 {
    left: 55%;
    animation-duration: 13s;
    animation-delay: -4s;
    background: linear-gradient(to bottom, 
        transparent 0%, 
        rgba(100, 181, 246, 0.2) 20%, 
        rgba(100, 181, 246, 0.35) 50%, 
        rgba(100, 181, 246, 0.2) 80%, 
        transparent 100%);
}

.contactformhome__stream--3::before {
    background: linear-gradient(to bottom, 
        transparent 0%, 
        rgba(100, 181, 246, 0.45) 50%, 
        transparent 100%);
}

.contactformhome__stream--4 {
    left: 75%;
    animation-duration: 15s;
    animation-delay: -6s;
}

.contactformhome__stream--5 {
    left: 90%;
    animation-duration: 16s;
    animation-delay: -8s;
    background: linear-gradient(to bottom, 
        transparent 0%, 
        rgba(100, 181, 246, 0.2) 20%, 
        rgba(100, 181, 246, 0.35) 50%, 
        rgba(100, 181, 246, 0.2) 80%, 
        transparent 100%);
}

.contactformhome__stream--5::before {
    background: linear-gradient(to bottom, 
        transparent 0%, 
        rgba(100, 181, 246, 0.45) 50%, 
        transparent 100%);
}

.contactformhome__air-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.contactformhome__air-dot {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(0, 0, 0, 0.25);
    border-radius: 50%;
    animation: airFlow 20s linear infinite;
}

.contactformhome__air-dot:nth-child(1) {
    left: 10%;
    animation-duration: 18s;
    animation-delay: 0s;
    background: rgba(100, 181, 246, 0.4);
    width: 5px;
    height: 5px;
}

.contactformhome__air-dot:nth-child(2) {
    left: 25%;
    animation-duration: 22s;
    animation-delay: -2s;
}

.contactformhome__air-dot:nth-child(3) {
    left: 40%;
    animation-duration: 20s;
    animation-delay: -4s;
    background: rgba(100, 181, 246, 0.4);
    width: 5px;
    height: 5px;
}

.contactformhome__air-dot:nth-child(4) {
    left: 55%;
    animation-duration: 19s;
    animation-delay: -6s;
}

.contactformhome__air-dot:nth-child(5) {
    left: 70%;
    animation-duration: 21s;
    animation-delay: -8s;
    background: rgba(100, 181, 246, 0.4);
    width: 5px;
    height: 5px;
}

.contactformhome__air-dot:nth-child(6) {
    left: 85%;
    animation-duration: 23s;
    animation-delay: -10s;
}

.contactformhome__air-dot:nth-child(7) {
    left: 20%;
    animation-duration: 17s;
    animation-delay: -12s;
    background: rgba(100, 181, 246, 0.4);
    width: 5px;
    height: 5px;
}

.contactformhome__air-dot:nth-child(8) {
    left: 45%;
    animation-duration: 24s;
    animation-delay: -14s;
}

.contactformhome__air-dot:nth-child(9) {
    left: 65%;
    animation-duration: 18s;
    animation-delay: -16s;
    background: rgba(100, 181, 246, 0.4);
    width: 5px;
    height: 5px;
}

.contactformhome__air-dot:nth-child(10) {
    left: 80%;
    animation-duration: 22s;
    animation-delay: -18s;
}

.contactformhome__wrapper {
    position: relative;
    z-index: 2;
    max-width: 1310px;
    margin: 0 auto;
    padding: 0 15px;
}

.contactformhome__content {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: start;
}

.contactformhome__title {
    padding-top: 20px;
}

.contactformhome__title h2 {
    font-weight: 500;
    font-size: 44px;
    line-height: 109%;
    letter-spacing: -0.04em;
    color: #25262b;
    margin-bottom: 16px;
}

.contactformhome__title p {
    font-weight: 400;
    font-size: 16px;
    color: #25262b;
    margin: 0;
}

.contactformhome__form-wrapper {
    padding: 40px;
    background-color: #fff;
    border: 0.5px solid #E0E2E9;
}

.contact-form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.bloghome__wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    border: 0.5px solid #E0E2E9;
}

.bloghome__item {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 350px;
    border: 0.5px solid #E0E2E9;
    padding: 32px;
    width: 25%;
    flex-shrink: 0;
    background-color: #ffffff;
    transition: all 0.3s ease;
}

.bloghome--archive .bloghome__item {
    width: 33.333333%;
}

.bloghome--cluster .bloghome__item {
    width: 50%;
}

.bloghomeitem__top {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.bloghomeitem__top-category {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 400;
    font-size: 12px;
    line-height: 108%;
    letter-spacing: -0.04em;
    color: #fff;
    border-radius: 50px;
    padding: 3px 8px 4px;
    height: 20px;
    background: #000;
    margin-bottom: 12px;
}

.bloghomeitem__txt p {
    margin-bottom: 0;
    font-weight: 400;
    font-size: 14px;
    line-height: 143%;
    color: #656565;
}

.bloghomeitem__top-title {
    font-weight: 500;
    font-size: 20px;
    line-height: 120%;
    letter-spacing: -0.04em;
    color: #000;
}

.bloghomeitem__top-title a {
    font-weight: 500;
    font-size: 20px;
    line-height: 120%;
    letter-spacing: -0.04em;
    color: #000;
}

.bloghome__title {
    max-width: 50%;
    margin-left: auto;
    width: 100%;
    padding-right: 30px;
}

.footer {
    padding: 32px;
    background-color: #FFFFFF;
    position: relative;
    z-index: 2;
}

.footer__wrapper {
    display: flex;
    gap: 20px;
}

.footer__info {
    width: 25%;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
}

.footer__col {
    width: 33.33%;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
}

.footer__columns {
    display: flex;
    gap: 20px;
    max-width: 100%;
    flex-shrink: 1;
    justify-content: space-between;
    width: calc(75% - 30px);
}

.footer__logo {
    margin-bottom: 26px;
}

.footer__contacts {
    display: flex;
    flex-direction: column;
    gap: 8px;
    color: #5f6670;
    font-size: 14px;
    line-height: 1.45;
}

.footer__contacts a {
    color: inherit;
    text-decoration: none;
}

.footer__contacts a:hover,
.footer__contacts a:focus-visible {
    color: #000000;
    text-decoration: underline;
}

.footer__col-title {
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    color: #a1abb9;
    display: flex;
    margin-bottom: 20px;
}

.footer__col ul {
    display: flex;
    flex-direction: column;
    margin: 0;
    padding: 0;
}

.footer__col ul li {
    list-style-type: none;
    margin-bottom: 16px;
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    color: #263141;
}

.footer__col ul li a {
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    color: #263141;
    transition: all 0.3s ease;
}

.footer__col ul li a:hover {
    opacity: 0.7;
}

.footer__col ul li:last-child {
    margin-bottom: 0;
}

.itemcatalog__bottom a.btn {
    margin-top: 24px;
    background-color: #ecedf1;
    color: #000;
    border-radius: 0;
    width: 100%;
    border: 2px solid #e0e0e0;
    transition: all 0.3s ease;
}

.itemcatalog__bottom a.btn:hover {
    border: 2px solid #000000;
}

@media (max-width: 768px) {
    .quiz-final-form {
        flex-direction: column;
        align-items: stretch;
    }

    .quiz-final-form .input {
        min-width: auto;
    }

    .questions__item {
        padding: 0;
    }
}

/* Portfolio Slider Styles */
.portfolio {
    background: #f8f9fa;
}

.portfolio__title {
    max-width: 50%;
    margin-left: auto;
    width: 100%;
    padding-right: 30px;
}

.portfolio__slider {
    position: relative;
    padding: 0 60px;
    overflow: hidden;
}

.portfolio__slide {
    height: auto;
}

.portfolio__slide-link {
    display: block;
    background: #fff;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    cursor: pointer;
    border: 0.5px solid #E0E2E9;
}

.portfolio__slide-link:hover {
    transform: scale(1.05);
}

.portfolio__slide-link img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.portfolio__slide-link:hover img {
    transform: scale(1.05);
}

.portfolio__slide-link::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.portfolio__slide-link::before {
    content: '+';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 24px;
    color: #fff;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 2;
}

.portfolio__slider .swiper-button-next:after,
.portfolio__slider .swiper-button-prev:after {
    font-size: 15px;
    color: #000000;
}

.portfolio__nav {
    margin-top: 0 !important;
    width: 40px !important;
    height: 40px !important;
    border-radius: 0 !important;
    background-color: #ffffff !important;
    border: 2px solid #000000 !important;
    transition: all 0.3s ease !important;
}

.portfolio__nav:hover {
    margin-top: 0 !important;
    width: 40px !important;
    height: 40px !important;
    border-radius: 0 !important;
    background-color: #fff6fe !important;
    border: 2px solid #000000 !important;
    color: #000000 !important;
}

.portfolio__nav {
    margin-top: 0;
}

.portfolio__slide-link:hover::after,
.portfolio__slide-link:hover::before {
    opacity: 1;
}

/* Навигация слайдера */
.portfolio__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    border: none;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.portfolio__nav:hover::after {
    color: #000000;
    opacity: 1 !important;
}

.portfolio__nav::after {
    font-size: 18px;
    font-weight: 700;
    color: #007bff;
    transition: color 0.3s ease;
}

.portfolio__nav--next {
    right: 0;
}

.portfolio__nav--prev {
    left: 0;
}

/* Пагинация */
.portfolio__pagination {
    position: relative;
    margin-top: 40px;
    text-align: center;
}

.portfolio__pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: #dee2e6;
    opacity: 1;
    margin: 0 6px;
    transition: all 0.3s ease;
}

.portfolio__pagination .swiper-pagination-bullet-active {
    background: #007bff;
    transform: scale(1.2);
}

/* Адаптивность */
@media (max-width: 768px) {
    .portfolio__slider {
        padding: 0 40px;
    }

    .portfolio__nav {
        width: 40px;
        height: 40px;
    }

    .portfolio__nav::after {
        font-size: 16px;
    }

    .portfolio__slide-link img {
        height: 220px;
    }
}

@media (max-width: 480px) {
    .portfolio__slider {
        padding: 0 20px;
    }

    .portfolio__nav {
        width: 36px;
        height: 36px;
    }

    .portfolio__nav::after {
        font-size: 14px;
    }

    .portfolio__slide-link img {
        height: 180px;
    }
}

/* ========================================
   СТИЛИ ДЛЯ КАТАЛОГА ТОВАРОВ
   ======================================== */

/* Хлебные крошки */
.breadcrumbs {
    margin-bottom: 30px;
    text-decoration: none;
    font-weight: 400;
    font-size: 14px;
    line-height: 143%;
    color: #656565;
}

.breadcrumbs a {
    text-decoration: none;
    font-weight: 400;
    font-size: 14px;
    line-height: 143%;
    color: #656565;
}

.breadcrumbs a:hover {
    text-decoration: underline;
}

.breadcrumbs .separator {
    margin: 0 8px;
    color: #999;
}

.breadcrumbs .current {
    color: #333;
    font-weight: 500;
}

/* Страница отдельного товара */
.product-single {
    padding: 40px 0;
}

.product-single__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.product-single__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.product-single__image {
    position: relative;
    width: 35%;
    padding: 32px;
}

.product-image {
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image img {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-single__info {
    padding: 20px 0;
}

.product-header {
    margin-bottom: 30px;
}

.product-title {
    font-size: 32px;
    font-weight: 700;
    color: #333;
    margin: 0 0 15px 0;
    line-height: 1.2;
}

.product-badges {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.badge {
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-new {
    background: #28a745;
    color: white;
}

.badge-hit {
    background: #dc3545;
    color: white;
}

.product-price {
    margin-bottom: 30px;
}

.price-current,
.price-sale {
    font-size: 28px;
    font-weight: 700;
    color: #007bff;
}

.price-normal {
    font-size: 20px;
    color: #999;
    text-decoration: line-through;
    margin-left: 15px;
}

.product-excerpt {
    margin-bottom: 30px;
    font-size: 16px;
    line-height: 1.6;
    color: #666;
}

.product-specs {
    margin-bottom: 40px;
}

.product-specs h3 {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
}

.specs-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.specs-list li {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #eee;
}

.specs-list li:last-child {
    border-bottom: none;
}

.spec-name {
    font-weight: 500;
    color: #666;
}

.spec-value {
    font-weight: 600;
    color: #333;
}

.product-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-outline {
    background: transparent;
    border: 2px solid #007bff;
    color: #007bff;
    padding: 12px 24px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: #007bff;
    color: white;
}

.product-description {
    margin-bottom: 60px;
    padding: 40px 0;
    border-top: 1px solid #eee;
}

.product-description h2 {
    font-size: 24px;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
}

.description-content {
    font-size: 16px;
    line-height: 1.7;
    color: #666;
}

.description-content p {
    margin-bottom: 20px;
}

/* Связанные товары */
.related-products {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid #eee;
}

.related-products__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.related-product {
    text-align: center;
}

.related-product a {
    text-decoration: none;
    color: inherit;
    display: block;
    transition: transform 0.3s ease;
}

.related-product a:hover {
    transform: translateY(-5px);
}

.related-product img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
}

.related-product h3 {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.related-product .price {
    font-size: 18px;
    font-weight: 700;
    color: #007bff;
}

/* Сообщение об отсутствии товаров */
.no-products {
    text-align: center;
    padding: 60px 20px;
}

.no-products h2 {
    font-size: 24px;
    color: #333;
    margin-bottom: 15px;
}

.no-products p {
    font-size: 16px;
    color: #666;
}

/* Адаптивность для страницы товара */
@media (max-width: 768px) {
    .product-single__content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .product-title {
        font-size: 24px;
    }

    .price-current,
    .price-sale {
        font-size: 24px;
    }

    .product-actions {
        flex-direction: column;
    }

    .related-products__grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .product-single__container {
        padding: 0 15px;
    }

    .product-title {
        font-size: 20px;
    }

    .price-current,
    .price-sale {
        font-size: 20px;
    }

    .related-products__grid {
        grid-template-columns: 1fr;
    }
}

header.header.header-nomain {
    position: relative;
}

.nav-links-pagination {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 40px 16px;
}

.nav-links-pagination a {
    text-decoration: none;
    font-weight: 400;
    font-size: 14px;
    line-height: 143%;
    color: #000000;
    border: 2px solid #e0e0e0;
    padding: 15px 30px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background-color: #ffffff;
    transition: all 0.3s ease;
}

.nav-links-pagination a:hover {
    border: 2px solid #000000;
}

.nav-links-pagination span {
    text-decoration: none;
    font-weight: 400;
    font-size: 14px;
    line-height: 143%;
    color: #656565;
    border: 2px solid #e0e0e0;
    padding: 15px 30px;
    height: 50px;
    width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.product-single__wrapper {
    display: flex;
    width: 100%;
    border-top: 0.5px solid #dedede;
    border-bottom: 0.5px solid #dedede;
    background-color: #ffffff;
}

.product-single__image {
    border: 0.5px solid #dedede;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    height: auto;
    position: relative;
    overflow: visible;
}

.product-single__image img,
.product-single__main-image {
    width: 100%;
    height: 100%;
    display: block;
}

/* Product Gallery Styles */
.product-gallery {
    width: 100%;
    position: relative;
    margin-bottom: 20px;
    overflow: visible;
}

.product-gallery-main {
    width: 100%;
    height: auto;
    position: relative;
    overflow: visible;
}

.product-gallery .swiper-wrapper {
    align-items: center;
}

.product-gallery-main .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.product-gallery__image {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
    max-width: 100%;
}

/* Product Image Zoom Effect with Drift */
.product-image-zoom {
    position: relative;
    width: 100%;
    overflow: hidden;
    cursor: crosshair;
}

.product-image-zoom .zoom-image {
    width: 100%;
    height: auto;
    display: block;
    cursor: crosshair;
}

.product-image-link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    cursor: pointer;
    opacity: 0;
    background: transparent;
}

/* При двойном клике открываем Fancybox */
.product-image-zoom:active .product-image-link {
    opacity: 1;
}

/* Drift zoom pane стили */
.drift-zoom-pane {
    border: 2px solid #000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

/* Улучшенный zoom эффект для слайдера */
.product-gallery-main .product-image-zoom {
    height: 100%;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-gallery-main .product-image-zoom .zoom-image {
    max-height: 100%;
    object-fit: contain;
}

/* Для мобильных устройств */
@media (max-width: 768px) {
    .product-image-zoom {
        cursor: pointer;
    }
    
    /* На мобильных Drift может не работать, поэтому скрываем zoom pane */
    .drift-zoom-pane {
        display: none !important;
    }
}

.product-gallery-thumbs {
    width: 100%;
    margin-top: 15px;
    padding: 0 40px;
}

.product-gallery__thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: pointer;
    opacity: 0.6;
    transition: opacity 0.3s ease;
    border: 2px solid transparent;
}

.product-gallery__thumb:hover {
    opacity: 1;
}

.product-gallery-thumbs .swiper-slide-thumb-active .product-gallery__thumb {
    opacity: 1;
    border-color: #000;
}

/* Navigation buttons */
.product-gallery-main {
    overflow: visible;
}

.product-gallery-main .swiper-button-next,
.product-gallery-main .swiper-button-prev,
.product-gallery-main .product-gallery__nav--next.swiper-button-next,
.product-gallery-main .product-gallery__nav--prev.swiper-button-prev {
    position: absolute !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    width: 48px !important;
    height: 48px !important;
    background: #fff !important;
    border-radius: 50% !important;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1) !important;
    border: none !important;
    cursor: pointer !important;
    z-index: 10 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: all 0.3s ease !important;
    margin-top: 0 !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.product-gallery-main .swiper-button-next,
.product-gallery-main .product-gallery__nav--next.swiper-button-next {
    right: 15px !important;
    left: auto !important;
}

.product-gallery-main .swiper-button-prev,
.product-gallery-main .product-gallery__nav--prev.swiper-button-prev {
    left: 15px !important;
    right: auto !important;
}

.product-gallery-main .swiper-button-next:hover,
.product-gallery-main .swiper-button-prev:hover,
.product-gallery-main .product-gallery__nav--next.swiper-button-next:hover,
.product-gallery-main .product-gallery__nav--prev.swiper-button-prev:hover {
    background: #f8f9fa !important;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15) !important;
}

.product-gallery-main .swiper-button-next:after,
.product-gallery-main .swiper-button-prev:after,
.product-gallery-main .product-gallery__nav--next.swiper-button-next:after,
.product-gallery-main .product-gallery__nav--prev.swiper-button-prev:after {
    font-size: 16px !important;
    font-weight: 700 !important;
    color: #000 !important;
    transition: color 0.3s ease !important;
}

.product-gallery-main .swiper-button-next:hover:after,
.product-gallery-main .swiper-button-prev:hover:after,
.product-gallery-main .product-gallery__nav--next.swiper-button-next:hover:after,
.product-gallery-main .product-gallery__nav--prev.swiper-button-prev:hover:after {
    color: #000 !important;
}

/* Скрываем кнопки когда они disabled */
.product-gallery-main .swiper-button-disabled {
    opacity: 0.35 !important;
    cursor: not-allowed !important;
    pointer-events: none !important;
}

/* Pagination */
.product-gallery__pagination {
    position: relative;
    margin-top: 15px;
    text-align: center;
}

.product-gallery__pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: #ccc;
    opacity: 1;
    margin: 0 4px;
}

.product-gallery__pagination .swiper-pagination-bullet-active {
    background: #000;
}

.product-single__info {
    padding: 32px;
    border: 0.5px solid #dedede;
    width: 40%;
}

.product-single__price {
    padding: 32px;
    border: 0.5px solid #dedede;
    width: 25%;
}

.product-specs ul {
    display: flex;
    flex-direction: column;
    margin: 0;
    padding: 0;
}

.product-specs ul li {
    list-style-type: none;
    margin-bottom: 12px;
    display: flex;
    justify-content: space-between;
}

.product-specs li {
    font-weight: 400;
    font-size: 14px;
    line-height: 143%;
    color: #000000;
}

.product-specs ul li span {
    font-weight: 400;
    font-size: 14px;
    line-height: 143%;
    color: #656565;
}

.product-single__price .itemcatalog__price-normal {
    margin-bottom: 60px;
    display: flex;
}

.product-actions .btn.btn-outline {
    background-color: #ecedf1;
    color: #000;
    border-radius: 0;
    width: 100%;
    border: 2px solid #e0e0e0;
    transition: all 0.3s ease;
}

.product-actions .btn.btn-orange {
    background-color: #000000;
    color: #ffffff;
    border-radius: 0;
    width: 100%;
    border: 2px solid #000000;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.product-actions .btn.btn-outline:hover {
    border: 2px solid #000000;
}

.description-content p {
    font-weight: 400;
    font-size: 16px;
    color: #25262b;
    margin-bottom: 0;
    margin-top: 16px;
}

.product-description h2 {
    font-weight: 500;
    font-size: 20px;
    line-height: 1.3;
    color: #25262b;
}

.product-description h3 {
    font-weight: 500;
    font-size: 18px;
    line-height: 1.3;
    color: #25262b;
}

.product-description h4 {
    font-weight: 500;
    font-size: 16px;
    line-height: 1.3;
    color: #25262b;
}

.cataloghome__catalog__item .cataloghome__item.itemcatalog {
    width: 25%;
}


.related-products__title {
    width: 50%;
    margin-left: 50%;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(2px);
}

.modal__content {
    position: relative;
    background: #fff;
    border-radius: 12px;
    padding: 0;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-20px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.modal__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 24px 0 24px;
    border-bottom: 1px solid #e5e7eb;
    margin-bottom: 24px;
}

.modal__header h3 {
    margin: 0;
    font-size: 24px;
    font-weight: 600;
    color: #1f2937;
}

.modal__close {
    background: none;
    border: none;
    font-size: 28px;
    color: #6b7280;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.modal__close:hover {
    background-color: #f3f4f6;
    color: #374151;
}

.modal__body {
    padding: 0 24px 24px 24px;
}

.callback-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-weight: 500;
    color: #374151;
    font-size: 14px;
}

.form-input {
    padding: 12px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.2s ease;
    background-color: #fff;
}

.form-input:focus {
    outline: none;
    border-color: #f97316;
    box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.1);
}

.form-input::placeholder {
    color: #9ca3af;
}

/* Privacy consent checkbox */
.form-group--checkbox {
    margin-top: 8px;
    margin-bottom: 8px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-size: 14px;
    line-height: 1.5;
    color: #374151;
}

.checkbox-label input[type="checkbox"] {
    margin-top: 2px;
    width: 18px;
    height: 18px;
    min-width: 18px;
    cursor: pointer;
    accent-color: #f97316;
    flex-shrink: 0;
}

.checkbox-label span {
    flex: 1;
}

.checkbox-label a {
    color: #f97316;
    text-decoration: underline;
    transition: color 0.2s ease;
}

.checkbox-label a:hover {
    color: #ea580c;
}

/* Responsive */
@media (max-width: 768px) {
    .modal__content {
        width: 95%;
        margin: 20px;
    }
    
    .modal__header {
        padding: 20px 20px 0 20px;
    }
    
    .modal__body {
        padding: 0 20px 20px 20px;
    }
    
    .modal__header h3 {
        font-size: 20px;
    }
}

.header__menu.menuhead {
    margin-right: auto;
}

/* Cart Styles */
.header__cart {
    position: relative;
    margin-left: 20px;
}

.cart-link {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    color: #1c1d1e;
    text-decoration: none;
}

.cart-link svg {
    width: 24px;
    height: 24px;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: #f97316;
    color: #fff;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 600;
    line-height: 1;
    flex-shrink: 0;
}

/* Cart Page */
.cart-page {
    padding: 120px 15px 80px;
}

.cart-page__header {
    margin-bottom: 40px;
}

.cart-page__title {
    font-size: 36px;
    font-weight: 600;
    color: #1c1d1e;
    margin: 0;
}

/* Cart Empty */
.cart-empty {
    text-align: center;
    padding: 80px 20px;
}

.cart-empty__content h2 {
    font-size: 28px;
    margin-bottom: 16px;
    color: #1c1d1e;
}

.cart-empty__content p {
    font-size: 16px;
    color: #6b7280;
    margin-bottom: 32px;
}

/* Cart Items */
.cart-items {
    margin-bottom: 40px;
}

.cart-item {
    display: grid;
    grid-template-columns: 120px 1fr auto auto auto;
    gap: 20px;
    align-items: center;
    padding: 24px;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    margin-bottom: 16px;
    background: #fff;
}

.cart-item__image {
    width: 120px;
    height: 120px;
    border-radius: 8px;
    overflow: hidden;
    background: #f3f4f6;
}

.cart-item__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-item__info {
    flex: 1;
}

.cart-item__title {
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 8px 0;
    color: #1c1d1e;
}

.cart-item__title a {
    color: #1c1d1e;
    text-decoration: none;
    transition: color 0.2s ease;
}

.cart-item__title a:hover {
    color: #f97316;
}

.cart-item__price {
    font-size: 16px;
    color: #6b7280;
}

.cart-item__quantity {
    display: flex;
    align-items: center;
    gap: 8px;
}

.cart-item__qty-btn {
    width: 36px;
    height: 36px;
    border: 2px solid #e5e7eb;
    background: #fff;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-item__qty-btn:hover {
    border-color: #f97316;
    color: #f97316;
}

.cart-item__qty-input {
    width: 60px;
    height: 36px;
    border: 2px solid #e5e7eb;
    border-radius: 6px;
    text-align: center;
    font-size: 16px;
    font-weight: 600;
}

.cart-item__qty-input:focus {
    outline: none;
    border-color: #f97316;
}

.cart-item__total {
    font-size: 20px;
    font-weight: 600;
    color: #1c1d1e;
    min-width: 120px;
    text-align: right;
}

.cart-item__remove {
    width: 36px;
    height: 36px;
    border: none;
    background: #fee2e2;
    color: #dc2626;
    border-radius: 6px;
    font-size: 24px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.cart-item__remove:hover {
    background: #dc2626;
    color: #fff;
}

/* Cart Form */
.cart-form {
    background: #f9fafb;
    border-radius: 12px;
    padding: 40px;
    margin-top: 40px;
}

.cart-form__wrapper {
    max-width: 600px;
    margin: 0 auto;
}

.cart-form__info {
    margin-bottom: 32px;
    text-align: center;
}

.cart-form__info h2 {
    font-size: 28px;
    font-weight: 600;
    margin: 0 0 12px 0;
    color: #1c1d1e;
}

.cart-form__info p {
    font-size: 16px;
    color: #6b7280;
    margin: 0;
}

.cart-form__form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cart-form__form .form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.cart-form__form .form-group label:not(.checkbox-label) {
    font-weight: 500;
    color: #374151;
    font-size: 14px;
}

.cart-form__form .form-group input:not([type="checkbox"]),
.cart-form__form .form-group textarea {
    padding: 12px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.2s ease;
    background-color: #fff;
    font-family: inherit;
}

.cart-form__form .form-group input:not([type="checkbox"]):focus,
.cart-form__form .form-group textarea:focus {
    outline: none;
    border-color: #f97316;
    box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.1);
}

.cart-form__form .form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.cart-form__form .form-group--checkbox {
    margin-top: 0;
    margin-bottom: 0;
}

.cart-form__form .form-group--checkbox .checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-size: 14px;
    line-height: 1.5;
    color: #374151;
}

.cart-form__form .form-group--checkbox .checkbox-label input[type="checkbox"] {
    margin-top: 2px;
    width: 18px;
    height: 18px;
    min-width: 18px;
    cursor: pointer;
    accent-color: #f97316;
    flex-shrink: 0;
}

.cart-form__form .form-group--checkbox .checkbox-label span {
    flex: 1;
}

.cart-form__form .form-group--checkbox .checkbox-label a {
    color: #f97316;
    text-decoration: underline;
    transition: color 0.2s ease;
}

.cart-form__form .form-group--checkbox .checkbox-label a:hover {
    color: #ea580c;
}

.cart-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    border: 2px solid #e5e7eb;
    margin: 20px 0;
}

.cart-total__label {
    font-size: 20px;
    font-weight: 600;
    color: #1c1d1e;
}

.cart-total__amount {
    font-size: 28px;
    font-weight: 700;
    color: #f97316;
}

.btn-block {
    width: 100%;
    padding: 16px;
    font-size: 18px;
}

/* Responsive Cart */
@media (max-width: 768px) {
    .cart-page {
        padding: 100px 15px 60px;
    }
    
    .cart-page__title {
        font-size: 28px;
    }
    
    .cart-item {
        grid-template-columns: 80px 1fr;
        gap: 16px;
    }
    
    .cart-item__image {
        width: 80px;
        height: 80px;
        grid-row: 1 / 3;
    }
    
    .cart-item__info {
        grid-column: 2;
    }
    
    .cart-item__quantity {
        grid-column: 2;
        justify-self: start;
    }
    
    .cart-item__total {
        grid-column: 2;
        justify-self: end;
        text-align: right;
        min-width: auto;
    }
    
    .cart-item__remove {
        grid-column: 2;
        justify-self: end;
        grid-row: 1;
    }
    
    .cart-form {
        padding: 24px;
    }
    
    .cart-form__info h2 {
        font-size: 24px;
    }
    
    .cart-total {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
    
    .cart-total__amount {
        font-size: 24px;
    }
}

/* ============================================
   Blog Single Page Styles
   ============================================ */

.blog-single {
    padding: 100px 0 60px;
}

.blog-single__header {
    max-width: 800px;
    margin: 0 auto 40px;
    padding: 0 15px;
}

.blog-single__categories {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
}

.blog-single__category {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 400;
    font-size: 12px;
    line-height: 108%;
    letter-spacing: -0.04em;
    color: #fff;
    border-radius: 50px;
    padding: 3px 8px 4px;
    height: 20px;
    background: #000;
    text-decoration: none;
    transition: all 0.3s ease;
}

.blog-single__category:hover {
    opacity: 0.7;
    color: #fff;
}

.blog-single__title {
    font-weight: 500;
    font-size: 48px;
    line-height: 120%;
    letter-spacing: -0.04em;
    color: #000;
    margin: 0 0 24px 0;
}

.blog-single__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;
    padding: 20px 0;
    border-top: 0.5px solid #E0E2E9;
    border-bottom: 0.5px solid #E0E2E9;
}

.blog-single__meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 400;
    font-size: 14px;
    line-height: 143%;
    color: #656565;
}

.blog-single__date,
.blog-single__date-updated {
    color: #656565;
}

.blog-single__author-label {
    color: #656565;
}

.blog-single__author {
    color: #000;
    text-decoration: none;
    transition: all 0.3s ease;
}

.blog-single__author:hover {
    opacity: 0.7;
}

.blog-single__reading-time {
    color: #656565;
}

.blog-single__image {
    width: 100%;
    aspect-ratio: 16 / 9;
    margin: 40px 0;
    border-top: 0.5px solid #dedede;
    border-bottom: 0.5px solid #dedede;
    overflow: hidden;
}

.blog-single__image-img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.blog-single__excerpt {
    max-width: 800px;
    margin: 0 auto 40px;
    padding: 0 15px;
    font-weight: 400;
    font-size: 18px;
    line-height: 160%;
    color: #656565;
    font-style: italic;
}

.blog-single__content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 15px;
}

.blog-single__body {
    font-weight: 400;
    font-size: 16px;
    line-height: 170%;
    color: #25262b;
    margin-bottom: 40px;
}

.blog-single__body p {
    margin-bottom: 20px;
}

.blog-single__body h2,
.blog-single__body h3,
.blog-single__body h4 {
    font-weight: 500;
    color: #000;
    margin-top: 32px;
    margin-bottom: 16px;
}

.blog-single__body h2 {
    font-size: 32px;
    line-height: 120%;
    letter-spacing: -0.04em;
}

.blog-single__body h3 {
    font-size: 24px;
    line-height: 120%;
    letter-spacing: -0.04em;
}

.blog-single__body h4 {
    font-size: 20px;
    line-height: 120%;
    letter-spacing: -0.04em;
}

.blog-single__body ul,
.blog-single__body ol {
    margin: 20px 0;
    padding-left: 0;
    list-style: none;
}

.blog-single__body ul li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 12px;
}

.blog-single__body ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.6em;
    width: 6px;
    height: 6px;
    background: #25262b;
    border-radius: 50%;
}

.blog-single__body ol {
    counter-reset: list-counter;
}

.blog-single__body ol li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 12px;
    counter-increment: list-counter;
}

.blog-single__body ol li::before {
    content: counter(list-counter) '.';
    position: absolute;
    left: 0;
    top: 0;
    color: #25262b;
    font-weight: 400;
}

.blog-single__body a {
    color: #000;
    text-decoration: underline;
    transition: all 0.3s ease;
}

.blog-single__body a:hover {
    opacity: 0.7;
}

.blog-single__body img {
    max-width: 100%;
    height: auto;
    margin: 24px 0;
}

.blog-single__body blockquote {
    border-left: 3px solid #000;
    padding-left: 20px;
    margin: 24px 0;
    font-style: italic;
    color: #656565;
}

.blog-single__footer {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 0.5px solid #E0E2E9;
}

.blog-single__tags {
    margin-bottom: 40px;
}

.blog-single__tags-label {
    display: block;
    font-weight: 400;
    font-size: 14px;
    line-height: 143%;
    color: #656565;
    margin-bottom: 12px;
}

.blog-single__tags-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.blog-single__tag {
    display: inline-block;
    padding: 6px 12px;
    font-weight: 400;
    font-size: 14px;
    line-height: 143%;
    color: #000;
    text-decoration: none;
    border: 0.5px solid #E0E2E9;
    transition: all 0.3s ease;
}

.blog-single__tag:hover {
    background-color: #000;
    color: #fff;
    border-color: #000;
}

.blog-single__navigation {
    margin-top: 40px;
}

.blog-single__navigation .nav-links {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    border-top: 0.5px solid #E0E2E9;
    border-bottom: 0.5px solid #E0E2E9;
    padding: 24px 0;
}

.blog-single__navigation .nav-previous,
.blog-single__navigation .nav-next {
    flex: 1;
}

.blog-single__navigation .nav-previous {
    text-align: left;
}

.blog-single__navigation .nav-next {
    text-align: right;
}

.blog-single__navigation .nav-subtitle {
    display: block;
    font-weight: 400;
    font-size: 12px;
    line-height: 108%;
    color: #656565;
    margin-bottom: 8px;
}

.blog-single__navigation .nav-title {
    display: block;
    font-weight: 500;
    font-size: 16px;
    line-height: 120%;
    color: #000;
    text-decoration: none;
    transition: all 0.3s ease;
}

.blog-single__navigation .nav-title:hover {
    opacity: 0.7;
}

.blog-single__related {
    margin-top: 80px;
    padding-top: 60px;
    border-top: 0.5px solid #E0E2E9;
}

.blog-single__related .related-posts__title {
    max-width: 50%;
    margin-left: auto;
    width: 100%;
    padding-right: 30px;
}

.bloghomeitem__meta {
    margin-top: 16px;
    font-weight: 400;
    font-size: 12px;
    line-height: 108%;
    color: #656565;
}

/* Responsive Blog Single */
@media (max-width: 768px) {
    .blog-single {
        padding: 80px 0 40px;
    }

    .blog-single__title {
        font-size: 32px;
    }

    .blog-single__meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .blog-single__excerpt {
        font-size: 16px;
    }

    .blog-single__body {
        font-size: 15px;
    }

    .blog-single__body h2 {
        font-size: 24px;
    }

    .blog-single__body h3 {
        font-size: 20px;
    }

    .blog-single__navigation .nav-links {
        flex-direction: column;
    }

    .blog-single__navigation .nav-next {
        text-align: left;
    }

    .bloghome__item {
        width: 50% !important;
    }
}

/* ============================================
   Page Single Styles (упрощенная версия blog-single)
   ============================================ */

.page-single {
    padding: 100px 0 60px;
}

.page-single__header {
    max-width: 800px;
    margin: 0 auto 40px;
    padding: 0 15px;
}

.page-single__title {
    font-weight: 500;
    font-size: 48px;
    line-height: 120%;
    letter-spacing: -0.04em;
    color: #000;
    margin: 0 0 24px 0;
}

.page-single__content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 15px;
}

.page-single__body {
    font-weight: 400;
    font-size: 16px;
    line-height: 170%;
    color: #25262b;
    margin-bottom: 40px;
}

.page-single__body p {
    margin-bottom: 20px;
}

.page-single__body h2,
.page-single__body h3,
.page-single__body h4 {
    font-weight: 500;
    color: #000;
    margin-top: 32px;
    margin-bottom: 16px;
}

.page-single__body h2 {
    font-size: 32px;
    line-height: 120%;
    letter-spacing: -0.04em;
}

.page-single__body h3 {
    font-size: 24px;
    line-height: 120%;
    letter-spacing: -0.04em;
}

.page-single__body h4 {
    font-size: 20px;
    line-height: 120%;
    letter-spacing: -0.04em;
}

.page-single__body ul,
.page-single__body ol {
    margin: 20px 0;
    padding-left: 24px;
}

.page-single__body li {
    margin-bottom: 12px;
}

.page-single__body a {
    color: #000;
    text-decoration: underline;
    transition: all 0.3s ease;
}

.page-single__body a:hover {
    opacity: 0.7;
}

.page-single__body img {
    max-width: 100%;
    height: auto;
    margin: 24px 0;
}

.page-single__body blockquote {
    border-left: 3px solid #000;
    padding-left: 20px;
    margin: 24px 0;
    font-style: italic;
    color: #656565;
}

/* Responsive Page Single */
@media (max-width: 768px) {
    .page-single {
        padding: 80px 0 40px;
    }

    .page-single__title {
        font-size: 32px;
    }

    .page-single__body {
        font-size: 15px;
    }

    .page-single__body h2 {
        font-size: 24px;
    }

    .page-single__body h3 {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .bloghome__item {
        width: 100% !important;
    }
}

/* ============================================
   Page About Styles
   ============================================ */

.page-about {
    padding: 100px 0 0;
}



.page-about__image {
    width: 100%;
    margin: 0;
}

.page-about__image-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.page-about__content {
    background-color: #fff;
}

.page-about__body {
    max-width: 800px;
    margin: 0 auto;
    font-weight: 400;
    font-size: 16px;
    line-height: 170%;
    color: #25262b;
}

.page-about__body p {
    margin-bottom: 20px;
}

.page-about__body h2,
.page-about__body h3,
.page-about__body h4 {
    font-weight: 500;
    color: #000;
    margin-top: 32px;
    margin-bottom: 16px;
}

.page-about__body h2 {
    font-size: 32px;
    line-height: 120%;
    letter-spacing: -0.04em;
}

.page-about__body h3 {
    font-size: 24px;
    line-height: 120%;
    letter-spacing: -0.04em;
}

.page-about__body ul,
.page-about__body ol {
    margin: 20px 0;
    padding-left: 24px;
}

.page-about__body li {
    margin-bottom: 12px;
}

/* Portfolio full width on about page */
.portfolio {
    padding: 60px 0;
    background: #f8f9fa;
}

.portfolio__title {
    max-width: 1310px;
    margin: 0 auto 40px;
    padding: 0 15px;
}

.portfolio__slider {
    width: 100%;
    max-width: 100%;
    padding: 0 60px;
}


.page-about__cta-wrapper {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 40px;
    border: none;
    background-color: #fff;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border-radius: 8px;
}

.page-about__cta-content h2 {
    font-weight: 500;
    font-size: 32px;
    line-height: 120%;
    letter-spacing: -0.04em;
    color: #000;
    margin: 0 0 24px 0;
}

.page-about__cta-content p {
    font-weight: 400;
    font-size: 16px;
    line-height: 160%;
    color: #656565;
    margin: 0 0 32px 0;
}

.page-about__cta-content .btn {
    margin-top: 0;
}

/* ============================================
   Page Contacts Styles
   ============================================ */

.page-contacts {
    padding: 100px 0 0;
}

.page-contacts__wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.page-contacts__block {
    padding: 40px;
    border: 0.5px solid #E0E2E9;
    background-color: #fff;
}

.page-contacts__block h2 {
    font-weight: 500;
    font-size: 24px;
    line-height: 120%;
    letter-spacing: -0.04em;
    color: #000;
    margin-bottom: 24px;
}

.page-contacts__block > p {
    font-weight: 400;
    font-size: 14px;
    line-height: 143%;
    color: #656565;
    margin-bottom: 32px;
}

.page-contacts__item {
    display: flex;
    gap: 20px;
    margin-bottom: 32px;
    padding-bottom: 32px;
    border-bottom: 0.5px solid #E0E2E9;
}

.page-contacts__item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.page-contacts__item-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #000;
}

.page-contacts__item-content h3 {
    font-weight: 500;
    font-size: 16px;
    line-height: 120%;
    color: #000;
    margin-bottom: 8px;
}

.page-contacts__item-content p {
    font-weight: 400;
    font-size: 14px;
    line-height: 143%;
    color: #656565;
    margin: 0;
}

.page-contacts__item-content a {
    color: #000;
    text-decoration: none;
    transition: all 0.3s ease;
}

.page-contacts__item-content a:hover {
    opacity: 0.7;
}

.contact-form {
    margin-top: 32px;
}

.contact-form .form-group {
    margin-bottom: 24px;
}

.contact-form .form-group--checkbox {
    margin-bottom: 24px;
}

.contact-form .form-group--checkbox .checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-size: 14px;
    line-height: 1.5;
    color: #000;
}

.contact-form .form-group--checkbox .checkbox-label input[type="checkbox"] {
    margin-top: 2px;
    width: 18px;
    height: 18px;
    min-width: 18px;
    cursor: pointer;
    accent-color: #000;
    flex-shrink: 0;
}

.contact-form .form-group--checkbox .checkbox-label span {
    flex: 1;
}

.contact-form .form-group--checkbox .checkbox-label a {
    color: #000;
    text-decoration: underline;
    transition: opacity 0.3s ease;
}

.contact-form .form-group--checkbox .checkbox-label a:hover {
    opacity: 0.7;
}

.contact-form label {
    display: block;
    font-weight: 400;
    font-size: 14px;
    line-height: 143%;
    color: #000;
    margin-bottom: 8px;
}

.contact-form .form-input {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 0;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s ease;
    background-color: #fff;
    color: #000;
}

.contact-form .form-input:focus {
    outline: none;
    border-color: #000;
}

.contact-form textarea.form-input {
    resize: vertical;
    min-height: 120px;
}

.contact-form .btn {
    width: 100%;
    margin-top: 8px;
}

/* Requisites Section */
.page-contacts__requisites {
    padding: 60px 0;
}

.page-contacts__requisites h2 {
    font-weight: 500;
    font-size: 32px;
    line-height: 125%;
    color: #000;
    margin-bottom: 40px;
}

.requisites-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
}

.requisites-block {
    background: #fff;
    padding: 32px;
    border: 1px solid #e0e0e0;
}

.requisites-block h3 {
    font-weight: 500;
    font-size: 20px;
    line-height: 140%;
    color: #000;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid #e0e0e0;
}

.requisites-list {
    margin: 0;
    padding: 0;
}

.requisites-list dt {
    font-weight: 400;
    font-size: 14px;
    line-height: 143%;
    color: #666;
    margin-bottom: 4px;
}

.requisites-list dd {
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    color: #000;
    margin: 0 0 20px 0;
    word-break: break-word;
}

.requisites-list dd:last-child {
    margin-bottom: 0;
}

/* Delivery & Montage Section */
.delivery-montage {
    background: transparent;
}

.delivery-montage__grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 30px;
}

.delivery-montage__block {
    background: #fff;
    border: 1px solid #e0e0e0;
    padding: 40px;
}

.delivery-block__header,
.montage-block__header {
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid #e0e0e0;
}

.delivery-block__header h2,
.montage-block__header h2 {
    font-weight: 500;
    font-size: 28px;
    line-height: 130%;
    color: #25262b;
    margin: 0;
}

.delivery-block__prices {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
}

.delivery-price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    background: #f5f5f5;
    border-left: 4px solid #25262b;
}

.delivery-price-item__zone {
    font-weight: 400;
    font-size: 16px;
    color: #25262b;
}

.delivery-price-item__cost {
    font-weight: 600;
    font-size: 20px;
    color: #25262b;
}

.delivery-block__regions h3 {
    font-weight: 500;
    font-size: 18px;
    color: #25262b;
    margin-bottom: 12px;
}

.delivery-block__regions p {
    font-weight: 400;
    font-size: 15px;
    line-height: 160%;
    color: #656565;
    margin: 0;
}

.montage-block__main-prices {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 32px;
}

.montage-price-card {
    padding: 24px;
    background: #f5f5f5;
    text-align: center;
    border: 2px solid #e0e0e0;
    transition: all 0.3s ease;
}

.montage-price-card--primary {
    background: #25262b;
    color: #fff;
    border-color: #25262b;
}

.montage-price-card__title {
    font-weight: 400;
    font-size: 14px;
    margin-bottom: 8px;
    color: #656565;
}

.montage-price-card--primary .montage-price-card__title {
    color: rgba(255, 255, 255, 0.8);
}

.montage-price-card__price {
    font-weight: 600;
    font-size: 28px;
    color: #25262b;
}

.montage-price-card--primary .montage-price-card__price {
    color: #fff;
}

.montage-block__included {
    margin-bottom: 32px;
}

.montage-block__included h3,
.montage-block__additional h3 {
    font-weight: 500;
    font-size: 18px;
    color: #25262b;
    margin-bottom: 16px;
}

.montage-block__included ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.montage-block__included ul li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 12px;
    font-size: 15px;
    line-height: 150%;
    color: #25262b;
}

.montage-block__included ul li:last-child {
    margin-bottom: 0;
}

.montage-block__included ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    background: #25262b;
    border-radius: 50%;
}

.montage-additional-list {
    list-style: none;
    padding: 0;
    margin: 0 0 16px 0;
}

.montage-additional-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #e0e0e0;
    font-size: 15px;
}

.montage-additional-list li:last-child {
    border-bottom: none;
}

.montage-additional-list li span:first-child {
    color: #25262b;
}

.montage-additional-list li span:last-child {
    font-weight: 600;
    color: #25262b;
}

.montage-block__note {
    font-size: 13px;
    color: #888;
    font-style: italic;
    margin: 0;
}

/* Responsive Delivery & Montage */
@media (max-width: 1024px) {
    .delivery-montage__grid {
        grid-template-columns: 1fr;
    }
    
    .delivery-montage__block {
        padding: 32px;
    }
}

@media (max-width: 768px) {
    .delivery-montage__block {
        padding: 24px;
    }
    
    .delivery-block__header,
    .montage-block__header {
        margin-bottom: 24px;
        padding-bottom: 20px;
    }
    
    .delivery-block__header h2,
    .montage-block__header h2 {
        font-size: 22px;
    }
    
    .montage-block__main-prices {
        grid-template-columns: 1fr;
    }
    
    .montage-price-card__price {
        font-size: 24px;
    }
    
    .delivery-price-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
}

/* Responsive Page About & Contacts */
@media (max-width: 1024px) {
    .page-contacts__wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .page-about,
    .page-contacts {
        padding: 80px 0 0;
    }

    .page-about__body {
        font-size: 15px;
    }

    .page-about__body h2 {
        font-size: 24px;
    }

    .page-about__cta-wrapper {
        padding: 40px 24px;
    }

    .page-about__cta-content h2 {
        font-size: 24px;
    }

    .page-about__cta-content p {
        font-size: 14px;
    }

    .page-about .portfolio__slider {
        padding: 0 20px;
    }

    .abouthome__content {
        padding: 30px 24px;
    }

    .abouthome__content p {
        font-size: 14px;
    }

    .reviewshome__wrapper {
        grid-template-columns: 1fr;
    }

    .reviewspage__wrapper {
        grid-template-columns: 1fr;
    }

    .contactformhome__content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contactformhome__title {
        padding-top: 0;
    }

    .contactformhome__title h2 {
        font-size: 32px;
    }

    .contactformhome__form-wrapper {
        padding: 30px 20px;
    }

    .contact-form__row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .page-contacts__block {
        padding: 24px;
    }

    .page-contacts__item {
        flex-direction: column;
        gap: 12px;
    }

    .page-contacts__item-icon {
        width: 40px;
        height: 40px;
    }

    .page-contacts__requisites {
        padding: 40px 0;
    }

    .page-contacts__requisites h2 {
        font-size: 24px;
        margin-bottom: 24px;
    }

    .requisites-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .requisites-block {
        padding: 24px;
    }

    .requisites-block h3 {
        font-size: 18px;
        margin-bottom: 16px;
        padding-bottom: 12px;
    }

    .requisites-list dt {
        font-size: 13px;
    }

    .requisites-list dd {
        font-size: 15px;
        margin-bottom: 16px;
    }
}

/* Page Preloader */
body.preloader-active:not(.page-loaded) {
    overflow: hidden;
}

body.preloader-active:not(.page-loaded) header,
body.preloader-active:not(.page-loaded) main,
body.preloader-active:not(.page-loaded) footer,
body.preloader-active:not(.page-loaded) section {
    opacity: 0;
    visibility: hidden;
}

body.preloader-active.page-loaded header,
body.preloader-active.page-loaded main,
body.preloader-active.page-loaded footer,
body.preloader-active.page-loaded section {
    opacity: 1;
    visibility: visible;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.page-preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.page-preloader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.page-preloader__background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.page-preloader__gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #f8f8f8 0%, #e0e0e0 25%, #f5f5f5 50%, #e8e8e8 75%, #f0f0f0 100%);
    background-size: 400% 400%;
    animation: gradientShift 25s ease infinite;
}

.page-preloader__airflow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.page-preloader__stream {
    position: absolute;
    width: 3px;
    height: 100%;
    background: linear-gradient(to bottom, 
        transparent 0%, 
        rgba(0, 0, 0, 0.08) 20%, 
        rgba(0, 0, 0, 0.12) 50%, 
        rgba(0, 0, 0, 0.08) 80%, 
        transparent 100%);
    animation: airStream 15s linear infinite;
    opacity: 0.7;
}

.page-preloader__stream::before {
    content: '';
    position: absolute;
    top: 0;
    left: -1px;
    width: 5px;
    height: 30%;
    background: linear-gradient(to bottom, 
        transparent 0%, 
        rgba(0, 0, 0, 0.15) 50%, 
        transparent 100%);
    animation: airPulse 3s ease-in-out infinite;
}

.page-preloader__stream--1 {
    left: 15%;
    animation-duration: 12s;
    animation-delay: 0s;
    background: linear-gradient(to bottom, 
        transparent 0%, 
        rgba(100, 181, 246, 0.2) 20%, 
        rgba(100, 181, 246, 0.35) 50%, 
        rgba(100, 181, 246, 0.2) 80%, 
        transparent 100%);
}

.page-preloader__stream--1::before {
    background: linear-gradient(to bottom, 
        transparent 0%, 
        rgba(100, 181, 246, 0.45) 50%, 
        transparent 100%);
}

.page-preloader__stream--2 {
    left: 35%;
    animation-duration: 14s;
    animation-delay: -2s;
}

.page-preloader__stream--3 {
    left: 55%;
    animation-duration: 13s;
    animation-delay: -4s;
    background: linear-gradient(to bottom, 
        transparent 0%, 
        rgba(100, 181, 246, 0.2) 20%, 
        rgba(100, 181, 246, 0.35) 50%, 
        rgba(100, 181, 246, 0.2) 80%, 
        transparent 100%);
}

.page-preloader__stream--3::before {
    background: linear-gradient(to bottom, 
        transparent 0%, 
        rgba(100, 181, 246, 0.45) 50%, 
        transparent 100%);
}

.page-preloader__stream--4 {
    left: 75%;
    animation-duration: 15s;
    animation-delay: -6s;
}

.page-preloader__stream--5 {
    left: 90%;
    animation-duration: 16s;
    animation-delay: -8s;
    background: linear-gradient(to bottom, 
        transparent 0%, 
        rgba(100, 181, 246, 0.2) 20%, 
        rgba(100, 181, 246, 0.35) 50%, 
        rgba(100, 181, 246, 0.2) 80%, 
        transparent 100%);
}

.page-preloader__stream--5::before {
    background: linear-gradient(to bottom, 
        transparent 0%, 
        rgba(100, 181, 246, 0.45) 50%, 
        transparent 100%);
}

.page-preloader__air-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.page-preloader__air-dot {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(0, 0, 0, 0.25);
    border-radius: 50%;
    animation: airFlow 20s linear infinite;
}

.page-preloader__air-dot:nth-child(1) {
    left: 10%;
    animation-duration: 18s;
    animation-delay: 0s;
    background: rgba(100, 181, 246, 0.4);
    width: 5px;
    height: 5px;
}

.page-preloader__air-dot:nth-child(2) {
    left: 25%;
    animation-duration: 22s;
    animation-delay: -2s;
}

.page-preloader__air-dot:nth-child(3) {
    left: 40%;
    animation-duration: 20s;
    animation-delay: -4s;
    background: rgba(100, 181, 246, 0.4);
    width: 5px;
    height: 5px;
}

.page-preloader__air-dot:nth-child(4) {
    left: 55%;
    animation-duration: 19s;
    animation-delay: -6s;
}

.page-preloader__air-dot:nth-child(5) {
    left: 70%;
    animation-duration: 21s;
    animation-delay: -8s;
    background: rgba(100, 181, 246, 0.4);
    width: 5px;
    height: 5px;
}

.page-preloader__air-dot:nth-child(6) {
    left: 85%;
    animation-duration: 23s;
    animation-delay: -10s;
}

.page-preloader__air-dot:nth-child(7) {
    left: 20%;
    animation-duration: 17s;
    animation-delay: -12s;
    background: rgba(100, 181, 246, 0.4);
    width: 5px;
    height: 5px;
}

.page-preloader__air-dot:nth-child(8) {
    left: 45%;
    animation-duration: 24s;
    animation-delay: -14s;
}

.page-preloader__air-dot:nth-child(9) {
    left: 65%;
    animation-duration: 18s;
    animation-delay: -16s;
    background: rgba(100, 181, 246, 0.4);
    width: 5px;
    height: 5px;
}

.page-preloader__air-dot:nth-child(10) {
    left: 80%;
    animation-duration: 22s;
    animation-delay: -18s;
}

.page-preloader__content {
    position: relative;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-preloader__percent {
    font-weight: 500;
    font-size: 48px;
    line-height: 100%;
    letter-spacing: -0.03em;
    color: #25262b;
    text-align: center;
}

@media (max-width: 1299px) {

    .product-single__price {
        width: 300px;
    }

}


@media (max-width: 1120px) {
    .header__soc {
        display: none;
    }

    header .btn.btn-orange.modal-js {
        display: none;
     }
}

@media (max-width: 991px) {

    .blog-single {
        padding: 0px 0 40px;
    }

    .product-single__wrapper {
        flex-direction: column;
    }

    .portfolio__title.titleblock.mb60 {
        padding: 0 20px;
    }

    .page-portfolio {
        padding: 10px 0 0;
    }

    .titleblock h1 {
        font-weight: 500;
        font-size: 32px;
    }

    .titleblock h1 {
        font-weight: 500;
        font-size: 32px;
    }

    .page-reviews {
        padding: 10px 0 0;
    }

    .product-single__info {
        padding: 32px;
        border: 0.5px solid #dedede;
        width: 100%;
    }

    .product-single__price {
        width: 100%;
    }

    .cataloghome__catalog.cataloghome__catalog__item {
        flex-direction: column;
    }

    .cataloghome__catalog__item .cataloghome__item.itemcatalog {
        width: 100%;
    }

    .product-single {
        padding: 0;
        }

    .product-single__image {
        position: relative;
        width: 100%;
        padding: 32px;
    }

    #hamburger-1 {
        display: block;
    }

    .menuhead .menu-item-has-children > a::after {
        display: none;
    }

    .header__menu.menuhead {
        display: none;
        position: absolute;
        background-color: #ffffff;
        top: 50px;
        left: 0;
        right: 0;
        z-index: 100;
        padding: 20px;
        border: 0.5px solid #E0E2E9;
        border-top: none;
        border-radius: 0 0 10px 10px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        transition: all 0.3s ease;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        pointer-events: none;
    }

    .menuhead .sub-menu a {
        padding: 8px 15px;
        font-weight: 400;
        font-size: 16px;
        line-height: 100%;
        letter-spacing: 0.01em;
        color: #1c1d1e;
        transition: all 0.3s ease;
        display: block;
        padding: 5px 0;
    }

    .menuhead .menu-item-has-children > .sub-menu {
        position: relative;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border-radius: 0;
        margin-top: 0;
        padding: 0;
        max-height: inherit;
        overflow: visible;
        transition: max-height 0.3s ease;
    }

    .cataloghome__title h1 {
        font-weight: 500;
        font-size: 32px;
    }

    .header__menu.menuhead.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        pointer-events: auto;
        display: flex;

    }

    .menuhead .sub-menu a:hover {
        opacity: 0.7;
        background-color: inherit;
    }

    .header__menu.menuhead.active ul {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        margin-top: 10px;
    }

    .header__right {
        margin-left: auto;
    }

    .cataloghome__catalog .cataloghome__item {
        width: 50%;
    }

    .cataloghome__title h2 {
        font-size: 28px;
    }

    .cataloghome__title h2,
    .titleblock h2,
    .contactformhome__title h2 {
        font-size: 28px;
    }

    .questions__col-text {
        font-weight: 600;
        font-size: 15rem;
        top: -35px;
    }

    .bloghome__item {
        padding: 32px;
        width: 50%;
    }

    .titlebl__title h1 {
        font-weight: 500;
        font-size: 50px
    }


}

@media (max-width: 768px) {

    .page-preloader__percent {
        font-size: 36px;
    }
    .header__phone.phonewr {
        display: none;
    }

    .header__wrapper {
        gap: 15px;
    }

    .container {
        padding: 12px 20px;
    }

    .titlebl__title h1 {
        font-size: 32px;
    }

    .titlebl {
        padding: 85px 20px 20px;
    }

    .ptb80 {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .cataloghome__title {
        padding: 0 20px;
    }

    .cataloghome__title h2 {
        font-size: 28px;
    }

    .cataloghome__catalog .cataloghome__item {
        width: 100%;
    }

    .cataloghome__catalog .cataloghome__item:nth-child(4) {
        width: 100%;
    }

    .cataloghome__catalog .cataloghome__item:nth-child(5) {
        width: 100%;
    }

    .questions {
        padding: 40px 0;
    }

    .questions__col-text {
        display: none;
    }

    .questions__col {
        width: 100%;
    }

    .questions__wrapper {
        flex-wrap: wrap;
    }

    .quiz-variables {
        width: 100%;
    }

    .questions__item__header {
        flex-wrap: wrap;
    }

    .questions__title {
        width: 100%;
        margin-left: 0;
    }

    .preim__title {
        max-width: 100%;
        margin-left: auto;
        width: 100%;
        padding-right: 0;
        padding: 0 20px;
    }

    .preim__item {
        width: 100%;
        padding: 20px;
    }

    .preimitem {
        min-height: auto;
    }

    .preimitem__title {
        margin-bottom: 20px;
    }

    .portfolio__title {
        max-width: 1310px;
        margin: 0 auto 40px;
        padding: 0;
    }

    .bloghome__title {
        max-width: 100%;
        margin-left: auto;
        width: 100%;
        padding-right: 0;
        padding: 0 20px;
    }

    .bloghome__item {
        margin-bottom: 20px;
        padding: 20px;
        min-height: auto;
    }

    .bloghomeitem__top {
        margin-bottom: 20px;
    }

    .footer__wrapper {
        display: flex;
        gap: 20px;
        flex-direction: column;
    }

    .footer__columns {
        display: flex;
        gap: 20px;
        max-width: 100%;
        flex-shrink: 1;
        justify-content: space-between;
        width: 100%;
        flex-direction: column;
    }

    .footer__info {
        width: 100%;
    }

    .footer__col {
        width: 100%;
    }



}

/* ===== PAGINATION ===== */
.pagination {
    display: flex;
    justify-content: center;
    margin-top: 60px;
}

.pagination ul {
    display: flex;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 0;
    flex-wrap: wrap;
    justify-content: center;
}

.pagination li {
    display: inline-block;
}

.pagination a,
.pagination span {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    height: 44px;
    padding: 8px 16px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s ease;
}

.pagination a:hover {
    background: var(--accent-orange);
    border-color: var(--accent-orange);
    color: #fff;
}

.pagination .current {
    background: var(--accent-orange);
    border-color: var(--accent-orange);
    color: #fff;
}

.pagination .prev,
.pagination .next {
    padding: 8px 20px;
}

.pagination .dots {
    background: transparent;
    border: none;
    color: var(--text-secondary);
}

/* ===== REVIEWS PAGE STYLES ===== */
.reviewspage__wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.reviewspage__empty {
    text-align: center;
    padding: 60px 20px;
    color: var(--text-secondary);
}

@media (max-width: 768px) {
    .reviewspage__wrapper {
        grid-template-columns: 1fr;
    }
    
    .pagination ul {
        gap: 4px;
    }
    
    .pagination a,
    .pagination span {
        min-width: 38px;
        height: 38px;
        padding: 6px 12px;
        font-size: 14px;
    }
}

/* ============================================
   Cookie Consent Banner
   ============================================ */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 99998;
    background: #fff;
    border-top: 0.5px solid #E0E2E9;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
    transform: translateY(100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.cookie-consent.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.cookie-consent.hiding {
    transform: translateY(100%);
    opacity: 0;
}

.cookie-consent__wrapper {
    max-width: 1310px;
    margin: 0 auto;
    padding: 20px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.cookie-consent__content {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    flex: 1;
}

.cookie-consent__icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f5f5;
    border-radius: 50%;
    color: #25262b;
}

.cookie-consent__icon svg {
    width: 20px;
    height: 20px;
}

.cookie-consent__text {
    flex: 1;
}

.cookie-consent__text p {
    margin: 0;
    font-weight: 400;
    font-size: 14px;
    line-height: 160%;
    color: #656565;
}

.cookie-consent__text a {
    color: #25262b;
    text-decoration: underline;
    transition: opacity 0.3s ease;
}

.cookie-consent__text a:hover {
    opacity: 0.7;
}

.cookie-consent__actions {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.cookie-consent__btn {
    padding: 12px 24px;
    font-family: inherit;
    font-weight: 500;
    font-size: 14px;
    line-height: 100%;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    white-space: nowrap;
}

.cookie-consent__btn--accept {
    background: #000;
    color: #fff;
    border-color: #000;
}

.cookie-consent__btn--accept:hover {
    background: #25262b;
    border-color: #25262b;
    transform: translateY(-2px);
}

.cookie-consent__btn--decline {
    background: transparent;
    color: #656565;
    border-color: #E0E2E9;
}

.cookie-consent__btn--decline:hover {
    border-color: #000;
    color: #000;
}

/* Cookie Consent Responsive */
@media (max-width: 768px) {
    .cookie-consent__wrapper {
        flex-direction: column;
        padding: 20px;
        gap: 20px;
    }
    
    .cookie-consent__content {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 12px;
    }
    
    .cookie-consent__text p {
        font-size: 13px;
    }
    
    .cookie-consent__actions {
        width: 100%;
        flex-direction: column;
        gap: 10px;
    }
    
    .cookie-consent__btn {
        width: 100%;
        padding: 14px 20px;
        text-align: center;
    }
}
