/* ==================== ОБЩИЕ ПЕРЕМЕННЫЕ ==================== */
:root {
    --primary: #db3c43;
    --primary-dark: #c12e35;
    --text-dark: #303030;
    --text-gray: #4a4a4a;
    --border-light: #e5e5e5;
    --bg-light: #f5f5f5;
}
.map-section {
    display: none;
}

/* Стили для слайдера цены */
.price-filter .noUi-target {
    background: #e0e0e0;
    border: none;
    box-shadow: none;
    height: 4px;
}
.price-filter .noUi-connect {
    background: #DB3C43;
}
.price-filter .noUi-handle {
    width: 16px !important;
    height: 16px !important;
    border-radius: 50%;
    background: #DB3C43;
    border: 2px solid white;
    box-shadow: 0 1px 3px rgba(0,0,0,0.2);
    cursor: pointer;
    right: -8.5px !important;
}
.price-filter .noUi-handle:before,
.price-filter .noUi-handle:after {
    display: none;
}

.price-input {
    width: 100%;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 8px 12px;
    font-size: 12px;
    font-weight: 500;
    color: #1a2a3a;
    background-color: #ffffff;
    transition: all 0.2s ease;
    outline: none;
}

.price-input:focus {
    border-color: #DB3C43;
    box-shadow: 0 0 0 3px rgba(219, 60, 67, 0.1);
}

.price-input:hover {
    border-color: #cbd5e1;
}

.price-input::-webkit-outer-spin-button,
.price-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.price-input[type=number] {
    -moz-appearance: textfield;
    appearance: textfield;
}

/* ==================== TOP BLOCK ==================== */
@media (min-width: 1600px) {
  .category-wrapper {
    max-width: 1574px;
    margin: 0 auto;
  }
}

@media (max-width: 1599.98px) {
  .category-wrapper {
    padding: 0 10px;
  }
}

.category-full {
    padding: 50px 0;
    background: url(/images/category-bg.png);
    /* background-size: 100% 100%; */
    background-repeat: no-repeat !important;
    background-position: center center !important;
    background-size: cover !important;
}

.top-block {
    /* display: grid; */
    /* grid-template-columns: 1fr 1fr; */
    margin: 0;
    display: flex;
    gap: 40px;
    align-items: start;
    justify-content: space-between;
}

/* Левая часть */
.top-block-left {
    width: calc(100% - 640px - 40px + 20px - 100px);
}

/* Левая часть - SEO текст */
.top-block-left h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.top-block-left h2, .top-block-right-title {
    /* font-size: 2rem; */
    margin: 25px 0 15px 0;
    font-weight: 700;
}
.top-block-left h2, .top-block-right h2 {
    font-size: 2rem;
    line-height: 1.25;
    margin-bottom: 15px;
    font-weight: 700;
    color: var(--text-dark);
}
.top-block-right h2 {
    /* font-size: 1.5rem; */
}

.top-block-left h2:first-child, .top-block-right-title {
    margin-top: 0;
}

.top-block-left h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 20px 0 12px 0;
}

.top-block-left h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 15px 0 10px 0;
}

.top-block-left h5 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 12px 0 8px 0;
}

.top-block-left h6 {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 10px 0 6px 0;
}

.top-block-left p {
    font-size: 1.25rem;
    line-height: 1.6;
    color: var(--text-gray);
    margin-bottom: 15px;
}

.top-block-left-inner p:last-child {
    margin-bottom: 0;
} 

.top-block-left ul,
.top-block-left ol {
    margin: 15px 0;
    padding-left: 25px;
}

.top-block-left li {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-gray);
    margin-bottom: 8px;
}

.top-block-left ul li {
    list-style-type: disc;
}

.top-block-left ol li {
    list-style-type: decimal;
}

.top-block-left ul ul,
.top-block-left ol ol,
.top-block-left ul ol,
.top-block-left ol ul {
    margin: 8px 0;
    padding-left: 20px;
}

.top-block-left a {
    color: var(--primary);
    text-decoration: none;
    border-bottom: 1px solid rgba(219, 60, 67, 0.3);
    transition: all 0.2s ease;
}

.top-block-left a:hover {
    color: var(--primary-dark);
    border-bottom-color: var(--primary-dark);
}

.top-block-left table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    font-size: 0.9rem;
    overflow-x: auto;
    display: block;
}

.top-block-left th,
.top-block-left td {
    border: 1px solid var(--border-light);
    padding: 10px 12px;
    text-align: left;
}

