body {
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    background: #3a3330;
    color: white;
}
button,
input,
select,
textarea {
    font-family: "Montserrat", sans-serif;
}
@font-face {
    font-family: "Bebas Neue Cyrillic";
    src: url("../fonts/BebasNeueCyrillic/bebasneuecyrillic.ttf")
        format("truetype");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: "Bella Script Cyr";
    src: url("../fonts/BellaScriptCyr/Bella Script CYR.otf")
        format("opentype");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
/* login title
font-family: "Playfair Display", serif; */
a {
    color: inherit;
}
img {
    object-fit: cover;
}
.container {
    width: 82.5rem;
}
section {
    margin-bottom: 3.5rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 3.125rem;
    padding: 0 2rem;
    transition: all 0.25s ease-in;
    cursor: pointer;
    white-space: nowrap;
    border-radius: 0.625rem;
    font-size: 1rem;
    /* padding-bottom: 0.1rem; */
    gap: 0.75rem;
}
.outline {
    background: transparent;
    border: 1px solid #fff;
    color: #fff;
}
.outline:hover {
    background: #fff;
    color: #000000;
}
.head-btn {
    height: 2.75rem;
}
.btn.white {
    background: #fff;
    color: #000;
}
.btn.white:hover {
    background: #f0eeec;
    /* color: #fff; */
}
.btn.orange {
    background: #db7134;
    color: #fff;
}
.btn.orange:hover {
    background: #c15f27;
}
.btn.mid-width {
    width: 25rem;
}
.btn.outline-orange {
    background: none;
    border: 1px solid #db7134;
    color: #db7134;
}
.btn.outline-orange:hover {
    background: #db7134;
    color: #fff;
}

/* Header */
.site-header {
    transition: all 0.35s;

}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding: 1.15rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}
.logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}
.logo img {
    height: 1.25rem;
    width: auto;
}
.head-nav {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}
.head-nav > a {
    color: rgba(255, 255, 255, 0.85);
    transition: color 0.2s ease;
}
.head-nav > a:hover, .head-nav > a.active {
    color: #fff;
    text-decoration: underline;
}
.head-nav-dropdown {
    position: relative;
}
.head-nav-dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    color: rgba(255, 255, 255, 0.85);
    transition: color 0.2s ease;
}
.head-nav-dropdown-toggle:hover {
    color: #fff;
    text-decoration: underline;
}
.head-nav-dropdown-toggle svg{
    transition: all 0.35s;
}
.mega-trigger.open  .head-nav-dropdown-toggle svg{
    transform: rotate(-180deg);
}
.head-nav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    padding-top: 1rem;
    min-width: 12rem;
    display: none;
    flex-direction: column;
    background: #3a3330;
    border: 1px solid rgba(255, 255, 255, 0.15);
    margin-top: 0.5rem;
}
.head-nav-dropdown:hover .head-nav-dropdown-menu {
    display: flex;
}
.head-nav-dropdown-menu a {
    padding: 0.75rem 1.25rem;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.2s ease;
}
.head-nav-dropdown-menu a:hover {
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
}
.head-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.head-lang {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    color: rgba(255, 255, 255, 0.85);
}
/* Mega Menu */
.mega-trigger {
    position: static;
}
.mega-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    display: none;
    z-index: 50;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}
.mega-trigger.open .mega-menu {
    display: block;
}
.site-header.mega-active .head-right {
    visibility: hidden;
}
.site-header.mega-active {
    background: #fff;
}
.site-header.mega-active .head-nav > a,
.site-header.mega-active .head-nav-dropdown-toggle,
.site-header.mega-active .head-lang,
.site-header.mega-active .logo img {
    color: #3a3330;
    /* filter: invert(0); */
}
.black-logo {
    display: none;
}
.site-header.mega-active .white-logo {
    display: none;
}
.site-header.mega-active .black-logo {
    display: block;
}
/*.site-header.mega-active .header-inner {*/
/*    padding: 1.75rem 0;*/
/*}*/
.mega-menu-inner {
    display: flex;
    min-height: 95vh;
    /* padding: 2rem 0; */
}
.mega-col {
    flex-shrink: 0;
    padding: 0 2rem;
    padding-top: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    border-right: 1px solid #59494029;
}
.mega-col:first-child {
    padding-left: 0;
}
.mega-col.mega-col-subsub {
    border-right: 0;
}
.mega-col-sub,
.mega-col-subsub {
    display: none;
}
.mega-col-sub.active,
.mega-col-subsub.active {
    display: flex;
}

.mega-link,
.mega-sub-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    padding: 0.5rem 0.5rem;
    width: 18rem;
    border-radius: 0.3rem;
    transition: all 0.3s ease-in;
    color: #000;
}
.mega-link svg,
.mega-sub-link svg {
    flex-shrink: 0;
    opacity: 0.5;
}
.mega-link:hover,
.mega-link.active,
.mega-sub-link:hover,
.mega-sub-link.active {
    background: #f5f3f1;
}
.mega-link.active,
.mega-sub-link.active {
    color: #281e18;
    font-weight: 500;
}
.mega-link.active svg,
.mega-sub-link.active svg {
    opacity: 1;
    transform: translateX(0.15rem);
}
.mega-promo {
    position: relative;
    color: #281e18;
    flex-shrink: 0;
    width: 18rem;
    height: 82vh;
    border-radius: 1.25rem;
    margin-top: 1.5rem;
    overflow: hidden;
    margin-left: auto;
    background: linear-gradient(
        0deg,
        rgba(255, 255, 255, 0.2) 0%,
        rgba(255, 255, 255, 0.2) 100%
    );
}
.mega-promo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.mega-promo-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 0.25rem;
    padding: 1.5rem;
}
.mega-promo-title {
    font-family: "Playfair Display", serif;
    font-size: 3.375rem;
    font-style: italic;
    font-weight: 400;
    z-index: 1;
    letter-spacing: -0.0675rem;
}
.mega-effect {
    width: 100%;
    height: 5.5rem;
    border-radius: 6.25rem;
    background: rgba(255, 255, 255, 0.8);
    filter: blur(27.299999237060547px);
    position: absolute;
    z-index: 0;
    left: 0;
}
.mega-promo-sub {
    font-size: 1.25rem;
    font-weight: 400;
    margin-bottom: 1rem;
    z-index: 4;
    position: relative;
    left: 3rem;
}

.mega-title-box {
    position: relative;
    z-index: 4;
}
.mega-title-box img {
    position: absolute;
    width: 2.73006rem;
    height: 3.94375rem;
    top: 0.85rem;
    left: 1.85rem;
}
.mega-promo-btn {
    margin: 0 auto;
    font-size: unset;
}

.head-lang-wrap {
    position: relative;
}
.head-lang {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    color: rgba(255, 255, 255, 0.85);
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
}
.head-lang-chevron {
    transition: transform 0.25s ease;
}
.head-lang-wrap.open .head-lang-chevron {
    transform: rotate(180deg);
}
.head-lang-dropdown {
    position: absolute;
    top: calc(100% + 0.9rem);
    left: 50%;
    transform: translateX(-50%) translateY(-0.5rem);
    background: #3a3330;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 0.75rem;
    padding: 0.5rem;
    min-width: 8rem;
    z-index: 60;
    box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.35);
    opacity: 0;
    visibility: hidden;
    transition:
        opacity 0.25s ease,
        transform 0.25s ease,
        visibility 0.25s;
}
.head-lang-wrap.open .head-lang-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}
.head-lang-option {
    display: block;
    width: 100%;
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.75);
    font-family: inherit;
    padding: 0.5rem 0.75rem;
    border-radius: 0.5rem;
    cursor: pointer;
    text-align: center;
}
.head-lang-option:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
}
.head-search {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.65rem;
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 0.625rem;
    padding: 0.625rem 1.25rem;
    height: 2.45rem;
    width: 17rem;
    color: #281e18;
    flex-shrink: 0;
}
.head-search-submit {
    width: 1.125rem;
    height: 1.125rem;
    padding: 0;
    border: none;
    background: none;
    color: inherit;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
}
.head-search-submit svg {
    display: block;
}
.head-search input {
    background: none;
    border: none;
    outline: none;
    color: #000000;
    font-family: inherit;
    width: 100%;
    min-width: 0;
    cursor: text;
}
.head-search input::placeholder {
    color: #281e18;
}
.head-search-results {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 0.55rem);
    z-index: 40;
    display: none;
    max-height: 24rem;
    overflow-y: auto;
    padding: 0.45rem;
    background: #fff;
    border: 1px solid rgba(40, 30, 24, 0.08);
    border-radius: 0.75rem;
    box-shadow: 0 1rem 2.5rem rgba(0, 0, 0, 0.18);
    color: #281e18;
}
.head-search-results.show {
    display: block;
}
.head-search-result {
    display: grid;
    grid-template-columns: 3rem 1fr;
    gap: 0.75rem;
    align-items: center;
    padding: 0.55rem;
    border-radius: 0.55rem;
    color: inherit;
    text-decoration: none;
    transition: background 0.2s ease;
}
.head-search-result:hover {
    background: rgba(219, 113, 52, 0.1);
}
.head-search-result-img {
    width: 3rem;
    height: 3rem;
    border-radius: 0.45rem;
    background: #f3f1ef;
    overflow: hidden;
}
.head-search-result-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.head-search-result-img .no_img {
    width: 100%;
    height: 100%;
    font-size: 0.5rem;
}
.head-search-result-title {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-size: 0.9rem;
    line-height: 1.25;
    font-weight: 500;
}
.head-search-result-price {
    margin-top: 0.25rem;
    color: #db7134;
    font-size: 0.85rem;
    font-weight: 600;
}
.head-search-empty,
.head-search-loading {
    padding: 0.85rem 0.9rem;
    color: rgba(40, 30, 24, 0.6);
    font-size: 0.9rem;
}
.head-icon-btn {
    position: relative;
    width: 1.5rem;
    height: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    flex-shrink: 0;
}
.head-icon-btn svg {
    width: 100%;
    height: 100%;
}
.head-cart-badge {
    position: absolute;
    top: -0.3rem;
    right: -0.6rem;
    width: 1.04rem;
    height: 1.03rem;
    border-radius: 6.25rem;
    background: #db7134;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
}

