/*
Theme Name: Lakom Child
Author: moryachello@gmail.com
Version: 1.0
License: GNU General Public License v2 or later
Text Domain: lakom
*/
@font-face {
    font-family: 'ActayWide';
    src: url('assets/fonts/ActayWide-Bold.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Roboto';
    src: url('assets/fonts/Roboto-Variable.woff2') format('woff2-variations');
    font-weight: 100 900;
    font-style: normal;
}

@font-face {
    font-family: 'Roboto';
    src: url('assets/fonts/Roboto-Italic-Variable.woff2') format('woff2-variations');
    font-weight: 100 900;
    font-style: italic;
}

html {
    overflow-x: hidden;
}

hr {
    margin: 30px 0;
    width: 100%;
}

section:not(.nav-section) {
    margin-bottom: 120px;
}

img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* ==========================================================================
   #TYPOGRAPHY
   ========================================================================== */
h1, h2, h3 {
    font-family: var(--font-primary);
    text-transform: uppercase;
}

h1 {
    font-size: 55px;
    color: var(--color-text);
}

h2 {
    font-size: 45px;
}
h3 {
    padding: 30px 0;
}
h2:not(.top h2):not(.no-border), .catalog-header {
    padding-bottom: var(--spacing-lg);
    border-bottom: 0.5px solid var(--color-border);
}

.phone a,
.contacts-inf p a {
    text-decoration: none;
    color: #fff;
}

h2,
.item:not(.dop-nav .item) {
    font-family: 'ActayWide', Arial, sans-serif;
}

.contacts-inf p {
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 10px;
}
td {
    border: 1px solid #fff;
    padding: 10px;
}


.item a {
    color: #fff;
    opacity: 80%;
    font-size: 24px;
    text-decoration: none;
}

.btn,
.wc-block-components-button,
.woocommerce #review_form #respond .form-submit input,
.cert-btn a,
.woocommerce div.product form.cart .button,
.button.product_type_simple.add_to_cart_button.ajax_add_to_cart,
.wc-proceed-to-checkout a {
    font-family: 'ActayWide', Arial, sans-serif;
    font-size: 18px;
    color: #151515;
    padding: 15px 30px;
    border-radius: 10px;
    background-color: #FAB001;
    text-decoration: none;
    width: fit-content;
    text-align: center;
}

.wc-proceed-to-checkout a {
    margin: 0 auto;
}

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

body {
    background-color: var(--color-background);
    color: var(--color-text);
    font-family: var(--font-secondary);
}

#breadcrumbs {
    font-size: 0.9em;
    margin: 25px 0;
    color: #666;
}

#breadcrumbs a {
    text-decoration: none;
    color: #ffffff;
}

#breadcrumbs a:hover {
    text-decoration: underline;
}

.menu li {
    list-style: none
}

.menu li a {
    text-decoration: none;
    color: #fff;
    font-size: 18px;
}

.container {
    width: 100%;
    max-width: 1420px;
    margin: 0 auto;
    padding: 0 10px;
}

/* ==========================================================================
   #HEADER
   ========================================================================== */
.nav-section {
    border-bottom: 0.5px solid var(--color-border);
}

.nav {
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: space-between;

    .nav-border {
        width: 0.5px;
        height: 100%;
        background-color: var(--color-border);
    }
}

/* Logo */
.logo {
    height: 100%;
    /* border-right: 0.5px solid var(--color-border); */
    display: flex;
    align-items: center;
}

.logo img {
    max-height: 40px;
    width: auto;
}

/* Navigation */
.cat-menu,
.dop-menu {
    height: 100%;
    display: flex;
    align-items: center;
    gap: 25px;
    /* border-right: 0.5px solid var(--color-border); */
    justify-content: center;
}

.cat-menu {
    /* flex: 1.5; */
}

.dop-menu {
    /* flex: 2.5; */
}

.dop-nav {
    display: flex;
    gap: 25px;
}

.dop-nav .item {
    font-size: 18px;
    font-weight: 700;
}

.cat, .dop-nav .item a {
    font-size: 22px;
    font-weight: 700;
    color: var(--color-text);
    opacity: 1;
    text-decoration: none;
}

/* Action Section */
.nav .action {
    height: 100%;
    display: flex;
    gap: var(--spacing-sm);
    align-items: center;
    /* border-right: 0.5px solid var(--color-border); */
    /* flex: 2; */
    justify-content: center;
}

.contacts {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    font-size: 18px;
    font-weight: 700;
}

.burger {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    width: 25px;
    cursor: pointer;
}

.burger span {
    width: 100%;
    height: 3px;
    background-color: #fff;
    transition: all 0.3s ease;
}

.burger.active span {
    background-color: #FAB001;
}

.burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.burger.active span:nth-child(2) {
    opacity: 0;
}

.burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.more {
    position: relative;
    display: flex;
    gap: 10px;
    cursor: pointer;
}

.more span {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background-color: #fff;
    transition: background-color 0.3s ease;
}

.more.active span {
    background-color: #FAB001;
}

.mobile-dop-menu,
.mobile-categories {
    display: none;
    position: absolute;
    width: 300px;
    max-width: 300px;
    background: var(--color-background);
    z-index: 1000;
    padding: 20px;
    border: 1px solid var(--color-primary);
    border-radius: 10px;
}

.mobile-dop-menu.active,
.mobile-categories.active {
    display: block;
}

.dop-menu-list {
    list-style: none;
    padding: 0;
}

.dop-menu-list li {
    margin-bottom: 15px;
}

.dop-menu-list li:last-child {
    margin-bottom: 0;
}

.dop-menu-list a {
    color: var(--color-text);
    text-decoration: none;
    font-size: 16px;
    font-weight: 700;
    display: block;
    padding: 8px 0;
    opacity: 1;
    transition: opacity 0.3s ease;
    font-family: 'ActayWide', Arial, sans-serif;
    line-height: 1;
}

.dop-menu-list a:hover {
    opacity: 0.8;
    color: var(--color-primary);
}