.top-block-left th {
    background: var(--bg-light);
    font-weight: 600;
    color: var(--text-dark);
}

.top-block-left td {
    color: var(--text-gray);
}

.top-block-left blockquote {
    margin: 20px 0;
    padding: 15px 20px;
    background: var(--bg-light);
    border-left: 4px solid var(--primary);
    font-style: italic;
    color: var(--text-dark);
    border-radius: 0 12px 12px 0;
}

.top-block-left strong,
.top-block-left b {
    font-weight: 700;
    color: var(--text-dark);
}

.top-block-left em,
.top-block-left i {
    font-style: italic;
}

.top-block-left img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    margin: 15px 0;
}

.top-block-left hr {
    margin: 25px 0;
    border: none;
    height: 1px;
    background: linear-gradient(90deg, var(--border-light), transparent);
}

/* Правая часть - слайдер */
.top-block-right {
    position: relative;
    width: 640px;
}

.top-block-right .form-content {
    padding: 40px;
    background: white;
    border-radius: 20px;
}
.light-effect {
    position: relative;
    /* background: rgba(255, 255, 255, 0.9); */
    backdrop-filter: blur(1px);
    border-radius: 20px;
    -webkit-backdrop-filter: blur(1px);
}
.top-block-left.light-effect {
    padding: 10px;
    margin: -10px;
}
.light-effect::before {
    content: '';
    position: absolute;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.9);
    z-index: -1;
}
.top-block-right.light-effect::before {
    inset: -80px;
    filter: blur(100px);
}
.top-block-left.light-effect::before {
    inset: -40px;
    filter: blur(50px);
}
.breadcrumbs.light-effect::before {
    inset: -40px;
    filter: blur(50px);
}

.slider-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    /* box-shadow: 0 20px 35px -10px rgba(0, 0, 0, 0.15); */
}

.slider {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 20px;
}

.slider-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.slide {
    flex-shrink: 0;
    width: 100%;
}

.slide img {
    width: 100%;
    height: auto;
    /* aspect-ratio: 600 / 400; */
    object-fit: cover;
    display: block;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.5rem;
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 10;
}

.slider-btn:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-50%) scale(1.05);
}

.prev {
    left: 15px;
}

.next {
    right: 15px;
}

.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: white;
    width: 24px;
    border-radius: 5px;
}

.dot:hover {
    background: white;
    transform: scale(1.2);
}

@media (max-width: 1459.98px) {
    .top-block-left {
        width: calc(100% - 640px - 40px + 20px - 25px);
    }
    .top-block-right.light-effect::before {
        inset: -40px;
    }
    .top-block-left h1 {
        font-size: 40px;
    }
}
@media (max-width: 1299.98px) {
    .top-block-left h1 {
        font-size: 34px;
    }
    .top-block-left p {
        /* font-size: 1rem; */
    }
    .top-block-left {
        width: calc(50%);
    }
    .top-block-right {
        width: calc(50% - 20px);
    }
    .top-block-left h2, .top-block-right h2 {
        font-size: 1.75rem;
    }
}
@media (max-width: 1199.98px) {
    .top-block-left h2, .top-block-right h2 {
        font-size: 1.5rem;
    }
    .top-block-right .form-content {
        padding: 30px;
    }
}

/* ==================== TAGAREA ==================== */
.tagarea {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.tagarea-row {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.tagarea-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* flex-wrap: wrap; */
    gap: 15px;
}

.tagarea-header h2 {
    font-size: 2rem;
    line-height: 1;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
}

.tagarea-nav {
    display: flex;
    gap: 10px;
}

.nav-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--bg-light);
    border: 1px solid var(--border-light);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease;
    font-size: 1.2rem;
    color: var(--primary);
}

.nav-btn:hover {
    background: var(--primary);
    color: white;
    transform: scale(1.05);
}

.tagarea-wrapper {
    width: 100%;
    position: relative;
}

/* Псевдоэлементы для размытия */
.tagarea-wrapper::before,
.tagarea-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 50px;
    pointer-events: none;
    z-index: 2;
    transition: opacity 0.3s ease;
}

/* Размытие справа */
.tagarea-wrapper::after {
    right: 0;
    background: linear-gradient(to right, transparent, white);
    opacity: 1;
}

/* Размытие слева */
.tagarea-wrapper::before {
    left: 0;
    background: linear-gradient(to left, transparent, white);
    opacity: 0;
}

/* Скрываем размытие справа когда дошли до конца */
.tagarea-wrapper.scroll-end::after {
    opacity: 0;
}