/* Burger */
.burger {
    display: none;
    background: none;
    cursor: pointer;
    width: 1.45rem;
    height: 1.45rem;
}
.burger img {
    display: block;
    height: 100%;
    width: 100%;
}

/* Mob menu */
.mob-menu {
    position: fixed;
    inset: 0;
    z-index: 200;
    visibility: hidden;
    pointer-events: none;
}
.mob-menu.open {
    visibility: visible;
    pointer-events: all;
}
.mob-menu-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    opacity: 0;
    transition: opacity 0.3s ease;
}
.mob-menu.open .mob-menu-overlay {
    opacity: 1;
}
.mob-menu-inner {
    position: absolute;
    top: 0;
    right: 0;
    width: 68%;
    height: 100%;
    background: white;
    color: #281e18;
    display: flex;
    flex-direction: column;
    padding: 1.75rem 15px;
    gap: 1.25rem;
    transform: translateX(100%);
    transition: transform 0.3s ease;
}
.mob-menu.open .mob-menu-inner {
    transform: translateX(0);
}
.mob-menu-head {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.mob-close {
    background: none;
    width: 1.75rem;
    height: 1.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.mob-close img {
    width: 100%;
    height: 100%;
}
.mob-nav {
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 1rem;
}
.mob-nav a {
    padding: 0.625rem 0.9375rem 0.25rem 0.9375rem;
    font-size: 1.25rem;
}
.mob-nav .active {
    color: #db7134;
    border-bottom: 1px solid #db7134;
}
.mob-nav-bottom {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.mob-nav-bottom a {
    font-size: 1.25rem;
}
.mob-nav-icons {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.65rem;
}
.mob-nav-social {
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 0.625rem;
    background: #db7134;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.7rem !important;
}

/* Hero */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(0deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%),
        linear-gradient(
            0deg,
            rgba(30, 24, 20, 0) 0%,
            rgba(30, 24, 20, 0.74) 62.01%,
            #1e1814 108.25%
        );
    z-index: 1;
}
.hero-section .container {
    position: relative;
    z-index: 2;
}
.hero-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.hero-sub {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
}
.hero-title-wrap {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.hero-title {
    font-family: "Bebas Neue Cyrillic", sans-serif;
    font-size: 8rem;
    text-transform: uppercase;
    color: #db7134;
    line-height: 84%;
    letter-spacing: -0.16rem;
    margin-bottom: 3rem;
}
.hero-script {
    position: absolute;
    color: #fff;
    text-shadow:
        -2px -2px 0 #db7134,
        2px -2px 0 #db7134,
        -2px 2px 0 #db7134,
        2px 2px 0 #db7134;
    font-family: "Bella Script CYR";
    font-size: 12.5rem;
    line-height: 100%;
}

/* ===== Новинки ===== */
.novinki-section {
    padding-top: 1rem;
}
.novinki-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2rem;
}
.section-title {
    font-size: 2.5rem;
}
.novinki-nav {
    display: flex;
    gap: 0.75rem;
}
.novinki-arrow {
    width: 3.125rem;
    height: 3.125rem;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255);
    background: transparent;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.25s ease-in;
}
.novinki-arrow:hover {
    background: #db7134;
    border-color: #db7134;
}
.novinki-slider {
    margin: 0 -0.625rem;
}
.novinki-slider .slick-track {
    display: flex;
}
.novinki-slider .slick-slide {
    height: auto;
    padding: 0 0.625rem;
    box-sizing: border-box;
}
.best-slider {
    margin: 0 -0.625rem;
}
.best-slider .slick-track {
    display: flex;
}
.best-slider .slick-slide {
    height: auto;
    padding: 0 0.625rem;
    box-sizing: border-box;
}
.novinka-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: #fff;
    color: #000;
    padding: 0.5rem 0.5rem 0.75rem 0.5rem;
    border-radius: 1.875rem;
    justify-content: space-between;
}
.novinka-txt {
    padding: 0 0.3rem;
}
.novinka-img-wrap {
    position: relative;
    border-radius: 1.5625rem;
    border: 1px solid #db7134;
    overflow: hidden;
    margin-bottom: 1rem;
    height: 18.6875rem;
    display: flex;
    align-items: center;
    justify-content: center;
}
.novinka-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: scale-down;
    display: block;
}
.novinka-like {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    color: #db7134;
    cursor: pointer;
    padding: 0;
    overflow: hidden;
    display: flex;
}
.novinka-like svg {
    width: 1.5rem;
    height: 1.5rem;
}
.novinka-like.active svg {
    fill: #db7134;
}
.novinka-cart {
    position: absolute;
    bottom: 0.75rem;
    right: 0.75rem;
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 50%;
    background: #db7134;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.25s ease-in;
}
.novinka-cart:hover {
    background: #c15f27;
}
.novinka-cart.disabled,
.novinka-cart:disabled {
    opacity: 0.45;
    cursor: not-allowed;
}
.novinka-cart.disabled:hover,
.novinka-cart:disabled:hover {
    background: #db7134;
}
.novinka-cart-check {
    position: absolute;
    top: 0rem;
    right: 0rem;
    width: 1rem;
    height: 1rem;
    border-radius: 50%;
    background: #2bbf6a;
    color: #fff;
    font-size: 0.6rem;
    line-height: 1;
    display: none;
    align-items: center;
    justify-content: center;
    border: 1px solid #fff;
}
.novinka-cart-check.show {
    display: flex;
}
.site-toast-wrap {
    position: fixed;
    top: 6rem;
    right: 1.25rem;
    z-index: 500;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    pointer-events: none;
}
.site-toast {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    min-width: 17rem;
    max-width: min(24rem, calc(100vw - 2.5rem));
    padding: 0.95rem 1rem;
    border: 1px solid rgba(219, 113, 52, 0.22);
    border-radius: 0.75rem;
    background: #fff;
    color: #1e1814;
    box-shadow: 0 1rem 2.5rem rgba(30, 24, 20, 0.14);
    opacity: 0;
    transform: translateX(calc(100% + 1.5rem));
    transition: opacity 0.28s ease, transform 0.28s ease;
}
.site-toast.show {
    opacity: 1;
    transform: translateX(0);
}
.site-toast-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    background: rgba(219, 113, 52, 0.12);
    color: #db7134;
    flex-shrink: 0;
}
.site-toast-text {
    font-size: 0.95rem;
    line-height: 1.35;
}
.novinka-volumes {
    display: flex;
    gap: 0.35rem;
    margin-bottom: 0.65rem;
    flex-wrap: wrap;
}
.novinka-vol {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.3125rem 0.625rem;
    border: 1px solid #000;
    color: #000;
    border-radius: 6.25rem;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.35s;
}
.novinka-vol:hover, .novinka-vol.active{
    background: #db7134;
    color: white;
    border-color: #db7134;
}
.novinka-vol.disabled {
    opacity: 0.5;
    text-decoration: line-through;
}
.novinka-name {
    font-size: 1.25rem;
    margin-bottom: 0.65rem;
}
.novinka-desc {
    opacity: 0.5;
    margin-bottom: 0.65rem;
}
.novinka-bottom {
    display: flex;
    justify-content: end;
}
.novinka-price {
    font-size: 1.5rem;
    font-weight: 600;
    margin-top: auto;
}
.novinki-more {
    display: flex;
    justify-content: center;
    margin-top: 2.5rem;
}

/* ===== О компании ===== */
.about-section {
}
.about-text {
    font-size: 1.9rem;
    line-height: 1.4;
    font-weight: 400;
    max-width: 68rem;
    margin-bottom: 3.5rem;
}
.about-text--bright {
    color: #fff;
}
.about-text--muted {
    color: rgba(255, 255, 255, 0.4);
}
.about-features {
    display: flex;
    align-items: stretch;
    /* justify-content: space-between; */
    gap: 2rem;
}
.about-feature {
    display: flex;
    flex-direction: column;
    height: 100%;
    gap: 3.5rem;
}
.about-line {
    align-self: stretch;
    width: 1px;
    background: rgba(255, 255, 255, 0.5);
}
.about-feature-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 0.65rem;
    background: #db7134;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.about-feature-icon img {
    width: 2rem;
    height: 2rem;
}
.about-feature-title {
    font-size: 2rem;
    margin-bottom: 0.65rem;
}

/* Blog Section */
.blog-section {
}
.blog-inner {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}
.blog-card {
    display: flex !important;
    align-items: end;
    border-radius: 1.6rem;
    border: 1px solid #db7134;
    overflow: hidden;
    position: relative;
    height: 22.625rem;
    padding: 1rem;
}
.blog-card:hover .blog-card-img img {
    transform: scale(1.05);
}
.blog-card-img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 92.5%;
    height: 91%;
    overflow: hidden;
    border-radius: 1rem;
}
.blog-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: all 0.25s ease-in;
}
.blog-card-overlay {
    display: flex;
    flex-direction: column;
    padding: 1rem 1.25rem;
    width: 100%;
    border-radius: 0 0 1rem 1rem;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(2.8499999046325684px);
    z-index: 5;
    gap: 0.65rem;
    color: #fff;
}
.blog-card-date {
    color: rgba(255, 255, 255, 0.7);
}
.blog-card-name {
    font-size: 1.25rem;
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
}
.blog-card-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 0.25rem;
}
.blog-card-stats {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.blog-stat {
    display: flex;
    align-items: center;
    gap: 0.35rem;
}
.block_like_btn {
    cursor: pointer;
    transition: color 0.2s ease;
}
/*.block_like_btn.active,*/
/*.block_like_btn:hover,*/
/*.blog-post-like.active {*/
/*    color: #db7134;*/
/*}*/
.js-blog-like.loading {
    pointer-events: none;
    opacity: 0.7;
}
.blog-stat img {
    flex-shrink: 0;
    width: 1.375rem;
    height: 1.375rem;
}
.blog-card-read {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: underline;
    text-underline-offset: 0.2rem;
    flex-shrink: 0;
    transition: color 0.25s ease-in;
}
.blog-card:hover .blog-card-read {
    text-decoration: none;
}
.blog-more {
    display: flex;
    justify-content: center;
}

.img-inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    width: 100%;
    height: 12rem;
    overflow: hidden;
    border-radius: 1.25rem;
    color: #281e18;
    pointer-events: none;
}
.img-overlay {
    position: absolute;
    pointer-events: none;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        0deg,
        rgba(255, 255, 255, 0.2) 0%,
        rgba(255, 255, 255, 0.2) 100%
    );
    inset: 0;
    z-index: 2;
}
.bck-img {
    position: absolute;
    width: 100%;
    height: 100%;
    inset: 0;
}
.gift-in {
    position: relative;
    display: flex;
    z-index: 5;
    align-items: center;
    pointer-events: painted;
}
.gift-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.gift-overlay {
    position: absolute;
    min-width: 24.4375rem;
    height: 100%;
    inset: 0;
    background: rgba(255, 255, 255, 0.62);
    filter: blur(50px);
    z-index: -1;
}
.gift-title {
    font-family: "Playfair Display";
    font-size: 4rem;
    font-style: italic;
    font-weight: 400;
    line-height: 100%;
    letter-spacing: -0.08rem;
}
.gift-text p {
    font-size: 1.5rem;
    position: relative;
    left: 11rem;
}
.gift-text img {
    position: absolute;
    width: 3.28575rem;
    height: 4.63269rem;
    top: 0.4rem;
    left: 2.15rem;
}
.gift-in .btn {
    position: absolute;
    left: 22rem;
}

