* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

@-moz-document url-prefix() {
    html, .locations-body {
        scrollbar-width: thin;
        scrollbar-color: #D5D5D5 #F1F1F1;
    }
}

html::-webkit-scrollbar, .locations-body::-webkit-scrollbar {
    width: 5px; 
}

html::-webkit-scrollbar-thumb, .locations-body::-webkit-scrollbar-thumb {
    background: #E6E6E6; 
    height: 87px;
    border-radius: 3px;
}

:root {
    --primary-color: #D20017;
    --text-color: #3D3D3D;
    --text-color1: #343434;
    --tertiary-color: #F3F3F3;
    --brand-grey: #E1E1E1;
}

.site-nav {
    display: none;
    position: fixed;
    top: 295px;
    left: 45px;
    width: 50px;
    height: 50px;
    z-index: 20;

    a {
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        position: absolute;
        width: 80px;
        height: 80px;
        transition: all 0.3s ease;
    }
}

.other-sites {
    position: absolute;
    width: 0px;
    height: 0px;
    top: -90px; opacity: 0;
    transition: all 0.3s ease;
    a {
        transform: scale(0.4);
        transition: all 0.3s ease;
    }
}
.site-nav:hover .other-sites {
    opacity: 1; 
    width: 180px;
    height: 240px;
    a { transform: scale(1); }
}
.site-nav:hover .nikora-nav { top: 0; left: 0; }
.site-nav:hover .deidanato-nav { top: 10px; left: 90px; }
.site-nav:hover .mzareuli-nav { left: 55px; top: 92px; }
.site-nav:hover .sawarmo-nav { top: 160px; left: 0; }

.metable-nav {
    background: var(--primary-color);
    width: 50px !important;
    height: 50px !important;
    left: 0 !important;
    z-index: 2 !important;
}

