:root {
    --fresho-green: #46a758;
    --fresho-orange: #ff9f1c;
    --fresho-light: #fff8ec;
    --fresho-dark: #202020;
}

body {
    font-family: Arial, sans-serif;
    color: var(--fresho-dark);
    background: #fff;
}

.navbar-brand {
    color: var(--fresho-green) !important;
    font-size: 26px;
}

.menu-hero {
    background: linear-gradient(135deg, #fff8ec, #eaffef);
}

.section-title {
    font-weight: 800;
    color: var(--fresho-dark);
    position: relative;
}

.section-title::after {
    content: "";
    display: block;
    width: 60px;
    height: 4px;
    background: var(--fresho-orange);
    border-radius: 10px;
    margin-top: 10px;
}

/* Базовые стили карточки */
.product-card {
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid #f1f1f1;
    box-shadow: 0 12px 30px rgba(0,0,0,.06);
    transition: .2s ease;
    display: flex;
    flex-direction: column; /* Карточки будут одинаковой высоты в ряду благодаря h-100 */
    cursor:pointer;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(0,0,0,.1);
}

/* Верхняя часть (Аналог .item__top) */
.product-image {
    width: 100%;
}

/* Пропорциональный контейнер (Аналог .item__top-inner) */
/* Значение 65% задаст красивое соотношение сторон, близкое к квадрату */
.product-image-inner {
    width: 100%;
    padding-top: 100%; /* ТЕПЕРЬ ЭТО СТРОГИЙ КВАДРАТ 1:1 */
    position: relative;
}

/* Абсолютное позиционирование для картинки/заглушки (Аналог .item__top-img) */
.product-image-inner img,
.product-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100% !important;
    height: 100% !important;
}

/* Правило масштабирования */
.product-image-inner img {
    object-fit: contain !important; /* Уменьшит большие и растянет маленькие без обрезки */
}