/* faq section */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}
.faq-item {
    display: flex;
    align-items: stretch;
    gap: 2rem;
}
/* .faq-row-img {
    width: 20rem;
    flex-shrink: 0;
    overflow: hidden;
}
.faq-row-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
} */
.faq-row-img {
    overflow: hidden;
    height: 5rem;
    width: 20rem;
    flex-shrink: 0;
    transition: all 0.4s ease-in;
}
.faq-row-img img {
    transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
    transform: scale(1);
}
.faq-item.open .faq-row-img {
    height: 9rem;
}
.faq-item.open {
    align-items: center;
}
.faq-row-content {
    flex: 1;
    display: flex;
    align-items: flex-start;
    gap: 15rem;
    padding: 1.25rem 0;
    border-top: 1px solid #db7134;
}
.faq-num {
    font-size: 1.5rem;
    flex-shrink: 0;
}
.faq-main {
    flex: 1;
}
.faq-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    cursor: pointer;
}
.faq-question {
    font-size: 1.5rem;
    color: #fff;
}
.faq-body {
    display: none;
}
.faq-body p {
    color: rgba(255, 255, 255, 0.6);
    max-width: 40rem;
    padding-top: 0.9rem;
}
.faq-toggle {
    position: relative;
    width: 2.85rem;
    height: 2.85rem;
    border-radius: 50%;
    background: #db7134;
    border: none;
    cursor: pointer;
    flex-shrink: 0;
}
.faq-toggle::before,
.faq-toggle::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    background: #fff;
    transform: translate(-50%, -50%);
}
.faq-toggle::before {
    width: 0.9rem;
    height: 0.125rem;
}
.faq-toggle::after {
    width: 0.125rem;
    height: 0.9rem;
    transition: all 0.35s ease-in;
}
.faq-item.open .faq-toggle::after {
    opacity: 0;
    transform: translate(-50%, -50%) rotate(90deg);
}

/* reviews */
.reviews-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2rem;
}
.reviews-nav {
    display: flex;
    gap: 0.75rem;
}
.reviews-slider .slick-list {
    overflow: visible;
}
.review-card {
    background: #fff;
    border-radius: 1.25rem;
    color: #281e18;
    padding: 1.5rem;
    padding-bottom: 1.25rem;
    position: relative;
}
.review-quote {
    position: absolute;
    top: -1.4rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.9375rem;
    height: 2.5rem;
}
.review-quote img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.review-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}
.review-name {
    font-size: 1.25rem;
}
.review-date {
    font-size: 0.9rem;
    color: #281e1862;
    flex-shrink: 0;
}
.review-stars {
    display: flex;
    gap: 0.15rem;
    margin-bottom: 0.75rem;
    font-size: 1.5rem;
}
.star {
    color: #281e1832;
}
.star.full {
    color: #281e18;
    width: unset;
}
.reviews-section .container {
    position: relative;
}
.reviews-section .container:after {
    position: absolute;
    top: 0;
    right: 100%;
    bottom: 0;
    width: 50%;
    content: "";
    background: #3a3330;
}
.reviews-slider .slick-track {
    display: flex !important;
    gap: 1.25rem;
}

/* footer */
.footer-section {
    position: relative;
    overflow: hidden;
    margin-bottom: 0;
}
.footer-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    opacity: 0.5;
}
.footer-overlay {
    position: absolute;
    inset: 0;
    /* background: rgba(30, 24, 20, 0.55); */
    z-index: 1;
}
.footer-inner {
    position: relative;
    z-index: 2;
    color: white;
    padding: 2.5rem 0;
}
.footer-top {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
    text-align: center;
    margin-bottom: 4rem;
}
.footer-logo img {
    height: 2.15rem;
    width: auto;
}
.footer-tagline {
    font-family: "Playfair Display", serif;
    font-style: italic;
    font-size: 2.5rem;
}
.footer-cols {
    display: flex;
    gap: 10rem;
    justify-content: center;
    margin-bottom: 3rem;
}
.footer-col-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
}
.footer-col a,
.footer-col p {
    display: block;
    margin-bottom: 1rem;
}
.footer-col p {
    color: rgba(255, 255, 255, 0.75);
}
.footer-col a:hover, .footer-col a.active {
    text-decoration: underline;
}
.footer-contacts-group {
    margin-bottom: 0.6rem;
}
.footer-contacts-group p,
.footer-contacts-group a {
    margin-bottom: 0;
}
.footer-socials {
    display: flex;
    gap: 0.75rem;
}

.footer-social:hover {
    background: #c15f27;
}
.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255);
}
.footer-bottom-links {
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
}
.footer-bottom-links a {
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: auto;
    text-decoration-thickness: auto;
    text-underline-offset: auto;
    text-underline-position: from-font;
}
.footer-bottom-links a:hover {
    text-decoration: none;
}
.footer-copy:hover {
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: auto;
    text-decoration-thickness: auto;
    text-underline-offset: auto;
    text-underline-position: from-font;
}
.footer-social {
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 0.75rem;
    background: #db7134;
    color: #fff !important;
    font-size: 1.4rem;
    display: flex !important;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease-in;
}
.footer-social:hover {
    text-decoration: none !important;
}

/* page-banner-section */
.page-banner-section {
    position: relative;
    overflow: hidden;
    background: black;
}
.op_banner .page-banner-bg{
    opacity: 0.8;
}
.page-banner-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}
.page-banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        0deg,
        rgba(30, 24, 20, 0) 0%,
        rgba(30, 24, 20, 0.74) 62.01%,
        #1e1814 108.25%
    );
    z-index: 1;
}
.page-banner-inner {
    position: relative;
    z-index: 2;
    height: 23rem;
    display: flex;
    flex-direction: column;
    padding: 2rem 0;
}
.page-banner-title {
    margin: auto 0;
    text-align: center;
    color: #fff;
    font-weight: 400;
}
.page-banner-breadcrumbs {
    display: flex;
    align-items: center;
    gap: 0.65rem;
}
.page-banner-breadcrumbs a {
    color: #fff;
}
.page-banner-breadcrumbs a:hover {
    font-weight: 500;
}
.page-banner-breadcrumbs img {
    flex-shrink: 0;
}
.page-banner-breadcrumbs span {
    color: rgba(255, 255, 255, 0.8);
}

.story-inner {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
}
.story-label {
    padding-left: 0.5rem;
    font-size: 1.25rem;
    border-left: 0.125rem solid #db7134;
    color: #fff;
    opacity: 0.7;
    height: fit-content;
}
.story-title-en {
    font-family: "Playfair Display", serif;
    font-style: italic;
    font-weight: 400;
    font-size: 2.5rem;
    color: #fff;
}
.story-desc {
    font-size: 1.25rem;
    color: #fff;
    line-height: 120%;
}
.story-desc strong {
    color: #fff;
    font-weight: 700;
}
.story-content .about-text {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
}

.mission-section {
    position: relative;
    overflow: hidden;
}
.mission-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}
.mission-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        0deg,
        rgba(0, 0, 0, 0.7) 0%,
        rgba(0, 0, 0, 0.7) 100%
    );
    z-index: 1;
}
.mission-inner {
    position: relative;
    z-index: 2;
    padding-top: 4rem;
}
.mission-content {
    display: flex;
    flex-direction: column;
    gap: 3.5rem;
}
.mission-text {
    margin-top: 0.75rem;
    font-size: 1.25rem;
}
.mission-slogan {
    font-family: "Playfair Display", serif;
    font-style: italic;
    font-weight: 500;
    font-size: 6.65325rem;
    letter-spacing: -0.13306rem;
    color: rgba(255, 255, 255, 0.3);
    margin-top: 1rem;
}

.discover-section {
    position: relative;
    overflow: hidden;
    margin-bottom: 0;
}
.discover-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}
.discover-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        0deg,
        rgba(0, 0, 0, 0.7) 0%,
        rgba(0, 0, 0, 0.7) 100%
    );
    z-index: 1;
}
.discover-inner {
    position: relative;
    z-index: 2;
    padding: 5rem 0;
}
.discover-content .about-text {
    margin-bottom: 1.5rem;
}
.discover-text {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
}
.discover-content .btn.outline svg {
    transition: transform 0.25s ease;
}
.discover-content .btn.outline:hover svg {
    transform: translateX(0.25rem);
}
.discover-btn {
    display: flex;
    justify-content: flex-end;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    margin-top: 2rem;
}
.stat-card {
    border-radius: 1.25rem;
    height: 14.75rem;
    padding: 1.65rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 1.25rem;
}
.stat-card--brown {
    background: #594940;
}
.stat-card--outline {
    border: 1px solid #db7134;
}
.stat-card--dark {
    background: #120b07;
}
.stat-card--orange {
    background: #db7134;
}
.stat-number {
    font-family: "Playfair Display", serif;
    font-style: italic;
    font-weight: 500;
    font-size: 6rem;
    color: #fff;
}
.stat-suffix {
    font-size: 2.5rem;
    font-weight: 500;
}
.stat-label {
    font-size: 1.25rem;
    color: #fff;
}

