

/* Start:/bitrix/templates/FRESH/components/bitrix/menu/top_menu_inline/style.css?1777290682180*/
.top-menu_nav {
    display: flex;
    align-items: center;
    gap: var(--gap-s);
}

.top-menu_nav a {
    transition: 0.3s;
}

.top-menu_nav a:hover {
    color: var(--accent);
}
/* End */


/* Start:/bitrix/templates/FRESH/components/bitrix/sale.basket.basket.line/header_icon/style.css?1777290682514*/
.header-cart {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: inherit;
}

.header-cart__count {
    position: absolute;
    top: -6px;
    right: -8px;
    min-width: 16px;
    height: 16px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    line-height: 1;
    font-weight: 600;
    background: var(--black);
    color: var(--white);
}



/* End */


/* Start:/bitrix/templates/FRESH/components/bitrix/search.title/header_search_line/style.css?1777290682676*/
.header-search {
    width: 100%;
    max-width: 640px;
}

.header-search__form {
    width: 100%;
}

.header-search__field {
    display: flex;
    align-items: center;
    gap: 14px;
    border-bottom: 1px solid #1d1d1d;
}

.header-search__icon {
    flex: 0 0 auto;
    display: inline-flex;
    color: #8e8e8e;
}

.header-search__input {
    width: 100%;
    border: 0;
    outline: 0;
    background: transparent;
    padding: 0;
    height: 32px;
    font-size: 16px;
    color: #1f1f1f;
}

.header-search__input::placeholder {
    color: #9f9f9f;
    opacity: 1;
}

.header-search__input:focus {
    outline: 0;
    border: 0;
}
/* End */


/* Start:/bitrix/templates/FRESH/styles.css?177982374876918*/
@import url("/bitrix/templates/FRESH/assets/css/fonts.css");

:root {
    --accent: #76b900;
    --black: #111111;
    --white: #ffffff;
    --white-opacity: #ffffff9e;
    --milk: #f8f8f8;
    --grey: #2a2a2a;
    --grey2: #666666;
    --text-secondary: #747474;
    --text-secondary-light: #848484;
    --border-color: #e0e0e0;
    --border-radius: 1px;
    --gap-m: 24px;
    --gap-s: 18px;
    --gap-xs: 4px;
    --dm-sans: "DM Sans";
    --danger: #dc3412;
    --cormorant: "Cormorant Garamond", serif;
    --manrope: "Manrope", sans-serif;
}

/* BASE */

body {
    background: var(--white);
    color: var(--black);
    padding: 0;
    margin: 0;
    position: relative;
    font-family: var(--manrope);
    letter-spacing: 0.2px;
     padding-top: var(--site-header-full-height, 118px);
}

* a {
    text-decoration: none;
    color: inherit;
}

* a:hover,
* a:focus {
    text-decoration: none;
    color: inherit;
}

.contain {
    width: 1180px;
    margin: 0 auto;
}

.bx-livechat-body {
    background-image: none !important;
    background-color: var(--milk) !important;
}

.bx-livechat-copyright {
    display: none !important;
}

.link {
    position: relative;
    display: inline-block;
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 100%;
    height: 1px;
    background-color: currentColor;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.link:hover {
    color: var(--accent);
}

.link:hover::after {
    transform: scaleX(1);
}

.p-green {
    color: var(--accent);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 2px 0 0 2px;
}

.flex-text {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

input {
    background: var(--milk);
    padding: 14px 20px;
    width: calc(100% - 40px);
    font-size: 14px;
    font-family: var(--manrope);
    color: #111111;
    outline: none;
    border: 1px solid var(--border-color);
}

input:focus {
    border: 1px solid var(--black);
}

input::placeholder {
    color: var(--text-secondary);
}

.title-block {
    margin: 0 0 6px;
    font-family: "Cormorant Garamond", serif;
    font-size: 48px;
    line-height: 0.95;
    font-weight: 300;
    color: var(--black);
    padding-bottom: 40px;
    border-bottom: 1px solid var(--border-color);
}

/* BUTTONS */

button {
    border: 0;
    outline: 0;
    background: inherit;
}

button:focus {
    outline: none;
    border: inherit;
}

.btn-main {
    font-size: 12px;
    text-transform: uppercase;
    font-family: var(--manrope);
    padding: 14px 28px;
    border-radius: var(--border-radius);
    transition: 0.3s;
    cursor: pointer;
    width: fit-content;
    display: flex;
    align-items: center;
    gap: var(--gap-xs);
    letter-spacing: 1px;
}

.btn-main.btn-dark {
    background: var(--black);
    color: var(--white);
}

.btn-main.btn-dark:hover {
    background: var(--grey);
}

.btn-main.btn-light {
    background: var(--white);
    color: var(--black);
    box-shadow:
        0 2px 6px rgba(0, 0, 0, 0.04),
        0 10px 24px rgba(0, 0, 0, 0.06);
}

.btn-main.btn-light:hover {
    color: var(--white);
    background: var(--black);
}

.btn-main.btn-outline {
    background: transparent;
    border: 1px solid var(--black);
    color: var(--black);
}

.btn-main.btn-outline:hover {
    color: var(--white);
    background: var(--black);
}

.btn-main.btn-ghost {
    font-size: 11px;
    color: var(--text-secondary);
    border: 1px solid var(--text-secondary);
    background: transparent;
}

.btn-main.btn-ghost:hover {
    border-color: var(--black);
    color: var(--black);
}

.btn-main.btn-banner {
    border: 1px solid var(--white-opacity);
    color: var(--white);
    background: transparent;
}

.btn-main.btn-banner:hover {
    color: var(--black);
    background: var(--white);
}

.flex-column {
    display: flex;
    flex-direction: column;
}

/* HEADER */

header {
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid var(--border-color);
}

header .top-menu {
    background: var(--milk);
    width: 100%;
    height: 46px;
    display: flex;
    align-items: center;
    font-size: 14px;
}

header .top-menu .contain {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header .top-menu_contact {
    display: flex;
    align-items: center;
    gap: var(--gap-s);
}

.top-menu_nav {
    display: flex;
    align-items: center;
    gap: var(--gap-s);
}

.header .header-nav_icons a:hover {
    color: var(--accent);
}

header .top-menu_geo {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0;
    border: 0;
    background: transparent;
    color: inherit;
    cursor: pointer;
}

header .top-menu_phone {
    color: var(--text-secondary);
}

.header {
    background: var(--white);
    width: 100%;
    height: 72px;
    display: flex;
    align-items: center;
    position: relative;
    top: auto;
}

.header .contain {
    align-items: center;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
}

.header .header-logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.header .header-logo img {
    height: 60px;
}

.header .header-nav {
    font-size: 14px;
    text-transform: uppercase;
    display: flex;
    gap: var(--gap-m);
}

.header .header-nav-end {
    justify-content: end;
}

.header-nav_icons {
    display: flex;
    gap: var(--gap-s);
    align-items: center;
}

.header-nav .btn-main {
    padding: 8px 18px;
}

.header-nav a {
    display: flex;
    align-items: center;
    gap: var(--gap-xs);
    transition: 0.3s;
}

.new-mark {
    background: var(--accent);
    color: var(--white);
    padding: 2px 6px;
    font-size: 8px;
    text-transform: uppercase;
    border-radius: 4px;
}

.header-search-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
    color: inherit;
}

.header-search-panel {
    position: absolute;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    z-index: 99;
    background: var(--milk);
    border-top: 1px solid transparent;
    transition:
        max-height 0.28s ease,
        border-color 0.28s ease;
}

.header-search-panel.is-open {
    max-height: 140px;
    border-top-color: var(--border-color);
}

.header-search-panel__inner {
    padding: 10px 0;
}

.favorites-icon-header {
    position: relative;
}

.favorite-count {
    position: absolute;
    top: -6px;
    right: -8px;
    min-width: 16px;
    height: 16px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    line-height: 1;
    font-weight: 600;
    background: var(--black);
    color: var(--white);
}

.header-catalog-dropdown-wrap {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.header-catalog-link {
    position: relative;
    z-index: 2;
}

.header-catalog-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1001;
    width: 600px;
    max-width: calc(100vw - 40px);
    padding-top: 18px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    pointer-events: none;
    transition:
        opacity 0.18s ease,
        visibility 0.18s ease,
        transform 0.18s ease;
}

.header-catalog-dropdown-wrap:hover .header-catalog-dropdown,
.header-catalog-dropdown-wrap:focus-within .header-catalog-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.header-catalog-dropdown__inner {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    padding: 20px;
    background: var(--white);
    border: 1px solid rgba(17, 17, 17, 0.08);
    box-shadow: 0px 12px 20px rgba(0, 0, 0, 0.1);
}

.header-catalog-dropdown__group {
    min-width: 0;
}

.header-catalog-dropdown__title {
    display: inline-block;
    font-size: 12px;
    line-height: 1.25;
    font-weight: 500;
    color: var(--black);
    text-decoration: none;
}

.header-catalog-dropdown__title:hover {
    color: var(--accent, var(--black));
}

.header-catalog-dropdown__list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.header-catalog-dropdown__list a {
    display: inline-block;
    font-size: 14px;
    line-height: 1.35;
    color: rgba(17, 17, 17, 0.66);
    text-decoration: none;
    transition: color 0.16s ease;
}

.header-catalog-dropdown__list a:hover {
    color: var(--black);
}

.header-catalog-dropdown__footer {
    padding: 12px 20px;
    background: var(--milk);
    border: 1px solid rgba(17, 17, 17, 0.08);
    border-top: 0;
    box-shadow: 0px 12px 20px rgba(0, 0, 0, 0.1);
}

.header-catalog-dropdown__footer a {
    font-size: 12px;
    line-height: 1.3;
    font-weight: 500;
    color: var(--black);
    text-decoration: none;
}

.header-catalog-dropdown__footer a:hover {
    text-decoration: underline;
}

/* STICKY HEADER */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 2000;
    background: var(--white);
    transition: box-shadow 0.25s ease;
}

.site-header.is-sticky {
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
}

.site-header .header-search-panel {
    left: 0;
    top: 100%;
    z-index: 999;
}

.site-header .top-menu {
    height: 46px;
    overflow: hidden;
    opacity: 1;
    transition:
        height 0.25s ease,
        opacity 0.2s ease;
}

.site-header.is-compact .top-menu {
    height: 0;
    opacity: 0;
    pointer-events: none;
}

.site-header .header {
    transition: height 0.25s ease;
}

.site-header.is-compact .header {
    height: 70px;
}

.site-header .header-logo img {
    transition: height 0.25s ease;
}

.site-header.is-compact .header-logo img {
    height: 55px;
}

/* HEADER MOBILE */

.header-mobile-hamb .line {
    display: block;
    width: 100%;
    height: 1px;
    background: currentColor;
    transition:
        transform 0.25s ease,
        opacity 0.25s ease;
}

.header-mobile-hamb {
    display: none;
    width: 24px;
    height: 19px;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    z-index: 3100;
}

.header-mobile-hamb.is-open .line:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.header-mobile-hamb.is-open .line:nth-child(2) {
    opacity: 0;
}

.header-mobile-hamb.is-open .line:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

.mobile-menu {
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2500;

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transition:
        opacity 0.25s ease,
        visibility 0.25s ease;
}

.mobile-menu.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.mobile-menu__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
}

