@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&family=Press+Start+2P&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Comfortaa:wght@300..700&family=Exo+2:ital,wght@0,100..900;1,100..900&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Kalnia:wght@100..700&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&family=Press+Start+2P&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
@font-face {
    font-family: 'Cera Pro';
    src: url('../fonts/subset-CeraPro-Bold.woff2') format('woff2'),
        url('../fonts/subset-CeraPro-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Cera Pro';
    src: url('../fonts/subset-CeraPro-Black.woff2') format('woff2'),
        url('../fonts/subset-CeraPro-Black.woff') format('woff');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Cera Pro';
    src: url('../fonts/subset-CeraPro-Light.woff2') format('woff2'),
        url('../fonts/subset-CeraPro-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Cera Pro';
    src: url('../fonts/subset-CeraPro-Medium.woff2') format('woff2'),
        url('../fonts/subset-CeraPro-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Cera Pro';
    src: url('../fonts/subset-CeraPro-Regular.woff2') format('woff2'),
        url('../fonts/subset-CeraPro-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Cera Pro';
    src: url('../fonts/subset-CeraPro-RegularItalic.woff2') format('woff2'),
        url('../fonts/subset-CeraPro-RegularItalic.woff') format('woff');
    font-weight: normal;
    font-style: italic;
    font-display: swap;
}


* {
    box-sizing: border-box;
}
.container {
    padding: 30px;
    padding-bottom: 0px;
}
@media (min-width: 1440px) {
    .container {
        width: 1440px;
    }
}

/* COLORS */

.color-dark {
    background: #3a3a3a;
}
.color-accent {
    background: #ff5a4e;
}
.color-brown {
    background: #c28b6f;
}
.color-light {
    background: #f6f6f6;
}
.color-gray-light {
    background: #e5e5e5;
}
.color-gray {
    background: #b3b3b3;
}

/* TYPOGRAPHY */

p {
    font-family: "Manrope", sans-serif;
}
span {
    font-family: "Manrope", sans-serif;
}
h1 {
    font-family: 'Cera Pro';
    font-size: 40px;
    font-weight: 600;
    margin: 0 0 12px;
    color: #000
}
h2 {
    font-family: 'Cera Pro';
    font-size: 32px;
    font-weight: 500;
    margin: 0 0 12px;
}
h3 {
    font-family: 'Cera Pro';
    font-size: 20px;
    font-weight: 500;
    margin: 0 0 20px;
}
.text-big {
    font-family: "Manrope", sans-serif;
    font-size: 20px;
    margin: 0 0 10px;
}
.text-btn {
    font-family: "Manrope", sans-serif;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    margin: 0 0 10px;
}
.text-main-semi {
    font-family: "Manrope", sans-serif;
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 10px;
    color: #000000;
}
.text-main {
    font-family: "Manrope", sans-serif;
    font-size: 16px;
    font-weight: 400;
    margin: 0 0 10px;
}
.text-small {
    font-family: "Manrope", sans-serif;
    font-size: 14px;
    color: #000000;
    margin: 0;
}
.p-with-dot {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.p-with-dot::before {
    content: '';
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #08D560;
    flex-shrink: 0;
}

/* ICONS */

.icons-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}
.icon {
    display: inline-block;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}
.icon-white {
    filter: brightness(0) invert(1);
}
.icon-sm {
    width: 24px;
    height: 24px;
}
.icon-md {
    width: 30px;
    height: 30px;
}
.icon-l {
    width: 36px;
    height: 36px;
}
.icon-xl {
    width: 48px;
    height: 48px;
}
.icon-arrow-right-outline {
    background-image: url("../image/icons/ArrowRightOutline.svg");
}
.icon-bed {
    background-image: url("../image/icons/bed.svg");
}
.liked-icon {
    background-image: url("../image/icons/bed.svg");
}
.non-liked-icon {
    background-image: url("../image/icons/bed.svg");
}
.icon-box-outline {
    background-image: url("../image/icons/Box.svg");
}
.icon-briefcase-outline {
    background-image: url("../image/icons/BriefcaseOutline.svg");
}
.icon-calendar-outline {
    background-image: url("../image/icons/CalendarOutline.svg");
}
.icon-chevron-right-outline {
    background-image: url("../image/icons/ChevronRightOutline.svg");
}
.icon-chevron-up-outline {
    background-image: url("../image/icons/ChevronUpOutline.svg");
}
.icon-child {
    background-image: url("../image/icons/Child.svg");
}
.icon-clipboard-check-outline {
    background-image: url("../image/icons/ClipboardCheckOutline.svg");
}
.icon-color-swatch-outline {
    background-image: url("../image/icons/ColorSwatchOutline.svg");
}
.icon-deco {
    background-image: url("../image/icons/Deco.svg");
}
.icon-fire-outline {
    background-image: url("../image/icons/FireOutline.svg");
}
.icon-frame {
    background-image: url("../image/icons/Frame 9078.svg");
}
.icon-fast-delivery {
    background-image: url("../image/icons/Fst_Delivery.svg");
}
.icon-garten {
    background-image: url("../image/icons/Garten.svg");
}
.icon-heart-outline {
    background-image: url("../image/icons/HeartOutline.svg");
}
.icon-komode {
    background-image: url("../image/icons/Komode.svg");
}
.icon-light {
    background-image: url("../image/icons/Light.svg");
}
.icon-menu-alt2-outline {
    background-image: url("../image/icons/MenuAlt2Outline.svg");
}
.icon-minus {
    background-image: url("../image/icons/minus.svg");
}
.icon-pet-supplies {
    background-image: url("../image/icons/pet_supplies.svg");
}
.icon-plus {
    background-image: url("../image/icons/Plus.svg");
}
.icon-room {
    background-image: url("../image/icons/room.svg");
}
.icon-search-gray {
    background-image: url("../image/icons/search_gray.svg");
}
.icon-search-outline {
    background-image: url("../image/icons/SearchOutline.svg");
}
.icon-shopping-cart-outline {
    background-image: url("../image/icons/ShoppingCartOutline.svg");
}
.icon-sofa {
    background-image: url("../image/icons/Sofa.svg");
}
.icon-sofa-little {
    background-image: url("../image/icons/Sofa_little.svg");
}
.icon-star-outline {
    background-image: url("../image/icons/StarOutline.svg");
}
.icon-table {
    background-image: url("../image/icons/Table.svg");
}
.icon-telegram {
    background-image: url("../image/icons/Telegram.svg");
}
.icon-textil {
    background-image: url("../image/icons/Textil.svg");
}
.icon-thumb-up-outline {
    background-image: url("../image/icons/ThumbUpOutline.svg");
}
.icon-user-outline {
    background-image: url("../image/icons/UserOutline.svg");
}
.icon-wardrobe {
    background-image: url("../image/icons/Wardrobe.svg");
}
.icon-whatsapp {
    background-image: url("../image/icons/WhatsApp.svg");
}
.icon-x-outline {
    background-image: url("../image/icons/XOutline (1).svg");
}
.icon-menu-mob {
    background-image: url("../image/icons/Menu-mob.svg");
}
.icon-search-mob {
    background-image: url("../image/icons/Search-mob.svg");
}
.icon-cart-mob {
    background-image: url("../image/icons/cart-mob.svg");
}

/* BUTTONS */

.btn {
    font-family: "Manrope", sans-serif;
    cursor: pointer;
    border: none;
    border-radius: 600px;
    width: 100%;
    height: 60px;
    color: #fff;
    background-color: #353535;
    transition: .3s all;
    font-size: 16px;
    text-transform: uppercase;
}
.btn-white {
    background-color: #fff;
    color: black;
}
.btn-white:hover {
    background-color: #d1d1d1 !important;
}
.btn:hover {
    background-color: #575555;
    color: #fff;
}
.btn_arrow {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-right: 20px;
    padding-left: 40px;
}
.btn_arrow span {
    width: 100%;
}
.btn_arrow_second {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-right: 20px;
    padding-left: 40px;
}
.btn_xl {
    max-width: 460px;
}
.btn_l {
    max-width: 448px;
}
.btn_m {
    max-width: 334px;
}
.btn_s {
    max-width: 258px;
}
.btn_xs {
    max-width: 101px;
}
.btn-sm {
    color: #000;
    width: 100%;
    height: 44px;
    background: #F1F1F1;
    border: 1px solid #E2E2E2;
    border-radius: 600px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    box-sizing: border-box;
    transition: .3s all;
}
.btn-no-outline {
    border: none;
}
.btn-xs {
    color: #000;
    width: 218px;
    height: 44px;
    background: #F1F1F1;
    border: 1px solid #E2E2E2;
    border-radius: 600px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    box-sizing: border-box;
    transition: .3s all;
}
.btn-xs:hover {
    background-color: #e0e0e0;
}
.btn-cart-xs {
    display: flex;
    align-items: center;
    padding: 13.5px 0px 13.5px 16px;
}
.btn-sm:hover {
    background-color: #d3d3d3;
}
.btn-cart {
    display: flex;
    align-items: center;
    padding: 12.5px 20px;
}
.btn-cart .btn-text {
    white-space: nowrap;
}
.btn-cart .icon-sm {
    margin-left: 99px;
    display: flex;
}
.btn-cart-xs .icon-sm {
    margin-left: 10px;
    display: flex;
}
.btn-checkout {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12.5px 0;
}
.buttons-column {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* INPUTS/FORMS */

.form {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 460px;
}
.input-full {
    font-family: "Manrope", sans-serif;
    background-color: #F1F1F1;
    border-radius: 120px;
    width: 460px;
    height: 50px;
    border: 1px solid transparent;
    padding: 0 20px;
    box-sizing: border-box;
    font-size: 16px;
    padding-left: 24px;
    outline: none;
    transition: all 0.20s ease;
}
.input-full:focus {
    border: 1px solid #9c9c9c;
}
.form-row {
    display: flex;
    flex-direction: row;
    gap: 12px;
}
.input-half {
    background-color: #F1F1F1;
    border-radius: 120px;
    width: 224px;
    height: 50px;
    border: 1px solid transparent;
    padding-left: 24px;
    box-sizing: border-box;
    font-family: "Manrope", sans-serif;
    font-size: 16px;
    outline: none;
    transition: all 0.20s ease;
}
.input-half:focus {
    border: 1px solid #9c9c9c;
}
.field {
    display: flex;
    flex-direction: column;
}
.label {
    font-family: "Manrope", sans-serif;
    padding-left: 3.5px;
    font-size: 14px;
    color: #000;
    font-weight: 400;
    text-align: left;
}

/* ORDERS TABLE */

.orders-table-wrapper {
    overflow-x: auto;
}
.orders-table {
    width: 100%;
    font-size: 14px;
    text-align: justify;
}
.orders-table th,
.orders-table td {
    padding: 14px 12px;
    border-bottom: 1px solid #e0e0e0;
    white-space: nowrap;
    font-size: 14px;
    font-weight: 400;
    font-family: "Manrope", sans-serif;
}
.orders-table th {
    color: #000;
}
.orders-table tr:last-child td {
    border-bottom: none;
}

/* PRICE */

.price {
    font-size: 40px;
    font-weight: 500;
    color: #353535;
}
.price-sale-group {
    display: flex;
    align-items: center;
    gap: 16px;
}
.price--sale {
    color: #FF5449;
}
.price--old {
    font-size: 40px;
    font-weight: 500;
    color: #A2A2A2;
    text-decoration: line-through;
}
.sale-badge {
    width: 118px;
    height: 40;
    background-color: #FF5449;
    color: #fff;
    font-size: 16px;
    font-family: "Manrope", sans-serif;
    font-weight: 600;
    padding: 10.5px 16px 10.5px 20px;
    border-radius: 4px;
    white-space: nowrap;
}

/* CATEGORY */

.category-list {
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    gap: 33px;
}
.category-item {
    width: 326px;
    display: flex;
    align-items: center;
    padding: 10px 14px;
    border-radius: 600px;
    text-decoration: none;
    color: #000;
    transition: background 0.2s ease;
    font-family: "Manrope", sans-serif;
}
.category-item:hover {
    background: #F1F1F1;
    width: 326px;
    height: 44px;
    text-decoration: none;
    color: #000;
}
.category-item .icon-sm {
    margin-right: 12px;
    display: flex;
    align-items: center;
}
.category-text {
    font-size: 14px;
    font-weight: 400;
    line-height: 1;
}

/* CARDS */

.card {
    margin-top: 0px;
    max-width: 683px;
    width: 100%;
    height: 433px;
    background: #F8F8F8;
    border: none;
    border-radius: 30px;
    display: flex;
    flex-direction: row;
    padding: 16px;
    box-sizing: border-box;
    font-family: "Manrope", sans-serif;
}
.card__image {
    margin-right: 15px;
    width: 318px;
    height: 401px;
    border-radius: 30px;
    object-fit: cover;
    flex-shrink: 0;
}
.card__content {
    padding-right: 16px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.card__title {
    font-size: 20px;
    font-weight: 500;
    line-height: 1.5;
    color: #000;
}
.card__text {
    font-size: 16px;
    line-height: 1.5;
    margin: 0;
    flex-grow: 1;
    color: #000;
}
.btn-card {
    background-color: #E2E2E2;
    width: 318px;
}

/* TABLE ORDERS TABS */

.account-nav {
    margin-top: 40px;
    width: 100%;
    border-bottom: 1px solid #e0e0e0;
}
.account-nav__inner {
    max-width: 1500px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
}
.account-nav__item {
    position: relative;
    width: 33.3333%;
    text-align: center;
    padding: 16px 0;
    font-size: 16px;
    font-weight: 600;
    color: #000;
    text-decoration: none;
    letter-spacing: 0.5px;
    font-family: "Manrope", sans-serif;
}
.account-nav__item:hover {
    text-decoration: none;
    color: #b33d35;
}
.account-nav__item.active::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 100%;
    height: 1.2px;
    background-color: #FF5449;
}
.orders-table-wrapper {
    overflow-x: auto;
}
.orders-table {
    width: 100%;
    font-size: 14px;
    text-align: justify;
    table-layout: fixed;
}
.col-1,
.col-2 {
    width: 33.333%;
}
.col-3 {
    width: calc(33.333% / 3);
}
.orders-table th,
.orders-table td {
    padding: 14px 12px;
    border-bottom: 1px solid #e0e0e0;
    white-space: nowrap;
    font-size: 14px;
    font-weight: 400;
    font-family: "Manrope", sans-serif;
}
.orders-table th {
    color: #000;
}
.orders-table tr:last-child td {
    border-bottom: none;
}
.btn_form_address {
    margin-top: 32px;
}
.btn_form_info {
    margin-top: 28px;
}
@media (max-width: 768px) {
    .orders-table col {
        width: 20%;
    }
    .account-nav__inner {
        flex-direction: column;
    }
    .account-nav__item {
        width: 100%;
        ;
    }
}

/* NEW */

.product-specs {
    width: 682px;
    margin-top: 16px;
    font-family: "Manrope", sans-serif;
}
.specs-badges {
    display: flex;
    gap: 135px;
    margin-bottom: 16px;
}
.badge {
    background-color: white;
    color: black;
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 16px;
    font-weight: 500;
    font-family: "Manrope", sans-serif;
}
.specs-table {
    margin-top: 16px;
    border-top: 1px solid #E2E2E2;
}
.spec-row {
    display: grid;
    grid-template-columns: 1fr auto;
    padding: 14px 0;
    border-bottom: 1px solid #E2E2E2;
}
.spec-name {
    font-size: 14px;
    color: #000;
    font-family: "Manrope", sans-serif;
}
.spec-value {
    font-size: 14px;
    color: #000;
    text-align: right;
    font-family: "Manrope", sans-serif;
}
.delivery-info {
    width: 682px;
    margin-top: 16px;
    font-family: "Manrope", sans-serif;
    font-size: 16px;
    line-height: 1.5;
    color: #000;
}
.delivery-title {
    color: #000;
    font-size: 16px;
    font-weight: 700;
    margin: 20px 0 8px;
}
.delivery-info p {
    margin: 0 0 12px;
}
.delivery-note {
    color: #000;
}
.delivery-info a {
    color: #000;
    text-decoration: underline;
}

/* ───────── модалка ───────── */

.ui-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .6);
    display: block;
    opacity: 0;
    visibility: hidden;
    transition: .2s;
    z-index: 9999;
}
.ui-modal-overlay.is-visible {
    opacity: 1;
    visibility: visible;
    overflow-y: auto;
}
.ui-modal-window {
    position: relative;
    margin: 80px auto;
    width: 100%;
    max-width: 420px;
    background: #fff;
    border-radius: 16px;
    padding: 28px;
}
.ui-modal-header {
    font-size: 24px;
    font-weight: 500;
    text-align: center;
}
.ui-modal-form-row {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.ui-modal-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.ui-modal-icon {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.ui-modal-icon img {
    margin: 0 auto;
    width: 60px;
    height: 60px;
}
.ui-modal-icon p {
    font-size: 14px;
    color: #A2A2A2;
    margin: 0 auto;
}
.ui-modal-close {
    position: absolute;
    top: 14px;
    right: 14px;
    background: none;
    border: none;
    font-size: 18px;
    cursor: pointer;
}
.ui-modal-panel {
    display: none;
}
.ui-modal-panel .input-full {
    width: 100%;
}
.ui-modal-panel.is-active {
    display: block;
}
.ui-modal-switch {
    margin-top: 24px;
    text-align: center;
}
.ui-modal-switch a {
    font-size: 16px;
    color: #A2A2A2;
    text-transform: uppercase;
    text-decoration: underline;
    cursor: pointer;
}
.ui-modal-text {
    margin-top: 20px;
}

/* ───────── карточки каталога ───────── */

.cataloge {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 15px;
}
.cataloge_card {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 218px;
    height: 240px;
    background-color: #F8F8F8;
    border-radius: 16px;
    padding: 16px;
    border: none;
    transition: transform 0.25s ease;
}
.cataloge_card:hover {
    transform: translateY(-8px);
}
.cataloge_nav {
    display: flex;
    gap: 8px;
}
.cataloge_title {
    display: flex;
    gap: 16px;
    margin-top: 60px;
    align-items: center;
}
.cataloge_h2 {
    font-weight: 600;
    font-family: 'Cera Pro';
    margin-bottom: 36px;
    text-transform: uppercase;
}
.cataloge_text-main {
    margin-bottom: 26px;
}
.cataloge_text {
    margin-top: 16px;
}
.cataloge_card-img {
    background-color: transparent;
    width: 186px;
    height: 168px;
    border-radius: 16px;
}
.cataloge_card-img img {
    height: 100%;
    width: 100%;
    border-radius: 16px;
    background-position: center;
    background-repeat: no-repeat;
}

/* ───────── хиты продаж ───────── */

.bestsellers_title {
    display: flex;
    margin-top: 150px;
    font-weight: 600;
    font-family: 'Cera Pro';
}

/* ───────── доставим от 1 дня ───────── */

.fast_delivery {
    margin-top: 80px;
    margin-bottom: 50px;
    background-color: #F8F8F8;
    padding: 45px 16px 40px;
    border-radius: 16px;
}
.fast_delivery-card {
    display: grid;
    grid-template-columns: repeat(4, 321.25px);
    column-gap: 19px;
}
.fast_delivery-card-small {
    display: flex;
    flex-direction: column;
    row-gap: 15px;
}
.delivery-card-small,
.fast_delivery-card-big {
    border-radius: 16px;
    background: #ffffff;
    overflow: hidden;
    padding: 16px;
    transition: transform 0.25s ease;
}
.delivery-card-small:hover,
.fast_delivery-card-big:hover {
    transform: translateY(-3px);
}
.delivery-card-small {
    height: 240px;
}
.fast_delivery-card-big {
    height: 495px;
}
.fast_delivery-title {
    display: flex;
    gap: 12px;
    align-items: center;
}
.fast_delivery-text {
    font-weight: 600;
    font-family: 'Cera Pro';
}
.btn-fast-delivery {
    margin-bottom: 20px;
    transition: all 1s;
}
.btn-fast-delivery:hover {
    color: #fff;
}
.fast_delivery-element {
    display: flex;
    justify-content: space-between;
}
.fast_delivery-subtitle {
    margin-top: 16px;
}
.delivery-card-element {
    display: flex;
    justify-content: space-between;
}
.delivery-card-element-sale {
    height: 21px;
}
.delivery-card-small-img {
    background-image: url(../image/mainpage/agata.svg);
    background-repeat: no-repeat;
    background-position-y: 54%;
    background-size: cover;
    margin-top: 8px;
    width: 289.25px;
    height: 168px;
    border-radius: 16px;
}
.delivery-card-big-img {
    background-image: url(../image/mainpage/agata.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    margin-top: 8px;
    width: 289.25px;
    height: 423px;
    border-radius: 16px;
}
.filters-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 12px 0;
}
.filters-left {
    display: flex;
    align-items: center;
    gap: 8px;
}
.filter-btn {
    border: 1px solid #E2E2E2;
    width: 193px;
    height: 44px;
    border-radius: 600px;
    background-color: transparent;
    transition: all 1s;
}
.filter-btn:hover {
    background-color: #f0f0f0;
    border: 1px solid #d6d6d6;
}
.filter-btn--icon {
    margin-right: 8px;
    align-content: center;
}
.filter-btn-del {
    border: 1px solid #E2E2E2;
    width: 235px;
    height: 44px;
    border-radius: 600px;
    background-color: transparent;
}
.filter-btn-sale {
    border: 1px solid #E2E2E2;
    width: 87px;
    height: 44px;
    border-radius: 600px;
    background-color: transparent;
}
.filter-btn-cost {
    border: 1px solid #E2E2E2;
    width: 80px;
    height: 44px;
    border-radius: 600px;
    background-color: transparent;
}
.filter-btn-size {
    border: 1px solid #E2E2E2;
    width: 97px;
    height: 44px;
    border-radius: 600px;
    background-color: transparent;
}

/* правая кнопка сортировки */

.filter-sort {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    border: 1px solid #e5e5e5;
    border-radius: 999px;
    background: #fff;
    font-size: 14px;
    cursor: pointer;
    white-space: nowrap;
}
.filter-sort .arrow {
    display: inline-block;
    transform: rotate(180deg);
    font-size: 12px;
}
.filters-panel {
    position: fixed;
    top: 0;
    right: 0;
    width: 568px;
    height: 100vh;
    background: #fff;
    box-shadow: -8px 0 24px rgba(0, 0, 0, .08);
    display: flex;
    flex-direction: column;
    z-index: 1000;
}
.filters-panel__inner {
    padding: 20px;
    overflow-y: auto;
    flex: 1;
}
.filters-header {
    margin-bottom: 16px;
}
.filters-title {
    color: #353535;
    font-weight: 600;
    font-family: 'Cera Pro';
}
.filters-section {
    border-top: 1px solid #eee;
    padding: 16px 0;
}
.filters-section:first-child {
    border-top: none;
}
.filters-section__head {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    padding: 0;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
}
.arrow {
    width: 8px;
    height: 8px;
    border-right: 2px solid #999;
    border-bottom: 2px solid #999;
    transform: rotate(45deg);
}
.arrow--open {
    transform: rotate(-135deg);
}
.filters-section__body {
    margin-top: 12px;
}

/* toggle */

.toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}
.toggle-ui {
    width: 34px;
    height: 18px;
    background: #ddd;
    border-radius: 999px;
    position: relative;
}
.toggle-ui::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    width: 14px;
    height: 14px;
    background: #fff;
    border-radius: 50%;
}

/* price */

.price-inputs {
    display: flex;
    gap: 8px;
    margin-bottom: 12px;
}
.price-inputs input {
    flex: 1;
    padding: 6px 10px;
    border: 1px solid #e5e5e5;
    border-radius: 999px;
    font-size: 13px;
}
.price-range {
    position: relative;
    height: 24px;
}
.range-track {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: #e5e5e5;
    transform: translateY(-50%);
}
.range-thumb {
    position: absolute;
    top: 50%;
    width: 12px;
    height: 12px;
    background: #ff5a5a;
    border-radius: 50%;
    transform: translate(-50%, -50%);
}
.range-thumb:first-child {
    left: 20%;
}
.range-thumb:last-child {
    left: 70%;
}

/* colors */

.color-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.color-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    cursor: pointer;
}
.color-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}
.beige {
    background: #f2e6d8;
}
.black {
    background: #000;
}
.green {
    background: #2f6b3f;
}
.brown {
    background: #7a4a2e;
}
.burgundy {
    background: #7a1f2b;
}
.show-more {
    margin-top: 8px;
    background: none;
    border: none;
    color: #999;
    font-size: 13px;
    cursor: pointer;
}

/* footer */

.filters-footer {
    padding: 16px;
    border-top: 1px solid #eee;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.apply-btn {
    background: #222;
    color: #fff;
    border: none;
    border-radius: 999px;
    padding: 14px;
    font-size: 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}
.reset-btn {
    background: none;
    border: none;
    color: #999;
    font-size: 12px;
    cursor: pointer;
}
.filters-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .4);
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s;
    z-index: 999;
}
.filters-panel {
    transform: translateX(100%);
    transition: transform .3s ease;
}