.commerce {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.search-container {
    position: relative;
}

.search-toggle {
    font-size: 20px;
    cursor: pointer;
}

.search-form-wrapper {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    background-color: #fff;
    padding: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.fa-search:before {
    color: #fff;
}

.search-container.active .search-form-wrapper {
    display: block;
}

.search-field {
    width: 200px;
    padding: 5px 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.search-submit {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 18px;
    color: #333;
}

.cart {
    font-size: 20px;
}

@media (max-width: 992px) {
    .nav {
        height: 80px;
        padding: 0 20px;
    }

    .dop-nav {
        display: none;
    }

    .more {
        display: flex;
    }

    .cat {
        display: none;
    }

    .burger {
        display: flex;
    }

    .contacts {
        font-size: 16px;
    }
}

@media (max-width: 1108px) {
    .logo img {
        max-height: 30px;
        padding-right: 25px;
        width: auto;
    }
}

@media (max-width: 768px) {
    .nav {
        height: 70px;
        padding: 0 var(--spacing-md);
    }

    .logo {
        border-right: none;
    }

    .logo img {
        max-height: 30px;
        padding-right: 25px;
        width: auto;
    }

    .nav .action {
        display: none;
    }

    .burger,
    .more {
        display: flex;
    }

    .mobile-dop-menu,
    .mobile-categories {
        position: fixed;
        top: 110px;
        left: 50%;
        transform: translateX(-50%);
        width: 50%;
        max-width: 400px;
        background: var(--color-background);
        padding: var(--spacing-md);
        border-top: 2px solid var(--color-primary);
        z-index: 1000;
        max-height: calc(100vh - 70px);
        overflow-y: auto;
    }

    /* Добавляем стили для поиска в мобильном меню */
    .mobile-search {
        margin: 20px 0;
        padding: 15px;
        border-top: 1px solid var(--color-border);
        border-bottom: 1px solid var(--color-border);
    }

    .mobile-search .search-form {
        display: flex;
        gap: 10px;
    }

    .mobile-search .search-field {
        flex: 1;
        background: #fff;
        border: 1px solid var(--color-border);
        border-radius: 10px;
        padding: 10px;
        color: #151515;
    }

    .mobile-search .search-submit {
        background: var(--color-primary);
        border: none;
        border-radius: 10px;
        padding: 10px 20px;
        color: #151515;
        cursor: pointer;
    }

    .mobile-search .search-submit:hover {
        opacity: 0.9;
    }

    .mobile-dop-menu ul,
    .mobile-categories ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .mobile-dop-menu li,
    .mobile-categories li {
        padding: var(--spacing-sm) 0;
        border-bottom: 1px solid var(--color-border);
        border-radius:15px;
    }

    .mobile-dop-menu a,
    .mobile-categories a {
        color: var(--color-text);
        text-decoration: none;
        font-size: var(--font-size-md);
        display: block;
    }

    .mobile-dop-menu a:hover,
    .mobile-categories a:hover {
        color: var(--color-primary);
    }

    .prod_card {
        flex: 0 0 calc(49% - 10px);
    }
}

@media (max-width: 480px) {
    .nav {
        height: 60px;
        padding: 0 var(--spacing-sm);
    }

    .logo img {
        max-height: 25px;
        padding-right: 20px;
    }

    .mobile-dop-menu,
    .mobile-categories {
        top: 100px;
        max-height: calc(100vh - 60px);
    }

    .dop-menu-list a {
        font-size: 14px;
    }

    .prod_card {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .cutent-act-arch {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .cutent-act-arch .prod_card {
        width: 100%;
        max-width: 100%;
        flex: 0 0 100%;
    }

    .cutent-act-arch .products-list {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .cutent-act-arch .products-list .prod_card {
        width: 100%;
        max-width: 100%;
    }
}

/* Общий стиль для контейнера */
.commerce {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

/* Стили поиска */
.search-container {
    position: relative;
}

.search-toggle {
    font-size: 20px;
    cursor: pointer;
}

.search-form-wrapper {
    display: none;
    /* Прячем форму по умолчанию */
    position: absolute;
    top: 100%;
    right: 0;
    background-color: #fff;
    padding: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.fa-search:before {
    color: #fff;
}

.search-container.active .search-form-wrapper {
    display: block;
    /* Показываем форму при активации */
}

.search-field {
    width: 200px;
    padding: 5px 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.search-submit {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 18px;
    color: #333;
}

/* Стили корзины */
.cart {
    font-size: 20px;
    /* color: #333; */
}

/*Главный банер*/
.baner {
    margin: 25px 0 110px;
    display: flex;
    gap: 25px;
}

.baner .left {
    border-radius: 10px;
    width: 100%;
    height: 720px;
    padding: 30px 30px 50px 30px;
    background-image: url(assets/img/baner.png);
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex: 1;
    gap: 30px;
}

.baner .right {
    border-radius: 10px;
    width: 100%;
    height: 100%;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;

}

.baner .right .top {
    border-radius: 10px;
    height: 100%;
    /*background-color: #FAB001;*/
    padding: 0px;
    position: relative;
}

/*.baner .right .top::after {*/
/*    content: '';*/
/*    position: absolute;*/
/*    right: -10px;*/
/*    bottom: -30px;*/
/*    width: 277px;*/
/*    height: 269px;*/
/*    background-image: url(assets/img/baner-after.png);*/
/*    background-repeat: no-repeat;*/
/*    background-size: cover;*/
/*}*/

.baner .right .top h2 {
    font-size: 42px;
    color: #000;
}

.baner .right .bottom {
    height: 300px;
    position: relative;
    border: 0.5px solid rgba(254, 254, 254, 80%);
    border-right: 0px;
    position: relative;
    display: flex;
    gap: 15px;
}

.cat-nav {
    border-left: 0.5px solid rgba(254, 254, 254, 80%);
    flex: 1;
}

.baner .right .bottom .pic {
    background-image: url(assets/img/baner-bot.png);
    width: 50%;
    height: 100%;
    margin: 10px 0 10px 10px;
    background-repeat: no-repeat;
}

.baner .right .bottom .item {
    height: calc(100% / 4);
    display: flex;
    align-items: center;
    padding-left: 17px;

}

.baner .right .bottom .item:not(:last-child) {
    border-bottom: 0.5px solid rgba(254, 254, 254, 80%);
}



/*Каталог*/
.cat_tax {
    padding: 50px 0;
}

.cutent-act-arch .products-list {
    display: flex;
    gap: 20px;
}

.cutent-act-arch .products-list .prod_card {
    max-width: 33%;
}

/*блок каталог*/

.category-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 2fr;
    gap: 20px;
    margin: 50px 0;

    .category-item {
        position: relative;
        overflow: hidden;
        border-radius: 10px;
        height: 300px;
        transition: transform 0.3s ease;

        &:hover {
            transform: scale(1.02);
        }

        /* .category-bg {
            width: 100%;
            height: 300px;
            background-size: cover;
            background-position: center;
            position: relative;
            transition: all 0.4s ease;
            border-radius: 10px
        } */

        a {
            width: 100%;
            height: 100%;
            transition: opacity 0.3s ease;
        }

        picture {
            display: block;
            width: 100%;
            height: 100%;

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

        .category-title {
            position: absolute;
            bottom: 20px;
            left: 20px;
            margin: 0;
            padding: 5px 10px;
            color: #fff;
            font-size: 1.2em;
            border-radius: 4px;
            font-family: 'ActayWide', Arial, sans-serif;
        }

        &:nth-child(2), &:nth-child(7) {
            grid-column: 2/4;
        }

        &:nth-child(4) {
            grid-column: 1/3;
        }

        &:nth-child(5) {
            grid-column: 3/5;
        }

        &:first-of-type h3 {
            color: #000;
        }

        &:last-of-type {
            border: 1px solid #fff;

            a {
                display: flex;
                align-items: center;

                h3 {
                    position: static;
                    width: 50%;
                    text-align: center;
                }
            }

            picture {
                position: absolute;
                right: -125px;
            }
        }
    }
}

/*Статьи*/
.post-grid:not(.post-grid.rubr) {
    padding: 50px 0;
}

.grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-between;
    padding-top: 20px;
}

.grid-item {
    position: relative;
    flex: 1 1 calc(50% - 20px);
    /* Два элемента в строке */
    height: 300px;
    background-size: cover;
    background-position: center;
    border-radius: 10px;
    overflow: hidden;
}

.overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    /* Полупрозрачный фон */
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
    color: #fff;
    /* text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8); */
}

.post-title {
    font-size: 18px;
    margin-bottom: 10px;
    position: absolute;
    top: 20px;
    left: 20px;
    text-transform: uppercase;
    font-family: 'ActayWide', Arial, sans-serif;
}

.read-more {
    position: absolute;
    bottom: 20px;
    left: 20px;
    padding: 10px 20px;
    background: #FAB001;
    color: #151515;
    text-decoration: none;
    font-size: 18px;
    font-weight: 700;
    border-radius: 5px;
    padding: 15px 50px;
}

.read-more:hover {
    background: #FFA500;
}

.post-date {
    position: absolute;
    bottom: 20px;
    right: 20px;
    font-size: 0.9em;
    opacity: 0.8;
}

/*Контакты*/

.contact-box {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 20px;
    padding: 30px 0;

    .box {
        background-color: #fff;
        border-radius: 10px;
        color: #151515;
        flex: 1;
        padding: 24px;

        h3 {
            text-transform: uppercase;
            font-size: 24px;
            padding: 0;
            display: inline;
        }

        .info {
            font-family: var(--font-secondary);
            font-size: 18px;
            color: #696969;
            font-weight: 400;
            display: inline;

            a {
                text-decoration: none;
                color: #696969;
            }

            .social-icons {
                img {
                    width: 55px !important;
                    height: 55px !important;
                }
            }
        }

        .cont {
            text-wrap: nowrap;
        }
    }
}

.social-icons img {
    width: 55px;
    height: 55px;
}

.map-section {
    display: flex;
    gap: 20px;
}

.map-section .map {
    flex: 2;
}

.map-section .path {
    flex: 1;
}

.map-section h3 {
    font-family: 'ActayWide', Arial, sans-serif;
    font-size: 24px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.map-el,
.path-el {
    width: 100%;
    height: 540px;
    border-radius: 10px;
    background-color: #696969;
    border-radius: 10px;
    overflow: hidden;
}

/*Футер*/
.footer {
    border-top: 1px solid #9C9C9C;
    padding-top: 40px;
}

.footer-wrapper {
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    gap: 50px;
}

.footer-wrapper h3 {
    font-family: 'ActayWide', Arial, sans-serif;
    font-size: 24px;
    text-transform: uppercase;
    margin-bottom: 30px;
}

.firm-info {
    display: flex;
    flex-direction: column;
    gap: 10px;

}

.firm-info p {
    font-weight: 300;
    font-size: 14px;
}

.firm-info span {
    color: #FAB001;
    font-weight: 400;
}

.footer-logo {
    width: 174px;
}

.coop {
    font-size: 12px;
    color: #ccc;
    opacity: 60%;
}

/*Статья*/
.single-post {
    margin-bottom: 110px;
}

.art-content p {
    margin-bottom: 10px;
}

.art-title {
    font-size: 45px;
    text-transform: uppercase;
    font-family: 'ActayWide', Arial, sans-serif;
    margin-bottom: 30px;
}

/*О компании*/
.about {
    font-family: var(--font-secondary);
    font-weight: 400;
    font-size: 18px;
}

.about h1 {
    text-transform: uppercase;
    margin-bottom: 20px;
}

.about h3,
.delivery h3 {
    font-size: 24px;
    text-transform: uppercase;
    font-family: 'ActayWide', Arial, sans-serif;
    color: #FFC232;
}

.about h3 {
    padding: 20px 0 15px;
}

.delivery h3 {
    margin-bottom: 20px;
}

.about h4 {
    font-weight: 700;
    margin-top: 20px;
}

.about p,
.delivery p,
.about li,
.delivery li {
    margin-bottom: 5px;
    line-height: 30px;
}

.about ul {
    padding-left: 20px;
    margin-bottom: 20px;
    list-style-position: inside;
}

.about .yellow {
    color: #FFC232;
    font-weight: 700;
}

/*Вакансии*/
.vacancy-content {
    display: flex;
    gap: 20px;
}

.vacancy h1 {
    text-transform: uppercase;
    margin-bottom: 20px;
}

.vacancy h3,
.ur-info h3 {
    font-size: 24px;
    text-transform: uppercase;
    font-family: 'ActayWide', Arial, sans-serif;
    color: #FFC232;
    margin-bottom: 20px;
}

.vacancy p,
.vacancy li,
.ur-info p,
.ur-info li {
    margin-bottom: 5px;
    line-height: 30px;
}

.ur-info li {
    list-style: none;
}

.vacancy ol {
    padding-left: 20px;
    margin-bottom: 20px;
}

.vac-block {
    background: url(.png), linear-gradient(180deg, rgba(149, 149, 149, 0.13) 0%, rgba(3, 3, 3, 0.08) 100%);
    backdrop-filter: blur(51.5px);
    border-radius: 10px;
    padding: 40px 30px 30px;
    border: 1px solid rgba(255, 255, 255, 10%);
    max-width: 50%;
}

/*Форма*/
.form-content {
    display: flex;
    gap: 30px;
}

.form h3 {
    padding-bottom: 20px;
}

.form-content h3 {
    font-family: 'ActayWide', Arial, sans-serif;
    color: #151515;
    font-size: 24px;
    text-transform: uppercase;
}

.form-content .form,
.dir-form {
    flex: 1;
    border-radius: 10px;
    background-color: #fff;
    padding: 30px;
}

.rev {
    flex: 2;
    border-radius: 10px;
    background-color: #fff;
    padding: 30px;
}

.name-input,
.phone-inpit,
.message-input {
    background-color: #E6E2E2;
    height: 85px;
    border-radius: 10px;
    padding: 15px;
    color: #151515;
    outline: none;
    border: none;
    margin-bottom: 25px;
}


.wpcf7-list-item,
.wpcf7-response-output {
    color: #9C9C9C !important;
}

.wpcf7-form-control.wpcf7-submit,
[type="submit"] {
    font-family: 'ActayWide', Arial, sans-serif;
    font-size: 18px;
    color: #151515;
    padding: 15px 30px;
    border-radius: 10px;
    background-color: #FAB001;
    text-decoration: none;
    width: fit-content;
    margin-top: 25px;
    outline: none;
    border: none;
    cursor: pointer;
}

.rev-head {
    border-bottom: 1px solid #dcdcdc;
}

.rev-content {
    padding-top: 20px;
}

#review-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 400px;
}

#review-rating label {
    font-size: 2rem;
    color: #ccc;
    cursor: pointer;
}

#review-rating input[type="radio"]:checked+label {
    color: #ffa500;
}

.rev-content {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
}

.rev-content .left {
    width: 40%;
}

.rev-content .right {
    width: 50%;
}

.review-item {
    margin-bottom: 1.5rem;
}

.review-header {
    display: flex;
    gap: 25px;
    align-items: baseline;
    font-size: 0.9rem;
    font-weight: bold;
    border-bottom: 1px solid #ddd;
    padding-bottom: 0.5rem;
}

.review-text {
    margin-top: 0.5rem;
    font-size: 0.9rem;
    color: #333;
}


.review-date,
.review-name {
    font-size: 12px;
    font-weight: 600;
    color: #453C3C;
}

.review-rating {
    color: #fab001;
}

#review-form input, input.form-control, .form-content .form textarea,
#review-form [name="review_text"] {
    margin:10px 0;
    padding: 10px;
    border-radius: 10px;
    outline: none;
    border: 1px solid #ddd;
}

#review-form [name="review_rating"] {
    display: none;
}

#review-form label {
    color: #151515;

}
.check.box {
    color: #000;
    margin-top:20px;
}
.check.box a{
    text-decoration:none;
}
.check.box a strong {
    color: #FAB001;
    font-weight: 500;
    text-transform: none;
    text-decoration: none;
}
#review-rating label.highlight {
    color: #ffa500;
    /* Цвет подсветки для выбранных звёзд */
}

.ur-info {
    font-size: 18px;
}

.ur-info .container {
    display: flex;
    gap: 200px;
}

.wp-block-verse {
    padding-left: 20px;
    position: relative;
    margin-top: 20px;
}

.wp-block-verse:before {
    content: '';
    width: 2px;
    height: 100%;
    background-color: #FAB001;
    position: absolute;
    left: 0;
}

.wpcf7-list-item {
    font-size: 14px;
    line-height: normal;
}

.info-block,
.services-card {
    background: url(.png), linear-gradient(180deg, rgba(149, 149, 149, 0.13) 0%, rgba(3, 3, 3, 0.08) 100%);
    backdrop-filter: blur(51.5px);
    border-radius: 10px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 10%);
    text-align: center;
    margin-top: 20px;
}

