* {
    font-family: "Montserrat", sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #f4e6da;
}

.coffee-header {
    position: sticky;
    width: 100%;
    /* padding: 24px 20px 0; */
    z-index: 100;
    top: 21px;
}

.coffee-header__container {
    max-width: 1300px;
    margin: 0 auto;
}

.coffee-header__inner {
    position: relative;
}

.coffee-header__nav {
    min-height: 76px;
    background: #354e21;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 0 48px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.coffee-header__menu {
    display: flex;
    align-items: center;
    gap: 60px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.coffee-header__item {
    margin: 0;
    padding: 0;
}

.coffee-header__link,
.coffee-header__phone {
    color: #FFFFFF;
    text-decoration: none;
    font-size: 18px;
    line-height: 1.2;
    font-weight: 500;
    transition: opacity 0.3s ease;
}

.coffee-header__link:hover,
.coffee-header__phone:hover {
    opacity: 0.7;
}

.coffee-header__logo {
    position: absolute;
    left: 50%;
    top: 33%;
    transform: translate(-50%, -36%);
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: #354e21;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    z-index: 3;
}

.coffee-header__logo img {
    max-width: 88px;
    width: 100%;
    height: auto;
    display: block;
}

.coffee-header__burger {
    display: none;
    width: 52px;
    height: 52px;
    border: none;
    outline: none;
    cursor: pointer;
    background: #354e21;
    border-radius: 50%;
    position: relative;
    padding: 0;
    z-index: 120;
}

.coffee-header__burger span {
    position: absolute;
    left: 50%;
    width: 22px;
    height: 2px;
    background: #fff;
    border-radius: 10px;
    transform: translateX(-50%);
    transition: all 0.3s ease;
}

.coffee-header__burger span:nth-child(1) {
    top: 17px;
}

.coffee-header__burger span:nth-child(2) {
    top: 25px;
}

.coffee-header__burger span:nth-child(3) {
    top: 33px;
}

.coffee-header__mobile {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(100%, 100%);
    height: 100vh;
    background: #F4E6DA;
    z-index: 200;
    padding: 24px 20px 40px;
    transition: right 0.35s ease;
    overflow-y: auto;
}

.coffee-header__mobile.is-active {
    right: 0;
}

.coffee-header__mobile-top {
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 16px;
    margin-bottom: 20px;
}

.coffee-header__mobile-logo {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: #354e21;
    display: flex;
    align-items: center;
    justify-content: center;
}

.coffee-header__mobile-logo img {
    max-width: 36px;
    display: block;
}

.coffee-header__close {
    position: relative;
    width: 26px;
    height: 26px;
    border: none;
    border-radius: 50%;
    background: #354e21;
    cursor: pointer;
    padding: 0;
}

.coffee-header__close span {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 13px;
    height: 2px;
    background: #fff;
    border-radius: 10px;
}

.coffee-header__close span:nth-child(1) {
    transform: translate(-50%, -50%) rotate(45deg);
}

.coffee-header__close span:nth-child(2) {
    transform: translate(-50%, -50%) rotate(-45deg);
}

.coffee-header__mobile-menu {
    list-style: none;
    margin: 0;
    padding: 0;
}

.coffee-header__mobile-menu li + li {
    margin-top: 18px;
}

.coffee-header__mobile-menu a {
    color: #2B2B2B;
    text-decoration: none;
    font-size: 22px;
    line-height: 1.2;
    font-weight: 500;
}

.coffee-header__overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 190;
}

.coffee-header__overlay.is-active {
    opacity: 1;
    visibility: visible;
}

body.coffee-menu-open {
    overflow: hidden;
}

@media (max-width: 1200px) {
    .coffee-header__nav {
        padding: 0 30px;
    }

    .coffee-header__menu {
        gap: 45px;
    }

    .coffee-header__link,
    .coffee-header__phone {
        font-size: 16px;
    }

    .coffee-header__logo {
        width: 86px;
        height: 86px;
    }
}

@media (max-width: 991px) {
    .coffee-header {
        /* padding: 16px 16px 0; */
    }

    .coffee-header__nav {
        min-height: 68px;
        padding: 0 20px;
    }

    .coffee-header__menu {
        display: none;
    }

    .coffee-header__logo {
        position: static;
        transform: none;
        width: 64px;
        height: 64px;
    }

    .coffee-header__logo img {
        max-width: 47px;
    }

    .coffee-header__burger {
        display: block;
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
    }

    .coffee-header__nav {
        justify-content: start;
    }
}

@media (max-width: 575px) {
    .coffee-header {
        padding: 0;
        top: 0;
    }

    .coffee-header__nav {
        min-height: 62px;
        border-radius: 0px;
        padding: 0 16px;
    }

    .coffee-header__logo {
        width: 58px;
        height: 58px;
        justify-content: start;
    }

    .coffee-header__mobile-menu a {
        font-size: 17px;
    }
}

.coffee-footer {
    width: 100%;
    background: #111111;
    color: #FFFFFF;
    padding: 64px 20px 24px;
}

.coffee-footer__container {
    max-width: 1300px;
    margin: 0 auto;
}

.coffee-footer__top {
    display: grid;
    grid-template-columns: 1.35fr 1fr 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.coffee-footer__column {
    min-width: 0;
}

.coffee-footer__column--info {
    max-width: 320px;
}

.coffee-footer__logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 78px;
    margin-bottom: 28px;
    text-decoration: none;
}

.coffee-footer__logo img {
    max-width: 100%;
    height: auto;
    display: block;
}