.mobile-menu__panel {
    position: absolute;
    top: 0;
    right: 0;

    width: min(360px, 95vw);
    height: 100%;

    background: var(--white);
    padding: 22px;
    overflow-y: auto;

    transform: translateX(100%);
    transition: transform 0.28s ease;
}

.mobile-menu.is-open .mobile-menu__panel {
    transform: translateX(0);
}

.mobile-menu__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 28px;
}

.mobile-menu__title {
    font-size: 18px;
    font-weight: 600;
}

.mobile-menu__nav {
    display: flex;
    flex-direction: column;
    margin-bottom: 28px;
}

.mobile-menu__nav a {
    display: flex;
    align-items: center;
    min-height: 42px;
    border-bottom: 1px solid var(--border-color);
    font-size: 14px;
    text-transform: uppercase;
}

.mobile-menu__contacts {
    display: flex;
    flex-direction: column;
    gap: 14px;
    color: var(--text-secondary);
}

.mobile-menu__city {
    padding: 0;
    border: 0;
    background: transparent;
    text-align: left;
    color: inherit;
    cursor: pointer;
}

body.mobile-menu-open {
    overflow: hidden;
}

/* FOOTER */

footer {
    background: var(--milk);
}

footer a {
    transition: 0.3s;
}

footer .contain.footer-contain {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--gap-m);
    padding: 72px 0 54px;
}

.footer-logo img {
    height: 64px;
}

.footer-logo {
    margin-bottom: 18px;
}

.footer-col {
    display: flex;
    color: var(--grey);
    flex-direction: column;
    justify-content: space-between;
}

.footer-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-list h3 {
    font-size: 13px;
    text-transform: uppercase;
    color: var(--black);
}

.footer-list a {
    font-size: 14px;
    transition: 0.3s;
}

.footer-list a:hover,
.footer-social a:hover,
.footer-bottom-menu a:hover {
    color: var(--accent);
}

.footer-social {
    display: flex;
    align-items: center;
    gap: var(--gap-xs);
    margin-top: 5px;
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    width: 100%;
}

.footer-bottom .contain {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--grey);
    font-size: 12px;
    padding: 20px 0;
}

.footer-pay-list {
    display: flex;
    gap: var(--gap-xs);
}

.footer-pay-list .pay-item {
    padding: 2px 6px 3px;
    border-radius: 7px;
    border: 1px solid var(--text-secondary);
}

.footer-bottom-menu {
    display: flex;
    gap: var(--gap-s);
}

/* BOTTOM MENU MOBILE */

.bottom-mobile-menu {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--white);
    height: 60px;
    box-shadow: 1px -1px 5px rgba(0, 0, 0, 0.08);
    padding: 10px 0;
    z-index: 20;
}

.bottom-mobile-menu .contain {
    display: grid;
    align-items: end;
    grid-template-columns: repeat(5, 1fr);
}

.bottom-mobile-menu a {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-direction: column;
    font-size: 14px;
    transition: 0.3s;
}

.bottom-mobile-menu a svg {
    stroke-width: 1;
}

.bottom-mobile-menu a:hover {
    color: var(--accent);
}

/* HOME */

.banner-home {
    position: relative;
    height: 610px;
    width: 100%;
    background-image: url("/bitrix/templates/FRESH/img/ban2.JPG");
    background-size: cover;
    background-position: center 36%;
    background-repeat: no-repeat;
    overflow: hidden;
    color: var(--white);
}

.banner-home::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(0, 0, 0, 0.48) 0%,
        rgba(0, 0, 0, 0.28) 28%,
        rgba(0, 0, 0, 0.1) 52%,
        rgba(0, 0, 0, 0) 100%
    );
    z-index: 1;
}

.banner-home > * {
    position: relative;
    z-index: 2;
}

.banner-home_quality {
    background: var(--milk);
    padding: 16px 32px;
    position: absolute;
    bottom: 0;
    right: 0;
    width: fit-content;
    color: var(--black);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border: var(--border-color);
    gap: var(--gap-s);
}

.quality-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    text-align: center;
}

.quality-col h3 {
    font-family: var(--cormorant);
    font-size: 22px;
    margin: 0;
    font-weight: 400;
}

.quality-col p {
    text-transform: uppercase;
    color: var(--text-secondary);
    font-size: 10px;
    letter-spacing: 1px;
    margin: 0;
}

.link-next {
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: var(--gap-xs);
}

.link-next svg {
    padding-right: 2px;
    transition: 0.3s;
}

.link-next:hover {
    color: var(--black);
}

.link-next:hover svg {
    padding-right: 0;
    padding-left: 2px;
}

/* home-collection_banner */

.home-collection_banner {
    background: var(--milk);
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    height: 700px;
}

.home-collection_banner-img {
    position: relative;
}

.home-collection_banner-img img {
    width: 100%;
    height: 700px;
    object-fit: cover;
    position: relative;
    z-index: 1;
    object-position: center 70%;
}

.home-collection_banner-img .banner-badge {
    background: var(--milk);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 10px 16px;
    position: absolute;
    left: 30px;
    bottom: 30px;
    z-index: 2;
    box-shadow:
        0 2px 6px rgba(0, 0, 0, 0.04),
        0 10px 24px rgba(0, 0, 0, 0.06);
}

.home-collection_banner-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 16px;
    padding: 64px;
}

.h3 {
    font-family: var(--cormorant);
    font-weight: 300;
    font-size: 42px;
    margin: 0;
}