.nikora-nav {
    background: #D20017;
    top: 20px; left: 0;
    img {
        filter: brightness(0) invert(1);
        transform: scale(0.7);
    }
    &:hover { background: #E11A2F; }
}

.deidanato-nav {
    background: #1A46BA;
    top: 50px; left: 50px;
    &:hover { filter: brightness(1.2); }
}

.mzareuli-nav {
    background: #E96D0C;
    left: 50px; top: 100px;
    &:hover { background: #FE7810; }
}

.sawarmo-nav {
    background: #D20017;
    color: white;
    text-decoration: none;
    font: 11px 'BPG LE Studio 02 Caps';
    line-height: 11px;
    top: 140px; left: 0;
    &:hover { background: #E11A2F; }
}

.Container {
    display: flex;
    justify-content: center;
    width: 100%;
    padding: 0 20px;
}

.content, .content1, .content2 {
    display: flex;
    width: 100%;
    max-width: 1344px;
}
.content1 { max-width: 1136px; }
.content2 { max-width: 1136px; flex-direction: column; }

.banner-img {
    width: 100%;
    height: 700px;
    object-fit: cover;
}

header {
    min-height: 80px;
    position: fixed;
    top: 20px;
    z-index: 1000;
}

.header-content {
    background: rgba(255, 255, 255, 0.7);
    -webkit-backdrop-filter: blur(3px);
    backdrop-filter: blur(3px);
    border-radius: 40px;
    filter: brightness(0.27);
    align-items: center;
    filter: drop-shadow(0px 3px 3px rgba(0,0,0,0.16));
    filter: blur(60%);
    padding: 0 39px 0 74px;
    z-index: 1000;
}

.header-actions, .header-actions1 {
    display: flex;
    align-items: center;
    gap: 15px;
}
.header-actions1 {
    margin-left: auto;
    gap: 20px;
}

.language-change {
    background: transparent;
    border: none;
    font: 14px 'BPG Mrgvlovani Caps 2010';
    line-height: 19px;
    width: 31px;
}

.search {
    background: transparent;
    border: none;
}

.location-link {
    background: var(--text-color1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    position: relative;
    transition: all 0.3s ease;
    &::after { border-radius: 50%; }
}

.tooltiptext1 {
    background: rgba(33, 33, 33, 0.9);
    border-radius: 5px;
    color: white;
    display: none;
    align-items: center;
    justify-content: center;
    font: 8px 'BPG Mrgvlovani';
    line-height: 11px;
    min-width: 98px;
    height: 31px;
    padding: 10px 11px;
    position: absolute;
    z-index: 1;
    top: 60px;
    &::after {
        content: "";
        position: absolute;
        bottom: 100%;
        left: 50%;
        margin-left: -5px;
        border-width: 5px;
        border-style: solid;
        border-color: transparent transparent rgba(52, 52, 52, 0.9) transparent;
    }
} 

.location-link:hover {
    background: var(--primary-color);
    .tooltiptext1 { display: flex; }
    &::after { opacity: 1; }
}

.go-back {
    background: rgba(0,0,0,0.12);
    border-radius: 50%;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    width: 45px;
    height: 45px;
    transition: all 0.3s ease;
    img {
        width: 22px;
        object-fit: contain;
        margin-left: -2px;
    }
    i { display: none; }
}
.go-back:hover {
    background: #D20017;
    img { display: none; }
    i { display: block; }
}

#menu-toggle-button { display: none; }

.dropdownMenu {
    background: rgba(255, 255, 255, 0.9);
    -webkit-backdrop-filter: blur(3px);
    backdrop-filter: blur(3px);
    filter: brightness(0.27);
    filter: drop-shadow(0px 3px 3px rgba(0,0,0,0.16));
    filter: blur(60%);
    position: absolute;
    top: -20px;
    width: 100%;
    height: 0;
    overflow-y: auto;
    overflow-x: hidden;
    transition: height 0.5s ease;
    padding: 0 35px;
}
  
.dropdownMenu.visible, .dropdownMenu.active { height: calc(100svh + 85px); }

.mobile-search {
    margin-top: 120px;
    position: relative;
    margin-bottom: 35px;
    input {
        background: transparent;
        border: 1px solid #E3E3E3;
        border-radius: 23px;
        color: #888;
        font: 12px 'BPG Mrgvlovani';
        line-height: 16px;
        padding: 0 45px 0 20px;
        height: 45px; width: 100%;
        &:focus { outline: none; }
    }
    button {
        background: transparent;
        border: none;
        position: absolute;
        top: 8px; right: 15px;
        img { filter: invert(0.6); }
    }
}

.mobile-nav {
    border-top: 1px solid #E3E3E3;
    i { transition: transform 0.3s ease; }
}

.mobile-nav ul {
    list-style: none;
    margin: 0;
    max-height: 0;
    overflow: hidden;
    padding: 0;
    transition: max-height 0.3s ease;

    li { display: flex; }
    a {
        color: var(--text-color);
        text-decoration: none;
        display: flex;
        align-items: center;
        font: 14px 'FiraGo';
        line-height: 17px;
        height: 55px;
        padding-left: 30px;
        padding-right: 20px;
        width: 100%;
        transition: all 0.3s ease;
        &:hover { background: #FBECDD; }
    }

}

.mobile-nav.active {
    ul { max-height: 1000px; }
    i { transform: rotate(180deg); }
}

.mobile-nav-head {
    color: black;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 17px 0;
    font: 16px 'FiraGo';
    line-height: 19px;
    i { color: #888888; font-size: 12px; }
}

.mobile-nav > a {
    color: black;
    text-decoration: none;
    display: flex;
    font: 16px 'FiraGo';
    line-height: 19px;
    padding: 17px 0;
}

.lang-socials {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin: 150px 0 80px;
}

#lang-toggle {
    background: var(--primary-color);
    border: none;
    border-radius: 8px;
    color: white;
    font: 12px "BPG Mrgvlovani Caps 2010";
    line-height: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 23px;
    width: 95px;
    height: 35px;
}

.lang-socials .socials a {
    background: rgba(161, 123, 90, 0.21);
    color: #A17B5A;
    font-size: 12px;
    width: 35px; height: 35px;
}

.search-form {
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: -531px;
    height: 531px;
    left: 20%;
    right: 20%;
    transition: all 0.3s ease;
    overflow: hidden;
    z-index: 1001;
}

.search-form.active {
    top: 0;
    left: 0;
    right: 0;
}

.search-form-cont {
    display: flex;
    flex-direction: column;
    gap: 96px;
    width: 100%;
    max-width: 850px;
}

.search-form-cont > div {
    color: var(--text-color);
    display: flex;
    justify-content: space-between;
    font: 20px 'BPG Mrgvlovani';
    line-height: 28px;
}

.search-form-cont button {
    background: transparent;
    border: none;
}

.search-form-cont input {
    background: transparent;
    border: none;
    border-bottom: 1px solid #CFCFCF;
    color: #707070;
    font: 14px 'BPG Mrgvlovani';
    line-height: 19px;
    padding-bottom: 19px;
    &::placeholder { color: #707070; }
    &:focus { outline: none; }
}

.menu {
    display: flex;
    align-items: center;
    gap: 45px;
    margin-left: 155px;
}

.eng-menu { margin-left: 213px; }

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

.menu-item {
    cursor: pointer;
    height: 100%;
    position: relative;
    transition: all 0.3s ease;
    > a {
        color: unset;
        font: 18px 'FiraGo';
        line-height: 22px;
        font-feature-settings: "case" 1;
        text-decoration: none;
        padding: 20px 0 40px;
        transition: all 0.3s ease;
    }
}

.menu-item:hover {
    > a { color: var(--primary-color); }
    ul { display: flex; }
}
.menu-item.active > a { color: var(--primary-color); }

.menu-item ul {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 5px;
    display: none;
    flex-direction: column;
    list-style: none;
    padding: 0;
    margin: 0;
    position: absolute;
    top: 60px;
    left: -20px;
    z-index: 1000;
    width: 290px;

    li { display: flex; }
    li:first-child a { border-radius: 5px 5px 0 0; }
    li:last-child a { border-radius: 0 0 5px 5px; }
    a {
        color: var(--text-color);
        text-decoration: none;
        display: flex;
        align-items: center;
        font: 14px 'FiraGo';
        line-height: 17px;
        height: 55px;
        padding-left: 30px;
        padding-right: 20px;
        width: 100%;
        transition: all 0.3s ease;
        &:hover { background: #FBECDD; }
    }
}

.logo {
    display: flex;
    width: 49.1px;
    height: 46px;
}

.brand-history-prev {
    padding: 75px 20px;
    position: relative;
    .content1 {
        align-items: flex-start;
        gap: 60px;
    } 
}

.brand-history-prev, .brand-history-con {
    &::after, &::before {
        content: '';
        position: absolute;
        z-index: 2;
    }
    &::after {
        background: url('../images/emoji1.svg') no-repeat center center / cover;
        bottom: 85px; right: 115px;
        width: 192px; height: 229px;
    }
    &::before {
        background: url('../images/emoji2.svg') no-repeat center center / cover;
        bottom: -60px; left: 10px;
        width: 375px; height: 263px;
    }
}

.history-prev-img {
    position: relative;
    min-height: 565px;
    > img:first-child {
        position: relative;
        width: 523px;
        height: 517px;
        margin-left: 50px;
        object-fit: cover;
        z-index: 3;
    }
    button {
        background: var(--primary-color);
        border: none;
        position: absolute;
        right: 0; bottom: 0;
        width: 48px;
        height: 48px;
        transition: all 0.3s ease;
        z-index: 3;
        &:hover::after { opacity: 1; }
    }
    > div {
        border: 7px solid var(--primary-color);
        position: absolute;
        left: 0; bottom: 0;
        width: 455px;
        height: 490px;
        z-index: 2;
    }
}

.history-prev-img > video {
    position: relative;
    width: 523px;
    height: 517px;
    margin-left: 50px;
    object-fit: cover;
    z-index: 3;
}

.history-prev-img button::after, .history-prev a::after,
.location-link::after {
    content: '';
    position: absolute;
    inset: -10px;
    border: 10px solid rgba(198, 125, 54, 0.2);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.history-prev {
    padding-top: 70px;
    position: relative;
    z-index: 3;
    > p:first-child {
        color: black;
        font: 50px 'Gilroy GEO';
        line-height: 50px;
        margin-bottom: 30px;
    }

    .text {
        font: 14px 'FiraGo';
        line-height: 28px;
        margin-bottom: 65px;
    }

    a {
        background: var(--primary-color);
        color: white;
        text-decoration: none;
        font: 14px 'BPG LE Studio 02 Caps';
        line-height: 19px;
        width: 160px;
        height: 50px;
        position: relative;
        &:hover::after { opacity: 1; }
    }
}

.video-modal .modal-body {
    padding: 0;
    border: none;
    height: 300px;
    iframe, video {
        width: 100%;
        height: 100%;
        min-height: 300px;
    }
}

.video-modal .modal-header {
    padding: 0;
    border: none;
}

.video-modal .btn-close {
    opacity: 1 !important;
    filter: brightness(0) invert(1) !important;
    position: absolute;
    right: -30px;
}

.video-modal .modal-lg .modal-body { height: 450px; }

.general-info {
    background: url('../images/general-img.png') no-repeat center center / cover;
    display: flex;
    justify-content: center;
    gap: 40px;
    padding-top: 120px;
    position: relative;
    height: 300px;
    width: 100%;
    > * {
        color: white;
        position: relative;
        z-index: 2;
    }
    &::after {
        content: '';
        background: rgba(97, 75, 47, 0.9);
        position: absolute;
        inset: 0;
        z-index: 1;
    }
}

.general-info div {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 27px;
    position: relative;
    span:first-child {
        font: 40px 'BPG LE Studio 02 Caps';
        line-height: 40px;
    }
    span:last-child {
        text-align: center;
        font: 14px 'FiraGo';
        line-height: 18px;
        max-width: 140px;
    }
    &::after {
        border: 1px solid rgba(255,255,255,0.3);
        border-radius: 50%;
        content: '';
        position: absolute;
        width: 210px;
        height: 210px;
        top: -59px;
    }
}

.product-prev-cont { padding: 0px 20px 75px; }

.product-prev {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 854px;
}

.product-prev > p:first-child, .gallery-cont > p:first-child,
.news-prev-cont .content2 > p:first-child, .recipe-cont1 > .page-title2 {
    color: black;
    font: 26px 'Gilroy GEO';
    line-height: 33px;
    margin-bottom: 30px;
}

.prod-filter-swiper {
    max-width: 680px;
    margin-bottom: 45px;
    input { display: none; }
}

.prod-filter-slide, .prod-inner-slide { width: 80px !important; }
.prod-filter-slide:last-child, .prod-inner-slide:last-child { margin-right: 0px !important; }

.prod-filter-slide, .recipe-filter div, .prod-inner-slide,
.recipe-nav a {
    display: flex !important;
    flex-direction: column;
    align-items: center;
    font: 14px 'FiraGo';
    line-height: 17px;
    text-align: center;
    transition: all 0.3s ease !important;
    -webkit-text-stroke: 0.5px transparent;
}

.prod-filter-slide label, .recipe-filter label {
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.prod-filter-slide label div, .recipe-filter label div,
.prod-inner-slide div, .recipe-nav a div {
    background: var(--tertiary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
    img { 
        max-width: 45px; 
        max-height: 45px;
        transition: all 0.3s ease; 
    }
}

.product-prev-cont .prod-filter-slide:first-child label div img,
.products-cont .prod-filter-slide:nth-child(2) label div img {
    max-width: 35px;
    margin-left: 3px;
}

.prod-filter-slide.active, .prod-filter-slide:hover,
.recipe-filter div:hover, .recipe-filter div.active {
    -webkit-text-stroke-color: black;
    label div {
        background: var(--primary-color);
        img { filter: brightness(0) invert(1); }
    }
}

.prod-grid {
    border-top: 1px solid var(--brand-grey);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 50px;
    margin-bottom: 40px;
    width: 100%;
}

.prod-item {
    border-bottom: 1px solid transparent; 
    border-image: repeating-linear-gradient(to right, var(--brand-grey) 0, var(--brand-grey) 6px, transparent 6px, transparent 10px);
    border-image-slice: 1;
    display: flex;
    align-items: center;
    padding: 20px 0;
    .name {
        color: black;
        text-decoration: none;
        display: inline-flex;
        font: 14px 'FiraGo';
        line-height: 17px;
        max-width: 105px;
        margin-bottom: 5px;
        margin-right: 9px;
        word-wrap: break-word;
    }
    .mass {
        color: var(--primary-color);
        font: 14px 'Gilroy GEO';
        line-height: 18px;
        margin-bottom: 0;
    }
}

.prod-img {
    border: 1px solid var(--tertiary-color);
    border-radius: 5px;
    display: flex;
    width: 109px;
    height: 90px;
    margin-right: 18px;
    img {
        border-radius: 5px;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

.see-recipe, .goto-recipe, .actions button:last-child,
.prod-recipes {
    background: var(--primary-color);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    position: relative;
    margin-left: auto;
}
/* .see-recipe { margin-left: 15px; } */
.see-recipe:hover .tooltiptop, .goto-recipe:hover .tooltiptop,
.actions button:last-child:hover .tooltiptop, .prod-recipes:hover .tooltiptop { display: flex; }

.tooltiptop {
    background: white;
    border-radius: 5px;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
    color: black;
    display: none;
    align-items: center;
    justify-content: center;
    font: 10px 'BPG Mrgvlovani';
    line-height: 14px;
    min-width: 135px;
    height: 45px;
    padding: 10px 11px;
    position: absolute;
    z-index: 1;
    bottom: 100%;
} 

.tooltiptop::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: white transparent transparent transparent;
}

.see-recipe.active .tooltiptext { display: flex; }

.tooltiptext {
    background: #F9F9F9;
    border: 1px solid var(--brand-grey);
    border-radius: 5px;
    color: var(--text-color1);
    display: none;
    align-items: center;
    justify-content: center;
    font: 14px 'FiraGo';
    line-height: 17px;
    min-width: 236px;
    height: 150px;
    padding: 30px;
    position: absolute;
    z-index: 1;
    top: 55px;
    right: 0;

    &::after, &::before {
        content: "";
        position: absolute;
        bottom: 100%;
        border-style: solid;
    }
} 

.tooltiptext::after {
    right: 15px;
    margin-left: -10px;
    border-width: 10px;
    border-color: transparent transparent #F9F9F9 transparent;
}
.tooltiptext::before {
    right: 13px;
    margin-left: -12px;
    border-width: 12px;
    border-color: transparent transparent var(--brand-grey) transparent;
}

.see-all {
    color: black;
    -webkit-text-stroke: 1px transparent;
    text-decoration: none;
    font: 14px 'BPG LE Studio 02 Caps';
    line-height: 19px;
    margin-left: auto;
    transition: all 0.3s ease;
    &:hover {
        color: var(--primary-color);
        -webkit-text-stroke-color: var(--primary-color);
    }
}

.why-us-cont {
    background: url('../images/why-us-img.png') no-repeat center center / cover;
    width: 100%;
    min-height: 580px;
    padding: 80px 20px 70px;
}

.why-us {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 995px;
    width: 100%;
    > p:first-child {
        color: var(--primary-color);
        font: 18px 'FiraGo';
        line-height: 22px;
        margin-bottom: 15px;
    }
    > p:nth-child(2) {
        color: black;
        font: 40px 'Gilroy GEO';
        line-height: 40px;
        margin-bottom: 45px;
        text-align: center;
        max-width: 400px;
    }
}

.why-us-info {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    width: 100%;
    > div {
        display: flex;
        flex-direction: column;
        gap: 40px;
    }
}

.why-us-item {
    border-bottom: 1px solid transparent; 
    border-image: repeating-linear-gradient(to right, #C8C8C8 0, #C8C8C8 6px, transparent 6px, transparent 10px);
    border-image-slice: 1;
    display: flex;
    align-items: center;
    gap: 20px;
    font: 20px 'FiraGo Medium';
    line-height: 20px;
    padding-bottom: 17px;
    span { max-width: 240px; }
    div {
        background: white;
        border-radius: 50%;
        width: 60px;
        height: 60px;
    }
}

.news-prev-cont { 
    padding: 0 20px 75px; 
    .content2 { align-items: center; }
}

.news-prev {
    display: flex;
    align-items: flex-start;
    gap: 40px;
    width: 100%;
    position: relative;
    &::after {
        content: '';
        background: #EAEAEA;
        position: absolute;
        top: 0; left: 50%;
        width: 1px; height: 100%;
    }
}

.news-left {
    width: calc(50% - 20px);
    text-decoration: unset;
    > img {
        border-radius: 10px;
        width: 100%;
        height: 380px;
        object-fit: cover;
        margin-bottom: 15px;
    }
    .title {
        color: black;
        font: 18px 'FiraGo';
        line-height: 24px;
        margin-bottom: 0;
    }
    .goto-news { display: none; }
}

.news-right {
    display: flex;
    flex-direction: column;
    gap: 18px;
    width: calc(50% - 20px);
    .see-all { display: none; }
}

.news-prev-item {
    border-bottom: 1px solid var(--brand-grey);
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
    padding-bottom: 18px;
    > img:first-child {
        border-radius: 10px;
        width: 195px;
        height: 135px;
        object-fit: cover;
    }
    .title {
        font: 14px 'FiraGo';
        line-height: 19px;
        height: 76px;
        text-overflow: ellipsis;
        overflow: hidden;
        margin-bottom: 0;
        max-width: 220px;
    }
}

.news-prev-item::before {
    content: '';
    position: absolute;
    background: var(--tertiary-color);
    top: 25px;
    right: 83px;
    height: 84px;
    width: 1px;
}

.goto-news {
    border: 1px solid var(--primary-color);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 63px;
    height: 45px;
    margin-left: auto;
    transition: all 0.3s ease;
    img { transition: all 0.3s ease; }
    &:hover {
        background: var(--primary-color);
        img { filter: brightness(0) invert(1); }
    }
}

footer {
    background: url('https://mzareuli.nikoraltd.ge/site/uploads_script/products/2025/07/5mr8houaymg7lj6.jpg') no-repeat center center / cover;
    padding: 60px 20px 0 !important; 
    position: relative;
    z-index: 1; 
    &::after {
        content: '';
        background: rgba(52, 52, 52, 0.9);
        position: absolute;
        inset: 0;
        z-index: 1;
    }
    &::before {
        content: '';
        background: rgba(0,0,0, 0.35);
        position: absolute;
        left: 0; right: 0; bottom: 0;
        height: 80px;
        z-index: 2;
    }
    > * {
        position: relative;
        z-index: 2;
    }
    .content2 { align-items: center; }
}

.footer-logo {
    margin-bottom: 70px;
    img { width: 80px; }
}

.footer-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 70px;
}

.footer-menu {
    a { color: white; text-decoration: none; }
    > a {
        display: inline-flex;
        font: 18px 'FiraGo Medium';
        line-height: 22px;
        margin-bottom: 20px;
    }
    > a:last-child { margin: 30px 0 0; }
    div {
        display: flex;
        flex-direction: column;
        gap: 12px;
        font: 12px 'FiraGo';
        line-height: 14px;
        a { max-width: 225px; }
    }
}

.footer-contact {
    color: white;
    > p:first-child {
        font: 18px 'FiraGo Medium';
        line-height: 22px;
        margin-bottom: 20px;
    }
}

.footer-contact-items {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-contact-items > * {
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 20px;
    font: 14px 'FiraGo';
    line-height: 17px;
}

.icon {
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    width: 29px;
    height: 29px;
}

.socials {
    display: flex;
    gap: 10px;
    & a {
        background: rgba(255,255,255,0.21);
        border-radius: 50%;
        color: white;
        text-decoration: none;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 10px;
        width: 25px;
        height: 25px;
        transition: all 0.3s ease;
        &:hover { background: var(--primary-color); }
    }
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding-bottom: 25px;

    span {
        color: white;
        font: 10px 'BPG Arial';
        line-height: 11px;
        a { color: unset; text-decoration: none; }
    }
}

.gallery-cont {
    padding: 75px 0 0;
    flex-direction: column;
    align-items: center;
}

.gallery-grid {
    gap: 3px;
    column-count: 4;
    overflow: hidden;

    img {
        margin-bottom: 3px;
        width: 100%;
        cursor: pointer;
        object-fit: cover;
    }
}

.gallery-grid a img {
    aspect-ratio: 1 / 1;
    max-height: 180px;
}

/* .gallery-grid a:nth-child(3) img, 
.gallery-grid a:nth-child(5) img, 
.gallery-grid a:nth-child(9) img, 
.gallery-grid a:nth-child(10) img, 
.gallery-grid a:nth-child(14) img {
    aspect-ratio: 1 / 2;
    max-height: 265px;
}  */

.gallery-grid a:nth-child(even) img {
    aspect-ratio: 1 / 2;
    max-height: 265px;
}

.learn-more {
    background: transparent;
    border: none;
    border-radius: 23px;
    color: unset;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 20px;
    font: 12px 'BPG Mrgvlovani';
    line-height: 16px;
    height: 45px;
    position: relative;
    transition: all 0.3s ease;
    div {
        background: var(--primary-color);
        border-radius: 50%;
        width: 45px;
        height: 45px;
        transition: all 0.3s ease;
        img { transform: scale(0.7); }
    }

    &::after {
        content: '';
        background: transparent;
        border-radius: 23px;
        position: absolute;
        width: 0;
        height: 100%;
        transition: all 0.3s ease;
        z-index: 1;
    }

    > * {
        position: relative;
        z-index: 2;
    }
}

.learn-more:hover {
    color: white;
    gap: 30px;
    div { background: var(--text-color1); }

    &::after { background: var(--primary-color); width: 230px; }
}

.play-btn {
    background: var(--primary-color);
    border-radius: 50%;
    width: 72px;
    height: 72px;
    position: absolute;
    z-index: 2;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.3s ease;
    svg { fill: white; transition: all 0.3s ease; }
}

.page-title {
    color: var(--text-color);
    font: 20px 'FiraGo Medium';
    line-height: 24px;
    text-align: center;
    margin-bottom: 40px;
}

.page-title1 {
    color: black;
    font: 36px 'Gilroy GEO';
    line-height: 36px;
}

.page-title2, .main-gallery-cont > p:first-child {
    color: #2B2B2B;
    font: 26px 'FiraGo Medium';
    line-height: 32px;
    text-align: center;
    margin-bottom: 30px;
}

.brand-history-con {
    padding: 150px 20px 0;
    position: relative;
    &::after { bottom: unset; top: 20%; right: 10px; }
    &::before { bottom: unset; top: 27%; left: 10px; }
}

.brand-history-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 60px;
    margin-bottom: 100px;
    position: relative;
    z-index: 3;
    &::after {
        content: '';
        background: var(--brand-grey);
        position: absolute;
        left: 603px;
        width: 1px;
        height: 99%;
    }
}

.brand-history { width: 575px; }
.metable-assortment {
    margin: 60px 0 50px;
    > p:first-child {
        text-align: center;
        margin-bottom: 40px;
    }
    > div {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        justify-content: space-between;
        row-gap: 50px;
    }
}

.assortment {
    display: flex;
    flex-direction: column;
    align-items: center;
    font: 14px 'FiraGo';
    line-height: 17px;
    text-align: center;
    div {
        background: var(--tertiary-color);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 95px;
        height: 95px;
        margin-bottom: 17px;
    }
}

.brand-info {
    width: calc(100% - 575px);
    .page-title1 { margin-bottom: 20px; }
    .text {
        font: 14px 'FiraGo';
        line-height: 28px;
        margin-bottom: 10px;
    }
}

.events-container { padding: 150px 20px; }
.event-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 130px;
    row-gap: 65px;
    width: 100%;
    position: relative;
    z-index: 1;
    direction: rtl;

    &::before {
        content: "";
        position: absolute;
        left: 50%;
        top: 66px;
        width: 5px;
        height: 92%;
        background-image: radial-gradient(circle, var(--primary-color) 2.5px, transparent 2.5px);
        background-size: 5px 17px;
        background-repeat: repeat-y;
        transform: translateX(-50%);
        z-index: 0;
    }
}

.event {
    border-bottom: 1px solid var(--brand-grey);
    display: flex;
    align-items: flex-start;
    gap: 30px;
    padding-bottom: 60px;
    max-height: 170px;
    position: relative;
    transition: all 0.3s ease;
    .year {
        background: var(--primary-color);
        border-radius: 50%;
        color: white;
        font: 20px 'Gilroy GEO';
        line-height: 26px;
        width: 103px;
        height: 103px;
        transition: all 0.3s ease;
    }

    &::before {
        content: '';
        background: white;
        border: 1px solid var(--primary-color);
        border-radius: 50%;
        width: 30px;
        height: 30px;
        position: absolute;
        top: 36px;
        left: -80px;
        z-index: 2;
    }

    &::after {
        content: '';
        background: transparent;
        border-radius: 50%;
        top: 44px;
        left: -72px;
        width: 14px;
        height: 14px;
        position: absolute;
        transition: all 0.3s ease;
        z-index: 3;
    }
}

.event:nth-child(even) { 
    &::before {
        left: unset;
        right: -80px;
    }
    &::after {
        left: unset;
        right: -72px;
    }
}

.event:nth-child(odd) {
    margin-top: -115px;
    flex-direction: row-reverse;
    .event-desc { text-align: end; }
}

.event:nth-child(2) { margin-top: 115px; }
.event:nth-child(1) { margin-top: unset; }

.event-desc {
    width: calc(100% - 133px);
    .title {
        color: black;
        font: 20px 'Gilroy GEO';
        line-height: 20px;
        margin-bottom: 5px;
        transition: all 0.3s ease;
    }

    .text {
        font: 12px 'FiraGo';
        line-height: 20px;
    }
}

.event:hover {
    border-color: var(--primary-color);
    .title { color: var(--primary-color); }
    .year { 
        background: var(--text-color1); 
        font: 30px 'Gilroy GEO'; 
        line-height: 39px;
    }
    &::after { background: var(--primary-color); }
}

.achievements-cont { 
    padding: 150px 0 0; 
    flex-direction: column;
}

.achievement {
    display: flex;
    align-items: center;
}
.achievement:nth-child(even) { flex-direction: row-reverse; }

.achievement-img {
    width: 50%;
    overflow: hidden;
    img {
        width: 100%;
        transition: all 0.3s ease;
    }
    &:hover img { transform: scale(1.1); }
}

.achievement-desc {
    width: 50%;
    padding: 0 calc(50% - 568px) 0 30px;
    .title {
        color: black;
        font: 30px 'Gilroy GEO';
        line-height: 30px;
        margin-bottom: 20px;
    }
    .text {
        font: 14px 'FiraGo';
        line-height: 17px;
    }
}
.achievement:nth-child(even) .achievement-desc { padding: 0 30px 0 calc(50% - 568px); }

.achievement:first-child {
    position: relative;
    &::after {
        content: '';
        background: var(--brand-grey);
        position: absolute;
        top: 0;
        height: 1px;
        width: 50%;
        right: 0;
    }
}

.quality-cont { padding: 150px 20px 100px; }
.quality-content {
    display: flex;
    align-items: flex-start;
    gap: 60px;
    margin-bottom: 80px;
    .history-prev-img { width: 575px; }
}

.quality-text {
    width: calc(100% - 635px);
    > div {
        font: 14px 'FiraGo';
        line-height: 28px;
        margin-bottom: 30px;
    }
    > button {
        background: transparent;
        border: none;
        color: var(--primary-color);
        font: 18px 'FiraGo';
        line-height: 20px;
    }
}
.quality-text > div.expanded { height: auto; }

.quality-organizations {
    display: flex;
    justify-content: center;
    gap: 120px;
}

.quality-cont .brand-video { margin-bottom: 0; }

.labs-cont { padding: 150px 20px 80px; }
.main-lab {
    display: flex;
    align-items: flex-start;
    gap: 60px;
    margin-bottom: 60px;
    position: relative;

    &::after {
        content: '';
        background: #EAEAEA;
        height: 100%;
        width: 1px;
        position: absolute;
        top: 0;
        left: 420px;
    }

    > img:last-child {
        border-radius: 5px;
        width: calc(100% - 450px);
    }
}

.main-lab-desc, .current-lab-desc {
    padding-top: 100px;
    width: 390px;
    > p {
        color: black;
        font: 42px 'Gilroy GEO';
        line-height: 42px;
        margin-bottom: 20px;
    }

    > div:nth-child(2) {
        font: 14px 'FiraGo';
        line-height: 17px;
    }
}

.lab-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 28px;
    row-gap: 60px;
    margin-bottom: 65px;
}

.lab-item {
    color: unset;
    text-decoration: none;
    display: flex !important;
    flex-direction: column;
    gap: 20px;
    font: 16px 'FiraGo';
    line-height: 19px;
    div {
        border-radius: 5px;
        width: 100%;
        height: 300px;
        overflow: hidden;
        img {
            border-radius: 5px;
            width: 100%;
            height: 100%;
            transition: all 0.3s ease;
        }
    }
    span {
        height: 38px;
        text-overflow: ellipsis;
        overflow: hidden;
    }
}

.lab-item:hover img { transform: scale(1.1); }

.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 17px;
}

.nav-btn {
    background: #C8C8C8;
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 11px;
    width: 26px;
    height: 26px;
    transition: all 0.3s ease;
    &:hover { background: var(--primary-color); }
}

.pagination-buttons {
    display: flex;
    gap: 17px;
    font: 13px 'BPG Mrgvlovani Caps 2010';
    line-height: 18px;
    button {
        background: transparent;
        border: none;
        color: #929395;
        &.active { color: var(--primary-color); }
    }
}

.current-lab-desc {
    display: flex;
    flex-direction: column;
    padding-top: 0;
    height: 100%;
    > p:first-child {
        font: 30px 'Gilroy GEO';
        line-height: 30px;
    }
}

.share {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: auto;
    span {
        color: var(--text-color);
        font: 12px 'BPG LE Studio 02 Caps';
        line-height: 15px;
    }
}

.share button {
    background: #F2F2F2;
    border: none;
    border-radius: 50%;
    color: black;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    width: 35px;
    height: 35px;
    transition: all 0.3s ease;
    svg, img { transform: scale(1.3); transition: all 0.3s ease; }
    &:hover {
        background: var(--primary-color);
        color: white;
        svg { fill: white; }
        img { filter: brightness(0) invert(1); }
    }
}

.lab-swiper-cont {
    border-top: 1px solid var(--brand-grey);
    padding-top: 30px;
}

.lab-swiper-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    span:first-child {
        color: black;
        font: 26px 'Gilroy GEO';
        line-height: 30px;
    }
    div {
        display: flex;
        gap: 15px;
    }
}

.products-cont { 
    padding: 150px 20px 100px; 
    .content2 { max-width: 854px; }
}

.main-filter {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    margin-bottom: 30px;
    gap: 25px;
}

.main-filter-swiper {
    max-width: 790px;
    margin: 0 !important;
    input { display: none; }
}

.side-filter {
    display: flex;
    flex-direction: column;
    gap: 8px;
    input { display: none; }
    label {
        background: var(--tertiary-color);
        border-radius: 50%;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 36px;
        height: 36px;
        transition: all 0.3s ease;
        img { 
            width: 20px;
            transition: all 0.3s ease;
        }
    }
    > span:first-child {
        display: none;
        font: 14px 'FiraGo';
        line-height: 17px;
    }
}

.side-filter-slide.active label, .side-filter-slide:hover label {
    background: var(--primary-color);
    img { filter: brightness(0) invert(1); }
}

.side-filter-swiper {
    width: 100% !important;
    max-height: 124px !important;
}

.side-filter-slide { 
    width: 36px !important;
    height: 36px !important;
}

.current-prod {
    border-top: 1px solid var(--brand-grey);
    display: flex;
    align-items: flex-start;
    gap: 30px;
    padding-top: 30px;
}

.product-left {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 365px; 
}

.product-swiper {
    border: 1px solid var(--tertiary-color);
    border-radius: 5px;
    width: 100%;
    height: 300px !important;
}

.product-img-button-swiper {
    width: 100%;
}

.product-slide {
    /* padding: 20px 56px; */
    display: flex !important;
    align-items: center;
    justify-content: center;
    img {
        background: white;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

.product-img-button {
    border: 1px solid var(--tertiary-color);
    border-radius: 5px;
    cursor: pointer;
    height: 90px !important;
    /* padding: 10px; */
    img {
        border-radius: 5px;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

.zoom-in {
    background: var(--text-color1);
    border-radius: 50%;
    border: none;
    position: absolute;
    right: 10px; top: 10px;
    width: 36px; height: 36px;
    pointer-events: none;
    z-index: 2;
}

.meat-types {
    display: flex;
    flex-direction: column;
    gap: 8px;
    position: absolute;
    z-index: 2;
    right: 10px; top: 54px;
    > div {
        background: var(--primary-color);
        border-radius: 50%;
        width: 36px; height: 36px;
        img { filter: brightness(0) invert(1); width: 20px; }
    }
}

.prod-inner-slide, .recipe-nav a {
    color: black;
    text-decoration: none;
    &:hover, &.active {
        -webkit-text-stroke-color: black;
        div {
            background: var(--primary-color);
            img { filter: brightness(0) invert(1); }
        }
    }
}

.product-right { 
    width: calc(100% - 395px);
    .name {
        color: black;
        font: 26px 'FiraGo';
        line-height: 31px;
        margin-bottom: 0;
    }
    .mass {
        color: var(--primary-color);
        font: 18px 'FiraGo Medium';
        line-height: 22px;
        margin-bottom: 20px;
    }
}

.product-right .desc {
    margin-bottom: 25px;
    > p:first-child {
        color: black;
        font: 16px 'FiraGo Medium';
        line-height: 19px;
        margin-bottom: 5px;
    }
    div {
        color: #4A4A4A;
        font: 12px 'FiraGo';
        line-height: 14px;
    }
}

.product-right hr {
    opacity: 1;
    border-color: var(--brand-grey);
    margin: 0 0 20px;
}

.nutritional-value {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-bottom: 20px;
}

.nutrition {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    > span {
        color: var(--text-color);
        -webkit-text-stroke: 0.5px var(--text-color);
        font: 10px 'BPG LE Studio 02 Caps';
        line-height: 15px;
    }
}

.nutrition div {
    background: var(--tertiary-color);
    border-radius: 3px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    width: 100%;
    height: 75px;
    span:first-child {
        color: black;
        font: 18px 'Gilroy GEO';
        line-height: 18px;
    }
    span:last-child {
        font: 9px 'BPG Mrgvlovani Caps 2010';
        line-height: 11px;
    }
}

.similar-swiper { width: 100%; padding-bottom: 2px !important; }
.similar-prod-slide {
    display: flex !important;
    gap: 20px;
    align-items: center;
    font: 14px 'FiraGo';
    line-height: 19px;
    .name {
        color: black;
        text-decoration: none;
        display: flex;
        max-width: 135px; 
    }
    .prod-recipes, .mass, .see-recipe { display: none; }
}

.similar-prod-slide a:first-child {
    border: 1px solid var(--tertiary-color);
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 210px;
    height: 175px;
    transition: all 0.3s ease;
    img {
        border-radius: 5px;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

.similar-prod-slide:hover a:first-child { border-color: var(--primary-color); }

.expiration-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.expiration {
    display: flex;
    flex-direction: column;
    gap: 5px;
    span:first-child {
        font: 16px 'FiraGo';
        line-height: 19px;
    }
    span:last-child {
        color: #4A4A4A;
        font: 14px 'FiraGo';
        line-height: 17px;
    }
}

.goto-recipe {
    background: #D1A681;
    transition: all 0.3s ease;
    .tooltiptop { min-width: 75px; }
    &:hover { background: #F6971F; }
}

.actions {
    display: flex;
    gap: 15px;

    button:last-child {
        border: none;
        img { transform: scale(0.7); }
    }
}

.ingredients {
    position: relative;
    height: 39px;
    overflow: hidden;
    > button:first-child {
        background: transparent;
        border: none;
        color: #4A4A4A;
        font: 14px 'FiraGo';
        line-height: 17px;
        position: absolute;
        right: 0;
        top: 0;
        i { display: none; transition: all 0.3s ease; }
    }
    > hr:last-of-type { display: none; }
}

.ingredients.expanded {
    height: auto;
    > div > p:first-of-type { margin-bottom: 5px; }
    > button:first-child i {
        transform: rotate(180deg);
    }
}

.ingredients > div > p:first-child {
    color: black;
    font: 16px 'FiraGo Medium';
    line-height: 19px;
    margin-bottom: 40px;
}

.ingredients > div > div {
    color: #4A4A4A;
    font: 14px 'FiraGo';
    line-height: 17px;
    margin-bottom: 20px;
    * {
        font: 14px 'FiraGo' !important;
        line-height: 17px !important;
    }
}

.recipe-filter {
    position: sticky;
    top: 120px;
    z-index: 4;
    background: rgba(255, 255, 255, 0.85);
    border-radius: 53px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    min-width: 410px;
    height: 105px;
    margin: 0 auto;
    input { display: none; }
}

.recipe-filter label div, .recipe-head a div { width: 45px; height: 45px; }
.recipe-filter > div:first-child img, .recipe-nav a:first-child img { transform: scale(0.7); }

.recipe-cont {
    flex-direction: column;
    align-items: center;
    padding: 150px 0 0; 
}
.recipe-cont1 { padding-top: 0; }
.inner-recipe-cont { padding: 150px 20px 125px; }

.recipe-book {
    width: 100%;
    margin-top: 40px;
    > div { display: grid; }
    > div:nth-child(even) { grid-template-columns: 333fr 1033fr; }
    > div:nth-child(odd) { grid-template-columns: 333fr 333fr 700fr; }
}

.recipe-card {
    color: white;
    cursor: pointer;
    position: relative;
    width: 100%;
    min-height: 500px;
    height: 100%;
    overflow: hidden;
    &::after {
        content: '';
        background: linear-gradient(180deg,  rgba(255,255,255,0 ) 0.00%, rgba(129,129,129,0 ) 49.37%, 
        rgba(41,41,41,0.24 ) 76.99%, #000000 100.00%);
        position: absolute;
        inset: 0;
        z-index: 1;
        transition: all 0.3s ease;
    }

    > img:first-child {
        object-fit: cover;
        position: absolute;
        width: 100%;
        min-height: 500px;
        height: 100%;
        z-index: 1;
    }

    .text {
        position: absolute;
        z-index: 2;
        left: 30px; bottom: -60px; right: 40px;
        z-index: 2;
        font: 12px 'FiraGo';
        line-height: 14px;
        margin-bottom: 0;
        height: 42px;
        text-overflow: ellipsis;
        overflow: hidden;
        transition: all 0.3s ease;
    }
}

.recipe-desc {
    position: absolute;
    z-index: 2;
    left: 30px; bottom: 40px; right: 40px;
    transition: all 0.3s ease;

    .date {
        font: 10px 'FiraGo';
        line-height: 12px;
        margin-bottom: 10px;
    }

    .name {
        font: 18px 'Gilroy GEO';
        line-height: 23px;
        margin-bottom: 0;
    }
}

.recipe-card:hover {
    .text { bottom: 40px; }
    .recipe-desc { bottom:  93px; }
    &::after { background: rgba(0,0,0,0.65); }
}

.gallery-swiper, .recipe-cont1 .see-all,
.gallery-cont .see-all { display: none !important; }

.recipe-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 50px;
    > span {
        color: #2B2B2B;
        font: 26px 'FiraGo Medium';
        line-height: 32px;
    }
}

.recipe-nav {
    display: flex;
    gap: 33px;
}

.recipe {
    border-top: 1px solid var(--brand-grey);
    display: flex;
    align-items: flex-start;
    gap: 40px;
    padding-top: 30px;
}

.current-recipe {
    width: 67%;
    .date {
        font: 14px 'FiraGo';
        line-height: 17px;
        margin-bottom: 10px;
    }
    .name {
        color: black;
        font: 26px 'Gilroy GEO';
        line-height: 32px;
        margin-bottom: 20px;
    }
}

.recipe-img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    margin-bottom: 45px;
}

.prepare {
    border-bottom: 1px solid var(--brand-grey);
    position: relative;
    display: flex;
    gap: 30px;
    padding-bottom: 40px;
    margin-bottom: 35px; 
    &::after {
        content: '';
        background: var(--brand-grey);
        height: 90%;
        width: 1px;
        position: absolute;
        left: 275px; top: 0;
    }
}

.prepare-left { width: 270px; }
.prepare-head {
    font: 20px 'Gilroy GEO';
    line-height: 26px;
    gap: 20px;
    margin-bottom: 20px;
}

.prepare-head div {
    background: var(--text-color1);
    border-radius: 50%;
    width: 50px;
    height: 50px;
}

.prepare-right .prepare-head {
    color: var(--primary-color);
    div { background: var(--primary-color); }
}

.prepare-right {
    width: calc(100% - 300px);
    .prepare-text { margin-bottom: 40px; }
}

.prepare-text {
    font: 14px 'FiraGo';
    line-height: 20px;
    ul {
        margin: 0;
        padding: 0;
        padding-inline-start: 0 !important;
    }
    p { margin: 0 !important; }
    b, strong { -webkit-text-stroke: 0.5px black !important; }
}

.prepare-text * {
    font: 14px 'FiraGo' !important;
    line-height: 20px !important;
}

.prepare-text-right p { margin: auto !important; }

.share-back {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.goback {
    color: black;
    -webkit-text-stroke: 1px transparent;
    text-decoration: none;
    font: 14px 'BPG LE Studio 02 Caps';
    line-height: 19px;
    transition: all 0.3s ease;
    &:hover {
        color: var(--primary-color);
        -webkit-text-stroke-color: var(--primary-color);
    }
}

.other-recipes, .other-news {
    width: calc(33% - 40px);
    padding-top: 32px;
    > p:first-child {
        font: 16px 'FiraGo';
        line-height: 19px;
        margin-bottom: 20px;
    }
    > div {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }
}

.news-cont { padding: 150px 20px 80px; }

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 31px;
    margin: 90px 0 60px;
}

.mobile-grid { display: none; }

.news-item {
    cursor: pointer;
    display: flex;
    flex-direction: column;
}

.news-img-cont {
    border-radius: 10px 10px 0 0;
    width: 100%;
    height: 220px;
    overflow: hidden;
    img {
        border-radius: 10px 10px 0 0;
        width: 100%;
        height: 100%;
        transition: all 0.3s ease;
    }
}

.news-desc {
    background: transparent;
    border: 1px solid #C8C8C8;
    border-top: none;
    border-radius: 0 0 10px 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 25px 30px 35px;
    transition: all 0.3s ease;
    .title {
        color: black;
        font: 16px 'FiraGo';
        line-height: 19px;
        max-width: 195px;
        height: 76px;
        text-overflow: ellipsis;
        overflow: hidden;
        margin-bottom: 0;
    }
}

.news-item:hover {
    .news-img-cont img { transform: scale(1.1); }
    .news-desc { 
        background: rgba(233, 109, 12, 0.09); 
        border-color: rgba(233, 109, 12, 0.09); 
    }
    .goto-news {
        background: var(--primary-color);
        img { filter: brightness(0) invert(1); }
    }
}

.inner-news-cont { 
    padding: 150px 20px 90px; 
    .recipe-img {
        border-radius: 10px;
        margin-bottom: 40px;
    }
}

.news-text, .news-text * {
    font: 14px 'FiraGo' !important;
    line-height: 28px !important;
}
.news-text { 
    border-bottom: 1px solid var(--brand-grey);
    padding-bottom: 40px; 
    margin-bottom: 30px;
}

.other-news > div { gap: 30px; }

.main-gallery-cont {
    padding-top: 150px;
    > p:first-child { -webkit-text-stroke: transparent; }
}

.video-recipe-cont { padding: 150px 20px 100px; }

.curr-video {
    display: flex;
    align-items: flex-start;
    gap: 40px;
    margin-bottom: 80px;
    > div:first-child { width: calc(100% - 780px); }
    .name {
        color: black;
        font: 30px 'Gilroy GEO';
        line-height: 30px;
        margin-bottom: 10px;
    }
    .text {
        font: 14px 'FiraGo';
        line-height: 17px;
    }
}

.video-cont {
    cursor: pointer;
    width: 740px;
    height: 460px;
    position: relative;
    > img, iframe, video {
        border-radius: 10px;
        position: absolute;
        width: 100%; height: 100%;
        top: 0;
    }
    iframe, video { border-radius: 15px; }
    > img {
        object-fit: cover;
        z-index: 1;
    }
    .play-btn { display: flex; }
}

.hidden { display: none !important; }

.video-title {
    color: #2B2B2B;
    text-align: center;
    font: 26px 'Gilroy GEO';
    line-height: 32px;
    margin-bottom: 40px;
}

.video-recipe-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 35px;
    row-gap: 40px;
    margin: 30px 0 60px;
}

.video-item {
    color: #2B2B2B;
    text-decoration: none;
    text-align: center;
    display: flex !important;
    flex-direction: column;
    gap: 20px;
    font: 20px 'FiraGo Medium';
    line-height: 24px;
}

.video-item-cont, .video-popup-cont {
    position: relative;
    width: 100%;
    height: 305px;
    > img {
        border-radius: 10px;
        width: 100%; height: 100%;
        object-fit: cover;
    }
}
.video-popup-cont { height: 225px; }

.video-recipe-grid .video-item:nth-child(3) {
    grid-column: span 2;
    margin: 0 auto;
    max-width: 770px;
    .video-item-cont { height: 430px; }
}

.inner-video-recipe-cont {
    border-bottom: 1px solid var(--brand-grey);
    padding: 150px 20px 100px;
    .content2 { max-width: 760px; }
    .video-cont { margin-bottom: 30px; width: 100%; }
}

.recipe-name {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
    > span {
        color: #2B2B2B;
        font: 20px 'FiraGo Medium';
        line-height: 30px;
        max-width: 620px;
    }
}

.recipe-swiper-cont {
    padding: 40px 20px 100px;
}

.recipe-swiper { width: 100%; }
.gallery-curr-video {
    > div:first-child { padding-top: 70px; }
    .name {
        font: 50px 'Gilroy GEO';
        line-height: 50px;
        margin-bottom: 20px;
    }
    .text {
        font: 16px 'FiraGo';
        line-height: 19px;
    }
}

.video-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 22px;
    row-gap: 40px;
    margin-bottom: 60px;
}

.video-popup {
    background: transparent;
    border: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
    font: 14px 'FiraGo';
    line-height: 17px;
    > span { text-align: start; }
}

.filter-item {
    display: flex;
    align-items: center;
    gap: 35px;
    > div:first-child {
        border: 1px solid #F3F3F3;
        padding: 10px;
        width: 115px;
        height: 95px;
        img {
            width: 100%; height: 100%;
            object-fit: contain;
        }
    }

    > div:last-child {
        display: flex;
        flex-direction: column;
        span:first-child {
            color: black;
            font: 26px 'FiraGo';
            line-height: 32px;
        }
        span:last-child {
            color: #848484;
            font: 18px 'FiraGo Medium';
            line-height: 22px;
        }
    }
}

.recipe-filter1 {
    position: unset;
    background: transparent;
    min-width: unset;
    height: unset;
    margin: 0;
}

.grid-head {
    border-top: 1px solid var(--brand-grey);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 25px;
    margin-bottom: 30px;
    > span {
        margin: 0 0 0 50%;
        transform: translateX(-50%);
    }
}

.filtered-recipe-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 36px;
    row-gap: 30px;
    margin-bottom: 60px;
}

.filtered-recipe-item {
    color: black;
    text-decoration: none;
    img {
        width: 100%;
        height: 310px;
        object-fit: cover;
        margin-bottom: 20px;
    }
    .date {
        font: 10px 'FiraGo';
        line-height: 12px;
        margin-bottom: 10px;
    }
    .title {
        font: 20px 'Gilroy GEO';
        line-height: 26px;
        margin-bottom: 10px;
    }
    .intro {
        font: 14px 'FiraGo';
        line-height: 17px;
        margin-bottom: 0;
    }
}

.pagination-cont {
    position: relative;
    .goback { position: absolute;  top: 0; }
}

.brand-video {
    width: 100%; 
    height: 515px; 
    margin-bottom: 100px; 
    img, iframe { border-radius: 0; }
}

.search-cont { padding: 150px 20px; }
.result-info {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    span:first-child {
        color: black;
        font: 20px 'FiraGo';
        line-height: 24px;
    }
    span:last-child {
        color: var(--primary-color);
        font: 30px 'Gilroy GEO';
        line-height: 30px;
    }
}

.search-page-form {
    display: flex;
    gap: 10px;
    margin-bottom: 50px;
    input {
        border: 1px solid #D9D9D9;
        font: 12px 'BPG Mrgvlovani';
        line-height: 16px;
        padding-left: 30px;
        width: calc(100% - 55px);
        height: 45px;
        &:focus { outline: none; } 
    }
    button {
        background: #C4C4C4;
        border: none;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 45px;
        height: 45px;
        transition: all 0.3s ease;
        &:hover { background: var(--primary-color); }
        img { filter: brightness(0) invert(1); }
    }
}

.search-results {
    display: flex;
    flex-direction: column;
    gap: 35px;
    margin-bottom: 60px;
}

.search-item {
    border-bottom: 1px solid #DBDBDB;
    display: flex;
    flex-direction: column;
    gap: 40px;
    padding-bottom: 50px;
    > div {
        color: black;
        font: 14px 'BPG Mrgvlovani';
        line-height: 20px;
        span { color: var(--primary-color); }
    }

    > a {
        color: var(--primary-color);
        font: 14px 'FiraGo';
        line-height: 19px;
        transition: all 0.3s ease;
        &:hover { color: var(--text-color1); }
    }
}

.location-cont {
    padding: 150px 20px 100px;
}

.location-filter {
    display: flex;
    gap: 25px;
    margin-bottom: 45px;
    select {
        appearance: none;
        --bs-form-select-bg-img: none !important;
        background-image: url(../images/select-arrow.svg) !important;
        background-size: 16px 16px !important;
        background-position: right 22px center !important;
        background-repeat: no-repeat !important;
        background: #FCFCFC;
        border: 1px solid #DBDBDB;
        border-radius: 5px !important;
        color: #404040;
        font: 14px 'FiraGo';
        line-height: 17px;
        padding-left: 26px;
        height: 50px;
    }

    select:first-child, select:nth-child(2) { width: 50%; }
}

.location-content {
    display: flex;
    position: relative;
    gap: 30px;
    &::after {
        content: '';
        background: var(--brand-grey);
        position: absolute;
        top: 0; left: 50%;
        height: 100%; width: 1px;
    }
}

.map-container, .locations-body {
    width: calc(50% - 15px);
    height: 470px;
}

.locations-body {
    background: white;
    border: 1px solid var(--brand-grey);
    overflow: auto;
}

.location-item {
    cursor: pointer;
    gap: 20px;
    padding: 18px 10px 18px 28px;
    transition: all 0.3s ease;
    &:hover { background: #ECECEC; }
    p:first-child {
        font: 12px 'FiraGo Medium';
        line-height: 16px;
        max-width: 430px;
        margin-bottom: 7px;
    }

    p:last-child {
        color: #848484;
        font: 10px 'FiraGo';
        line-height: 13px;
        margin-bottom: 0;
    }   

    .pin { width: 23px; }
}

.location-name {
    color: var(--text-color1);
    -webkit-text-stroke: 1px var(--text-color1);
    font: 14px 'BPG Mrgvlovani';
    line-height: 19px;
    margin-bottom: 10px;
}

.location-address {
    color: #7D7D7D;
    font: 10px 'BPG Mrgvlovani';
    line-height: 13px;
    margin-bottom: 0;
}

.custom-info-window hr {
    border-color: #E3E3E3;
    nav-right: 20px 0 15px;
    opacity: 1;
}

.info-title {
    color: var(--secondary-color);
    -webkit-text-stroke: 0.3px var(--secondary-color);
    font: 10px 'BPG Mrgvlovani';
    line-height: 13px;
    margin-bottom: 10px;
}

.work-hours {
    color: var(--secondary-color);
    display: flex;
    gap: 25px;
    font: 10px 'BPG Mrgvlovani';
    line-height: 13px;
    margin-bottom: 10px;
}

.work-hours span:first-child {
    color: #7D7D7D;
    min-width: 115px;
}

.custom-info-window > a:last-child {
    color: #7D7D7D;
    text-decoration: none;
    font: 12px 'BPG Mrgvlovani';
    line-height: 16px;
}
.gm-ui-hover-effect { display: none !important; }

/* .prod-recipes, .actions { display: none; } */

.contact-cont { padding: 120px 20px 70px; }
/* .contact-page > img:first-child {
    border-radius: 20px 20px 0 0;
    width: 100%;
    height: 280px;
    object-fit: cover;
    object-position: left;
} */

.contact-img {
    background: url('../images/contact-bg.png') no-repeat center center / cover;
    border-radius: 20px 20px 0 0;
    position: relative;
    width: 100%;
    height: 280px;
    img {
        position: absolute;
        left: 50%; top: 50%;
        transform: translate(-50%, -50%);
        z-index: 2;
    }
}

.contact-items { 
    display: flex; 
    > a:first-child { border-radius: 0 0 0 20px; }
    > a:last-child { border-radius: 0 0 20px 0; }
}

.contact-items > * {
    background: #F7F7F7;
    color: black;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 10px;
    position: relative;
    width: calc(100% / 3);
    height: 215px;
    transition: all 0.3s ease;
    span { 
        text-align: center;
        font: 16px 'FiraGo';
        line-height: 19px;
        transition: all 0.3s ease;
    }
}

.contact-items > *:hover {
    background: var(--primary-color);
    color: white;
    span {
        font: 20px 'FiraGo';
        line-height: 24px;
    }
    .icon1 {
        background: white;
        color: var(--primary-color);
        fill: var(--primary-color);
    }
}

.icon1 {
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    fill: white;
    font-size: 25px;
    position: absolute;
    top: -38px;
    width: 75px;
    height: 75px;
    transition: all 0.3s ease;
    z-index: 3;
}

.main-recipe-cont {
    padding: 0;
    margin-top: -45px;
}