.coffee-footer__contacts {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.coffee-footer__contact {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #FFFFFF;
    text-decoration: none;
    font-size: 17px;
    line-height: 1.4;
    font-weight: 400;
}

a.coffee-footer__contact {
    transition: opacity 0.3s ease;
}

a.coffee-footer__contact:hover {
    opacity: 0.7;
}

.coffee-footer__icon {
    width: 22px;
    height: 22px;
    flex: 0 0 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
}

.coffee-footer__icon svg {
    width: 100%;
    height: 100%;
    display: block;
}

.coffee-footer__title {
    margin: 0 0 17px;
    font-weight: 500;
    font-size: 18px;
    line-height: 158%;
    color: #fff;
}

.coffee-footer__menu {
    list-style: none;
    margin: 0;
    padding: 0;
}

.coffee-footer__menu li + li {
    margin-top: 16px;
}

.coffee-footer__menu a {
    text-decoration: none;
    font-weight: 400;
    font-size: 15px;
    line-height: 150%;
    color: #fafafa;
    transition: opacity 0.3s ease;
}

.coffee-footer__menu a:hover {
    opacity: 0.7;
    color: #6c9468;
}

.coffee-footer__bottom {
    padding-top: 60px;
    text-align: center;
}

.coffee-footer__copyright {
    margin: 0;
    color: #FFFFFF;
    font-size: 14px;
    line-height: 1.4;
    opacity: 0.9;
}

@media (max-width: 1199px) {
    .coffee-footer {
        padding: 56px 20px 24px;
    }

    .coffee-footer__top {
        grid-template-columns: 1fr 1fr;
        gap: 44px 36px;
    }

    .coffee-footer__column--info {
        max-width: 100%;
    }

    .coffee-footer__title {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .coffee-footer__contact,
    .coffee-footer__menu a,
    .coffee-footer__copyright {
        font-size: 17px;
    }
}

@media (max-width: 767px) {
    .coffee-footer {
        padding: 42px 16px 22px;
    }

    .coffee-footer__top {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .coffee-footer__logo {
        margin-bottom: 22px;
    }

    .coffee-footer__contacts {
        gap: 16px;
    }

    .coffee-footer__title {
        font-size: 22px;
        margin-bottom: 16px;
    }

    .coffee-footer__contact,
    .coffee-footer__menu a,
    .coffee-footer__copyright {
        font-size: 16px;
    }

    .coffee-footer__bottom {
        padding-top: 36px;
    }
}

@media (max-width: 479px) {
    .coffee-footer__contact {
        align-items: flex-start;
    }

    .coffee-footer__title {
        font-size: 20px;
    }

    .coffee-footer__menu li + li {
        margin-top: 12px;
    }
}

.coffee-hero {
    background: #F4E6DA;
    padding: 60px 20px 100px;
    position: relative;
    overflow: hidden;
}

.coffee-hero__container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    position: relative;
}

.coffee-hero__subtitle {
    font-size: 28px;
    line-height: 1.3;
    margin-bottom: 20px;
}

.coffee-hero__logo {
    max-width: 900px;
    margin: 0 auto 40px;
}

.coffee-hero__logo svg {
    width: 100%;
    height: auto;
}

.coffee-hero__image {
    position: relative;
    z-index: 2;
    margin: -79px auto;
    max-width: 700px;
}

.coffee-hero__image img {
    width: 100%;
    height: auto;
    display: block;
}

.coffee-hero__action {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    text-align: center;
    color: #000;
    text-decoration: none;
}

.coffee-hero__action span {
    display: block;
    font-weight: 500;
    font-size: 18px;
    color: #000;
    padding-top: 10px;
}

.coffee-hero__action--left {
    left: 0;
}

.coffee-hero__action--right {
    right: 0;
}

.coffee-hero__circle {
    width: 100px;
    height: 100px;
    background: #354e21;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

/* ЗЕРНА */

.coffee-hero__bean {
    position: absolute;
    width: 40px;
    z-index: 1;
}

.coffee-hero__bean--1 {
    top: 40%;
    left: 10%;
}

.coffee-hero__bean--2 {
    top: 20%;
    right: 15%;
}

.coffee-hero__bean--3 {
    bottom: 10%;
    right: 25%;
}

@media (max-width: 991px) {

    .coffee-hero__subtitle {
        font-size: 22px;
    }

    .coffee-hero__logo {
        max-width: 600px;
    }

    .coffee-hero__action {
        position: absolute;
        transform: none;
        margin-top: 20px;
        top: 70%;
        z-index: 4;
    }

    .coffee-hero__image {
        max-width: 600px;
        margin-top: -70px;
    }

    .coffee-hero__bean {
        display: none;
    }
}

@media (max-width: 575px) {

    .coffee-hero__circle {
        display: none;
    }

    .coffee-hero__action span {
        display: block;
        font-weight: 500;
        font-size: 16px;
        color: #ffffff;
        margin-top: 17px;
        background: #628d68;
        border-radius: 100px;
        padding: 13px 40px;
        width: 100%;
    }

    .coffee-hero__action {
        position: relative;
        transform: none;
        margin-top: 20px;
        top: 40px;
        z-index: 3;
    }

    .coffee-hero__image {
        margin-top: -55px;
    }

    .coffee-hero {
        padding: 40px 16px 60px;
    }

    .coffee-hero__subtitle {
        font-size: 18px;
    }

    .coffee-hero__logo {
        max-width: 100%;
    }

    .coffee-hero__image {
        max-width: 500px;
        z-index: 1;
    }
}

.coffee-advantages {
    padding: 20px 20px 40px;
    background: #F4E6DA;
}

.coffee-advantages__container {
    max-width: 1300px;
    margin: 0 auto;
}

.coffee-advantages__title {
    margin: 0 0 40px;
    text-align: center;
    font-size: 30px;
    line-height: 1.1;
    font-weight: 500;
    color: #1F1F1F;
    text-transform: uppercase;
}

.coffee-advantages__grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px 30px;
}

.coffee-advantages__card {
    width: calc(33.333% - 20px);
    min-height: 170px;
    background: rgba(255, 255, 255, 0.23);
    border-radius: 15px;
    padding: 31px 46px 36px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.coffee-advantages__card--small {
    width: calc(33.333% - 20px);
}

.coffee-advantages__icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.coffee-advantages__icon img {
    max-width: 100%;
    max-height: 100%;
    display: block;
}

.coffee-advantages__text {
    max-width: 100%;
    font-size: 19px;
    line-height: 1.2;
    font-weight: 400;
    color: #1F1F1F;
}

@media (max-width: 1199px) {
    .coffee-advantages {
        padding: 70px 20px 30px;
    }

    .coffee-advantages__title {
        font-size: 38px;
        margin-bottom: 32px;
    }

    .coffee-advantages__card,
    .coffee-advantages__card--small {
        width: calc(50% - 15px);
    }

    .coffee-advantages__text {
        font-size: 19px;
        max-width: 280px;
    }
}

@media (max-width: 767px) {
    .coffee-advantages {
        padding: 55px 16px 25px;
    }

    .coffee-advantages__title {
        font-size: 30px;
        margin-bottom: 24px;
    }

    .coffee-advantages__grid {
        gap: 16px;
    }

    .coffee-advantages__card,
    .coffee-advantages__card--small {
        width: 100%;
        min-height: 150px;
        padding: 32px 48px;
    }

    .coffee-advantages__icon {
        width: 60px;
        height: 60px;
        margin-bottom: 14px;
    }

    .coffee-advantages__text {
        font-size: 17px;
        max-width: 100%;
    }
}

@media (max-width: 479px) {
    .coffee-advantages__title {
        font-size: 22px;
    }

    .coffee-advantages__card {
        min-height: 135px;
        border-radius: 12px;
    }

    .coffee-advantages__text {
        font-size: 18px;
    }
}

.coffee-about {
    background: #F4E6DA;
    padding: 50px 20px 60px;
    position: relative;
    overflow: hidden;
}

.coffee-about__container {
    max-width: 1200px;
    margin: 0 auto;
}

.coffee-about__head {
    max-width: 760px;
    margin: 0 auto 40px;
    text-align: center;
}

.coffee-about__title {
    margin: 0;
    font-size: 30px;
    line-height: 1.15;
    font-weight: 500;
    text-transform: uppercase;
    color: #1F1F1F;
}

.coffee-about__title span {
    color: #354e21;
}

.coffee-about__body {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.coffee-about__content {
    flex: 0 1 600px;
}

.coffee-about__text p {
    margin: 0 0 22px;
    font-size: 19px;
    line-height: 1.45;
    font-weight: 400;
    color: #1F1F1F;
}

.coffee-about__text p:last-child {
    margin-bottom: 0;
}

.coffee-about__button {
    margin-top: 28px;
    min-width: 215px;
    min-height: 52px;
    padding: 14px 28px;
    border-radius: 999px;
    background: #354e21;
    color: #FFFFFF;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 16px;
    line-height: 1;
    font-weight: 500;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.coffee-about__button:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

.coffee-about__media {
    position: absolute;
    right: 0;
    max-width: 700px;
    top: 80px;
}

.coffee-about__media img {
    width: 100%;
    height: auto;
    display: block;
}

@media (max-width: 991px) {
    

    .coffee-about {
        padding: 45px 20px 55px;
    }

    .coffee-about__head {
        margin-bottom: 30px;
    }

    .coffee-about__body {
        flex-direction: column;
        gap: 28px;
    }

    .coffee-about__content,
    .coffee-about__media {
        flex: none;
        width: 100%;
        max-width: 100%;
    }

    .coffee-about__title {
        font-size: 24px;
    }

    .coffee-about__text p {
        font-size: 18px;
        text-align: center;
    }

    .coffee-about__button {
        margin-top: 24px;
        max-width: 315px;
        margin: 19px auto 0px;
        min-width: unset;
        display: flex;
    }

    .coffee-about__media {
        display: none;
    }
}

@media (max-width: 575px) {
    .coffee-about {
        padding: 35px 16px 45px;
    }

    .coffee-about__head {
        margin-bottom: 24px;
    }

    .coffee-about__title {
        font-size: 22px;
        line-height: 1.18;
    }

    .coffee-about__text p {
        margin-bottom: 18px;
        font-size: 18px;
        line-height: 1.4;
    }

    .coffee-about__button {
        width: 100%;
        min-height: 50px;
        font-size: 15px;
    }
}

.coffee-production {
    position: relative;
    background: #F4E6DA;
    padding: 60px 20px 70px;
    overflow: hidden;
}

.coffee-production__container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.coffee-production__wrapper {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 40px;
}

.coffee-production__media {
    flex: 0 1 600px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.coffee-production__image {
    border-radius: 20px;
    overflow: hidden;
}

.coffee-production__image img {
    width: 100%;
    height: auto;
    display: block;
}

.coffee-production__content {
    flex: 0 1 600px;
    padding-top: 14px;
}

.coffee-production__title {
    margin: 0 0 24px;
    font-size: 30px;
    line-height: 1.1;
    font-weight: 500;
    text-transform: uppercase;
    color: #1F1F1F;
}

.coffee-production__title span {
    color: #354e21;
}

.coffee-production__text p {
    margin: 0 0 20px;
    font-size: 20px;
    line-height: 1.45;
    color: #1F1F1F;
}

.coffee-production__text li {
    margin-bottom: 8px;
    font-size: 19px;
    line-height: 1.4;
    color: #1F1F1F;
}


.coffee-production__text ul {
    margin: 0 0 28px;
    padding-left: 22px;
}

.coffee-production__list li {
    margin-bottom: 8px;
    font-size: 19px;
    line-height: 1.4;
    color: #1F1F1F;
}

.coffee-production__list li:last-child {
    margin-bottom: 0;
}

.coffee-production__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 14px 18px;
}

.coffee-production__tag {
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.23);
    border-radius: 10px;
    font-size: 18px;
    line-height: 1.2;
    color: #1F1F1F;
}

.coffee-production__beans {
    position: absolute;
    left: -800px;
    top: -200px;
    z-index: 1;
    pointer-events: none;
}

.coffee-production__beans img {
    display: block;
    width: 100%;
    height: auto;
}

@media (min-width: 1441px) {
    .coffee-production__beans img {
        display: none;
        width: 100%;
        height: auto;
    }
}

@media (max-width: 1199px) {
    .coffee-production {
        padding: 30px 20px 60px;
    }

    .coffee-production__wrapper {
        gap: 30px;
    }

    .coffee-production__media {
        flex: 0 1 52%;
    }

    .coffee-production__content {
        flex: 0 1 48%;
    }

    .coffee-production__title {
        font-size: 30px;
    }

    .coffee-production__text p,
    .coffee-production__list li,
    .coffee-production__tag {
        font-size: 18px;
    }

    .coffee-production__beans img {
        width: 170px;
    }
}

@media (max-width: 991px) {
    .coffee-production {
        padding: 25px 20px 50px;
    }

    .coffee-production__wrapper {
        flex-direction: column;
    }

    .coffee-production__media,
    .coffee-production__content {
        flex: none;
        width: 100%;
    }

    .coffee-production__content {
        padding-top: 0;
    }

    .coffee-production__beans {
        display: none;
    }
}

@media (max-width: 575px) {
    .coffee-production {
        padding: 20px 16px 40px;
    }

    .coffee-production__title {
        font-size: 30px;
        margin-bottom: 18px;
    }

    .coffee-production__text p {
        font-size: 18px;
        margin-bottom: 16px;
    }

    .coffee-production__list {
        margin-bottom: 22px;
        padding-left: 18px;
    }

    .coffee-production__list li {
        font-size: 18px;
        margin-bottom: 6px;
    }

    .coffee-production__tags {
        gap: 10px;
    }

    .coffee-production__tag {
        width: 100%;
        font-size: 18px;
        padding: 12px 14px;
    }

    .coffee-production__image {
        border-radius: 16px;
    }
}

.coffee-features {
    background: #F4E6DA;
    padding: 30px 20px 70px;
}

.coffee-features__container {
    max-width: 1300px;
    margin: 0 auto;
}

.coffee-features__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px 60px;
    align-items: start;
}

.coffee-features__item {
    text-align: center;
}

.coffee-features__image {
    max-width: 100%;
    margin: 0 auto 24px;
    position: relative;
}

.coffee-features__image img {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 500px;
    display: block;
    object-fit: cover;
    -webkit-mask-image: linear-gradient(to bottom, #000 75%, transparent 100%);
    mask-image: linear-gradient(to bottom, #000 75%, transparent 100%);
}

.coffee-features__title {
    margin: 0 0 16px;
    font-size: 24px;
    line-height: 1.15;
    font-weight: 500;
    text-transform: uppercase;
    color: #1F1F1F;
}

.coffee-features__title span {
    color: #354e21;
}

.coffee-features__text {
    max-width: 100%;
    margin: 0 auto;
    font-size: 18px;
    line-height: 1.45;
    color: #1F1F1F;
}

.coffee-features__fade {
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 492px;
    height: 110px;
    background: #FEEEE2;
    filter: blur(20.4px);
    z-index: 1;
    pointer-events: none;
}

@media (max-width: 991px) {
    .coffee-features {
        padding: 25px 20px 55px;
    }

    .coffee-features__grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .coffee-features__image {
        max-width: 100%;
        margin-bottom: 20px;
    }

    .coffee-features__title {
        font-size: 22px;
    }

    .coffee-features__text {
        font-size: 18px;
        max-width: 100%;
    }
}

@media (max-width: 575px) {
    .coffee-features {
        padding: 20px 16px 40px;
    }

    .coffee-features__grid {
        gap: 32px;
    }

    .coffee-features__image {
        max-width: 100%;
        margin-bottom: 18px;
    }

    .coffee-features__title {
        font-size: 22px;
        margin-bottom: 12px;
    }

    .coffee-features__text {
        font-size: 18px;
        line-height: 1.4;
    }
}

.coffee-menu {
    background: #F4E6DA;
    padding: 40px 20px 70px;
}

.coffee-menu__container {
    max-width: 1300px;
    margin: 0 auto;
}

.coffee-menu__title {
    margin: 0 0 28px;
    text-align: center;
    font-size: 30px;
    line-height: 1.15;
    font-weight: 500;
    text-transform: uppercase;
    color: #1F1F1F;
}

.coffee-menu__title span {
    color: #354e21;
}

.coffee-menu__tabs {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    margin-bottom: 28px;
}

.coffee-menu__tab {
    width: 100%;
    min-width: 0;
    padding: 12px 16px;
    border: none;
    border-radius: 10px;
    background: #354e21;
    color: #FFFFFF;
    font-size: 18px;
    line-height: 1;
    font-weight: 400;
    cursor: pointer;
    transition: opacity 0.3s ease, transform 0.3s ease, background 0.3s ease;
}

.coffee-menu__tab:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

.coffee-menu__tab.is-active {
    background: #354e21;
}

.coffee-menu__content {
    position: relative;
}

.coffee-menu__panel {
    display: none;
}

.coffee-menu__panel.is-active {
    display: block;
}

.coffee-menu__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.coffee-menu__card {
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(109, 148, 104, 0.12);
    border-radius: 20px;
    padding: 28px 20px 27px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.coffee-menu__card-image {
    width: 150px;
    height: 150px;
    margin: 0 auto 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.coffee-menu__card-image img {
    max-width: 100%;
    max-height: 100%;
    display: block;
}

.coffee-menu__card-title {
    margin: 0 0 10px;
    font-size: 16px;
    line-height: 1.3;
    font-weight: 500;
    color: #1F1F1F;
}

.coffee-menu__card-price {
    font-size: 18px;
    line-height: 1.2;
    font-weight: 700;
    color: #1F1F1F;
}

.coffee-menu__bottom {
    margin-top: 26px;
    text-align: center;
}

.coffee-menu__button {
    min-width: 180px;
    min-height: 52px;
    padding: 14px 28px;
    border-radius: 999px;
    background: #354e21;
    color: #FFFFFF;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    line-height: 1;
    font-weight: 500;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.coffee-menu__button:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

@media (max-width: 1199px) {
    .coffee-menu__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 991px) {
    .coffee-menu {
        padding: 30px 20px 55px;
    }

    .coffee-menu__tabs {
        gap: 12px;
    }

    .coffee-menu__tab {
        min-width: 100px;
        font-size: 16px;
        padding: 11px 16px;
    }

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

    .coffee-menu__card {
        min-height: 300px;
    }

    .coffee-menu__card-title,
    .coffee-menu__card-price {
        font-size: 18px;
    }
}

@media (max-width: 575px) {
    .coffee-menu {
        padding: 24px 16px 40px;
    }

    .coffee-menu__title {
        font-size: 22px;
        margin-bottom: 22px;
    }

    .coffee-menu__tabs {
        justify-content: flex-start;
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 6px;
        margin-bottom: 22px;
    }

    .coffee-menu__tabs::-webkit-scrollbar {
        height: 4px;
    }

    .coffee-menu__tabs::-webkit-scrollbar-thumb {
        background: rgba(109, 148, 104, 0.35);
        border-radius: 10px;
    }

    .coffee-menu__tab {
        flex: 0 0 auto;
        min-width: auto;
        white-space: nowrap;
    }

    .coffee-menu__grid {
        grid-template-columns: 1fr 1fr;
    }

    .coffee-menu__card {
        min-height: auto;
        padding: 24px 18px 22px;
    }

    .coffee-menu__card-image {
        width: 130px;
        height: 130px;
        margin-bottom: 16px;
    }

    .coffee-menu__button {
        width: 100%;
    }
}

.coffee-why {
    position: relative;
    background: #F4E6DA;
    padding: 0px 20px 70px;
    overflow: hidden;
}

.coffee-why__container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.coffee-why__title {
    margin: 0 0 30px;
    text-align: center;
    font-size: 30px;
    line-height: 1.15;
    font-weight: 500;
    text-transform: uppercase;
    color: #1F1F1F;
}

.coffee-why__title span {
    color: #354e21;
}

.coffee-why__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.coffee-why__card {
    position: relative;
    display: block;
    min-height: 450px;
    border-radius: 20px;
    overflow: hidden;
    text-decoration: none;
    color: #FFFFFF;
}

.coffee-why__image {
    position: absolute;
    inset: 0;
}

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

.coffee-why__overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            to top,
            rgba(0, 0, 0, 0.55) 0%,
            rgba(0, 0, 0, 0.18) 38%,
            rgba(0, 0, 0, 0.04) 65%,
            rgba(0, 0, 0, 0) 100%
        );
    z-index: 1;
}

.coffee-why__text {
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 26px;
    z-index: 2;
    font-size: 16px;
    line-height: 1.3;
    font-weight: 400;
    color: #FFFFFF;
}

.coffee-why__bag {
    position: absolute;
    top: -160px;
    right: -570px;
    z-index: 1;
    pointer-events: none;
}

.coffee-why__bag img {
    display: block;
    width: 100%;
    height: auto;
}

@media (min-width: 1441px) {
    .coffee-why__bag {
        display: none;
    }
}

@media (max-width: 1199px) {
    .coffee-why {
        padding: 35px 20px 60px;
    }

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

    .coffee-why__bag img {
        width: 180px;
    }

    .coffee-why__title {
        font-size: 26px;
    }
}

@media (max-width: 767px) {
    .coffee-why {
        padding: 30px 16px 45px;
    }

    .coffee-why__grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .coffee-why__card {
        min-height: 360px;
        border-radius: 16px;
    }

    .coffee-why__text {
        left: 16px;
        right: 16px;
        bottom: 16px;
        font-size: 18px;
    }

    .coffee-why__bag {
        display: none;
    }

    .coffee-why__title {
        font-size: 22px;
    }
}

.coffee-lunch {
    background: #F4E6DA;
    padding: 40px 20px 70px;
}

.coffee-lunch__container {
    max-width: 1200px;
    margin: 0 auto;
}

.coffee-lunch__title {
    margin: 0 0 40px;
    text-align: center;
    font-size: 30px;
    line-height: 1.15;
    font-weight: 500;
    text-transform: uppercase;
    color: #1F1F1F;
}

.coffee-lunch__title span {
    color: #354e21;
}

.coffee-lunch__list {
    display: flex;
    flex-direction: column;
    gap: 34px;
}

.coffee-lunch__item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.coffee-lunch__image {
    flex: 0 1 100%;
    display: flex;
    justify-content: center;
}

.coffee-lunch__image img {
    width: 100%;
    max-width: 544px;
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

.coffee-lunch__content {
    flex: 0 1 100%;
}

.coffee-lunch__item-title {
    margin: 0 0 16px;
    font-size: 30px;
    line-height: 1.15;
    font-weight: 500;
    color: #354e21;
}

.coffee-lunch__text p {
    margin: 0 0 16px;
    font-size: 19px;
    line-height: 1.45;
    color: #1F1F1F;
}

.coffee-lunch__text p:last-child {
    margin-bottom: 0;
}

.coffee-lunch__price {
    margin-top: 18px;
    font-size: 20px;
    line-height: 1.2;
    font-weight: 700;
    color: #1F1F1F;
}

.coffee-lunch__item:nth-child(even) .coffee-lunch__image {
    order: 2;
}

.coffee-lunch__item:nth-child(even) .coffee-lunch__content {
    order: 1;
}

.coffee-lunch__item:nth-child(even) .coffee-lunch__item-title,
.coffee-lunch__item:nth-child(even) .coffee-lunch__text,
.coffee-lunch__item:nth-child(even) .coffee-lunch__price {
    text-align: right;
}

@media (max-width: 991px) {
    .coffee-lunch {
        padding: 30px 20px 55px;
    }

    .coffee-lunch__item,
    .coffee-lunch__item:nth-child(even) {
        flex-direction: column;
        text-align: center;
        gap: 24px;
    }

    .coffee-lunch__image,
    .coffee-lunch__content {
        flex: none;
        width: 100%;
        max-width: 700px;
        margin: 0 auto;
    }

    .coffee-lunch__item-title {
        font-size: 30px;
    }

    .coffee-lunch__text p {
        font-size: 18px;
    }

    .coffee-lunch__price {
        font-size: 20px;
    }

    .coffee-lunch__item:nth-child(even) .coffee-lunch__image,
    .coffee-lunch__item:nth-child(even) .coffee-lunch__content {
        order: unset;
    }

    .coffee-lunch__item:nth-child(even) .coffee-lunch__item-title,
    .coffee-lunch__item:nth-child(even) .coffee-lunch__text,
    .coffee-lunch__item:nth-child(even) .coffee-lunch__price {
        text-align: center;
    }

    .coffee-lunch__title {
        font-size: 26px;
    }
}

@media (max-width: 575px) {
    .coffee-lunch {
        padding: 24px 16px 40px;
    }

    .coffee-lunch__title {
        font-size: 22px;
        margin-bottom: 28px;
    }

    .coffee-lunch__list {
        gap: 28px;
    }

    .coffee-lunch__item-title {
        font-size: 28px;
        margin-bottom: 14px;
    }

    .coffee-lunch__text p {
        font-size: 18px;
        line-height: 1.4;
        margin-bottom: 14px;
    }

    .coffee-lunch__price {
        margin-top: 16px;
        font-size: 20px;
    }

    .coffee-lunch__item:nth-child(even) .coffee-lunch__item-title,
    .coffee-lunch__item:nth-child(even) .coffee-lunch__text,
    .coffee-lunch__item:nth-child(even) .coffee-lunch__price {
        text-align: center;
    }
}

.coffee-offer {
    padding: 0px 0px 50px;
    background: #F4E6DA;
}

.coffee-offer__container {
    max-width: 100%;
    margin: 0 auto;
    border-radius: 0;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.coffee-offer__container__two,
.coffee-reviews__container__two {
    width: 100%;
    max-width: none;
    min-height: 360px;
    margin: 0 auto;
    border-radius: 0;
    overflow: hidden;
    background-color: #111111;
    background-size: cover, cover;
    background-position: center center, center center;
    background-repeat: no-repeat, no-repeat;
}

.coffee-offer__content {
    max-width: 800px;
    padding: 78px 74px 60px;
}

.coffee-offer__title {
    margin: 0 0 20px;
    font-size: 38px;
    line-height: 1.15;
    font-weight: 500;
    color: #FFFFFF;
}

.coffee-offer__title__two {
    margin: 0 0 20px;
    font-size: 30px;
    line-height: 1.15;
    font-weight: 500;
    color: #FFFFFF;
}

.coffee-offer__text p {
    margin: 0;
    font-size: 19px;
    line-height: 1.45;
    color: #FFFFFF;
}

.coffee-offer__actions {
    margin-top: 34px;
    display: flex;
    align-items: flex-start;
    gap: 36px;
    flex-wrap: wrap;
}

.coffee-offer__action {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    text-decoration: none;
    color: #FFFFFF;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.coffee-offer__action:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

.coffee-offer__action-icon {
    width: 79px;
    height: 79px;
    border-radius: 50%;
    background: #F4E6DA;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    /* flex: 0 0 54px; */
}

.coffee-offer__action-icon img {
    max-width: 48px;
    max-height: 43px;
    display: block;
}

.coffee-offer__action-text {
    font-size: 18px;
    line-height: 1.3;
    font-weight: 400;
    color: #FFFFFF;
}

@media (max-width: 991px) {
    .coffee-offer {
        padding: 0px 0px 40px;
    }

    .coffee-offer__container {
        background-position: center right;
    }

    .coffee-offer__container__two,
    .coffee-reviews__container__two {
        min-height: 340px;
        background-position: center center, center right;
    }

    .coffee-offer__content {
        max-width: 600px;
        padding: 42px 28px 38px;
    }

    .coffee-offer__title {
        font-size: 34px;
    }

    .coffee-offer__title__two {
        font-size: 30px;
    }

    .coffee-offer__text p {
        font-size: 18px;
    }

    .coffee-offer__actions {
        gap: 26px;
    }
}

@media (max-width: 575px) {
    .coffee-offer {
        padding: 0px 0px 32px;
    }

    .coffee-offer__container {
        background-image:
            linear-gradient(to bottom, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.46) 45%, rgba(0, 0, 0, 0.16) 100%),
            url('/wp-content/uploads/2026/04/rectangle-78.png');
        background-position: center;
    }

    .coffee-offer__container__two,
    .coffee-reviews__container__two {
        min-height: 390px;
        background-size: cover, cover;
        background-position: center center, center center;
        background-repeat: no-repeat, no-repeat;
    }

    .coffee-offer__content {
        padding: 40px 20px 30px;
    }

    .coffee-offer__title {
        font-size: 26px;
        margin-bottom: 16px;
        text-align: center;
    }

    .coffee-offer__title__two {
        font-size: 26px;
        margin-bottom: 16px;
        text-align: center;
    }

    .coffee-offer__text p {
        font-size: 18px;
        line-height: 1.4;
        text-align: center;
    }

    .coffee-offer__actions {
        margin-top: 26px;
        gap: 18px;
        justify-content: space-between;
    }

    .coffee-offer__action {
        width: calc(33.333% - 12px);
    }

    .coffee-offer__action-icon {
        width: 48px;
        height: 48px;
        margin-bottom: 10px;
    }

    .coffee-offer__action-text {
        font-size: 15px;
    }

    .coffee-offer__action-icon img {
        max-width: 25px;
        max-height: 25px;
        display: block;
    }
}

.coffee-locations {
    background: #F4E6DA;
    padding: 40px 20px 70px;
    overflow: hidden;
}

.coffee-locations__container {
    max-width: 1300px;
    margin: 0 auto;
}

.coffee-locations__title {
    margin: 0 0 20px;
    text-align: center;
    font-size: 30px;
    line-height: 1.15;
    font-weight: 500;
    text-transform: uppercase;
    color: #1F1F1F;
}

.coffee-locations__title span {
    color: #354e21;
}

.coffee-locations__subtitle {
    margin: 0 0 28px;
    text-align: center;
    font-size: 18px;
    line-height: 1.45;
    color: #1F1F1F;
}

.coffee-locations__slider {
    position: relative;
    overflow: hidden;
}

.coffee-locations__track {
    display: flex;
    transition: transform 0.5s ease;
    will-change: transform;
}

.coffee-locations__slide {
    flex: 0 0 33.3333%;
    padding: 0 10px;
    box-sizing: border-box;
}

.coffee-locations__card {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    height: 250px;
    background: #d8c7ba;
}

.coffee-locations__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.coffee-locations__overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 18px;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.68) 0%,
        rgba(0, 0, 0, 0.38) 35%,
        rgba(0, 0, 0, 0.08) 70%,
        rgba(0, 0, 0, 0) 100%
    );
    opacity: 0;
    visibility: hidden;
    transition: 0.35s ease;
}

.coffee-locations__card:hover .coffee-locations__overlay {
    opacity: 1;
    visibility: visible;
}

.coffee-locations__content {
    margin-top: 37px;
    color: #FFFFFF;
    text-align: center;
}

.coffee-locations__card-title {
    margin: 0 0 8px;
    font-size: 18px;
    line-height: 1.2;
    font-weight: 500;
}

.coffee-locations__text {
    font-size: 18px;
    line-height: 1.35;
    margin-bottom: 8px;
}

.coffee-locations__link {
    display: inline-block;
    margin-top: 6px;
    color: #feeee2;
    font-size: 18px;
    line-height: 1.3;
    text-decoration: underline;
    text-underline-offset: 4px;
}

.coffee-locations__icon {
    position: absolute;
    right: 18px;
    bottom: 18px;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.coffee-locations__icon svg {
    max-width: 100%;
    max-height: 100%;
    display: block;
}

.coffee-locations__dots {
    margin-top: 18px;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.coffee-locations__dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    padding: 0;
    background: rgba(109, 148, 104, 0.28);
    cursor: pointer;
    transition: 0.3s ease;
}

.coffee-locations__dot.is-active {
    background: #354e21;
}

@media (max-width: 991px) {
    .coffee-locations {
        padding: 30px 20px 55px;
    }

    .coffee-locations__slide {
        flex: 0 0 50%;
    }

    .coffee-locations__card {
        height: 250px;
    }

    .coffee-locations__card-title {
        font-size: 24px;
    }

    .coffee-locations__text,
    .coffee-locations__link {
        font-size: 18px;
    }

    .coffee-locations__title {
        font-size: 22px;
    }
}

@media (max-width: 575px) {
    .coffee-locations {
        padding: 24px 16px 40px;
    }

    .coffee-locations__slide {
        flex: 0 0 100%;
        padding: 0;
    }

    .coffee-locations__subtitle {
        font-size: 18px;
        margin-bottom: 22px;
    }

    .coffee-locations__card {
        height: 250px;
        border-radius: 16px;
    }

    .coffee-locations__overlay {
        opacity: 1;
        visibility: visible;
    }

    .coffee-locations__card-title {
        font-size: 24px;
    }

    .coffee-locations__text,
    .coffee-locations__link {
        font-size: 18px;
    }

    .coffee-locations__title {
        font-size: 22px;
    }
}

.coffee-lunch-info {
    position: relative;
    background: #F4E6DA;
    padding: 0px 20px 70px;
    overflow: hidden;
}

.coffee-lunch-info__container {
    max-width: 1300px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.coffee-lunch-info__title {
    margin: 0 0 34px;
    text-align: center;
    font-size: 30px;
    line-height: 1.15;
    font-weight: 500;
    text-transform: uppercase;
    color: #1F1F1F;
}

.coffee-lunch-info__title span {
    color: #354e21;
}

.coffee-lunch-info__wrapper {
    display: flex;
    align-items: stretch;
    gap: 34px;
}

.coffee-lunch-info__slider {
    flex: 0 1 100%;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.coffee-lunch-info__track {
    display: flex;
    height: 100%;
    transition: transform 0.5s ease;
    will-change: transform;
}

.coffee-lunch-info__slide {
    flex: 0 0 100%;
    min-width: 100%;
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
}

.coffee-lunch-info__slide img {
    width: 100%;
    height: 490px;
    object-fit: cover;
    display: block;
}

.coffee-lunch-info__dots {
    margin-top: 16px;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.coffee-lunch-info__dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    padding: 0;
    background: rgba(109, 148, 104, 0.28);
    cursor: pointer;
    transition: 0.3s ease;
}

.coffee-lunch-info__dot.is-active {
    background: #354e21;
}

.coffee-lunch-info__content {
    flex: 0 1 100%;
    flex-direction: column;
    justify-content: space-between;
}

.coffee-lunch-info__button__block {
    display: flex;
    justify-content: center;
}

.coffee-lunch-info__list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.coffee-lunch-info__item {
    border: 1px solid #8DB184;
    border-radius: 16px;
    padding: 18px 20px;
    font-size: 18px;
    line-height: 1.45;
    color: #1F1F1F;
    background: transparent;
}

.coffee-lunch-info__button {
    margin-top: 34px;
    min-width: 190px;
    min-height: 52px;
    padding: 14px 28px;
    border-radius: 999px;
    background: #354e21;
    color: #FFFFFF;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    line-height: 1;
    font-weight: 500;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.coffee-lunch-info__button:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

.coffee-lunch-info__beans {
    position: absolute;
    left: -300px;
    bottom: -80px;
    z-index: 1;
    pointer-events: none;
}

.coffee-lunch-info__beans img {
    width: 100%;
    height: auto;
    display: block;
}

@media (min-width: 1441px) {
    .coffee-lunch-info__beans {
        display: none;
    }
}

@media (max-width: 991px) {
    .coffee-lunch-info {
        padding: 30px 20px 55px;
    }

    .coffee-lunch-info__wrapper {
        flex-direction: column;
    }

    .coffee-lunch-info__slider,
    .coffee-lunch-info__content {
        flex: none;
        width: 100%;
    }

    .coffee-lunch-info__slide img {
        height: 360px;
    }

    .coffee-lunch-info__item {
        font-size: 18px;
    }

    .coffee-lunch-info__beans {
        display: none;
    }

    .coffee-lunch-info__title {
        font-size: 26px;
    }
}

@media (max-width: 575px) {
    .coffee-lunch-info {
        padding: 24px 16px 40px;
    }

    .coffee-lunch-info__title {
        font-size: 22px;
        margin-bottom: 24px;
    }

    .coffee-lunch-info__wrapper {
        gap: 24px;
    }

    .coffee-lunch-info__slide {
        border-radius: 16px;
    }

    .coffee-lunch-info__slide img {
        height: 280px;
    }

    .coffee-lunch-info__item {
        padding: 16px;
        font-size: 18px;
        line-height: 1.4;
        border-radius: 14px;
    }

    .coffee-lunch-info__button {
        width: 100%;
        margin-top: 24px;
    }
}

.coffee-team {
    background: #F4E6DA;
    padding: 40px 20px 70px;
    overflow: hidden;
}

.coffee-team__container {
    max-width: 1300px;
    margin: 0 auto;
}

.coffee-team__wrapper {
    display: flex;
    align-items: center;
    gap: 40px;
}

.coffee-team__content {
    max-width: 380px;
    flex: 0 0 380px;
}

.coffee-team__title {
    margin: 0 0 18px;
    font-size: 30px;
    line-height: 1.15;
    font-weight: 500;
    text-transform: uppercase;
    color: #1F1F1F;
}

.coffee-team__title span {
    color: #354e21;
}

.coffee-team__text p {
    margin: 0;
    font-size: 19px;
    line-height: 1.45;
    color: #1F1F1F;
}

.coffee-team__button {
    margin-top: 26px;
    min-width: 210px;
    min-height: 52px;
    padding: 14px 28px;
    border-radius: 999px;
    background: #354e21;
    color: #FFFFFF;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    line-height: 1;
    font-weight: 500;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.coffee-team__button:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

.coffee-team__slider {
    flex: 1 1 auto;
    overflow: hidden;
    position: relative;
    min-width: 0;
    width: 100%;
}

.coffee-team__track {
    display: flex;
    gap: 18px;
    transition: transform 0.55s ease;
    will-change: transform;
}

.coffee-team__slide {
    flex: 0 0 280px;
    width: 280px;
    border-radius: 20px;
    overflow: hidden;
}

.coffee-team__slide img {
    width: 100%;
    height: 360px;
    object-fit: cover;
    display: block;
}

@media (max-width: 991px) {
    .coffee-team {
        padding: 30px 20px 55px;
    }

    .coffee-team__wrapper {
        flex-direction: column;
        align-items: flex-start;
        gap: 28px;
    }

    .coffee-team__content {
        max-width: 100%;
        flex: none;
        width: 100%;
    }

    .coffee-team__slider {
        width: 100%;
        min-width: 0;
        overflow: hidden;
    }

    .coffee-team__track {
        gap: 12px;
    }

    .coffee-team__slide {
        flex: 0 0 calc((100% - 12px) / 2);
        width: calc((100% - 12px) / 2);
        max-width: calc((100% - 12px) / 2);
        border-radius: 18px;
    }

    .coffee-team__slide img {
        height: 320px;
    }

    .coffee-team__text p {
        font-size: 18px;
    }
}

@media (max-width: 575px) {
    .coffee-team {
        padding: 24px 16px 40px;
    }

    .coffee-team__title {
        font-size: 30px;
    }

    .coffee-team__text p {
        font-size: 18px;
        line-height: 1.4;
    }

    .coffee-team__button {
        width: 100%;
    }

    .coffee-team__track {
        gap: 12px;
    }

    .coffee-team__slide {
        flex: 0 0 calc((100% - 12px) / 2);
        width: calc((100% - 12px) / 2);
        max-width: calc((100% - 12px) / 2);
        border-radius: 16px;
    }

    .coffee-team__slide img {
        height: 320px;
    }
}

.coffee-offer-wide {
    width: 100%;
    padding: 40px 0 50px;
    background: #F4E6DA;
}

.coffee-offer-wide__container {
    width: 100%;
    min-height: 420px;
    background-image:
        linear-gradient(to right, rgba(0, 0, 0, 0.76) 0%, rgba(0, 0, 0, 0.54) 34%, rgba(0, 0, 0, 0.14) 62%, rgba(0, 0, 0, 0) 100%),
        url('/wp-content/uploads/2026/04/rectangle-49.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
}

.coffee-offer-wide__content {
    max-width: 1300px;
    width: 100%;
    margin: 0 auto;
    padding: 48px 20px;
    color: #FFFFFF;
}

.coffee-offer-wide__title {
    margin: 0 0 20px;
    max-width: 620px;
    font-size: 38px;
    line-height: 1.15;
    font-weight: 500;
    color: #FFFFFF;
}

.coffee-offer-wide__text {
    max-width: 640px;
}

.coffee-offer-wide__text p {
    margin: 0;
    font-size: 19px;
    line-height: 1.45;
    color: #FFFFFF;
}

.coffee-offer-wide__list {
    margin-top: 26px;
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
}

.coffee-offer-wide__list-column {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.coffee-offer-wide__item {
    font-size: 18px;
    line-height: 1.35;
    color: #FFFFFF;
}

.coffee-offer-wide__button {
    margin-top: 28px;
    min-width: 210px;
    min-height: 52px;
    padding: 14px 28px;
    border-radius: 999px;
    background: #F4E6DA;
    color: #1F1F1F;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    line-height: 1;
    font-weight: 500;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.coffee-offer-wide__button:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

@media (max-width: 991px) {
    .coffee-offer-wide {
        padding: 30px 0 40px;
    }

    .coffee-offer-wide__container {
        min-height: 380px;
        background-position: center right;
    }

    .coffee-offer-wide__content {
        padding: 40px 20px;
    }

    .coffee-offer-wide__title {
        font-size: 30px;
    }

    .coffee-offer-wide__text p {
        font-size: 18px;
    }

    .coffee-offer-wide__list {
        gap: 28px 40px;
    }
}

@media (max-width: 575px) {
    .coffee-offer-wide {
        padding: 24px 0 32px;
    }

    .coffee-offer-wide__container {
        min-height: 360px;
        background-image:
            linear-gradient(to bottom, rgba(0, 0, 0, 0.78) 0%, rgba(0, 0, 0, 0.56) 48%, rgba(0, 0, 0, 0.24) 100%),
            url('/wp-content/uploads/2026/04/rectangle-49.png');
        background-position: center;
    }

    .coffee-offer-wide__content {
        padding: 32px 16px;
    }

    .coffee-offer-wide__title {
        font-size: 30px;
        margin-bottom: 16px;
    }

    .coffee-offer-wide__text p {
        font-size: 18px;
        line-height: 1.4;
    }

    .coffee-offer-wide__list {
        margin-top: 22px;
        gap: 16px;
        flex-direction: column;
    }

    .coffee-offer-wide__list-column {
        gap: 10px;
    }

    .coffee-offer-wide__item {
        font-size: 18px;
    }

    .coffee-offer-wide__button {
        width: 100%;
        margin-top: 24px;
    }
}

.coffee-reviews {
    background: #F4E6DA;
    padding: 40px 20px 60px;
    overflow: hidden;
}

.coffee-reviews__container {
    max-width: 1200px;
    margin: 0 auto;
}

.coffee-reviews__title {
    margin: 0 0 28px;
    text-align: center;
    font-size: 30px;
    line-height: 1.15;
    font-weight: 500;
    text-transform: uppercase;
    color: #1F1F1F;
}

.coffee-reviews__title span {
    color: #354e21;
}

.coffee-reviews__slider {
    display: flex;
    align-items: center;
    gap: 16px;
}

.coffee-reviews__viewport {
    overflow: hidden;
    flex: 1 1 auto;
    min-width: 0;
}

.coffee-reviews__track {
    display: flex;
    transition: transform 0.45s ease;
    will-change: transform;
}

.coffee-reviews__slide {
    flex: 0 0 50%;
    width: 50%;
    padding: 0 8px;
    box-sizing: border-box;
}

.coffee-reviews__card {
    min-height: 150px;
    height: 100%;
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(109, 148, 104, 0.12);
    border-radius: 20px;
    padding: 22px 22px 18px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

.coffee-reviews__text {
    font-size: 18px;
    line-height: 1.45;
    color: #1F1F1F;
}

.coffee-reviews__author {
    margin-top: 16px;
    font-size: 18px;
    line-height: 1.2;
    font-weight: 600;
    color: #354e21;
}

.coffee-reviews__arrow {
    width: 44px;
    height: 44px;
    border: none;
    border-radius: 50%;
    background: #354e21;
    color: #FFFFFF;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex: 0 0 44px;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.coffee-reviews__arrow:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

.coffee-reviews__arrow:disabled {
    opacity: 0.45;
    cursor: default;
    transform: none;
}

.coffee-reviews__arrow-icon {
    width: 20px;
    height: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.coffee-reviews__arrow-icon svg,
.coffee-reviews__arrow-icon img {
    width: 100%;
    height: 100%;
    display: block;
}

@media (max-width: 767px) {
    .coffee-reviews {
        padding: 30px 16px 40px;
    }

    .coffee-reviews__slider {
        gap: 10px;
    }

    .coffee-reviews__slide {
        flex: 0 0 100%;
        width: 100%;
        padding: 0;
    }

    .coffee-reviews__card {
        min-height: auto;
        border-radius: 16px;
        padding: 18px 16px;
    }

    .coffee-reviews__text,
    .coffee-reviews__author {
        font-size: 18px;
    }

    .coffee-reviews__arrow {
        width: 40px;
        height: 40px;
        flex: 0 0 40px;
    }

    .coffee-reviews__title {
        font-size: 22px;
    }
}

.coffee-articles {
    position: relative;
    background: #F4E6DA;
    padding: 40px 20px 70px;
    overflow: hidden;
}

.coffee-articles__container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.coffee-articles__title {
    margin: 0 0 34px;
    text-align: center;
    font-size: 30px;
    line-height: 1.15;
    font-weight: 500;
    text-transform: uppercase;
    color: #1F1F1F;
}

.coffee-articles__title span {
    color: #354e21;
}

.coffee-articles__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px 24px;
}

.coffee-articles__card {
    display: block;
    text-decoration: none;
    color: inherit;
}

.coffee-articles__image {
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 14px;
}

.coffee-articles__image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
    transition: transform 0.35s ease;
}

.coffee-articles__card:hover .coffee-articles__image img {
    transform: scale(1.03);
}

.coffee-articles__content {
    padding: 0 10px 0 10px;
}

.coffee-articles__card-title {
    margin: 0 0 8px;
    font-size: 18px;
    line-height: 1.35;
    font-weight: 500;
    color: #1F1F1F;
}

.coffee-articles__link {
    font-size: 18px;
    line-height: 1.3;
    color: #354e21;
    transition: opacity 0.3s ease;
}

.coffee-articles__card:hover .coffee-articles__link {
    opacity: 0.8;
}

.coffee-articles__beans {
    position: absolute;
    z-index: 1;
    pointer-events: none;
}

.coffee-articles__beans img {
    display: block;
    height: auto;
}

.coffee-articles__beans--top {
    top: 0px;
    left: -300px;
}

.coffee-articles__beans--top img {
    width: 100%;
}

.coffee-articles__beans--bottom {
    right: -600px;
    bottom: -350px;
}

.coffee-articles__beans--bottom img {
    width: 100%;
}

@media (max-width: 991px) {
    .coffee-articles {
        padding: 30px 20px 55px;
    }

    .coffee-articles__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px 20px;
    }

    .coffee-articles__image img {
        height: 220px;
    }

    .coffee-articles__beans--top img {
        width: 120px;
    }

    .coffee-articles__beans--bottom img {
        width: 130px;
    }

    .coffee-articles__title {
        font-size: 26px;
    }
}

@media (max-width: 575px) {
    .coffee-articles {
        padding: 24px 16px 40px;
    }

    .coffee-articles__title {
        font-size: 22px;
        margin-bottom: 24px;
    }

    .coffee-articles__grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .coffee-articles__image {
        border-radius: 16px;
        margin-bottom: 12px;
    }

    .coffee-articles__image img {
        height: 210px;
    }

    .coffee-articles__card-title,
    .coffee-articles__link {
        font-size: 18px;
    }

    .coffee-articles__beans--top img,
    .coffee-articles__beans--bottom img {
        width: 90px;
    }
}

.coffee-faq {
    background: #F4E6DA;
    padding: 40px 20px 70px;
}

.coffee-faq__container {
    max-width: 1200px;
    margin: 0 auto;
}

.coffee-faq__title {
    margin: 0 0 28px;
    text-align: center;
    font-size: 30px;
    line-height: 1.15;
    font-weight: 500;
    text-transform: uppercase;
    color: #1F1F1F;
}

.coffee-faq__title span {
    color: #354e21;
}

.coffee-faq__list {
    max-width: 860px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.coffee-faq__item {
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(109, 148, 104, 0.14);
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.coffee-faq__question {
    width: 100%;
    padding: 22px 24px;
    background: transparent;
    border: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    cursor: pointer;
    text-align: left;
}

.coffee-faq__question-text {
    font-size: 18px;
    line-height: 1.35;
    font-weight: 600;
    color: #1F1F1F;
}

.coffee-faq__icon {
    flex: 0 0 24px;
    width: 15px;
    height: 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.35s ease;
    color: #354e21;
}

.coffee-faq__icon svg,
.coffee-faq__icon img {
    width: 100%;
    height: 100%;
    display: block;
}

.coffee-faq__item.is-active .coffee-faq__icon {
    transform: rotate(180deg);
}

.coffee-faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.coffee-faq__answer-inner {
    padding: 0 24px 22px;
    font-size: 18px;
    line-height: 1.45;
    color: #4A4A4A;
}

@media (max-width: 767px) {
    .coffee-faq {
        padding: 30px 16px 40px;
    }

    .coffee-faq__title {
        font-size: 22px;
        margin-bottom: 22px;
    }

    .coffee-faq__list {
        gap: 12px;
    }

    .coffee-faq__item {
        border-radius: 16px;
    }

    .coffee-faq__question {
        padding: 18px 16px;
        gap: 12px;
    }

    .coffee-faq__question-text {
        font-size: 18px;
    }

    .coffee-faq__answer-inner {
        padding: 0 16px 18px;
        font-size: 18px;
        line-height: 1.4;
    }
}

.coffee-contacts {
    background: #F4E6DA;
    padding: 0px 20px 40px;
}

.coffee-contacts__container {
    max-width: 1200px;
    margin: 0 auto;
}

.coffee-contacts__wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.coffee-contacts__content {
    flex: 0 1 400px;
}

.coffee-contacts__title {
    margin: 0 0 26px;
    font-size: 30px;
    line-height: 1.15;
    font-weight: 500;
    text-transform: uppercase;
    color: #1F1F1F;
}

.coffee-contacts__list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.coffee-contacts__item {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    color: #1F1F1F;
}

a.coffee-contacts__item {
    transition: opacity 0.3s ease;
}

a.coffee-contacts__item:hover {
    opacity: 0.8;
}

.coffee-contacts__icon {
    width: 22px;
    height: 22px;
    flex: 0 0 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #354e21;
}

.coffee-contacts__icon svg,
.coffee-contacts__icon img {
    width: 100%;
    height: 100%;
    display: block;
}

.coffee-contacts__text {
    font-size: 18px;
    line-height: 1.4;
    color: #1F1F1F;
}

.coffee-contacts__socials {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 26px;
}

.coffee-contacts__social {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #354e21;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.coffee-contacts__social:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

.coffee-contacts__social svg,
.coffee-contacts__social img {
    width: 18px;
    height: 18px;
    display: block;
}

.coffee-contacts__map {
    flex: 0 1 800px;
}

.coffee-contacts__map-link {
    display: block;
    border-radius: 20px;
    overflow: hidden;
}

.coffee-contacts__map-link img {
    width: 100%;
    height: auto;
    display: block;
}

.coffee-contacts__map-frame {
    border-radius: 20px;
    overflow: hidden;
    height: 310px;
}

.coffee-contacts__map-frame iframe {
    width: 100%;
    height: 100%;
    display: block;
    border: none;
}

@media (max-width: 991px) {
    .coffee-contacts {
        padding: 30px 20px 30px;
    }

    .coffee-contacts__wrapper {
        flex-direction: column;
        gap: 28px;
    }

    .coffee-contacts__content,
    .coffee-contacts__map {
        flex: none;
        width: 100%;
    }
}

@media (max-width: 575px) {
    .coffee-contacts {
        padding: 24px 16px 30px;
    }

    .coffee-contacts__title {
        font-size: 30px;
        margin-bottom: 22px;
    }

    .coffee-contacts__list {
        gap: 16px;
    }

    .coffee-contacts__item {
        align-items: flex-start;
    }

    .coffee-contacts__text {
        font-size: 18px;
        line-height: 1.4;
    }

    .coffee-contacts__socials {
        margin-top: 22px;
    }

    .coffee-contacts__map-link {
        border-radius: 16px;
    }
}

.coffee-about-page-hero {
 position: relative;
    margin-top: -110px;
    padding-top: 170px;
    min-height: 420px;
    display: flex;
    align-items: flex-start;
    overflow: hidden;
    color: #fff;
    width: 100%;
    justify-content: flex-start;
    padding-bottom: 30px;
}

.coffee-about-page-hero__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

.coffee-about-page-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(0, 0, 0, 0.65) 0%,
        rgba(0, 0, 0, 0.35) 50%,
        rgba(0, 0, 0, 0) 100%
    );
    z-index: 2;
}

.coffee-about-page-hero__container {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 60px 400px 60px 0;
}

.coffee-about-page-hero__content {
    max-width: 100%;
}

.coffee-about-page-hero__breadcrumbs {
    font-size: 14px;
    opacity: 0.8;
    margin-bottom: 16px;
}

.coffee-about-page-hero__title {
    font-size: 30px;
    line-height: 1.25;
    margin: 0 0 18px;
    font-weight: 500;
    max-width: 800px;
}

.coffee-about-page-hero__text {
    font-size: 18px;
    line-height: 1.5;
    margin: 0;
    opacity: 0.9;
}

@media (max-width: 1100px) {
    .coffee-about-page-hero__container {
        position: relative;
        z-index: 3;
        max-width: 1300px;
        padding: 60px 20px 60px 20px;
    }
}

@media (max-width: 768px) {
    .coffee-about-page-hero {
        min-height: 320px;
    }

    .coffee-about-page-hero__title {
        font-size: 22px;
    }

    .coffee-about-page-hero__text {
        font-size: 16px;
    }

    .coffee-about-page-hero__container {
        padding: 40px 16px;
    }
}

.coffee-about-story {
    position: relative;
    background: #F4E6DA;
    padding: 40px 20px 60px;
    overflow: hidden;
}

.coffee-about-story__container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.coffee-about-story__title {
    margin: 0 0 30px;
    text-align: center;
    font-size: 30px;
    line-height: 1.15;
    font-weight: 500;
    text-transform: uppercase;
    color: #1F1F1F;
}

.coffee-about-story__title span {
    color: #354e21;
}

.coffee-about-story__wrapper {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 40px;
}

.coffee-about-story__media {
    position: relative;
    flex: 0 1 500px;
    min-height: 520px;
}

.coffee-about-story__image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
}

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

.coffee-about-story__image--top {
    width: 479px;
    height: 382px;
    margin-left: 60px;
}

.coffee-about-story__image--bottom {
    width: 287px;
    height: 260px;
    position: absolute;
    left: 0;
    bottom: 0;
}

.coffee-about-story__content {
    flex: 0 1 100%;
}

.coffee-about-story__text p {
    margin: 0 0 22px;
    font-size: 18px;
    line-height: 1.45;
    color: #1F1F1F;
}

.coffee-about-story__text p:last-child {
    margin-bottom: 0;
}

.coffee-about-story__beans {
    position: absolute;
    top: -130px;
    left: -300px;
    z-index: 1;
    pointer-events: none;
}

.coffee-about-story__beans img {
    width: 100%;
    height: auto;
    display: block;
}

@media (min-width: 1441px) {
    .coffee-about-story__beans {
        display: none;
    }
}

@media (max-width: 991px) {
    .coffee-about-story {
        padding: 30px 20px 50px;
    }

    .coffee-about-story__wrapper {
        flex-direction: column;
        gap: 28px;
    }

    .coffee-about-story__media,
    .coffee-about-story__content {
        flex: none;
        width: 100%;
        max-width: 100%;
    }

    .coffee-about-story__media {
        min-height: auto;
        padding-bottom: 0;
        display: flex;
        flex-direction: column;
        gap: 16px;
    }

    .coffee-about-story__image--top,
    .coffee-about-story__image--bottom {
        position: relative;
        left: auto;
        bottom: auto;
        margin: 0;
        width: 100%;
        max-width: 100%;
        height: auto;
    }

    .coffee-about-story__image--top img,
    .coffee-about-story__image--bottom img {
        width: 100%;
        height: 320px;
        object-fit: cover;
        display: block;
    }

    .coffee-about-story__content {
        text-align: left;
    }

    .coffee-about-story__text p {
        font-size: 18px;
        line-height: 1.45;
    }

    .coffee-about-story__beans {
        display: none;
    }
}

@media (max-width: 575px) {
    .coffee-about-story {
        padding: 24px 16px 40px;
    }

    .coffee-about-story__title {
        margin-bottom: 20px;
        font-size: 22px;
        line-height: 1.15;
    }

    .coffee-about-story__media {
        gap: 12px;
    }

    .coffee-about-story__image {
        border-radius: 16px;
    }

    .coffee-about-story__image--top img,
    .coffee-about-story__image--bottom img {
        height: 220px;
    }

    .coffee-about-story__text p {
        margin-bottom: 16px;
        font-size: 18px;
        line-height: 1.4;
    }
}

.coffee-why__bag__about {
    position: absolute;
    top: 400px;
    right: -400px;
    z-index: 1;
    pointer-events: none;
}

.coffee-why__bag__about img {
    display: block;
    width: 100%;
    height: auto;
}

@media (min-width: 1441px) {
    .coffee-why__bag__about {
        display: none;
    }
}

@media (max-width: 580px) {
    .coffee-why__bag__about img {
        display: none;
    }
}

.coffee-about-production {
    position: relative;
    background: #F4E6DA;
    padding: 40px 20px 80px;
    /* overflow: hidden; */
}

.coffee-about-production__container {
    max-width: 1300px;
    margin: 0 auto;
    position: relative;
}

.coffee-about-production__title {
    margin: 0 0 108px;
    text-align: center;
    font-size: 30px;
    line-height: 1.15;
    font-weight: 500;
    text-transform: uppercase;
    color: #1F1F1F;
}

.coffee-about-production__title span {
    color: #354e21;
}

.coffee-about-production__title__open {
    margin: 0 0 38px;
    text-align: center;
    font-size: 30px;
    line-height: 1.15;
    font-weight: 500;
    text-transform: uppercase;
    color: #1F1F1F;
}

.coffee-about-production__title__open span {
    color: #354e21;
}

.coffee-about-production__grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.coffee-about-production__card {
    box-shadow: 0 0 13px 0 rgba(98, 141, 104, 0.2);
background: #feeee2;
    border: 1px solid rgba(109, 148, 104, 0.18);
    border-radius: 20px;
    padding: 26px 30px 20px;
    min-height: 126px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.03);
}

.coffee-about-production__card-title {
    margin: 0 0 10px;
    font-size: 18px;
    line-height: 1.3;
    font-weight: 600;
    color: #354e21;
}

.coffee-about-production__card-text {
    margin: 0;
    font-size: 18px;
    line-height: 1.4;
    color: #1F1F1F;
}

.coffee-about-production__beans {
    position: absolute;
    z-index: 1;
    margin-top: -300px;
    width: 100%;
    left: 0;
    right: 0;
    bottom: 0;
}

.coffee-about-production__beans img {
    display: block;
    width: 100%;
    height: auto;
}

/* мягкое затухание снизу */
.coffee-about-production__beans::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 140px;
    background: linear-gradient(
        to bottom,
        rgba(244, 230, 218, 0) 0%,
        rgba(244, 230, 218, 0.7) 60%,
        #F4E6DA 100%
    );
    pointer-events: none;
}

.coffee-about-production__title__ass {
    margin: 40px auto;
    text-align: center;
    font-size: 30px;
    line-height: 1.15;
    font-weight: 500;
    text-transform: uppercase;
    color: #1F1F1F;
    max-width: 800px;
}

.coffee-about-production__title__ass span {
    color: #354e21;
}

@media (max-width: 991px) {
    .coffee-about-production__title {
        margin: 0 0 28px;
        font-size: 22px;
    }

    .coffee-about-production__title__open {
        margin: 0 0 28px;
        font-size: 22px;
    }

    .coffee-about-production {
        padding: 30px 20px 60px;
    }

    .coffee-about-production__grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .coffee-about-production__card {
        min-height: auto;
    }

    .coffee-about-production__beans {
        margin-top: 0;
    }
}

@media (max-width: 575px) {
    .coffee-about-production {
        padding: 24px 16px 40px;
    }

    .coffee-about-production__title {
        margin-bottom: 22px;
        font-size: 22px;
    }

    .coffee-about-production__title__open {
        margin-bottom: 22px;
        font-size: 22px;
    }

    .coffee-about-production__card {
        border-radius: 16px;
        padding: 18px 16px;
    }

    .coffee-about-production__card-title,
    .coffee-about-production__card-text {
        font-size: 18px;
    }

    .coffee-about-production__beans::after {
        height: 90px;
    }

    .coffee-about-production__title__ass {
        margin: 0px auto;
        text-align: center;
        font-size: 22px;
        line-height: 1.15;
        font-weight: 500;
        text-transform: uppercase;
        color: #1F1F1F;
        max-width: 800px;
    }  
}

.coffee-about-atmosphere {
    position: relative;
    background: #F4E6DA;
    padding: 40px 20px 90px;
    overflow: hidden;
}

.coffee-about-atmosphere__container {
    max-width: 1300px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.coffee-about-atmosphere__title {
    margin: 0 0 30px;
    text-align: center;
    font-size: 30px;
    line-height: 1.15;
    font-weight: 500;
    text-transform: uppercase;
    color: #1F1F1F;
}

.coffee-about-atmosphere__title span {
    color: #354e21;
}

.coffee-about-atmosphere__grid {
    display: grid;
    grid-template-columns: 580px 1fr;
    gap: 16px;
    align-items: stretch;
}

.coffee-about-atmosphere__left {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 190px;
    gap: 16px;
}

.coffee-about-atmosphere__small,
.coffee-about-atmosphere__right {
    border-radius: 20px;
    overflow: hidden;
}

.coffee-about-atmosphere__small {
    height: 190px;
}

.coffee-about-atmosphere__right {
    height: 396px;
}

.coffee-about-atmosphere__small img,
.coffee-about-atmosphere__right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.coffee-about-atmosphere__beans {
    position: absolute;
    left: -350px;
    bottom: -110px;
    z-index: 1;
    pointer-events: none;
}

.coffee-about-atmosphere__beans img {
    display: block;
    width: 100%;
    height: auto;
}

@media (max-width: 991px) {
    .coffee-about-atmosphere {
        padding: 30px 20px 70px;
    }

    .coffee-about-atmosphere__grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .coffee-about-atmosphere__right {
        order: 1;
        height: 360px;
    }

    .coffee-about-atmosphere__left {
        order: 2;
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 180px;
        gap: 16px;
    }

    .coffee-about-atmosphere__small {
        height: 180px;
    }

    .coffee-about-atmosphere__beans img {
        width: 110px;
    }
}

@media (max-width: 575px) {
    .coffee-about-atmosphere {
        padding: 24px 16px 50px;
    }

    .coffee-about-atmosphere__title {
        margin-bottom: 22px;
        font-size: 22px;
    }

    .coffee-about-atmosphere__grid {
        gap: 12px;
    }

    .coffee-about-atmosphere__left {
        grid-template-columns: 1fr 1fr;
        grid-auto-rows: 130px;
        gap: 12px;
    }

    .coffee-about-atmosphere__small,
    .coffee-about-atmosphere__right {
        border-radius: 16px;
    }

    .coffee-about-atmosphere__small {
        height: 130px;
    }

    .coffee-about-atmosphere__right {
        height: 240px;
    }

    .coffee-about-atmosphere__beans img {
        width: 90px;
    }
}

.coffee-about-numbers {
    background: #F4E6DA;
    padding: 40px 20px 70px;
    overflow: hidden;
}

.coffee-about-numbers__container {
    max-width: 1200px;
    margin: 0 auto;
}

.coffee-about-numbers__title {
    margin: 0 0 28px;
    text-align: center;
    font-size: 30px;
    line-height: 1.15;
    font-weight: 500;
    text-transform: uppercase;
    color: #1F1F1F;
}

.coffee-about-numbers__title span {
    color: #354e21;
}

.coffee-about-numbers__wrapper {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 20px;
    align-items: stretch;
}

.coffee-about-numbers__slider {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    min-width: 0;
}

.coffee-about-numbers__track {
    display: flex;
    transition: transform 0.5s ease;
    will-change: transform;
}

.coffee-about-numbers__slide {
    flex: 0 0 100%;
    min-width: 100%;
}

.coffee-about-numbers__slide img {
    width: 100%;
    height: 100%;
    max-height: 470px;
    object-fit: cover;
    display: block;
}

.coffee-about-numbers__dots {
    position: absolute;
    left: 50%;
    bottom: 18px;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 2;
}

.coffee-about-numbers__dot {
    width: 10px;
    height: 10px;
    border: none;
    border-radius: 50%;
    padding: 0;
    background: rgba(255, 255, 255, 0.45);
    cursor: pointer;
    transition: 0.3s ease;
}

.coffee-about-numbers__dot.is-active {
    background: #FFFFFF;
}

.coffee-about-numbers__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.coffee-about-numbers__card {
    border: 1px solid #628d68;
    border-radius: 18px;
    padding: 23px 16px;
    min-height: 100px;
}

.coffee-about-numbers__card-title {
    margin-bottom: 8px;
    font-size: 18px;
    line-height: 1.25;
    font-weight: 600;
    color: #354e21;
}

.coffee-about-numbers__card-text {
    font-size: 17px;
    line-height: 1.35;
    color: #1F1F1F;
}

@media (max-width: 991px) {
    .coffee-about-numbers {
        padding: 30px 20px 55px;
    }

    .coffee-about-numbers__wrapper {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .coffee-about-numbers__slide img {
        max-height: 360px;
    }

    .coffee-about-numbers__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575px) {
    .coffee-about-numbers {
        padding: 24px 16px 40px;
    }

    .coffee-about-numbers__title {
        margin-bottom: 22px;
        font-size: 30px;
    }

    .coffee-about-numbers__slide img {
        max-height: 250px;
    }

    .coffee-about-numbers__grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .coffee-about-numbers__card {
        min-height: auto;
        border-radius: 16px;
        padding: 16px 14px;
    }

    .coffee-about-numbers__card-title,
    .coffee-about-numbers__card-text {
        font-size: 18px;
    }
}

.coffee-catalog {
    position: relative;
    background: #F4E6DA;
    padding: 40px 20px 70px;
    overflow: hidden;
}

.coffee-catalog__container {
    max-width: 1300px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.coffee-catalog__filters {
    margin-bottom: 18px;
}

.coffee-catalog__search-form {
    margin-bottom: 10px;
}

.coffee-catalog__search {
    width: 100%;
    height: 48px;
    border: 1px solid rgba(109, 148, 104, 0.45);
    border-radius: 10px;
    background: transparent;
    padding: 0 16px;
    font-size: 16px;
    color: #1F1F1F;
    outline: none;
}

.coffee-catalog__search::placeholder {
    color: #6A6A6A;
}

.coffee-catalog__selects {
    display: flex;
    gap: 12px;
}

.coffee-catalog__select {
    width: 100%;
    max-width: 190px;
    height: 46px;
    border: 1px solid rgba(109, 148, 104, 0.45);
    border-radius: 10px;
    background-color: transparent;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%236D9468' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 12px 8px;
    padding: 0 30px 0 14px;
    font-size: 16px;
    color: #1F1F1F;
    outline: none;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

.coffee-catalog__select::-ms-expand {
    display: none;
}

.coffee-catalog__layout {
    display: grid;
    grid-template-columns: 291px 1fr;
    gap: 18px;
    align-items: start;
}

.coffee-catalog__sidebar {
    position: relative;
}

.coffee-catalog__sidebar-sticky {
    position: sticky;
    top: 120px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.coffee-catalog__category {
    width: 100%;
    min-height: 53px;
    border: none;
    border-radius: 10px;
    background: #354e21;
    color: #FFFFFF;
    font-size: 18px;
    line-height: 1.1;
    font-weight: 400;
    cursor: pointer;
    transition: opacity 0.3s ease, transform 0.3s ease, background 0.3s ease;
}

.coffee-catalog__category:hover {
    opacity: 0.92;
    transform: translateY(-1px);
}

.coffee-catalog__category.is-active {
    background: #53774F;
}

.coffee-catalog__content {
    min-width: 0;
}

.coffee-catalog__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.coffee-catalog__card {
    text-decoration: none;
    color: inherit;
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(109, 148, 104, 0.1);
    border-radius: 16px;
    padding: 18px 14px 14px;
    min-height: 172px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.coffee-catalog__card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.04);
}

.coffee-catalog__card-image {
    width: 92px;
    height: 92px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.coffee-catalog__card-image img {
    max-width: 100%;
    max-height: 100%;
    display: block;
}

.coffee-catalog__card-title {
    margin: 0 0 6px;
    font-size: 17px;
    line-height: 1.3;
    font-weight: 500;
    color: #1F1F1F;
}

.coffee-catalog__card-price {
    margin-bottom: 8px;
    font-size: 17px;
    line-height: 1.2;
    font-weight: 700;
    color: #1F1F1F;
}

.coffee-catalog__card-location {
    font-size: 15px;
    line-height: 1.2;
    color: #354e21;
}

.coffee-catalog__beans {
    position: absolute;
    left: -400px;
    bottom: -200px;
    z-index: -1;
    pointer-events: none;
}

.coffee-catalog__beans img {
    display: block;
    width: 100%;
    height: auto;
}

.coffee-catalog__card {
    transition: opacity 0.25s ease, transform 0.25s ease;
}

@media (max-width: 1199px) {
    .coffee-catalog__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 991px) {
    .coffee-catalog {
        padding: 30px 20px 55px;
    }

    .coffee-catalog__layout {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .coffee-catalog__sidebar {
        order: 1;
    }

    .coffee-catalog__content {
        order: 2;
    }

    .coffee-catalog__sidebar-sticky {
        position: static;
        top: auto;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }

    .coffee-catalog__grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .coffee-catalog__selects {
        flex-wrap: wrap;
    }

    .coffee-catalog__select {
        max-width: none;
        flex: 1 1 220px;
    }

    .coffee-catalog__beans {
        display: none;
    }
}

@media (max-width: 767px) {
    .coffee-catalog__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .coffee-catalog__sidebar-sticky {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575px) {
    .coffee-catalog {
        padding: 24px 16px 40px;
    }

    .coffee-catalog__filters {
        margin-bottom: 16px;
    }

    .coffee-catalog__search {
        height: 44px;
        font-size: 16px;
    }

    .coffee-catalog__selects {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .coffee-catalog__select {
        width: 100%;
        max-width: none;
        height: 44px;
        font-size: 16px;
        flex: 1 1 45px;
    }

    .coffee-catalog__sidebar-sticky {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .coffee-catalog__category {
        min-height: 44px;
        font-size: 16px;
    }

    .coffee-catalog__grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .coffee-catalog__card {
        min-height: 160px;
        border-radius: 14px;
        padding: 14px 10px 12px;
    }

    .coffee-catalog__card-image {
        width: 78px;
        height: 78px;
        margin-bottom: 10px;
    }

    .coffee-catalog__card-title,
    .coffee-catalog__card-price {
        font-size: 16px;
    }

    .coffee-catalog__card-location {
        font-size: 14px;
    }
}

.coffee-lunch-page__actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.coffee-lunch-page__button {
    min-width: 268px;
    min-height: 47px;
    padding: 15px 40px;
    border-radius: 100px;
    background: #628D68;
    color: #FFFFFF;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    line-height: 1.2;
    font-weight: 500;
    text-align: center;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.coffee-lunch-page__button:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

@media (max-width: 767px) {
    .coffee-lunch-page__actions {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }

    .coffee-lunch-page__button {
        width: 100%;
        min-width: 0;
    }
}

.coffee-lunch-about {
    position: relative;
    background: #F4E6DA;
    padding: 40px 20px 70px;
    overflow: hidden;
}

.coffee-lunch-about__container {
    max-width: 1300px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.coffee-lunch-about__title {
    margin: 0 0 34px;
    text-align: center;
    font-size: 30px;
    line-height: 1.15;
    font-weight: 500;
    text-transform: uppercase;
    color: #1F1F1F;
    max-width: 800px;
    margin: 30px auto;
}

.coffee-lunch-about__title span {
    color: #354e21;
}

.coffee-lunch-about__wrapper {
    display: grid;
    grid-template-columns: 1fr 680px;
    gap: 24px;
    align-items: stretch;
}

.coffee-lunch-about__content {
    min-width: 0;
    height: 100%;
}

.coffee-lunch-about__text {
    margin-bottom: 22px;
}

.coffee-lunch-about__text p {
    margin: 0 0 18px;
    font-size: 18px;
    line-height: 1.45;
    color: #1F1F1F;
}

.coffee-lunch-about__text p:last-child {
    margin-bottom: 0;
}

.coffee-lunch-about__features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.coffee-lunch-about__feature {
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(109, 148, 104, 0.14);
    border-radius: 16px;
    padding: 16px 14px;
    text-align: center;
}

.coffee-lunch-about__feature h3 {
    margin: 0 0 8px;
    font-size: 18px;
    line-height: 1.2;
    font-weight: 600;
    color: #354e21;
}

.coffee-lunch-about__feature p {
    margin: 0;
    font-size: 17px;
    line-height: 1.35;
    color: #1F1F1F;
}

.coffee-lunch-about__media {
    border-radius: 20px;
    overflow: hidden;
    min-height: 320px;
}

.coffee-lunch-about__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.coffee-lunch-about__beans {
    position: absolute;
    left: 0;
    bottom: 10px;
    z-index: 1;
    pointer-events: none;
}

.coffee-lunch-about__beans img {
    display: block;
    width: 160px;
    height: auto;
}

@media (max-width: 991px) {
    .coffee-lunch-about {
        padding: 30px 20px 55px;
    }

    .coffee-lunch-about__wrapper {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .coffee-lunch-about__media {
        order: -1;
        height: 340px;
    }

    .coffee-lunch-about__beans {
        display: none;
    }
}

@media (max-width: 575px) {
    .coffee-lunch-about {
        padding: 24px 16px 40px;
    }

    .coffee-lunch-about__title {
        margin-bottom: 24px;
        font-size: 30px;
    }

    .coffee-lunch-about__text p {
        font-size: 18px;
        line-height: 1.4;
    }

    .coffee-lunch-about__features {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .coffee-lunch-about__feature {
        border-radius: 14px;
        padding: 14px 12px;
    }

    .coffee-lunch-about__feature h3,
    .coffee-lunch-about__feature p {
        font-size: 18px;
    }

    .coffee-lunch-about__media {
        height: 240px;
        border-radius: 16px;
    }
}   

.obedi-why {
  position: relative;
  padding: 0px 0px 40px;
  background: #F4E7DD;
  overflow: hidden;
}

.obedi-why__container {
  position: relative;
  z-index: 2;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
}

.obedi-why__beans {
  position: absolute;
  top: -23px;
  left: -200px;
  z-index: 1;
  pointer-events: none;
}

.obedi-why__beans img {
  display: block;
  width: 100%;
  height: auto;
}

.obedi-why__title {
  margin: 0 0 40px;
  text-align: center;
  font-size: 30px;
  line-height: 1.1;
  font-weight: 500;
  text-transform: uppercase;
  color: #1E1E1E;
}

.obedi-why__title span {
  color: #6F9B6D;
}

.obedi-why__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.obedi-why__card {
  position: relative;
  display: block;
  min-height: 321px;
  border-radius: 20px;
  overflow: hidden;
  text-decoration: none;
}

.obedi-why__card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.obedi-why__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.05) 35%,
    rgba(0, 0, 0, 0.55) 100%
  );
  z-index: 1;
}

.obedi-why__text {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 2;
  color: #fff;
  font-size: 16px;
  line-height: 1.2;
  font-weight: 400;
}

.obedi-why__card:hover img {
  transform: scale(1.05);
}

@media (max-width: 1199px) {
  .obedi-why__title {
    font-size: 26px;
    margin-bottom: 32px;
  }

  .obedi-why__grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .obedi-why__card {
    min-height: 300px;
  }

  .obedi-why__text {
    font-size: 16px;
  }

  .obedi-why__beans {
    top: 140px;
  }

  .obedi-why__beans img {
    width: 100%;
  }
}

@media (max-width: 767px) {
  .obedi-why {
    padding: 0px 0 40px;
  }

  .obedi-why__container {
    padding: 0 16px;
  }

  .obedi-why__title {
    font-size: 22px;
    margin-bottom: 24px;
  }

  .obedi-why__grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .obedi-why__card {
    min-height: 280px;
    border-radius: 16px;
  }

  .obedi-why__text {
    left: 14px;
    right: 14px;
    bottom: 20px;
    font-size: 16px;
    line-height: 1.25;
  }

  .obedi-why__beans {
    top: 100px;
    left: -20px;
    display: none;
  }

  .obedi-why__beans img {
    width: 80px;
  }
}

.obedi-midday {
  padding: 0px 0 40px;
  background: #F4E7DD;
  overflow: hidden;
}

.obedi-midday__container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 0px;
}

.obedi-midday__title {
  margin: 0 0 40px;
  text-align: center;
  font-size: 30px;
  line-height: 1.1;
  font-weight: 500;
  text-transform: uppercase;
  color: #000;
}

.obedi-midday__title span {
  color: #628D68;
}

.obedi-midday__slider {
  overflow: hidden;
}

.obedi-midday__track {
  display: flex;
  gap: 12px;
  transition: transform 0.4s ease;
  will-change: transform;
}

.obedi-midday__slide {
  flex: 0 0 calc((100% - 24px) / 3);
  min-width: calc((100% - 24px) / 3);
}

.obedi-midday__card {
  position: relative;
  height: 256px;
  border-radius: 20px;
  overflow: hidden;
}

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

.obedi-midday__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.08) 35%,
    rgba(0, 0, 0, 0.55) 100%
  );
}

.obedi-midday__text {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 2;
  font-size: 16px;
  line-height: 1.2;
  font-weight: 400;
  color: #fff;
}

.obedi-midday__dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
}

.obedi-midday__dot {
    width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(30, 30, 30, 0.2);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: all 0.25s ease;
}

.obedi-midday__dot.active {
   background: #628D68;
  transform: scale(1.2);
}

@media (max-width: 991px) {
  .obedi-midday {
    padding: 0px 0 40px;
  }

  .obedi-midday__slide {
    flex: 0 0 calc((100% - 12px) / 2);
    min-width: calc((100% - 12px) / 2);
  }
}

@media (max-width: 767px) {
  .obedi-midday {
    padding: 0px 0 40px;
  }

  .obedi-midday__container {
    padding: 0 16px;
  }

  .obedi-midday__title {
    margin-bottom: 24px;
    font-size: 22px;
  }

  .obedi-midday__track {
    gap: 0;
  }

  .obedi-midday__slide {
    flex: 0 0 100%;
    min-width: 100%;
  }

  .obedi-midday__card {
    height: 256px;
    border-radius: 16px;
  }

  .obedi-midday__text {
    left: 14px;
    right: 14px;
    bottom: 14px;
    font-size: 16px;
  }
}

.vakansii-page {
  overflow: visible !important;
}

.vakansii-single {
  padding: 80px 0;
  background: #F4E7DD;
  overflow: hidden;
}

.vakansii-single__container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0;
  overflow: visible !important;
}

.vakansii-single__wrapper {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 32px;
  align-items: start;
  position: relative;
  overflow: visible !important;
}

.vakansii-single__content {
  min-width: 0;
  background: #F8EEE6;
  border-radius: 20px;
  padding: 32px;
}

.vakansii-single__title {
  margin: 0 0 24px;
  font-size: 30px;
  line-height: 1.2;
  font-weight: 600;
}

.vakansii-single__text {
  font-size: 16px;
  line-height: 1.6;
  color: #080808;
}

.vakansii-single__text p {
  margin: 0 0 16px;
}

.vakansii-single__text ul {
  margin: 0 0 16px 20px;
}

.vakansii-single__sidebar {
  position: static;
}

.vakansii-single__sidebar-box {
   position: relative;
  top: 0;
  transition: none;
  background: #F8EEE6;
  border-radius: 20px;
  padding: 24px;
}

.vakansii-single__sidebar-title {
  margin: 0 0 20px;
  font-size: 18px;
  font-weight: 600;
}

.vakansii-single__sidebar-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.vakansii-single__sidebar-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-decoration: none;
  color: #000;
  font-size: 16px;
  transition: .3s;
}

.vakansii-single__sidebar-item:hover,
.vakansii-single__sidebar-item.is-active {
  color: #628D68;
}

.vakansii-single__sidebar-arrow {
  font-size: 16px;
}

.vakansii-single__sidebar-box.is-fixed {
  position: fixed;
  top: 120px;
  width: 320px;
  z-index: 20;
}

.vakansii-single__sidebar-box.is-bottom {
  position: absolute;
  top: auto;
  bottom: 0;
  right: 0;
  width: 320px;
  z-index: 20;
}

@media (max-width: 1100px) {
.vakansii-single {
    padding: 60px 20px;
  }
}


@media (max-width: 991px) {
    .vakansii-single__sidebar-box,
  .vakansii-single__sidebar-box.is-fixed,
  .vakansii-single__sidebar-box.is-bottom {
    position: static;
    width: 100%;
  }

  

  .vakansii-single__wrapper {
    grid-template-columns: 1fr;
  }

  .vakansii-single__sidebar {
    order: -1;
  }

  .vakansii-single__sidebar-box {
    position: static;
    top: auto;
  }
}

@media (max-width: 767px) {
  .vakansii-single__container {
    padding: 0 16px;
  }

  .vakansii-single__content {
    padding: 20px;
    border-radius: 16px;
  }

  .vakansii-single__sidebar-box {
    padding: 20px;
    border-radius: 16px;
  }

  .vakansii-single__title {
    font-size: 24px;
  }

  .vakansii-single {
    padding: 60px 0px;
  }
}

.vakansii-archive {
  padding: 40px 0 80px;
  background: #F4E7DD;
}

.vakansii-archive__container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0;
}

.vakansii-archive__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.vakansii-archive__card {
  display: block;
  text-decoration: none;
  color: #1F1F1F;
}

.vakansii-archive__image {
  position: relative;
  height: 450px;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 14px;
}

.vakansii-archive__image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.vakansii-archive__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.04) 20%,
    rgba(0, 0, 0, 0.28) 100%
  );
}

.vakansii-archive__title {
  font-size: 20px;
  line-height: 1.3;
  font-weight: 500;
  color: #1F1F1F;
  transition: color 0.3s ease;
}

.vakansii-archive__card:hover .vakansii-archive__image img {
  transform: scale(1.05);
}

.vakansii-archive__card:hover .vakansii-archive__title {
  color: #628D68;
}

.vakansii-archive__empty {
  font-size: 18px;
  line-height: 1.4;
  color: #1F1F1F;
  text-align: center;
}

.vakansii-single__decor {
  position: absolute;
  right: -120px;
  top: 240px;
  width: 580px;
  z-index: 1;
  pointer-events: none;
  transform: rotate(15deg);
}

.vakansii-single__decor img {
  display: block;
  width: 100%;
  height: auto;
}

@media (max-width: 991px) {
  .vakansii-archive {
    padding: 30px 0 60px;
  }

  .vakansii-archive__container {
    padding: 0 20px;
  }

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

  .vakansii-archive__image {
    height: 350px;
  }
}

@media (max-width: 767px) {
  .vakansii-archive {
    padding: 24px 0 40px;
  }

  .vakansii-archive__container {
    padding: 0 16px;
  }

  .vakansii-archive__grid {
    grid-template-columns: 1fr 1fr;
    gap: 18px;
  }

  .vakansii-archive__image {
    height: 300px;
    border-radius: 16px;
    margin-bottom: 12px;
  }

  .vakansii-archive__title {
    font-size: 18px;
  }
}

.vakansii-apply {
  padding: 0 0 40px;
  background: #F4E7DD;
}

.vakansii-apply__container {
  max-width: 100%;
  margin: 0 auto;
  min-height: 236px;
  border-radius: 0;
  overflow: hidden;
  background-image:
    linear-gradient(to right, rgba(0, 0, 0, 0.74) 0%, rgba(0, 0, 0, 0.48) 35%, rgba(0, 0, 0, 0.12) 62%, rgba(0, 0, 0, 0) 100%),
    url('/wp-content/uploads/2026/04/rectangle-49.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.vakansii-apply__content {
  max-width: 720px;
  padding: 70px 68px 70px;
}

.vakansii-apply__title {
  margin: 0 0 18px;
  font-size: 38px;
  line-height: 1.1;
  font-weight: 500;
  color: #FFFFFF;
}

.vakansii-apply__text {
  margin: 0;
  max-width: 560px;
  font-size: 18px;
  line-height: 1.45;
  color: #FFFFFF;
}

.vakansii-apply__button {
  margin-top: 26px;
  min-width: 194px;
  min-height: 52px;
  padding: 14px 32px;
  border-radius: 999px;
  background: #F4E7DD;
  color: #1F1F1F;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 16px;
  line-height: 1;
  font-weight: 500;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.vakansii-apply__button:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

@media (max-width: 991px) {
  

  .vakansii-apply__content {
    max-width: 620px;
    padding: 36px 28px;
  }

  .vakansii-apply__title {
    font-size: 30px;
  }

  .vakansii-apply__text {
    font-size: 18px;
  }
}

@media (max-width: 767px) {
  

  .vakansii-apply__container {
    background-image:
      linear-gradient(to bottom, rgba(0, 0, 0, 0.76) 0%, rgba(0, 0, 0, 0.52) 48%, rgba(0, 0, 0, 0.18) 100%),
      url('/wp-content/uploads/2026/04/rectangle-49.png');
    background-position: center;
  }

  .vakansii-apply__content {
    padding: 32px 20px 28px;
  }

  .vakansii-apply__title {
    font-size: 30px;
    margin-bottom: 16px;
  }

  .vakansii-apply__text {
    font-size: 18px;
    line-height: 1.4;
  }

  .vakansii-apply__button {
    width: 100%;
    margin-top: 22px;
  }
}

.otkrit-kofeynyu-model {
  position: relative;
  padding: 40px 0 60px;
  background: #F4E7DD;
  overflow: hidden;
}

.otkrit-kofeynyu-model__container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 20px 0px;
  position: relative;
  z-index: 2;
}

.otkrit-kofeynyu-model__wrapper {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.otkrit-kofeynyu-model__media {
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-width: 0;
}

.otkrit-kofeynyu-model__image {
  border-radius: 20px;
  overflow: hidden;
  width: 100%;
}

.otkrit-kofeynyu-model__image--big {
  height: 317px;
}

.otkrit-kofeynyu-model__image--small {
  height: 242px;
}

.otkrit-kofeynyu-model__image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.otkrit-kofeynyu-model__content {
  position: relative;
  z-index: 2;
  min-width: 0;
}

.otkrit-kofeynyu-model__title {
  margin: 0 0 20px;
  font-size: 30px;
  line-height: 1.1;
  font-weight: 500;
  text-transform: uppercase;
  color: #1F1F1F;
}

.otkrit-kofeynyu-model__title span {
  color: #354e21;
}

.otkrit-kofeynyu-model__text {
  margin-bottom: 22px;
}

.otkrit-kofeynyu-model__text p {
  margin: 0 0 18px;
  font-size: 18px;
  line-height: 1.5;
  color: #1F1F1F;
}

.otkrit-kofeynyu-model__text p:last-child {
  margin-bottom: 0;
}

.otkrit-kofeynyu-model__features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.otkrit-kofeynyu-model__feature {
  min-height: 64px;
  padding: 16px 14px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.28);
  font-size: 18px;
  line-height: 1.35;
  color: #1F1F1F;
  display: flex;
  align-items: center;
}

.otkrit-kofeynyu-model__beans {
  position: absolute;
top: -350px;
    right: -300px;
  z-index: 1;
  pointer-events: none;
}

.otkrit-kofeynyu-model__beans img {
  display: block;
  width: 100%;
  height: auto;
}

@media (max-width: 991px) {
  .otkrit-kofeynyu-model {
    padding: 30px 0 50px;
  }

  .otkrit-kofeynyu-model__container {
    padding: 0 20px;
  }

  .otkrit-kofeynyu-model__wrapper {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .otkrit-kofeynyu-model__title {
    font-size: 26px;
  }

  .otkrit-kofeynyu-model__image--big {
    height: 320px;
  }

  .otkrit-kofeynyu-model__image--small {
    height: 180px;
  }

  .otkrit-kofeynyu-model__beans {
    top: 0;
    right: -60px;
  }

  .otkrit-kofeynyu-model__beans img {
    width: 150px;
  }
}

@media (max-width: 767px) {
  .otkrit-kofeynyu-model {
    padding: 24px 0 40px;
  }

  .otkrit-kofeynyu-model__container {
    padding: 0 16px;
  }

  .otkrit-kofeynyu-model__wrapper {
    gap: 16px;
  }

  .otkrit-kofeynyu-model__title {
    font-size: 22px;
    margin-bottom: 16px;
  }

  .otkrit-kofeynyu-model__text {
    margin-bottom: 18px;
  }

  .otkrit-kofeynyu-model__text p {
    font-size: 18px;
    line-height: 1.4;
    margin-bottom: 14px;
  }

  .otkrit-kofeynyu-model__features {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .otkrit-kofeynyu-model__feature {
    min-height: 58px;
    padding: 14px 12px;
    border-radius: 10px;
    font-size: 16px;
    line-height: 1.3;
  }

  .otkrit-kofeynyu-model__image {
    border-radius: 16px;
  }

  .otkrit-kofeynyu-model__image--big {
    height: 250px;
  }

  .otkrit-kofeynyu-model__image--small {
    height: 130px;
  }

  .otkrit-kofeynyu-model__beans {
    display: none;
  }

  
}

@media (max-width: 575px) {
  .otkrit-kofeynyu-model__features {
    grid-template-columns: 1fr;
  }

  .otkrit-kofeynyu-model__beans {
    display: none;
  }
}

.etapy-zapuska {
  padding: 40px 0 60px;
  background: #F4E7DD;
}

.etapy-zapuska__container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
}

.etapy-zapuska__title {
  margin: 0 0 34px;
  text-align: center;
  font-size: 30px;
  line-height: 1.1;
  font-weight: 500;
  text-transform: uppercase;
  color: #1F1F1F;
}

.etapy-zapuska__title span {
  color: #354e21;
}

.etapy-zapuska__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px 20px;
}

.etapy-zapuska__card {
  min-height: 166px;
  padding: 22px 16px 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.22);
}

.etapy-zapuska__number {
  margin-bottom: 26px;
  font-size: 18px;
  line-height: 1;
  font-weight: 600;
  color: #354e21;
}

.etapy-zapuska__card-title {
  margin: 0 0 10px;
  font-size: 18px;
  line-height: 1.3;
  font-weight: 600;
  color: #1F1F1F;
}

.etapy-zapuska__card-text {
  margin: 0;
  font-size: 18px;
  line-height: 1.35;
  color: #1F1F1F;
}

@media (max-width: 991px) {
  .etapy-zapuska {
    padding: 30px 0 50px;
  }

  .etapy-zapuska__container {
    padding: 0 20px;
  }

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

  .etapy-zapuska__title {
    font-size: 26px;
    margin-bottom: 28px;
  }
}

@media (max-width: 767px) {
  .etapy-zapuska {
    padding: 24px 0 40px;
  }

  .etapy-zapuska__container {
    padding: 0 16px;
  }

  .etapy-zapuska__grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .etapy-zapuska__card {
    min-height: auto;
    padding: 18px 14px 16px;
    border-radius: 16px;
  }

  .etapy-zapuska__title {
    font-size: 22px;
    margin-bottom: 22px;
  }

  .etapy-zapuska__number {
    margin-bottom: 18px;
    font-size: 18px;
  }

  .etapy-zapuska__card-title,
  .etapy-zapuska__card-text {
    font-size: 16px;
  }
}

.contact__page {
    padding-top: 40px;
    overflow: hidden;
    position: relative;
}

.coffee-contacts__beans {
    position: absolute;
    right: -338px;
    top: -315px;
    z-index: 1;
    pointer-events: none;
}

.coffee-contacts__beans img {
    display: block;
    width: 100%;
    height: auto;
}

.coffee-feedback {
    padding: 0 0 30px;
    background: #F4E6DA;
}

.coffee-feedback__container {
    max-width: 100%;
    margin: 0 auto;
    min-height: 225px;
    padding: 98px 76px 98px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.coffee-feedback__content {
    max-width: 690px;
}

.coffee-feedback__title {
    margin: 0 0 26px;
    font-size: 30px;
    line-height: 1.15;
    font-weight: 500;
    color: #FFFFFF;
}

.coffee-feedback__form {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.coffee-feedback__fields {
    display: flex;
    gap: 12px;
    width: 100%;
    margin-bottom: 20px;
}

.coffee-feedback__input {
    width: 100%;
    max-width: 314px;
    height: 47px;
    border: none;
    border-radius: 999px;
    background: #F6E9DE;
    padding: 0 18px;
    font-size: 14px;
    line-height: 1;
    color: #1F1F1F;
    outline: none;
}

.coffee-feedback__input::placeholder {
    color: rgba(31, 31, 31, 0.45);
}

.coffee-feedback__button {
    min-width: 314px;
    height: 47px;
    border: none;
    border-radius: 999px;
    background: #F6E9DE;
    color: #1F1F1F;
    font-size: 16px;
    line-height: 1;
    font-weight: 500;
    cursor: pointer;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.coffee-feedback__button:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

@media (max-width: 991px) {
    .coffee-feedback {
        padding: 0 0px 30px;
    }

    .coffee-feedback__container {
        padding: 32px 28px;
    }

    .coffee-feedback__title {
        font-size: 26px;
    }
}

@media (max-width: 767px) {
    .coffee-feedback {
        padding: 0 0px 24px;
    }

    .coffee-feedback__container {
        padding: 28px 20px;
        
        background-image:
            linear-gradient(to bottom, rgba(0, 0, 0, 0.78) 0%, rgba(0, 0, 0, 0.58) 46%, rgba(0, 0, 0, 0.22) 100%),
            url('/wp-content/uploads/2026/04/rectangle-49.png');
        background-position: center;
    }

    .coffee-feedback__title {
        font-size: 22px;
        margin-bottom: 20px;
    }

    .coffee-feedback__fields {
        flex-direction: column;
        gap: 10px;
        margin-bottom: 12px;
    }

    .coffee-feedback__input,
    .coffee-feedback__button {
        max-width: 100%;
        width: 100%;
    }
}

.adres-kofeen {
  padding: 40px 0 60px;
  background: #F4E7DD;
}

.adres-kofeen__container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
}

.adres-kofeen__title {
  text-align: center;
  font-size: 30px;
  margin-bottom: 30px;
}

.adres-kofeen__title span {
  color: #354e21;
}

.adres-kofeen__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.adres-kofeen__card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}

.adres-kofeen__image {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.adres-kofeen__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.1), rgba(0,0,0,0.6));
  display: flex;
  align-items: flex-end;
  padding: 16px;
}

.adres-kofeen__card-title {
  color: #fff;
  margin-bottom: 6px;
}

.adres-kofeen__text {
  color: #fff;
  font-size: 14px;
}

.adres-kofeen__link {
  margin-top: 10px;
  background: #fff;
  border: none;
  padding: 6px 12px;
  border-radius: 20px;
  cursor: pointer;
}

.adres-kofeen-popup {
  position: fixed;
  inset: 0;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease;
}

.adres-kofeen-popup.is-active {
  opacity: 1;
  visibility: visible;
}

.adres-kofeen-popup__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

.adres-kofeen-popup__body {
  position: relative;
  z-index: 2;
  width: min(900px, calc(100% - 32px));
  margin: 60px auto;
  background: #F4E6DA;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
}

.adres-kofeen-popup__close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 42px;
  height: 42px;
  border: none;
  border-radius: 50%;
  background: #fff;
  color: #1F1F1F;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  z-index: 3;
}

.adres-kofeen-popup__map {
  width: 100%;
  height: 500px;
}

.adres-kofeen-popup__map iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

body.adres-kofeen-popup-open {
  overflow: hidden;
}

@media (max-width: 992px) {
     .adres-kofeen__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
}

@media (max-width: 767px) {
  .adres-kofeen-popup__body {
    width: calc(100% - 20px);
    margin: 20px auto;
    border-radius: 16px;
  }

  .adres-kofeen-popup__map {
    height: 70vh;
  }

  .adres-kofeen-popup__close {
    top: 10px;
    right: 10px;
    width: 38px;
    height: 38px;
    font-size: 18px;
  }

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

.blog-page {
  padding: 40px 0 60px;
  background: #F4E7DD;
  overflow: visible;
}

.blog-page__container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 0px;
  overflow: visible;
}

.blog-page__wrapper {
    position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 24px;
  align-items: start;
  overflow: visible!important;
}

.blog-page__content {
  min-width: 0;
}

.blog-page__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px 20px;
}

.blog-page__card {
  display: block;
}

.blog-page__card-image {
  display: block;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 14px;
}

.blog-page__card-image img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

.blog-page__card:hover .blog-page__card-image img {
  transform: scale(1.03);
}

.blog-page__card-body {
  padding: 0 8px;
}

.blog-page__card-title {
  margin: 0 0 8px;
  font-size: 18px;
  line-height: 1.35;
  font-weight: 500;
}

.blog-page__card-title a {
  text-decoration: none;
  color: #1F1F1F;
}

.blog-page__card-link {
  font-size: 18px;
  line-height: 1.3;
  color: #354e21;
  text-decoration: none;
}

.blog-page__sidebar {
  position: static;
}

.blog-page__sidebar-box {
  position: relative;
  top: 0px;
  background: rgba(255, 255, 255, 0.18);
  border-radius: 20px;
  padding: 22px 20px;
}

.blog-page__sidebar-title {
  margin: 0 0 22px;
  font-size: 18px;
  line-height: 1.2;
  font-weight: 600;
  color: #1F1F1F;
}

.blog-page__sidebar-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.blog-page__sidebar-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  text-decoration: none;
  color: #1F1F1F;
  font-size: 16px;
  line-height: 1.3;
  transition: 0.3s ease;
}

.blog-page__sidebar-item:hover,
.blog-page__sidebar-item.is-active {
  color: #354e21;
}

.blog-page__sidebar-arrow {
  flex: 0 0 auto;
}

.blog-page__pagination {
  margin-top: 32px;
}

.blog-page__pagination .nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.blog-page__pagination .page-numbers {
  min-width: 42px;
  height: 42px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.22);
  color: #1F1F1F;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.blog-page__pagination .page-numbers.current {
  background: #354e21;
  color: #fff;
}

.blog-page__empty {
  font-size: 18px;
  line-height: 1.4;
  color: #1F1F1F;
}

@media (max-width: 991px) {
  .blog-page {
    padding: 30px 0 50px;
  }

  .blog-page__container {
    padding: 0 20px;
  }

  .blog-page__wrapper {
    grid-template-columns: 1fr;
  }

  .blog-page__sidebar {
    order: -1;
  }

  .blog-page__sidebar-box {
    position: static;
  }
}

@media (max-width: 767px) {
  .blog-page {
    padding: 24px 0 40px;
  }

  .blog-page__container {
    padding: 0 16px;
  }

  .blog-page__grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .blog-page__card-image {
    border-radius: 16px;
    margin-bottom: 12px;
  }

  .blog-page__card-image img {
    height: 210px;
  }

  .blog-page__card-title,
  .blog-page__card-link {
    font-size: 18px;
  }

  .blog-page__sidebar-box {
    border-radius: 16px;
    padding: 18px 16px;
  }
}

.blog-single {
  padding: 40px 0 60px;
  background: #F4E7DD;
  overflow: visible;
}

.blog-single__container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 0px;
  overflow: visible;
}

.blog-single__wrapper {
    position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 24px;
  align-items: start;
  overflow: visible;
}

.blog-single__content {
  min-width: 0;
}

.blog-single__content-box {
  background: rgba(255, 255, 255, 0.18);
  border-radius: 20px;
  padding: 22px 22px 26px;
}

.blog-single__content-box p {
  margin: 0 0 18px;
  font-size: 16px;
  line-height: 1.55;
  color: #080808;
}

.blog-single__content-box p:last-child {
  margin-bottom: 0;
}

.blog-single__content-box h2,
.blog-single__content-box h3,
.blog-single__content-box h4 {
  margin: 0 0 14px;
  font-weight: 600;
  color: #1F1F1F;
}

.blog-single__content-box ul,
.blog-single__content-box ol {
  margin: 0 0 18px 22px;
}

.blog-single__content-box li {
  margin-bottom: 8px;
  font-size: 16px;
  line-height: 1.5;
  color: #080808;
}

.blog-single__content-box img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
  margin: 18px 0;
}

.blog-single__sidebar {
  position: static;
  
}

.blog-single__sidebar-box {
  position: relative;
  top: 0px;
  background: rgba(255, 255, 255, 0.18);
  border-radius: 20px;
  padding: 22px 20px;
}

.blog-single__sidebar-title {
  margin: 0 0 22px;
  font-size: 18px;
  line-height: 1.2;
  font-weight: 600;
  color: #1F1F1F;
}

.blog-single__sidebar-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.blog-single__sidebar-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  text-decoration: none;
  color: #1F1F1F;
  font-size: 16px;
  line-height: 1.3;
  transition: 0.3s ease;
}

.blog-single__sidebar-item:hover {
  color: #354e21;
}

.blog-single__sidebar-arrow {
  flex: 0 0 auto;
}

@media (max-width: 991px) {
  .blog-single {
    padding: 30px 0 50px;
  }

  .blog-single__container {
    padding: 0 20px;
  }

  .blog-single__wrapper {
    grid-template-columns: 1fr;
  }

  .blog-single__sidebar {
    order: -1;
  }

  .blog-single__sidebar-box {
    position: static;
  }
}

@media (max-width: 767px) {
  .blog-single {
    padding: 24px 0 40px;
  }

  .blog-single__container {
    padding: 0 16px;
  }

  .blog-single__content-box {
    border-radius: 16px;
    padding: 18px 16px 20px;
  }

  .blog-single__sidebar-box {
    border-radius: 16px;
    padding: 18px 16px;
  }

  .blog-single__content-box p,
  .blog-single__content-box li,
  .blog-single__sidebar-item {
    font-size: 16px;
  }
}

.blog-page__sidebar-box.is-fixed,
.blog-single__sidebar-box.is-fixed {
  position: fixed;
  top: 120px;
  width: 300px;
  z-index: 30;
}

.blog-page__sidebar-box.is-bottom,
.blog-single__sidebar-box.is-bottom {
  position: absolute;
  top: auto;
  right: 0;
  bottom: 0;
  z-index: 30;
}



@media (max-width: 991px) {
  .blog-page__sidebar-box,
  .blog-page__sidebar-box.is-fixed,
  .blog-page__sidebar-box.is-bottom,
  .blog-single__sidebar-box,
  .blog-single__sidebar-box.is-fixed,
  .blog-single__sidebar-box.is-bottom {
    position: static;
    width: 100%!important;
  }
}

.coffee-about-page-hero__breadcrumbs {
  font-size: 17px;
  line-height: 1.4;
  opacity: 0.85;
  margin-bottom: 16px;
  color: #fff;
}

.coffee-about-page-hero__breadcrumbs a {
  color: inherit;
  text-decoration: none;
}

.coffee-about-page-hero__breadcrumbs a:hover {
  text-decoration: underline;
}

.coffee-about-page-hero__breadcrumbs span {
  color: inherit;
}

.info-page {
  padding: 40px 0 70px;
  background: #F4E7DD;
}

.info-page__container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 0px;
}

.info-page__content {
  max-width: 1300px;
  background: rgba(255, 255, 255, 0.18);
  border-radius: 20px;
  padding: 32px;
}

.info-page__content p {
  margin: 0 0 18px;
  font-size: 18px;
  line-height: 1.6;
  color: #080808;
}

.info-page__content h2,
.info-page__content h3,
.info-page__content h4 {
  margin: 28px 0 14px;
  color: #1F1F1F;
  font-weight: 600;
}

.info-page__content h2 {
  font-size: 26px;
}

.info-page__content h3 {
  font-size: 22px;
}

.info-page__content ul,
.info-page__content ol {
  margin: 0 0 18px 22px;
}

.info-page__content li {
  margin-bottom: 8px;
  font-size: 18px;
  line-height: 1.5;
}

@media (max-width: 767px) {
  .info-page {
    padding: 30px 0 50px;
  }

  .info-page__container {
    padding: 0 16px;
  }

  .info-page__content {
    padding: 20px;
    border-radius: 16px;
  }

  .info-page__content p,
  .info-page__content li {
    font-size: 16px;
  }

  .info-page__content h2 {
    font-size: 22px;
  }

  .info-page__content h3 {
    font-size: 20px;
  }

  .coffee-header__phone {
    display: none;
  }
}

.coffee-header__right {
  display: flex;
  align-items: center;
  gap: 36px;
}

.resume-popup {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.resume-popup.is-active {
  display: flex;
}

.resume-popup__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.55);
}