/* Показываем размытие слева когда прокрутили не в начало */
.tagarea-wrapper.scroll-start::before {
    opacity: 1;
}

/* Скрываем оба размытия если прокрутка не нужна */
.tagarea-wrapper.no-scroll::before,
.tagarea-wrapper.no-scroll::after {
    opacity: 0;
}

.tagarea-items {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    padding-bottom: 12px;
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: var(--primary) #e8e8e8;
    position: relative;
    z-index: 1;
}

.tagarea-items::-webkit-scrollbar {
    height: 2px !important;
}

.tagarea-items::-webkit-scrollbar-track {
    background: #e8e8e8;
    border-radius: 10px;
}

.tagarea-items::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 10px;
}

.tagarea-items::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

.tagarea-item {
    flex-shrink: 0;
    scroll-snap-align: start;
    background: var(--bg-light);
    border-radius: 40px;
    transition: all 0.25s ease;
    border: 1px solid var(--border-light);
}

.tagarea-item:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.tagarea-item a {
    display: block;
    padding: 7px 16px;
    text-decoration: none;
    color: var(--text-dark);
    /* font-size: 0.95rem; */
    font-weight: 500;
    white-space: nowrap;
    transition: color 0.25s ease;
}

.tagarea-item:hover a {
    color: white;
}

.products-container.list-view {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.view-toggle {
    color: #9ca3af;
    transition: all 0.2s ease;
    cursor: pointer;
    background: none;
    border: none;
}
.view-toggle.active, .view-toggle:hover {
    color: #db3c43;
}
.products-container.list-view .product-card-inner {
    max-width: unset;
    display: flex;
    /* flex-direction: row; */
    height: 345px;
}
.products-container.list-view .product-card-link {
    flex-direction: row;
    justify-content: space-between;
}
.products-container.list-view .product-card-buttons {
    flex-direction: row;
}
.products-container.list-view .product-card .product-right {
    display: flex;
    flex-direction: column;
    width: 100%;
}
.products-container.list-view .product-card-name {
    order: 1;
}
.products-container.list-view .product-card-materials {
    order: 2;
}
.products-container.list-view .product-card-chars {
    order: 3;
}
.products-container.list-view .product-card-price {
    order: 4;
}
@media (max-width: 1174.98px) {
    .products-container.list-view .product-card-hit {
        left: 12px;
        top: 12px;
    }
    .product-card-buttons button {
        font-size: 16px;
        padding: 10px 0;
    }
}

/* Адаптив */
@media (max-width: 767.98px) {
    .tagarea-header {
        /* flex-direction: column;
        align-items: flex-start; */
    }
    
    .tagarea-item a {
        /* padding: 7px 16px;
        font-size: 0.8rem; */
    }

    .nav-btn {
        width: 20px;
        height: 20px;
        font-size: 14px;
    }
    
    .tagarea-items {
        /* gap: 10px; */
    }
    
    .tagarea-wrapper::before,
    .tagarea-wrapper::after {
        width: 30px;
    }
    .tagarea-nav {
        display: none !important;
    }
}

/* ==================== ADVANTAGES BLOCK ==================== */

.advantages-main-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 30px;
}

.advantages-items {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
}

.advantages-item {
    background: #ffffff;
    border-radius: 20px;
    padding: 20px 12px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.advantages-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: rgba(219, 60, 67, 0.3);
}

.advantages-img {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
}