/* active state */

.filters-panel.is-open {
    transform: translateX(0);
}
.filters-overlay.is-open {
    opacity: 1;
    pointer-events: auto;
}

/* ───────── бренды ───────── */

.brands_banners {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.brands_banner-row {
    gap: 15px;
}
.brand-banner {
    position: relative;
    height: 300px;
    border-radius: 16px;
    background: #aaaaaa;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    padding: 0;
}
.brands_banner-big {
    width: 915px;
}
.brands_banner-small {
    width: 450px;
}
.brands-title-sm {
    color: #ffffff;
    position: absolute;
    font-size: 32px;
    font-weight: 500;
    top: 134px;
    left: 116px;
    font-family: 'Cera Pro';
}
.brands-title-xl {
    color: #ffffff;
    position: absolute;
    font-size: 32px;
    font-weight: 500;
    top: 134px;
    left: 120px;
    font-family: 'Cera Pro';
}
.brands_banner_img-1 {
    background-image: url(../image/mainpage/mainpage-header.svg);
    background-repeat: no-repeat;
    background-size: 100%;
    width: 100%;
    height: 100%;
    background-position-y: 82%;
    background-position-x: 0px;
}
.brands_banner_img-2 {
    background-image: url(../image/mainpage/ronnarit-jirathanyakorn-HtF2wx-_R8s-unsplash.jpg);
    object-fit: cover;
    background-repeat: no-repeat;
    background-size: 122%;
    width: 100%;
    height: 100%;
    background-position-y: 70%;
    background-position-x: 0px;
}
.brands_banner_img-3 {
    background-image: url(../image/mainpage/fleur-kaan-oUDtnpzrghU-unsplash.jpg);
    object-fit: cover;
    background-repeat: no-repeat;
    background-size: 105%;
    width: 100%;
    height: 100%;
    background-position-y: 51%;
    background-position-x: 0px;
}
.brands_banner_img-4 {
    background-image: url(../image/mainpage/nathan-van-egmond-mVZ1O0uPd1M-unsplash.jpg);
    object-fit: cover;
    background-repeat: no-repeat;
    background-size: 100%;
    width: 100%;
    height: 100%;
    background-position-y: 48%;
    background-position-x: 0px;
}
.brands_grid {
    margin-top: 100px;
    margin-bottom: 100px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 48px 64px;
}
.brands_item {
    max-width: 220px;
}
.brand_letter {
    font-family: 'Cera Pro';
    font-weight: 600;
    margin-bottom: 20px;
}
.brands_item p {
    margin: 20px 0;
    line-height: 1.4;
}

/* ───── КОНТАКТЫ ───── */

.contact-card {
    position: relative;
    height: 522px;
    width: 1378px;
    border-radius: 15px;
    border-bottom-right-radius: 0px;
    background: #ffffff;
    overflow: hidden;
    background-size: cover;
    background-position: center;
}

/* ───── вырез ───── */

.contact-card::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    background: #fff;
    border-top-left-radius: 30px;
}
.contact-card::after {
    width: 466px;
    height: 70px;
}
.contact-card-img {
    position: relative;
    background-image: url(../image/mainpage/ryan-riggins-9v7UJS92HYc-unsplash.jpg);
    background-repeat: no-repeat;
    background-size: 100%;
    background-position-y: 28%;
    width: 100%;
    height: 100%;
}
.contact-card-img::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
}
.contact-card-img > * {
    position: relative;
    z-index: 2;
}
.contact-title {
    background-image: url(../image/icons/Hero_Block.svg);
    position: absolute;
    z-index: 999;
    top: 180px;
    left: 60px;
    width: 351px;
    height: 162px;
}
.contact-card-icons {
    display: flex;
    flex-direction: row;
    gap: 16px;
    justify-content: end;
}
.contact-button {
    justify-content: center;
    width: 314px;
    height: 60px;
    right: 142px !important;
    padding-left: 0px;
    padding-right: 0px;
}
.contact-icons-wh {
    position: absolute;
    right: 70px;
    bottom: 0;
    width: 60px;
    height: 60px;
    z-index: 999;
}
.contact-icons-tg {
    position: absolute;
    bottom: 0;
    width: 60px;
    height: 60px;
    z-index: 999;
}