.resume-popup__body {
  position: relative;
  z-index: 2;
  max-width: 480px;
  width: 100%;
  margin: 0;
  padding: 32px;
  border-radius: 20px;
  background: #F4E7DD;
}

.resume-popup__close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
  font-size: 24px;
}

.resume-popup__title {
  margin: 0 0 22px;
  font-size: 30px;
}

.resume-popup__form {
  display: grid;
  gap: 14px;
}

.resume-popup__form input,
.resume-popup__form button {
  width: 100%;
  height: 48px;
  border-radius: 999px;
  border: 0;
  padding: 0 18px;
}

.resume-popup__form input {
  background: #fff;
}

.resume-popup__form input[type="file"] {
  padding-top: 13px;
  border-radius: 14px;
}

.resume-popup__form button {
  background: #628D68;
  color: #fff;
  cursor: pointer;
}

body.resume-popup-open {
  overflow: hidden;
}

.resume-popup__file input {
  display: none;
}

.resume-popup__file {
  height: 52px;
  border-radius: 999px;
  background: #fff;
  padding: 0 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
}

.resume-popup__file-button {
  color: #628D68;
  font-weight: 600;
}

.resume-popup__file-name {
  color: #777;
  font-size: 14px;
}

@media (max-width: 767px) {

    .resume-popup {
    align-items: center;
    padding: 16px;
  }
  .resume-popup__body {
    padding: 24px 18px;
    border-radius: 16px;
  }

  .resume-popup__title {
    font-size: 24px;
  }

  .resume-popup__file-button {
    color: #628D68;
    font-weight: 600;
    font-size: 13px;
    }
}
/* Новый широкий слайдер первого экрана */

