body {
    font-family: 'Philosopher', sans-serif;
    font-weight: 400;
    font-size: 22px;
    line-height: 1;
    color: #000;
    font-style: normal;
    background-color: #F4F4F4;
}

button,
a {
    font-family: 'Philosopher', sans-serif;
}


* {
    box-sizing: border-box;
}

.hero {
    position: relative;
    overflow: hidden;
    height: 1080px;
}

.hero__bg--image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.header {
    position: fixed;
    top: 10px;
    left: 0;
    right: 0;
    margin: 0 auto;
    z-index: 100;
    width: calc(100% - 64px);
    max-width: 1596px;
    opacity: 1;
    will-change: auto;
    padding: 12px;
}

.header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 11px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    background-color: rgba(255, 255, 255, 0.6);
    z-index: -1;
}

.container {
    max-width: 1596px;
    margin: 0 auto;
    width: 100%;
}

.header__content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header__logo {
    width: 219px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header__nav {
    max-width: 626px;
    padding: 12px;
    width: 100%;
    border-radius: 11px;
    background: rgba(0, 0, 0, 0.50);
    backdrop-filter: blur(8px);
}

.header__menu {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
}

.header__menu li {
    display: flex;
}

.header__menu li a {
    color: rgba(255, 255, 255, 0.50);
    font-size: 14px;
    line-height: 1.2;
    text-decoration: none;
}

.header__content-contact {
    display: flex;
    align-items: center;
    gap: 16px;
}

.header__content-contact--link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: #000;
    text-decoration: none;
    font-size: 12px;
    line-height: 1.2;
}

.header__content-contact--badge {
    display: flex;
    min-height: 24px;
    padding: 2px 10px 4px 8px;
    align-items: center;
    gap: 3px;
    border-radius: 1000px;
    background: rgba(0, 0, 0, 0.50);
    backdrop-filter: blur(4px);
    color: #FFF;
    font-size: 12px;
    line-height: 1.2;
}

.header__content-contact--badge::before {
    content: "";
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background-color: #fff;
}

/* Cart Icon */
.header__cart {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: #000;
    text-decoration: none;
    transition: opacity 0.3s;
}

.header__cart:hover {
    opacity: 0.7;
}

.header__cart-count {
    position: absolute;
    top: 2px;
    right: 2px;
    background: #000;
    color: #FFF;
    font-size: 10px;
    font-weight: 700;
    min-width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    line-height: 1;
}

.header__content-contact--tel {
    padding: 12px 22px;
    border-radius: 11px;
    background: linear-gradient(180deg, #3A4A3E -6.14%, #FFF 209.77%);
    color: #FFF;
    text-align: center;
    font-family: 'Philosopher', sans-serif;
    font-size: 12px;
    line-height: 1.2;
    text-decoration: none;
}

.hero {
    padding: 0 32px;
}

.hero .container {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.hero__content {
    max-width: 1006px;
    width: 100%;
}

.hero__content h1 {
    font-size: 111px;
    font-weight: 400;
    line-height: 87%;
}

.hero__content h1 mark {
    display: block;
    background: transparent;
    font-weight: 700;
}



/* Burger Button */
.header__burger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
    padding: 0;
}

.header__burger span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: #000;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.hero__list {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 65px;
    max-width: 304px;
    width: 100%;
}

.hero__list p {
    text-align: center;
    font-size: 19px;
    line-height: 1.2;
}

.hero__list-ul {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
}

.hero__list-link {
    padding: 12px;
    display: flex;
    width: 100%;
    border-radius: 11px;
    background: #D3D3D3;
    backdrop-filter: blur(8px);
    color: #000;
    font-size: 14px;
    line-height: 1.2;
    justify-content: center;
    text-decoration: none;
}

.hero__list-link.hero__list--link--active {
    border-radius: 11px;
    background: linear-gradient(180deg, #3A4A3E -6.14%, #FFF 209.77%);
    backdrop-filter: blur(8px);
    color: #FFF;
}

.about {
    height: 1080px;
    padding: 0 32px;
    overflow: hidden;
}

.about .container {
    height: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.container__wrapper {
    max-width: 626px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 18px;
    position: relative;
    z-index: 2;
}

.container__wrapper h2 {
    color: #FFF;
    font-size: 111px;
    font-weight: 700;
    line-height: 100%;
}

.about__parallax-bg {
    position: relative;
}

.about__parallax-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.about__description {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.about__description p {
    color: #FFF;
}

.about__description p strong {
    font-weight: 700;
    display: block;
}

.mission {
    position: relative;
    height: 1080px;
    overflow: hidden;
    padding: 0 32px;
}

.mission-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.mission-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mission .container {
    display: flex;
    align-items: center;
    height: 100%;
}

.mission__content {
    max-width: 626px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 18px;
    position: relative;
    z-index: 2;
}

.mission__image {
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
}

.mission__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.mission__content h2 {
    color: #000;
    font-size: 111px;
    font-weight: 700;
}

.mission__content p {
    color: #000;
    font-size: 22px;
    font-weight: 400;
}

#about-scene {
    position: relative;
    overflow: hidden;
}

.about-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    inset: 0;
    overflow: hidden;
}

.about__parallax-bg {
    position: absolute;
    top: -30%;
    left: 0;
    width: 100%;
    height: 160%;
    object-fit: cover;
    z-index: -1;
}

.about-bg::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.50);
    z-index: 1;
}