.categories-slider .slick-slide {
    padding: 0 0.62rem;
}
.categories-slider {
    margin: 0 -0.62rem;
}
.category-card a {
    position: relative;
    display: block;
    border-radius: 1.25rem;
    overflow: hidden;
    height: 8.875rem;
}
.category-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease-in;
}
.category-card:hover img {
    scale: calc(1.05);
}
.category-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(30, 24, 20, 0) 0%,
        rgba(30, 24, 20, 0.74) 64.15%,
        #1e1814 108.25%
    );
}
.category-bottom {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.25rem;
    color: #fff;
}
.category-name {
    font-size: 1.1rem;
}
.category-bottom svg {
    flex-shrink: 0;
}

/* ===== Catalog ===== */
.catalog-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 1.75rem;
    margin-bottom: 2rem;
}
.catalog-filter-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: none;
    border: none;
    cursor: pointer;
    color: #fff;
    font-weight: 600;
    font-size: 1.5rem;
}
.catalog-filter-btn img {
    width: 1.5rem;
    height: 1.5rem;
}
.catalog-count {
    color: rgba(255, 255, 255, 0.7);
}
.catalog-toolbar-left {
    display: flex;
    align-items: center;
    gap: 3.5rem;
}
.catalog-sort {
    position: relative;
}
.catalog-sort-btn {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    border-radius: 0.625rem;
    background: #594940;
    border: none;
    padding: 0.6rem 1rem;
    cursor: pointer;
    color: rgba(255, 255, 255);
    transition: all 0.2s ease;
}
.sort-arrow {
    transition: transform 0.2s ease;
}
.catalog-sort.open .sort-arrow {
    transform: rotate(180deg);
}
.catalog-sort-dropdown {
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 0;
    z-index: 100;
    width: 15rem;
    background: #fff;
    border-radius: 0.65rem;
    padding: 1rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition:
        opacity 0.2s ease,
        transform 0.2s ease,
        visibility 0.2s;
}
.catalog-sort.open .catalog-sort-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.catalog-sort-dropdown .filter-radio {
    color: #1e1814;
    margin-bottom: 0.85rem;
    white-space: nowrap;
}
.catalog-sort-dropdown .filter-radio:last-child {
    margin-bottom: 0;
}
.catalog-sort-dropdown .filter-radio-text {
    transition: color 0.2s ease;
}
.catalog-sort-dropdown .filter-radio input:checked ~ .filter-radio-text {
    color: #000;
    font-weight: 500;
}
.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}
.catalog-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 18rem;
    padding: 3rem 1.5rem;
    margin-top: 1.25rem;
    border: 1px solid rgba(30, 24, 20, 0.12);
    border-radius: 0.75rem;
    background: #fff;
    text-align: center;
}
.catalog-empty-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3.75rem;
    height: 3.75rem;
    margin-bottom: 1.25rem;
    border-radius: 50%;
    background: #f5efe9;
}
.catalog-empty-icon i {
    color: #c9824d;
    font-size: 1.35rem;
}
.catalog-empty-title {
    max-width: 36rem;
    color: #1e1814;
    font-size: 1.35rem;
    font-weight: 500;
    line-height: 1.35;
}
.catalog-empty-text {
    max-width: 32rem;
    margin-top: 0.65rem;
    color: rgba(30, 24, 20, 0.62);
    font-size: 1rem;
    line-height: 1.5;
}
.catalog-empty-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 2.75rem;
    margin-top: 1.35rem;
    padding: 0 1.5rem;
    border-radius: 2rem;
    background: #1e1814;
    color: #fff;
    font-size: 0.95rem;
    text-decoration: none;
    transition: background 0.2s ease;
}
.catalog-empty-link:hover {
    background: #c9824d;
    color: #fff;
}

/* Filter panel */
.filter-panel {
    position: fixed;
    inset: 0;
    z-index: 300;
    visibility: hidden;
    pointer-events: none;
}
.filter-panel.open {
    visibility: visible;
    pointer-events: all;
}
.filter-panel-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    opacity: 0;
    transition: opacity 0.3s ease;
}
.filter-panel.open .filter-panel-overlay {
    opacity: 1;
}
.filter-panel-inner {
    position: absolute;
    top: 0;
    left: 0;
    width: 30rem;
    max-width: 90%;
    height: 100%;
    background: #fff;
    color: #1e1814;
    padding: 2rem 2.5rem;
    overflow-y: scroll;
    transform: translateX(-100%);
    transition: all 0.3s ease;
    scrollbar-width: thin;
    scrollbar-color: #db7134 transparent;
}
.margin_product_more{
    margin-top: 1.5rem;
    text-align: center;
}
.filter-panel-inner::-webkit-scrollbar {
    width: 3px;
}

.filter-panel-inner::-webkit-scrollbar-track {
    background: transparent;
}

.filter-panel-inner::-webkit-scrollbar-thumb {
    background: #db7134;
    border-radius: 10px;
}


.filter-panel.open .filter-panel-inner {
    transform: translateX(0);
}
.filter-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2rem;
}
.filter-head-left {
    display: flex;
    align-items: baseline;
    gap: 0.85rem;
}
.filter-title {
    font-size: 2rem;
}
.filter-reset {
    background: none;
    border: none;
    color: #000000;
    text-decoration: underline;
    text-underline-offset: 0.1rem;
    cursor: pointer;
    opacity: 0.6;
}
.filter-close {
    background: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
}
.filter-close img {
    width: 1.375rem;
    height: 1.375rem;
}
.filter-row--toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2rem;
}
.filter-row span {
    font-size: 1.25rem;
}
.filter-switch {
    position: relative;
    width: 2.75rem;
    height: 1.5rem;
    display: inline-block;
    flex-shrink: 0;
}
.filter-switch input {
    opacity: 0;
    width: 0;
    height: 0;
    position: absolute;
}
.filter-switch-track {
    position: absolute;
    inset: 0;
    background: #e2ded9;
    border-radius: 6.25rem;
    cursor: pointer;
    transition: background 0.25s ease;
}
.filter-switch-track::before {
    content: "";
    position: absolute;
    top: 0.15rem;
    left: 0.15rem;
    width: 1.15rem;
    height: 1.15rem;
    background: #fff;
    border-radius: 50%;
    transition: transform 0.25s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}
.filter-switch input:checked + .filter-switch-track {
    background: #db7134;
}
.filter-switch input:checked + .filter-switch-track::before {
    transform: translateX(1.25rem);
}
.filter-block {
    margin-bottom: 2rem;
}
.filter-block-title {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}
.filter-block-head {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}
.filter-block-head .filter-block-title {
    margin-bottom: 0;
}
.filter-block-head .filter-clear {
    width: 1.15rem;
    height: 1.15rem;
}
.filter-clear img {
    width: 100%;
    height: 100%;
}
.filter-radio {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    margin-bottom: 0.75rem;
}
.filter-radio:last-child {
    margin-bottom: 0;
}
.filter-radio input {
    display: none;
}
.filter-radio-mark {
    width: 1.2rem;
    height: 1.2rem;
    border-radius: 50%;
    border: 1px solid #d8d2cb;
    position: relative;
    flex-shrink: 0;
}
.filter-radio input:checked + .filter-radio-mark {
    border-color: #db7134;
}
.filter-radio input:checked + .filter-radio-mark::after {
    content: "";
    position: absolute;
    inset: 0.1rem;
    border-radius: 50%;
    background: #db7134;
}
.filter-clear {
    width: 1.5rem;
    height: 1.5rem;
    border: none;
    background: none;
    color: #db7134;
    cursor: pointer;
    font-size: 1.1rem;
    flex-shrink: 0;
}
.filter-price-slider {
    position: relative;
    height: 1rem;
    margin: 1rem 0 0.75rem;
}
.filter-price-track {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 0.2rem;
    background: #e2ded9;
    border-radius: 6.25rem;
    transform: translateY(-50%);
}
.filter-price-range {
    position: absolute;
    top: 50%;
    height: 0.2rem;
    background: #000000;
    border-radius: 6.25rem;
    transform: translateY(-50%);
}
.filter-price-input {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1.1rem;
    margin: 0;
    background: none;
    -webkit-appearance: none;
    appearance: none;
    pointer-events: none;
}
.filter-price-input::-webkit-slider-runnable-track {
    background: transparent;
}
.filter-price-input::-webkit-slider-thumb {
    -webkit-appearance: none;
    pointer-events: all;
    width: 1.1rem;
    height: 1.1rem;
    border-radius: 50%;
    background: #fff;
    border: 2px solid #000000;
    cursor: pointer;
    position: relative;
}
.filter-price-input::-moz-range-thumb {
    pointer-events: all;
    width: 1.1rem;
    height: 1.1rem;
    border-radius: 50%;
    background: #fff;
    border: 2px solid #db7134;
    cursor: pointer;
}
.filter-price-labels {
    display: flex;
    justify-content: space-between;
}
.filter-accordion-item {
    margin-bottom: 1.5rem;
}
.filter-accordion-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    font-size: 1.25rem;
}
.filter-toggle {
    position: relative;
    background: none;
    border: none;
    cursor: pointer;
    flex-shrink: 0;
    transition: transform 0.3s ease;
    transform: rotate(45deg);
    width: 1.15rem;
    height: 1.15rem;
}
.filter-toggle img {
    width: 100%;
    height: 100%;
}
.filter-accordion-item.is-expanded .filter-toggle {
    transform: rotate(180deg);
}
.filter-accordion-body {
    display: none;
    padding-top: 1rem;
}
.filter-checkbox {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    cursor: pointer;
    margin-bottom: 0.75rem;
}
.filter-checkbox:last-child {
    margin-bottom: 0;
}
.filter-checkbox input {
    display: none;
}
.filter-checkbox-mark {
    width: 1.1rem;
    height: 1.1rem;
    border-radius: 0.25rem;
    border: 1px solid #d8d2cb;
    position: relative;
    flex-shrink: 0;
}
.filter-checkbox input:checked + .filter-checkbox-mark {
    background: #db7134;
    border-color: #db7134;
}
.filter-checkbox input:checked + .filter-checkbox-mark::after {
    content: "";
    position: absolute;
    left: 0.3rem;
    top: 0.1rem;
    width: 0.3rem;
    height: 0.55rem;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}