.coffee-hero {
    padding: 60px 0 0;
    background: #f4e6da;
}

.coffee-hero__container {
    max-width: 1200px;
    padding: 0 20px;
}

.coffee-hero__subtitle {
    margin-bottom: 18px;
}

.coffee-hero__logo {
    margin-bottom: 30px;
}

/* Старое центральное изображение, зерна и старые кнопки скрываем */
.coffee-hero__image,
.coffee-hero__bean,
.coffee-hero__action {
    display: none !important;
}

.coffee-hero-wide-slider {
    position: relative;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    height: 640px;
    overflow: hidden;
    background: #f4e6da;
    margin-bottom: -1px;
}

.coffee-hero-wide-slider__track {
    position: relative;
    width: 100%;
    height: 100%;
}

.coffee-hero-wide-slider__slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transform: scale(1.02);
    transition:
        opacity 0.8s ease,
        transform 1.1s ease,
        visibility 0.8s ease;
}

.coffee-hero-wide-slider__slide.active {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
    z-index: 2;
}

.coffee-hero-wide-slider__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center right;
    display: block;
}

/* Мягкое растворение изображения сверху и снизу без затемнения слева */
.coffee-hero-wide-slider__overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    background:
        linear-gradient(
            to bottom,
            #f4e6da 0%,
            rgba(244, 230, 218, 0.96) 3%,
            rgba(244, 230, 218, 0.62) 10%,
            rgba(244, 230, 218, 0) 24%,
            rgba(244, 230, 218, 0) 68%,
            rgba(244, 230, 218, 0.42) 82%,
            rgba(244, 230, 218, 0.86) 94%,
            #f4e6da 100%
        );
}