.advantages-img img {
    width: 70px;
    height: 70px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.advantages-item:hover .advantages-img img {
    transform: scale(1.05);
}

.advantages-item-title {
    /* font-size: 1.25rem; */
    font-weight: 600;
    color: var(--text-dark);
    /* margin-bottom: 12px; */
}

.advantages-text {
    font-size: 0.9rem;
    color: var(--text-gray);
    line-height: 1.5;
}
@media (max-width: 1174.98px) {
    .advantages-items {
        /* display: grid; */
        /* grid-template-columns: repeat(3, 1fr); */
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
    .advantages-item {
        width: calc(33.33333% - 10px);
    }
}

/* ==================== BOTTOM BLOCK ==================== */
.bottom-block {
    display: flex;
    /* display: grid;
    grid-template-columns: 1fr 1fr; */
    gap: 40px;
    align-items: start;
}
.bottom-block-left, .bottom-block-right {
    flex: 1;
    max-width: 50%;
}
.bottom-block-title {
    padding-bottom: 15px;
    /* margin-bottom: 30px; */
    font-weight: 700;
}
.bottom-block-title h2 {
    font-size: 1.95rem;
    font-weight: 700;
    color: var(--text-dark);
    position: relative;
}

.bottom-block-title:after {
    /* content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--primary);
    border-radius: 2px; */
}

.faq-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.faq-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.faq-item-question {
    padding: 18px 20px;
    font-weight: 600;
    font-size: 1rem;
    color: var(--text-dark);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    background: white;
}

.faq-item-question:before {
    content: '▶';
    font-size: 0.8rem;
    color: var(--primary);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-item-question:before {
    transform: rotate(90deg);
}

.faq-item-question:hover {
    background: var(--bg-light);
}

.faq-item-answer {
    max-height: 0;
    padding: 0 20px;
    color: var(--text-gray);
    line-height: 1.6;
    font-size: 0.9rem;
    overflow: hidden;
    transition: all 0.3s ease;
    background: #fafafa;
}

.faq-item.active .faq-item-answer {
    max-height: 200px;
    padding: 16px;
}

.form-content form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.9rem;
}

.form-group label span {
    color: var(--primary);
}

.form-group input,
.form-group textarea {
    padding: 12px 16px;
    border: 2px solid var(--border-light);
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(219, 60, 67, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 80px;
}

.checkbox-group {
    flex-direction: row;
    align-items: center;
    gap: 12px;
}

.checkbox-group input {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.checkbox-group label {
    cursor: pointer;
    font-weight: normal;
    color: var(--text-gray);
}

.checkbox-group a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
}

.checkbox-group a:hover {
    text-decoration: underline;
}

.submit-btn {
    background: var(--primary);
    color: white;
    border: none;
    padding: 14px 30px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.form-content input:not([type="checkbox"]), .form-content textarea {
    outline: 1px solid var(--gray);
    height: 55px;
    border-radius: 15px;
    font-size: 18px;
    padding: 10px 25px;
}
.form-content textarea {
    height: 120px;
}

.submit-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(219, 60, 67, 0.3);
}

.submit-btn:active {
    transform: translateY(0);
}

/* ==================== TEXT BOTTOM BLOCK ==================== */
.text-bottom-block h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 25px 0 15px 0;
}

.text-bottom-block h2:first-child {
    margin-top: 0;
}

.text-bottom-block h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 20px 0 12px 0;
}

.text-bottom-block h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 15px 0 10px 0;
}

.text-bottom-block h5 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 12px 0 8px 0;
}

.text-bottom-block h6 {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 10px 0 6px 0;
}

.text-bottom-block p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-gray);
    margin-bottom: 15px;
}

.text-bottom-block ul,
.text-bottom-block ol {
    margin: 15px 0;
    padding-left: 25px;
}

.text-bottom-block li {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-gray);
    margin-bottom: 8px;
}

.text-bottom-block ul li {
    list-style-type: disc;
}

.text-bottom-block ol li {
    list-style-type: decimal;
}

.text-bottom-block a {
    color: var(--primary);
    text-decoration: none;
    border-bottom: 1px solid rgba(219, 60, 67, 0.3);
    transition: all 0.2s ease;
}

.text-bottom-block a:hover {
    color: var(--primary-dark);
    border-bottom-color: var(--primary-dark);
}

.text-bottom-block table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    font-size: 0.9rem;
    overflow-x: auto;
    display: block;
}

.text-bottom-block th,
.text-bottom-block td {
    border: 1px solid var(--border-light);
    padding: 10px 12px;
    text-align: left;
}

.text-bottom-block th {
    background: var(--bg-light);
    font-weight: 600;
    color: var(--text-dark);
}

.text-bottom-block td {
    color: var(--text-gray);
}

.text-bottom-block blockquote {
    margin: 20px 0;
    padding: 15px 20px;
    background: var(--bg-light);
    border-left: 4px solid var(--primary);
    font-style: italic;
    color: var(--text-dark);
    border-radius: 0 12px 12px 0;
}

.text-bottom-block img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    margin: 15px 0;
}

.text-bottom-block hr {
    margin: 25px 0;
    border: none;
    height: 1px;
    background: linear-gradient(90deg, var(--border-light), transparent);
}

/* Планшет */
@media (min-width: 1024px) {
    .category-full .breadcrumbs {
        padding-bottom: 50px !important;
    }
}