.proud {
    position: relative;
    overflow: hidden;
    padding: 128px 32px;
}

.proud .container {
    height: 100%;
    display: flex;
    align-items: center;
    gap: 24px;
}

.proud-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.proud-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center bottom;
}

.proud-content {
    display: flex;
    flex-direction: column;
    gap: 31px;
    width: 465px;
    flex-shrink: 0;
}

.proud-content h2 {
    color: #000;
    font-size: 111px;
    font-weight: 700;
}

.proud-content-description {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.proud-content-description p {
    color: #000;
    font-size: 22px;
    font-weight: 400;
}

.proud-slider {
    width: calc(100% - 465px - 24px);
    height: 600px;
}

.proud-slider .swiper-slide {
    height: 563px;
    width: 100%;
    border-radius: 11px;
    overflow: hidden;
}

.proud-slider .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.proud-slider-prev::after {
    content: none;
}

.proud-slider-prev {
    display: inline-flex;
    height: 36px;
    padding: 17px 24px;
    justify-content: center;
    align-items: center;
    border-radius: 12px;
    background: #FFF;
    backdrop-filter: blur(10px);
}

.proud-slider-next::after {
    content: none;
}

.proud-slider-next {
    display: inline-flex;
    height: 36px;
    padding: 17px 24px;
    justify-content: center;
    align-items: center;
    border-radius: 12px;
    background: #FFF;
    backdrop-filter: blur(10px);
}

.proud-slider-pagination.swiper-pagination {
    bottom: 0;
}

.proud-slider-pagination.swiper-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
}

.proud-slider-pagination.swiper-pagination .swiper-pagination-bullet-active {
    background: #000;
}

.proud-wrapper {
    height: auto;
    display: flex;
    align-items: flex-start;
    gap: 24px;
    width: 100%;
}

.menu {
    position: relative;
    overflow: hidden;
    padding-top: 128px;
}

.menu .container-wrapper {
    display: flex;
    flex-direction: column;
    gap: 64px;
}

.menu-content {
    max-width: 465px;
    width: 100%;
    display: flex;
    flex-direction: column;
    padding: 0 32px;
}

.menu-content h2 {
    color: #000;
    font-size: 111px;
    font-weight: 700;
    margin-bottom: 18px;
}

.menu-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.menu-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.menu-content p {
    color: #000;
    font-size: 22px;
    font-weight: 400;
    letter-spacing: -0.22px;
    margin-bottom: 32px;
}