/* Дополнительная мягкая вуаль сверху */
.coffee-hero-wide-slider::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: -1px;
    height: 140px;
    z-index: 3;
    pointer-events: none;
    background: linear-gradient(
        to bottom,
        #f4e6da 0%,
        rgba(244, 230, 218, 0.94) 18%,
        rgba(244, 230, 218, 0.5) 58%,
        rgba(244, 230, 218, 0) 100%
    );
}

/* Дополнительная мягкая вуаль снизу */
.coffee-hero-wide-slider::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    height: 220px;
    z-index: 3;
    pointer-events: none;
    background: linear-gradient(
        to top,
        #f4e6da 0%,
        rgba(244, 230, 218, 0.98) 14%,
        rgba(244, 230, 218, 0.78) 40%,
        rgba(244, 230, 218, 0.34) 70%,
        rgba(244, 230, 218, 0) 100%
    );
}

/* Текст */
.coffee-hero-wide-slider__content {
    position: absolute;
    left: calc((100vw - 1200px) / 2 + 20px);
    top: 50%;
    transform: translateY(-50%);
    max-width: 520px;
    z-index: 5;
    text-align: left;
    color: #231f20;
}

.coffee-hero-wide-slider__content h2 {
    margin: 0 0 24px;
    font-size: 46px;
    line-height: 1.15;
    font-weight: 500;
    color: #231f20;
    text-shadow: none;
}