.delivery-content span {
    color: #FAB001;
}

/*Возврат*/
.return-content h2,
.return-content h3,
.return-content h4 {
    font-family: 'ActayWide', Arial, sans-serif;
    text-transform: uppercase;
}

.return-content h2,
.return-content h4 {
    color: #ffa500;
    font-size: 18px;
}

.return-content h3 {
    font-size: 24px;
    padding: 20px 0;
}

.return-content p,
.return-content ul li,
.services-content p {
    margin-bottom: 20px;
}

.return-content ol {
    padding-left: 40px;
}

.return-content ol li {
    margin-bottom: 30px;

}

.return-content ol {
    counter-reset: li;
    list-style: none;
    /* Убираем стандартные маркеры */
    padding-left: 0;
    margin: 0;
}

.return-content ol li {
    position: relative;
    padding-left: 120px;
    /* Отступ для маркера */
    margin-bottom: 20px;
}

.return-content ol li::before {
    content: counter(li);
    /* Нумерация */
    counter-increment: li;
    /* Увеличение счётчика */
    position: absolute;
    top: 30%;
    left: 0;
    transform: translateY(-50%);
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    background: url('marker.png'), linear-gradient(180deg, rgba(149, 149, 149, 0.13) 0%, rgba(3, 3, 3, 0.08) 100%);
    backdrop-filter: blur(10px);
    /* Пример фильтра */
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
}

/*Услуги*/
.services p {
    margin-bottom: 20px;
}