/* ───── режим работы ───── */

.mode-time {
    margin-top: 15px;
    display: flex;
    gap: 280px;
    align-items: center;
    justify-content: flex-start;
    padding: 30px 0 30px 60px;
    width: 1378px;
    height: 111px;
    background-color: #F8F8F8;
    border-radius: 600px;
}
.mode-time-title {
    color: #000000;
    font-size: 20px;
    font-weight: 500;
    font-family: "Manrope", sans-serif;
}
.mode-time-call {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.mode-time-call-title {
    color: #000000;
}
.mode-time-delivery {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.mode-time-delivery-title {
    color: #000000;
}
.contact-info {
    margin-top: 95px;
}
.contact-info-title {
    text-align: center;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 20px;
    color: #000000;
    font-family: 'Cera Pro' !important;
    margin-bottom: 32px;
}
.contact-content-title {
    text-transform: uppercase;
    font-weight: 600;
    font-size: 20px;
    color: #000000;
    font-family: 'Cera Pro' !important;
}
.contact-intro {
    line-height: 1.6;
    margin: 0 auto 100px;
}
.contact-content {
    display: flex;
    gap: 32px;
    align-items: flex-start;
}
.contact-content-left {
    flex: 1;
}
.contact-right {
    flex: 2;
    display: flex;
    gap: 209px;
}
.contact-right-text {
    margin-bottom: 20px;
}
.contact-right-p {
    margin-bottom: 30px;
}

/* ───── ОБРАТНАЯ СВЯЗЬ ───── */

.feedback {
    margin-top: 145px;
    margin-bottom: 50px;
}
.feedback__title {
    font-family: 'Cera Pro';
    font-weight: 600;
    margin-bottom: 24px;
}
.feedback__wrapper {
    display: flex;
    gap: 69px;
    background-color: #F8F8F8;
    border-radius: 16px;
    padding: 30px;
}
.feedback__info {
    line-height: 1.6;
    text-transform: uppercase;
    font-weight: 600;
}
.feedback__info-text {
    font-size: 20px;
    font-family: 'Cera Pro';
}
.feedback__form {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
    background-color: #fff;
    border-radius: 16px;
    padding: 30px;
}
input[type="text"],
input[type="tel"],
input[type="email"],
textarea {
    border: none;
    font-size: 16px;
    font-weight: 400;
    font-family: "Manrope", sans-serif;
    outline: none;
}
.input_feedback[type="text"],
.input_feedback[type="tel"],
.input_feedback[type="email"],
textarea {
    border-bottom: 1px solid #A2A2A2;
    padding: 8px 0;
}
input::placeholder,
textarea::placeholder {
    color: #A2A2A2;
}
textarea {
    height: 37px;
}
.label {
    font-size: 16px;
    font-weight: 600;
    font-family: "Manrope", sans-serif;
    color: #353535;
}
.radio-group-title {
    margin-bottom: 15px;
}
.radio-group,
.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
    font-size: 14px;
}
.radio-group label,
.checkbox-group label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
}
.radio-group input,
.checkbox-group input {
    margin-top: 3px;
}
.checkbox-group {
    font-size: 12px;
    font-weight: 600;
    color: #353535;
}
.checkbox-group a {
    color: #353535;
    text-decoration: underline;
}
.btn_feedback {
    margin-left: 502px;
}
.btn_feedback:hover {
    color: #fff;
    font-weight: 600;
}
.faq-wrapper {
    margin-top: 32px;
    max-width: 1380px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.faq-question {
    width: 1380px;
    height: 64px;
    padding: 8px 32px;
    border-radius: 16px;
    border: 1px solid #E2E2E2;
    background-color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 20px;
    color: rgb(82, 82, 82);
}
.faq-text {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}
.faq-text-main {
    font-size: 20px;
    font-weight: 500;
    font-family: "Manrope", sans-serif;
    color: #353535;
    margin: 0;
}
.faq-text-big {
    font-size: 20px;
    font-weight: 500;
    font-family: "Manrope", sans-serif;
    color: #000;
}
.faq-sbp {
    margin-left: 16px;
}
.faq-question .icon-faq {
    transition: transform 0.25s ease;
    display: flex;
}
.faq-item.active .icon-faq {
    transform: rotate(90deg);
}
.faq-answer {
    width: 1380px;
    height: 160px;
    padding: 24px 32px;
    margin-top: 16px;
    border-radius: 16px;
    background-color: #F8F8F8;
    border: none;
    display: none;
    box-sizing: border-box;
}
.faq-item.active .faq-answer {
    display: block;
}
.installment {
    margin-top: 80px;
    max-width: 1380px;
    display: flex;
    justify-content: space-between;
    gap: 15px;
    padding: 40px 0;
}
.installment-title {
    font-size: 25px;
    font-weight: 400;
    margin-bottom: 32px;
    color: #353535;
}
.faq-tbank {
    margin-left: 8px;
}
.text-installment {
    font-size: 16px;
    font-weight: 500;
    color: #353535;
    font-family: "Manrope", sans-serif;
}
.installment-right {
    margin-top: 50px;
    display: flex;
    flex-direction: column;
}
.installment-card {
    background: #F8F8F8;
    width: 683px;
    height: 98px;
    border-radius: 16px;
    padding: 20px 20px;
}
.installment-right-title {
    font-size: 22px;
    font-weight: 500;
    color: #353535;
    font-family: "Roboto", sans-serif;
}
.installment-right-text {
    margin-top: 8px;
    font-size: 15px;
    font-weight: 400;
    color: #353535;
    font-family: "Roboto", sans-serif;
}
.installment-btn {
    color: #000;
    font-weight: 600;
    background-color: #E2E2E2;
    width: 335px;
    margin-top: 26px;
    margin-left: 342px;
}
.consultation {
    margin-top: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 1380px;
    height: 342px;
    background-color: #F8F8F8;
    border-radius: 16px;
    border: none;
    padding-top: 60px;
}
.consultation-button {
    margin-top: 60px;
    display: flex;
    flex-direction: row;
    gap: 8px;
}
.consultation-title {
    font-family: 'Cera Pro';
    font-weight: 600;
    margin: 0;
}
.consultation-text {
    margin-top: 32px;
    font-family: "Manrope", sans-serif;
}
.consultation-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 297px;
    padding: 20.5px 0px;
    transition: all 0.3s;
}
.consultation-btn:hover {
    color: #fff;
}