.coffee-hero-wide-slider__content p {
    margin: 0 0 34px;
    font-size: 24px;
    line-height: 1.35;
    font-weight: 400;
    color: #231f20;
    text-shadow: none;
}

/* Кнопка */
.coffee-hero-wide-slider__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 26px;
    min-width: 250px;
    min-height: 58px;
    padding: 0 28px 0 34px;
    border: 1px solid rgba(35, 31, 32, 0.35);
    border-radius: 999px;
    background: rgba(244, 230, 218, 0.35);
    color: #231f20;
    text-decoration: none;
    font-size: 18px;
    line-height: 1;
    font-weight: 500;
    backdrop-filter: blur(4px);
    transition: 0.3s ease;
}

.coffee-hero-wide-slider__button:hover {
    background: rgba(109, 148, 104, 0.12);
    border-color: rgba(109, 148, 104, 0.55);
    color: #231f20;
    transform: translateY(-2px);
}

.coffee-hero-wide-slider__button-arrow {
    font-size: 34px;
    line-height: 1;
    transform: translateY(-1px);
}

/* Стрелки по центру баннера */
.coffee-hero-wide-slider__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 54px;
    height: 54px;
    border: 1px solid rgba(35, 31, 32, 0.22);
    border-radius: 50%;
    background: rgba(244, 230, 218, 0.28);
    color: #231f20;
    font-size: 38px;
    line-height: 1;
    cursor: pointer;
    z-index: 6;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-bottom: 5px;
    backdrop-filter: blur(4px);
    transition: 0.3s ease;
}