.menu-content-link {
    display: flex;
    max-width: 304px;
    width: 100%;
    padding: 4px 22px;
    justify-content: center;
    align-items: center;
    color: #FFF;
    text-align: center;
    font-size: 33px;
    font-weight: 700;
    line-height: 120%;
    text-decoration: none;
    border-radius: 11px;
    background: linear-gradient(180deg, #3A4A3E -6.14%, #FFF 209.77%);
}

.menu-swiper {
    width: 100%;
    height: 400px;
}

.swiper-wrapper {
    height: 100%;
}

.menu-content-image {
    height: 100%;
}

.menu-content-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.menu-swiper-next::after {
    content: none;
}

.menu-swiper-next {
    display: inline-flex;
    height: 36px;
    padding: 17px 24px;
    justify-content: center;
    align-items: center;
    border-radius: 12px;
    background: #FFF;
    backdrop-filter: blur(10px);
}

.menu-swiper-prev::after {
    content: none;
}

.menu-swiper-prev {
    display: inline-flex;
    height: 36px;
    padding: 17px 24px;
    justify-content: center;
    align-items: center;
    border-radius: 12px;
    background: #FFF;
    backdrop-filter: blur(10px);
}

.menu-nav {
    max-width: 1600px;
    width: 100%;
    padding: 0 32px;
    position: absolute;
    top: 50%;
    left: 50%;
    height: 36px;
    transform: translate(-50%, -50%);
    z-index: 2;
}

.branches {
    position: relative;
    overflow: hidden;
}

.branches__map {
    width: 100vw;
    height: auto;
}

.branches-wrapper h2 {
    color: #F4F4F4;
    font-size: 111px;
    position: absolute;
    max-width: 1600px;
    width: 100%;
    padding: 0 32px;
    left: 50%;
    transform: translateX(-50%);
    font-weight: 700;
    top: 15%;
    z-index: 2;
}


.branch-swiper .swiper-pagination {
    position: static;
    margin-top: 14px;
}

.branch-swiper .swiper-pagination .swiper-pagination-bullet-active {
    background: #000;
}

.branches__info {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.branches__info-top {
    display: flex;
    align-items: flex-end;
}

.branches__info-top h3 {
    color: #000;
    font-family: "Times New Roman";
    font-size: 39px;
    font-weight: 400;
    line-height: 100%;
    max-width: 400px;
    width: 100%;
}

.branches__info-top--rating {
    display: flex;
    align-items: flex-end;
    flex-direction: column;
    gap: 12px;
}

.branches__info-top--rating span {
    color: #000;
    font-size: 39px;
    font-weight: 400;
}

.branches__info-top--rating img {
    width: 177.31px;
    height: 21.66px;
    object-fit: contain;
}

.branches__info-bottom {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}

.branches__info-bottom ul {
    display: flex;
    flex-direction: column;
}

.branches__info-bottom ul li {
    display: flex;
    align-items: center;
    gap: 7px;
}

.branches__info-bottom ul li span {
    color: #000;
    font-family: "Times New Roman";
    font-size: 16px;
    font-weight: 400;
    line-height: 100%;
}

.branches__info-bottom ul li a {
    color: #000;
    font-family: "Times New Roman";
    font-size: 16px;
    font-weight: 400;
    line-height: 100%;
    text-decoration: none;
}

.branches__location::before {
    content: "";
    width: 12px;
    height: 12px;
    flex-shrink: 0;
    background: url(../images/loc.svg) no-repeat center center;
    background-size: contain;
    display: inline-block;
}

.branches__thime::before {
    content: "";
    width: 12px;
    height: 12px;
    flex-shrink: 0;
    background: url(../images/phone.svg) no-repeat center center;
    background-size: contain;
    display: inline-block;
}

.branches__thime:nth-of-type(2):before {
    content: "";
    width: 12px;
    height: 12px;
    flex-shrink: 0;
    background: url(../images/time.svg) no-repeat center center;
    background-size: contain;
    display: inline-block;
}

.branches__info-bottom-link {
    text-decoration: none;
    padding: 12px 22px;
    border-radius: 11px;
    background: linear-gradient(180deg, #3A4A3E -6.14%, #FFF 209.77%);
    color: #FFF;
    text-align: center;
    font-size: 12px;
    font-weight: 400;
    line-height: 120%;
}

.sustainability .proud-slider {
    width: calc(100% - 670px - 24px);
}

.sustainability .proud-content {
    width: 670px;
}

.sustainability .container {
    display: flex;
    flex-direction: column;
    gap: 75px;
}

.proud-wrapper-box {
    display: flex;
    gap: 20px;
}

.proud-wrapper-box h3 {
    color: #000;
    font-size: 22px;
    max-width: 630px;
    width: 100%;
    font-weight: 700;
}

.proud-wrapper-box-description {
    display: flex;
    gap: 20px;
}

.proud-wrapper-box-description p {
    flex: 1 0 0;
    color: #000;
    font-size: 17px;
}

.contact {
    padding: 164px 32px;
    position: relative;
}

.contact-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.contact-bg img {
    width: 100%;
    height: 100%;
    object-position: center bottom;
    object-fit: cover;
}

.contact .container {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.contact h2 {
    color: #000;
    font-size: 111px;
    font-weight: 700;
}

.contact address {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    max-width: 392px;
    width: 100%;
    text-align: center;
}

.contact address p,
.contact address a {
    color: #000;
    text-align: center;
    text-decoration: none;
    font-size: 27px;
    font-weight: 400;
}


.retail {
    padding: 128px 0;
    position: relative;
}

.retail-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.retail-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.retail .container-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 110px;
}

.retail .container {
    max-width: 1600px;
    padding: 0 32px;
    text-align: center;
}

.retail h2 {
    color: #000;
    font-size: 111px;
    font-weight: 700;
}

.retail-swiper {
    width: 100%;
    padding-bottom: 70px;
}

.retail-swiper .swiper-slide {
    width: 510px;
    height: 504px;
}

.retail-swiper-box {
    width: 100%;
    height: 100%;
    padding: 30px 57px 20px 57px;
    border-radius: 5px;
    background: linear-gradient(0deg, #CECECE 0%, #FFF 100%);
    box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.25);
}

.retail-swiper-image {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 5px;
}

.retail-swiper-counter {
    color: #000;
    font-size: 33px;
    font-weight: 700;
    line-height: 93%;
    width: 60px;
    flex-shrink: 0;
    white-space: nowrap;
}

.retail-swiper-image-product {
    width: 165.36px;
    height: 229.2px;
}

.retail-swiper-image-product img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.retail-swiper-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 340px;
    width: 100%;
    margin: 0 auto;
    height: calc(100% - 230px);
}

.retail-swiper-title {
    display: flex;
    align-items: center;
    flex-direction: column;
    margin-bottom: 13px;
}

.retail-swiper-title h3 {
    text-align: center;
    color: #000;
    text-align: center;
    font-size: 33px;
    font-weight: 700;
    margin-bottom: 10px;
}

.retail-swiper-title p {
    color: #000;
    font-size: 17px;
    font-weight: 400;
}

.retail-swiper-price {
    font-size: 22px;
    font-weight: 700;
    line-height: 93%;
    margin-bottom: 15px;
    margin-top: auto;
}

.retail-swiper-btn {
    padding: 12px 22px;
    border-radius: 11px;
    background: linear-gradient(180deg, #3A4A3E -6.14%, #FFF 209.77%);
    border: none;
    color: #FFF;
    text-align: center;
    font-size: 18px;
    font-weight: 400;
    line-height: 120%;
}

.franchise {
    position: relative;
    padding: 128px 32px;
}

.franchise-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.franchise-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}


.franchise .container {
    display: flex;
    flex-direction: column;
    gap: 97px;
}

.franchise-title {
    display: flex;
    flex-direction: column;
    gap: 23px;
    margin: 0 auto;
    max-width: 670px;
    width: 100%;
}

.franchise-title h2 {
    text-align: center;
    font-size: 111px;
    font-weight: 700;
}

.franchise-title p {
    text-align: center;
    font-size: 22px;
    font-weight: 400;
}

.franchise-form {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 24px 12px;
    max-width: 999px;
    width: 100%;
    margin: 0 auto;
}

.franchise-form input {
    max-width: 325px;
    width: 100%;
    padding: 18px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.20);
    background: rgba(0, 0, 0, 0.40);
    backdrop-filter: blur(10px);
    color: rgba(255, 255, 255, 0.50);
    font-family: Philosopher;
    font-size: 18px;
    font-weight: 400;
    line-height: 24px;
}

.franchise-form input::placeholder {
    color: rgba(255, 255, 255, 0.50);
    font-family: Philosopher;
    font-size: 18px;
    font-weight: 400;
    line-height: 24px;
}

.franchise-form-btn {
    display: flex;
    padding: 18px 24px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    align-self: stretch;
    border-radius: 24px;
    background: linear-gradient(180deg, #3A4A3E -6.14%, #FFF 209.77%);
    color: #FFF;
    text-align: center;
    font-size: 16px;
    font-weight: 400;
    line-height: normal;
    text-transform: uppercase;
    border: none;
}

.franchise-form-btn img {
    filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(0%) hue-rotate(99deg) brightness(103%) contrast(101%);
}

.news {
    padding: 128px 32px;
    position: relative;
    overflow: hidden;
}

.news-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.news-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.news .container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.news h2 {
    text-align: center;
    font-size: 111px;
    font-weight: 700;
    line-height: 100%;
}

.news-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.news-item {
    width: calc(33.33% - 14px);
    border-radius: 5px;
    height: 400px;
    background: linear-gradient(0deg, #FFF 0%, #FFF 100%);
    box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.25);
}


.news-view {
    padding: 30px 0;
    width: 100%;
    border-radius: 5px;
    text-decoration: none;
    text-align: center;
    background: linear-gradient(0deg, #FFF 0%, #FFF 100%);
    box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.25);
    color: #000;
    border: none;
    background: #fff;
    font-size: 17px;
}

.news-item-link {
    padding: 18px 16px;
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    text-decoration: none;
}

.news-item-image {
    height: 190px;
    width: 100%;
    border-radius: 5px;
    overflow: hidden;
    flex-shrink: 0;
    margin-bottom: 16px;
}

.news-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-item-title {
    color: #1E1E1E;
    font-size: 22px;
    font-weight: 700;
}

.news-item-text {
    color: #1E1E1E;
    font-size: 22px;
    font-weight: 400;
}

.news-item-links {
    display: flex;
    padding: 12px 24px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 24px;
    background: linear-gradient(180deg, #3A4A3E -6.14%, #FFF 209.77%);
    color: #FFF;
    text-align: center;
    font-family: Philosopher;
    font-size: 16px;
    text-transform: uppercase;
    width: max-content;
    margin-top: auto;
}

.news-item-links img {
    filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(0%) hue-rotate(99deg) brightness(103%) contrast(101%);
}

.team {
    padding: 128px 32px;
    position: relative;
    overflow: hidden;
}

.team-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.team-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.team .container {
    display: flex;
    gap: 64px;
}

.team-content {
    width: 303px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 23px;
}

.team-content h2 {
    color: #000;
    font-size: 111px;
    font-weight: 700;
}

.team-content p {
    font-size: 22px;
    font-weight: 400;
    letter-spacing: -0.22px;
}

.team-swiper {
    width: calc(100% - 303px - 64px);
    display: flex;
    flex-direction: column;
    gap: 72px;
}

.team-swiper .swiper-scrollbar {
    position: static;
}

.team-swiper .swiper-slide {
    width: 308px;
    height: 370px;
    border-radius: 5px;
    overflow: hidden;
}

.team-item {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    justify-content: flex-end;
    flex-direction: column;
    padding: 20px;
}

.team-item-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.team-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(0.5);
}

.team-item h3 {
    color: #FFF;
    font-size: 29px;
    font-weight: 700;
    line-height: 113%;
}

.team-item p {
    color: #FFF;
    font-size: 21px;
    font-weight: 400;
    line-height: 113%;
}




/* Footer */
.footer {
    background-color: #1a1a1a;
    color: #fff;
    padding: 80px 32px 30px;
    position: relative;
    z-index: 10;
}

.footer__content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 60px;
}

.footer__col {
    flex: 1;
    min-width: 250px;
}

.footer__logo {
    display: block;
    margin-bottom: 24px;
    /* Invert logo to white if it is black */
    filter: brightness(0) invert(1);
}

.footer__text {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 24px;
    max-width: 300px;
}

.footer__socials {
    display: flex;
    gap: 16px;
}

.footer__socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    transition: all 0.3s ease;
}