@media (max-width: 1023.98px) {
    .top-block, .bottom-block {
        flex-direction: column;
    }

    .top-block-left, .top-block-right {
        width: 100%;
        flex: 1;
    }

    .top-block-left.light-effect {
        padding: unset;
        margin: unset;
    }
    
    .top-block-left h3,
    .text-bottom-block h3 {
        font-size: 1.35rem;
    }
    
    .advantages-items {
        /* grid-template-columns: repeat(3, 1fr);
        gap: 20px; */
    }
    
    /* .bottom-block {
        grid-template-columns: 1fr;
        gap: 30px;
    } */
    
    .tagarea {
        padding: 0;
    }
    
    .tagarea-row h2 {
        font-size: 1.75rem;
    }
    
    .tagarea-items {
        gap: 12px;
    }
    
    .tagarea-item a {
        padding: 5px 16px;
        font-size: 0.9rem;
    }
    
    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 1.3rem;
    }
}

/* Мобильный */
@media (max-width: 767.98px) {
    .top-block-left h2,
    .top-block-right h2,
    .tagarea-row h2,
    .advantages-main-title,
    .bottom-block-title h2,
    .text-bottom-block h2 {
        font-size: 1.5rem;
    }
    
    .top-block-left h3,
    .text-bottom-block h3 {
        font-size: 1.2rem;
    }
    
    .advantages-items {
        /* grid-template-columns: repeat(2, 1fr); */
        /* gap: 15px; */
    }
    .advantages-item {
        width: calc(50% - 10px);
    }
    
    .advantages-item {
        padding: 20px 15px;
    }
    
    .advantages-img img {
        width: 50px;
        height: 50px;
    }
    
    .bottom-block {
        /* gap: 25px; */
    }
    
    .bottom-block-title {
        /* margin-bottom: 20px; */
    }
    
    .faq-item-question {
        /* padding: 12px 15px;
        font-size: 0.9rem; */
    }
    
    .faq-item.active .faq-item-answer {
        /* padding: 0 15px 15px 15px; */
    }
    
    .form-group input,
    .form-group textarea {
        /* padding: 10px 12px; */
    }
    
    .submit-btn {
        /* padding: 12px 20px; */
    }
    
    .tagarea-items {
        gap: 10px;
        padding-bottom: 10px;
    }
    
    .tagarea-item a {
        /* padding: 7px 16px;
        font-size: 0.85rem; */
    }
    
    .slider-btn {
        width: 36px;
        height: 36px;
        font-size: 1.2rem;
    }
    
    .prev {
        left: 10px;
    }
    
    .next {
        right: 10px;
    }
    
    .dot {
        width: 8px;
        height: 8px;
    }
    
    .dot.active {
        width: 20px;
    }
    
    .text-bottom-block ul,
    .text-bottom-block ol,
    .top-block-left ul,
    .top-block-left ol {
        padding-left: 20px;
    }
}

.tagarea, .productarea, .text-bottom-block, .advantages-block, .bottom-block {
    margin: 50px 0;
}

@media (max-width: 1174.98px) {
    .top-block-left h2,
    .top-block-right h2,
    .tagarea-row h2,
    .advantages-main-title,
    .bottom-block-title h2,
    .text-bottom-block h2 {
        font-size: 1.6rem;
    }
    .tagarea, .productarea, .text-bottom-block, .advantages-block, .bottom-block {
        margin: 40px 0;
    }
}
@media (max-width: 767.98px) {
    .top-block-left h2,
    .top-block-right h2,
    .tagarea-row h2,
    .advantages-main-title,
    .bottom-block-title h2,
    .text-bottom-block h2 {
        font-size: 1.25rem;
    }
    .tagarea, .productarea, .text-bottom-block, .advantages-block, .bottom-block {
        /* margin: 30px 0; */
    }
}
@media (max-width: 639.98px) {
    .form-content input:not([type="checkbox"]), .form-content textarea {
        outline: 1px solid var(--gray);
        height: 34px;
        border-radius: 10px;
        font-size: 12px;
        padding: 0 10px;
    }
    .form-content textarea {
        height: 80px;
        padding: 10px;
    }
}
@media (max-width: 575.98px) {
    .top-block-left h1 {
        font-size: 28px;
    }
    .top-block-left p {
        font-size: 1rem;
    }
    .top-block-left.light-effect::before, .top-block-right.light-effect::before {
        inset: -20px;
    }
    .top-block {
        gap: 20px;
    }
    .top-block-right .form-content {
        padding: 20px;
    }
    .top-block-left h2, .top-block-right h2 {
        font-size: 1.25rem;
    }
    .advantages-items {
        /* grid-template-columns: repeat(1, 1fr); */
    }
     .advantages-item {
        width: 100%;
    }
}