/* ───── акции и сертификаты ───── */

.promotions {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 140px;
}
.promotions_block {
    display: flex;
    flex-direction: row;
    width: 1376px;
    height: 272px;
    background-color: #F8F8F8;
    border-radius: 30px;
    padding: 16px;
}
.promotions_block-img {
    width: 434px;
    height: 240px;
    border-radius: 30px;
    background-color: #d1d1d1;
}
.promotions-image-room {
    background-image: url(../image/mainpage/promo_room.jpg);
    object-fit: cover;
    background-size: 100%;
    border-radius: 30px;
    width: 100%;
    height: 100%;
}
.promotions-image-case {
    background-image: url(../image/mainpage/promo_case.jpg);
    object-fit: cover;
    background-size: 100%;
    border-radius: 30px;
    width: 100%;
    height: 100%;
}
.promotions-image-pan {
    background-image: url(../image/mainpage/promo_pan.jpg);
    object-fit: cover;
    background-size: 100%;
    border-radius: 30px;
    width: 100%;
    height: 100%;
}
.promotions_block-right {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-left: 15px;
}
.promotions_block-title {
    color: #000;
    font-family: 'Cera Pro';
    font-weight: 600;
}
.promotions_block-btn {
    margin-top: 30px;
    margin-left: 175px;
    display: flex;
    flex-direction: row;
    gap: 2px;
}
.promotions_block_button {
    width: 288px;
    height: 55px;
    padding: 18px 40px;
    background-color: transparent;
    border: 1px solid #E2E2E2;
    border-radius: 600px;
    font-size: 16px;
    font-weight: 600;
    color: #000;
    text-transform: uppercase;
    font-family: "Manrope", sans-serif;
}
.promotions_btn {
    width: 430px;
    height: 55px;
    color: #fff;
}
.promotions_btn:hover {
    color: #fff;
}
.promotions_block-btn-mg {
    margin-left: 465px;
}