.coffee-hero-wide-slider__arrow:hover {
    background: rgba(109, 148, 104, 0.16);
    border-color: rgba(109, 148, 104, 0.45);
}

.coffee-hero-wide-slider__arrow--prev {
    left: 28px;
}

.coffee-hero-wide-slider__arrow--next {
    right: 28px;
}

/* Чтобы блок обедов не создавал резкий стык после слайдера */
.coffee-lunch {
    background: #f4e6da;
    padding-top: 22px;
}

/* Адаптив */

@media (max-width: 1240px) {
    .coffee-hero-wide-slider__content {
        left: 90px;
    }
}

@media (max-width: 991px) {
    .coffee-hero {
        padding-top: 40px;
    }

    .coffee-hero-wide-slider {
        height: 540px;
    }

    .coffee-hero-wide-slider::before {
        height: 110px;
    }

    .coffee-hero-wide-slider::after {
        height: 180px;
    }

    .coffee-hero-wide-slider__content {
        left: 70px;
        max-width: 470px;
    }

    .coffee-hero-wide-slider__content h2 {
        font-size: 38px;
    }

    .coffee-hero-wide-slider__content p {
        font-size: 20px;
    }

    .coffee-hero-wide-slider__arrow {
        width: 46px;
        height: 46px;
        font-size: 32px;
    }
}

@media (max-width: 575px) {
    .coffee-hero {
        padding-top: 32px;
    }

    .coffee-hero__container {
        padding: 0 16px;
    }

    .coffee-hero__logo {
        margin-bottom: 24px;
    }

    .coffee-hero-wide-slider {
        height: 470px;
    }

    .coffee-hero-wide-slider__image {
        object-position: center right;
    }

    .coffee-hero-wide-slider__overlay {
        background:
            linear-gradient(
                to bottom,
                #f4e6da 0%,
                rgba(244, 230, 218, 0.92) 8%,
                rgba(244, 230, 218, 0) 26%,
                rgba(244, 230, 218, 0) 68%,
                rgba(244, 230, 218, 0.82) 92%,
                #f4e6da 100%
            );
    }

    .coffee-hero-wide-slider::before {
        height: 90px;
    }

    .coffee-hero-wide-slider::after {
        height: 150px;
    }

    .coffee-hero-wide-slider__content {
        left: 24px;
        right: 24px;
        max-width: none;
        text-align: left;
    }

    .coffee-hero-wide-slider__content h2 {
        font-size: 30px;
        margin-bottom: 18px;
    }

    .coffee-hero-wide-slider__content p {
        font-size: 17px;
        margin-bottom: 26px;
    }

    .coffee-hero-wide-slider__button {
        min-width: 210px;
        min-height: 52px;
        font-size: 16px;
    }

    .coffee-hero-wide-slider__arrow {
        width: 40px;
        height: 40px;
        font-size: 28px;
    }

    .coffee-hero-wide-slider__arrow--prev {
        left: 14px;
    }

    .coffee-hero-wide-slider__arrow--next {
        right: 14px;
    }

    .coffee-lunch {
        padding-top: 24px;
    }
}
/* =========================================================
   Исправление мобильной версии: слайдер, изображения и overflow
   ========================================================= */

/* Горизонтальная прокрутка страницы не должна появляться. */
html,
body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

@supports (overflow: clip) {
    html,
    body {
        overflow-x: clip;
    }
}

@media (max-width: 767px) {
    .coffee-hero {
        overflow: hidden;
    }

    .coffee-hero__container {
        width: 100%;
        max-width: 100%;
    }

    /* Не используем 100vw: на части мобильных браузеров он создаёт
       лишнюю ширину и позволяет прокручивать страницу вправо. */
    .coffee-hero-wide-slider {
        width: calc(100% + 32px) !important;
        max-width: none !important;
        height: 520px !important;
        margin-left: -16px !important;
        margin-right: -16px !important;
        overflow: hidden !important;
    }

    .coffee-hero-wide-slider__track,
    .coffee-hero-wide-slider__slide {
        width: 100%;
        height: 100%;
        overflow: hidden;
    }

    /* Убираем масштабирование, из-за которого кадр мог визуально прыгать. */
    .coffee-hero-wide-slider__slide,
    .coffee-hero-wide-slider__slide.active {
        transform: none !important;
    }

    /* Изображение занимает всю ширину слайдера, но не обрезается. */
    .coffee-hero-wide-slider__image {
        position: absolute !important;
        top: 0;
        left: 0;
        width: 100% !important;
        max-width: none !important;
        height: 245px !important;
        object-fit: contain !important;
        object-position: center center !important;
        border-radius: 0 !important;
        background: #f4e6da;
    }

    /* Мягко растворяем края картинки в фоне страницы. */
    .coffee-hero-wide-slider__overlay {
        position: absolute;
        inset: 0 0 auto 0;
        width: 100%;
        height: 255px;
        background:
            linear-gradient(
                to right,
                #f4e6da 0%,
                rgba(244, 230, 218, 0) 5%,
                rgba(244, 230, 218, 0) 95%,
                #f4e6da 100%
            ),
            linear-gradient(
                to bottom,
                rgba(244, 230, 218, 0) 70%,
                rgba(244, 230, 218, 0.7) 90%,
                #f4e6da 100%
            );
    }

    .coffee-hero-wide-slider::before {
        display: none !important;
    }

    .coffee-hero-wide-slider::after {
        top: 195px !important;
        bottom: auto !important;
        height: 70px !important;
        background: linear-gradient(
            to bottom,
            rgba(244, 230, 218, 0) 0%,
            #f4e6da 100%
        ) !important;
    }

    /* Текст всегда расположен ниже изображения. */
    .coffee-hero-wide-slider__content {
        top: 270px !important;
        bottom: auto !important;
        left: 18px !important;
        right: 18px !important;
        max-width: none !important;
        transform: none !important;
        text-align: center !important;
    }

    .coffee-hero-wide-slider__content h2 {
        margin-bottom: 14px;
        font-size: 30px;
        line-height: 1.16;
    }

    .coffee-hero-wide-slider__content p {
        margin-bottom: 22px;
        font-size: 17px;
        line-height: 1.45;
    }

    .coffee-hero-wide-slider__button {
        min-width: 0;
        min-height: 50px;
        padding: 0 24px;
        gap: 18px;
    }

    /* Стрелки находятся внутри зоны изображения. */
    .coffee-hero-wide-slider__arrow {
        top: 122px !important;
        width: 32px !important;
        height: 32px !important;
        font-size: 22px !important;
        padding-bottom: 3px;
    }

    .coffee-hero-wide-slider__arrow--prev {
        left: 12px !important;
    }

    .coffee-hero-wide-slider__arrow--next {
        right: 12px !important;
    }

    /* Изображения блоков «Кофе» и «Чай» больше не режутся по краям. */
    .coffee-features__image {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
    }

    .coffee-features__image img {
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
        max-height: none !important;
        object-fit: contain !important;
        object-position: center center !important;
    }

    /* Декоративное размытие не должно расширять страницу. */
    .coffee-features__fade {
        width: 100% !important;
        max-width: 100% !important;
    }
}

@media (max-width: 420px) {
    .coffee-hero-wide-slider {
        height: 500px !important;
    }

    .coffee-hero-wide-slider__image {
        height: 220px !important;
    }

    .coffee-hero-wide-slider__overlay {
        height: 230px;
    }

    .coffee-hero-wide-slider::after {
        top: 170px !important;
        height: 70px !important;
    }

    .coffee-hero-wide-slider__content {
        top: 240px !important;
        left: 16px !important;
        right: 16px !important;
    }

    .coffee-hero-wide-slider__content h2 {
        font-size: 27px;
    }

    .coffee-hero-wide-slider__content p {
        font-size: 16px;
    }

    .coffee-hero-wide-slider__arrow {
        top: 110px !important;
        width: 30px !important;
        height: 30px !important;
        font-size: 20px !important;
    }
}

/* =========================================================
   Мобильная версия v3:
   крупнее изображение, заголовок на изображении,
   текст под изображением и мягкие края у контентных фото
   ========================================================= */

@media (max-width: 767px) {
    /* Слайдер немного выше, чтобы крупная картинка и текст не теснились. */
    .coffee-hero-wide-slider {
        height: 570px !important;
    }

    /* Крупное изображение без жёсткого обрезания по краям. */
    .coffee-hero-wide-slider__image {
        height: 330px !important;
        object-fit: contain !important;
        object-position: center center !important;
        background: #f4e6da !important;
    }

    /* Градиент по бокам и снизу объединяет изображение с фоном страницы. */
    .coffee-hero-wide-slider__overlay {
        top: 0 !important;
        bottom: auto !important;
        width: 100% !important;
        height: 340px !important;
        z-index: 3 !important;
        background:
            linear-gradient(
                to right,
                #f4e6da 0%,
                rgba(244, 230, 218, 0.72) 3%,
                rgba(244, 230, 218, 0) 11%,
                rgba(244, 230, 218, 0) 89%,
                rgba(244, 230, 218, 0.72) 97%,
                #f4e6da 100%
            ),
            linear-gradient(
                to bottom,
                rgba(244, 230, 218, 0.08) 0%,
                rgba(244, 230, 218, 0) 62%,
                rgba(244, 230, 218, 0.46) 82%,
                rgba(244, 230, 218, 0.92) 96%,
                #f4e6da 100%
            ) !important;
    }

    .coffee-hero-wide-slider::after {
        top: 275px !important;
        bottom: auto !important;
        height: 75px !important;
        z-index: 4 !important;
        background: linear-gradient(
            to bottom,
            rgba(244, 230, 218, 0) 0%,
            rgba(244, 230, 218, 0.74) 58%,
            #f4e6da 100%
        ) !important;
    }

    /* Контейнер занимает весь слайд: заголовок лежит на фото,
       описание и кнопка идут уже под фотографией. */
    .coffee-hero-wide-slider__content {
        top: 0 !important;
        bottom: 0 !important;
        left: 18px !important;
        right: 18px !important;
        height: 100% !important;
        max-width: none !important;
        padding-top: 360px !important;
        transform: none !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: flex-start !important;
        text-align: center !important;
        z-index: 6 !important;
    }

    /* Заголовок закреплён в нижней части изображения. */
    .coffee-hero-wide-slider__content h2 {
        position: absolute !important;
        top: 222px !important;
        left: 16px !important;
        right: 16px !important;
        margin: 0 !important;
        padding: 28px 10px 25px !important;
        font-size: 29px !important;
        line-height: 1.16 !important;
        color: #231f20 !important;
        text-align: center !important;
        z-index: 7 !important;
        background: linear-gradient(
            to bottom,
            rgba(244, 230, 218, 0) 0%,
            rgba(244, 230, 218, 0.34) 28%,
            rgba(244, 230, 218, 0.82) 72%,
            rgba(244, 230, 218, 0.98) 100%
        );
        text-shadow:
            0 1px 10px rgba(244, 230, 218, 0.98),
            0 0 20px rgba(244, 230, 218, 0.88);
    }

    .coffee-hero-wide-slider__content p {
        width: 100%;
        max-width: 500px;
        margin: 0 0 20px !important;
        font-size: 17px !important;
        line-height: 1.43 !important;
    }

    .coffee-hero-wide-slider__button {
        margin-top: 0 !important;
    }

    /* Стрелки остаются по центру увеличенного изображения. */
    .coffee-hero-wide-slider__arrow {
        top: 165px !important;
    }

    /* Мягкие края у изображений блоков «Кофе» и «Чай». */
    .coffee-features__image {
        position: relative !important;
        background: #f4e6da !important;
        isolation: isolate;
    }

    .coffee-features__image::after {
        content: "";
        position: absolute;
        inset: -1px;
        z-index: 4;
        pointer-events: none;
        background:
            linear-gradient(
                to bottom,
                #f4e6da 0%,
                rgba(244, 230, 218, 0.76) 3%,
                rgba(244, 230, 218, 0) 12%,
                rgba(244, 230, 218, 0) 84%,
                rgba(244, 230, 218, 0.72) 95%,
                #f4e6da 100%
            ),
            linear-gradient(
                to right,
                #f4e6da 0%,
                rgba(244, 230, 218, 0.72) 3%,
                rgba(244, 230, 218, 0) 11%,
                rgba(244, 230, 218, 0) 89%,
                rgba(244, 230, 218, 0.72) 97%,
                #f4e6da 100%
            );
    }

    .coffee-features__image img {
        position: relative !important;
        z-index: 2 !important;
    }

    /* Старый нижний blur не должен создавать заметную прямоугольную полосу. */
    .coffee-features__fade {
        z-index: 3 !important;
        height: 90px !important;
        bottom: -5px !important;
        background: #f4e6da !important;
        filter: blur(24px) !important;
        opacity: 0.82;
    }
}