/* Стили для эмодзи-заглушки */
.product-placeholder {
    font-size: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Нижняя часть с текстом (Аналог .item__bottom) */
.product-body {
    padding: 22px;
    display: flex;
    flex-direction: column;
    flex-grow: 1; /* Выталкивает нижние элементы, если карточки разной высоты */
}

/* Стили для внутренних дивов контента */
.product-title-wrap {
    margin-bottom: 10px;
}
.product-title {
    font-weight: 800;
    margin: 0;
}

.product-desc-wrap {
    margin-bottom: 15px;
    flex-grow: 1; /* Заставит описание занимать все свободное место */
}
.product-description {
    color: #777;
    font-size: 15px;
    margin: 0;
}

.product-meta-wrap {
    margin-bottom: 10px;
}
.product-weight {
    color: #777;
    font-size: 14px;
}

.product-price-wrap {
    margin-top: auto; /* Прижмет цену строго к низу карточки */
}
.product-price {
    font-weight: 800;
    color: var(--fresho-green, #28a745);
    font-size: 18px;
}

/*home style*/

.hero-section {
    padding: 70px 0 40px;
    background: radial-gradient(circle at right, #e9ffd9, #fff 55%);
}

.hero-logo {
    font-size: 72px;
    font-weight: 900;
    letter-spacing: -3px;
    color: #101010;
}

.hero-title {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 20px;
}

.hero-text {
    color: #555;
    font-size: 17px;
    margin-bottom: 30px;
    max-width: 420px;
}

.btn-fresho {
    background: var(--fresho-green);
    color: #fff;
    border-radius: 14px;
    padding: 13px 26px;
    font-weight: 700;
}

.btn-fresho:hover {
    background: #379449;
    color: #fff;
}

.btn-orange {
    background: #ff7a1a;
    color: #fff;
    border-radius: 14px;
    padding: 13px 26px;
    font-weight: 700;
}

.btn-orange:hover {
    background: #ef6808;
    color: #fff;
}

.hero-image-box {
    min-height: 380px;
    border-radius: 35px;
    background: linear-gradient(135deg, #fff4e2, #e9ffd9);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-product {
    font-size: 120px;
}

.category-strip {
    margin-top: -10px;
    margin-bottom: 30px;
}

.category-box {
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 18px 45px rgba(0,0,0,.08);
    padding: 24px;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
}

.category-item {
    text-align: center;
    font-weight: 700;
}

.category-icon {
    background: #fff6ea;
    border-radius: 22px;
    padding: 18px;
    font-size: 42px;
    margin-bottom: 10px;
}

.section-heading {
    font-weight: 900;
    color: #151515;
}

.see-all {
    color: var(--fresho-green);
    font-weight: 700;
    text-decoration: none;
}

.promo-section {
    padding: 20px 0 40px;
}

.promo-box {
    border-radius: 28px;
    background: linear-gradient(135deg, #f5ffe9, #fff4df);
    padding: 45px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    overflow: hidden;
}

.promo-box h2 {
    font-size: 38px;
    font-weight: 900;
}

.promo-box p {
    color: #555;
    margin-bottom: 25px;
}

.promo-emoji {
    font-size: 110px;
}

.why-card {
    padding: 25px;
}

.why-card div {
    width: 70px;
    height: 70px;
    background: #eef9e8;
    border-radius: 50%;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
}

.why-card h5 {
    font-weight: 800;
    font-size: 16px;
}

.why-card p {
    color: #777;
    font-size: 14px;
}

@media (max-width: 768px) {
    .hero-logo {
        font-size: 48px;
    }

    .hero-section {
        padding-top: 40px;
    }

    .category-box {
        grid-template-columns: repeat(2, 1fr);
    }

    .promo-box {
        flex-direction: column;
        text-align: center;
    }

    .promo-box h2 {
        font-size: 28px;
    }
}

/*FOOTER STYLE*/
.site-footer {
    background: #f8fff3;
    padding: 50px 0 20px;
    margin-top: 50px;
}

.footer-logo {
    color: var(--fresho-green);
    font-weight: 900;
}

.site-footer a {
    display: block;
    color: #333;
    text-decoration: none;
    margin-bottom: 8px;
}

.site-footer a:hover {
    color: var(--fresho-green);
}

.footer-bottom {
    border-top: 1px solid #e2e2e2;
    margin-top: 30px;
    padding-top: 15px;
    color: #777;
    font-size: 14px;
}

/*ABOUT О НАС*/
.about-card,
.contact-card,
.map-placeholder {
    background: #fff;
    border-radius: 28px;
    padding: 35px;
    box-shadow: 0 14px 35px rgba(0,0,0,.07);
    border: 1px solid #f1f1f1;
}

.about-emoji {
    font-size: 90px;
    margin-bottom: 20px;
}

.mini-feature {
    background: #f8fff3;
    border-radius: 16px;
    padding: 14px;
    font-weight: 700;
}

.map-placeholder {
    min-height: 320px;
    background: linear-gradient(135deg, #f5ffe9, #fff4df);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    text-align: center;
}

.map-placeholder h4 {
    font-size: 24px;
    font-weight: 800;
    margin-top: 15px;
}

/*------MAP-----------*/
.map-container {
    overflow: hidden;
    border-radius: 28px;
    box-shadow: 0 14px 35px rgba(0,0,0,.07);
}

.map-container iframe {
    width: 100%;
    height: 420px;
    border: 0;
}

/*-------------slider------------*/
.hero-image-box {
    overflow: hidden;
}

.hero-slide-img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    object-position: center;
    border-radius: 35px;
}

/*==========================
 MENU CATEGORY NAV
==========================*/

.category-sticky{
    position:sticky;
    top:55px;
    z-index:200;
    padding:5px 0;
    margin-bottom:20px;


}

.category-scroll{
    display: flex;
    gap: 12px;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 10px 0;
    flex-wrap: nowrap;
}

.category-scroll::-webkit-scrollbar{
    display:none;
}

.category-pill{
    flex: 0 0 auto;
    font-size: 18px;
    min-width:110px;
    background:#fff;
    color:#333;
    border:none;
    border-radius:22px;
    padding:14px 12px;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    gap:6px;
    cursor:pointer;
    box-shadow:0 10px 25px rgba(0,0,0,.06);
    transition:.25s;
}

.category-pill:hover{
    transform:translateY(-3px);
    background:var(--fresho-green);
    color:#fff;
    box-shadow:0 15px 30px rgba(70,167,88,.25);
}

.category-pill.active{
    background:var(--fresho-green);
    color:#fff;
}

html{
    scroll-behavior:smooth;
}

/*=========================
        NAVBAR
=========================*/
.fresho-navbar{
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255,255,255,.88);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom:1px solid rgba(0,0,0,.05);
    transition:.3s;
}

.fresho-navbar .container{
    min-height:50px;
}

.nav-link{
    font-size: 18px;
    font-weight:700;
    margin:0 8px;
    position:relative;
}

.nav-link::after{
    content:"";
    position:absolute;
    left:0;
    bottom:4px;
    width:0;
    height:2px;
    background:var(--fresho-green);
    transition:.25s;
}

.nav-link:hover::after{
    width:100%;
}

.btn-outline-success{
    border-radius:30px;
    padding:10px 18px;
    font-weight:700;
}

.nav-link.active{
    color:var(--fresho-green)!important;
}

.nav-link.active::after{
    width:100%;
}

.btn-hero {
    margin-bottom: 10px;
}
    /*==========================
    MENU MOBILE
==========================*/
@media (max-width:768px){

    .product-body{
        padding:14px;
    }

    .product-card{
        border-radius:10px;
    }

    .product-image-inner img{
    }

    .product-title{
        font-size:15px;
        line-height:1.3;
    }

    .product-description{
        display:none;
    }

    .product-weight{
        font-size:12px;
    }

    .product-price{
        font-size:16px;
    }

    .product-image-inner{
        padding-top:100%;
    }

    .category-sticky{
        margin-bottom:20px;
        padding:0;
    }

    .category-scroll{
        overflow-x:auto;
        overflow-y:hidden;
        flex-wrap:nowrap;
        gap:10px;
        padding:8px 4px;
        scroll-snap-type:x proximity;
    }

    .category-pill{
        min-width:82px;
        padding:8px 6px;
        border-radius:18px;
        font-size:11px;
        font-weight:700;
        scroll-snap-align:start;
        box-shadow:0 6px 18px rgba(0,0,0,.06);
    }

    .category-icon-big{
        font-size:24px;
        margin-bottom:2px;
    }

    .category-pill span:last-child{
        font-size:11px;
        line-height:1.2;
    }

    .category-pill:hover{
        box-shadow: none;
    }
}

/*==========================
МОДАЛЬНОЕ ОКНО
==========================*/
.product-modal{
    border:none;
    border-radius:30px;
    overflow:hidden;
}

.modal-image{
    background:#fff8ec;
    height:100%;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:30px;
}

.modal-image img{
    width:100%;
    max-height:420px;
    object-fit:contain;
}

.modal-body-custom{
    padding:45px;
}

.modal-body-custom h2{
    font-weight:900;
    margin-bottom:20px;
}

.modal-weight{
    color:#777;
    margin-bottom:25px;
}

.modal-description{
    line-height:1.8;
    color:#555;
}

.modal-price{
    margin-top:35px;
    font-size:34px;
    font-weight:900;
    color:var(--fresho-green);
}

.btn-close{
    background-color:#fff;
    border-radius:50%;
    padding:12px;
}


/* ПОЛИТИКА КОНФИДИЦИАЛЬНОСТИ*/
html{
    scroll-behavior:smooth;
}

.privacy-hero{
    background:#fff;
    border-radius:24px;
    padding:45px;
    box-shadow:0 15px 35px rgba(0,0,0,.06);
}

.privacy-card{
    background:#fff;
    border-radius:24px;
    padding:35px;
    box-shadow:0 10px 30px rgba(0,0,0,.05);
}

.privacy-section{
    background:#fff;
    border-radius:24px;
    padding:40px;
    margin-bottom:35px;
    box-shadow:0 10px 30px rgba(0,0,0,.05);
}

.privacy-section h2{
    font-weight:700;
    margin-bottom:25px;
}

.privacy-section p{
    line-height:1.9;
    color:#555;
}

.privacy-section li{
    margin-bottom:10px;
    line-height:1.8;
}

.privacy-list li{
    margin-bottom:12px;
}

.privacy-list a{
    text-decoration:none;
}

.privacy-list a:hover{
    text-decoration:underline;
}

.privacy-date{
    color:#777;
}


/* =====================================================
   ABOUT PAGE
===================================================== */

.about-hero {
    position: relative;
    overflow: hidden;
    padding: 90px 0 110px;
    background:
        radial-gradient(circle at 85% 20%, rgba(70, 167, 88, .17), transparent 28%),
        radial-gradient(circle at 15% 80%, rgba(255, 159, 28, .14), transparent 25%),
        linear-gradient(135deg, #fffaf2 0%, #f4fff0 100%);
}

.about-badge {
    display: inline-flex;
    align-items: center;
    padding: 9px 18px;
    margin-bottom: 24px;
    background: rgba(255, 255, 255, .85);
    border: 1px solid rgba(70, 167, 88, .15);
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .06);
    color: var(--fresho-green);
    font-size: 14px;
    font-weight: 800;
}

.about-main-title {
    max-width: 620px;
    margin-bottom: 24px;
    font-size: clamp(43px, 6vw, 76px);
    font-weight: 900;
    line-height: 1.04;
    letter-spacing: -3px;
    color: #171717;
}

.about-main-title::first-line {
    color: var(--fresho-green);
}

.about-main-text {
    max-width: 570px;
    margin-bottom: 34px;
    color: #626262;
    font-size: 18px;
    line-height: 1.8;
}

.about-menu-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 25px;
    border: none;
    border-radius: 15px;
    box-shadow: 0 12px 28px rgba(70, 167, 88, .25);
}

.about-menu-btn span {
    font-size: 22px;
    transition: transform .25s ease;
}

.about-menu-btn:hover span {
    transform: translateX(5px);
}

.about-more-link {
    display: inline-flex;
    align-items: center;
    padding: 13px 5px;
    color: #343434;
    font-weight: 800;
    text-decoration: none;
}

.about-more-link:hover {
    color: var(--fresho-green);
}

.about-collage {
    position: relative;
    min-height: 530px;
}

.collage-image {
    position: absolute;
    overflow: hidden;
    background: #fff;
    border: 8px solid rgba(255, 255, 255, .92);
    box-shadow: 0 25px 60px rgba(36, 55, 37, .16);
    transition: transform .4s ease, box-shadow .4s ease;
}

.collage-image:hover {
    z-index: 10;
    transform: translateY(-8px) scale(1.025);
    box-shadow: 0 34px 75px rgba(36, 55, 37, .23);
}

.collage-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.collage-image-main {
    top: 10px;
    right: 35px;
    width: 69%;
    height: 390px;
    border-radius: 38px;
    transform: rotate(2deg);
}

.collage-image-burger {
    left: 5px;
    bottom: 2px;
    width: 50%;
    height: 235px;
    border-radius: 30px;
    transform: rotate(-4deg);
}

.collage-image-cake {
    right: 5px;
    bottom: 0;
    width: 34%;
    height: 190px;
    border-radius: 28px;
    transform: rotate(5deg);
}

.collage-label {
    position: absolute;
    top: 44px;
    left: 10px;
    z-index: 5;
    width: 112px;
    height: 112px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--fresho-orange);
    border: 7px solid #fff;
    border-radius: 50%;
    box-shadow: 0 16px 35px rgba(255, 159, 28, .3);
    color: #fff;
    font-size: 13px;
    font-weight: 800;
    text-align: center;
    transform: rotate(-8deg);
}

.collage-label span {
    display: block;
    font-size: 24px;
    line-height: 1;
}

.about-decoration {
    position: absolute;
    border-radius: 50%;
    opacity: .7;
}

.about-decoration-one {
    top: 0;
    right: 0;
    width: 115px;
    height: 115px;
    background: #dff5d5;
}

.about-decoration-two {
    bottom: 30px;
    left: 20%;
    width: 75px;
    height: 75px;
    background: #ffead0;
}

/* История */

.about-story-section {
    padding: 110px 0;
}

.about-story-image {
    position: relative;
    max-width: 570px;
    padding: 14px;
    background: linear-gradient(135deg, #fff0da, #eaffdf);
    border-radius: 38px;
}

.about-story-image > img {
    width: 100%;
    height: 570px;
    display: block;
    object-fit: cover;
    border-radius: 28px;
}

.story-floating-card {
    position: absolute;
    right: -30px;
    bottom: 35px;
    min-width: 245px;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 17px 20px;
    background: rgba(255, 255, 255, .94);
    border: 1px solid rgba(255, 255, 255, .8);
    border-radius: 20px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, .14);
    backdrop-filter: blur(12px);
}

.story-floating-icon {
    width: 52px;
    height: 52px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff4e2;
    border-radius: 15px;
    font-size: 26px;
}

.story-floating-card strong,
.story-floating-card span {
    display: block;
}

.story-floating-card strong {
    margin-bottom: 3px;
    font-size: 14px;
}

.story-floating-card span {
    color: #777;
    font-size: 12px;
}

.about-small-title {
    display: block;
    margin-bottom: 13px;
    color: var(--fresho-green);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.about-section-title {
    margin-bottom: 22px;
    color: #171717;
    font-size: clamp(32px, 4vw, 49px);
    font-weight: 900;
    line-height: 1.12;
    letter-spacing: -1.5px;
}

.about-story-text {
    margin-bottom: 18px;
    color: #626262;
    font-size: 17px;
    line-height: 1.9;
}

.about-signature {
    display: inline-block;
    margin-top: 15px;
    color: var(--fresho-green);
    font-size: 30px;
    font-weight: 900;
    letter-spacing: 5px;
    transform: rotate(-3deg);
}

/* Преимущества */

.about-features-section {
    padding: 105px 0;
    background: #fbfcf9;
}

.about-section-header {
    max-width: 680px;
    margin: 0 auto 55px;
}

.about-section-header p {
    color: #747474;
    font-size: 17px;
    line-height: 1.7;
}

.about-feature-card {
    position: relative;
    overflow: hidden;
    padding: 32px 28px;
    background: #fff;
    border: 1px solid #efefef;
    border-radius: 26px;
    box-shadow: 0 15px 42px rgba(0, 0, 0, .055);
    transition: transform .3s ease, box-shadow .3s ease;
}

.about-feature-card::after {
    content: "";
    position: absolute;
    right: -45px;
    bottom: -45px;
    width: 110px;
    height: 110px;
    background: rgba(70, 167, 88, .07);
    border-radius: 50%;
}

.about-feature-card:hover {
    transform: translateY(-9px);
    box-shadow: 0 24px 55px rgba(0, 0, 0, .11);
}

.about-feature-icon {
    width: 68px;
    height: 68px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 26px;
    border-radius: 21px;
    font-size: 31px;
}

.green-icon {
    background: #eaf8e5;
}

.orange-icon {
    background: #fff0df;
}

.yellow-icon {
    background: #fff9d8;
}

.pink-icon {
    background: #ffebed;
}

.about-feature-card h3 {
    margin-bottom: 13px;
    font-size: 20px;
    font-weight: 900;
}

.about-feature-card p {
    margin: 0;
    color: #777;
    font-size: 14px;
    line-height: 1.75;
}

/* Процесс */

.about-process-section {
    padding: 110px 0;
}

.about-process {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    margin-top: 55px;
}

.process-item {
    position: relative;
    width: 210px;
    text-align: center;
}

.process-number {
    position: absolute;
    top: -12px;
    right: 44px;
    color: rgba(70, 167, 88, .17);
    font-size: 50px;
    font-weight: 900;
}

.process-icon {
    position: relative;
    z-index: 2;
    width: 92px;
    height: 92px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 23px;
    background: linear-gradient(145deg, #f1ffe9, #fff4df);
    border: 7px solid #fff;
    border-radius: 50%;
    box-shadow: 0 14px 35px rgba(0, 0, 0, .08);
    font-size: 36px;
}

.process-item h3 {
    margin-bottom: 9px;
    font-size: 17px;
    font-weight: 900;
}

.process-item p {
    margin: 0;
    color: #777;
    font-size: 13px;
    line-height: 1.6;
}

.process-line {
    width: 90px;
    height: 2px;
    margin-top: 45px;
    background-image: linear-gradient(
        to right,
        var(--fresho-green) 50%,
        transparent 50%
    );
    background-size: 12px 2px;
}

/* Цитата */

.about-quote-section {
    padding: 25px 0 90px;
}

.about-quote-box {
    position: relative;
    overflow: hidden;
    padding: 75px 80px;
    background:
        radial-gradient(circle at top left, rgba(255,255,255,.55), transparent 30%),
        linear-gradient(135deg, #e9ffe2, #fff0dc);
    border-radius: 38px;
    text-align: center;
}

.quote-symbol {
    height: 55px;
    color: var(--fresho-green);
    font-family: Georgia, serif;
    font-size: 90px;
    font-weight: 900;
    line-height: .8;
}

.about-quote-box blockquote {
    max-width: 790px;
    margin: 0 auto 22px;
    color: #202020;
    font-size: clamp(27px, 4vw, 45px);
    font-weight: 900;
    line-height: 1.28;
    letter-spacing: -1px;
}

.quote-author {
    color: var(--fresho-green);
    font-size: 15px;
    font-weight: 900;
    letter-spacing: 4px;
}

.quote-decoration {
    position: absolute;
    opacity: .14;
    font-size: 110px;
}

.quote-decoration-left {
    left: 20px;
    bottom: -15px;
    transform: rotate(-20deg);
}

.quote-decoration-right {
    top: -15px;
    right: 20px;
    transform: rotate(20deg);
}

/* CTA */

.about-cta-section {
    padding: 15px 0 110px;
}

.about-cta-box {
    display: flex;
    align-items: stretch;
    overflow: hidden;
    min-height: 400px;
    background: #1e1e1e;
    border-radius: 38px;
    box-shadow: 0 24px 65px rgba(0, 0, 0, .15);
}

.about-cta-content {
    width: 57%;
    padding: 65px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-cta-label {
    margin-bottom: 14px;
    color: #91d79c;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.about-cta-content h2 {
    max-width: 540px;
    margin-bottom: 18px;
    color: #fff;
    font-size: clamp(34px, 5vw, 54px);
    font-weight: 900;
    line-height: 1.1;
}

.about-cta-content p {
    max-width: 500px;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, .66);
    font-size: 16px;
    line-height: 1.8;
}

.about-cta-button {
    width: fit-content;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 24px;
    background: var(--fresho-green);
    border-radius: 15px;
    color: #fff;
    font-weight: 800;
}

.about-cta-button:hover {
    background: #379449;
    color: #fff;
    transform: translateY(-2px);
}

.about-cta-image {
    width: 43%;
    min-height: 400px;
}

.about-cta-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

/* Адаптив */

@media (max-width: 991px) {

    .about-hero {
        padding: 70px 0 85px;
    }

    .about-main-title {
        letter-spacing: -2px;
    }

    .about-collage {
        max-width: 650px;
        min-height: 500px;
        margin: 15px auto 0;
    }

    .about-story-image {
        margin: 0 auto;
    }

    .about-process {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 35px 20px;
    }

    .process-item {
        width: auto;
    }

    .process-line {
        display: none;
    }

    .about-cta-box {
        flex-direction: column;
    }

    .about-cta-content,
    .about-cta-image {
        width: 100%;
    }

    .about-cta-image {
        height: 360px;
        min-height: auto;
    }
}

@media (max-width: 767px) {

    .about-hero {
        padding: 50px 0 65px;
    }

    .about-main-title {
        margin-bottom: 18px;
        letter-spacing: -1.5px;
    }

    .about-main-text {
        font-size: 16px;
        line-height: 1.7;
    }

    .about-collage {
        min-height: 390px;
    }

    .collage-image {
        border-width: 5px;
    }

    .collage-image-main {
        right: 10px;
        width: 75%;
        height: 285px;
        border-radius: 25px;
    }

    .collage-image-burger {
        width: 52%;
        height: 165px;
        border-radius: 20px;
    }

    .collage-image-cake {
        width: 36%;
        height: 135px;
        border-radius: 19px;
    }

    .collage-label {
        top: 20px;
        left: 0;
        width: 82px;
        height: 82px;
        border-width: 5px;
        font-size: 10px;
    }

    .collage-label span {
        font-size: 18px;
    }

    .about-story-section,
    .about-features-section,
    .about-process-section {
        padding: 70px 0;
    }

    .about-story-image > img {
        height: 420px;
    }

    .story-floating-card {
        right: 12px;
        bottom: 18px;
        min-width: 220px;
    }

    .about-section-header {
        margin-bottom: 35px;
    }

    .about-process {
        grid-template-columns: 1fr;
    }

    .process-item {
        max-width: 280px;
        margin: 0 auto;
    }

    .about-quote-section {
        padding-bottom: 65px;
    }

    .about-quote-box {
        padding: 55px 24px;
        border-radius: 26px;
    }

    .quote-decoration {
        font-size: 70px;
    }

    .about-cta-section {
        padding: 10px 0 10px;
    }

    .about-cta-box {
        border-radius: 27px;
        min-height: 366px;
    }

    .about-cta-content {
        padding: 44px 25px 0;
    }

    .about-cta-image {
        display: none;
    }

    .site-footer {
        padding: 15px 0 20px ;
    }
}