.services-grid {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.services-card {
    flex: 1;
    padding: 15px 20px 20px;
    text-align: left;
}

.services-card a {
    text-decoration: none;

}

.services-card h3 {
    font-family: 'ActayWide', Arial, sans-serif;
    color: #ffa500;
    font-size: 16px;
    text-transform: uppercase;
    padding: 10px 0;
}

.services-card img {
    height: auto;
}

.category-content img {
    width: auto;
    margin-bottom: 30px;
}

/*Портфолио*/
.portfolio-grid {
    display: flex;
    gap: 20px;
    padding: 30px 0;
}

.portfolio-grid a {
    flex: 1;
}

.portfolio-card {
    background-size: cover;
    height: 300px;
    border-radius: 10px;
    position: relative;
}

.portfolio-card h3 {
    font-size: 45px;
    font-family: 'ActayWide', Arial, sans-serif;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    text-transform: uppercase;
}

.subcategory-list {
    margin: 30px 0;
    display: flex;
    gap: 20px;
}

.subcategory-item {
    max-width: 33%;
    height: 200px;
    border-radius: 10px;
    flex: 1;
    position: relative;
}

.subcategory-item a {
    text-decoration: none;

}

.subcategory-item h3 {
    color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    font-size: 32px;
    font-family: 'ActayWide', Arial, sans-serif;
}

/*Карточки продуктов*/
.prod-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 30px;
    width: 100%;
}

.prod_card {
    background-color: #fff;
    border-radius: 20px;
    padding: 10px;
    flex: 0 0 calc(24.6% - 15px);
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
}

@media (max-width: 768px) {
    .prod_card {
        flex: 0 0 calc(49% - 10px);
    }
}

@media (max-width: 480px) {
    .prod_card {
        flex: 0 0 100%;
    }
}

.prod_card a {
    text-decoration: none;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.prod-card-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    align-items: center;
}

.prod-card-image {
    width: 150px;
    margin: 20px auto;
    flex-shrink: 0;
}

.prod-card-title {
    font-size: 16px;
    color: #090909;
    text-align: center;
    text-transform: none;
    margin: 10px 0;
    flex-grow: 1;
}

.prod-card-prices {
    margin-bottom: 15px;
    text-align: center;
}

.prod-card-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.prod-card-tag {
    display: flex;
    display: flex;
    align-items: center;
    justify-content: center;
}

.prod-card-stock {
    font-size: 14px;
}

.price [aria-hidden="true"] {
    font-size: 14px;
}

.price ins[aria-hidden="true"] {
    font-size: 24px;
    font-weight: bold;
    color: #FAB001;
}

.button.add-to-cart {
    width: 230px;
    height: 54px;
    border-radius: 10px !important;
    background-color: #FAB001 !important;
    color: #151515 !important;
    display: flex !important;
    justify-content: center;
    align-items: center;
}