.filter-apply {
    margin-top: 0.5rem;
}
/* ===== Product page ===== */
.product-page-section {
    margin-bottom: 2.5rem;
}
.product-breadcrumbs-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}
.product-brand-link {
    color: rgba(255, 255, 255, 0.85);
    flex-shrink: 0;
}
.product-brand-link a {
    color: #fff;
    text-decoration: underline;
    text-underline-offset: 0.2rem;
}
.product-brand-link a:hover {
    text-decoration: none;
    font-weight: 500;
}
.product-main {
    display: grid;
    grid-template-columns: 1.35fr 1fr;
    gap: 2.25rem;
    align-items: center;
}
.product-gallery {
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
}
.product-gallery-container {
    position: relative;
    width: 100%;
}
.product-gallery-main {
    overflow: hidden;
    width: 100%;
}
.product-gallery-slide img {
    border-radius: 0.625rem;
    height: 31rem;
    width: 100%;
    object-fit: scale-down;
    display: block;
}
.product-gallery .slick-track{
    margin: 0 auto;
}
.product-gallery-slide{
    background: white;
}
.product-gallery .novinki-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background: #db7134;
    border: 1px solid #db7134;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
}
.product-gallery .novinki-arrow:hover {
    background: #d57844;
    border-color: #db7134;
}
.product-gallery-prev {
    left: 1.5rem;
}
.product-gallery-next {
    right: 1.5rem;
}
.product-gallery-thumbs {
    /*display: flex;*/
    width: 100%;
    justify-content: center;
    position: absolute;
    bottom: 1.5rem;
    left: 0;
}
.product-gallery-thumbs .slick-track {
    display: flex;
    gap: 0.5rem;
}
.product-gallery-thumb {
    /*width: 3.5rem !important;*/
    height: 3.5rem !important;
    overflow: hidden;
    border-radius: 0.625rem;
    border: 1px solid #db7134;
    cursor: pointer;
    opacity: 0.8;
    background: white;
    transition:
        opacity 0.25s ease,
        border-color 0.25s ease;
}
.product-gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.product-gallery-thumbs .slick-current .product-gallery-thumb,
.product-gallery-thumb.slick-current {
    opacity: 1;
}
.product-gallery-sources {
    display: none;
}
.product-info {
    color: white;
    display: flex;
    flex-direction: column;
    gap: 5rem;
}
.product-info-category {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}
.product-volumes {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}
.product-volume input {
    display: none;
}
.product-volume span {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.625rem 1.25rem;
    border-radius: 6.25rem;
    border: 1px solid rgba(255, 255, 255);
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 1.25rem;
}
.product-volume input:checked + span {
    border-color: #db7134;
    color: #db7134;
}
.product-volume.disabled span {
    border-color: rgba(255, 255, 255, 0.4);
    color: rgba(255, 255, 255, 0.4);
    text-decoration: line-through;
    cursor: not-allowed;
}
.product-buy-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem;
}
.product-price {
    font-size: 2.15rem;
    color: #fff;
    flex-shrink: 0;
}
.product-add-cart {
    flex: 1;
}
.product-wish {
    background: none;
    border: none;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
    transition: color 0.2s ease;
}
.product-wish path {
    fill: transparent;
    transition: fill 0.2s ease;
}
.product-wish:hover path, .product-wish.active path{
    fill: #db7134;
    stroke: #db7134;
}
.profile_bonus_box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding-bottom: 0.95rem;
    /*border-top: 1px solid rgba(40, 30, 24, 0.12);*/
    border-bottom: 1px solid rgba(40, 30, 24, 0.12);
    margin-bottom: 1rem;
}
.profile_bonus_box div {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}
.profile_bonus_box span {
    color: rgba(40, 30, 24, 0.72);
    font-size: 0.95rem;
}
.profile_bonus_box strong {
    color: #281e18;
    font-size: 1.15rem;
    font-weight: 600;
}
.profile_bonus_switch {
    margin-left: auto;
}
.pd-top {
    padding-top: 8rem;
}
/* Product details / reviews */
.product-details-inner {
    display: grid;
    grid-template-columns: 1.35fr 1fr;
    gap: 2.25rem;
}
.product-accordion-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.35);
    padding: 2rem 0;
}
.product-accordion-item:first-child {
    padding-top: 0;
}
.product-accordion-head {
    display: flex;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
}
.product-accordion-toggle {
    position: relative;
    width: 1.1rem;
    height: 1.1rem;
    background: none;
    border: none;
    cursor: pointer;
    flex-shrink: 0;
    transition: all 0.3s ease;
}
.product-accordion-toggle::before,
.product-accordion-toggle::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    background: #fff;
    transform: translate(-50%, -50%);
}
.product-accordion-toggle::before {
    width: 0.9rem;
    height: 0.125rem;
}
.product-accordion-toggle::after {
    width: 0.125rem;
    height: 0.9rem;
}
.product-accordion-item.open .product-accordion-toggle {
    transform: rotate(45deg);
}
.product-accordion-title {
    font-size: 1.5rem;
    color: #fff;
}
.product-accordion-body {
    display: none;
    padding-top: 1rem;
    padding-left: 2.2rem;
}
.product-sku {
    color: #938881;
    margin-top: 1rem;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}
.rating-score {
    font-family: "Playfair Display", serif;
    font-style: italic;
    font-weight: 500;
    font-size: 4rem;
    color: #fff;
    line-height: 1;
}
.rating-stars {
    display: flex;
    gap: 0.15rem;
    font-size: 1.85rem;
}
.rating-caption {
    font-size: 0.95rem;
    color: rgb(255, 255, 255);
}
.product-reviews-col .star {
    color: #695d56;
}
.product-reviews-col .star.full {
    color: #ffffff;
}
.product-reviews-col .star.half {
    position: relative;
}
.product-reviews-col .star.half::before {
    content: "★";
    position: absolute;
    left: 0;
    top: 0.45rem;
    width: 51%;
    overflow: hidden;
    color: #ffffff;
}
.product-review-item {
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.35);
}
.product-review-item:first-child {
    padding-top: 0;
}
.product-review-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 0.65rem;
}
.product-review-name {
    font-size: 1.25rem;
    color: #fff;
}
.product-review-date {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.65);
    flex-shrink: 0;
}
.product-review-stars {
    display: flex;
    gap: 0.15rem;
    font-size: 1.45rem;
    margin-bottom: 0.75rem;
}

.product-all-reviews {
    margin-top: 2rem;
}

/* ===== Reviews modal ===== */
.reviews-modal-block {
    width: 44rem;
    max-width: 92%;
    max-height: 88vh;
    overflow-y: auto;
    text-align: left;
    padding: 2.5rem;
    border-radius: 0;
    color: #1e1814;
    background: white;
}

.reviews-modal-block {
    overflow-y: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}
.reviews-modal-block::-webkit-scrollbar {
    display: none;
}
.review-step {
    display: none;
}
.review-step.active {
    display: block;
}
.review-step-back {
    width: 2.25rem;
    height: 2.25rem;
    background: none;
    border: none;
    color: #1e1814;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    margin-bottom: 1rem;
}

/* step: list */
.review-list-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    margin-bottom: 1.25rem;
}
.review-summary {
    display: flex;
    align-items: center;
    gap: 0.65rem;
}
.reviews-modal .rating-score {
    color: #1e1814;
    font-size: 3.25rem;
}
.reviews-modal .star {
    color: #bfb2ab;
}
.reviews-modal .star.full {
    color: #1e1814;
}
.reviews-modal .rating-caption {
    font-size: unset;
    color: #1e1814;
}
.review-leave-link {
    background: none;
    border: none;
    color: #1e1814;
    text-decoration: underline;
    text-underline-offset: 0.25rem;
    cursor: pointer;
    white-space: nowrap;
}
.review-sort {
    display: flex;
    align-items: center;
    border-radius: 0.625rem;
    background: #f2f2f2;
    border: none;
    padding: 0.625rem 1rem;
    gap: 0.625rem;
    cursor: pointer;
    color: #1e1814;
    margin-bottom: 1.25rem;
}
.review-list-item {
    padding: 1.15rem 0;
    border-bottom: 1px solid rgba(30, 24, 20, 0.1);
}
.review-list-item:first-child {
    border-top: none;
    padding-top: 0;
}
.review-list-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 0.5rem;
}
.review-list-name {
    font-size: 1.25rem;
}
.review-list-date {
    font-size: 0.9rem;
    color: rgba(30, 24, 20, 0.5);
    flex-shrink: 0;
}
.review-list-stars {
    display: flex;
    gap: 0.1rem;
    margin-bottom: 0.65rem;
    font-size: 1.35rem;
}
.review-list-text {
    margin-bottom: 0.75rem;
}
.review-list-photos {
    display: flex;
    gap: 0.45rem;
}
.review-list-photos img {
    width: 4.5rem;
    height: 4.5rem;
    border-radius: 0.3125rem;
    object-fit: cover;
}

