/*
Theme Name: Plants Theme
Description: Кастомная тема для сайта о растениях
Version: 1.0
Author: Developer
*/

/* Подключение шрифтов Bounded */
@font-face {
    font-family: 'Bounded';
    src: url('assets/fonts/Bounded-Black.woff2') format('woff2'),
        url('assets/fonts/Bounded-Black.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Bounded';
    src: url('assets/fonts/Bounded-ExtraLight.woff') format('woff2'),
        url('assets/fonts/Bounded-ExtraLight.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Bounded';
    src: url('assets/fonts/Bounded-Regular.woff2') format('woff2'),
        url('assets/fonts/Bounded-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Bounded';
    src: url('assets/fonts/Bounded-Variable.woff2') format('woff2'),
        url('assets/fonts/Bounded-Variable.woff') format('woff');
    font-weight: 200;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Roboto';
    src: url('assets/fonts/Roboto-Black.woff2') format('woff2'),
        url('assets/fonts/Roboto-Black.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Roboto';
    src: url('assets/fonts/Roboto-Bold.woff2') format('woff2'),
        url('assets/fonts/Roboto-Bold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Roboto';
    src: url('assets/fonts/Roboto-Light.woff2') format('woff2'),
        url('assets/fonts/Roboto-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Roboto';
    src: url('assets/fonts/Roboto-Regular.woff2') format('woff2'),
        url('assets/fonts/Roboto-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Foglihten';
    src: url('assets/fonts/Foglihten.woff2') format('woff2'),
        url('assets/fonts/Foglihten.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('assets/fonts/Montserrat-Black.woff2') format('woff2'),
        url('assets/fonts/Montserrat-Black.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('assets/fonts/Montserrat-Bold.woff2') format('woff2'),
        url('assets/fonts/Montserrat-Bold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('assets/fonts/Montserrat-Light.woff2') format('woff2'),
        url('assets/fonts/Montserrat-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('assets/fonts/Montserrat-Regular.woff2') format('woff2'),
        url('assets/fonts/Montserrat-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'TildaSans';
    src: url('assets/fonts/TildaSans-Black.woff2') format('woff2'),
        url('assets/fonts/TildaSans-Black.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'TildaSans';
    src: url('assets/fonts/TildaSans-Bold.woff2') format('woff2'),
        url('assets/fonts/TildaSans-Bold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'TildaSans';
    src: url('assets/fonts/TildaSans-Light.woff2') format('woff2'),
        url('assets/fonts/TildaSans-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'TildaSans';
    src: url('assets/fonts/TildaSans-Regular.woff2') format('woff2'),
        url('assets/fonts/TildaSans-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

:root {
    --gold: #FEB07D;
    --brown: #655144;
    
    --light-gold: #A68A71;
    
    --blue: #066673;

    --violet: #CAA2F2;
    --violet-dark: #A55AF2;
    --dark: #60348C;
    --bg-dark: #1c153b;
    --light: #F4E8FF;
    --orange: #FEB07D;
    --white: #ffffff;
    
    --gradient-purple-blue: linear-gradient(180deg, #4a148c 0%, #3d1a5c 50%, #1a1a3e 100%);
}

.gradient-purple-blue {
    background: var(--gradient-purple-blue);
    background-attachment: fixed;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

img {
    max-width: 100%;
}

button {
    background: none;
    border: none;
    cursor: pointer;
}

a {
    color: var(--light);
    text-decoration: none;
    transition: all 0.3s ease;
}

ul,
p {
    margin: 0;
    padding: 0;
}

ul li {
    list-style-type: none;
}

body {
    background-color: var(--bg-dark);
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    bottom: -20%;
    right: 0;
    z-index: -1;
    background-image: url('assets/img/bg-new.svg');
    background-size: cover;
}

body {
    height: 100%;
    font-family: 'Montserrat', serif;
    font-size: 22px;
    line-height: 30px;
    font-weight: 400;
    color: var(--light);
}

.montserrat {
    font-family: 'Montserrat', serif;
}

.tilda-sans {
    font-family: 'TildaSans', serif;
}

.foglihten {
    font-family: 'Foglihten', serif;
}

.bounded {
    font-family: 'Bounded', serif;
}

.roboto {
    font-family: 'Roboto', serif;
}

.link-violet {
    color: var(--violet);
}

.auction-countdown {
    margin-top: 40px;
    margin-bottom: 80px;
}

.auction-countdown.is-hidden {
    display: none;
}

.auction-countdown__inner {
    position: relative;
    padding: 16px 0;
    text-align: center;
    letter-spacing: 0.08em;
    color: var(--gold);
    text-transform: uppercase;
}

.auction-countdown__inner::before,
.auction-countdown__inner::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 1px;
}

.auction-countdown__inner::before {
    content: "";
    top: -75px;
    width: 100%;
    height: 100px;
    background-image: url('./assets/img/banner-decor.svg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.auction-countdown__inner::after {
    bottom: 0;
    background: var(--light);
    opacity: 0.6;
}

.auction-countdown__label,
.auction-countdown__value {
    font-size: 34px;
    line-height: 44px;
    color: var(--gold);
}

.screen {
    padding: 40px 0;
}

.screen_hero {
    padding-top: 184px;
}

.screen_padding {
    padding: 172px 0;
    padding-bottom: 156px;
}

.screen_back {
    position: relative;
}

.screen_back .wrapper {
    position: relative;
    z-index: 2;
}

.screen_slider {
    padding-bottom: 80px;
}

.decor-line {
    position: relative;
}

.decor-line::before {
    content: "";
    position: absolute;
    top: 30px;
    left: 0;
    right: 0;
    width: 90%;
    height: 56px;
    margin: auto;
    background-image: url('assets/img/separator.svg');
    background-size: 100%;
    background-position: center;
    background-repeat: no-repeat;
}

.screen_slider.decor-line::before {
    top: -60px;
}

.main-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    /* transform: scale(0.9);
    transform-origin: top center; */
}

main {
    flex: 1;
}

.wrapper {
    width: 100%;
    max-width: 1480px;
    margin: 0 auto;
    padding: 0 40px;
}

.big-wrapper {
    width: 100%;
    max-width: 1704px;
    margin: 0 auto;
    padding: 0;
}

.bounded-font {
    font-family: 'Bounded', serif;
}

.header {
    padding: 22px 0;
}

.header__wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.header__wrapper_bottom {
    padding-top: 16px;
    padding-bottom: 16px;
    margin-top: 10px;
}

.header__wrapper .logo-link {
    min-width: 77px;
}

.main-menu {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 32px;
}

.main-menu a {
    font-size: 38px;
    line-height: 120%;
    font-weight: 400;
    color: var(--light);
}

.main-menu a:hover {
    color: var(--orange);
}

.main-menu .current-menu-item > a,
.main-menu .current_page_item > a {
    color: var(--gold);
}

.mobile-menu {
    display: none;
    order: 2;
    width: 32px;
}

.btn-primary {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    min-width: 120px;
    max-width: 430px;
    padding: 12px 42px;
    font-size: 38px;
    line-height: 120%;
    font-weight: 400;
    color: var(--white);
    text-align: center;
    background-color: var(--violet-dark);
    border: 1px solid transparent;
    border-radius: 44px;
}

.btn-secondary {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    min-width: 120px;
    padding: 10px 25px;
    font-size: 18px;
    line-height: 24px;
    font-weight: 400;
    color: var(--white);
    text-align: center;
    background-color: var(--violet-dark);
    border: 1px solid transparent;
    border-radius: 24px;
}

.btn-third {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    min-width: 208px;
    padding: 8px;
    font-size: 18px;
    line-height: 24px;
    font-weight: 400;
    color: var(--gold);
    text-align: center;
    background-color: transparent;
    border: 1px solid var(--gold);
    border-radius: 32px;
}

.header__wrapper .btn-primary {
    min-width: 180px;
}

.hero {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.hero__item_center {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}

.hero__item_margin {
    margin-bottom: 140px;
}

.hero .btn-primary {
    width: 100%;
    max-width: 500px;
}

.title-block {
    margin-bottom: 82px;
}

.main-title {
    margin-top: 0;
    margin-bottom: 56px;
    font-size: 227px;
    font-weight: 300;
    line-height: 120%;
    color: var(--light);
}

.small-title {
    margin-top: 0;
    margin-bottom: 28px;
    font-size: 64px;
    font-weight: 400;
    line-height: 120%;
    color: var(--gold);
}

.small-title_center {
    text-align: center;
}

.small-title_uppercase {
    text-transform: uppercase;
}

.small-title_big {
    font-size: 80px;
}

.small-title_violet {
    color: var(--violet);
}

.small-title_white {
    color: var(--white);
}

.small-title_decor-br-1440 {
    display: none;
}

.small-title_decor-br-1024 {
    display: none;
}

.tagline {
    margin-top: 25px;
    margin-bottom: 59px;
    font-size: 38px;
    line-height: 120%;
    color: var(--violet);
    text-align: center;
}

.products-count {
    font-size: 22px;
    line-height: 120%;
    font-weight: 400;
    color: var(--violet);
    text-align: center;
}

.info {
    font-size: 28px;
    line-height: 120%;
    font-weight: 400;
    color: var(--white);
}

.info p {
    margin-bottom: 24px;
}

.info_tagline {
    font-size: 36px;
    line-height: 120%;
    font-weight: 400;
}

.info__banner {
    margin-top: 16px;
    padding: 29px 24px;
    font-size: 28px;
    line-height: 120%;
    background-color: #5759BF52;
    border-radius: 24px;
}

.border-img {
    padding: 6px;
    background: transparent;
    box-shadow: 0 0 0 1px var(--violet-dark);
}

.feature-list {
    position: relative;
    display: flex;
    gap: 46px;
    align-items: flex-start;
}

.feature-list li {
    position: relative;
    width: 23%;
}

.feature-card {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
}

.feature-card__img {
    width: 75px;
    height: 75px;
    margin-bottom: 5px;
    border-radius: 100%;
    overflow: hidden;
    flex-shrink: 0;
}

.feature-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 100%;
}

.feature-card__item_info {
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}

.feature-card__tagline {
    font-size: 24px;
    line-height: 120%;
    color: var(--violet);
}

.feature-card__title {
    font-size: 32px;
    line-height: 120%;
    color: var(--white);
    font-weight: 400;
}


.ark {
    border-radius: 600px 600px 0 0;
}

.circle {
    border-radius: 120px / 127px;
}

.mat {
    position: absolute;
    z-index: 1;
    filter: url(#outline);
    transition: all 0.4s ease;
}

.card {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    min-width: 250px;
    border-radius: 24px;
}

.plants-swiper .card {
    background: #FAF6FE0D;
}

.card__top {
    position: relative;
    z-index: 2;
    height: 245px;
}

.card__link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.card__bottom {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    min-height: 52px;
    margin-bottom: 12px;
    padding: 0 16px;
}

.auction-active .card__bottom {
    padding: 0 16px 0 16px;
}

.product-gallery .swiper-slide {
    padding: 4px;
}

.card__img {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    aspect-ratio: 3 / 2;
    border-radius: 16px;
    overflow: hidden;
}

.product-gallery .card__img {
    height: 100%;
}

.card__img img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
}

.card__info {
    display: flex;
    flex-direction: column;
    gap: 5px;
    text-align: left;
    min-width: 0;
    flex: 1 1 auto;
}

.card__auction-label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    align-self: flex-start;
    padding: 2px 8px;
    border-radius: 6px;
    font-size: 22px;
    line-height: 120%;
    letter-spacing: 0.04em;
    color: var(--light);
    background: transparent;
}

.card__auction-label--active {
    background: var(--violet-dark);
    color: var(--light);
}

.card__auction-label--finished {
    background: #60348c;
    color: var(--light);
}

.card__title {
    font-size: 22px;
    line-height: 120%;
    color: var(--white);
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
}

.card__price {
    font-size: 18px;
    line-height: 120%;
    color: var(--orange);
}

.card__price-text {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    line-height: 20px;
    color: var(--violet);
}

.card__price-text-sold {
    margin-bottom: 8px;
    font-size: 22px;
    line-height: 120%;
    color: var(--violet);
}

.sticker {
    position: absolute;
    bottom: 23px;
    left: 0;
    padding: 8px;
    font-size: 24px;
    line-height: 120%;
    color: var(--dark);
    background: var(--orange);
    border-radius: 0 6px 6px 0;
}

.auction-active .border-img {
    box-shadow: 0 0 0 3px var(--violet-dark);
}

.card-auction-active {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 50%;
    background: #F1D7C61A;
    background-position: center 50%;
    border-radius: 0 0 24px 24px;
}

.auction-active .card__btns {
    padding: 0 13px 16px 13px;
}

.auction-active .card__bottom {
    padding: 0 16px 0 16px;
}


.footer__top {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 32px 0;
    color: var(--gold);
}

.footer__top::before {
    content: "";
    position: absolute;
    top: -17px;
    left: 0;
    right: 0;
    width: 100%;
    height: 30px;
    margin: auto;
    background-image: url('assets/img/divider-footer.svg');
    background-size: 100%;
    background-position: center;
    background-repeat: no-repeat;
}

.footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding-bottom: 32px;
}

.footer__top .main-menu a {
    font-size: 32px;
    line-height: 120%;
}

.footer__item {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer__item-line {
    display: flex;
    gap: 17px;
}

.footer__item:nth-child(2) .footer__item-line {
    justify-content: flex-end;
}

.footer__item-line__contacts {
    display: flex;
}

.footer__item-line__contacts .email-link {
    margin-left: 17px;
}

.footer__item-line-rekv br {
    display: none;
}

.umarta {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--light);
}

.umarta a {
    position: relative;
    top: 5px;
}

.umarta svg {
    fill: var(--white);
}

.umarta_mobile {
    display: none;
}

.wrapper-link {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.requisites,
.email-link,
.privacy-link {
    font-size: 22px;
    line-height: 120%;
}

.email-link:hover,
.privacy-link:hover {
    color: var(--gold);
}

.footer .main-menu .current-menu-item > a,
.footer .main-menu .current_page_item > a,
.footer .main-menu li.current-menu-item a,
.footer .main-menu li.current_page_item a {
    color: var(--gold) !important;
}

.requisites {
    line-height: 160%;
}

.br-desktop {
    display: block;
}

.br-mobile {
    display: none;
}

/* Стили для Swiper слайдера */
.plants-swiper {
    position: relative;
    padding: 20px 0 60px 0;
}

.plants-swiper .swiper-wrapper {
    /* margin: 0 10rem; */
    padding: 15px 0;
    position: relative;
    z-index: 1;
}

.plants-swiper .swiper-slide {
    height: auto;
    display: flex;
    justify-content: center;
}

.plants-swiper .swiper-slide .card {
    width: 100%;
    min-width: 250px;
    max-width: 400px;
}

.plants-swiper .swiper-slide .card.circle,
.plants-swiper .swiper-slide .card.ark {
    max-width: 400px;
}

.swiper-button-wrapper {
    position: relative;
    z-index: 5;
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-top: 35px;
}

.plants-swiper .swiper-button-next,
.plants-swiper .swiper-button-prev {
    position: relative;
    width: 56px;
    height: 56px;
    left: 0;
    right: 0;
    background-color: transparent;
    border: 1px solid var(--gold);
    border-radius: 50%;
    color: var(--gold);
    opacity: 0.4;
    transition: all 0.3s ease;
    outline: none;
    z-index: 6;
    pointer-events: auto;
    touch-action: pan-y;
}

.plants-swiper .swiper-button-next:hover,
.plants-swiper .swiper-button-prev:hover {
    opacity: 1;
}

.plants-swiper .swiper-button-next::after,
.plants-swiper .swiper-button-prev::after {
    font-size: 20px;
    font-weight: bold;
}

/* Стили для кнопок карточек */
.card__btns {
    position: relative;
    z-index: 2;
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: space-between;
    padding: 0 12px 24px 12px;
}

.card__btns a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.card__btns a img {
    width: 20px;
    height: 20px;
}

.about-content {
    display: flex;
    justify-content: space-between;
}

.about-content__item {
    width: 49%;
    color: var(--white);
}

.about-content__item .btn-primary {
    width: 100%;
    max-width: 500px;
}

.about-content .small-title {
    margin-bottom: 24px;
}

.about-content .small-title {
    margin-bottom: 24px;
}

.about-content .info_italic {
    margin-bottom: 40px;
}

.product-top {
    display: flex;
    gap: 42px;
}

.product-slider {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.product-info {
    flex: 1;
}

.product-gallery {
    display: flex;
    gap: 16px;
    flex: 1;
    max-width: 640px;
}

.product-meta {
    margin-bottom: 40px;
}

.product-row {
    display: flex;
    gap: 16px;
    justify-content: space-between;
    align-items: flex-end;
    padding: 8px 0;
    color: var(--violet);
    border-bottom: 1px dashed rgba(255, 255, 255, 0.2);
}

.product-row_label {
    width: 245px;
    font-size: 20px;
    line-height: 120%;
    opacity: 0.6;
}

.product-row_value {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--light);
    text-align: right;
}

.product-description {
    margin-bottom: 28px;
    font-size: 24px;
    line-height: 1.6;
    color: var(--light);
}

.product-description .small-title {
    margin-bottom: 28px;
    font-size: 38px;
    line-height: 1.6;
}

.shipping-period {
    margin-bottom: 48px;
    font-size: 20px;
    line-height: 30px;
    color: var(--violet);
    text-align: center;
}

.product-info_bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.product-price {
    font-size: 34px;
    line-height: 44px;
    color: var(--gold);
}

.product-sold {
    margin-left: auto;
    font-size: 34px;
    line-height: 44px;
    color: var(--gold);
}

.product-sold .card__price-text-sold {
    margin-bottom: 0;
    font-size: 34px;
    line-height: 44px;
    color: var(--white);
}

.in-cart-link {
    display: block;
    width: 136px;
    height: 40px;
}

.in-cart {
    position: relative;
    display: flex;
    justify-content: center;
    padding: 5px 16px;
    font-size: 24px;
    line-height: 120%;
    color: var(--light);
    border-radius: 24px;
    background-color: #ffffff33;
}

.in-cart::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 16px;
    width: 16px;
    height: 3px;
    margin: auto;
    background-image: url('assets/img/minus.svg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.in-cart::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    right: 16px;
    width: 16px;
    height: 15px;
    margin: auto;
    background-image: url('assets/img/plus.svg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.in-favorite-link {
    display: inline-block;
    padding-bottom: 5px;
    font-size: 20px;
    line-height: 120%;
    font-style: italic;
    color: var(--light);
    border-bottom: 1px dashed var(--light);
}

.back {
    display: inline-block;
    padding-bottom: 5px;
    font-size: 20px;
    line-height: 120%;
    font-style: italic;
    color: var(--light);
    font-family: 'Georgia', serif;
    border-bottom: 1px dashed var(--light);
}

.back__absolute {
    position: absolute;
    top: -47px;
    left: 0;
    bottom: 0;
    margin: auto;
    height: 26px;
}

#main-swiper {
    flex: 1;
    height: 565px;
    overflow: hidden;
}

#thumbs-swiper {
    width: 56px;
    height: 520px;
}

#thumbs-swiper .swiper-slide {
    width: 56px !important;
    height: 56px !important;
    padding: 0;
    border-radius: 8px;
}

#thumbs-swiper .swiper-slide-active {
    border: 2px solid var(--violet-dark);
}

#thumbs-swiper .card__img {
    width: 53px;
    height: 53px;
    border-radius: 8px;
}


/* Стили для мобильного меню */
.mobile-menu-open {
    display: flex !important;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--dark);
    z-index: 1000;
    padding: 80px 20px 20px;
}

.mobile-menu-open .main-menu {
    flex-direction: column;
    gap: 30px;
    text-align: center;
}

/* Мобильная ссылка "Войти" в бургер-меню */
.header .mobile-login-link {
    display: none;
}

.header .mobile-menu-open .mobile-login-link {
    display: block;
    margin: 0 auto;
    margin-top: 20px;
    width: 200px;
}

.mobile-menu.active {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1001;
}

/* Анимации */
.animate-in {
    animation: fadeInUp 0.6s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Стили для фокуса */
.focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 2px;
}

/* Стили для ошибок форм */
.error {
    border-color: #ff4444 !important;
    box-shadow: 0 0 5px rgba(255, 68, 68, 0.3);
}

/* WordPress Block Editor Styles */
.wp-block-heading {
    margin: 0 0 1em 0;
}

.wp-block-heading.has-text-align-center {
    text-align: center !important;
}

.wp-block-heading.has-text-align-left {
    text-align: left !important;
}

.wp-block-heading.has-text-align-right {
    text-align: right !important;
}

.wp-block-paragraph {
    margin: 0 0 1em 0;
}

.wp-block-paragraph.has-text-align-center {
    text-align: center !important;
}

.wp-block-paragraph.has-text-align-left {
    text-align: left !important;
}

.wp-block-paragraph.has-text-align-right {
    text-align: right !important;
}

/* Общие стили для выравнивания текста */
.has-text-align-center {
    text-align: center !important;
}

.has-text-align-left {
    text-align: left !important;
}

.has-text-align-right {
    text-align: right !important;
}

/* Стили для страницы каталога */
.decor-title {
    position: relative;
    margin-bottom: 80px;
    font-size: 76px;
    line-height: 100%;
    font-weight: 400;
    font-family: 'Foglihten', serif;
    color: var(--white);
    text-align: center;
}

.decor-title__orange {
    color: var(--orange);
}

.decor-title__small {
    margin-bottom: 16px;
    font-size: 64px;
    text-transform: uppercase;
}

.filters-counter {
    position: absolute;
    top: -3px;
    right: -22px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    color: var(--dark);
    font-size: 14px;
    font-weight: 600;
    font-style: normal;
    line-height: 17px;
    padding: 0px 6px;
    background: var(--gold);
    border-radius: 100%;
}

.filters-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    z-index: 2000;
    width: 412px;
    padding: 24px;
    backdrop-filter: blur(15px);
    background: rgb(83 83 83 / 20%);
    border-radius: 24px;
}

/* Стили для формы поиска */
.filter-form {
    width: 400px;
}

.search-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    padding: 4px;
    border-bottom: 1px solid var(--violet-dark);
}

.search-input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    font-size: 24px;
    color: var(--light);
    opacity: 0.5;
}

.search-input::placeholder {
    color: var(--light);
    opacity: 0.7;
}

.search-button {
    position: absolute;
    right: 0;
    bottom: 14px;
    width: 28px;
    height: 16px;
    color: var(--light);
}

.search-results-info {
    text-align: center;
    margin-top: 20px;
    color: var(--light);
    font-size: 16px;
}

.search-results-info span {
    color: var(--gold);
    font-weight: bold;
}

/* Стили для групп фильтров */
.filter-group {
    display: flex;
    flex-direction: column;
    gap: 24px;
    justify-content: space-between;
}

.filter-item {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
}

.filter-item_auction-type {
    margin-bottom: 20px;
}

.auction-type-filter {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 4px;
    border: 1px solid var(--violet-dark);
    border-radius: 24px;
}

.auction-type-btn {
    padding: 11px 35px;
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
    color: var(--violet);
}

.auction-type-btn:hover {
    color: var(--gold);
}

.auction-type-btn.active {
    color: var(--gold);
    border: 1px solid var(--violet-dark);
    border-radius: 24px;
}

.filter-item_price {
    display: block;
}

.filter-item_price label {
    opacity: 0.6;
}

.price-currency {
    color: var(--light);
}

.filter-item__price::before {
    content: "₽";
    display: inline-block;
    font-size: 24px;
    color: var(--light);
}

.filter-item label {
    width: fit-content;
    min-width: 69px;
    font-size: 18px;
    color: var(--violet);
}

.filter-input,
.filter-input--culture,
.filter-select {
    width: 300px;
    padding: 12px 8px;
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--brown);
    color: var(--light);
    font-size: 24px;
    outline: none;
    transition: all 0.3s ease;
}

.filter-input {
    width: 90px;
}

.filter-input--culture {
    width: 300px;
}

.filter-input:focus,
.filter-select:focus {
    border-color: var(--brown);
    background: rgba(255, 255, 255, 0.1);
}

.filter-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.filter-input--culture::placeholder {
    color: var(--light);
}

.filter-select {
    cursor: pointer;
    appearance: none;
    background-image: url('data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2224%22%20height%3D%2224%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%3E%3Cpath%20d%3D%22M6%209L12%2015L18%209%22%20stroke%3D%22%23ffffff%22%20stroke-width%3D%222%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%2F%3E%3C%2Fsvg%3E');
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 16px;
    padding-right: 40px;
}

.filter-select option {
    background-color: var(--brown);
    color: var(--light);
    padding: 8px;
}

.price-inputs {
    display: flex;
    justify-content: space-between;
}

.price-input-wrapper {
    width: 47%;
}

.filter-input {
    width: 100%;
}

.price-label {
    color: var(--light);
}

/* Стили для кнопки сброса фильтров */
.filter-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    margin-top: 24px;
}

.reset-filters-btn {
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    padding: 12px 0;
    color: var(--light);
    font-size: 16px;
    font-style: italic;
    cursor: pointer;
    transition: all 0.3s ease;
}

.reset-filters-btn::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--brown);

}

.reset-filters-btn svg {
    color: var(--light);
}

/* Кнопка применить фильтры - только для мобильной версии */
.apply-filters-btn {
    display: none;
    /* Скрываем на десктопе */
    align-items: center;
    background: var(--brown);
    border: 1px solid var(--light);
    padding: 12px 24px;
    color: var(--light);
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.apply-filters-btn:hover {
    background: var(--light);
    color: var(--brown);
}

.catalog-grid {
    display: grid;
    grid-gap: 32px;
    grid-template-columns: 23.5% 23.5% 23.5% 23.5%;
    grid-template-rows: repeat(4, auto);
    justify-content: space-between;
}

.catalog-grid__item {
    position: relative;
}

.box {
    display: flex;
    align-items: center;
    justify-content: center;
}

.box .card {
    width: 100%;
    height: 100%;
    background: #FAF6FE0D;
    color: inherit;
    border-radius: 24px;
}

.empty-card {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    color: #fff;
    font-size: 14px;
}

/* Стили для карточек в каталоге */
.catalog-grid .card {
    width: 100%;
    height: 100%;
}


/* Состояния для каталога */
.empty-state,
.error-state {
    text-align: center;
    padding: 50px 20px;
}

.empty-state h3,
.error-state h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: var(--light);
}

.empty-state p,
.error-state p {
    font-size: 16px;
    color: var(--light);
    opacity: 0.8;
}

.region-filter {
    position: relative;
}

.region-toggle {
    display: flex;
    align-items: center;
    gap: 6px;
    width: 100%;
    padding: 10px 12px;
    padding-left: 0;
    border: 0;
    background: transparent;
    color: var(--light);
    cursor: pointer;
    border-bottom: 1px solid var(--violet);
    background-image: url(data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2224%22%20height%3D%2224%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%3E%3Cpath%20d%3D%22M6%209L12%2015L18%209%22%20stroke%3D%22%23ffffff%22%20stroke-width%3D%222%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%2F%3E%3C%2Fsvg%3E);
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 16px;
}

.region-toggle svg {
    opacity: .8;
}

.region-panel {
    position: absolute;
    top: 48px;
    left: 0;
    width: 100%;
    background: rgb(43 31 97 / 91%);
    border: 1px solid rgba(241, 215, 198, .25);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .35);
    padding: 12px;
    z-index: 50;
}

.region-search {
    position: relative;
}

.region-search input {
    width: 100%;
    padding: 10px 30px 10px 12px;
    background: transparent;
    color: var(--light);
    border: 0;
    border-bottom: 1px solid var(--violet);
    outline: none;
}

.region-search-icon {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    opacity: .8;
}

.region-list {
    max-height: 220px;
    overflow: auto;
    margin-top: 10px;
    padding-right: 4px;
}

.region-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 8px 6px;
    font-size: 14px;
    color: var(--light);
}

.region-item input[type="checkbox"] {
    appearance: none;
    position: relative;
    top: 5px;
    min-width: 16px;
    min-height: 16px;
    background-color: transparent;
    border: 1px solid var(--light);
    border-radius: 4px;
}

.region-item input[type="checkbox"]:checked {
    background-color: var(--light);
    border-color: transparent;
}

.region-item label {
    cursor: pointer;
}

.region-dropdown {
    flex-grow: 1;
}

.filters-toggle {
    position: relative;
    padding: 0;
    font-size: 24px;
    color: #8347BF;
    display: flex;
    align-items: center;
    gap: 8px;
}

.filters-toggle.active {
    color: var(--violet);
}

.filters-toggle::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    border-bottom: 1px dashed #8347BF;
}

.filters-toggle.active svg path {
    stroke: var(--violet);
}

.filters-toggle.active::before {
    border-bottom: 1px dashed var(--violet);
}

/* Счетчик активных фильтров */
.filter-counter {
    position: absolute;
    top: -3px;
    right: -22px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    padding: 0 6px;
    background: var(--gold);
    color: var(--dark);
    border-radius: 100%;
    font-size: 14px;
    font-weight: 600;
    font-style: normal;
    line-height: 17px;
}

/* Десктоп: панель видна как обычный блок */
.filters-panel {
    display: contents;
    position: static;
    right: auto;
    width: auto;
    max-width: none;
    height: auto;
    background: transparent;
    backdrop-filter: none;
    border-left: 0;
    z-index: auto;
    transition: none;
    padding: 0;
    box-shadow: none;
}

.filters-panel__header {
    display: none;
}

.modal[style*="display: flex"],
.modal[style*="display:flex"] {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    height: 100vh !important;
    height: 100dvh !important; /* для мобильных браузеров */
    z-index: 1000 !important;
}

.modal-overlay {
    position: absolute;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    inset: 0;
}

.modal-dialog {
    position: relative;
    z-index: 1001;
    width: 90%;
    max-width: 400px;
    margin: 0;
    padding: 24px 32px;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.2);
    border-radius: 24px;
    flex-shrink: 0;
}

.modal-dialog .btn-primary {
    width: 100%;
}

.modal-title {
    margin-top: 0;
    margin-bottom: 40px;
    font-weight: 400;
    font-size: 24px;
    line-height: 32px;
}

.modal-close {
    position: absolute;
    right: 32px;
    top: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
}

.faq-item {
    margin-bottom: 56px;
}

.faq-question {
    margin-bottom: 16px;
    font-size: 28px;
    line-height: 120%;
    color: var(--violet);
}

.faq-answer {
    font-size: 22px;
    font-weight: 400;
    line-height: 120%;
    color: var(--light);
}

.faq-answer a {
    color: var(--violet);
}

/* Auction Empty Message */
.auction-empty-message {
    text-align: center;
    padding: 60px 20px;
    color: var(--light);
}

.auction-empty-message h3 {
    margin: 0 0 24px 0;
    font-size: 56px;
    line-height: 100%;
    font-weight: 400;
    color: var(--gold);
}

.auction-empty-message p {
    font-size: 28px;
    line-height: 120%;
    margin: 0 0 16px 0;
    margin-left: auto;
    margin-right: auto;
}

.auction-empty-message p a {
    color: var(--violet-dark);
    transition: opacity 0.3s ease;
}

.auction-empty-message a:hover {
    opacity: 0.7;
}

.auction-empty-message .btn-primary {
    display: inline-block;
    margin-top: 24px;
    max-width: 500px;
    text-decoration: none;
}

/* Finished Auctions Accordion */
.finished-auctions-accordion {
    margin-top: 60px;
}

.auction-accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 32px 0;
    cursor: pointer;
    border-top: 1px dashed rgba(255, 255, 255, 0.2);
    border-bottom: 1px dashed rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.auction-accordion-header:hover {
    opacity: 0.8;
}

.auction-accordion-item.expanded .auction-accordion-header {
    border-bottom: none;
}

.auction-accordion-header.single {
    cursor: default;
}

.auction-accordion-header.single:hover {
    opacity: 1;
}

.auction-accordion-title {
    font-family: 'Playfair Display SC', serif;
    font-size: 38px;
    line-height: 100%;
    font-weight: 400;
    color: var(--light);
    text-transform: uppercase;
    margin: 0;
    letter-spacing: 0.08em;
}

.auction-accordion-arrow {
    display: block;
    min-width: 24px;
    height: 12px;
    background: url('./assets/img/arrow-down.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.auction-accordion-item.expanded .auction-accordion-arrow {
    transform: rotate(180deg);
}

.auction-accordion-content {
    padding-top: 40px;
    animation: fadeIn 0.3s ease;
}

.header__wrapper-tabs {
    display: flex;
    gap: 16px;
    align-items: center;
    padding: 4px;
    border: 1px solid var(--violet-dark);
    border-radius: 24px;
}

.header-tab {
    padding: 6px 20px;
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
    color: var(--violet);
}

.header-tab.is-active {
    color: var(--gold);
    border: 1px solid var(--violet-dark);
    border-radius: 24px;
}

.header__wrapper-sort button {
    position: relative;
    padding-bottom: 3px;
    font-size: 24px;
    line-height: 24px;
    font-weight: 400;
    color: var(--violet);
    cursor: pointer;
    opacity: 0.5;
    transition: opacity 0.3s ease;
}

.header__wrapper-sort button:hover {
    opacity: 1;
}

.header__wrapper-sort button.is-active {
    opacity: 1;
}

.header__wrapper-sort button::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    border-bottom: 1px dashed var(--violet);
    opacity: 0.5;
}

.header__wrapper-sort button.is-active::before {
    opacity: 1;
}

.header__wrapper-filters {
    position: relative;
    display: flex;
    flex-grow: 1;
    gap: 24px;
    justify-content: flex-end;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.auction-finished-grid {
    margin-top: 0;
}

/* Стили для результатов поиска на странице аукциона */
.auction-search-results {
    margin-bottom: 40px;
}

/* Мобильное поведение */

@media (max-width: 1750px) {
    .big-wrapper {
        padding: 0 40px;
    }

}

@media (max-width: 1500px) {
    .catalog-grid {
        grid-template-columns: 31% 31% 31%;
        grid-template-rows: repeat(3, auto);
    }

    .small-title_decor-br-desk {
        display: none;
    }

    .small-title_decor-br-1440 {
        display: block;
    }
}

@media (max-width: 1300px) {
    .wrapper {
        padding: 0 40px;
    }

    .hero {
        align-items: flex-start;
        flex-direction: column;
        gap: 80px;
    }

    .hero__item,
    .hero__item:nth-child(2) {
        width: 100%;
    }

    .hero__item:nth-child(1) {
        text-align: center;
    }


    .feature-list {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 20px;
    }

    .feature-card {
        align-items: flex-start;
        flex-direction: column;
    }


    .info_columns {
        column-count: 1;
    }

    .main-menu {
        gap: 50px;
    }

    .main-menu {
        gap: 35px;
    }

    .main-wrapper {
        transform: scale(1);
        transform-origin: top center;
    }

    .product-top {
        flex-wrap: wrap;
        justify-content: center;
    }

    .feature-list {
        justify-content: space-between;
    }

    .feature-list li {
        width: 47%;
    }

    .about-content {
        flex-direction: column;
        gap: 60px;
    }

    .about-content__item {
        width: 100%;
    }

    .footer__top {
        flex-direction: column;
    }

    .footer__top .main-menu a {
        font-size: 32px;
        line-height: 120%;
    }

    .footer__bottom {
        justify-content: center;
        flex-direction: column;
        gap: 24px;
    }

    .footer__item:nth-child(2) .footer__item-line {
        justify-content: center;
    }

    .footer__item-line__contacts {
        display: flex;
        flex-direction: column;
        gap: 24px;
    }

    .footer__item-line__contacts .email-link {
        margin-left: 0;
    }

    .umarta {
        display: none;
    }

    .umarta_mobile {
        display: block;
        margin-top: 24px;
        text-align: center;
    }

    .small-title_decor-br-1440 {
        display: none;
    }

    .small-title_decor-br-1024 {
        display: block;
    }

    .info_tagline br {
        display: none;
    }
}

@media (max-width: 1250px) {
    .main-menu a {
        font-size: 26px;
    }

    .header__wrapper .btn-primary {
        min-width: 120px;
        font-size: 26px;
    }

    .catalog-grid {
        grid-template-columns: 48% 48%;
        grid-template-rows: repeat(2, auto);
        gap: 24px;
    }

    .card__top {
        height: 268px;
    }

}

@media (max-width: 1118px) {

    .wrapper,
    .big-wrapper,
    .header__wrapper,
    .hero {
        padding: 0 16px;
    }

    .header__wrapper_bottom {
        flex-direction: column;
        padding: 20px 16px;
    }

    .header__wrapper-tabs {
        order: 3;
    }

    .header__wrapper-sort {
        order: 2;
    }

    .header__wrapper-filters {
        order: 1;
        width: 100%;
    }

    .filter-form {
        width: 100%;
    }

    .main-nav {
        margin-left: 0;
        margin: 0 auto;
    }

    .main-menu {
        gap: 24px;
    }

    .main-title {
        margin-bottom: 48px;
        font-size: 104px;
    }

    .screen_slider {
        padding: 0 16px;
    }

    .plants-swiper .swiper-slide .card.circle,
    .plants-swiper .swiper-slide .card.ark {
        max-width: 100%;
    }

    .plants-swiper .card__img {
        height: 100%;
    }

    .back__absolute {
        display: none;
    }

    .modal-dialog {
        max-width: none;
    }

    .modal-title {
        margin-bottom: 90px;
        text-align: center;
    }
}

@media (max-width: 1024px) {
    .header__wrapper_bottom {
        border-top: 1px dashed var(--violet-dark);
    }
}

@media (max-width: 1000px) {

    .filters-panel {
        display: none;
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        max-width: none;
        height: 100vh;
        background: rgba(38, 38, 38, .95);
        backdrop-filter: blur(8px);
        border-left: 1px solid rgba(241, 215, 198, .25);
        z-index: 1000;
        transition: right .3s ease;
        padding: 16px;
        overflow: auto;
        box-shadow: 0 10px 30px rgba(0, 0, 0, .35);
    }

    .filters-panel.open {
        display: block;
        right: 0;
    }

    .filters-panel__header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 12px;
    }

    .filters-panel__title {
        font-weight: 600;
        letter-spacing: .06em;
    }

    .filters-panel__close {
        border: 0;
        background: transparent;
        color: var(--light);
        font-size: 22px;
        line-height: 1;
        cursor: pointer;
    }

    /* скрываем десктопную секцию фильтров на мобильных */
    #filters-desktop-slot .filters-section {
        display: none;
    }

    /* когда панель открыта — скрывать прокрутку страницы */
    .filters-open body {
        overflow: hidden;
    }

    .filter-group {
        flex-wrap: wrap;
    }

    /* Показываем кнопку "Применить фильтры" только в мобильной версии */
    .apply-filters-btn {
        display: flex !important;
    }

    .plants-swiper {
        padding: 10px 0 50px 0;
    }

    .plants-swiper .swiper-slide .card {
        min-width: 200px;
        max-width: 300px;
    }


    .plants-swiper .card__img {
        height: 200px;
    }

    .plants-swiper .swiper-button-next,
    .plants-swiper .swiper-button-prev {
        margin-bottom: 40px;
    }

    .plants-swiper .swiper-button-next::after,
    .plants-swiper .swiper-button-prev::after {
        font-size: 27px;
    }

    .product-single__content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .product-single__image .card__img {
        height: 300px;
    }

    .product-single__price {
        font-size: 24px;
    }

    .price-value {
        font-size: 28px;
    }

    .screen,
    .screen_padding {
        padding: 40px 0;
        padding-bottom: 40px;
    }

    .shipping-period {
        text-align: left;
    }

    .product-single__image .card__img {
        height: 250px;
    }

    .product-single__price {
        font-size: 20px;
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .price-value {
        font-size: 24px;
    }

    .footer__top {
        flex-direction: column;
        gap: 24px;
    }

    .footer__top .main-menu a {
        font-size: 28px;
    }

    .small-title_decor-br-1024 {
        display: none;
    }

    .hero__item_margin {
        margin-top: 80px;
        margin-bottom: 0;
    }

    .decor-line::before {
        top: -18px;
    }

    .screen_slider.decor-line::before {
        top: -30px;
    }

    .about-content {
        margin-top: 60px;
    }

}

/* Мобильный хедер */
@media (max-width: 880px) {
    .header__wrapper {
        gap: 28px;
        flex-wrap: wrap;
    }

    .header .main-nav,
    .header .btn-primary {
        display: none;
    }

    .header__wrapper .logo-link {
        margin-right: auto;
    }

    .main-title {
        margin-bottom: 24px;
        font-size: 52px;
    }

    .mobile-menu {
        display: block;
    }
}


@media (max-width: 800px) {
    .auction-accordion-title {
        font-size: 24px;
        line-height: 32px;
    }
    
    .auction-accordion-arrow {
        font-size: 20px;
    }

    .umarta {
        display: none;
    }

    .umarta_mobile {
        display: block;
    }

    .decor-line::before {
        background-image: url('assets/img/separator-700.svg');
    }

    .auction-countdown__inner {
        display: flex;
        justify-content: center;
        flex-direction: column;
        gap: 10px;
    }

    .auction-countdown__label,
    .auction-countdown__value {
        font-size: 24px;
        line-height: 32px;
    }
}

@media (max-width: 710px) {
    .decor-title {
        font-size: 42px;
    }

    .hero__item_margin {
        margin-bottom: 0;
    }

    .screen {
        padding: 40px 0;
    }

    .screen_slider {
        padding: 0 16px;
    }

    .main-title {
        font-size: 52px;
        margin-bottom: 40px;
    }

    .hero .btn-primary {
        font-size: 25px;
    }

    .feature-list li {
        width: 100%;
    }

    .feature-card {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
        text-align: left;
    }

    .feature-card__img,
    .feature-card__img_big {
        width: 64px;
        height: 64px;
    }

    .feature-card__title {
        font-size: 28px;
    }

    .feature-card__tagline {
        font-size: 20px;
    }

    .footer .main-menu {
        flex-direction: column;
        gap: 18px;
    }

    .about-content .small-title {
        font-size: 35px;
    }

    .about-content__item .btn-primary {
        font-size: 25px;
    }

    .info_tagline {
        font-size: 24px;
    }

    .about-content .info {
        font-size: 20px;
    }

    .info__banner {
        padding: 16px;
        font-size: 20px;
    }

    .small-title_big {
        font-size: 48px;
    }

    .br-desktop {
        display: none;
    }

    .br-mobile {
        display: block;
    }

    .product-single__image .card__img {
        height: 250px;
    }

    .product-single__price {
        font-size: 20px;
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .price-value {
        font-size: 24px;
    }

    .k-cards {
        gap: 16px;
    }

    .product-gallery {
        flex-direction: column;
        max-width: 100%;
    }

    #main-swiper {
        width: 100%;
        height: auto;
    }

    #thumbs-swiper {
        order: 2;
        width: 100%;
        height: auto;
    }

    #thumbs-swiper .swiper-wrapper {
        align-items: stretch;
    }

    .product-slider {
        width: 100%;
    }

    .product-row {
        font-size: 18px;
        line-height: 26px;
    }

    .product-row_label {
        width: 160px;
        font-size: 18px;
        line-height: 26px;
    }

    .product-row_value {
        text-align: right;
    }

    .product-info_bottom {
        flex-wrap: wrap;
        gap: 15px;
        margin-bottom: 20px;
    }

    .modal[style*="display: flex"],
    .modal[style*="display:flex"] {
        padding: 20px;
        box-sizing: border-box;
    }

    .modal-dialog {
        padding: 32px 10px;
        padding-top: 52px;
        width: 100%;
        max-width: none;
    }

    .modal-title {
        margin-bottom: 48px;
        font-size: 22px;
        line-height: 28px;
    }

    .modal-close {
        right: 15px;
        top: 15px;
    }

    .catalog-grid {
        grid-template-columns: 100%;
        grid-template-rows: repeat(1, auto);
    }

    .title-block {
        margin-top: 82px;
    }

    .screen_slider.decor-line::before {
        top: -85px;
    }

    .footer__top::before {
        background-image: url('assets/img/divider-footer-700.svg');
    }

    .info > p {
        font-size: 18px;
    }

    .entry-header > .small-title {
        font-size: 28px;
    }

    .entry-header > .small-title_medium {
        font-size: 42px;
    }

    .faq-question {
        font-size: 22px;
    }

    .faq-answer {
        font-size: 18px;
    }

}