/* ───── БИЗНЕСУ ───── */

.business-card {
    margin-top: 20px;
    position: relative;
    height: 522px;
    width: 1378px;
    border-radius: 15px;
    border-bottom-right-radius: 0px;
    background: #ffffff;
    overflow: hidden;
    background-size: cover;
    background-position: center;
}

/* ───── вырез ───── */

.business-card::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    background: #fff;
    border-top-left-radius: 30px;
}
.business-card::after {
    width: 466px;
    height: 70px;
}
.business-card-img {
    position: relative;
    background-image: url(../image/mainpage/business-banner.jpg);
    background-repeat: no-repeat;
    background-size: 100%;
    background-position-y: 69%;
    width: 100%;
    height: 100%;
}
.business-card-img::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
}
.business-card-img > * {
    position: relative;
    z-index: 2;
}
.business-title {
    background-image: url(../image/icons/business-title.svg);
    position: absolute;
    background-repeat: no-repeat;
    z-index: 999;
    top: 180px;
    left: 60px;
    width: 272px;
    height: 126px;
}
.business-card-icons {
    display: flex;
    flex-direction: row;
    gap: 16px;
    justify-content: end;
}
.business-button {
    justify-content: center;
    width: 314px;
    height: 60px;
    right: 142px !important;
    padding-left: 0px;
    padding-right: 0px;
}
.business-icons-wh {
    position: absolute;
    right: 70px;
    bottom: 0;
    width: 60px;
    height: 60px;
    z-index: 999;
}
.business-icons-tg {
    position: absolute;
    bottom: 0;
    width: 60px;
    height: 60px;
    z-index: 999;
}
.business-advantages-list {
    padding-top: 60px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    font-family: "Manrope", sans-serif;
}