.footer__socials a:hover {
    background-color: #fff;
    border-color: #fff;
}

.footer__socials a img {
    filter: brightness(0) invert(1);
    transition: all 0.3s ease;
}

.footer__socials a:hover img {
    filter: brightness(0);
}

.footer__title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #fff;
}

.footer__nav,
.footer__contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer__nav li,
.footer__contact li {
    margin-bottom: 16px;
}

.footer__nav a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 16px;
}

.footer__nav a:hover {
    color: #fff;
}

.footer__contact li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
}

.footer__contact a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer__contact a:hover {
    color: #fff;
}

.footer__contact img {
    filter: brightness(0) invert(1);
}

.footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
}

.sustainability .proud-slider .swiper-slide {
    height: 440px;
}

.sustainability .proud-slider {
    height: 500px;
}

.article-page {
    padding: 128px 32px;
    position: relative;
    overflow: hidden;
}

.article-page-box {
    border-radius: 5px;
    background: linear-gradient(0deg, #FFF 0%, #FFF 100%);
    box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.25);
    /* max-height: 723px; */
    max-height: 100%;
    height: 100%;
    overflow: hidden;
    padding: 32px 52px;
    display: flex;
    flex-direction: column;
}

.article-page-scroll {
    /* overflow-y: auto; */
    /* padding-right: 32px; */
    flex: 1;
    min-height: 0;
    -webkit-overflow-scrolling: touch;
}