.home-collection_banner-content p {
    font-size: 14px;
    font-weight: 300;
    line-height: 1.85;
    color: var(--grey2);
    margin: 0;
    max-width: 400px;
}

.home-collection_banner-content .mini-items-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--gap-s);
    margin: 34px 0;
}

/* MINI ITEM */

.mini-item {
    display: flex;
    gap: var(--gap-s);
}

.mini-item .mini-item-img {
    height: 76px;
    width: 76px;
    overflow: hidden;
}

.mini-item img {
    width: 100%;
    height: auto;
    object-fit: cover;
    aspect-ratio: 1 / 1;
    transition: 0.3s;
}

.mini-item-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.mini-item .name,
.mini-item .price {
    font-size: 14px;
    transition: 0.3s;
}

.mini-item .prop {
    color: var(--text-secondary-light);
    font-size: 12px;
}

.mini-item:hover .name {
    color: var(--accent);
}

.mini-item:hover img {
    transform: scale(1.04);
}

/* NEWS HOME */

.home-news.contain {
    padding: 60px 0;
}

.home-news.contain .btn-ghost {
    margin: 0 auto;
    font-size: 12px;
}

/* catalog-tabs */

.catalog-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: var(--gap-s);
    align-items: center;
}

.catalog-tabs .catalog-tab {
    color: var(--text-secondary);
    border: 1px solid var(--text-secondary);
    transition: 0.3s;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 8px 16px;
}

.catalog-tabs .catalog-tab:hover {
    color: var(--black);
    border-color: var(--black);
}

.catalog-tabs .catalog-tab.active {
    background: var(--black);
    color: var(--white);
    border-color: var(--black);
}

/* catalog grid */

.product-grid-items {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--gap-m);
    margin: 30px 0;
}

/* philosophy banner */

.philosophy-banner {
    position: relative;
    background-image: url("/bitrix/templates/FRESH/img/banner5.jpeg");
    width: 100%;
    height: 480px;
    background-size: cover;
    background-position: center 35%;
    background-repeat: no-repeat;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.philosophy-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.386);
    z-index: 1;
}

.philosophy-banner__content {
    position: relative;
    z-index: 2;
    color: var(--white);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--gap-m);
}

.philosophy-banner__content span {
    font-size: 12px;
    color: var(--white-opacity);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.philosophy-banner__content h1 {
    font-size: 60px;
    font-weight: 300;
    line-height: 1.1;
    margin: 0;
    font-family: var(--cormorant);
    text-align: center;
}

.philosophy-banner__content p {
    margin: 0;
    color: var(--white-opacity);
    font-size: 15px;
}

.philosophy-banner__content .btn-main {
    margin-top: 20px;
}

/* bestsellers */

.home-bestsellers {
    background: var(--milk);
    padding: 100px 0;
    width: 100%;
}

.bestsellers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--gap-m);
    margin-top: 40px;
}
.best-item {
    background: var(--white);
    width: 100%;
    display: flex;
    flex-direction: column;
}

.best-item_img {
    width: 100%;
    overflow: hidden;
    position: relative;
    aspect-ratio: 4 / 3;
}

.best-item_img::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.056);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
    pointer-events: none;
}

.best-item_img .badge {
    background: var(--milk);
    border: 1px solid var(--text-secondary-light);
    color: var(--text-secondary);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 6px 10px;
    z-index: 2;
}

.best-item_img img {
    width: 100%;
    aspect-ratio: 4 / 3;
    height: auto;
    object-fit: contain;
    object-position: center;
    display: block;
    transition: transform 0.3s ease;
}

.best-item .flex-text {
    padding: 20px;
    background: var(--white);
}

.best-item .flex-text span {
    font-size: 11px;
    text-transform: uppercase;
    color: var(--text-secondary-light);
    letter-spacing: 1.2px;
}

.best-item .flex-text p {
    font-size: 16px;
    margin: 4px 0 0;
    font-weight: 400;
    transition: 0.3s;
}

.best-item_price {
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: 0.3s;
    white-space: nowrap;
}

.best-item_price svg {
    padding-right: 2px;
    color: var(--text-secondary-light);
    transition: 0.3s;
}

.best-item:hover .flex-text p {
    color: var(--accent);
}

.best-item:hover .best-item_price {
    gap: 12px;
}

.best-item:hover .best-item_price svg {
    color: var(--accent);
    padding-right: 0;
    transform: scale(1.1);
}

.best-item:hover .best-item_img img {
    transform: scale(1.02);
}

.best-item:hover .best-item_img::before {
    opacity: 1;
}

/* advant */

.advant {
    width: 100%;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    padding: 40px 0;
}

.advant .contain {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--gap-m);
}

.advant-item {
    text-align: center;
    font-style: italic;
    font-family: var(--cormorant);
}

.advant-item p {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--grey);
    margin: 0 0 8px;
    font-weight: 500;
    font-family: var(--manrope);
    font-style: normal;
}

.advant-item span {
    font-size: 16px;
    font-family: var(--cormorant);
    color: var(--text-secondary);
    font-style: italic;
}

/* home-form */

.home-form-block {
    padding: 100px 0 120px;
}

.home-form-block .contain {
    width: 600px;
    text-align: center;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    gap: 16px;
}

.home-form-block p {
    color: var(--text-secondary);
    font-size: 14px;
    margin: 0;
}

.home-form-block span {
    font-size: 12px;
    color: var(--text-secondary-light);
}

.subscribe-form {
    display: flex;
    align-items: center;
    width: 100%;
    margin-top: 20px;
}

.subscribe-form .btn-main.btn-dark {
    padding: 16px 28px;
}

.favorites-page {
    padding: 32px 0 48px;
}

.favorites-page__title {
    margin: 0 0 24px;
}

.favorites-page__empty,
.favorites-page__error,
.favorites-page__loader {
    padding: 24px;
    border: 1px solid var(--border-color);
    background: var(--white);
}

.favorites-page__content .catalog-row,
.favorites-page__content .mobile24-row2cards {
    margin: 0;
}

[data-role="favorite-toggle"] {
    transition:
        transform 0.2s ease,
        color 0.2s ease;
}

[data-role="favorite-toggle"].is-favorite-active {
    color: #e74c3c;
}

[data-role="favorite-toggle"]:active {
    transform: scale(1.2);
}

[data-role="favorite-toggle"].is-favorite-active svg {
    animation: favPop 0.25s ease;
}

/*Программа лояльности*/

.loyalty-page {
    width: 100%;
    overflow-x: hidden;
    color: var(--black);
    background: var(--white);
}

.loyalty-hero {
    padding: 24px 0 50px;
    background: var(--white);
}

.loyalty-hero__title {
    margin: 0 0 22px;
    font-family: var(--cormorant);
    font-size: 40px;
    line-height: 1.02;
    font-weight: 300;
    color: var(--black);
}

.loyalty-hero__text {
    margin: 0;
    font-size: 14px;
    line-height: 1.7;
    color: var(--grey2);
}

.loyalty-stats {
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    background: #fafafa;
}

.loyalty-stats__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.loyalty-stat {
    padding: 40px 24px;
}

.loyalty-stat__value {
    margin-bottom: 10px;
    font-family: var(--cormorant);
    font-size: 24px;
    line-height: 1;
    font-weight: 300;
    color: var(--black);
}

.loyalty-stat__label {
    font-size: 11px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-secondary-light);
}

.loyalty-how {
    padding: 50px 0;
}

.loyalty-section-label {
    margin-bottom: 12px;
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-secondary-light);
}

.loyalty-section-title {
    margin: 0;
    font-family: var(--cormorant);
    font-size: 28px;
    font-weight: 300;
    color: var(--black);
}

.loyalty-steps {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 60px;
    margin-top: 50px;
}

.loyalty-step {
    display: grid;
    grid-template-columns: 40px minmax(0, 1fr);
    gap: 20px;
    align-items: start;
    position: relative;
}

.loyalty-step:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 21px;
    left: 42px;
    right: -42px;
    height: 1px;
    background: var(--milk);
    transform: translateX(24px);
}

.loyalty-step__number {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid var(--text-secondary-light);
    background: var(--white);
    font-size: 11px;
    color: var(--black);
}

.loyalty-step__content {
    position: relative;
    z-index: 2;
    background: var(--white);
}

.loyalty-step__content h3 {
    margin: 0 0 8px;
    font-size: 14px;
    line-height: 1.35;
    font-weight: 500;
    color: var(--black);
}

.loyalty-step__content p {
    margin: 0;
    font-size: 13px;
    line-height: 1.6;
    color: var(--grey2);
}

