html {
    font-size: calc(100vw / 1920 * 10);
}
body {
    font-family: 'Inter';
    font-weight: 400;
    transition: all .2s linear !important;
    min-height: 100vh;
    font-size: 1.6rem;
    color: #000;
    background: #FBFAF6;
}
a, h1, h2, h3, h4, h5, p, span, button, ul, li {
    padding: 0;
    margin: 0;
    background: transparent;
    text-decoration: none;
    border: none;
    transition: all .2s linear;
    color: #000;
}
input, textarea, select {
    padding: 0;
    margin: 0;
    background: transparent;
    border: none;
    outline: none;
	transition: all .2s linear;
}
.container {
    max-width: 172rem;
    width: 100%;
    padding-left: 0;
    padding-right: 0;
}
div {
    transition: all .2s linear;
}
path, rect, circle {
    transition: all .2s linear;
}
main {
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

/* header */

header {
    position: absolute;
    padding-top: 2rem;
    z-index: 9;
    left: 0;
    width: 100%;
    top: 0;
    transition: .3s all;
}
.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}
.burger-open {
    display: none;
}
.logo {
    display: flex;
    width: 20.5rem;
    margin: 0 auto;
}
.logo img {
    width: 20.5rem;
}
.logo img:nth-child(2) {
    display: none;
}
.logo img:nth-child(3) {
    display: none;
}
.header-container > nav {
    display: flex;
    align-items: center;
    gap: 7.6rem;
}
.header-container > nav ul {
    display: flex;
    align-items: center;
    gap: 7.6rem;
}
.header-container > nav:nth-child(2) ul {
    gap: 9.6rem;
}
.header-container > nav ul li {
    display: flex;
    list-style: none;
}
.header-container > nav ul li a {
    color: #FBFAF6;
    font-family: "Cormorant Unicase";
    font-size: 1.8rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
}
.header-buttons {
    display: flex;
    align-items: center;
    gap: 2rem;
}
.header-button-search {
    display: flex;
}
.header-button-search svg {
    width: 2.4rem;
    height: auto;
}
.header-button-phone {
    display: flex;
}
.header-button-phone svg {
    width: 2.4rem;
    height: auto;
}
.header-button-search:hover svg path {
    stroke: #BD8042;
}
.header-button-phone:hover svg path {
    stroke: #BD8042;
}
.header-container > nav ul li a:hover {
    color: #BD8042;
    text-decoration: underline;
}
.cart-mob {
    display: none;
}
.menu-mobile__fon {
    display: none;
}
.menu-mobile {
    display: none;
}
.menu-mobile__close {
    display: none;
}
.header-white .logo img:nth-child(1) {
    display: none;
}
.header-white .logo img:nth-child(2) {
    display: block;
}
.header-white .header-container > nav ul li a {
    color: #2B3245;
}
.header-white .header-button-search svg path {
    stroke: #2B3245;
}
.header-white .header-button-phone svg path {
    stroke: #2B3245;
}
.main-white {
    padding-top: 18.3rem;
}
header.top {
    position: fixed;
    transform: translateY(-100%);
    border-bottom: 1px solid #2B3245;
    background: #FBFAF6;
    padding: 2rem 0;
}
header.fixed {
    transform: translateY(0);
}
header.top .logo img:nth-child(1) {
    display: none;
}
header.top .logo img:nth-child(2) {
    display: none;
}
header.top .logo img:nth-child(3) {
    display: block;
}
header.top .header-container > nav ul li a {
    color: #2B3245;
}
header.top .header-button-search svg path {
    stroke: #2B3245;
}
header.top .header-button-phone svg path {
    stroke: #2B3245;
}

@media screen and (max-width: 992px) {
    html {
        font-size: calc(100vw / 375 * 10);
    }
    .container {
        max-width: 34.5rem;
    }
    .header-container {
        align-items: flex-start;
    }
    .header-container > nav {
        display: none;
    }
    .logo {
        width: 12.4rem;
    }
    .logo img {
        width: 12.4rem;
    }
    header {
        padding-top: 1.5rem;
    }
    .cart-mob {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 3.6rem;
        height: 3.6rem;
        border-radius: 100%;
        background: rgba(251, 250, 246, 0.10);
    }
    .cart-mob svg {
        width: 2.4rem;
        height: auto;
    }
    .burger-open {
        display: flex;
        flex-direction: column;
        justify-content: center;
        width: 3.6rem;
        height: 3.6rem;
        border-radius: 100%;
        background: rgba(251, 250, 246, 0.10);
        padding: 1rem;
        gap: 0.4rem;
    }
    .bar {
        height: 1px;
        width: 100%;
        background: #FBFAF6;
    }
    .change .bar:nth-child(1) {
        transform: rotate(-45deg) translate(-0.4rem, 0.3rem);
    }
    .change .bar:nth-child(2) {
        opacity: 0;
    }
    .change .bar:nth-child(3) {
        transform: rotate(45deg) translate(-0.4rem, -0.3rem);
    }
    .menu-mobile__fon.active {
        display: flex;
        position: fixed;
        top: 0;
        right: 0;
        width: 100%;
        height: 100%;
        background: rgba(43, 50, 69, 0.30);
        z-index: 9998;
    }
    .menu-mobile.active {
        display: flex;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 9999;
        background: #FBFAF6;
        max-width: 26.8rem;
        flex-direction: column;
        gap: 3rem;
        overflow-y: auto;
    }
    .menu-mobile__close.active {
        width: 3.6rem;
        height: 3.6rem;
        background: rgba(251, 250, 246, 0.10);
        border-radius: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        position: fixed;
        right: 6.2rem;
        top: 1.5rem;
        z-index: 99999;
    }
    .menu-mobile__close svg {
        width: 2.4rem;
        height: auto;
    }
    .menu-mobile__search {
        border-bottom: 1px solid rgba(144, 130, 131, 0.15);
        display: flex;
        align-items: center;
        position: relative;
    }
    .menu-mobile__search svg {
        width: 2.4rem;
        height: auto;
        left: 2rem;
        position: absolute;
    }
    .menu-mobile__search input {
        width: 100%;
        padding: 2.3rem 1rem 2.3rem 5.4rem;
        color: #000;
        font-size: 1.2rem;
        font-style: normal;
        font-weight: 400;
        line-height: 120%;
        letter-spacing: -0.024rem;
    }
    .menu-mobile__search input::placeholder {
        color: #908283;
    }
    .menu-mobile nav {
        padding: 0 2rem;
    }
    .menu-mobile nav ul {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 2.5rem;
    }
    .menu-mobile nav ul li {
        display: flex;
        list-style: none;
    }
    .menu-mobile nav ul li a {
        color: #000;
        font-family: "Cormorant Unicase";
        font-size: 1.8rem;
        font-style: normal;
        font-weight: 700;
        line-height: normal;
        text-transform: uppercase;
    }
    .menu-mobile__phone {
        margin-top: auto;
        border-top: 1px solid rgba(144, 130, 131, 0.15);
    }
    .menu-mobile__phone a {
        gap: 0.5rem;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 1.8rem;
    }
    .menu-mobile__phone a svg {
        width: 2.4rem;
        height: auto;
    }
    .menu-mobile__phone a p {
        color: #908283;
        font-size: 1.2rem;
        font-style: normal;
        font-weight: 400;
        line-height: 120%;
        letter-spacing: -0.024rem;
    }
    header.top {
        padding: 1.8rem 0;
    }
    header.top .header-container {
        align-items: center;
    }
    header.top .burger-open {
        background: rgba(43, 50, 69, 0.05);
    }
    header.top .cart-mob {
        background: rgba(43, 50, 69, 0.05);
    }
    header.top .bar {
        background: #2B3245;
    }
    header.top .cart-mob svg path {
        stroke: #2B3245;
    }
    .main-white {
        padding-top: 7rem;
    }
    .header-white {
        border-bottom: 1px solid #2B3245;
        padding-bottom: 1.8rem;
    }
    .header-white .header-container {
        align-items: center;
    }
    .header-white .logo img:nth-child(2) {
        display: none;
    }
    .header-white .logo img:nth-child(3) {
        display: block;
    }
    .header-white .burger-open {
        background: rgba(43, 50, 69, 0.05);
    }
    .header-white .cart-mob {
        background: rgba(43, 50, 69, 0.05);
    }
    .header-white .bar {
        background: #2B3245;
    }
    .header-white .cart-mob svg path {
        stroke: #2B3245;
    }
}

/* banner */