/* steps: rate / text (shared) */
.review-form-title {
    font-family: "Playfair Display", serif;
    font-style: italic;
    font-size: 2.5rem;
    font-weight: 500;
    margin-bottom: 1rem;
}
.review-form-subtitle {
    margin-bottom: 2rem;
}
.review-rate-label-top {
    font-size: 1.25rem;
    margin-bottom: 1.25rem;
}
.review-rate-box {
    display: flex;
    align-items: center;
    gap: 1.15rem;
    margin-bottom: 1.25rem;
}
.review-rate-product {
    width: 10.1875rem;
    height: 10.1875rem;
    border: 1px solid #db7134;
    border-radius: 0.625rem;
    overflow: hidden;
    flex-shrink: 0;
}
.review-rate-product img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.review-rate-right {
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.review-rate-stars {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
}
.review-rate-star {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 2.5rem;
    line-height: 1;
    color: #e2ded9;
    padding: 0;
}
.review-rate-star.active {
    color: #1e1814;
}
.review-rate-label {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}
.review-text-label {
    margin-bottom: 1rem;
    font-size: 1.25rem;
}
.review-textarea {
    width: 100%;
    min-height: 8rem;
    background: #f2f2f2;
    border: none;
    border-radius: 0.625rem;
    padding: 1rem 1.5rem;
    color: #1e1814;
    resize: vertical;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.review-input {
    width: 100%;
    height: 3.5rem;
    background: #f2f2f2;
    border: 1px solid transparent;
    border-radius: 0.625rem;
    padding: 0 1.5rem;
    color: #1e1814;
    outline: none;
    margin-bottom: 1rem;
    transition: border-color 0.2s ease, background-color 0.2s ease;
}

.review-input:focus {
    border-color: #db7134;
    background: #fff;
}

.review-upload-files {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin: -1rem 0 1rem;
}

.review-upload-file {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 0.7rem 0.9rem;
    background: #f2f2f2;
    border-radius: 0.625rem;
    font-size: 0.9rem;
}

.review-upload-file span {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.review-upload-remove {
    width: 1.75rem;
    height: 1.75rem;
    border: none;
    border-radius: 50%;
    background: #1e1814;
    color: #fff;
    line-height: 1;
    cursor: pointer;
    flex-shrink: 0;
}

.review-result {
    margin-bottom: 1rem;
}
.review-upload {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    border: 2px dashed rgba(30, 24, 20, 0.5);
    border-radius: 0.75rem;
    padding: 1.5rem;
    background: #f2f2f2;
    color: rgba(30, 24, 20, 0.55);
    cursor: pointer;
    margin-bottom: 2rem;
}
.reviews-modal .close {
    display: none;
}

/* Policy pages */
.policy-inner {
    border-bottom: 1px solid #594940;
    padding-bottom: 3rem;
    margin-bottom: 3rem;
}
.policy-inner:last-child {
    padding-bottom: 0;
    margin-bottom: 0;
    border-bottom: 0;
}
.policy-block {
    margin-bottom: 2.5rem;
}
.policy-block:last-child {
    margin-bottom: 0;
}
.policy-block-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.75rem;
}
.policy-block p {
    margin-bottom: 1rem;
}
.policy-block p:last-child {
    margin-bottom: 0;
}
.policy-list {
    margin: 0.25rem 0 0.9rem;
    padding-left: 1.25rem;
}
.policy-list li {
    list-style: disc;
    margin-bottom: 0.3rem;
}

/* ===== Популярные темы (bento) ===== */
.topics-grid {
    display: grid;
    grid-template-columns: 1.55fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 1.5rem;
    height: 40rem;
}
.topics-grid .blog-card {
    height: 100%;
    padding: 0.85rem;
}

.topic-card--featured {
    grid-column: 1;
    grid-row: 1 / 3;
}
.topic-card--featured .blog-card-img {
    width: 95%;
    height: 95.5%;
}
.topic-card--wide .blog-card-img {
    width: 96.25%;
    height: 91.6%;
}
.topic-card--featured .blog-card-name {
    font-size: 1.5rem;
}
.topic-card--small {
    grid-row: 1;
}
.topic-card--wide {
    grid-column: 2 / 4;
    grid-row: 2;
}

.blog-slider .slick-slide {
    padding: 0 0.625rem;
}
.blog-slider {
    margin: 0 -0.625rem;
}

/* ===== Blog post ===== */
.blog-post-inner {
    display: grid;
    grid-template-columns: 1fr 19.7rem;
    gap: 3.75rem;
}
.blog-post-main {
    padding-right: 3.75rem;
    border-right: 1px solid #594940;
}
.blog-post-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}
.blog-post-intro {
    font-size: 1.25rem;
    margin-bottom: 2rem;
}
.blog-post-image {
    position: relative;
    border-radius: 0.625rem;
    overflow: hidden;
    margin-bottom: 2rem;
    height: 29.4375rem;
}
.blog-overlay {
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
    background: linear-gradient(
        0deg,
        rgba(0, 0, 0, 0.3) 0%,
        rgba(0, 0, 0, 0.3) 100%
    );
}
.blog-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.blog-post-section .policy-block-title {
    font-size: 1.65rem;
    font-weight: 600;
}
/*.blog-post-section .policy-block p {*/
/*    font-size: 1.25rem;*/
/*}*/
/*.blog-post-section .policy-list li {*/
/*    font-size: 1.25rem;*/
/*}*/

.blog-post-divider {
    height: 1px;
    background: #594940;
    margin-bottom: 2.5rem;
}
.blog-post-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    font-size: 1.25rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #594940;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 2rem;
}
.blog-post-meta p {
    color: white;
}
.blog-post-meta a {
    color: #fff;
    text-decoration: underline;
    text-underline-offset: 0.2rem;
}
.blog-post-meta a:hover {
    font-weight: 500;
    text-decoration: none;
}
.blog-post-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}
.blog-post-actions-left {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}
.blog-post-share{
    pointer-events: none;
}
.blog-post-like,
.blog-post-share {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: none;
    border: none;
    color: rgba(255, 255, 255);
    cursor: pointer;
    font-size: 1.25rem;
}
.blog-post-like:hover,
.blog-post-share:hover {
    color: #db7134;
}
.blog-post-back {
    font-size: 1.25rem;
    text-decoration: underline;
    text-underline-offset: 0.3rem;
}
.blog-post-back:hover {
    font-weight: 500;
    text-decoration: none;
}
.related-title {
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 1.25rem;
}
.related-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}
.related-list .blog-card {
    height: 16rem;
    padding: 0.75rem;
}
.related-list .blog-card-name {
    font-size: 1.05rem;
}
/* ===== Checkout ===== */
.checkout-inner {
    display: grid;
    grid-template-columns: 1fr 27rem;
    gap: 1.25rem;
}
.checkout-block {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    padding-bottom: 2.5rem;
    margin-bottom: 2.5rem;
    border-bottom: 1px solid #594940;
}
.checkout-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.form-label {
    font-size: 1.25rem;
    color: #fff;
}
.form-select {
    position: relative;
}
.form-select select {
    width: 100%;
    padding: 0.95rem 1.25rem;
    border-radius: 0.625rem;
    border: none;
    background: #fff;
    color: #281e18;
    font-family: inherit;
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
}
.form-select svg {
    position: absolute;
    top: 50%;
    right: 1.25rem;
    transform: translateY(-50%);
    color: rgba(30, 24, 20, 0.75);
    pointer-events: none;
}
.form-input {
    width: 100%;
    padding: 0.95rem 1.25rem;
    border-radius: 0.625rem;
    border: none;
    background: #fff;
    color: #281e18;
    font-family: inherit;
}
.form-input::placeholder {
    color: rgba(30, 24, 20, 0.5);
}
.checkout-delivery-options {
    display: flex;
    gap: 2rem;
}
.checkout-radio {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    cursor: pointer;
}
.checkout-radio input {
    display: none;
}
.checkout-radio-mark {
    width: 1.15rem;
    height: 1.15rem;
    border-radius: 50%;
    border: 1px solid #db7134;
    position: relative;
    flex-shrink: 0;
}
.checkout-radio input:checked + .checkout-radio-mark {
    border-color: #db7134;
}
.checkout-radio input:checked + .checkout-radio-mark::after {
    content: "";
    position: absolute;
    inset: 0.2rem;
    border-radius: 50%;
    background: #db7134;
}

.checkout-summary-wrap {
    border-left: 1px solid #594940;
    padding-left: 1.25rem;
}
.checkout-summary {
    background: #fff;
    border-radius: 1.25rem;
    padding: 1.5rem;
    color: #281e18;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 2rem;
    /*height: 24rem;*/
}
.checkout-summary-title {
    font-size: 1.5rem;
    font-weight: 600;
}
.checkout-summary-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 0.85rem;
}
.checkout-summary-value {
    font-weight: 600;
}
.checkout-summary-discount-label {
    color: #db7134;
}
.checkout-summary-discount {
    color: #db7134;
    font-weight: 600;
}
.checkout-summary-divider {
    height: 1px;
    background: rgba(30, 24, 20, 0.1);
    margin: 1rem 0;
}
.checkout-summary-total {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}
.checkout-pay-btn {
    width: 100%;
    height: 3.5rem;
    border-radius: 0.75rem;
    border: none;
    background: #e2321f;
    color: #fff;
    font-size: 1.25rem;
    cursor: pointer;
    transition: background 0.25s ease-in;
}
.checkout-pay-btn:hover {
    background: #c22314;
}
.checkout-delivery-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.checkout-radio--block {
    font-size: 1.1rem;
}
.checkout-radio-text strong {
    font-weight: 600;
}
.checkout-radio-sub {
    margin-top: -1rem;
    margin-left: 1.8rem;
    color: #db7134;
}

.cart-items-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}
.cart-item {
    display: flex;
    gap: 1.5rem;
    background: #fff;
    border-radius: 1.25rem;
    padding: 0.5rem;
    padding-right: 0.75rem;
}
.cart-item-img {
    width: 7.375rem;
    height: 7.375rem;
    flex-shrink: 0;
    border: 1px solid #db7134;
    border-radius: 0.9375rem;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: white;
}
.cart-item-img img {
    width: 100%;
    height: 100%;
    object-fit: scale-down;
    display: block;
}
.cart-item-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    /* gap: .5rem; */
}
.cart-item-name {
    font-size: 1.25rem;
    color: #281e18;
}
.cart-item-desc {
    font-size: 0.9rem;
    color: #281e1890;
    margin-top: 0.4rem;
}
.cart-item-desc strong {
    color: #281e18;
    font-weight: 600;
}
.cart-item-bottom {
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}
.cart-item-price {
    font-size: 1.35rem;
    font-weight: 600;
    color: #281e18;
    display: flex;
    align-items: baseline;
    gap: 0.75rem;
}
.cart-item-price-old {
    font-size: 1.35rem;
    font-weight: 600;
    color: #b8b8b8;
    text-decoration: line-through;
}
.cart-item-qty {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    background: #f2f2f2;
    border-radius: 6.25rem;
    padding: 0.25rem 0.875rem;
}
.cart-qty-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    color: #281e18;
    font-size: 1.25rem;
    font-weight: 500;
    cursor: pointer;
}
.cart-qty-value {
    font-size: 1.25rem;
    font-weight: 600;
    color: #281e18;
    min-width: 1.25rem;
    text-align: center;
}