.article-page-image {
    position: relative;
    width: 100%;
    height: 390px;
    margin-bottom: 32px;
}

.article-page-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.article-page-content {
    position: absolute;
    border-radius: 11px;
    background: rgba(0, 0, 0, 0.50);
    backdrop-filter: blur(8px);
    max-width: 396px;
    width: 100%;
    top: 50%;
    transform: translateY(-50%);
    left: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 16px;
}

.article-page-content h1 {
    color: #FFF;
    font-family: "Times New Roman";
    font-size: 55px;
    font-weight: 700;
    line-height: 100%;
}

.article-page-content p {
    color: #FFF;
    font-family: "Times New Roman";
    font-size: 22px;
    font-weight: 400;
    line-height: 100%;
}

.article-page-text {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.article-page-text h2 {
    color: #1E1E1E;
    font-family: "Times New Roman";
    font-size: 22px;
    font-weight: 700;
    line-height: 100%;
}

.article-page-text p {
    color: #1E1E1E;
    font-family: "Times New Roman";
    font-size: 22px;
    font-weight: 400;
    line-height: 100%;
}

.page404-box {
    padding: 128px 0;
    position: relative;
    overflow: hidden;
    min-height: 1080px;
    display: flex;
}

.page404-page-scroll h1 {
    color: #000;
    text-align: center;
    font-family: Philosopher;
    font-size: 111px;
    margin-bottom: 22px;
    font-weight: 700;
    line-height: 100%;
    /* 111px */
}

.page404-page-scroll p {
    color: #000;
    text-align: center;
    font-size: 22px;
    font-weight: 400;
    line-height: 100%;
    /* 22px */
    margin-bottom: 114px;
}

.page404-page-scroll a {
    text-decoration: none;
    display: inline-flex;
    height: 60px;
    padding: 12px 24px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 24px;
    background: linear-gradient(180deg, #3A4A3E -6.14%, #FFF 209.77%);
    color: #FFF;
    text-align: center;
    font-family: Philosopher;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: uppercase;
}

.page404-box .container {
    position: relative;
    justify-content: center;
    align-items: center;
    display: flex;
}

.image404 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 1038px;
    height: 504px;
    z-index: -1;
}

.image404 img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center top;
}