@media (max-width: 650px) {
    .footer .main-menu {
        flex-direction: column;
        gap: 14px;
    }
    
    .footer__top .main-menu a {
        font-size: 24px;
    }
    
    .footer__item:nth-child(2) .footer__item-line {
        justify-content: center;
        flex-direction: column;
        text-align: center;
    }
    
    .footer__item-line-rekv {
        text-align: center;
    }
    
    .footer__item-line-rekv br {
        display: block;
    }
    
    .footer__bottom,
    .requisites, 
    .email-link, 
    .privacy-link {
        font-size: 18px;
    }
}

@media (max-width: 500px) {

    .tagline {
        font-size: 32px;
        margin-bottom: 40px;
    }

    .filter-counter {
        top: -12px;
        right: -4px;
    }

    .header__wrapper-sort button {
        font-size: 13px; 
    }

    .auction-type-btn {
        padding: 11px;
    }

    .header__wrapper-filters {
        gap: 5px;
    }

    .header__wrapper-filters input {
        max-width: 200px;
    }

    .header-tab {
        font-size: 14px;
    }

    .filters-dropdown {
        width: 100%;
    }

    .decor-line::before {
        height: 70px;
        background-image: url('assets/img/separator-300.svg');
    }

    .footer__top::before {
        top: -21px;
        height: 43px;
        background-image: url('assets/img/divider-footer-300.svg');
    }
 }

@media (max-width: 400px) {
    .product-sold {
        margin-left: 0;
        font-size: 22px;
    }

    .product-sold .card__price-text-sold {
        font-size: 22px;
    }

    .btn-third {
        min-width: 170px;
        font-size: 15px;
    }

}