.loyalty-info {
    padding: 20px 0 120px;
}

.loyalty-info__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.82fr);
    gap: 100px;
    align-items: start;
}

.loyalty-rules {
    display: grid;
    gap: 28px;
    margin-top: 48px;
}

.loyalty-rule {
    display: grid;
    grid-template-columns: 36px minmax(0, 1fr);
    gap: 20px;
    align-items: start;
}

.loyalty-rule__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border: 1px solid var(--grey2);
    color: var(--black);
}

.loyalty-rule h3 {
    margin: 0 0 8px;
    font-size: 15px;
    line-height: 1.35;
    font-weight: 500;
    color: var(--black);
}

.loyalty-rule p {
    margin: 0;
    font-size: 13px;
    line-height: 1.65;
    color: var(--grey2);
}

.loyalty-faq__list {
    margin-top: 48px;
    border-top: 1px solid #ececec;
}

.loyalty-faq__item {
    border-bottom: 1px solid #ececec;
}

.loyalty-faq__item summary {
    position: relative;
    display: block;
    padding: 16px 28px 16px 0;
    font-size: 13px;
    font-weight: 400;
    color: var(--black);
    cursor: pointer;
    list-style: none;
    transition: 0.3s;
}

.loyalty-faq__item summary:hover {
    color: var(--accent);
}

.loyalty-faq__item summary::-webkit-details-marker {
    display: none;
}

.loyalty-faq__item summary::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 4px;
    width: 14px;
    height: 14px;

    background-color: #aaa;

    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'%3E%3C/path%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'%3E%3C/path%3E%3C/svg%3E");

    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;

    -webkit-mask-position: center;
    mask-position: center;

    -webkit-mask-size: contain;
    mask-size: contain;

    transform: translateY(-50%) rotate(0deg);
    transition:
        transform 0.2s ease,
        background-color 0.2s ease;
}

.loyalty-faq__item[open] summary::after {
    transform: translateY(-50%) rotate(180deg);
}

.loyalty-faq__item div {
    padding: 0 40px 20px 0;
    font-size: 12px;
    line-height: 1.65;
    color: #737a80;
}

.loyalty-tiers-section {
    background: var(--milk);
    padding: 60px 0;
}

.loyalty-tiers {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 30px;
}

.loyalty-tier-card__head h3 {
    font-size: 22px;
    font-family: var(--cormorant);
    font-weight: 400;
    margin: 0 0 6px;
}

.loyalty-tier-card {
    position: relative;
    padding: 32px;
    background: var(--white);
    border: 1px solid var(--border-color);
    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease,
        transform 0.2s ease;
}

.loyalty-tier-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.06);
}

.loyalty-tier-card--popular {
    border-color: #d9ad52;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.05);
}

.loyalty-tier-card--premium {
    border-color: var(--accent);
}

.loyalty-tier-card__badge {
    display: inline-flex;
    align-items: center;
    margin-bottom: 16px;
    padding: 6px 12px;
    background: var(--accent);
    color: var(--white);
    font-size: 9px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.loyalty-tier-card__head {
    display: flex;
    align-items: center;
    gap: 10px;
}

.loyalty-tier-card__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: block;
}

.loyalty-tier-card__dot--silver {
    background: #bfc2c5;
}

.loyalty-tier-card__dot--gold {
    background: #d9ad52;
}

.loyalty-tier-card__dot--green {
    background: var(--accent);
}

.loyalty-tier-card__sum {
    color: var(--text-secondary-light);
    font-size: 12px;
    line-height: 1.45;
    margin: 0 0 24px 18px;
}

.loyalty-tier-card__divider {
    width: 100%;
    height: 1px;
    background: var(--border-color);
    margin-bottom: 24px;
}

.loyalty-tier-card__rate {
    margin-bottom: 24px;
    color: var(--black);
    font-size: 14px;
    line-height: 1.4;
}

.loyalty-tier-card__list {
    margin: 18px 0 0;
    padding: 0;
    list-style: none;
}

.loyalty-tier-card__list li {
    position: relative;
    margin-bottom: 10px;
    padding-left: 16px;
    color: #555555;
    font-size: 12px;
    line-height: 1.45;
}

.loyalty-tier-card__list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 9px;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #76b900;
}

.loyalty-tier-card__list li:last-child {
    margin-bottom: 0;
}

@keyframes favPop {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.3);
    }
    100% {
        transform: scale(1);
    }
}

/* подарочные карты */

.gift-card-hero {
    padding: 4px 0 40px;
    border-bottom: 1px solid var(--border-color);
}

.gift-card-hero__title {
    margin: 0 0 8px;
    font-family: var(--cormorant);
    font-size: 38px;
    line-height: 1.04;
    font-weight: 300;
}

.gift-card-hero__text {
    max-width: 50%;
    margin: 0;
    font-size: 13px;
    line-height: 1.6;
    color: var(--text-secondary);
}

.gift-card-constructor {
    padding: 40px 0 80px;
}

.gift-card-constructor__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(420px, 0.9fr);
    gap: 40px;
    align-items: start;
}

.gift-card-label {
    margin-bottom: 10px;
    font-size: 11px;
    line-height: 1.4;
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-secondary-light);
}

.gift-card-note {
    max-width: 520px;
    margin-top: 20px;
    font-size: 12px;
    line-height: 1.65;
    color: var(--text-secondary);
}

.gift-card-form {
    width: 100%;
}

.gift-card-amounts {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.gift-card-amount {
    height: 45px;
    border: 1px solid var(--border-color);
    background: var(--white);
    color: var(--black);
    font-size: 14px;
    line-height: 1;
    cursor: pointer;
    transition:
        border-color 0.2s ease,
        background-color 0.2s ease,
        color 0.2s ease;
}

.gift-card-amount:hover {
    border-color: var(--black);
}

.gift-card-amount.is-active {
    border-color: var(--black);
    background: var(--black);
    color: var(--white);
}

.gift-card-custom {
    margin-top: 14px;
}

.gift-card-custom input,
.gift-card-field input,
.gift-card-field textarea {
    display: block;
    width: calc(100% - 36px);
    border: 1px solid var(--border-color);
    background: var(--white);
    color: var(--black);
    font-size: 14px;
    outline: none;
    transition: border-color 0.2s ease;
}

.gift-card-custom input {
    height: 45px;
    padding: 0 18px;
}

.gift-card-field input {
    height: 45px;
    padding: 0 18px;
}

.gift-card-field textarea {
    min-height: 96px;
    padding: 16px 18px;
    resize: vertical;
    font-family: var(--manrope);
}

.gift-card-custom input:focus,
.gift-card-field input:focus,
.gift-card-field textarea:focus {
    border-color: var(--black);
}

.gift-card-help {
    margin-top: 10px;
    font-size: 12px;
    line-height: 1.5;
    color: var(--text-secondary-light);
}

.gift-card-field {
    display: block;
    margin-bottom: 16px;
}

.gift-card-field span {
    display: block;
    margin-bottom: 10px;
    font-size: 11px;
    line-height: 1.4;
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-secondary-light);
}

.gift-card-summary {
    margin-top: 20px;
    padding: 18px 18px 0px;
    border: 1px solid var(--border-color);
    background: var(--milk);
}

.gift-card-summary__row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding-bottom: 15px;
    margin-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
    font-size: 11px;
    line-height: 1.4;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.gift-card-summary__row:last-child {
    border-bottom: 0;
    margin-bottom: 0;
}

.gift-card-summary__row strong {
    font-size: 13px;
    font-weight: 400;
    color: var(--black);
    text-transform: none;
    letter-spacing: 0;
    white-space: nowrap;
}

.gift-card-submit {
    width: 100%;
    height: 45px;
    margin-top: 20px;
    border: 1px solid var(--black);
    background: var(--black);
    color: var(--white);
    font-size: 11px;
    line-height: 1;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    transition:
        background-color 0.2s ease,
        color 0.2s ease,
        opacity 0.2s ease;
}

.gift-card-submit:hover {
    background: var(--white);
    color: var(--black);
}

.gift-card-submit:disabled {
    opacity: 0.65;
    cursor: default;
}

.gift-card-bottom-note {
    margin-top: 10px;
    text-align: center;
    font-size: 11px;
    line-height: 1.55;
    color: var(--text-secondary-light);
}