.page404-page-scroll {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page404-box .bg404 {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.page404-box .bg404 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.menu-content-image-des {
    display: block;
    width: 100%;
    height: 100%;
}

.menu-content-image-mob {
    display: none;
}

.contact-list {
    display: flex;
    gap: 16px;
}

.contact-list-item {
    display: flex;
}

.proud-content-description b {
    font-weight: 700;
}

.thank-you-page h1 {
    font-size: 25px;
    font-weight: 700;
    margin-bottom: 16px;
}

.thank-you-page h2 {
    font-size: 25px;
    font-weight: 400;
    margin-bottom: 64px;
}

.hero.location-city {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    height: auto;
}

.hero.location-city .container {
    justify-content: center;
}

.hero.location-city .container .hero__content {
    justify-content: center;
    align-items: center;
    display: flex;
    flex-direction: column;
}

.hero.location-city .hero__content h1 {
    font-family: Philosopher;
    font-size: 104px;
    font-style: normal;
    font-weight: 700;
    line-height: 120%;
    /* 104px */
    background: linear-gradient(180deg, #3A4A3E -6.14%, #FFF 209.77%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 10px;
}

.hero.location-city .hero__content p {
    margin-bottom: 32px;
    color: #000;
    text-align: center;
    font-family: Philosopher;
    font-size: 41px;
    font-style: italic;
    font-weight: 400;
    line-height: 100%;
}

.hero.location-city .hero__list-link {
    width: max-content;
    margin: 0 auto;
}

.location-city .hero__bg--image::before {
    content: "";
    opacity: 0.8;
    background: #fff;
    position: absolute;
    inset: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
}

.location-city .hero__bg--image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}



@media (max-width: 1280px) {

    .menu-content-image-mob {
        display: block;
        width: 100%;
        height: 100%;
    }

    .thank-you-page-image {
        width: 90px;
        height: 90px;
    }

    .thank-you-page-image img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

    .menu-content-image-des {
        display: none;
    }

    .article-page-box {
        padding: 32px 16px;
    }

    .article-page {
        padding: 128px 16px;
    }

    /* .article-page-scroll {
        padding-right: 16px;
    } */

    .page404-page-scroll h1 {
        font-size: 3rem
    }

    .page404-page-scroll p {
        font-size: 18px;
        margin-bottom: 32px;
    }

    .header__burger {
        display: flex;
    }

    .header__nav {
        position: fixed;
        top: 0;
        right: -100vw;
        width: 100%;
        height: 100vh;
        overflow: auto;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(15px);
        display: flex;
        align-items: center;
        justify-content: center;
        transition: 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0);
        z-index: 1000;
        border-radius: 0;
        padding: 0;
    }

    .header__nav.active {
        right: 0;
    }

    .header__menu {
        flex-direction: column;
        align-items: center;
        gap: 30px;
        padding: 64px 0 32px 0;
        height: auto;
    }

    .header__menu li a {
        color: #000;
        font-size: 24px;
        font-weight: 700;
    }

    /* Burger Animation */
    .header__burger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 6px);
    }

    .header__burger.active span:nth-child(2) {
        opacity: 0;
    }

    .header__burger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -8px);
    }

    /* Hide desktop elements or adjust */
    .header__content-contact {
        display: none;
        /* Simplify for mobile or move into menu if needed */
    }

    .hero .container {
        flex-direction: column;
        gap: 64px;
    }

    .hero__list {
        gap: 32px;
        max-width: 100%;
    }

    .hero__list-ul {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 12px;
    }

    .hero__list-item {
        min-width: 288px;
        flex: 1 0 0;
    }

    .hero {
        min-height: auto;
        height: auto;
        padding: 164px 32px 64px 32px;
    }

    .hero__content h1 br {
        display: none;
    }

    .hero__content h1 {
        text-align: center;
        font-size: 7rem;
    }

    .header {
        padding: 24px 16px;
        width: calc(100% - 64px);
    }

    .about {
        padding: 0 16px;
    }

    .mission .container {
        align-items: flex-start;
    }

    .mission {
        padding: 64px 32px 650px 32px;
        height: auto;
    }

    .about .container {
        justify-content: flex-start;
    }

    .proud {
        padding: 64px 32px;
    }

    .proud .proud-wrapper {
        flex-direction: column-reverse;
    }

    .proud-slider {
        width: 100%;
    }

    .proud-content {
        width: 100%;
    }

    .menu-content {
        padding: 0 32px;
    }

    .contact {
        padding: 64px 16px;
    }

    .sustainability .proud-slider {
        width: 100%;
    }

    .sustainability .proud-content {
        width: 100%;
    }

    .proud-wrapper-box {
        flex-direction: column;
    }

    .proud-wrapper-box-description {
        flex-wrap: wrap;
    }

    .proud-wrapper-box-description p {
        min-width: 288px;
    }

    .branches {
        padding-top: 64px;
    }

    .branches-wrapper h2 {
        position: static;
        color: #000;
        transform: none;
        padding: 0 32px;
        margin-bottom: 32px;
    }

    .franchise {
        padding: 64px 16px;
    }

    .retail {
        padding: 64px 0;
    }

    .news {
        padding: 64px 32px;
    }

    .team {
        padding: 64px 32px;
    }

    .team .container {
        flex-direction: column;
        align-items: center;
    }

    .team-content {
        width: 100%;
        align-items: center;
    }

    .team-swiper {
        width: 100%;
        gap: 32px;
    }

    .news-item {
        width: calc(50% - 10px);
    }

    .team-content p {
        text-align: center;
    }

    .footer {
        padding: 64px 32px;
    }

    .menu {
        padding-top: 64px;
    }
}


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

    .container__wrapper {
        max-width: 100%;
    }

    .header__logo {
        width: 150px;
        height: auto;
    }

    .header__logo img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

    .header {
        top: 25px;
    }

    .container__wrapper h2 {
        font-size: 36px;
    }

    .container__wrapper p {
        font-size: 16px;
    }

    .menu-content h2 {
        font-size: 36px;
    }

    .menu-content p {
        font-size: 16px;
    }

    .proud-wrapper-box-description p {
        font-size: 16px;
    }

    .retail-swiper-title p {
        font-size: 16px;
    }

    .contact address p,
    .contact address a {
        font-size: 24px;
    }

    .about {
        height: auto;
        padding: 64px 32px;
    }

    .mission__content h2 {
        font-size: 36px;
    }

    .news {
        overflow: visible;
    }

    .news-list {
        position: relative;
    }

    .menu-content-link {
        font-size: 24px;
    }

    .news-item {
        position: sticky;
        top: 100px;
    }

    .mission__content p {
        font-size: 16px;
    }

    .proud-content h2 {
        font-size: 36px;
    }

    .contact h2 {
        font-size: 36px;
    }

    .contact p,
    .contact a {
        font-size: 16px;
    }

    .proud-content-description p {
        font-size: 16px;
    }

    /* .about .about__parallax-bg {
        height: 1200px;
        width: 1000px;
    } */

    .mission__image img {
        width: 800px;
        height: 750px;
        object-position: 130% bottom;
    }

    .mission__image {
        z-index: 0;
        display: flex;
        align-items: flex-end;
    }

    .retail h2 {
        font-size: 36px;
    }

    .retail .container-wrapper {
        gap: 64px;
    }

    .franchise .container {
        gap: 64px;
    }

    .franchise-title h2 {
        font-size: 36px;
    }

    .franchise-title p {
        font-size: 16px;
    }

    .franchise-form {
        flex-direction: column;
    }

    .franchise-form-btn {
        width: max-content;
        margin: 0 auto;
    }

    .sustainability .container {
        gap: 64px;
    }

    .branches-wrapper h2 {
        font-size: 36px;
    }

    .team-content h2 {
        font-size: 36px;
    }

    .team-content p {
        font-size: 16px;
        text-align: center;
    }

    .news h2 {
        font-size: 36px;
    }

    .news-item {
        width: 100%;
        min-height: 400px;
        height: auto;
    }

    .news-item-text {
        margin-bottom: 16px;
    }

    .branches__info-top {
        flex-direction: column;
    }

    .branches__popup {
        padding: 16px;
    }

    .branches__info-top h3 {
        font-size: 24px;
    }

    .branches__info-top--rating span {
        font-size: 28px;
    }

    .branches__info-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .branches__info-bottom ul {
        gap: 8px;
    }

    .proud-slider {
        height: 350px;
    }

    .proud-slider .swiper-slide {
        height: 300px;
    }

    .branches__info {
        gap: 24px;
    }

    .news-page {
        padding-top: 128px;
    }

    .hero.location-city .hero__content h1 {
        font-size: 38px;
    }

    .hero.location-city .hero__content p {
        font-size: 24px;
    }
}