.banner {
    height: 102.4rem;
    display: flex;
    position: relative;
}
.banner-fon {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}
.banner-fon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.banner-fon::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.50) 0%, rgba(0, 0, 0, 0.50) 100%);
}
.banner-container {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 3;
}
.banner-container::before {
    content: '';
    position: absolute;
    top: 38.5rem;
    right: -9rem;
    opacity: 0.6;
    background: linear-gradient(70deg, rgba(251, 250, 246, 0.00) 30.48%, #FBFAF6 100%);
    width: 95rem;
    height: 1px;
}
.banner-container::after {
    content: '';
    position: absolute;
    width: 95rem;
    height: 1px;
    opacity: 0.6;
    background: linear-gradient(270deg, rgba(251, 250, 246, 0.00) 30.48%, #FBFAF6 100%);
    left: -9rem;
    bottom: 30.9rem;
}
.banner-title {
    color: #FBFAF6;
    text-align: center;
    font-family: "Cormorant Garamond";
    font-size: 6.4rem;
    font-style: normal;
    font-weight: 400;
    line-height: 93%;
    margin-bottom: 3.9rem;
}
.banner-images {
    position: relative;
    display: flex;
    gap: 2rem;
    margin-bottom: 6rem;
}
.banner-images::before {
    content: '';
    position: absolute;
    right: -2rem;
    bottom: -2rem;
    width: 1px;
    height: 31.4rem;
    opacity: 0.6;
    background: linear-gradient(180deg, rgba(251, 250, 246, 0.00) 30.48%, #FBFAF6 100%);
}
.banner-images::after {
    content: '';
    opacity: 0.6;
    background: linear-gradient(70deg, rgba(251, 250, 246, 0.00) 30.48%, #FBFAF6 100%);
    width: 28rem;
    height: 1px;
    position: absolute;
    bottom: -2rem;
    right: -2rem;
}
.banner-images img {
    width: 27rem;
    height: 33rem;
    object-fit: cover;
}
.banner-link {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.banner-link p {
    color: #FBFAF6;
    text-align: center;
    font-family: "Cormorant Unicase";
    font-size: 2.4rem;
    font-style: normal;
    font-weight: 700;
    line-height: 93%;
    text-decoration-line: underline;
    text-transform: uppercase;
}
.banner-link svg {
    width: 3.5rem;
    height: auto;
}
.banner-link:hover p {
    color: #BD8042;
}
.banner-link:hover svg path {
    fill: #BD8042;
}

@media screen and (max-width: 992px) {
    .banner {
        height: 62.8rem;
    }
    .banner-container::before {
        top: 23.7rem;
        right: -1.5rem;
        background: linear-gradient(70deg, rgba(251, 250, 246, 0.00) 72.7%, #FBFAF6 100%);
        width: 18.3rem;
    }
    .banner-container::after {
        width: 18.3rem;
        background: linear-gradient(270deg, rgba(251, 250, 246, 0.00) 72.7%, #FBFAF6 100%);
        left: -1.5rem;
        bottom: 20.3rem;
    }
    .banner-title {
        font-size: 3rem;
        margin-bottom: 2.5rem;
    }
    .banner-images {
        gap: 1rem;
        margin-bottom: 3rem;
    }
    .banner-images::before {
        right: -1rem;
        bottom: -1rem;
        height: 18.3rem;
        background: linear-gradient(180deg, rgba(251, 250, 246, 0.00) 72.7%, #FBFAF6 100%);
    }
    .banner-images::after {
        background: linear-gradient(70deg, rgba(251, 250, 246, 0.00) 72.7%, #FBFAF6 100%);
        width: 18.3rem;
        bottom: -1rem;
        right: -1rem;
    }
    .banner-images img {
        width: 12.5rem;
        height: 18.7rem;
    }
    .banner-link {
        gap: 0.5rem;
    }
    .banner-link p {
        font-size: 1.8rem;
    }
    .banner-link svg {
        width: 3rem;
    }
}

/* offers */

.offers {
    padding: 8rem 0 10rem 0;
}
.offers-container {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
.offers-name {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.title {
    color: #000;
    font-family: "Cormorant Unicase";
    font-size: 3.6rem;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-transform: uppercase;
}
.offers-link {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.offers-link p {
    color: #BD8042;
    font-family: "Cormorant Unicase";
    font-size: 2.4rem;
    font-style: normal;
    font-weight: 500;
    line-height: 93%;
}
.offers-link svg {
    width: 3.5rem;
    height: auto;
}
.offers-main {
    border-top: 1px solid rgba(144, 130, 131, 0.15);
    border-bottom: 1px solid rgba(144, 130, 131, 0.15);
}
.offers-products {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}
.product {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    border-right: 1px solid rgba(144, 130, 131, 0.15);
    position: relative;
    gap: 2rem;
    border-bottom: 1px solid transparent;
}
.product:first-child {
    border-left: 1px solid rgba(144, 130, 131, 0.15);
}
.product-img {
    width: 100%;
    height: 35.3rem;
    display: flex;
}
.product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.product-wishlist-add {
    position: absolute;
    top: 3.5rem;
    right: 3.5rem;
    z-index: 2;
    opacity: 0;
}
.product-wishlist-add svg {
    width: 2.8rem;
    height: auto;
}
.product-wishlist-add.active svg path {
	fill: #FBFAF6;
}
.product-main {
    display: flex;
    flex-direction: column;
}
.product-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    transition: .3s all;
    height: 2.4rem;
}
.product-info svg {
    width: 2.5rem;
    height: auto;
}
.product-info p {
    color: #908283;
    font-size: 1.6rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
.product-title {
    color: #000;
    font-size: 1.8rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: uppercase;
}
.product-row {
    height: 0;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: .3s all;
}
.product-price {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.product-price p, .product-price p span {
    color: #BD8042;
    font-size: 1.6rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
.product-row a {
    display: flex;
}
.product-row a svg {
    width: 3.5rem;
    height: auto;
}
.product:hover .product-wishlist-add {
    opacity: 1;
}
.product:hover {
    border-bottom-color: #BD8042;
}
.product:hover .product-row {
    height: 2.4rem;
    margin-top: 1rem;
}
.product:hover .product-info {
    max-height: 0;
    position: relative;
    overflow: hidden;
    margin-bottom: 0;
}
.offers-link:hover p {
    color: #2B3245;
}
.offers-link:hover svg path {
    fill: #2B3245;
}

@media screen and (max-width: 992px) {
    .offers {
        padding: 4rem 0 0 0;
    }
    .offers-name {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    .title {
        font-size: 2rem;
    }
    .offers-link {
        gap: 0.5rem;
    }
    .offers-link p {
        font-size: 1.5rem;
    }
    .offers-link svg {
        width: 3rem;
    }
    .offers-products {
        grid-template-columns: repeat(2, 1fr);
        max-width: none;
    }
    .product {
        padding: 1.5rem;
        gap: 1rem;
        border-bottom: 1px solid rgba(144, 130, 131, 0.15);
    }
    .product:first-child {
        border-left: none;
    }
    .product-img {
        height: 14.5rem;
    }
    .product-wishlist-add {
        top: 2.5rem;
        right: 2.5rem;
        opacity: 1;
    }
    .product-wishlist-add svg {
        width: 2.5rem;
    }
    .product-info {
        gap: 0.5rem;
        height: auto;
    }
    .product-info svg {
        display: none;
    }
    .product-info p {
        font-size: 1.2rem;
    }
    .product-title {
        font-size: 1.2rem;
    }
    .product-row {
        height: auto;
        margin-top: 1rem;
    }
    .product-price p, .product-price p span {
        font-size: 1.2rem;
    }
    .product-row a svg {
        width: 3rem;
    }
    .product:hover .product-row {
        height: auto;
        margin-top: 1rem;
    }
    .product:hover .product-info {
        max-height: 100%;
        margin-bottom: 1rem;
    }
}

/* about_us */

.about_us {
    background: #2B3245;
}
.about_us-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    position: relative;
}
.about_us-main {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5rem;
}
.about_us-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3.1rem;
}
.about_us-logo img:nth-child(1) {
    width: 6.5rem;
}
.about_us-logo img:nth-child(2) {
    width: 35.4rem;
}
.about_us-logo img:nth-child(3) {
    width: 12.6rem;
}
.about_us-description {
    color: #FBFAF6;
    font-size: 1.6rem;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
    letter-spacing: -0.032rem;
    max-width: 52.7rem;
}
.about_us-link {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.about_us-link p {
    color: #FBFAF6;
    text-align: center;
    font-family: "Cormorant Unicase";
    font-size: 2.4rem;
    font-style: normal;
    font-weight: 500;
    line-height: 93%;
    border-bottom: 1px solid #FBFAF6;
}
.about_us-link svg {
    width: 3.5rem;
    height: auto;
}
.about_us-center {
    position: absolute;
    width: 27rem;
    height: 27rem;
    margin: auto;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2;
}
.about_us-center img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.about_us-img {
    width: 100%;
    height: 90rem;
}
.about_us-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.about_us-link:hover p {
    color: #BD8042;
    border-color: #BD8042;
}
.about_us-link:hover svg path {
    fill: #BD8042;
}

@media screen and (max-width: 992px) {
    .about_us-container {
        display: flex;
        flex-direction: column-reverse;
    }
    .about_us-main {
        gap: 2rem;
        padding: 9.6rem 4.2rem 6.5rem 4.2rem;
    }
    .about_us-logo {
        gap: 1.4rem;
    }
    .about_us-logo img:nth-child(1) {
        width: 3rem;
    }
    .about_us-logo img:nth-child(2) {
        width: 16rem;
    }
    .about_us-logo img:nth-child(3) {
        width: 5.7rem;
    }
    .about_us-description {
        font-size: 1.2rem;
        letter-spacing: -0.024rem;
        text-align: center;
        max-width: 29rem;
    }
    .about_us-description br {
        display: none;
    }
    .about_us-link {
        gap: 0.5rem;
    }
    .about_us-link p {
        font-size: 1.5rem;
    }
    .about_us-link svg {
        width: 3rem;
    }
    .about_us-center {
        width: 12.4rem;
        height: 12.4rem;
    }
    .about_us-img {
        height: 35.2rem;
    }
}

/* stones */

.stones {
    padding: 15rem 0;
}
.stones-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
.stones-slider {
    border-top: 1px solid rgba(144, 130, 131, 0.15);
    border-bottom: 1px solid rgba(144, 130, 131, 0.15);
}
.stones-slider__container {
    display: flex;
    position: relative;
    align-items: center;
}
.stones-prev {
    display: flex;
    position: absolute;
    left: -2.5rem;
}
.stones-prev svg {
    width: 3.5rem;
    height: auto;
}
.stones_swiper {
    width: 100%;
}
.stones_swiper .swiper-slide {
    height: auto;
}
.stones-slide {
    padding: 4.75rem 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}
.stones-slide img {
    width: 100%;
    height: 35.3rem;
    object-fit: cover;
}
.stones-slide__name {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}
.stones-slide__name p {
    color: #000;
    text-align: center;
    font-size: 1.8rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: uppercase;
}
.stones-slide__name svg {
    width: 3.6rem;
    height: auto;
    display: none;
}
.stones-next {
    display: flex;
    position: absolute;
    right: -2.5rem;
}
.stones-next svg {
    width: 3.5rem;
    height: auto;
}
.stones-slide:hover .stones-slide__name svg {
    display: block;
}
.stones-slide:hover .stones-slide__name p {
    color: #BD8042;
}

@media screen and (max-width: 992px) {
    .stones {
        padding: 4rem 0 6rem 0;
    }
    .stones-container {
        gap: 3.5rem;
    }
    .stones-slider {
        border-top: none;
        border-bottom: none;
    }
    .stones-prev {
        left: 3.3rem;
    }
    .stones-prev svg {
        width: 3rem;
    }
    .stones_swiper {
        max-width: 15.8rem;
    }
    .stones-slide {
        padding: 0;
        gap: 0;
    }
    .stones-slide img {
        height: 14.5rem;
    }
    .stones-slide__name p {
        font-size: 1.2rem;
    }
    .stones-slide:hover .stones-slide__name svg {
        display: none;
    }
    .stones-next {
        right: 3.3rem;
    }
    .stones-next svg {
        width: 3rem;
    }
}

/* portfolio */

.portfolio-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
.portfolio-main {
    display: flex;
    flex-wrap: wrap;
    gap: 0.1rem;
}
.portfolio-item {
    width: 100%;
    max-width: 63.3rem;
    height: 40rem;
    position: relative;
}
.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.portfolio-item::before {
    content: '';
    background: linear-gradient(0deg, rgba(251, 250, 246, 0.60) 0%, rgba(251, 250, 246, 0.60) 100%);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    width: 100%;
    height: 100%;
    transition: .3s all;
}
.portfolio-item:hover::before {
    opacity: 0;
}
.portfolio-item:nth-child(1) {
    max-width: 65.9rem;
    height: 50rem;
}
.portfolio-item:nth-child(2) {
    max-width: 70.7rem;
    height: 50rem;
}
.portfolio-item:nth-child(3) {
    max-width: 53.4rem;
    height: 50rem;
}
.portfolio-item:nth-child(4) {
    max-width: 65.9rem;
}
.portfolio-item:nth-child(5) {
    max-width: 56.1rem;
}
.portfolio-item:nth-child(6) {
    max-width: 68rem;
}

@media screen and (max-width: 992px) {
    .portfolio-container {
        gap: 1.5rem;
    }
    .portfolio .title {
        text-align: center;
    }
    .portfolio-main {
        gap: 0;
    }
    .portfolio-item {
        max-width: 18.7rem;
        height: 20.5rem;
    }
    .portfolio-item::before {
        display: none;
    }
    .portfolio-item:nth-child(1) {
        max-width: 17.9rem;
        height: 21.8rem;
    }
    .portfolio-item:nth-child(2) {
        max-width: 19.6rem;
        height: 21.8rem;
    }
    .portfolio-item:nth-child(3) {
        max-width: 20.5rem;
        height: 20.5rem;
    }
    .portfolio-item:nth-child(4) {
        max-width: 17rem;
        height: 20.5rem;
    }
    .portfolio-item:nth-child(5) {
        max-width: 17.3rem;
        height: 19.2rem;
    }
    .portfolio-item:nth-child(6) {
        max-width: 20.2rem;
        height: 19.2rem;
    }
}

/* footer */

footer {
    background: #2B3245;
    padding: 6.6rem 0 7rem 0;
}
.footer-container {
    display: flex;
    flex-direction: column;
    gap: 6rem;
}
.footer-main {
    display: flex;
    align-items: flex-start;
}
.footer-main > div {
    flex-grow: 1;
}
.footer-info {}
.footer-contacts {
    padding-top: 2rem;
    flex:1;
    color: #fff;
    margin-bottom: 2rem;
}
.footer-contacts a { color: #fff; }
.footer-contacts a:hover, .footer-contacts a:active {
    color: #BD8042;
    text-decoration: underline;
}
.footer-logo {
    display: flex;
}
.footer-logo img {
    width: 26.6rem;
}
.footer-menu {
    padding-top: 2rem;
    display: flex;
    align-items: flex-start;
    gap: 14rem;
    margin: 0 auto;
}
.footer-menu nav {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}
.footer-menu nav h3 {
    color: #FBFAF6;
    font-family: "Cormorant Unicase";
    font-size: 2.4rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
}
.footer-menu nav ul {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
}
.footer-menu nav ul li {
    display: flex;
    list-style: none;
}
.footer-menu nav ul li a {
    color: #FBFAF6;
    font-family: "Cormorant Unicase";
    font-size: 1.8rem;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-transform: uppercase;
}
.footer-social {
    display: flex;
    align-items: center;
    gap: 2.3rem;
    padding-top: 2rem;
}
.footer-social a {
    display: flex;
}
.footer-social a svg {
    width: 4.6rem;
    height: auto;
}
.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 9rem;
}
.footer-bottom a {
    color: #FBFAF6;
    font-size: 1.6rem;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
    letter-spacing: -0.032rem;
}
.footer-bottom p {
    color: #FBFAF6;
    font-size: 1.6rem;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
    letter-spacing: -0.032rem;
}
.footer-menu nav ul li a:hover {
    color: #BD8042;
    text-decoration: underline;
}
.footer-bottom a:hover {
    color: #BD8042;
    text-decoration: underline;
}
.footer-youtube:hover svg rect {
    fill: #F00;
}
.footer-whatsapp:hover svg rect {
    fill: rgb(0, 255, 21);
}
.footer-whatsapp:hover svg path:nth-child(3) {
    fill: rgb(0, 255, 21);
}
.footer-tg:hover svg rect {
    fill: rgb(0, 162, 255);
}

@media screen and (max-width: 992px) {
    footer {
        padding: 3rem 0 5.6rem 0;
    }
    .footer-container {
        gap: 2rem;
    }
    .footer-main {
        flex-direction: column;
    }
    .footer-logo img {
        width: 11.5rem;
    }
    .footer-menu {
        padding-top: 0;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 5rem;
        margin: 3rem 0 3rem 0;
    }
    .footer-menu nav {
        gap: 1.5rem;
    }
    .footer-menu nav h3 {
        font-size: 2rem;
    }
    .footer-menu nav ul li a {
        font-size: 1.5rem;
    }
    .footer-social {
        width: 100%;
        justify-content: center;
        padding-top: 0;
    }
    .footer-bottom {
        justify-content: center;
        flex-direction: column;
        gap: 0.5rem;
    }
    .footer-bottom a {
        font-size: 1.4rem;
        letter-spacing: -0.028rem;
    }
    .footer-bottom p {
        font-size: 1.4rem;
        letter-spacing: -0.028rem;
    }
}

/* search */

.search-popup {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #FBFAF6;
    z-index: 99;
    padding: 0 10rem;
}
.search-popup form {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    width: 100%;
}
.search-popup form svg {
    width: 2.6rem;
    height: auto;
}
.search-popup form input {
    color: #000;
    font-size: 2rem;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
    letter-spacing: -0.04rem;
    width: 100%;
    padding: 2rem 0;
}
.search-popup form input::placeholder {
    color: #908283;
}
.search-popup__close {
    display: flex;
    min-width: 2.6rem;
}
.search-popup__close svg {
    width: 2.6rem;
    height: auto;
}

@media screen and (max-width: 992px) {
    
}

/* popup */

.popup {
    display: none;
    z-index: 999999;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.popup-fon {
    background: rgba(0, 0, 0, 0.31);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.popup-main {
    background: #FBFAF6;
    position: relative;
    z-index: 2;
    margin: auto;
    width: 100%;
    max-width: 85rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}
.popup-close {
    display: flex;
    position: absolute;
    top: 2rem;
    right: 2rem;
}
.popup-close svg {
    width: 2.6rem;
    height: auto;
}
.popup-img {
    height: 64rem;
}
.popup-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.popup-col {
    padding: 5rem 4rem;
    display: flex;
    flex-direction: column;
    gap: 4rem;
    justify-content: center;
}
.popup-name {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.popup-name h2 {
    color: #000;
    font-family: "Cormorant Unicase";
    font-size: 3.6rem;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-transform: uppercase;
    max-width: 30.5rem;
}
.popup-name p {
    color: #908283;
    font-size: 1.6rem;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
    letter-spacing: -0.032rem;
    max-width: 31.6rem;
}
.popup-form {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
.popup-form > p {
    color: #908283;
    text-align: center;
    font-size: 1.2rem;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
    letter-spacing: -0.024rem;
    opacity: 0.5;
    max-width: 25.4rem;
    margin: 0 auto;
}
.popup-checkboxes {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}
.popup-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    cursor: pointer;
}
.popup-checkbox input[type="checkbox"] {
    min-width: 2rem;
    width: 2rem;
    height: 2rem;
    accent-color: #BD8042;
    cursor: pointer;
    margin: 0;
}
.popup-checkbox span {
    color: #908283;
    font-size: 1.2rem;
    line-height: 120%;
    letter-spacing: -0.024rem;
}
.popup-checkbox span a {
    color: #BD8042;
    text-decoration: underline;
}
.popup-checkbox span a:hover {
    color: #908283;
}
.popup-checkbox span span {
    color: #DA1414;
    margin-left: 0.2rem;
}
.popup-input {
    display: flex;
    flex-direction: column;
    position: relative;
}
.popup-input label {
    color: rgba(43, 50, 69, 0.8);
    font-family: "Cormorant Unicase";
    font-size: 1.6rem;
    font-style: normal;
    font-weight: 400;
    line-height: 2rem;
    position: absolute;
    z-index: 2;
    left: 2rem;
    top: -1rem;
    background: #FBFAF6;
}
.popup-input label span {
    color: #DA1414;
    font-size: 1.1rem;
    font-style: normal;
    font-weight: 600;
    line-height: 1.6rem;
}
.popup-input input {
    color: #000;
    font-size: 1.6rem;
    font-style: normal;
    font-weight: 300;
    line-height: 130%;
    padding: 1.6rem;
    width: 100%;
    border: 1px solid #2B3245;
    background: #FBFAF6;
}
.popup-input input::placeholder {
    color: #908283;
}
.popup-submit {
    border: 1px solid #BD8042;
    background: #FBFAF6;
    color: #BD8042;
    font-family: "Cormorant Unicase";
    font-size: 1.8rem;
    font-style: normal;
    font-weight: 700;
    line-height: 130%;
    text-transform: uppercase;
    text-align: center;
    padding: 1.6rem;
}
.popup-thanks .popup-name h2 {
    text-align: center;
}

@media screen and (max-width: 992px) {
    .popup {
        padding: 2.5rem;
    }
    .popup-main {
        display: flex;
        flex-direction: column;
        overflow-y: auto;
        max-height: 100%;
    }
    .popup-close {
        top: 1.4rem;
        right: 1.4rem;
    }
    .popup-close svg {
        width: 2rem;
    }
    .popup-close svg path {
        stroke: #FBFAF6;
    }
    .popup-img {
        height: 20rem;
    }
    .popup-col {
        padding: 2.5rem;
        gap: 2rem;
    }
    .popup-name {
        gap: 1rem;
    }
    .popup-name h2 {
        font-size: 2rem;
        max-width: 17.5rem;
    }
    .popup-name p {
        font-size: 1.2rem;
        letter-spacing: -0.024rem;
        max-width: 20.7rem;
    }
    .popup-form {
        gap: 1.5rem;
    }
    .popup-form > p {
        font-size: 1rem;
        letter-spacing: -0.02rem;
        max-width: 20.4rem;
    }
    .popup-input label {
        font-size: 1.2rem;
    }
    .popup-input input {
        font-size: 1.2rem;
        padding: 1.1rem 1.6rem;
    }
    .popup-submit {
        font-size: 1.5rem;
        padding: 1.1rem;
    }
    .popup-thanks .popup-name h2 {
        max-width: none;
    }
    .popup-thanks .popup-col {
        min-height: 41.3rem;
    }
}

/* page_404 */

.page_404 {
    height: 78rem;
    display: flex;
    position: relative;
}
.page_404-fon {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.page_404-fon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.50) 0%, rgba(0, 0, 0, 0.50) 100%);
}
.page_404-fon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.page_404-container {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4rem;
}
.page_404-container h2 {
    color: #FBFAF6;
    text-align: center;
    font-family: "Cormorant Garamond";
    font-size: 6.4rem;
    font-style: normal;
    font-weight: 400;
    line-height: 93%;
}
.page_404-container a {
    padding: 1.6rem 3.3rem;
    width: 27rem;
    border: 1px solid #FBFAF6;
    color: #FBFAF6;
    font-family: "Cormorant Unicase";
    font-size: 1.8rem;
    font-style: normal;
    font-weight: 700;
    line-height: 130%;
    text-transform: uppercase;
    text-align: center;
}

@media screen and (max-width: 992px) {
    .page_404 {
        height: 52rem;
    }
    .page_404-container {
        gap: 2rem;
    }
    .page_404-container h2 {
        font-size: 3rem;
        max-width: 19rem;
    }
    .page_404-container a {
        width: 21.3rem;
        font-size: 1.5rem;
    }
}

/* about_brand */

.about_brand {
    padding: 6rem 0 13rem 0;
    position: relative;
}
.about_brand::before {
    content: '';
    position: absolute;
    bottom: 13rem;
    left: 0;
    width: 82.5rem;
    height: 0.1rem;
    background: linear-gradient(90deg, rgba(144, 130, 131, 0.30) 0%, rgba(144, 130, 131, 0.00) 100%);
}
.about_brand-container {
    display: flex;
    flex-direction: column;
    gap: 6rem;
}
.about_brand-row {
    display: flex;
    gap: 2.3rem;
}
.about_brand-info {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    padding-right: 2.8rem;
    width: 100%;
    max-width: 70.5rem;
}
.about_brand-info p {
    color: rgba(144, 130, 131, 0.30);
    font-family: "Imperial Script";
    font-size: 3.6rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: uppercase;
}
.about_brand-info img {
    width: 16.2rem;
    margin-left: auto;
}
.about_brand-info::before {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    width: 1px;
    height: 20rem;
    background: linear-gradient(180deg, rgba(144, 130, 131, 0.30) 0%, rgba(144, 130, 131, 0.00) 100%);
}
.about_brand-col {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}
.about_brand-col > h2 {
    color: #000;
    font-family: "Cormorant Unicase";
    font-size: 3.6rem;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-transform: uppercase;
}
.about_brand-text {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 52.7rem;
}
.about_brand-text p {
    color: #000;
    font-size: 1.6rem;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
    letter-spacing: -0.032rem;
}
.about_brand-images {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}
.about_brand-images img:nth-child(1) {
    width: 100%;
    max-width: 70.5rem;
    height: 54.9rem;
    object-fit: cover;
}
.about_brand-images img:nth-child(2) {
    width: 100%;
    max-width: 99.5rem;
    height: 66.2rem; 
    object-fit: cover;
}

@media screen and (max-width: 992px) {
    .about_brand {
        padding: 3rem 0 4rem 0;
    }
    .about_brand::before {
        bottom: 4rem;
        left: auto;
        right: 0;
        width: 18.3rem;
        opacity: 0.6;
        background: linear-gradient(90deg, rgba(144, 130, 131, 0.00) 35.58%, rgba(144, 130, 131, 0.70) 100%);
    }
    .about_brand-container {
        gap: 2rem;
    }
    .about_brand-row {
        gap: 1.7rem;
    }
    .about_brand-info {
        gap: 22.8rem;
        justify-content: flex-start;
        padding-right: 0;
        padding-top: 4.1rem;
        max-width: 9.5rem;
    }
    .about_brand-info p {
        font-size: 1.8rem;
    }
    .about_brand-info img {
        width: 9.5rem;
        margin-left: 0;
    }
    .about_brand-info::before {
        display: none;
    }
    .about_brand-col {
        gap: 1.3rem;
    }
    .about_brand-col > h2 {
        font-size: 2rem;
    }
    .about_brand-text {
        gap: 1rem;
        max-width: 22.7rem;
    }
    .about_brand-text p {
        font-size: 1.2rem;
        letter-spacing: -0.024rem;
    }
    .about_brand-images {
        flex-direction: column-reverse;
        gap: 1.5rem;
    }
    .about_brand-images img:nth-child(1) {
        max-width: 22.1rem;
        height: 21.4rem;
    }
    .about_brand-images img:nth-child(2) {
        max-width: 23.4rem;
        height: 15.4rem;
        margin-left: auto;
    }
}

/* about_mission */

.about_mission {
    margin-bottom: 13rem;
}
.about_mission-container {
    display: flex;
    flex-direction: column;
}
.about_mission-main {
    display: flex;
    gap: 2rem;
}
.about_mission-img {
    width: 100%;
    max-width: 70.5rem;
    position: relative;
    display: flex;
    align-items: flex-start;
}
.about_mission-img::before {
    content: '';
    width: 0.1rem;
    height: 20rem;
    background: linear-gradient(180deg, rgba(144, 130, 131, 0.30) 0%, rgba(144, 130, 131, 0.00) 100%);
    position: absolute;
    right: 0;
    top: 0;
}
.about_mission-img img {
    width: 50.4rem;
}
.about_mission-col {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}
.about_mission-col > h2 {
    color: #000;
    font-family: "Cormorant Unicase";
    font-size: 3.6rem;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-transform: uppercase;
}
.about_mission-text {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 56rem;
}
.about_mission-text p {
    color: #000;
    font-size: 1.6rem;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
    letter-spacing: -0.032rem;
}
.about_mission-row {
    display: flex;
    gap: 2rem;
}
.about_mission-founder {
    width: 100%;
    max-width: 70.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.about_mission-founder > img {
    width: 100%;
    height: 92.9rem;
    object-fit: cover;
}
.about_mission-founder__name {
    display: flex;
    align-items: flex-end;
    gap: 1.5rem;
}
.about_mission-founder__name h3 {
    color: #2B3245;
    font-family: "Cormorant Garamond";
    font-size: 4.8rem;
    font-style: normal;
    font-weight: 400;
    line-height: 93%;
}
.about_mission-founder__name p {
    color: #908283;
    font-family: "Cormorant Garamond";
    font-size: 2.8rem;
    font-style: normal;
    font-weight: 400;
    line-height: 93%;
}
.about_mission-tg {
    width: 100%;
    max-width: 70.5rem;
    padding-top: 6rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-left: auto;
}
.about_mission-tg img {
    width: 100%;
    height: 66.2rem;
    border-radius: 0rem 0rem 50rem 50rem;
    object-fit: cover;
    margin-bottom: 8.4rem;
}
.about_mission-tg h2 {
    color: #000;
    text-align: center;
    font-family: "Cormorant Unicase";
    font-size: 3.6rem;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-transform: uppercase;
    margin-bottom: 4rem;
}
.about_mission-link {
    padding: 1.6rem 3.3rem;
    border: 1px solid #BD8042;
    background: #FBFAF6;
    color: #BD8042;
    font-family: "Cormorant Unicase";
    font-size: 1.8rem;
    font-style: normal;
    font-weight: 700;
    line-height: 130%;
    text-transform: uppercase;
}

@media screen and (max-width: 992px) {
    .about_mission {
        margin-bottom: 7.5rem;
    }
    .about_mission-container {
        gap: 4.6rem;
    }
    .about_mission-main {
        justify-content: space-between;
    }
    .about_mission-img {
        max-width: 12rem;
    }
    .about_mission-img::before {
        width: 18.3rem;
        height: 1px;
        opacity: 0.6;
        background: linear-gradient(270deg, rgba(144, 130, 131, 0.00) 35.58%, rgba(144, 130, 131, 0.70) 100%);
        right: auto;
        top: auto;
        bottom: 0;
        left: 0;
    }
    .about_mission-img img {
        width: 17.8rem;
        transform: rotate(90deg);
        margin-left: -7rem;
        margin-top: 8rem;
    }
    .about_mission-col {
        gap: 1.5rem;
    }
    .about_mission-col > h2 {
        font-size: 2rem;
    }
    .about_mission-text {
        gap: 1rem;
        max-width: 22.7rem;
    }
    .about_mission-text p {
        font-size: 1.2rem;
        letter-spacing: -0.024rem;
    }
    .about_mission-row {
        flex-direction: column;
    }
    .about_mission-founder {
        flex-direction: row-reverse;
        gap: 0.5rem;
    }
    .about_mission-founder > img {
        width: 21.5rem;
        min-width: 21.5rem;
        height: 28.3rem;
    }
    .about_mission-founder__name {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
        width: 100%;
    }
    .about_mission-founder__name h3 {
        font-size: 2.2rem;
    }
    .about_mission-founder__name p {
        font-size: 1.5rem;
        text-align: right;
        max-width: 8rem;
        margin-left: auto;
    }
    .about_mission-tg {
        padding-top: 0;
    }
    .about_mission-tg img {
        height: 22.3rem;
        margin-bottom: 4rem;
    }
    .about_mission-tg h2 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }
    .about_mission-link {
        font-size: 1.5rem;
        padding: 1.6rem;
        width: 100%;
        text-align: center;
    }
}

/* about_showroom */

.about_showroom {
    margin-bottom: 10rem;
}
.about_showroom-container {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 5.4rem;
}
.about_showroom-img {
    position: relative;
}
.about_showroom-img::before {
    content: '';
    width: 20rem;
    height: 1px;
    background: linear-gradient(270deg, rgba(144, 130, 131, 0.30) 0%, rgba(144, 130, 131, 0.00) 100%);
    position: absolute;
    top: -0.2rem;
    left: -1.4rem;
}
.about_showroom-img::after {
    content: '';
    width: 1px;
    height: 20rem;
    background: linear-gradient(180deg, rgba(144, 130, 131, 0.30) 0%, rgba(144, 130, 131, 0.00) 100%);
    position: absolute;
    top: -2.9rem;
    right: 1rem;
    z-index: 2;
}
.about_showroom-img span::before {
    content: '';
    width: 18rem;
    height: 1px;
    background: linear-gradient(90deg, rgba(144, 130, 131, 0.30) 0%, rgba(144, 130, 131, 0.00) 100%);
    position: absolute;
    bottom: 1rem;
    left: -1.4rem;
}
.about_showroom-img span::after {
    content: '';
    width: 1px;
    height: 20rem;
    background: linear-gradient(0deg, rgba(144, 130, 131, 0.30) 0%, rgba(144, 130, 131, 0.00) 100%);
    position: absolute;
    left: 1.2rem;
    top: 3.2rem;
}
.about_showroom-img img {
    width: 17.2rem;
}
.about_showroom-main {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    align-items: flex-start;
}
.about_showroom-main h2 {
    color: #000;
    font-family: "Cormorant Unicase";
    font-size: 3.6rem;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-transform: uppercase;
}
.about_showroom-main p {
    color: #000;
    font-size: 1.6rem;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
    letter-spacing: -0.032rem;
    max-width: 56rem;
}
.about_showroom-link {
    width: 41.4rem;
    padding: 1.6rem;
    border: 1px solid #BD8042;
    background: #FBFAF6;
    color: #BD8042;
    font-family: "Cormorant Unicase";
    font-size: 1.8rem;
    font-style: normal;
    font-weight: 700;
    line-height: 130%;
    text-transform: uppercase;
    text-align: center;
}

@media screen and (max-width: 992px) {
    .about_showroom {
        margin-bottom: 6rem;
    }
    .about_showroom-container {
        align-items: center;
        gap: 2.8rem;
        padding-bottom: 6.4rem;
        position: relative;
    }
    .about_showroom-img::before {
        width: 11.1rem;
        top: 0;
        left: -0.8rem;
    }
    .about_showroom-img::after {
        height: 10.7rem;
        top: -1.4rem;
        right: 0.5rem;
    }
    .about_showroom-img span::before {
        width: 10rem;
        bottom: 0.6rem;
        left: -0.8rem;
    }
    .about_showroom-img span::after {
        height: 10.7rem;
        left: 0.6rem;
        top: 1.8rem;
    }
    .about_showroom-img img {
        width: 9.4rem;
    }
    .about_showroom-main {
        gap: 1.5rem;
        max-width: 21.1rem;
    }
    .about_showroom-main h2 {
        font-size: 2rem;
    }
    .about_showroom-main p {
        font-size: 1.2rem;
        letter-spacing: -0.024rem;
    }
    .about_showroom-link {
        width: 100%;
        font-size: 1.5rem;
        position: absolute;
        bottom: 0;
        left: 0;
    }
}

/* catalog */

.catalog {
    margin: 1rem 0 8rem 0;
}
.catalog-container {
    display: flex;
    flex-direction: column;
}
.catalog-filter {
    border-top: 1px solid rgba(144, 130, 131, 0.15);
    padding: 2rem 0;
}
.catalog-filter__container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.catalog-filter__row {
    display: flex;
    align-items: center;
    gap: 12.5rem;
}
.catalog-filter__block {
    position: relative;
    display: flex;
    flex-direction: column;
}
.catalog-filter__block-button {
    display: flex;
    align-items: center;
    gap: 0.7rem;
}
.catalog-filter__block-button p {
    color: #908283;
    font-family: "Cormorant Unicase";
    font-size: 1.6rem;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-transform: uppercase;
}
.catalog-filter__block-button svg {
    width: 1.6rem;
    height: auto;
    transition: .3s all;
}
.catalog-filter__block-content {
    display: none;
}
.catalog-filter__block-checkbox {
    display: flex;
    align-items: center;
    position: relative;
    height: 2.4rem;
}
.catalog-filter__block-checkbox label {
    color: #000;
    font-family: "Cormorant Unicase";
    font-size: 1.6rem;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-transform: uppercase;
    cursor: pointer;
    padding-left: 3.1rem;
	white-space: nowrap;
}
.catalog-filter__block-checkbox input[type=checkbox]:before {
    content: "";
    display: inline-block;
    width: 2.4rem;
    height: 2.4rem;
    border: 0.1rem solid #908283;
    position: absolute;
    margin-top: -1.1rem;
    cursor: pointer;
}
.catalog-filter__block-checkbox input[type=checkbox]:checked:before {
    background:transparent;
    background-image: url('/wp-content/uploads/2025/05/chek.svg');
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    background-size: 2.5rem;
    border-color: #BD8042;
}
.catalog-filter__block-checkbox input[type="checkbox"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: none;
}
.catalog-filter__block-checkbox input[type="checkbox"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: none;
}
.catalog-filter__block-checkbox input[type="checkbox"]:checked {
    background-image: none;
}
.catalog-filter__block.active .catalog-filter__block-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    border: 1px solid #908283;
    background: #FBFAF6;
    padding: 3rem;
    position: absolute;
    top: 100%;
    z-index: 9;
    left: 0;
    margin-top: 2.2rem;
	max-height: 50vh;
    overflow-y: auto;
}
.catalog-filter__block.active .catalog-filter__block-button p {
    color: #BD8042;
}
.catalog-filter__block.active .catalog-filter__block-button svg {
    transform: rotate(180deg);
}
.catalog-filter__block.active .catalog-filter__block-button svg path {
    stroke: #BD8042;
}
.catalog-filter__sorting select {
    background-image: url('/wp-content/uploads/2025/05/select.svg');
    background-position: center right;
    background-repeat: no-repeat;
    background-size: 1.4rem;
    padding-right: 2.1rem;
    cursor: pointer;
    color: #908283;
    font-family: "Cormorant Unicase";
    font-size: 1.6rem;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-transform: uppercase;
}
.catalog-filter__sorting select {
  -webkit-appearance: none;
  -moz-appearance: none;
}
.catalog-filter__sorting select::-ms-expand {
  display: none;
}
.catalog-grid {
    display: flex;
    flex-direction: column;
    border-bottom: 1px solid rgba(144, 130, 131, 0.15);
}
.catalog-grid__row {
    border-top: 1px solid rgba(144, 130, 131, 0.15);
}
.catalog-grid__row-container {
    display: flex;
    flex-wrap: wrap;
}
.catalog-grid__row-container .product {
    max-width: 43rem;
    width: 100%;
}
.catalog-grid__row.big .product {
    max-width: 85rem;
    padding: 0;
    margin-top: 4rem;
    margin-bottom: 4rem;
    border: none !important;
}
.catalog-grid__row.big .product .product-img {
    position: relative;
    height: 90rem;
}
.catalog-grid__row.big .product .product-img::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 85%, rgba(0, 0, 0, 0.70) 100%);
}
.catalog-grid__row.big .product .product-info {
    position: absolute;
    top: -76.6rem;
    left: 3rem;
    z-index: 4;
    height: auto;
}
.catalog-grid__row.big .product .product-info p {
    color: #FBFAF6;
}
.catalog-grid__row.big .product .product-info svg path {
    stroke: #FBFAF6;
}
.catalog-grid__row.big .product .product-wishlist-add {
    top: 3rem;
    right: 3rem;
    opacity: 1;
    z-index: 9;
}
.catalog-grid__row.big .product .product-title {
    color: #FBFAF6;
    max-width: 57.2rem;
}
.catalog-grid__row.big .product .product-main {
    position: absolute;
    z-index: 4;
    bottom: 0;
    left: 0;
    flex-direction: row;
    justify-content: space-between;
    gap: 1rem;
    padding: 3rem;
    width: 100%;
    height: 10.2rem;
}
.catalog-grid__row.big .product .product-row {
    height: auto;
}
.catalog-grid__row.big .product .product-price {
    display: none;
}
.catalog-grid__row.big .product .product-row a svg path {
    fill: #FBFAF6;
}
.catalog-grid__row.big .product:hover .product-info {
    height: auto;
    max-height: 100%;
}
.catalog-grid__row.big .product:hover .product-row {
    margin-top: 0;
}
.catalog-pagination {
    border-bottom: 1px solid rgba(144, 130, 131, 0.15);
    padding: 2rem 0;
}
.catalog-pagination__container ul {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}
.catalog-pagination__container ul li {
    list-style: none;
    display: flex;
}
.catalog-pagination__item {
    color: #908283;
    font-family: "Cormorant Unicase";
    font-size: 2.8rem;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    border-bottom: 1px solid #908283;
    text-transform: uppercase;
}
.catalog-pagination__item svg {
    width: 3.5rem;
    height: auto;
}
.catalog-pagination__item.prev {
    margin-right: 5rem;
    border-color: transparent;
}
.catalog-pagination__item.active {
    color: #BD8042;
    border-color: #BD8042;
}
.catalog-pagination__item.next {
    margin-left: 5rem;
    border-color: transparent;
}
p.catalog-pagination__item {
    border-color: transparent;
}
.catalog-filter__open {
    display: none;
}
.popup-filter {
    display: none;
}
.catalog-grid .woocommerce-pagination {
	display: none;
}

@media screen and (max-width: 992px) {
    .catalog {
        margin: 1.5rem 0 6rem 0;
    }
    .catalog-filter {
        padding: 1.5rem 0;
    }
    .catalog-filter__row {
        display: none;
    }
    .catalog-filter__sorting {
        display: none;
    }
    .catalog-grid__row-container {
        max-width: none;
    }
    .catalog-grid__row-container .product {
        max-width: 18.7rem;
        width: 100%;
    }
    .catalog-grid__row.big .product {
        max-width: none;
        margin-top: 0;
        margin-bottom: 0;
    }
    .catalog-grid__row.big .product .product-img {
        height: 39.7rem;
    }
    .catalog-grid__row.big .product .product-info {
        top: -30.6rem;
        left: 2rem;
    }
    .catalog-grid__row.big .product .product-wishlist-add {
        top: 2rem;
        right: 2rem;
    }
    .catalog-grid__row.big .product .product-title {
        max-width: 26.9rem;
    }
    .catalog-grid__row.big .product .product-main {
        padding: 2rem;
        height: 7.2rem;
    }
    .catalog-grid__row.big .product .product-row {
        margin-top: 0;
    }
    .catalog-pagination {
        padding: 0.7rem 0;
    }
    .catalog-pagination__item {
        font-size: 2.4rem;
    }
    .catalog-pagination__item svg {
        width: 3rem;
    }
    .catalog-pagination__item.prev {
        margin-right: 2.4rem;
    }
    .catalog-pagination__item.next {
        margin-left: 2.4rem;
    }
    .catalog-filter__open {
        display: flex;
        align-items: center;
        gap: 0.7rem;
    }
    .catalog-filter__open p {
        color: #908283;
        font-family: "Cormorant Unicase";
        font-size: 1.5rem;
        font-style: normal;
        font-weight: 500;
        line-height: normal;
        text-transform: uppercase;
    }
    .catalog-filter__open svg {
        width: 1.6rem;
        height: auto;
    }
    .popup-filter {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 999999;
        overflow-y: auto;
        background: #FBFAF6;
        flex-direction: column;
    }
    .popup-filter__name {
        padding: 2rem;
        border-bottom: 1px solid rgba(144, 130, 131, 0.15);
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    .popup-filter__name p {
        color: #908283;
        font-family: "Cormorant Unicase";
        font-size: 1.5rem;
        font-style: normal;
        font-weight: 500;
        line-height: normal;
        text-transform: uppercase;
    }
    .popup-filter__close {
        display: flex;
    }
    .popup-filter__close svg {
        width: 2rem;
        height: auto;
    }
    .popup-filter .catalog-filter__sorting {
        padding: 2rem;
        border-bottom: 1px solid rgba(144, 130, 131, 0.15);
        display: flex;
    }
    .catalog-filter__sorting select {
        font-size: 1.5rem;
    }
    .popup-filter__col {
        padding: 2rem;
        display: flex;
        flex-direction: column;
        gap: 2.5rem;
    }
    .catalog-filter__block-button p {
        font-size: 1.5rem;
    }
    .catalog-filter__block.active .catalog-filter__block-content {
        gap: 1.5rem;
        border: none;
        background: transparent;
        padding: 0;
        position: relative;
        top: 0;
        margin-top: 1.5rem;
		max-height: 100%;
        overflow: visible;
    }
    .catalog-filter__block-checkbox label {
        font-size: 1.5rem;
    }
}

/* product_page */

.product_page {
    margin-bottom: 10rem;
}
.product_page-container {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}
.product_page-back {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-right: auto;
}
.product_page-back p {
    color: #908283;
    text-align: center;
    font-family: "Cormorant Unicase";
    font-size: 1.8rem;
    font-style: normal;
    font-weight: 500;
    line-height: 93%;
}
.product_page-back svg {
    width: 3.5rem;
    height: auto;
}
.product_page-main {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}
.product_page-images {
    width: 100%;
    max-width: 99.5rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
.product_page-slider {
    display: flex;
    align-items: center;
    gap: 2rem;
}
.product_page-prev, .product_page-next {
    display: flex;
    min-width: 3.5rem;
}
.product_page-prev svg, .product_page-next svg {
    width: 3.5rem;
    height: auto;
}
.product_page_swiper {
    width: 100%;
}
.product_page_swiper .swiper-slide {
    height: auto;
}
.product_page-img {
    height: 62.3rem;
    display: flex;
    width: 100%;
}
.product_page-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.product_page-img.video {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}
.product_page-img.video svg {
    width: 6.1rem;
    height: auto;
    position: absolute;
    z-index: 3;
}
.product_page-img.video::before {
    content: '';
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.20) 0%, rgba(0, 0, 0, 0.20) 100%);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}
.product_page_thumbs {
    width: 100%;
    max-width: 88.5rem;
}
.product_page_thumbs .swiper-slide {
    height: auto;
    cursor: pointer;
}
.product_page_thumbs-slide {
    display: flex;
    height: 14.5rem;
    width: 100%;
}
.product_page_thumbs-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.product_page_thumbs-slide.video {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}
.product_page_thumbs-slide.video svg {
    width: 2.1rem;
    height: auto;
    position: absolute;
    z-index: 3;
}
.product_page_thumbs-slide.video::before {
    content: '';
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.20) 0%, rgba(0, 0, 0, 0.20) 100%);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}
.product_page-content {
    width: 100%;
    max-width: 68.5rem;
    display: flex;
    flex-direction: column;
}
.product_page-title {
    color: #000;
    font-family: "Cormorant Unicase";
    font-size: 3.6rem;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-transform: uppercase;
    margin-bottom: 2rem;
}
.product_page-description {
    color: #908283;
    font-size: 1.6rem;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
    letter-spacing: -0.032rem;
    margin-bottom: 2rem;
}
.product_page-description p {
    color: #908283;
    font-size: 1.6rem;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
    letter-spacing: -0.032rem;
}
.product_page-prices {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 3rem;
}
.product_page-price {
    color: #000;
    font-family: "Cormorant Unicase";
    font-size: 3.2rem;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-transform: uppercase;
}
.product_page-buttons {
    display: flex;
    gap: 2rem;
    margin-bottom: 4.5rem;
}
.product_page-cart {
    display: flex;
    width: 39.5rem;
    height: 5.5rem;
    justify-content: center;
    align-items: center;
	gap: 1rem;
    border: 1px solid #BD8042;
    background: #FBFAF6;
    color: #BD8042;
    font-family: "Cormorant Unicase";
    font-size: 1.8rem;
    font-style: normal;
    font-weight: 700;
    line-height: 130%;
    text-transform: uppercase;
}
.product_page-cart svg {
	width: 1.5rem;
	height: auto;
}
.product_page-wishlist {
    display: flex;
    width: 7.8rem;
    height: 5.5rem;
    justify-content: center;
    align-items: center;
    border: 1px solid #BD8042;
    background: #FBFAF6;
}
.product_page-wishlist svg {
    width: 2.4rem;
    height: auto;
}
.product_page-wishlist.active {
	border-color: #2B3245;
}
.product_page-wishlist.active svg path {
	fill: #2B3245;
	stroke: #2B3245;
}
.product_page-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
.product_page-info__item {
    display: flex;
    flex-direction: column;
}
.product_page-info__item-button {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(144, 130, 131, 0.15);
}
.product_page-info__item-button p {
    color: #908283;
    font-family: "Cormorant Unicase";
    font-size: 1.6rem;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-transform: uppercase;
}
.product_page-info__item-button svg {
    width: 1.6rem;
    height: auto;
    transition: .3s all;
}
.product_page-info__item-content {
    max-height: 0;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
.product_page-info__item-row {
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}
.product_page-info__item-content p {
    color: #908283;
    font-size: 1.6rem;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
    letter-spacing: -0.032rem;
}
.product_page-info__item.active .product_page-info__item-content {
    margin-top: 2rem;
    margin-bottom: 2rem;
}
.product_page-info__item.active .product_page-info__item-button p {
    color: #BD8042;
}
.product_page-info__item.active .product_page-info__item-button svg {
    transform: rotate(180deg);
}
.product_page-info__item.active .product_page-info__item-button svg path {
    stroke: #BD8042;
}
.product_page_offers {
    padding-top: 0;
}
.product_page-back:hover p {
    color: #BD8042;
}
.product_page-back:hover svg path {
    fill: #BD8042;
}
.product_page-prev:hover svg path, .product_page-next:hover svg path {
    fill: #BD8042;
}
.product_page-cart:hover {
    border-color: #2B3245;
    color: #2B3245;
}
.product_page-wishlist:hover {
    border-color: #2B3245;
}
.product_page-wishlist:hover svg path {
    stroke: #2B3245;
}

@media screen and (max-width: 992px) {
    .product_page {
        margin-top: 1.5rem;
        margin-bottom: 7.5rem;
    }
    .product_page-back {
        display: none;
    }
    .product_page-main {
        flex-direction: column;
        gap: 2rem;
    }
    .product_page-images {
        width: 100%;
        max-width: 99.5rem;
        display: flex;
        flex-direction: column;
        gap: 2rem;
    }
    .product_page-slider {
        position: relative;
    }
    .product_page-prev, .product_page-next {
        min-width: 2.2rem;
        position: absolute;
        z-index: 4;
    }
    .product_page-prev {
        left: -1rem;
    }
    .product_page-next {
        right: -1rem;
    }
    .product_page-prev svg, .product_page-next svg {
        width: 2.2rem;
    }
    .product_page-img {
        height: 36rem;
    }
    .product_page-img.video svg {
        width: 3.1rem;
    }
    .product_page_thumbs {
        display: none;
    }
    .product_page-content {
        max-width: none;
    }
    .product_page-title {
        font-size: 2rem;
        margin-bottom: 0.5rem;
    }
    .product_page-description {
        font-size: 1.2rem;
        letter-spacing: -0.024rem;
        margin-bottom: 1rem;
    }
    .product_page-description p {
        font-size: 1.2rem;
        letter-spacing: -0.024rem;
    }
    .product_page-prices {
        margin-bottom: 2rem;
    }
    .product_page-price {
        font-size: 2.8rem;
    }
    .product_page-buttons {
        gap: 1.4rem;
        margin-bottom: 3rem;
    }
    .product_page-cart {
        width: 27.8rem;
        font-size: 1.5rem;
    }
    .product_page-wishlist {
        width: 5.3rem;
    }
    .product_page-wishlist svg {
        width: 2.3rem;
    }
    .product_page-info__item-button p {
        font-size: 1.5rem;
    }
    .product_page-info__item-button svg {
        width: 1.4rem;
    }
    .product_page-info__item-content {
        gap: 1.5rem;
    }
    .product_page-info__item-content p {
        font-size: 1.2rem;
        letter-spacing: -0.024rem;
    }
    .product_page-info__item.active .product_page-info__item-content {
        margin-top: 1.5rem;
        margin-bottom: 1.5rem;
    }
    .product_page_offers {
        padding-bottom: 7rem;
    }
}

/* wishlist */

.wishlist {
    margin-bottom: 12.9rem;
    border-bottom: 1px solid rgba(144, 130, 131, 0.15);
}
.wishlist-container {
    display: flex;
    flex-direction: column;
}
.wishlist-top {
    border-top: 1px solid rgba(144, 130, 131, 0.15);
    border-bottom: 1px solid rgba(144, 130, 131, 0.15);
    padding: 2rem 0;
}
.wishlist-top__container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}
.wishlist-top__container select {
    background-image: url('/wp-content/uploads/2025/05/select.svg');
    background-position: center right;
    background-repeat: no-repeat;
    background-size: 1.4rem;
    padding-right: 2.1rem;
    cursor: pointer;
    color: #908283;
    font-family: "Cormorant Unicase";
    font-size: 1.6rem;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-transform: uppercase;
}
.wishlist-top__container select {
  -webkit-appearance: none;
  -moz-appearance: none;
}
.wishlist-top__container select::-ms-expand {
  display: none;
}
.wishlist-top__container h2 {
    color: #2B3245;
    font-family: "Cormorant Unicase";
    font-size: 1.8rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    max-width: 12rem;
    text-align: center;
}
.wishlist-clear {
    display: flex;
    align-items: center;
    gap: 0.7rem;
}
.wishlist-clear p {
    color: #908283;
    font-family: "Cormorant Unicase";
    font-size: 1.6rem;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-transform: uppercase;
}
.wishlist-clear svg {
    width: 1.3rem;
    height: auto;
}
.wishlist-main {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

@media screen and (max-width: 992px) {
    .wishlist {
        margin-top: 1.5rem;
        margin-bottom: 6rem;
    }
    .wishlist-top {
        padding: 1.5rem 0;
    }
    .wishlist-top__container select {
        display: none;
    }
    .wishlist-top__container h2 {
        font-size: 1.5rem;
        position: relative;
        margin: 0;
        max-width: none;
    }
    .wishlist-clear p {
        font-size: 1.5rem;
    }
    .wishlist-clear svg {
        width: 1.1rem;
    }
    .wishlist-main {
        grid-template-columns: repeat(2, 1fr);
        max-width: none;
    }
}

/* cart */

.cart {
    margin: 1rem 0 10rem 0;
}
.cart-container {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-direction: row-reverse;
}
.cart-name {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 1rem;
}
.cart-name > h2 {
    color: #000;
    font-family: "Cormorant Unicase";
    font-size: 3.6rem;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-transform: uppercase;
}
.cart-clear {
    display: flex;
    align-items: center;
    gap: 0.7rem;
}
.cart-clear p {
    color: #908283;
    font-family: "Cormorant Unicase";
    font-size: 1.6rem;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-transform: uppercase;
}
.cart-clear svg {
    width: 1.3rem;
    height: auto;
}
.cart-main {
    width: 100%;
    max-width: 99.5rem;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}
.cart-products {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
.cart-product {
    display: flex;
    align-items: flex-end;
    gap: 2rem;
    position: relative;
}
.cart-product::before {
    content: '';
    width: 70.5rem;
    height: 0.1rem;
    background: rgba(144, 130, 131, 0.15);
    position: absolute;
    right: 0;
    bottom: 0;
}
.cart-product__img {
    width: 27rem;
    min-width: 27rem;
    display: flex;
    height: 27rem;
}
.cart-product__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.cart-product__title {
    color: #000;
    font-family: "Cormorant Unicase";
    font-size: 2.4rem;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-transform: uppercase;
    max-width: 47.4rem;
    margin-bottom: 2rem;
}
.cart-product__price {
    color: #000;
    font-family: "Cormorant Unicase";
    font-size: 3.2rem;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-transform: uppercase;
    margin-left: auto;
    margin-bottom: 2rem;
}
.cart-product__delete {
    display: flex;
    margin-bottom: 3rem;
}
.cart-product__delete svg {
    width: 1.3rem;
    height: auto;
}
.cart-col {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4rem;
}
.cart-total {
    display: flex;
    align-items: flex-end;
    gap: 1rem;
}
.cart-total__title {
    color: #2B3245;
    font-family: "Cormorant Unicase";
    font-size: 1.8rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
}
.cart-total__price {
    color: #000;
    font-family: "Cormorant Unicase";
    font-size: 3.2rem;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-transform: uppercase;
}
.cart-total__price strong {
	font-weight: 500;
}
.cart-buttons {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
.cart-button {
    width: 41.5rem;
    padding: 1.6rem;
    text-align: center;
    border: 1px solid #BD8042;
    background: #FBFAF6;
    color: #BD8042;
    font-family: "Cormorant Unicase";
    font-size: 1.8rem;
    font-style: normal;
    font-weight: 700;
    line-height: 130%;
    text-transform: uppercase;
}
.cart_offers {
    padding-top: 0;
}

@media screen and (max-width: 992px) {
    .cart {
        margin: 1.5rem 0 6rem 0;
    }
    .cart-container {
        gap: 2.5rem;
        flex-direction: column;
    }
    .cart-name {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        width: 100%;
    }
    .cart-name > h2 {
        font-size: 1.5rem;
    }
    .cart-clear p {
        font-size: 1.5rem;
    }
    .cart-clear svg {
        width: 1.1rem;
    }
    .cart-main {
        gap: 1.5rem;
    }
    .cart-products {
        gap: 1.5rem;
    }
    .cart-product {
        padding-bottom: 1.5rem;
        border-bottom: 1px solid rgba(144, 130, 131, 0.15);
        gap: 1.5rem;
        align-items: flex-start;
    }
    .cart-product::before {
        display: none;
    }
    .cart-product__img {
        width: 9.6rem;
        min-width: 9.6rem;
        height: 9.6rem;
    }
    .cart-product__title {
        font-size: 1.5rem;
        max-width: 19.3rem;
        margin-bottom: 0;
    }
    .cart-product__price {
        font-size: 2rem;
        position: absolute;
        right: 0;
        bottom: 1.5rem;
        margin-bottom: 0;
    }
    .cart-product__delete {
        margin-bottom: 0;
        position: absolute;
        right: 0;
        top: 0;
    }
    .cart-product__delete svg {
        width: 1.1rem;
    }
    .cart-col {
        gap: 2.3rem;
    }
    .cart-total {
        align-items: center;
        gap: 0.5rem;
    }
    .cart-total__title {
        font-size: 1.5rem;
    }
    .cart-total__price {
        font-size: 2rem;
    }
    .cart-buttons {
        width: 100%;
        gap: 1.5rem;
    }
    .cart-button {
        width: 100%;
        font-size: 1.5rem;
    }
    .cart_offers {
        padding-top: 0;
    }
}

/* cart_empty */

.cart_empty {
    margin: 1rem 0 10rem 0;
}
.cart_empty-container {
    display: flex;
    flex-direction: column;
}
.cart_empty-container > h2 {
    color: #000;
    font-family: "Cormorant Unicase";
    font-size: 3.6rem;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-transform: uppercase;
    text-align: right;
    margin-bottom: 4rem;
}
.cart_empty-container > a {
    color: #BD8042;
    font-family: "Cormorant Unicase";
    font-size: 1.8rem;
    font-style: normal;
    font-weight: 700;
    line-height: 130%;
    text-transform: uppercase;
    width: 27rem;
    display: flex;
    padding: 1.6rem;
    justify-content: center;
    align-items: center;
    border: 1px solid #BD8042;
    background: #FBFAF6;
    margin: 0 auto;
}
.cart_empty-banner {
    position: relative;
    height: 45rem;
    margin-bottom: 4rem;
    display: flex;
    justify-content: center;
    align-items: center;
}
.cart_empty-banner h2 {
    position: relative;
    z-index: 3;
    color: #FBFAF6;
    text-align: center;
    font-family: "Cormorant Garamond";
    font-size: 6.4rem;
    font-style: normal;
    font-weight: 400;
    line-height: 93%;
}
.cart_empty-banner__img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}
.cart_empty-banner__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.cart_empty-banner__img::before {
    content: '';
    position: absolute;
    z-index: 2;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.50) 0%, rgba(0, 0, 0, 0.50) 100%);
}

@media screen and (max-width: 992px) {
    .cart_empty {
        margin: 1.5rem 0 4rem 0;
    }
    .cart_empty-container > h2 {
        font-size: 1.5rem;
        text-align: left;
        margin-bottom: 2rem;
    }
    .cart_empty-container > a {
        width: 100%;
        font-size: 1.5rem;
        max-width: 34.5rem;
    }
    .cart_empty-banner {
        height: 52rem;
        margin-bottom: 2rem;
    }
    .cart_empty-banner h2 {
        font-size: 3rem;
        max-width: 18.2rem;
    }
}

/* checkout */

.checkout {
    margin: 1rem 0 10rem 0;
}
.checkout-container {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}
.checkout-title {
    color: #000;
    font-family: "Cormorant Unicase";
    font-size: 3.6rem;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-transform: uppercase;
    margin-bottom: 1rem;
}
.checkout-main {
    display: flex;
    align-items: flex-start;
    gap: 10rem;
    position: relative;
}
.checkout-main::before {
    content: '';
    width: 0.1rem;
    height: 47rem;
    background: rgba(144, 130, 131, 0.15);
    position: absolute;
    top: 0;
    left: 64rem;
}
.checkout-main::after {
    content: '';
    width: 47rem;
    height: 1px;
    background: rgba(144, 130, 131, 0.15);
    position: absolute;
    top: 57rem;
    left: 70rem;
}
.checkout-contacts {
    width: 100%;
    max-width: 60rem;
    display: flex;
    flex-direction: column;
    gap: 4rem;
}
.checkout-contacts > wc-order-attribution-inputs {
	display: none !important;
}
.checkout-col {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}
.checkout-col > p {
    color: #000;
    font-size: 1.8rem;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
    letter-spacing: -0.036rem;
}
.checkout-data {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}
.checkout-connection {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.checkout-connection__row {
    display: flex;
    align-items: center;
    position: relative;
}
.checkout-connection__row label {
    padding-left: 3.1rem;
    cursor: pointer;
    color: #000;
    font-family: "Cormorant Unicase";
    font-size: 1.6rem;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-transform: uppercase;
}
.checkout-connection__row input[type=radio]:before {
    content: "";
    display: inline-block;
    width: 2.4rem;
    height: 2.4rem;
    border: 0.1rem solid #908283;
    position: absolute;
    margin-top: -1.1rem;
    cursor: pointer;
}
.checkout-connection__row input[type=radio]:checked:before {
    background:transparent;
    background-image: url('/wp-content/uploads/2025/05/chek.svg');
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    background-size: 2.5rem;
    border-color: #BD8042;
}
.checkout-connection__row input[type="radio"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: none;
}
.checkout-connection__row input[type="radio"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: none;
}
.checkout-connection__row input[type="radio"]:checked {
    background-image: none;
}
.checkout-agreements {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    margin-top: 3rem;
}
.checkout-agreement {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    cursor: pointer;
}
.checkout-agreement input[type="checkbox"] {
    min-width: 2rem;
    width: 2rem;
    height: 2rem;
    accent-color: #BD8042;
    cursor: pointer;
    margin: 0;
}
.checkout-agreement span {
    color: #908283;
    font-size: 1.2rem;
    line-height: 120%;
    letter-spacing: -0.024rem;
}
.checkout-agreement span a {
    color: #BD8042;
    text-decoration: underline;
}
.checkout-agreement span a:hover {
    color: #908283;
}
.checkout-agreement span span {
    color: #DA1414;
    margin-left: 0.2rem;
}
.checkout-column {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}
.checkout-delivery {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}
.checkout-delivery__block {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.checkout-delivery__block > p {
    color: #908283;
    font-size: 1.6rem;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
    letter-spacing: -0.032rem;
    max-width: 38.7rem;
}
.checkout-delivery__block .popup-input {
    margin: 1.5rem 0 0.5rem 0;
    width: 58.5rem;
}
.checkout-buttons {
    margin-top: 1rem;
    width: 41.5rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
.checkout-button {
    border: 1px solid #BD8042;
    background: #FBFAF6;
    padding: 1.6rem;
    text-align: center;
    color: #BD8042;
    font-family: "Cormorant Unicase";
    font-size: 1.8rem;
    font-style: normal;
    font-weight: 700;
    line-height: 130%;
    text-transform: uppercase;
}
.checkout-thanks {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.checkout-thanks h2 {
    color: #000;
    font-family: "Cormorant Unicase";
    font-size: 3.6rem;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-transform: uppercase;
    margin-bottom: 2rem;
}
.checkout-thanks p {
    color: #908283;
    text-align: center;
    font-size: 1.8rem;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
    letter-spacing: -0.036rem;
    max-width: 38.2rem;
    margin-bottom: 4rem;
}
.checkout-thanks img {
    margin-top: 11.5rem;
    width: 42.45rem;
}
.checkout-thanks__buttons {
    width: 41.5rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
.checkout-thanks__button {
    border: 1px solid #BD8042;
    background: #FBFAF6;
    padding: 1.6rem;
    text-align: center;
    color: #BD8042;
    font-family: "Cormorant Unicase";
    font-size: 1.8rem;
    font-style: normal;
    font-weight: 700;
    line-height: 130%;
    text-transform: uppercase;
}

@media screen and (max-width: 992px) {
    
    .footer-contacts {

    font-size: 1.2rem;
}
    
    
    .checkout {
        margin: 1.5rem 0 6rem 0;
    }
    .checkout-container {
        gap: 1.5rem;
    }
    .checkout .product_page-back {
        display: flex;
    }
    .checkout .product_page-back svg {
        width: 3rem;
    }
    .checkout .product_page-back p {
        font-size: 1.5rem;
    }
    .checkout-title {
        font-size: 2rem;
        margin-bottom: 0.5rem;
    }
    .checkout-main {
        flex-direction: column;
        gap: 2rem;
    }
    .checkout-main::before {
        display: none;
    }
    .checkout-main::after {
        display: none;
    }
    .checkout-contacts {
        max-width: none;
        gap: 2rem;
    }
    .checkout-col {
        gap: 2rem;
    }
    .checkout-col > p {
        font-size: 1.2rem;
        letter-spacing: -0.024rem;
    }
    .checkout-data {
        gap: 2rem;
    }
    .checkout-connection__row label {
        font-size: 1.5rem;
    }
    .checkout-contacts .checkout-col:last-child {
        padding-bottom: 2rem;
        border-bottom: 1px solid rgba(144, 130, 131, 0.15);
    }
    .checkout-column {
        gap: 2rem;
    }
    .checkout-column .checkout-col:first-child {
        padding-bottom: 2rem;
        border-bottom: 1px solid rgba(144, 130, 131, 0.15);
    }
    .checkout-delivery {
        gap: 2rem;
    }
    .checkout-delivery__block {
        gap: 1rem;
    }
    .checkout-delivery__block > p {
        font-size: 1.2rem;
        letter-spacing: -0.024rem;
        max-width: none;
    }
    .checkout-delivery__block .popup-input {
        margin: 1rem 0 0 0;
        width: 100%;
    }
    .checkout-buttons {
        gap: 1.5rem;
        width: 100%;
    }
    .checkout-button {
        font-size: 1.5rem;
    }
    .checkout-thanks {
        margin-top: 7.5rem;
        margin-bottom: 15rem;
    }
    .checkout-thanks h2 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }
    .checkout-thanks p {
        font-size: 1.2rem;
        letter-spacing: -0.024rem;
        max-width: 20.2rem;
        margin-bottom: 1.5rem;
    }
    .checkout-thanks img {
        display: none;
    }
    .checkout-thanks__buttons {
        width: 100%;
        gap: 1.5rem;
    }
    .checkout-thanks__button {
        font-size: 1.5rem;
    }
}


/* responsive tables */
.table-responsive {
  width: 100%;
  overflow-x: auto;
  display: block;
  -webkit-overflow-scrolling: touch;
}

.table-responsive td {
  padding: 12px 16px;
  vertical-align: top;
  word-wrap: break-word;
}

/* Минимальные ширины для колонок */
.table-responsive td:first-child {
  min-width: 200px;
}

.table-responsive td:last-child {
  min-width: 300px;
}

.table-responsive table {
  min-width: 600px;
}

.payment_logo{ max-height: 20px;}