/*рубрики на главной*/
.portfolio-grid.main .portfolio-card {
    height: 300px;
    flex: 1;
    position: relative;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.portfolio-grid.main .portfolio-card .portfolio-title {
    font-family: 'ActayWide', Arial, sans-serif;
    font-size: 24px;
    text-transform: uppercase;
    color: #fff;
}

/*FAQ*/

/* Контейнер */
.faq-container {
    display: grid;
    grid-template-columns: 60% 40%;
    gap: 20px;
}

/* Левая колонка (Аккордеон) */
.accordion .accordion-item {
    margin-bottom: 10px;
    overflow: hidden;
    border:none;
}

.accordion-title {
    background: #ffffff;
    color: #151515;
    text-transform: uppercase;
    font-family: 'ActayWide', Arial, sans-serif;
    padding: 15px 80px 15px 15px;
    cursor: pointer;
    width: 100%;
    border: none;
    text-align: left;
    font-size: 16px;
    font-weight: bold;
    outline: none;
    border-radius: 20px;
    min-height: 85px;
    position: relative;
}

.accordion-title:after {
    content: '+';
    color: #FBBB0F;
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    border: 1px solid #FBBB0F;
    border-radius: 50%;
    width: 56px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.accordion-title.active::after {
    content: '-';
}

.accordion-content {
    margin-top: 10px;
    border-radius: 20px;
    display: none;
    padding: 15px;
    color: #000;
    padding: 20px;
    border-radius: 20px;
    background: url(.png), linear-gradient(180deg, rgba(149, 149, 149, 0.13) 0%, rgba(3, 3, 3, 0.08) 100%);
    backdrop-filter: blur(51.5px);
    border: 1px solid #454545;
}

/* Правая колонка (Форма) */
.faq-right {
    padding: 20px;
    border-radius: 20px;
    background: url(.png), linear-gradient(180deg, rgba(149, 149, 149, 0.13) 0%, rgba(3, 3, 3, 0.08) 100%);
    backdrop-filter: blur(51.5px);
    border: 1px solid #454545;
}

.faq-form h3 {
    margin-bottom: 20px;
    font-size: 20px;
    color: #ffffff;
}

/*Сертификаты*/
.cert-content {
    display: flex;
    gap: 20px;
    padding: 50px 0;
}

.cert-item {
    flex: 1;
    padding: 20px;
    border-radius: 20px;
    background: url(.png), linear-gradient(180deg, rgba(149, 149, 149, 0.13) 0%, rgba(3, 3, 3, 0.08) 100%);
    backdrop-filter: blur(51.5px);
    border: 1px solid #454545;
    display: flex;
    justify-content: center;
}

:where(figure) {
    text-align: center;
}

.cert-img img {
    width: 220px;
}

.cert-item .wp-block-group__inner-container {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

.cert-item h2 {
    font-family: 'ActayWide', Arial, sans-serif;
    font-size: 20px;
    text-align: center;
    border-bottom: none !important;
}

/*Страница категорий*/
.category-wrapper {
    display: grid;
    grid-template-columns: 30% 70%;
    gap: 20px;
}

.category-wrapper .content .wrapper {
    display: flex;
    gap: 20px;
}

.category-wrapper .category-description {
    bottom: 20px 0;
}

.cat_image img {
    width: 200px;
    height: 100px;
    object-fit: cover;
}

/*Продукт*/
.product-main-block {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.product-image {
    flex: 1;
}

.product-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.product-wide-block {
    margin-top: 20px;
}


.costum-product {
    margin-bottom: 100px !important
}

.costum-product h1 {
    font-size: 24px;
}

.costum-product .woocommerce div.product {
    margin-bottom: 100px;
}

.costum-product .product-data {
    margin-bottom: 100px;
}

.costum-product .woocommerce-product-attributes-item {
    padding: 10px 20px;
    border-radius: 20px;
    background: url(.png), linear-gradient(180deg, rgba(149, 149, 149, 0.13) 0%, rgba(3, 3, 3, 0.08) 100%);
    backdrop-filter: blur(51.5px);
    border: 1px solid #454545;
    border-spacing: 0;
    display: flex;
    gap: 10px;
    justify-content: space-between;
    margin-bottom: 10px;
    flex-wrap: wrap;
}

.costum-product .woocommerce table.shop_attributes th {
    text-align: left;
}

.costum-product .product-details-head {
    display: flex;
    gap: 10px;
    color: #696969;
}

.costum-product .price ins[aria-hidden="true"] {
    font-size: 24px;
    font-weight: bold;
    color: #ffffff;
    text-decoration: none;
    font-size: 30px;
    font-family: 'ActayWide', Arial, sans-serif;
}

.product-add-to-cart {
    display: flex;
    align-items: flex-end;
    gap: 20px;
    margin-bottom: 10px;
}

.costum-product .cart {
    display: flex;
    flex-direction: column;
    margin-bottom: 0px !important;
}

.costum-product .quantity .qty {
    height: 40px;
    width: 80px !important;
    margin: 15px 0;
}

.costum-product .onsale {
    position: relative !important;
    border-radius: 10px !important;
    background-color: #FAB001 !important;
    color: #151515 !important;
    font-size: 16px;
    font-family: 'ActayWide', Arial, sans-serif;
}

/* Стилизация для псевдо-элемента стрелок на поле ввода числа */
.costum-product input[type="number"]::-webkit-inner-spin-button {
    opacity: 1;
    height: 40px;
    width: 20px;
}

.costum-product .woocommerce-product-attributes-item__label {
    text-align: left !important;
}

.costum-product .shop_attributes td p {
    text-align: right !important;
}

.woocommerce div.product form.cart .button {
    width: 265px;
    height: 60px;
}

.popup-sale {
    font-size: 16px;
    font-family: 'ActayWide', Arial, sans-serif;
    color: #fff;
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    width: 265px;
    height: 60px;
    border-radius: 10px;
    background: url(.png), linear-gradient(180deg, rgba(149, 149, 149, 0.13) 0%, rgba(3, 3, 3, 0.08) 100%);
    backdrop-filter: blur(51.5px);
    border: 1px solid #454545;
}

.baners-info {
    display: flex;
    gap: 20px;
}

.baner-one,
.baner-two {
    flex: 1;
    border-radius: 10px;
    background: url(.png), linear-gradient(180deg, rgba(149, 149, 149, 0.13) 0%, rgba(3, 3, 3, 0.08) 100%);
    backdrop-filter: blur(51.5px);
    border: 1px solid #454545;
    padding: 15px;
    display: flex;
    gap: 20px;
    align-items: center;
}

.baner-one svg,
.baner-two svg {
    min-width: 40px;
}

.costum-product ol {
    counter-reset: li;
    /* Инициализация счетчика */
}

.costum-product ol li:not(.woocommerce div.product div.images .flex-control-thumbs li, .woocommerce #reviews #comments ol.commentlist li) {
    list-style-type: none;
    position: relative;
    padding-left: 60px;
    height: 46px;
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.costum-product ol li:not(.woocommerce-product-gallery li, .woocommerce #reviews #comments .commentlist>li):before {
    content: counter(li);
    /* Вставка текущего значения счетчика */
    counter-increment: li;
    /* Увеличение счетчика */
    position: absolute;
    left: 0;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: bold;
    border: 1px solid #FBBB0F;
    color: #fff;
    font-family: 'ActayWide', Arial, sans-serif;
}

.prod_card .ajax-gear {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.3);
    width: 100%;
    height: 100%;
    z-index: 2;
    display: none;
}

.woocommerce a.added_to_cart {
    display: none !important;
}

ul.products {
    display: flex;
    gap: 20px;
    padding: 50px 0 !important;
}

.woocommerce p.stars a::before {
    color: #FBBB0F;
}

.woocommerce table.shop_attributes tr:nth-child(even) th {
    width: 200px;
}

.btn-plus,
.btn-minus {
    height: 40px;
    width: 40px;
    background: transparent;
    outline: 0;
    box-shadow: none;
    border: 2px solid #fff;
    font-size: 24px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.btn-minus {
    border-radius: 10px 0 0 10px;
}

.btn-plus {
    border-radius: 0 10px 10px 0;
}

.woocommerce .quantity .qty {
    border: 2px solid #fff;
    background: transparent;
    color: #fff;
    font-size: 24px;
}

.quantity input[type="number"],
[name="coupon_code"] {
    height: 40px;
    font-size: 20px;
    padding: 0 10px;

}

.quantity input[type="number"] {
    max-width: 100px;
}

/* .quantity input[type="number"]::-webkit-outer-spin-button,
.quantity input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    text-align: center;
    display: none;
}

.quantity input[type='number'],
.quantity input[type="number"]:hover,
.quantity input[type="number"]:focus {
    appearance: none;
    -moz-appearance: textfield;
    text-align: center;
} */

.quantity .costum-input-group {
    display: flex;
    align-items: center;
}

.woocommerce .star-rating span::before {
    color: #fab001;
}

.woocommerce-review-link {
    text-decoration: none;
    color: #fff;
}

.woocommerce-Reviews-title {
    font-size: 24px;
}

.woocommerce #reviews #comments ol.commentlist {
    padding: 10px 0;
}

/*Корзина*/
.woocommerce-cart-form__cart-item.cart_item {
    border-radius: 10px;
    background: url(.png), linear-gradient(180deg, rgba(149, 149, 149, 0.13) 0%, rgba(3, 3, 3, 0.08) 100%) !important;
    backdrop-filter: blur(51.5px);
    border: 1px solid #454545 !important;
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 20px;
}

.shop_table .info {
    display: none;
}

.product-remove {
    position: absolute;
    top: 0;
    right: 25px;
}

a.remove {
    color: red;
    text-decoration: none;
    font-size: 24px;
    position: absolute;
}

.cart-a {
    text-decoration: none;
    color: #fff !important;
}

.woocommerce-cart-items .woocommerce-cart-item,
.cart-item-details {

    display: flex;
    align-items: center;
    gap: 30px
}

.woocommerce-page .cart-collaterals .cart_totals {
    width: 100% !important;
    float: none !important;
}

.cart-subtotal {
    display: none;
}

.order-total {
    margin-top: 30px;
}

.order-total span {
    font-size: 30px;
}

/*Значок корзины*/
/* styles for shopping cart */
#top-cart {
    min-width: 100px;
}

#top-cart .cart-items {
    font-size: 12px;
    display: inline-block;
    color: #fff;
}

#top-cart i {
    transition: .4s all ease;
    -webkit-transition: .4s all ease;
    -moz-transition: .4s all ease;
    -ms-transition: .4s all ease;
    -o-transition: .4s all ease;
    font-size: 24px;
}

#top-cart:hover i {
    transform: translateX(5px);
    -webkit-transform: translateX(5px);
    -moz-transform: translateX(5px);
    -ms-transform: translateX(5px);
    -o-transform: translateX(5px);
}

.fa {
    display: inline-block;
    font: normal normal normal 14px/1 FontAwesome;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

span.rur {
    font-family: rub-arial-regular;
    text-transform: uppercase;
}

span.rur span {
    display: none;
}

.fa-shopping-cart {
    right: 5px;
    position: relative;
}

.fa-shopping-cart:before {
    content: "\f07a";
}

.subcategory-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.subcategory-tags a {
    border-radius: 10px;
    background: url(.png), linear-gradient(180deg, rgba(149, 149, 149, 0.13) 0%, rgba(3, 3, 3, 0.08) 100%) !important;
    backdrop-filter: blur(51.5px);
    border: 1px solid #454545 !important;
    padding: 15px;
    display: flex;
    align-items: center;
    color: #fff;
    text-decoration: none;
}

.subcategory-tags a:hover {
    text-decoration: underline;
}

.cutent-act-arch {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.children-pages-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin: 30px 0;
}

.child-page-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: #fff;
    border-radius: 10px;
    flex: 1;
    min-width: calc(25% - 20px)
}

.child-page-card img {
    height: 190px;
}

.child-page-card:nth-child(5),
.child-page-card:nth-child(6) {
    min-width: calc(50% - 20px)
}

.child-page-card h3 {
    font-family: 'ActayWide', Arial, sans-serif;
    font-size: 16px;
    text-transform: uppercase;
    color: #151515;
    text-align: center;
}

.color-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-auto-rows: 100px;
    gap: 10px;
    width: 100%;
}

.color-card {
    padding: 5px;
}