.gift-card-error {
    margin-top: 18px;
    padding: 13px 15px;
    border: 1px solid #e7b6b6;
    background: #fff4f4;
    color: #9d2f2f;
    font-size: 14px;
    line-height: 1.5;
}

.gift-card-builder {
    margin-top: 30px;
}

.gift-card-builder__section {
    margin-bottom: 30px;
}

.gift-card-builder__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 18px;
    border-bottom: 1px solid var(--border-color);
}

.gift-card-builder__value {
    margin-bottom: 24px;
    font-size: 14px;
    color: #333;
}

.gift-card-preview {
    position: relative;
    overflow: hidden;
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 1px solid #ece8df;
    transition:
        background-color 0.2s ease,
        color 0.2s ease;
    aspect-ratio: 5 / 3;
    border-radius: 5px;
}

.gift-card-preview__pattern {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
    opacity: 0.78;
}

.gift-card-preview__top,
.gift-card-preview__bottom,
.gift-card-preview__amount {
    position: relative;
    z-index: 2;
}

.gift-card-preview__top,
.gift-card-preview__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    font-size: 11px;
    line-height: 1.2;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.gift-card-preview__brand img {
    display: block;
    max-width: 150px;
    max-height: 42px;
    object-fit: contain;
}

.gift-card-preview__type {
    text-align: right;
}

.gift-card-preview__amount {
    font-family: var(--cormorant);
    font-size: 60px;
    line-height: 1;
    font-weight: 300;
}

.gift-card-color-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 14px;
}

.gift-card-color {
    position: relative;
    display: block;
    width: 100%;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
    text-align: center;
}

.gift-card-color__box {
    display: block;
    aspect-ratio: 1 / 1;
    background: var(--gc-color);
    border: 1px solid var(--border-color);
    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.gift-card-color.is-selected .gift-card-color__box {
    border: 2px solid var(--accent);
}

.gift-card-color__check {
    position: absolute;
    right: 4px;
    top: calc(100% - 42px);
    display: none;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
    background: var(--accent);
    line-height: 1;
}

.gift-card-color.is-selected .gift-card-color__check {
    display: flex;
}

.gift-card-color__name {
    display: block;
    margin-top: 10px;
    font-size: 10px;
    line-height: 1.2;
    letter-spacing: 0.08em;
    color: var(--text-secondary-light);
}

.gift-card-color.is-selected .gift-card-color__name {
    color: var(--black);
}

.gift-card-pattern-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.gift-card-pattern {
    position: relative;
    display: block;
    padding: 0;
    border: 1px solid var(--border-color);
    background: var(--white);
    cursor: pointer;
    text-align: center;
    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.gift-card-pattern.is-selected {
    border: 2px solid var(--accent);
}

.gift-card-pattern__preview {
    display: block;
    aspect-ratio: 1.7 / 1;
    background: #fafafa;
    overflow: hidden;
}

.gift-card-pattern__preview img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
}

.gift-card-pattern__name {
    display: block;
    padding: 10px;
    border-top: 1px solid var(--border-color);
    font-size: 10px;
    line-height: 1;
    letter-spacing: 0.08em;
    color: var(--text-secondary-light);
}

.gift-card-pattern.is-selected .gift-card-pattern__name {
    color: var(--black);
}

.gift-card-pattern__check {
    position: absolute;
    top: 4px;
    right: 4px;
    display: none;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
    background: var(--accent);
    z-index: 3;
}

.gift-card-pattern.is-selected .gift-card-pattern__check {
    display: flex;
}

/* 404 */

.premium-404 {
    min-height: calc(100vh - 160px);
    padding: 20px 20px 110px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.premium-404__inner {
    width: 100%;
    max-width: 760px;
    margin: 0 auto;
}

.premium-404__decor {
    position: relative;
    width: 190px;
    height: 190px;
    margin: 0 auto 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.premium-404__dot {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--accent);
    transform: translate(-50%, -50%);
}

svg.absolute {
    position: absolute;
}

.premium-404__code {
    margin-bottom: 14px;
    font-family: var(--cormorant);
    font-size: clamp(72px, 14vw, 140px);
    line-height: 0.9;
    font-weight: 300;
}

.premium-404__title {
    margin: 0 0 26px;
    font-family: var(--cormorant);
    font-size: clamp(20px, 3vw, 28px);
    line-height: 1.2;
    font-weight: 300;
}

.premium-404__subtitle {
    margin-bottom: 18px;
    font-size: 14px;
    line-height: 1.5;
    color: var(--grey2);
}

.premium-404__text {
    margin-bottom: 24px;
    font-size: 12px;
    line-height: 1.65;
    color: var(--text-secondary-light);
}

.premium-404__buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.premium-404__btn-grid {
    width: 13px;
    height: 13px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2px;
}

/* ABOUT */

.product-info-tabs {
    width: 100%;
    background: var(--white);
    border-bottom: 1px solid var(--border-color);
}

.product-info-tabs__nav {
    display: flex;
    align-items: stretch;
    gap: 0;
    border-bottom: 1px solid var(--border-color);
}

.product-info-tabs__tab {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 50px;
    padding: 0 24px;
    background: transparent;
    border: 0;
    border-right: 1px solid transparent;
    color: var(--text-secondary);
    font-size: 11px;
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    white-space: nowrap;
    cursor: pointer;
    transition: color 0.2s ease;
}

.product-info-tabs__tab::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    height: 0.5px;
    background: var(--black);
    opacity: 0;
    transition: opacity 0.2s ease;
}

.product-info-tabs__tab:hover {
    color: var(--black);
}

.product-info-tabs__tab.active {
    color: var(--black);
}

.product-info-tabs__tab.active::after {
    opacity: 1;
}

.product-info-tabs__content {
    font-size: 14px;
    color: var(--grey2);
}

.product-info-tabs__content h4 {
    font-family: var(--cormorant);
    font-size: 20px;
    font-weight: 400;
    color: var(--black);
}

.product-info-tabs__content H5 {
    font-family: var(--cormorant);
    font-size: 18px;
    font-weight: 400;
    color: var(--black);
}

.product-info-tabs__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: currentColor;
    flex: 0 0 auto;
}

.product-info-tabs__content {
    padding: 24px 30px 60px;
}

.product-info-tabs__panel {
    display: none;
}

.product-info-tabs__panel.active {
    display: block;
}

.check-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.check-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 18px;
    color: var(--grey2);
    font-size: 13px;
    line-height: 1.4;
}

.check-list li b {
    font-weight: 600;
}

.check-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 4px;
    width: 13px;
    height: 13px;
    background-color: var(--accent);

    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='13' height='13' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'%3E%3C/path%3E%3C/svg%3E");
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    -webkit-mask-size: contain;

    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='13' height='13' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'%3E%3C/path%3E%3C/svg%3E");
    mask-repeat: no-repeat;
    mask-position: center;
    mask-size: contain;
}

.check-list li:last-child {
    margin-bottom: 0;
}

.freshj-return-section {
    padding: 40px 0;
    background: var(--white);
}

.freshj-return-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.freshj-return-card {
    padding: 28px;
    background: var(--white);
    border: 1px solid var(--border-color);
}

.freshj-return-card h3 {
    margin: 0 0 28px;
    color: var(--black);
    font-family: var(--cormorant);
    font-size: 20px;
    font-weight: 400;
    line-height: 1.25;
}

.freshj-return-card .check-list li {
    margin-bottom: 18px;
}

.freshj-return-card .check-list li:last-child {
    margin-bottom: 0;
}

/* Contacts */

.contacts .contacts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin: 64px 0;
}

.contacts .contacts-item {
    padding: 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    border: 1px solid var(--border-color);
    text-align: center;
}

.contacts .contacts-item .cont-icon {
    height: 48px;
    width: 48px;
    border: 1px solid var(--border-color);
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--grey2);
}

.contacts .contacts-item h4 {
    font-size: 15px;
    font-weight: 500;
    margin: 0;
}

.contacts .contacts-item span {
    font-size: 13px;
    font-weight: 300;
    color: var(--grey2);
}

.contacts .contacts-item p {
    font-size: 14px;
    font-weight: 400;
    margin: 0;
}

/* ABOUT */

.about-banner {
    display: flex;
    height: 500px;

    background-image:
        linear-gradient(90deg, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.45) 60%, rgba(0, 0, 0, 0.1) 100%),
        url("/bitrix/templates/FRESH/img/about-banner.jpg");

    background-size: cover;
    background-position: center 30%;
    background-repeat: no-repeat;

    color: #fff;
    padding-top: 64px;
}