.cert-links-row {
    margin-bottom: 2.5rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid #594940;
}
.cert-pdf-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.cert-pdf-link {
    font-size: 1.25rem;
    font-weight: 700;
    color: #db7134;
    text-decoration: underline;
    text-underline-offset: 0.2rem;
}
.cert-pdf-size {
    color: rgba(255, 255, 255);
    text-decoration: none;
}
.policy-block span {
    font-weight: 700;
}
/* ===== Account ===== */
.account-inner {
    display: grid;
    grid-template-columns: 18rem 1fr;
    gap: 3rem;
    min-width: 0;
}
.account-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    border-right: 1px solid #594940;
}
.account-nav {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.account-nav-link {
    padding-left: 0.75rem;
    border-left: 0.125rem solid rgba(255, 255, 255, 0.25);
    color: rgba(255, 255, 255, 0.55);
    font-size: 1.25rem;
}
.account-nav-link.active,
.account-nav-link:hover {
    border-left-color: #db7134;
    color: #fff;
}
.account-logout {
    color: #db7134;
    text-decoration: underline;
    text-underline-offset: 0.2rem;
    font-size: 1.25rem;
    margin-top: 1rem;
}

.account-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 100%;
}
.account-block-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}
.account-block-title {
    font-size: 1.25rem;
    color: #fff;
    margin-bottom: 1.5rem;
}
.account-block-head .account-block-title {
    margin-bottom: 0;
}
.account-block-nav {
    display: flex;
    gap: 0.75rem;
}

.orders-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.order-card {
    background: #fff;
    border-radius: 1.25rem;
    padding: 1rem;
    height: 8rem;
    color: #281e18;
    display: grid;
    gap: 1rem;
    grid-template-columns: 1fr 1.5fr;
}
.order-card-left {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    justify-content: space-between;
}
.order-status {
    display: flex !important;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1rem;
    border-radius: 6.25rem;
    color: #fff;
    white-space: nowrap;
}
.order-status--ready {
    background: #db7134;
}
.order-status--done {
    background: #594940;
}
.order-status--cancelled {
    background: #d83c32;
}
.order-card-products {
    display: flex;
    gap: 0.35rem;
}
.order-product-thumb {
    width: 5.15rem;
    height: 100%;
    border: 1px solid #db7134;
    border-radius: 0.65rem;
    overflow: hidden;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
}
.order-product-thumb img {
    width: 100%;
    height: 100%;
    object-fit: scale-down;
}
.order-product-more {
    position: relative;
}
.order-product-more img {
    width: 100%;
    height: 100%;
    inset: 0;
    position: absolute;
}
.order-product-num {
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(2px);
    font-weight: 600;
    font-size: 1.5rem;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.slick-track {
    margin-left: 0;
    margin-right: 0;
}
.order-card-number {
    font-size: 1.35rem;
    font-weight: 600;
}
.order-card-date {
    opacity: 0.6;
    font-size: 0.875rem;
}
.order-card-date strong {
    font-weight: 600;
}
.account-content {
    min-width: 0;
}
.account-block {
    min-width: 0;
}
.orders-history-slider {
    min-width: 0;
}
.orders-history-slider .slick-slide {
    padding: 0 0.5rem;
}
.orders-history-slider {
    margin: 0 -0.5rem;
}
.orders-history-slider .order-card {
    display: grid !important;
}
.orders-history-slider .order-product-thumb {
    width: 5.5rem;
}
.orders-history-slider .order-card-number {
    font-size: 1.4rem;
}
.iz-grid {
    gap: 0.85rem;
}
.iz-grid .novinka-img-wrap {
    height: 13.5rem;
}

/* ===== Мои заказы (список) ===== */
.my-orders-group {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    /* margin-bottom: 2.5rem; */
}
.my-orders-group:last-child {
    margin-bottom: 0;
}
.my-order-card {
    background: #fff;
    border-radius: 1.25rem;
    padding: 1rem 1.25rem;
    color: #281e18;
    display: flex;
    /* justify-content: space-between; */
    gap: 1.15rem;
    transition: all 0.35s;
}
.my-order-card:hover{
    background: #eaeaea;
}
.my-order-left,
.my-order-right {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 1.5rem;
}
.my-order-line {
    width: 1px;
    background: #f2f2f2;
}
.my-order-title-block {
    flex-shrink: 0;
}
.my-order-title {
    font-size: 1.5rem;
}
.my-order-title span {
    font-weight: 600;
}
.my-order-number {
    font-size: 0.9rem;
    color: #281e18;
    margin-top: 0.5rem;
    opacity: 0.6;
}
.my-order-products {
    display: flex;
    gap: 0.5rem;
    min-width: 0;
}
.my-order-products .order-product-thumb {
    width: 7.375rem;
    height: 7.375rem;
}
.my-order-address-label {
    font-size: 0.9rem;
    margin-bottom: 0.65rem;
}
.my-order-address-value {
    font-size: 0.9rem;
}
.my-order-sum {
    font-size: 1.25rem;
    flex-shrink: 0;
}
.my-order-sum strong {
    font-weight: 700;
}
.my-order-left {
    width: 18rem;
}
.my-order-right {
    flex: 1;
}
.my-order-box {
    width: 100%;
    display: flex;
    justify-content: flex-end;
}
.my-order-card.recived .my-order-left {
    opacity: 0.6;
}
.my-orders-line {
    height: 1px;
    background: #594940;
}

/* ===== Order detail ===== */
.account-width {
    width: 35rem;
}
.order-detail-back {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    color: #fff;
    font-size: 1.25rem;
}
.order-detail-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}
.order-detail-number {
    font-size: 2rem;
    color: #fff;
}
.order-detail-block {
    /* margin-bottom: 2.5rem; */
}
.order-detail-block:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}
.order-info-row {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin-bottom: 1.15rem;
}
.order-info-row:last-child {
    margin-bottom: 0;
}
.order-info-label {
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
}
.order-info-filler {
    flex: 1;
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
    transform: translateY(0);
}
.order-info-value {
    text-align: right;
    flex-shrink: 0;
}
.checkout-summary-row.sale {
    color: #db7134;
}
.order-total-divider {
    background: #e0e0e0;
}
.order-total-final {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
}
.acc-order-btns {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Cancel order modals */
.cancel-modal-block1 {
    width: 22.625rem;
    height: 10.625rem;
    padding: 2rem 3.75rem 1.75rem 3.75rem;
    background: white;
    border-radius: 1.25rem;
    border: 1px solid #e0e0e0;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: #281e18;
    gap: 1rem;
}
.cancel-modal-block {
    display: flex;
    width: 28.25rem;
    padding: 2rem 1.75rem 1.75rem 1.8125rem;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    border-radius: 1.25rem;
    border: 1px solid #e0e0e0;
    background: #fff;
    text-align: center;
    color: #281e18;
}
.cancel-modal-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}
.cancel-modal-text {
    margin-bottom: 1.5rem;
}
.cancel-modal-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

/* ===== Custom address select ===== */
.address-select {
    position: relative;
}
.address-select-trigger {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.95rem 1.25rem;
    border-radius: 0.625rem;
    border: none;
    background: #fff;
    color: #281e18;
    font-family: inherit;
    cursor: pointer;
    text-align: left;
}
.address-select-value {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.address-select-chevron {
    flex-shrink: 0;
    color: rgba(30, 24, 20, 0.75);
    transition: transform 0.25s ease;
}
.address-select.open .address-select-chevron {
    transform: rotate(180deg);
}
.address-select-dropdown {
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 0;
    right: 0;
    background: #3a3330;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    padding: 0.5rem 1.25rem;
    z-index: 20;
    box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.35);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-0.5rem);
    transition:
        opacity 0.25s ease,
        transform 0.25s ease,
        visibility 0.25s;
}
.address-select.open .address-select-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    background: white;
    color: #281e18;
}
.address-option {
    padding: 0.65rem 0;
}
.address-option:last-of-type {
    border-bottom: none;
}
.address-add-btn {
    display: flex;
    gap: 0.65rem;
    width: 100%;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.85rem 0;
}
.address-add-icon {
    width: 0.625rem;
    height: 0.625rem;
}
.address-add-icon img {
    width: 100%;
    height: 100%;
}
.address-add-input {
    width: 100%;
    background: rgba(0, 0, 0, 0.048);
    border: 1px solid #281e18;
    border-radius: 0.5rem;
    padding: 0.6rem 0.9rem;
    color: #281e18;
    font-family: inherit;
    font-size: 0.95rem;
    margin: 0.75rem 0;
}
.address-add-input::placeholder {
    color: rgba(0, 0, 0, 0.4);
}

/* ===== Мои адреса ===== */
.address-list {
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.address-list-items{
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.address-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    background: #fff;
    border-radius: 0.65rem;
    padding: 0.85rem 1.5rem;
    color: #1e1814;
}

.address-delete-btn {
    background: none;
    border: none;
    color: rgba(30, 24, 20, 0.5);
    cursor: pointer;
    flex-shrink: 0;
    transition: color 0.2s ease;
}
.address-delete-btn:hover {
    color: #db7134;
}

/* ===== Add address modal ===== */
.address-modal-block {
    width: 32rem;
    max-width: 92%;
    background: white;
    border-radius: 1.25rem;
    padding: 0.85rem;
    padding-right: 0;
    display: grid;
    /*grid-template-columns: 1fr 1fr;*/
    align-items: center;
    overflow: hidden;
    text-align: left;
    color: #281e18;
}
.address-modal-map {
    height: 33.125rem;
    border-radius: 0.625rem;
    overflow: hidden;
}
.address-modal-map img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.address-modal-form {
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}
.address-modal-title {
    font-size: 1.5rem;
    font-weight: 600;
}
.address-modal-subtitle {
    margin-top: -0.5rem;
}
.address-modal-select {
    position: relative;
}
.address-modal-select select {
    width: 100%;
    height: 3rem;
    padding: 0 3rem 0 1.5rem;
    border-radius: 0.65rem;
    border: none;
    background: #f2f2f2;
    color: #281e18;
    font-family: inherit;
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
}
.address-modal-select svg {
    position: absolute;
    top: 50%;
    right: 1.1rem;
    transform: translateY(-50%);
    color: rgba(30, 24, 20, 0.8);
    pointer-events: none;
}
.address-modal-input {
    width: 100%;
    height: 3rem;
    padding: 0 1.5rem;
    border-radius: 0.65rem;
    border: none;
    background: #f2f2f2;
    color: #1e1814;
    font-family: inherit;
}
.address-modal-input::placeholder {
    color: rgba(30, 24, 20, 0.8);
}
.address-modal-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}
.empty-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