@media screen and (max-width: 640px) {
    h1 {
        font-size: 24px;
    }

    h2,
    .baner .right .top h2 {
        font-size: 20px;
    }

    .baner {
        margin: 60px 0;
        flex-direction: column;
    }

    .baner .left {
        padding: 20px;
        gap: 20px
    }

    .baner .right .top {
        height: 150px;
    }

    .baner .right .top::after {
        width: 150px;
        height: 150px;
    }

    .item a {
        font-size: 18px;
    }

    .category-grid {
        display: flex;
        flex-direction: column;
    }

    .portfolio-grid {
        flex-direction: column;
    }

    .form-content,
    .rev-content {
        flex-direction: column;
    }

    .rev-content .right,
    .rev-content .left {
        width: 100%;
    }

    .portfolio-grid.main .portfolio-card .portfolio-title {
        font-size: 20px;
    }

    .portfolio-grid a {
        display: block;
    }

    .portfolio-grid.main .portfolio-card {
        padding: 20px;
        gap: 30px;
    }

    .contact-box,
    .map-section {
        flex-direction: column;
    }

    .name-input,
    .phone-inpit,
    .message-input {
        width: 100%;
        height: 50px;
    }

    .map-el,
    .path-el {
        height: 320px;
    }

    section:not(.nav-section) {
        margin-bottom: 50px;
    }

    .post-grid .grid {
        flex-direction: column;
    }

    .post-grid .grid .grid-item {
        flex: auto;
    }

    .footer-wrapper {
        flex-direction: column;
    }

    .faq-container {
        grid-template-columns: 100%;
        padding: 50px 0;
    }

    .accordion-title {
        font-size: 14px;
    }

    .vacancy-content {
        flex-direction: column;
    }

    .vac-block {
        max-width: 100%;
    }

    .ur-info .container {
        flex-direction: column;
        gap: 30px;
    }

    .return-content ol li::before {
        font-size: 16px;
        width: 30px;
        height: 30px;
        top: 3%;
    }

    .return-content ol li {
        padding-left: 40px;
    }

    .services-grid {
        flex-direction: column;
    }

    .portfolio-card h3 {
        font-size: 20px;
    }

    .portfolio-card {
        max-height: 200px;
    }

    .cert-content {
        flex-direction: column;
    }

    .product-main-block {
        flex-direction: column;
    }

    .costum-product .product-price {
        text-align: center;
    }

    .costum-product .cart {
        align-items: center;
    }

    .product-add-to-cart {
        flex-direction: column;
        align-items: center;
    }

    .baners-info {
        flex-direction: column;
    }

    .prod-grid ul.products {
        flex-direction: column;
    }

    .prod-grid ul.products .prod_card {
        max-width: 100%;
    }

    .woocommerce #reviews #comments h2 {
        font-size: 16px;
    }

    .products.columns-4 {
        flex-direction: column;
    }

    .products.columns-4 .prod_card {
        max-width: 100%;
    }

    .children-pages-grid {
        flex-direction: column;
    }

    .color-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        grid-auto-rows: 100px;
        gap: 10px;
        width: 100%;
    }
}
.single_woo .images-list, .single_woo .summary {background-color: #151515;padding-top: 1rem}

/*header*/

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

.burger {
    cursor: pointer;
    display: block;
    /* margin-left: 15px; */
    /* padding: 5px; */
}

.burger span {
    display: block;
    width: 25px;
    height: 3px;
    background: #fff;
    margin: 5px 0;
    transition: 0.3s;
}

.burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.burger.active span:nth-child(2) {
    opacity: 0;
}

.burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-categories {
    display: none;
    position: absolute;
    width: 300px;
    max-width: 300px;
    background: #151515;
    z-index: 1000;
    padding: 20px;
    border: 1px solid #FAB001;
    border-radius: 10px;
}

.mobile-categories.active {
    display: block;
}

.categories-list {
    list-style: none;
    padding: 0;

}

.mobile-categories.active> ul>li> a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 700;
    display: block;
    opacity: 1;
    padding:8px 0;
    transition: all 0.3s ease;
    font-family: 'ActayWide', Arial, sans-serif;
    line-height: 1;
}

.category-item > a:hover {
    opacity: 0.8;
    color: #FAB001;
}

.subcategories {
    list-style: none;
    padding-left: 20px;
    margin: 10px 0;
    display: none;

    /* right: -70%; */

}

.subcategories.active {
    display: block;
}

.subcategories li {
    margin-bottom: 10px;
}

.subcategories a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    opacity: 0.8;
    transition: all 0.3s ease;
    line-height: 1;
}

.subcategories a:hover {
    opacity: 1;
    color: #FAB001;
}

@media (max-width: 1300px) {
    .cat, .dop-nav .item a {
        font-size: 16px;
    }

    .dop-nav {
        gap: 20px;
    }

    .contacts {
        font-size: 16px;
    }

    .adress, .phone {
        font-size: 16px;
    }
}
.woocommerce-cart .cart-collaterals .cart_totals tr td, .woocommerce-cart .cart-collaterals .cart_totals tr th{
    border: none;
}
.woocommerce-cart .cart-collaterals .cart_totals table{
    margin-top: 30px
}
/*catalog*/

.filters-wrapper {
    padding: 15px;
    background: #fff;
    border-radius: 5px;
    margin-bottom: 20px;
}

.price-filter, .attribute-filter {
    margin-bottom: 20px;
}

.price-filter h3, .attribute-filter h3 {
    margin-top: 0;
    margin-bottom: 15px;
    color: #000;
    font-size:18px;
    font-family: 'ActayWide', Arial, sans-serif;
}

.price-inputs {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
}

.price-inputs input {
    width: 100%;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.attribute-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    padding: 5px 0;
    border-bottom: 1px solid #ddd;
}

.toggle-attribute {
    background: none;
    color:#000;
    border: none;
    font-size: 16px;
    cursor: pointer;
    padding: 0 5px;
    transition: transform 0.3s ease;
}

.toggle-attribute.active {
    transform: rotate(180deg);
}

.attribute-terms {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 10px;
    height: 0;
    overflow: hidden;
    transition: height 0.3s ease;
}

.attribute-terms.expanded {
    height: auto;
}

.attribute-term {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    padding: 5px 0;
    color: #000;
}

.attribute-term input[type="checkbox"] {
    width: 16px;
    height: 16px;
    accent-color: #FAB001;
    cursor: pointer;
}

.attribute-term input[type="checkbox"]:checked {
    background-color: #FAB001;
    border-color: #FAB001;
}

.attribute-term input[type="checkbox"]:focus {
    outline: 2px solid #FAB001;
    outline-offset: 2px;
}

.show-more {
    background: none;
    border: none;
    color: #96588a;
    cursor: pointer;
    padding: 5px 0;
    text-align: left;
    font-size: 14px;
}

.show-more:hover {
    text-decoration: underline;
}

.apply-filters {
    width: 100%;
    padding: 12px;
    background: #FAB001;
    color: #000;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    margin-top: 20px;
}

.apply-filters:hover {
    background: #000;
    color: #FAB001;
}

.filtered-products-count {
    margin-top: 20px;
    padding: 10px;
    background: #f8f8f8;
    border-radius: 4px;
    text-align: center;
    color:#000;
    font-size: 16px;
    font-weight:500;
    font-family: 'ActayWide', Arial, sans-serif;
}

.filtered-products-count span {
    font-weight: bold;
    color: #FAB001;
}
.tags-cloud>div {
    display: flex;
    flex-wrap: wrap;
}

.tags-cloud a.btn.sm {
    margin: 10px;
    margin-left: 0;
}
.addit_text{
    background:#fff;
    color:#000;
    padding:30px 20px;
    border-radius:20px;
}
.addit_text>.block.lg {
    line-height: 1.5;
}
article {
    display: flex;
    gap: 40px;
    margin: 20px 0;
}
/* ==========================================================================
   #VARIABLES
   ========================================================================== */
:root {
    /* Colors */
    --color-primary: #FAB001;
    --color-background: #151515;
    --color-text: #fff;
    --color-border: rgba(254, 254, 254, 0.8);

    /* Typography */
    --font-primary: 'ActayWide', Arial, sans-serif;
    --font-secondary: 'Roboto', Arial, sans-serif;

    /* Spacing */
    --spacing-xs: 5px;
    --spacing-sm: 10px;
    --spacing-md: 15px;
    --spacing-lg: 20px;
    --spacing-xl: 30px;

    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 10px;
    --radius-lg: 20px;

    /* Transitions */
    --transition-fast: 0.3s ease;
    --transition-normal: 0.4s ease;
}

@media (max-width: 1200px) {
    .prod_card {
        /*flex: 0 0 calc(32.6% - 14px);*/
    }
}

@media (max-width: 768px) {
    .prod-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }
    article {
        display: flex;
        flex-direction:column;
    }
}