.about-banner span.green {
    color: var(--accent);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-banner h1 {
    font-family: var(--cormorant);
    font-size: clamp(36px, 6vw, 72px);
    font-weight: 300;
    letter-spacing: 0.02em;
    line-height: 1.05;
    margin: 16px 0 20px;
}

.about-banner p {
    font-size: 14px;
    font-weight: 300;
    line-height: 1.7;
    color: var(--white-opacity);
    margin: 0;
}

.about-text h2,
.about-text h1 {
    font-weight: 300;
    line-height: 1.15;
    letter-spacing: 0.01em;
    font-family: var(--cormorant);
}

.about-text h1 {
    font-size: 50px;
}

.about-text h2 {
    font-size: 40px;
}

.about-text p {
    color: var(--grey2);
    font-size: 15px;
    margin: 0 0 24px;
    line-height: 1.7;
}

.about-text figcaption {
    margin-top: 14px;
    padding-left: 18px;
    border-left: 3px solid #b89b5e;
    font-size: 14px;
    line-height: 1.55;
    color: #666;
}

figure.image-caption {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 40px;
}

figure.image-caption img {
    width: 100%;
    object-fit: contain;
}

.about-text blockquote {
    font-family: var(--cormorant);
    font-style: italic;
    font-size: 21px;
    color: #111 !important;
    margin: 0;
    padding: 16px 0 16px 24px;
    border-left: 2px solid var(--accent);
    margin: 20px 0;
    line-height: 1.5;
    background: var(--milk);
}

/* сотрудничество */

.partner-hero {
    padding: 64px 0;
    overflow: hidden;
}

.partner-hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
    gap: 58px;
    align-items: center;
}

.partner-kicker {
    margin-bottom: 10px;
    font-size: 11px;
    line-height: 1.2;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-secondary-light);
}

.partner-hero__title {
    max-width: 760px;
    margin: 0;
    font-family: var(--cormorant);
    font-size: 50px;
    line-height: 1.1;
    font-weight: 300;
}

.partner-hero__text {
    max-width: 610px;
    margin: 26px 0 0;
    font-size: 15px;
    line-height: 1.65;
    color: var(--grey);
}

.partner-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 34px;
}

.partner-hero__visual {
    position: relative;
}

.partner-hero__image {
    position: relative;
    overflow: hidden;
    background: #ddd;
    aspect-ratio: 1 / 1.05;
}

.partner-hero__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
}

.partner-hero__note {
    position: absolute;
    left: -34px;
    bottom: 34px;
    width: 220px;
    padding: 22px 24px;
    background: #111;
    color: #fff;
    box-shadow: 0 20px 54px rgba(0, 0, 0, 0.22);
}

.partner-hero__note span {
    display: block;
    margin-bottom: 8px;
    font-size: 12px;
    line-height: 1.35;
    color: rgba(255, 255, 255, 0.58);
}

.partner-hero__note strong {
    display: block;
    font-size: 20px;
    line-height: 1.15;
    font-weight: 300;
}

.partner-intro {
    background: var(--milk);
}

.partner-intro,
.partner-process,
.partner-conditions,
.partner-request {
    padding: 64px 0;
}

.partner-section-head--center {
    margin-right: auto;
    margin-left: auto;
    text-align: center;
}

.partner-section-head h2,
.partner-conditions__content h2,
.partner-request__content h2 {
    margin: 0;
    font-family: var(--cormorant);
    font-size: 40px;
    line-height: 1.06;
    font-weight: 300;
}

.partner-section-head p,
.partner-conditions__content p,
.partner-request__content p {
    margin: 18px 0 0;
    font-size: 16px;
    line-height: 1.72;
    color: rgba(17, 17, 17, 0.65);
}

.partner-section-head p {
    margin-bottom: 24px;
}

.partner-info-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    margin-top: 28px;
}

.partner-info-card {
    padding: 28px;
    background: #fff;
    border: 1px solid var(--border-color);
}

.partner-info-card h3 {
    margin: 0 0 14px;
    font-size: 16px;
    line-height: 1.25;
    font-weight: 500;
}

.partner-info-card p {
    margin: 0;
    font-size: 14px;
    line-height: 1.65;
    color: rgba(17, 17, 17, 0.62);
}

.partner-timeline {
    max-width: 980px;
    margin: 0 auto;
    border-top: 1px solid var(--border-color);
}

.partner-timeline__item {
    display: grid;
    grid-template-columns: 60px minmax(0, 1fr);
    gap: 28px;
    padding: 30px 0;
    border-bottom: 1px solid var(--border-color);
}

.partner-timeline__num {
    font-size: 30px;
    line-height: 1;
    font-weight: 500;
    color: var(--accent);
    font-family: var(--cormorant);
}

.partner-timeline__body h3 {
    margin: 0;
    font-size: 30px;
    line-height: 1.25;
    font-weight: 300;
    font-family: var(--cormorant);
}

.partner-timeline__body p {
    margin: 12px 0 0;
    font-size: 14px;
    color: var(--grey2);
    line-height: 1.75;
}

.partner-time-badge,
.partner-price-badge {
    display: inline-flex;
    margin-top: 16px;
    padding: 8px 12px;
    font-size: 11px;
    line-height: 1;
    font-weight: 400;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.partner-time-badge {
    background: #e5e5e5;
    color: #797979;
}

.partner-price-badge {
    background: var(--accent);
    font-weight: 500;
    color: #fff;
}

.partner-conditions {
    background: #f7f7f5;
}

.partner-conditions__grid {
    display: grid;
    grid-template-columns: minmax(320px, 0.78fr) minmax(0, 1.22fr);
    gap: 52px;
    align-items: start;
}

.partner-conditions__content {
    position: sticky;
    top: 110px;
}

.partner-conditions__cards {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.partner-condition-card {
    padding: 28px;
    background: #fff;
    border: 1px solid rgba(17, 17, 17, 0.08);
}

.partner-condition-card h3 {
    margin: 6px 0 10px;
    font-size: 23px;
    line-height: 1.3;
    color: #111;
    font-weight: 500;
    font-family: var(--cormorant);
}

.partner-condition-card span {
    display: block;
    font-weight: 400;
    color: var(--accent);
}

.partner-condition-card p {
    margin: 0;
    font-size: 14px;
    line-height: 1.65;
    color: rgba(17, 17, 17, 0.62);
}

.partner-request {
    background: #fff;
}

.partner-request__box {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 420px;
    gap: 32px;
    padding: 32px;
    border: 1px solid var(--border-color);
    background: var(--milk);
}

.partner-request .partner-kicker,
.partner-request__content p {
    color: var(--text-secondary);
}

.partner-request__email {
    margin-top: 30px;
    padding-top: 28px;
    border-top: 1px solid var(--border-color);
}

.partner-request__email span {
    display: block;
    margin-bottom: 8px;
    font-size: 12px;
    line-height: 1.2;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-secondary);
}

.partner-request__email a {
    font-size: 30px;
    line-height: 1.25;
    font-family: var(--cormorant);
    font-weight: 400;
    color: var(--accent);
    text-decoration: none;
}

.partner-request__email a:hover {
    text-decoration: underline;
}

.partner-request__checklist {
    padding: 30px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.partner-request__checklist h3 {
    margin: 0 0 18px;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.25;
}

.partner-request__checklist ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.partner-request__checklist li {
    position: relative;
    padding-left: 22px;
    font-size: 14px;
    line-height: 1.5;
    color: var(--text-secondary);
}

.partner-request__checklist li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.62em;
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
}

.partner-collage {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
    gap: 16px;
    margin-top: 34px;
}

.partner-collage__main,
.partner-collage__item,
.partner-process-visuals__item {
    position: relative;
    overflow: hidden;
    background: #ddd;
}

.partner-collage__main {
    aspect-ratio: 16 / 9;
}

.partner-collage__side {
    display: grid;
    gap: 16px;
}

.partner-collage__item {
    aspect-ratio: 16 / 9;
}

.partner-collage img,
.partner-process-visuals img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    filter: grayscale(100%);
    transform: scale(1.001);
    transition: filter .35s ease, transform .45s ease;
}

.partner-collage__main:hover img,
.partner-collage__item:hover img,
.partner-process-visuals__item:hover img {
    filter: grayscale(35%);
    transform: scale(1.035);
}

.partner-process-visuals {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    max-width: 980px;
    margin: 34px auto 36px;
}

.partner-process-visuals__item {
    aspect-ratio: 16 / 9.5;
}