/* ===== Учетная запись ===== */
.account-form {
    margin-top: 0.5rem;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}
.account-form-block {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.account-form-label {
    font-size: 1.25rem;
    font-weight: 600;
    color: #fff;
}
.form-input::placeholder {
    color: rgba(30, 24, 20, 0.5);
}
.form-input::placeholder .required-star,
.form-input[required]::placeholder {
    color: rgba(30, 24, 20, 0.5);
}

/* ===== Поддержка ===== */
.support-intro {
}
.support-intro-text {
    margin-top: 0.5rem;
}
.support-cta {
    position: relative;
    border-radius: 1.25rem;
    overflow: hidden;
    padding-top: 2rem;
    padding-bottom: 1.25rem;
    color: #fff;
}
.support-cta-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    opacity: 0.5;
}
.support-cta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        0deg,
        rgba(0, 0, 0, 0.5) 0%,
        rgba(0, 0, 0, 0.5) 100%
    );
    z-index: 1;
}
.support-cta-content {
    position: relative;
    z-index: 2;
    max-width: 35.5rem;
    margin: 0 auto;
    text-align: center;
}
.support-cta-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}
.support-cta-text {
    margin-bottom: 1.85rem;
}
.support-cta-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}
.support-cta-phone {
}
.support-cta-phone a {
    color: #fff;
    text-decoration: underline;
    text-underline-offset: 0.2rem;
}
.support-cta-phone a:hover {
    text-decoration: none;
    font-weight: 500;
}
.lil-title {
    font-size: 1.5rem;
    font-weight: 600;
}
/* ===== Certificates ===== */
.cert-slider-wrap {
    position: relative;
}
.cert-slider {
    overflow: hidden;
}
.cert-slide {
    display: none;
}
.cert-slide:first-child {
    display: block;
}
.cert-slider.slick-initialized .cert-slide {
    display: block;
}
.cert-slide img {
    width: 100%;
    height: 34rem;
    object-fit: cover;
    display: block;
    background: #fff;
}
.cert-slider-wrap .novinki-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
}
.cert-prev {
    left: 1rem;
}
.cert-next {
    right: 1rem;
}
.cert-links-row {
    margin-top: 2.5rem;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}
.cert-pdf-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.cert-pdf-link {
    font-size: 1.05rem;
    font-weight: 700;
    color: #db7134;
    text-decoration: underline;
    text-underline-offset: 0.2rem;
}
.cert-pdf-size {
    font-weight: 400;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
}
.story-inner {
    min-width: 0;
}
.cert-slider-wrap {
    min-width: 0;
}
.cert-slider {
    min-width: 0;
}
.certificates-section .novinki-arrow {
    border-color: #000;
    color: #000;
}
.certificates-section .novinki-arrow:hover {
    background: rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.modal .modal__block {
    overflow-y: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}
.modal .modal__block::-webkit-scrollbar {
    display: none;
}

/* ===== Auth modals ===== */
.auth-modal-block {
    width: 37.375rem;
    height: 90vh;
    text-align: left;
    padding-top: 5rem;
    padding: 4rem 3rem;
    background: white;
    color: #281e18;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow-y: auto;
}
.close {
    background: none;
    right: 1.65rem;
    top: 1.2rem;
}
.auth-modal-block .review-step-back {
    position: absolute;
    left: 2.85rem;
    top: 1.15rem;
}
.auth-choice-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.75rem;
}
.auth-form {
    display: flex !important;
    flex-direction: column;
    gap: 1rem;
}
.auth-agreement {
    margin-top: 2rem;
    text-align: center;
    font-size: 0.8rem;
    color: rgba(30, 24, 20, 0.6);
}
.auth-agreement a {
    color: rgba(30, 24, 20, 0.8);
    text-decoration: underline;
}
.auth-divider {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 1.15rem 0;
    font-size: 0.85rem;
    color: rgba(30, 24, 20, 0.4);
}
.auth-divider::before,
.auth-divider::after {
    content: "";
    flex: 1;
    height: 1px;
    background: rgba(30, 24, 20, 0.12);
}
.auth-social-row {
    display: flex;
    justify-content: center;
    gap: 1rem;
}
.auth-social-btn {
    width: 3.375rem;
    height: 3.375rem;
    border-radius: 50%;
    background: #f2f2f2;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.auth-social-btn .google {
    width: 1.875rem;
    height: 1.875rem;
}
.auth-social-btn .apple {
    width: 1.75rem;
    height: 2.25rem;
    margin-bottom: 0.25rem;
}
.auth-social-btn:hover {
    background: #f5f3f1;
}
.auth-password-field {
    position: relative;
}
.auth-password-field .address-modal-input {
    padding-right: 3rem;
}
.auth-password-toggle {
    position: absolute;
    top: 50%;
    right: 1rem;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: rgba(30, 24, 20, 0.5);
    cursor: pointer;
    display: flex;
}
.auth-password-toggle .eye-closed {
    display: none;
}
.auth-password-toggle.active .eye-open {
    display: none;
}
.auth-password-toggle.active .eye-closed {
    display: block;
}
.auth-field-row {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 1rem;
    margin-top: -0.4rem;
}
.auth-field-error {
    font-size: 0.85rem;
    color: #d0342c;
    display: none;
    margin-right: auto;
}
.auth-field-error.show {
    display: block;
}
.form-result {
    text-align: center;
    width: 100%;
    display: none;
    padding: 0.85rem 1rem;
    border-radius: 8px;
    border: 1px solid rgba(208, 52, 44, 0.18);
    background: #fff5f2;
    color: #b3261e;
    font-size: 0.9rem;
    line-height: 1.45;
    font-weight: 500;
    margin: 0.15rem 0 0.35rem;
    box-shadow: 0 0.55rem 1.2rem rgba(208, 52, 44, 0.08);
}
.form-result.show {
    display: block;
}
.form-result:empty {
    display: none;
}
.form-result p {
    margin: 0;
    color: inherit !important;
}
.auth-forgot-link {
    font-size: 0.9rem;
    color: #db7134;
    text-decoration: underline;
    text-underline-offset: 0.2rem;
}
.flex-column{
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.address-modal-input.error {
    border: 1px solid #d0342c;
}
.auth-hint {
    font-size: 0.85rem;
    color: rgba(30, 24, 20, 0.5);
    margin-top: -0.4rem;
}
.otp-block {
    display: inline-flex;
    flex-direction: column;
    gap: 0.85rem;
    margin: 0.5rem 0 1.75rem;
}
.otp-inputs {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}
.otp-input {
    width: 5.625rem;
    height: 7.5rem;
    text-align: center;
    font-size: 1.3rem;
    background: #f5f3f1;
    border: 1px solid transparent;
    border-radius: 0.6rem;
    color: #1e1814;
    font-family: inherit;
}
.otp-input.error {
    border-color: #d0342c;
}
.otp-footer {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 1rem;
}
.otp-footer .auth-field-error {
    margin-right: auto;
}
.otp-resend {
    background: none;
    border: none;
    color: #db7134;
    text-decoration: underline;
    text-underline-offset: 0.2rem;
    font-size: 0.85rem;
    cursor: pointer;
}
.otp-resend:disabled {
    color: rgba(30, 24, 20, 0.35);
    cursor: default;
    text-decoration: none;
}
.auth-success-modal .review-form-subtitle strong {
    font-weight: 600;
}
.auth-modal-block.last{
    justify-content: center;
    align-items: center;
}
.slick-disabled{
    pointer-events: none;
    opacity: 0.6;
}

.blog-post-section .content h1,
.blog-post-section .content h2,
.blog-post-section .content h3,
.blog-post-section .content h4,
.blog-post-section .content h5,
.blog-post-section .content h6{
    padding-top: 1rem;
}

.policy-block.itog *{
    padding-top: 0!important;
}

.chars_data{
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.chars_data_item{
    display: flex;
    justify-content: space-between;
    position: relative;
    border-bottom: 1px dashed rgba(255,255,255,0.5);
}
.chars_data_item span{
    background: #3a3330;
    margin-bottom: -3px;
    line-height: 1;
}
.chars_data_item span:first-child{
    font-weight: 700;
}
.chars_data_item span:last-child{

}

.no_img{
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.no_img:after{
    content: "Нет фото";
    opacity: 0.3;
}

.product_page_no_img{
    height: 31rem;
    background: #e8e8e8;
    /*border-radius: 20px;*/
    color: black;
}
.product-buy-row .modification_price{
    min-width: 10rem;
}
.modification_price:not(.active), .modification_image:not(.active){
    display: none;
}

.best-slider .slick-list, .novinki-slider .slick-list,
.best-slider .slick-track, .novinki-slider .slick-track{
    display: flex;
}
.best-slider .slick-slide > div, .novinki-slider .slick-slide > div{
    height: 100%;
}
.slick-slide .novinka-card{
    display: flex!important;
}
.form-result.success {
    border-color: rgba(53, 132, 92, 0.22);
    background: #f1fbf6;
    color: #24734c;
    box-shadow: 0 0.55rem 1.2rem rgba(53, 132, 92, 0.08);
}
.empty_cart p{
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
}
.cart-item-img .no_img{
    background: #a1a1a1;
    font-size: 0.8rem;
}
.address-yandex-map {
    width: 100%;
    height: 100%;
    min-height: 33.125rem;
    background: #f2f2f2;
}
.address-yandex-map iframe {
    width: 100%;
    height: 100%;
    min-height: inherit;
    border: 0;
    display: block;
}
.address-modal-map.map-unavailable {
    background: #f2f2f2;
}

.cart_success_box{
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.cart_success_box_title{
    font-weight: 500;
    text-transform: uppercase;
}
.order-product-thumb .no_img{
    font-size: 0.75rem;
}
.wow{
    visibility: hidden;
}