@media (max-width: 480px) {
    .prod-wrapper {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .category-wrapper {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .category-wrapper .sidebar {
        width: 100%;
        order: 1;
    }

    .category-wrapper .content {
        width: 100%;
        order: 2;
    }

    .filters-wrapper {
        margin-bottom: 20px;
    }
}


.info-block {
    background: url(.png), linear-gradient(180deg, rgba(149, 149, 149, 0.13) 0%, rgba(3, 3, 3, 0.08) 100%);
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.faq-item {
    margin-bottom: 15px;
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
}

.faq-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.faq-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    padding: 10px 0;
}

.faq-header h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    color: #fff;
}

.toggle-icon {
    font-size: 24px;
    color: #666;
    transition: transform 0.3s ease;
}

.faq-item.active .toggle-icon {
    transform: rotate(45deg);
}

.faq-content {
    padding: 10px 0;
    display: none;
}

.faq-content.show {
    display: block;
    text-align: left;
}

.faq-text {
    color: #fff;
    line-height: 1.6;
}

.faq-categories {
    display: flex;
    gap: 10px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.category-btn {
    padding: 8px 16px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background: #fff;
    color: #666;
    cursor: pointer;
    transition: all 0.3s ease;
}

.category-btn.active,
.category-btn:hover {
    background: #f5f5f5;
    border-color: #ccc;
}
form.woocommerce-ordering {
    display: none;
}
blockquote {
    line-height: 1.2;
    margin: 30px 0;
}
.page-body>blockquote>h2>a{
    color: #fbbb0d;
}
.art-image {
    border-radius:10px;
    height: 500px;
    object-fit: cover;
}
.art-content,
.art-content * {
    color: white !important;
}
.art-content a{
    color:#FAB001 !important;
}
.img-fluid .wp-post-image{
    border-radius:10px;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 40px 0;
}

.services-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

.services-card:hover {
    transform: translateY(-5px);
}

.services-card-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.services-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.services-card-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.services-card-content h3 {
    margin: 0 0 10px 0;
    font-size: 18px;
}

.services-card-description {
    margin-bottom: 20px;
    flex-grow: 1;
}

.services-card-description p {
    margin: 0;
    color: #666;
    font-size: 14px;
    line-height: 1.5;
}

.services-card-button {
    margin-top: auto;
}



.btn-more:hover {
    background-color: #0056b3;
    color: #fff;
}

@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}
.btn-more {
    display: inline-block;
    font-family: 'ActayWide', Arial, sans-serif;
    color: #000;
    background:#ffa500;
    background-color: rgb(255, 165, 0);
    font-size: 16px;
    text-transform: uppercase;
    padding:10px 20px;
    border-radius:5px;
    transition:background-color 0.3s ease;
}
.img-fluid .wp-post-image{
    border-radius:10px;
}
.services-card-description {
    display: none;
}
.strong-table{
    color:#FAB001 !important;
}
img.col-12.art-image {
    width: 300px;
    height: 300px;
    margin: 0px auto;
}
.page-body img {
    width: 500px;
    border-radius: 20px;
}
figure.wp-block-image.size-full.cert-img img {
    width: auto;
}
form.form.form_vertical {
    display: flex;
    flex-direction: column;
    max-width: 350px;
    padding: 0;
}
.faq-right>form>.check.box>label{
    margin-top:20px;
    color:#fff;
}
.faq-right>form>textarea{
    margin: 10px 0;
    padding: 10px;
    border-radius: 10px;
    outline: none;
    border: 1px solid #ddd;
}
.wp-block-image img{
    width:90% !important;
}
.faq-header h3{
    text-align:left;
}
@media (max-width: 560px) {
    .ya-rev{
        width:100% !important;
    }
}
.woocommerce-form-coupon-toggle {
    display: none;
}
.sticky-top.bgw.p-3 {
    display: flex;
    flex-direction: column;
    max-width: 500px;
}
.baner-one, .baner-two{
    display:none;
}
.woocommerce-product-gallery.woocommerce-product-gallery--with-images.woocommerce-product-gallery--columns-4.images {
    max-width: 600px;
    width: 100%;
}

.page {
    padding: 40px 0;
}
.page-title {
    margin-bottom: 30px;
    font-size: 32px;
    font-weight: 600;
}
.certificates-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}
.certificate-block {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    padding: 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
}
.certificate-block:hover {
    transform: translateY(-5px);
}
.certificate-image {
    display: block;
    margin-bottom: 15px;
    overflow: hidden;
    border-radius: 4px;
    aspect-ratio: 3/4;
}
.certificate-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}
.certificate-image:hover img {
    transform: scale(1.05);
}
.certificate-title {
    font-size: 18px;
    margin-bottom: 15px;
    font-weight: 500;
    flex-grow: 1;
    color:#000;
}
.btn-primary {
    font-family: 'ActayWide', Arial, sans-serif;
    font-size: 18px;
    color: #151515;
    padding:15px 30px;
    border-radius:10px;
    background-color: #FAB001;
    text-decoration:none;
    width: fit-content;
}
.btn-primary:hover {
    background-color: #000;
    color: #fff;
}
.breadcrumbs {
    margin-bottom: 20px;
    color: #666;
}
.content {
    margin-top: 40px;
}

/* Адаптивность */
@media (max-width: 1200px) {
    .certificates-grid {
        gap: 20px;
    }
}
@media (max-width: 992px) {
    .certificates-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 576px) {
    .page {
        padding: 20px 0;
    }
    .page-title {
        font-size: 24px;
        margin-bottom: 20px;
    }
    .certificates-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    .certificate-block {
        padding: 15px;
    }
    .certificate-title {
        font-size: 16px;
    }
    .btn-primary {
        padding: 6px 15px;
    }
}
/*поиск*/
.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(5, 1fr);
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    gap: 30px;
}

/* Large screens (1200px and up) */
@media (min-width: 1200px) {
    .products-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 30px;
    }
}

/* Medium screens (992px to 1199px) */
@media (max-width: 1199px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }
}

/* Small screens (768px to 991px) */
@media (max-width: 991px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

/* Extra small screens (up to 767px) */
@media (max-width: 767px) {
    .products-grid {
        grid-template-columns: repeat(1, 1fr);
        gap: 15px;
    }
}

.category-item {
    position: relative;
    max-width: unset !important;
}

.subcategories {
    display: none;
    position: absolute;
    left: 100%;
    top: 0;
    background: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    min-width: 200px;
    z-index: 1000;
    padding: 10px 0;

    left: 60% !important;
    top: -100% !important;
}

.subcategories.active {
    display: block;
}

.subcategories li {
    padding: 5px 15px;
}

.subcategories li a {
    color: #333;
    text-decoration: none;
    display: block;
    padding: 5px 0;
}

.subcategories li a:hover {
    color: #06395E;
}

.search-container {
    position: relative;
    margin-right: 15px;
}

.search-toggle {
    display: flex;
    align-items: center;
    color: #fff;
    text-decoration: none;
    cursor: pointer;
}

.search-toggle:hover {
    color: #FAB001;
}

.search-form-wrapper {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    background: #fff;
    padding: 15px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    border-radius: 4px;
    z-index: 1000;
    min-width: 300px;
}

.search-form-wrapper.active {
    display: block;
}

.search-form {
    display: flex;
    align-items: center;
}

.search-field {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    margin-right: 10px;
    font-size: 14px;
}

.dis-mobile{
    display:none;
}
.search-submit {
    background: none;
    border: none;
    padding: 8px;
    cursor: pointer;
    color: #333;
    margin-top: 0;
}

.search-submit:hover {
    color: #06395E;
}

@media (max-width: 768px) {
    .search-form-wrapper {
        position: fixed;
        top: 78px;
        left: 0;
        right: 0;
        bottom: 465px;
        background: rgba(255,255,255,0.98);
        padding: 20px;
        display: none;
        z-index: 9999;
    }
    .dis-mobile{
        display:block;
    }
    .search-form-wrapper.active {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .search-form {
        width: 100%;
        max-width: 500px;
    }
    .search-field {
        width:300px;
    }
}
.woocommerce table.shop_attributes td{
    border:none !important;
}
.button.wp-element-button.product_type_simple{
    font-family: 'ActayWide', Arial, sans-serif;
    font-size: 18px;
    color: #151515;
    padding:
            15px 30px;
    border-radius:
            10px;
    background-color: #ddd;
    text-decoration:
            none;
    width: fit-content;
}

.desc_white h3 span,.desc_white p span, .desc_white h4 span{
    color: #fff !important;
}
.page-body,.block.lg.desc_white {
    line-height: 2;
    font-family: var(--font-primary);
}


.articles-pagination {
    grid-column: 1 / -1;
    display: flex;
    justify-content: center;
    margin: 40px 0 20px;
}

.articles-pagination .page-numbers {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 0;
    justify-content: center;
}

.articles-pagination .page-numbers li {
    margin: 0;
}

.articles-pagination .page-numbers a,
.articles-pagination .page-numbers span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    height: 42px;
    padding: 0 14px;
    font-family: 'ActayWide', Arial, sans-serif;
    font-size: 14px;
    text-decoration: none;
    color: #000;
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 5px;
    transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}

.articles-pagination .page-numbers a:hover {
    background: #ffa500;
    border-color: #ffa500;
    color: #000;
}

.articles-pagination .page-numbers .current {
    background: #ffa500;
    border-color: #ffa500;
    color: #000;
    font-weight: 700;
}

.articles-pagination .page-numbers .dots {
    border: none;
    background: transparent;
    min-width: auto;
}

/* Кнопка вверх */
.lst-scrolltop {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 999px;

  background: #FAB001;        
  color: #000;
  box-shadow: 0 10px 24px rgba(0,0,0,.18);

  display: grid;
  place-items: center;

  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity .2s ease, transform .2s ease, visibility .2s ease;

  cursor: pointer;
  z-index: 9999;
}

.lst-scrolltop.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lst-scrolltop:hover {
  transform: translateY(-2px);
}

.lst-scrolltop:focus-visible {
  outline: 3px solid rgba(255,255,255,.6);
  outline-offset: 2px;
}

.lst-scrolltop__icon {
  font-size: 18px;
  line-height: 1;
  font-weight: 700;
}

/* На мобилках чуть меньше */
@media (max-width: 480px) {
  .lst-scrolltop{
    width: 44px;
    height: 44px;
    right: 14px;
    bottom: 84px;
  }
}

/* ==========================================================================
   #404
   ========================================================================== */
.new-404> h1 {
    padding: 20px;
}
.new-404> h2:not(.top h2){
    border-bottom: none;
    padding: 30px 0;
}
#form-success {
    background: #FAB001;
    padding: 12px;
    margin: 20px 0;
    border-radius: 5px;
}
#form-error{
    background: red;
    padding: 12px;
    margin: 20px 0;
    border-radius: 5px;
}