.partner-process-visuals__item::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 46%;
    background: linear-gradient(to top, rgba(0, 0, 0, .58), rgba(0, 0, 0, 0));
    pointer-events: none;
}

.partner-process-visuals__item span {
    position: absolute;
    left: 22px;
    right: 22px;
    bottom: 18px;
    z-index: 2;
    color: #fff;
    font-size: 14px;
    line-height: 1.35;
    letter-spacing: .02em;
}

/* FAQ */

.freshj-faq {
    width: 100%;
    padding: 40px 0;
    background: #fff;
}

.freshj-faq__content-block {
    display: grid;
    grid-template-columns: 360px minmax(0, 1fr);
    gap: 48px;
    align-items: start;
}

.freshj-faq__questions {
    position: sticky;
    top: 24px;
    background: #fff;
    border: 1px solid #e8e8e8;
}

.freshj-faq__questions-title {
    padding: 22px 24px;
    color: #050505;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.25;
    border-bottom: 1px solid #e8e8e8;
}

.freshj-faq__list,
.freshj-faq__sublist {
    margin: 0;
    padding: 0;
    list-style: none;
}

.freshj-faq__item {
    border-bottom: 1px solid #f0f0f0;
}

.freshj-faq__item:last-child {
    border-bottom: 0;
}

.freshj-faq__item-header {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    padding: 18px 24px;
    border: 0;
    background: transparent;
    color: #222;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.35;
    text-align: left;
    cursor: pointer;
}

.freshj-faq__item-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 12px;
    height: 12px;
    color: #8b9199;
    transform: rotate(-90deg);
    transition: transform 0.2s ease;
    flex: 0 0 auto;
}

.freshj-faq__item-icon svg {
    display: block;
    fill: currentColor;
}

.freshj-faq__item.is-open .freshj-faq__item-icon {
    transform: rotate(0deg);
}

.freshj-faq__sublist {
    display: none;
    padding: 0 24px 18px 48px;
}

.freshj-faq__item.is-open .freshj-faq__sublist {
    display: block;
}

.freshj-faq__sublist li + li {
    margin-top: 10px;
}

.freshj-faq__link {
    display: inline-block;
    color: #6b7280;
    font-size: 14px;
    line-height: 1.45;
    text-decoration: none;
    transition: color 0.2s ease;
}

.freshj-faq__link:hover {
    color: #050505;
}

.freshj-faq__link.is-active {
    color: #050505;
    font-weight: 500;
}

.freshj-faq__answer-wrap {
    min-width: 0;
}

.freshj-faq__back {
    margin-bottom: 28px;
}

.freshj-faq__back-link {
    display: inline-flex;
    align-items: center;
    color: #8b9199;
    font-size: 14px;
    line-height: 1.4;
    text-decoration: none;
    transition: color 0.2s ease;
}

.freshj-faq__back-link:hover {
    color: #050505;
}

.freshj-faq__panel {
    display: none;
    max-width: 900px;
}

.freshj-faq__panel.is-active {
    display: block;
}

.freshj-faq__panel h1 {
    margin: 0 0 28px;
    color: #050505;
    font-family: var(--cormorant);
    font-size: 36px;
    font-weight: 300;
    line-height: 1.18;
}

.freshj-faq__panel p {
    margin: 0 0 18px;
    color: #4f5661;
    font-size: 16px;
    line-height: 1.65;
}

.freshj-faq__panel p:last-child {
    margin-bottom: 0;
}

.freshj-faq__requisites {
    margin-top: 28px;
    padding: 28px;
    background: #fafafa;
    border: 1px solid #ececec;
}

.freshj-faq__requisites p {
    margin-bottom: 10px;
    font-size: 15px;
    line-height: 1.5;
}

.freshj-faq__doc-list {
    margin: 24px 0 0;
    padding: 0;
    list-style: none;
}

.freshj-faq__doc-list li {
    margin-bottom: 12px;
}

.freshj-faq__doc-list a {
    color: #050505;
    text-decoration: none;
    border-bottom: 1px solid rgba(5, 5, 5, 0.25);
}

.freshj-faq__doc-list a:hover {
    border-bottom-color: #050505;
}

@media (max-width: 991px) {
    .freshj-faq__content-block {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .freshj-faq__questions {
        position: static;
    }

    .freshj-faq__panel h1 {
        font-size: 30px;
    }
}

@media (max-width: 575px) {
    .freshj-faq {
        padding: 28px 0;
    }

    .freshj-faq__questions-title,
    .freshj-faq__item-header {
        padding-left: 18px;
        padding-right: 18px;
    }

    .freshj-faq__sublist {
        padding-left: 42px;
        padding-right: 18px;
    }

    .freshj-faq__panel h1 {
        font-size: 26px;
    }

    .freshj-faq__panel p {
        font-size: 15px;
    }

    .freshj-faq__requisites {
        padding: 22px 18px;
    }
}

/* GEO */

.header-city {
    position: relative;
}

.header-city-modal[hidden] {
    display: none;
}

.header-city-modal {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.header-city-modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(18, 24, 32, 0.5);
    backdrop-filter: blur(4px);
}

.header-city-modal__box {
    position: relative;
    z-index: 1;
    width: min(100%, 460px);
    padding: 34px 32px 30px;
    background: #fff;
    box-shadow: 0 28px 80px rgba(20, 28, 38, 0.22);
}

.header-city-modal__close {
    position: absolute;
    top: 16px;
    right: 18px;
    width: 34px;
    height: 34px;
    border: 0;
    border-radius: 50%;
    background: #f5f1ea;
    color: #2a2a2a;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
}

.header-city-modal__title {
    font-family: "Cormorant Garamond", serif;
    font-size: 32px;
    font-weight: 500;
    line-height: 1.1;
    color: #1f1f1f;
}

.header-city-modal__text {
    margin-top: 10px;
    font-size: 14px;
    line-height: 1.6;
    color: #666;
}

.header-city-modal__list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 24px;
}

.header-city-modal__item {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 10px 14px;
    border: 1px solid rgba(31, 31, 31, 0.1);
    border-radius: 999px;
    background: #fff;
    color: #1f1f1f;
    font-size: 14px;
    line-height: 1.3;
    cursor: pointer;
    transition:
        border-color 0.2s ease,
        background 0.2s ease,
        color 0.2s ease;
}

.header-city-modal__item:hover {
    border-color: #b79a60;
    background: #f8f4ee;
    color: #1f1f1f;
}

.city-modal-opened {
    overflow: hidden;
}

@media (max-width: 575px) {
    .header-city-modal {
        align-items: flex-end;
        padding: 0;
    }

    .header-city-modal__box {
        width: 100%;
        border-radius: 24px 24px 0 0;
        padding: 30px 20px 24px;
    }

    .header-city-modal__list {
        grid-template-columns: 1fr;
    }
}

/* АДАПТИВ */

.contain {
    width: 1180px;
    margin: 0 auto;
}

@media (max-width: 1260px) {
    .contain {
        width: 1100px;
    }

    .title-block {
        font-size: 46px;
    }
}

@media (max-width: 1180px) {
    .contain {
        width: 1000px;
    }

    .title-block {
        font-size: 40px;
        padding-bottom: 30px;
    }
}