@media (max-width: 768px) {
    .footer__content {
        flex-direction: column;
        gap: 40px;
    }

    .article-page-content {
        max-width: calc(100% - 40px);
        top: auto;
        bottom: 24px;
        transform: none;
    }

    .page404-box {
        min-height: auto;
    }


    .article-page-content p {
        font-size: 16px;
    }

    .image404 {
        height: auto;
    }

    .article-page-text h2 {
        font-size: 24px;
    }

    .article-page-description {
        font-size: 16px;
    }

    .article-page-content h1 {
        font-size: 24px;
    }

    .footer__content {
        flex-direction: row;
    }

    .footer__col:nth-of-type(1) {
        flex: 1 0 100%;
    }

    .footer__col:nth-of-type(2),
    .footer__col:nth-of-type(3) {
        min-width: 150px;
    }

    .coffeeraves-page {
        padding-top: 128px;
    }

    .page404-page-scroll h1 {
        font-size: 2rem;
    }

    .thank-you-page h2 {
        font-size: 1.5rem;
        text-align: center;
    }

    .page404-box.thank-you-page {
        padding: 128px 32px;
    }
}

.article-page-link {
    transition: all 0.3s;
    cursor: pointer;
}

/* --- Hover Effects --- */

/* Header */
.header__menu li a {
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

.header__menu li a:hover {
    color: #fff;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.6);
}

.header__content-contact--link {
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.header__content-contact--link:hover {
    opacity: 0.7;
}

.header__content-contact--tel {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.header__content-contact--tel:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(58, 74, 62, 0.3);
}

/* Hero */
.hero__list-link {
    transition: all 0.3s ease;
}

.hero__list-link:not(.hero__list--link--active):hover {
    background: rgba(255, 255, 255, 0.8);
    color: #000;
    transform: translateX(5px);
}

.hero__list--link--active:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(58, 74, 62, 0.3);
}

/* Menu */
.menu-content-link {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.menu-content-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(58, 74, 62, 0.4);
}

/* Swiper Navigation & Pagination */
.swiper-button-next,
.swiper-button-prev {
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background-color: #f0f0f0;
    transform: scale(1.05);
}

.swiper-button-next:active,
.swiper-button-prev:active {
    transform: scale(0.95);
}

/* Retail */
.retail-swiper-btn {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.retail-swiper-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(58, 74, 62, 0.2);
}

/* Franchise */
.franchise-form-btn {
    transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease;
    cursor: pointer;
}

.franchise-form-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(58, 74, 62, 0.3);
    opacity: 0.95;
}