.slider-banner .swiper-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background-color: #ffffff;
    z-index: 5;
    border-radius: 10px;
    transition: width 0.3s ease;
    cursor: pointer;
}

.slider-banner .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: var(--color-primary);
    width: 40px;
}

.slider-banner {
    margin-top: 60px;
}

.slider-banner picture {
    display: flex;
    justify-content: center;
    align-items: center;

    border-radius: 10px;
    border: 1px solid #ffffff;
    overflow: hidden;
}

.baner video {
    width: 100%;
    flex-grow: 1;
    object-fit: cover;
    border-radius: 10px;
    border: 1px solid #ffffff;
}

.catalog-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.btn.btn--download {
    text-transform: uppercase;
    font-size: 35px;
    padding: 5px 7px 1px;
}

.download-wrapper {
    margin-top: 30px;
    display: flex;
    justify-content: flex-end;

    .btn {
        font-size: 28px;
    }
}

.columns {
    display: flex;
    gap: 50px;

    .col {
        flex: 1;
    }
}

.about {
    .additional-blocks {
        margin-top: 60px;
        gap: 160px;

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

        .block {
            h2 {
                border: none;
            }

            video {
                width: 100%;
                object-fit: cover;
                border-radius: 10px;
                border: 1px solid #ffffff;
            }

            .news-list {
                display: flex;
                flex-direction: column;
                gap: 40px;

                .news-item-wrapper {
                    padding: 10px;
                    border-radius: 10px;
                    border: 1px solid #ffffff;

                    .news-item {
                        position: relative;
                        aspect-ratio: 21/10;
                        overflow: hidden;
                        background-position: center;
                        background-size: cover;
                        border-radius: 10px;
                    }
                }
            }

            .awards-list {
                display: flex;
                flex-direction: column;
                border-radius: 10px;
                border: 1px solid #ffffff;

                .award-item-wrapper {
                    padding: 10px;

                    .award-item {
                        border-radius: 10px;
                        background-color: #D9D9D9;
                        aspect-ratio: 21/12;
                    }
                }

                .award-item-wrapper:not(:first-of-type) {
                    border-top: 1px solid #fff;
                }
            }
        }
    }
}

.contacts-form-boss {
    .dir-form {
        h3 {
            color: #000;
        }
    }

    h3 {
        padding: 0;
    }

    .yellow-border {
        padding-left: 10px;
        margin-top: 10px;
        border-left: 1px solid #FFC232;
    }

    form {
        max-width: unset !important;
        gap: 15px;

        input, textarea {
            border: none;
            background-color: #E6E2E2;
            border-radius: 10px;
            resize: none;
            margin: 0;
            padding: 20px 10px;
        }

        button {
            cursor: pointer;
            position: static;
            border: none;
            align-self: flex-start;
        }
    }
}

.delivery {
    margin-top: 20px;

    .text-yellow {
        color: #FBBB0F;
    }

    p, ul {
        font-family: var(--font-secondary);
        font-weight: 400;
        font-size: 24px;
        max-width: 1094px;
    }

    ul {
        list-style-position: outside;
        padding-left: 20px;
    }

    blockquote {
        display: block !important;
        margin-top: 30px;
        margin-left: 20px;
        display: inline;
        max-width: 1094px;
        border-radius: 10px;
        background:
        linear-gradient(180deg, rgba(149, 149, 149, 0.13) 0%, rgba(3, 3, 3, 0.08) 100%) padding-box,
        linear-gradient(134.89deg, #A7A7A7 8.71%, rgba(75, 75, 75, 0.43) 74.95%) border-box;
        backdrop-filter: blur(103px);
        width: max-content;
        padding: 1px;

        p {
            padding: 30px 15px;
            background: linear-gradient(180deg, rgb(51 51 51) 0%, rgb(3 3 3) 100%);
            font-size: 18px;
            border-radius: 10px;
            margin-bottom: 0;
        }
    }

}
img.custom-logo.mobile-logo {
    display: none;
}
@media (max-width: 768px){
    img.custom-logo.mobile-logo {
        display: block;
    }
    .custom-logo.desktop-logo{
        display:none;
    }
}

.mobile-cart-icon {
    display: none;
    position: relative;
    margin-left: 10px;
}

.mobile-cart-icon svg {
    width: 24px;
    height: 24px;
    color: #fff;
}

.mobile-cart-count {
    position: absolute;
    top: -5px;
    right: -10px;
    background: #FAB001;
    color: #fff;
    font-size: 12px;
    border-radius: 50%;
    padding: 2px 6px;
    font-weight: bold;
}
.fancybox-container{height:auto!important;}
@media (max-width: 768px) {
    .mobile-cart-icon {
        display: block;
    }
    .nav > .nav-border:last-of-type { display: none; }
        
    .header-cart {
        display: none !important;
    }
    .nav {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
}

.form {
    max-width: 600px !important;}
.mobile-cart-icon{
    width:25px;
    margin: 0 5px 0 0px;
}

    @media (max-width: 768px) {
        .filters-wrapper {
            display: none !important;
            position: fixed;
            top: 0;
            left: 0;
            z-index: 1000;
            background: #fff;
            width: 100vw;
            height: 100vh;
            overflow-y: auto;
            padding: 20px;
            box-sizing: border-box;
        }
        .filters-wrapper.open {
            display: block !important;
        }
        .open-filter-btn {
            display: block !important ;
            position: fixed;
            bottom: 140px;
            right: 20px;
            z-index: 1100;
            background: #FAB001;
            color: #000;
            border: none;
            font-weight:800;
            border-radius: 10px;
            padding: 14px 30px;
            font-size: 18px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        }
    }
    @media (min-width: 769px) {
        .open-filter-btn {
            display: none !important;
        }
        .filters-wrapper {
            display: block !important;
            position: static !important;
            width: auto !important;
            height: auto !important;
        }
    }
    .close-filter-btn {
        display:block;
        margin-bottom:20px;
        padding:10px 18px;
        border:none;
        background:#ccc;
        border-radius:10px;
        font-size:16px;
    }
}