/* ───── ДИЗАЙНЕРАМ ───── */

.designer-card {
    margin-top: 20px;
    position: relative;
    height: 522px;
    width: 1378px;
    border-radius: 15px;
    border-bottom-right-radius: 0px;
    background: #ffffff;
    overflow: hidden;
    background-size: cover;
    background-position: center;
}

/* ───── вырез ───── */

.designer-card::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    background: #fff;
    border-top-left-radius: 30px;
}
.designer-card::after {
    width: 466px;
    height: 70px;
}
.designer-card-img {
    position: relative;
    background-image: url(../image/mainpage/designer-banner.jpg);
    background-repeat: no-repeat;
    background-size: 100%;
    background-position-y: 49%;
    width: 100%;
    height: 100%;
}
.designer-card-img::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
}
.designer-card-img > * {
    position: relative;
    z-index: 2;
}
.designer-title {
    background-image: url(../image/icons/Title_Designers.svg);
    position: absolute;
    background-repeat: no-repeat;
    z-index: 999;
    top: 180px;
    left: 60px;
    width: 409px;
    height: 126px;
}
.designer-card-icons {
    display: flex;
    flex-direction: row;
    gap: 16px;
    justify-content: end;
}
.designer-button {
    justify-content: center;
    width: 314px;
    height: 60px;
    right: 142px !important;
    padding-left: 0px;
    padding-right: 0px;
}
.designer-icons-wh {
    position: absolute;
    right: 70px;
    bottom: 0;
    width: 60px;
    height: 60px;
    z-index: 999;
}
.designer-icons-tg {
    position: absolute;
    bottom: 0;
    width: 60px;
    height: 60px;
    z-index: 999;
}
.designer-new-title {
    margin-top: 100px;
    font-weight: 600;
    font-family: 'Cera Pro';
    text-transform: uppercase;
    text-align: center;
}
.designer-new-text {
    margin-top: 32px;
    font-weight: 400;
    font-family: "Manrope", sans-serif;
}
.designer-new-block {
    margin-top: 60px;
    width: 1380px;
    height: 120px;
    background-color: #F8F8F8;
    border-radius: 600px;
}
.designer-new-block-text {
    padding-top: 30px;
    text-align: center;
    color: #000;
    font-family: "Manrope", sans-serif;
}
@media(max-width: 480px) {
    .designer-card {
        margin-top: 20px;
        position: relative;
        height: 620px;
        width: 451px;
        border-radius: 15px;
        background: #ffffff;
        overflow: hidden;
        background-size: cover;
        background-position: center;
    }
}
.conditions_delivery {
    margin-top: 16px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 24px 19px;
    width: 1380px;
    height: 1014px;
    background-color: #F8F8F8;
    border-radius: 16px;
}
.conditions_delivery-left {
    display: flex;
    flex-direction: column;
}
.conditions_delivery-left-subtitle {
    color: #353535;
    font-family: "Manrope", sans-serif;
    margin: 0;
}
.conditions_delivery-left-title {
    font-weight: 600;
    color: #353535;
    font-family: 'Cera Pro';
}
.conditions_delivery-left-p {
    margin-top: 28px;
    color: #353535;
    font-family: "Manrope", sans-serif;
    font-size: 16px;
    font-weight: 400;
}
.conditions_delivery-left-b {
    color: #353535;
    font-family: "Manrope", sans-serif;
    font-size: 16px;
    font-weight: 400;
}
.conditions_delivery-right {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.conditions_delivery-block-subtitle {
    color: #353535;
    font-size: 20px;
    font-weight: 600;
    font-family: 'Cera Pro';
    text-transform: uppercase;
    text-align: center;
}
.conditions_delivery-block-title {
    color: #353535;
    font-size: 40px;
    font-weight: 600;
    font-family: 'Cera Pro';
    text-align: center;
}
.conditions_delivery-block-text {
    padding-top: 16px;
    color: #353535;
    font-size: 16px;
    font-weight: 400;
    font-family: "Manrope", sans-serif;
}
.conditions_delivery-block-t {
    padding-top: 4px !important;
}
.conditions_delivery-block {
    width: 666px;
    height: 304px;
    background-color: #fff;
    border-radius: 16px;
    padding: 24px;
}
.delivery-time {
    margin-top: 0px;
}
.delivery_conditions {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.price-table {
    margin-top: 60px;
    width: 682px;
    margin-left: auto;
    margin-right: auto;
}
.price-table__table {
    width: 100%;
    border-collapse: collapse;
}
.price-table__cell {
    padding: 14px 10px;
    border-bottom: 1px solid #E2E2E2;
    font-size: 16px;
    font-weight: 600;
    color: #353535;
}
.price-table__cell-head {
    font-weight: 400;
    font-size: 16px;
    color: #353535;
    font-family: "Manrope", sans-serif;
}
.price-table__cell-label {
    text-align: left;
    font-weight: 400;
    font-size: 16px;
    color: #353535;
    font-family: "Manrope", sans-serif;
}
.price-table__note {
    margin-top: 16px;
    font-size: 16px;
    font-weight: 400;
    color: #353535;
    text-align: center;
    font-family: "Manrope", sans-serif;
}
.faq-block-new {
    margin-top: 150px;
    margin-bottom: 130px;
}
.faq-title-new {
    font-weight: 600;
    margin-bottom: 40px;
}
.faq-item-new {
    border-bottom: 1px solid #e5e5e5;
}
.faq-item-two {
    border-top: 1px solid #e5e5e5;
}
.faq-question-new {
    width: 100%;
    padding: 30px 30px;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    margin: 0;
}
.faq-icon-new {
    font-size: 35px;
    transition: transform 0.2s ease;
}
.faq-item-new.is-open-new .faq-icon-new {
    transform: rotate(45deg);
}
.faq-answer-new {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-4px);
    transition: max-height 0.25s ease, opacity 0.25s ease, transform 0.25s ease;
    margin: 0;
    padding-left: 31px;
    color: #474747;
    font-size: 17px;
}
.faq-item-new.is-open-new .faq-answer-new {
    max-height: 400px;
    opacity: 1;
    transform: translateY(0);
    padding-bottom: 30px;
}
.brands-animation {
    margin-top: 100px;
    overflow: hidden;
}
.brands-animation-title {
    text-align: center;
    font-family: 'Cera Pro';
    font-weight: 600;
}
.row-right {
    margin-top: 60px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}
.row-left {
    margin-top: 20px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}
.brands-animation-item {
    flex: 0 0 auto;
    text-align: center;
    font-weight: 600;
}
.row-right {
    animation: move-right 10s linear infinite;
}
.row-left {
    animation: move-left 10s linear infinite;
}
@keyframes move-right {
    from {
        transform: translateX(-5%);
    }
    to {
        transform: translateX(5%);
    }
}
@keyframes move-left {
    from {
        transform: translateX(5%);
    }
    to {
        transform: translateX(-5%);
    }
}
.business-new {
    margin-top: 150px;
    text-align: center;
    font-family: 'Cera Pro';
    font-weight: 600;
}
.business-new-text {
    margin-top: 60px;
}
.delivery_conditions-subtitle {
    color: #353535;
    margin: 100px 0px 0px 0px;
}
.delivery_conditions-title {
    color: #353535;
    font-weight: 600;
    font-family: 'Cera Pro';
}
.delivery_conditions-text {
    margin-top: 32px;
    color: #353535;
}
.delivery_conditions-icons {
    margin-top: 60px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}
.payment-new-block {
    margin-top: 60px;
    display: flex;
    flex-direction: row;
    gap: 16px;
}
.payment-new-left {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.payment-new-block-right {
    width: 681.5px;
    height: 276px;
    background-color: transparent;
    border: 1px solid #E2E2E2;
    border-radius: 16px;
    padding: 24px;
}
.payment-new-right-title {
    color: #ff5a4e;
    font-weight: 600;
    font-size: 20px;
    font-family: 'Cera Pro';
}
.payment-new-right-text {
    margin-top: 16px;
    font-family: "Manrope", sans-serif;
    color: #353535;
}
.payment-new-block-left {
    width: 681.5px;
    height: 130px;
    background-color: #F8F8F8;
    border-radius: 15px;
    padding: 24px;
}
.payment-new-left-title {
    color: #353535;
    font-family: "Manrope", sans-serif;
    font-weight: 600;
}
.payment-new-left-text {
    margin-top: 16px;
    color: #353535;
    font-family: "Manrope", sans-serif;
}
.delivery-rules {
    margin-top: 100px;
}
.delivery-rules__title {
    color: #353535;
}
.delivery-rules__list {
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 16px;
}
.delivery-rules__item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}
.delivery-rules__number {
    min-width: 48px;
    height: 48px;
    border-radius: 16px;
    border: 1px solid #E2E2E2;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 20px;
    color: #000000;
    font-family: 'Cera Pro';
    flex-shrink: 0;
}
.delivery-rules__text {
    color: #353535;
    font-family: "Manrope", sans-serif;
}
.floor-lift {
    margin-top: 140px;
}
.floor-lift__subtitle {
    color: #353535;
}
.floor-lift__title {
    font-weight: 600;
    color: #353535;
    font-family: 'Cera Pro';
}
.floor-lift__table {
    margin-top: 46px;
}
.floor-lift__row {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    padding: 16px 0;
    border-bottom: 1px solid #eaeaea;
}
.floor-lift__row--head {
    font-weight: 500;
    color: #888;
}
.floor-lift__row--section {
    margin-top: 24px;
    font-weight: 500;
}
.floor-lift__cell {
    font-size: 16px;
    font-weight: 400;
    font-family: "Manrope", sans-serif;
    color: #353535;
}
.floor-lift__cell--name {
    color: #353535;
    font-family: "Manrope", sans-serif;
}
.floor-lift-name {
    font-size: 20px;
    font-weight: 500;
}
.floor-lift__note {
    margin-top: 16px;
    font-size: 16px;
    font-weight: 400;
    font-family: "Manrope", sans-serif;
    color: #353535;
}
.autoreg-success {
    margin-top: 40px;
}
.success-title {
    font-weight: 600;
    font-family: 'Cera Pro';
    text-transform: uppercase;
}
.success-text {
    margin-top: 40px;
    margin-bottom: 30px;
}