/* News */
.news-item {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.news-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.news-item-image img {
    transition: transform 0.5s ease;
}

.news-item:hover .news-item-image img {
    transform: scale(1.05);
}

.news-item-links {
    transition: padding 0.3s ease, gap 0.3s ease;
}

.news-item-link:hover .news-item-links {
    gap: 15px;
    padding-right: 20px;
}

.news-view {
    transition: background-color 0.3s ease, color 0.3s ease;
    cursor: pointer;
}

.news-view:hover {
    background-color: #1a1a1a;
    color: #fff;
}

/* Branches */
.branches__info-bottom-link {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: inline-block;
}

.branches__info-bottom-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(58, 74, 62, 0.3);
}

/* Contact Links */
.contact address a {
    transition: color 0.3s ease;
}

.contact address a:not(:has(img)):hover {
    color: #3A4A3E;
}

.contact address a img {
    transition: transform 0.3s ease;
}

.contact address a:has(img):hover img {
    transform: scale(1.1) rotate(5deg);
}

/* Form Inputs Focus */
.franchise-form input {
    transition: border-color 0.3s ease, background-color 0.3s ease;
}

.franchise-form input:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.6);
    background: rgba(0, 0, 0, 0.6);
}

/* Burger Menu Hover */
.header__burger span {
    transition: background-color 0.3s ease, width 0.3s ease;
}

.header__burger:hover span {
    background-color: #3A4A3E;
}

.header__burger:hover span:nth-child(2) {
    width: 80%;
    margin-left: auto;
}

@media (max-width: 400px) {
    .retail-swiper .swiper-slide {
        width: 100%;
        height: auto;
    }

    .retail-swiper-title h3 {
        font-size: 24px;
    }

    .retail-swiper-box {
        padding: 32px 16px;
    }

    .retail-swiper-title p {
        text-align: center;
    }
}

.menuPage {
    padding-top: 128px;
    padding-bottom: 128px;
}

.menuPage .container {
    display: block;
}

.menuPage__pdf {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.menuPage__pdf-loading {
    padding: 80px 0;
    text-align: center;
    font-size: 22px;
}

.menuPage__pdf-page-link {
    display: block;
    width: 100%;
    cursor: zoom-in;
    transition: transform 0.2s ease;
}

.menuPage__pdf-page-link:hover {
    transform: scale(1.01);
}

.menuPage__pdf-page {
    display: block;
    max-width: 100%;
    height: auto;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
    border-radius: 4px;
}

.menuPage__download {
    display: flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    margin: 32px auto 0;
    padding: 14px 36px;
    color: #FFF;
    font-size: 20px;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    border-radius: 11px;
    background: linear-gradient(180deg, #3A4A3E -6.14%, #FFF 209.77%);
    transition: opacity 0.2s ease;
}

.menuPage__download:hover {
    opacity: 0.85;
}

@media (max-width: 768px) {
    .menuPage {
        padding-top: 128px;
    }
}