@media (max-width: 420px) {
    .coffee-hero-wide-slider {
        height: 555px !important;
    }

    .coffee-hero-wide-slider__image {
        height: 310px !important;
    }

    .coffee-hero-wide-slider__overlay {
        height: 320px !important;
    }

    .coffee-hero-wide-slider::after {
        top: 255px !important;
    }

    .coffee-hero-wide-slider__content {
        padding-top: 338px !important;
        left: 14px !important;
        right: 14px !important;
    }

    .coffee-hero-wide-slider__content h2 {
        top: 205px !important;
        left: 10px !important;
        right: 10px !important;
        font-size: 27px !important;
    }

    .coffee-hero-wide-slider__content p {
        font-size: 16px !important;
        margin-bottom: 18px !important;
    }

    .coffee-hero-wide-slider__arrow {
        top: 155px !important;
    }
}

/* =========================================================
   Мобильная версия v4:
   изображение как фон верхней части слайда,
   заголовок поверх изображения, описание и кнопка ниже,
   более деликатное растворение контентных изображений
   ========================================================= */

@media (max-width: 767px) {
    /* Высоты фиксированы, поэтому слайды не прыгают при переключении. */
    .coffee-hero-wide-slider {
        height: 590px !important;
        background: #f4e6da !important;
    }

    /* Картинка становится полноценным фоном верхней части слайда. */
    .coffee-hero-wide-slider__image {
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        height: 360px !important;
        object-fit: cover !important;
        object-position: center center !important;
        background: #f4e6da !important;
    }

    /* Градиент лежит только поверх изображения, а не на заголовке. */
    .coffee-hero-wide-slider__overlay {
        top: 0 !important;
        bottom: auto !important;
        width: 100% !important;
        height: 360px !important;
        z-index: 3 !important;
        background: linear-gradient(
            to bottom,
            #f4e6da 0%,
            rgba(244, 230, 218, 0.82) 4%,
            rgba(244, 230, 218, 0.34) 11%,
            rgba(244, 230, 218, 0) 20%,
            rgba(244, 230, 218, 0) 58%,
            rgba(244, 230, 218, 0.18) 70%,
            rgba(244, 230, 218, 0.62) 86%,
            #f4e6da 100%
        ) !important;
    }

    /* Старый дополнительный градиент убираем, чтобы он не накладывался на текст. */
    .coffee-hero-wide-slider::after {
        display: none !important;
    }

    /* Контент занимает слайд, но обычный текст начинается уже под картинкой. */
    .coffee-hero-wide-slider__content {
        top: 0 !important;
        bottom: 0 !important;
        left: 18px !important;
        right: 18px !important;
        height: 100% !important;
        padding-top: 385px !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: flex-start !important;
        text-align: center !important;
        transform: none !important;
        z-index: 5 !important;
    }

    /* Только заголовок остаётся поверх нижней части изображения. */
    .coffee-hero-wide-slider__content h2 {
        position: absolute !important;
        top: 262px !important;
        left: 22px !important;
        right: 22px !important;
        margin: 0 !important;
        padding: 0 !important;
        background: none !important;
        font-size: 29px !important;
        line-height: 1.15 !important;
        color: #231f20 !important;
        text-align: center !important;
        text-shadow:
            0 1px 7px rgba(244, 230, 218, 1),
            0 0 16px rgba(244, 230, 218, 0.95),
            0 0 28px rgba(244, 230, 218, 0.82) !important;
        z-index: 6 !important;
    }

    .coffee-hero-wide-slider__content p {
        width: 100% !important;
        max-width: 500px !important;
        margin: 0 0 20px !important;
        font-size: 17px !important;
        line-height: 1.43 !important;
        color: #231f20 !important;
        text-shadow: none !important;
    }

    .coffee-hero-wide-slider__button {
        margin-top: 0 !important;
    }

    /* Стрелки остаются в центре фонового изображения. */
    .coffee-hero-wide-slider__arrow {
        top: 180px !important;
    }

    /* Убираем сильную встроенную маску исходного CSS. */
    .coffee-features__image img {
        -webkit-mask-image: none !important;
        mask-image: none !important;
    }

    /* Оставляем только лёгкое растворение самого нижнего края изображения. */
    .coffee-features__image::after {
        inset: auto 0 -1px 0 !important;
        height: 56px !important;
        background: linear-gradient(
            to bottom,
            rgba(244, 230, 218, 0) 0%,
            rgba(244, 230, 218, 0.16) 42%,
            rgba(244, 230, 218, 0.55) 78%,
            #f4e6da 100%
        ) !important;
    }

    /* Старое большое размытие делаем почти незаметным. */
    .coffee-features__fade {
        height: 38px !important;
        bottom: -4px !important;
        filter: blur(16px) !important;
        opacity: 0.22 !important;
    }
}

@media (max-width: 420px) {
    .coffee-hero-wide-slider {
        height: 570px !important;
    }

    .coffee-hero-wide-slider__image,
    .coffee-hero-wide-slider__overlay {
        height: 340px !important;
    }

    .coffee-hero-wide-slider__content {
        padding-top: 365px !important;
        left: 14px !important;
        right: 14px !important;
    }

    .coffee-hero-wide-slider__content h2 {
        top: 246px !important;
        left: 16px !important;
        right: 16px !important;
        font-size: 27px !important;
    }

    .coffee-hero-wide-slider__content p {
        font-size: 16px !important;
        margin-bottom: 18px !important;
    }

    .coffee-hero-wide-slider__arrow {
        top: 170px !important;
    }
}
.coffee-lunch__subtitle {
    display: block !important;
    position: relative;
    z-index: 5;
    max-width: 760px;
    margin: 18px auto 55px;
    font-size: 20px;
    line-height: 1.45;
    font-weight: 700;
    text-align: center;
    color: #143d22;
}

.coffee-lunch__title {
    margin-bottom: 0;
}

.coffee-lunch__list {
    position: relative;
    z-index: 2;
}

@media (max-width: 768px) {
    .coffee-lunch__subtitle {
        font-size: 17px;
        font-weight: 600;
        margin: 12px auto 32px;
    }
}
/* Исправление наложения текстов в hero-слайдере.
   Фото и градиенты не трогаем. */

.coffee-hero-wide-slider__slide {
    position: absolute !important;
    inset: 0 !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
    z-index: 1 !important;
}

.coffee-hero-wide-slider__slide.active {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    z-index: 2 !important;
}

/* Текст неактивных слайдов скрываем сразу,
   чтобы он не накладывался во время смены слайда */
.coffee-hero-wide-slider__slide:not(.active) .coffee-hero-wide-slider__content {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
}

/* Активный текст — один, слева, как было изначально */
.coffee-hero-wide-slider__slide.active .coffee-hero-wide-slider__content {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;

    position: absolute !important;
    left: calc((100vw - 1200px) / 2 + 20px) !important;
    right: auto !important;
    top: 50% !important;
    bottom: auto !important;
    transform: translateY(-50%) !important;

    max-width: 520px !important;
    padding: 0 !important;
    text-align: left !important;

    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    backdrop-filter: none !important;

    z-index: 6 !important;
}

.coffee-hero-wide-slider__content h2 {
    margin: 0 0 24px !important;
    font-size: 46px !important;
    line-height: 1.15 !important;
    font-weight: 700 !important;
    letter-spacing: -0.035em !important;
    color: #231f20 !important;
    text-shadow: none !important;
}

.coffee-hero-wide-slider__content h2 span,
.coffee-hero-wide-slider__content p strong {
    color: #354e21 !important;
    font-weight: 800 !important;
}

.coffee-hero-wide-slider__content p {
    margin: 0 0 34px !important;
    font-size: 24px !important;
    line-height: 1.35 !important;
    font-weight: 400 !important;
    color: #231f20 !important;
    text-shadow: none !important;
}

.coffee-hero-wide-slider__button {
    background: #354e21 !important;
    color: #ffffff !important;
    border-color: #354e21 !important;
}

.coffee-hero-wide-slider__button:hover {
    background: #2b3f1b !important;
    border-color: #2b3f1b !important;
    color: #ffffff !important;
}

@media (max-width: 1240px) {
    .coffee-hero-wide-slider__slide.active .coffee-hero-wide-slider__content {
        left: 90px !important;
    }
}

@media (max-width: 991px) {
    .coffee-hero-wide-slider__content h2 {
        font-size: 38px !important;
    }

    .coffee-hero-wide-slider__content p {
        font-size: 20px !important;
    }
}

@media (max-width: 575px) {
    .coffee-hero-wide-slider__slide.active .coffee-hero-wide-slider__content {
        left: 24px !important;
        right: 24px !important;
        top: 50% !important;
        bottom: auto !important;
        max-width: none !important;
        transform: translateY(-50%) !important;
        text-align: left !important;
    }

    .coffee-hero-wide-slider__content h2 {
        position: static !important;
        margin: 0 0 18px !important;
        padding: 0 !important;
        font-size: 30px !important;
        line-height: 1.16 !important;
        background: none !important;
    }

    .coffee-hero-wide-slider__content p {
        font-size: 17px !important;
        margin-bottom: 26px !important;
    }
}
/* =========================================================
   Hero slider под новые более высокие 16:9 изображения
   ========================================================= */

.coffee-hero {
    padding-bottom: 70px !important;
}

/* Делаем сам блок выше */
.coffee-hero-wide-slider {
    height: clamp(660px, 48vw, 820px) !important;
    min-height: 660px !important;
    overflow: hidden !important;
}

/* Внутренности слайдера должны наследовать новую высоту */
.coffee-hero-wide-slider__track,
.coffee-hero-wide-slider__slide {
    height: 100% !important;
}

/* Картинка занимает всю новую высоту блока */
.coffee-hero-wide-slider__image {
    width: 100% !important;
    height: 100% !important;
    max-width: none !important;
    object-fit: cover !important;
    object-position: center right !important;
}

/* Градиент оставляем, но делаем мягче, чтобы он не съедал половину фото */
.coffee-hero-wide-slider__overlay {
    position: absolute !important;
    inset: 0 !important;
    z-index: 2 !important;
    background:
        linear-gradient(
            to right,
            #f4e6da 0%,
            rgba(244, 230, 218, 0.90) 10%,
            rgba(244, 230, 218, 0.48) 28%,
            rgba(244, 230, 218, 0.08) 48%,
            rgba(244, 230, 218, 0) 100%
        ),
        linear-gradient(
            to bottom,
            rgba(244, 230, 218, 0.55) 0%,
            rgba(244, 230, 218, 0) 14%,
            rgba(244, 230, 218, 0) 82%,
            rgba(244, 230, 218, 0.62) 94%,
            #f4e6da 100%
        ) !important;
}

/* Верхний/нижний растворяющий градиент уменьшаем */
.coffee-hero-wide-slider::before {
    height: 70px !important;
    opacity: 0.75 !important;
}

.coffee-hero-wide-slider::after {
    top: auto !important;
    bottom: 0 !important;
    height: 110px !important;
    opacity: 0.85 !important;
    background: linear-gradient(
        to bottom,
        rgba(244, 230, 218, 0) 0%,
        rgba(244, 230, 218, 0.72) 72%,
        #f4e6da 100%
    ) !important;
}

/* Текст оставляем поверх, но не двигаем вправо */
.coffee-hero-wide-slider__content {
    z-index: 5 !important;
}

/* Стрелки по центру новой высоты */
.coffee-hero-wide-slider__arrow {
    top: 50% !important;
}

/* Планшеты */
@media (max-width: 991px) {
    .coffee-hero-wide-slider {
        height: 620px !important;
        min-height: 620px !important;
    }

    .coffee-hero-wide-slider__image {
        height: 100% !important;
        object-fit: cover !important;
        object-position: center right !important;
    }

    .coffee-hero-wide-slider::after {
        height: 95px !important;
    }
}

/* Мобильная версия */
@media (max-width: 767px) {
    .coffee-hero-wide-slider {
        width: calc(100% + 32px) !important;
        height: 620px !important;
        min-height: 620px !important;
        margin-left: -16px !important;
        margin-right: -16px !important;
    }

    .coffee-hero-wide-slider__track,
    .coffee-hero-wide-slider__slide {
        height: 100% !important;
    }

    .coffee-hero-wide-slider__image {
        position: absolute !important;
        inset: 0 !important;
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
        object-position: center right !important;
        background: #f4e6da !important;
    }

    .coffee-hero-wide-slider__overlay {
        height: 100% !important;
        background:
            linear-gradient(
                to bottom,
                rgba(244, 230, 218, 0.42) 0%,
                rgba(244, 230, 218, 0) 18%,
                rgba(244, 230, 218, 0) 66%,
                rgba(244, 230, 218, 0.82) 88%,
                #f4e6da 100%
            ),
            linear-gradient(
                to right,
                #f4e6da 0%,
                rgba(244, 230, 218, 0.55) 8%,
                rgba(244, 230, 218, 0) 28%,
                rgba(244, 230, 218, 0) 100%
            ) !important;
    }

    .coffee-hero-wide-slider::before {
        display: none !important;
    }

    .coffee-hero-wide-slider::after {
        top: auto !important;
        bottom: 0 !important;
        height: 120px !important;
    }

    .coffee-hero-wide-slider__content {
        left: 24px !important;
        right: 24px !important;
        top: 50% !important;
        bottom: auto !important;
        transform: translateY(-50%) !important;
        padding-top: 0 !important;
        height: auto !important;
        text-align: left !important;
        align-items: flex-start !important;
    }

    .coffee-hero-wide-slider__arrow {
        top: 50% !important;
    }
}

@media (max-width: 420px) {
    .coffee-hero-wide-slider {
        height: 590px !important;
        min-height: 590px !important;
    }

    .coffee-hero-wide-slider__content h2 {
        font-size: 28px !important;
    }

    .coffee-hero-wide-slider__content p {
        font-size: 16px !important;
    }
}
/* Плавный верхний переход у hero-слайдера */

.coffee-hero-wide-slider {
    position: relative !important;
    background: #f4e6da !important;
    overflow: hidden !important;
}

/* Мягкий переход сверху: фон страницы → картинка */
.coffee-hero-wide-slider::before {
    content: "" !important;
    display: block !important;
    position: absolute !important;
    left: 0 !important;
    right: 0 !important;
    top: 0 !important;
    height: 220px !important;
    z-index: 4 !important;
    pointer-events: none !important;
    background: linear-gradient(
        to bottom,
        #f4e6da 0%,
        rgba(244, 230, 218, 0.96) 12%,
        rgba(244, 230, 218, 0.72) 36%,
        rgba(244, 230, 218, 0.32) 68%,
        rgba(244, 230, 218, 0) 100%
    ) !important;
}

/* Основной overlay без резкого верхнего слоя */
.coffee-hero-wide-slider__overlay {
    background:
        linear-gradient(
            to right,
            #f4e6da 0%,
            rgba(244, 230, 218, 0.88) 9%,
            rgba(244, 230, 218, 0.48) 26%,
            rgba(244, 230, 218, 0.08) 45%,
            rgba(244, 230, 218, 0) 100%
        ),
        linear-gradient(
            to bottom,
            rgba(244, 230, 218, 0) 0%,
            rgba(244, 230, 218, 0) 74%,
            rgba(244, 230, 218, 0.55) 91%,
            #f4e6da 100%
        ) !important;
}

/* Чтобы текст и стрелки были выше плавного перехода */
.coffee-hero-wide-slider__content,
.coffee-hero-wide-slider__arrow {
    z-index: 6 !important;
}
/* =========================================================
   Hero slider: единый плавный переход сверху и снизу
   ========================================================= */

/* Возвращаем нормальную высоту и убираем лишние псевдослои */
.coffee-hero-wide-slider {
    height: clamp(760px, 52vw, 900px) !important;
    min-height: 760px !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    background: #f4e6da !important;
    overflow: hidden !important;
}

/* Отключаем отдельные верхние/нижние слои — они и дают полосы */
.coffee-hero-wide-slider::before,
.coffee-hero-wide-slider::after {
    display: none !important;
    content: none !important;
}

/* Картинка снова занимает весь слайдер */
.coffee-hero-wide-slider__track,
.coffee-hero-wide-slider__slide {
    height: 100% !important;
}

.coffee-hero-wide-slider__image {
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    max-width: none !important;
    object-fit: cover !important;
    object-position: center right !important;
    display: block !important;
    z-index: 1 !important;
}

/* Один общий overlay:
   1) сверху плавно вводит картинку
   2) снизу плавно выводит картинку
   3) слева оставляет читабельность под текст */
.coffee-hero-wide-slider__overlay {
    position: absolute !important;
    inset: 0 !important;
    z-index: 2 !important;
    pointer-events: none !important;

    background:
        linear-gradient(
            to bottom,
            #f4e6da 0px,
            #f4e6da 80px,
            rgba(244, 230, 218, 0.96) 130px,
            rgba(244, 230, 218, 0.72) 190px,
            rgba(244, 230, 218, 0.34) 270px,
            rgba(244, 230, 218, 0) 360px,
            rgba(244, 230, 218, 0) calc(100% - 260px),
            rgba(244, 230, 218, 0.28) calc(100% - 170px),
            rgba(244, 230, 218, 0.72) calc(100% - 70px),
            #f4e6da 100%
        ),
        linear-gradient(
            to right,
            #f4e6da 0%,
            rgba(244, 230, 218, 0.94) 7%,
            rgba(244, 230, 218, 0.62) 23%,
            rgba(244, 230, 218, 0.18) 42%,
            rgba(244, 230, 218, 0) 62%
        ) !important;
}

/* Текст и стрелки выше overlay */
.coffee-hero-wide-slider__content,
.coffee-hero-wide-slider__arrow {
    z-index: 6 !important;
}

/* Отступ после логотипа оставляем спокойный */
.coffee-hero__logo {
    margin-bottom: 70px !important;
}

/* Следующий блок не должен прилипать к слайдеру */
.coffee-lunch {
    background: #f4e6da !important;
    padding-top: 34px !important;
}