@media (max-width: 1080px) {
    .contain {
        width: 920px;
    }
    .title-block {
        font-size: 34px;
        padding-bottom: 24px;
    }

    .partner-hero__title {
        font-size: 40px;
    }

    .partner-section-head h2,
    .partner-conditions__content h2,
    .partner-request__content h2 {
        font-size: 30px;
    }

    .partner-hero__grid,
    .partner-conditions__grid,
    .partner-request__box {
        grid-template-columns: 1fr;
    }

    .partner-info-grid,
    .partner-conditions__cards {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .partner-conditions__content {
        position: static;
    }

    .partner-hero__note {
        left: 24px;
    }

    .home-collection_banner-content {
        padding: 32px;
    }
    .home-collection_banner,
    .home-collection_banner-img img {
        height: 500px;
    }

    .home-collection_banner-content .mini-items-grid {
        margin: 14px 0;
    }
    .category-home,
    .home-news.contain,
    .home-bestsellers,
    .home-form-block,
    footer .contain.footer-contain {
        padding: 60px 0;
    }

    .best-item .flex-text {
        flex-direction: column;
        align-items: start;
        gap: 6px;
    }
}

@media (max-width: 992px) {
    .contain {
        width: 860px;
    }

    .header .header-nav {
        font-size: 13px;
    }
    .loyalty-info__grid {
        gap: 60px;
    }
    .loyalty-tier-card {
        padding: 24px;
    }
    .loyalty-tiers {
        gap: 24px;
    }
    .freshj-return-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .freshj-return-intro {
        margin-bottom: 40px;
        font-size: 16px;
    }

    .freshj-return-card {
        padding: 34px 28px;
    }

    .contacts .contacts-grid {
        gap: 20px;
    }
    .contacts .contacts-item {
        padding: 24px;
        gap: 6px;
    }

        .partner-collage {
        grid-template-columns: 1fr;
    }

    .partner-collage__side {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .partner-collage__main {
        aspect-ratio: 16 / 9;
    }
}

@media (max-width: 900px) {
    .contain {
        width: 780px;
    }

    .gift-card-constructor__grid {
        grid-template-columns: 1fr;
    }

    .gift-card-preview {
        max-height: 280px;
    }

    .gift-card-hero__text {
        max-width: 100%;
    }

    .gift-card-hero {
        padding-bottom: 20px;
    }
    .gift-card-constructor {
        padding-top: 20px;
    }

    .banner-home {
        height: 500px;
    }
}

/* MOBILE */

@media (max-width: 820px) {
    .header,
    .site-header.is-compact .header {
        height: 60px;
    }

    .mob-none {
        display: none !important;
    }
    .contain {
        width: 700px;
    }

    header .top-menu {
        display: none;
    }

    .header .contain {
        grid-template-columns: 1fr 1fr;
    }

    .header .header-logo {
        justify-content: left;
    }

    .header-mobile-hamb {
        display: flex;
    }

    .header .header-logo img {
        height: 44px;
    }

    .header-mobile-hamb {
        display: flex;
    }

    footer .contain.footer-contain {
        grid-template-columns: 1fr 1fr;
        padding-bottom: 70px;
    }
    .title-block {
        padding-bottom: 25px;
    }

    .bottom-mobile-menu {
        display: block;
    }

    .loyalty-steps {
        gap: 20px;
    }
    .advant .contain {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .contain {
        width: 648px;
    }

    .footer-pay-list {
        display: none;
    }

    .loyalty-steps,
    .loyalty-info__grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .loyalty-faq__list {
        margin-top: 24px;
    }

    .loyalty-how,
    .loyalty-hero {
        padding: 24px 0;
    }
    .loyalty-hero__title {
        font-size: 32px;
    }
    .loyalty-tiers {
        grid-template-columns: 1fr;
    }
    .product-info-tabs__tab {
        min-height: 56px;
        padding: 0 18px;
        font-size: 11px;
        letter-spacing: 0.12em;
        gap: 8px;
    }

    .product-info-tabs__content {
        padding: 20px 18px;
    }

    .contacts .contacts-grid {
        grid-template-columns: 1fr 1fr;
    }

    .contacts .contacts-grid .contacts-item:last-child {
        grid-column: span 2;
    }

    .partner-hero__title {
        font-size: 30px;
    }

    .partner-section-head h2,
    .partner-conditions__content h2,
    .partner-request__content h2,
    .partner-timeline__body h3,
    .partner-timeline__num {
        font-size: 25px;
    }

    .partner-hero {
        padding: 48px 0;
    }

    .partner-hero__actions {
        margin-top: 20px;
    }
    .partner-hero__grid,
    .partner-conditions__grid,
    .partner-request__box {
        gap: 20px;
    }

    .partner-hero__image img {
        aspect-ratio: 1 / 1;
    }

    .partner-intro,
    .partner-process,
    .partner-conditions,
    .partner-request {
        padding: 48px 0;
    }

    .partner-timeline__item {
        padding: 20px 0;
    }
    .partner-timeline__item {
        grid-template-columns: minmax(0, 1fr);
    }

    .home-collection_banner-content .mini-items-grid {
        grid-template-columns: 1fr;
    }
    .home-collection_banner,
    .home-collection_banner-img img {
        height: 600px;
    }
    .h3,
    .category-home h2 {
        font-size: 36px;
    }
    .link-next {
        font-size: 10px;
    }
    .banner-home_content h1 {
        font-size: 55px;
    }
    .banner-home_content p {
        max-width: 500px;
    }

    .philosophy-banner__content h1 {
        font-size: 40px;
    }
    .philosophy-banner {
        height: 420px;
    }

    .bestsellers-grid {
        grid-template-columns: repeat(2, 1fr);
    }

        .partner-collage,
    .partner-process-visuals {
        gap: 10px;
        margin-top: 24px;
    }

    .partner-collage__side,
    .partner-process-visuals {
        grid-template-columns: 1fr;
    }

    .partner-collage__main,
    .partner-collage__item,
    .partner-process-visuals__item {
        aspect-ratio: 4 / 3;
    }

    .partner-process-visuals__item span {
        left: 16px;
        right: 16px;
        bottom: 14px;
        font-size: 13px;
    }
}

@media (max-width: 680px) {
    .contain {
        width: 560px;
    }

    .product-info-tabs__nav {
        flex-direction: column;
    }

    .product-info-tabs__tab {
        min-height: 46px;
    }
}

@media (max-width: 640px) {
    .contain {
        width: calc(100% - 50px);
    }

    .footer-bottom {
        display: none;
    }

    .partner-hero,
    .partner-intro,
    .partner-process,
    .partner-conditions,
    .partner-request {
        padding: 48px 0;
    }

    .partner-hero__grid {
        gap: 34px;
    }

    .partner-info-grid,
    .partner-conditions__cards {
        grid-template-columns: 1fr;
    }

    .partner-timeline__item {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .home-collection_banner {
        grid-template-columns: 1fr;
        height: fit-content;
    }

    .home-collection_banner-img img {
        aspect-ratio: 1 / 1;
        height: 100%;
    }

    .home-form-block .contain {
        width: calc(100% - 50px);
    }

    .b24-widget-button-wrapper.b24-widget-button-position-bottom-right.b24-widget-button-visible{
        display:  none !important;
    }
}

@media (max-width: 580px) {
    .title-block {
        font-size: 30px;
        padding-bottom: 24px;
    }

    footer .contain.footer-contain {
        grid-template-columns: 1fr;
        padding-bottom: 80px;
    }

    .footer-social {
        margin-top: 15px;
    }

    .bottom-mobile-menu a {
        font-size: 12px;
    }
    .bottom-mobile-menu {
        padding: 5px 0;
    }

    .premium-404 {
        padding: 60px 16px 80px;
    }

    .premium-404__decor {
        width: 145px;
        height: 145px;
        margin-bottom: 22px;
    }

    .premium-404__diamond--1 {
        width: 140px;
        height: 140px;
    }

    .premium-404__diamond--2 {
        width: 102px;
        height: 102px;
    }

    .premium-404__diamond--3 {
        width: 68px;
        height: 68px;
    }

    .premium-404__diamond--4 {
        width: 36px;
        height: 36px;
    }

    .premium-404__text {
        margin-bottom: 38px;
    }

    .premium-404__buttons {
        flex-direction: column;
        gap: 12px;
    }
    .freshj-return-section {
        padding: 30px 0;
    }

    .freshj-return-card {
        padding: 28px 22px;
    }

    .freshj-return-card h3 {
        font-size: 23px;
        margin-bottom: 26px;
    }

    .h3,
    .category-home h2 {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .gift-card-preview__amount {
        font-size: 40px;
    }

    .contacts .contacts-grid {
        grid-template-columns: 1fr;
    }

    .contacts .contacts-grid .contacts-item:last-child {
        grid-column: auto;
    }
}

/* 
@media (max-width: 1260px) {}

@media (max-width: 1180px) {}

@media (max-width: 1080px) {}

@media (max-width: 992px) {}

@media (max-width: 900px) {}

@media (max-width: 820px) {}

@media (max-width: 768px) {}

@media (max-width: 680px) {}

@media (max-width: 640px) {}

@media (max-width: 580px) {} 
*/

/* End */
/* /bitrix/templates/FRESH/components/bitrix/menu/top_menu_inline/style.css?1777290682180 */
/* /bitrix/templates/FRESH/components/bitrix/sale.basket.basket.line/header_icon/style.css?1777290682514 */
/* /bitrix/templates/FRESH/components/bitrix/search.title/header_search_line/style.css?1777290682676 */
/* /bitrix/templates/FRESH/styles.css?177982374876918 */
