/* Gotham Font Faces */
@font-face {
    font-family: 'Gotham';
    src: url('../fonts/GothamMedium.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Gotham';
    src: url('../fonts/Gotham-Book.otf') format('opentype');
    font-weight: 350;
    font-style: normal;
}

@font-face {
    font-family: 'Gotham';
    src: url('../fonts/Gotham-Light.otf') format('opentype');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'Gotham';
    src: url('../fonts/Gotham-Medium.otf') format('opentype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Gotham';
    src: url('../fonts/Gotham-Bold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Gotham';
    src: url('../fonts/GothamBlack.otf') format('opentype');
    font-weight: 900;
    font-style: normal;
}

@font-face {
    font-family: 'Gotham';
    src: url('../fonts/GothamUltra.otf') format('opentype');
    font-weight: 950;
    font-style: normal;
}

@font-face {
    font-family: 'Quickpen';
    src: url('../fonts/Quickpen.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'NF-BlancSeing';
    src: url('../fonts/NF-BlancSeing-Normal.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

/* Global Styles */

html, body {
    height: 100vh;
}

body {
    font-size: 16px;
}
@media (max-width: 1024px) {
    body { font-size: 15px; }
}
@media (max-width: 768px) {
    body { font-size: 14px; }
}
@media (max-width: 460px) {
    body { font-size: 13px; }
}

p {
    margin: 0;
}

/* Utility Classes */
.fit-content {
    width: fit-content;
}

/* Header/Navbar Styles */
.navbar-custom {
    background-color: #ffffff;
    padding: 1.5rem 3rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    z-index: 10;
    top: 0;
    width: 100%;
    transition: padding 0.3s ease;

    .logo {
        height: 32px;
        width: auto;
        transition: transform 0.3s ease;
        transform-origin: center;
    }

    .cart-icon {
        color: #E9531D;
        font: normal normal 500 16px/19px Gotham;
        cursor: pointer;
        transition: color 0.3s ease;
        position: relative;
        padding: 10px 24px;
        border: 1px solid #E9531D33;
        background-color: #E9531D1A;
        border-radius: 24px;
        gap: 12px;

        .cart-badge {
            position: absolute;
            top: -8px;
            right: -8px;
            background-color: #ff6b35;
            color: #ffffff;
            font-size: 0.7rem;
            font-weight: 600;
            width: 18px;
            height: 18px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }
    }

    .cart-icon:hover {
        color: #FFF;
        background-color: #E9531D;
    }

    /* Language Selector Styles */
    .language-selector {
        position: relative;
    }

    .language-text-desktop {
        display: flex;
        align-items: center;
        gap: 8px;
        font: normal normal 400 16px/19px Gotham;
        color: #333333;
        cursor: default;
        margin-left: 1.5em;
    }

    .language-text-desktop .lang-option {
        cursor: pointer;
        transition: opacity 0.3s ease;
        text-decoration: none;
        color:inherit;
    }

    .language-text-desktop .lang-option:hover {
        opacity: 0.7;
    }

    .language-text-desktop .lang-option.active {
        font-weight: 700;
    }

    .language-text-desktop .separator {
        color: #CCCCCC;
    }

    .language-dropdown-mobile {
        display: none;
    }

}

.navbar-custom.scrolled {
    padding: 0.75rem 3rem 0.75rem 1.5rem;

    .logo {
        transform: scale(0.75);
    }
}

/* Main Content Styles */
.bbq-section {
    padding: 1rem 1.5rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1;
    margin-bottom: 3rem;
    overflow: hidden;
}

.bbq-video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    object-fit: cover;
    z-index: -1;
}

.desktoponly{

}

.korean-promo .banner.mobileonly,
.mobileonly{
    display: none;
}

.transparent-bg {
    background: transparent linear-gradient(0deg, #000000 0%, #00000000 100%) 0% 0% no-repeat padding-box;
    top: 50lvh;
    height: 50vh;
    width: 100%;
    position: absolute;
    z-index: 2;
}

.transparent-bg-rotated {
    background: transparent linear-gradient(119deg, #000000 0%, #00000000 100%) 0% 0% no-repeat padding-box;
    top: 0;
    height: 100%;
    width: 100%;
    position: absolute;
    z-index: 2;
}

.bbq-title {
    text-align: center;
    font-size: 7em;
    font-weight: 900;
    color: #FFFFFF;
    opacity: 1;
}

.bbq-title.lang-en {
    font-family: 'Quickpen', Gotham, sans-serif;
}

.bbq-title.lang-el {
    font-family: 'NF-BlancSeing', Gotham, sans-serif;
}

.taste-art-text {
    text-align: center;
    font: normal normal 900 40px/44px Gotham;
    color: #FFFFFF;
    opacity: 1;
}

.main-content {
    margin-top: 100vh;
    position: relative;
    z-index: 2;
    background-color: #F5F5F5!important;
}

.food-lover-section {
    background-size: cover;
    background-repeat: no-repeat;
    margin-bottom: 3.5rem;

    .text-container {
        max-width: 1080px;
        background: rgb(233 83 29 / 85%);
        border-radius: 900px 900px 0px 0px;
        position: relative;
        bottom: 0;
        width: 70%;
        margin-inline: auto;
        left: 0;
        right: 0;
        padding: 186px 138px 36px 138px;
    }

    .title {
        margin-bottom: 25px;
        text-align: center;
        font-size:2.5em;
        color: #FFFFFF;
        opacity: 1;
    }

    .title.lang-en {
        font-family: 'Quickpen', Gotham, sans-serif;
    }

    .title.lang-el {
        font-family: 'NF-BlancSeing', Gotham, sans-serif;
    }

    .text {
        margin-top: 25px;
        text-align: left;
        font: normal normal 300 21px/36px Gotham;
        color: #FFFFFF;
        opacity: 1;
    }
}

.promo-section {
    width: 95%;
    margin:auto;
    padding: 4rem 0;
}

.korean-promo .banner_carousel_promo,
.promo-section .banner_carousel{
    width: 100%;
    max-width: 1080px;
    margin:auto;
}

.korean-promo .banner_carousel_promo .owl-stage,
.promo-section .banner_carousel .owl-stage{
    display: block;
    align-items: unset;
}

.korean-promo .banner_carousel_promo .item,
.promo-section .banner_carousel .item{
    width: 100%;
    float:left;
}


.korean-promo .banner_carousel_promo .owl-dots,
.promo-section .banner_carousel .owl-dots {
	bottom: 2em;
	left: 50%;
	transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	position: absolute;
	display: flex;
	margin: 0;
}


.korean-promo .banner_carousel_promo .owl-dots .owl-dot:not(:last-child),
.promo-section .banner_carousel .owl-dots .owl-dot:not(:last-child) {
	margin-right: 8px;
}

.korean-promo .banner_carousel_promo .owl-dots .owl-dot span,
.promo-section .banner_carousel .owl-dots .owl-dot span {
	width: 8px;
	height: 8px;
	background-color: rgba(255, 255, 255, 0.5);
	border-radius: 50%;
	float: left;
}

.korean-promo .banner_carousel_promo .owl-dots .owl-dot.active span,
.promo-section .banner_carousel .owl-dots .owl-dot.active span {
	background-color: #FFFFFF;
}

.korean-promo .banner_carousel_promo .owl-nav .owl-prev .nav-arrow,
.korean-promo .banner_carousel_promo .owl-nav .owl-next .nav-arrow,
.promo-section .banner_carousel .owl-nav .owl-prev .nav-arrow,
.promo-section .banner_carousel .owl-nav .owl-next .nav-arrow{
    position: absolute;
    top: 50%;
    display: flex;
    transform: translateY(-50%);
    color: #000000;
    width:4em;
    height:4em;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    font-size: 1em;


    .fa-solid {
        transition: transform 0.2s ease;
    }
}

.korean-promo .banner_carousel_promo .owl-nav .owl-next .nav-arrow,
.promo-section .banner_carousel .owl-nav .owl-next .nav-arrow {
    &:hover {
        .fa-chevron-right {
            transform: translateX(25%);
        }
    }
}

.korean-promo .banner_carousel_promo .owl-nav .owl-prev .nav-arrow,
.promo-section .banner_carousel .owl-nav .owl-prev .nav-arrow {
    &:hover {
        .fa-chevron-left {
            transform: translateX(-25%);
        }
    }
}

.korean-promo .banner_carousel_promo .owl-nav .owl-prev .nav-arrow,
.promo-section .banner_carousel .owl-nav .owl-prev .nav-arrow{
    left:1em;
}

.korean-promo .banner_carousel_promo .owl-nav .owl-next .nav-arrow,
.promo-section .banner_carousel .owl-nav .owl-next .nav-arrow{
    right:1em;
}

.korean-promo .banner_carousel_promo .owl-nav .owl-prev .nav-arrow:hover,
.korean-promo .banner_carousel_promo .owl-nav .owl-next .nav-arrow:hover,
.promo-section .banner_carousel .owl-nav .owl-prev .nav-arrow:hover,
.promo-section .banner_carousel .owl-nav .owl-next .nav-arrow:hover{
    background-color:#FFFFFF;
}

.korean-promo .banner_carousel_promo.owl-carousel.owl-drag .owl-item,
.promo-section .banner_carousel.owl-carousel.owl-drag .owl-item{
    width: 100%;
    float:left;
    display: block;
}

.korean-promo a,
.promo-section a{
    width: 100%;
    float:left;
    display: block;
}

.promo-section img.promo-banner-desktop {
    float:left;
    width: 100%;
    border-radius: 24px;
}

.promo-section img.promo-banner-mobile {
    float:left;
    display: none;
    width: 100%;
    border-radius: 24px;
}

.your-next-meal {
    padding: 3.5rem 0;

    .title {
        text-align: center;
        font: normal normal 900 40px/44px Gotham;
        color: #000000;
        opacity: 1;
        margin-bottom: 28px;
    }

    .subtitle {
        text-align: center;
        color: #000;
        z-index: 3;
        font-size: 1.3125em;
        font-weight: 300;
        margin: 1em 0 1.2em;
        padding: 0 2.5%;
    }

    .carousel-wrapper {
        padding-top: 28px;
        overflow: visible;

        .owl-carousel {
            width: 100%;
            overflow: visible;

            .owl-stage {
                position: relative;
                padding-left: 142px;
                transition: padding-left 0.3s ease;
            }

            &:has(.owl-item:last-child:hover) .owl-stage {
                padding-left: 0px;
            }
        }

        .carousel-item {
            display: block;
            width: 804px;
            aspect-ratio: 2 / 1;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
            border-radius: 24px;
            transition: width 0.3s ease, height 0.3s ease;

            @media (min-width: 1025px) {
                &:hover{
                    width: 965px;
                }
            }

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

            .carousel-video {
                position: absolute;
                top: 50%;
                left: 50%;
                transform: translate(-50%, -50%);
                min-width: 100%;
                min-height: 100%;
                width: auto;
                height: auto;
                object-fit: cover;
                opacity: 0;
                transition: opacity 0.3s ease;
                pointer-events: none;
                z-index: 1;
            }

            &:hover .carousel-video,
            &.mobile-active .carousel-video {
                opacity: 1;
            }

            &::before {
                content: '';
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                background-color: rgba(0, 0, 0, 0.15);
                border-radius: 24px;
                transition: background-color 0.3s ease;
                pointer-events: none;
                z-index: 0;
            }

            &:hover::before,
            &.mobile-active::before {
                background-color: rgba(0, 0, 0, 0.6);
                z-index: 2;
            }

            .item-text {
                position: absolute;
                width: 90%;
                top: 2.5em;
                left: 5%;
                text-align: left;
                font: normal normal bold 30px/36px Gotham;
                color: #FFFFFF;
                z-index: 3;
            }

            .carousel-icon {
                position: absolute;
                top: 50%;
                left: 50%;
                transform: translate(-50%, -50%) translateY(20px);
                z-index: 4;
                opacity: 0;
                transition: all 0.4s ease;
                pointer-events: none;

                i {
                    font-size: 48px;
                    color: #FFFFFF;
                    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.5));
                }

                &.mobile-active {
                    opacity: 1;
                    transform: translate(-50%, -50%) translateY(0);
                }
            }

            &:hover .carousel-icon {
                opacity: 1;
                transform: translate(-50%, -50%) translateY(0);
            }
        }

        .owl-nav {
            text-align: center;
            margin-top: 20px;
        }
    }
}

@media (max-width: 1145px) {
    .your-next-meal {
        & .carousel-wrapper {
            & .owl-carousel {
                .owl-stage {
                    padding-left: 30px;
                }
            }
        }
    }
}

@media (max-width: 1024px) {    
    .your-next-meal {
        & .carousel-wrapper {
            & .carousel-item {
                width: 708px;
            }
        }
    }
}

@media (max-width: 768px) {    
    .your-next-meal {
        & .carousel-wrapper {
            & .carousel-item {
                width: 552px;
                
                .item-text {
                    top: 1em;
                }
            }
        }
    }
}

@media (max-width: 600px) {
    .your-next-meal {
        & .carousel-wrapper {
            & .owl-carousel {
                & .owl-stage {
                    padding-left: 24px;

                    & .carousel-item {
                        aspect-ratio: 3 / 4;
                    }
                }
            }
        }
    }
}

.fresh-beef-stakes-wrapper {
    margin-top: 3.5rem;
    margin-bottom: 3.5rem;
}

.fresh-beef-stakes {
    position: relative;
    background-size: 100%;
    background-position: center;
    background-repeat: no-repeat;
    padding: 7rem 15%;
    display: flex;
    flex-direction: column;
    align-items: center;

    .title {
        text-align: center;
        font: normal normal 900 40px/44px Gotham;
        color: #000000;
        z-index: 3;
    }

    .subtitle {
        text-align: center;
        color: #000;
        z-index: 3;
        font-size: 1.3125em;
        font-weight: 300;
        margin-top:1.2em;
    }

    .stakes-container {
        margin-top: 3.5em;
        display: flex;
        align-items: center;
        justify-content: space-evenly;
        gap: 4rem;
        z-index: 3;
        margin-bottom: 50px;
    }

    .stake-item .holder{
        position: relative;
    }

    .stake-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-decoration: none;

        img {
            max-width: 250px;
            width: 100%;
            min-width: 160px;
            height: auto;
            object-fit: contain;
        }

        .stake-label {
            margin-top: 1.25rem;
            text-align: center;
            font: normal normal 700 16px/20px Gotham;
            color: #000000;
            text-transform: uppercase;
        }

        .getout {
            position: absolute;
            width:4em;
            height:4em;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            z-index: 4;
            opacity: 0;
            transition: all 0.4s ease;
            pointer-events: none;

            i {
                font-size: 2.4em;
                color: #FFFFFF;
                filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.5));
                position: absolute;
                top: 50%;
                left: 50%;
                transform: translate(-50%, -50%);
            }
        }
    }

    .stake-item:hover{
        .stake-label{
            color:#E9531D;
        }

        .getout {
            background: transparent radial-gradient(closest-side at 50% 50%, #000000 0%, #00000000 100%) 0% 0% no-repeat padding-box;
            opacity: 1;
        }
    }

    .viewAll {
        margin-top: 50px;
        background: #E9531D;
        border: 1px solid #E9531D;
        border-radius: 24px;
        color: #FFFFFF;
        z-index: 3;
        padding: 10px 24px;
        font: normal normal 300 16px/19px Gotham;
        text-decoration: none;
    }

    .viewAll:hover,
    .viewAll:active,
    .viewAll:focus{
        color:#FFFFFF;
        border-color:#CF4A19;
        background:#CF4A19;
    }
}

.discover-our-products {
    z-index: 2;
    background-color: #F5F5F5;
    padding-top: 3.5rem;
    margin-bottom: 3.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;

    .title {
        font: normal normal 900 40px/44px Gotham;
        color: #000000!important;
        margin-bottom: 28px;
    }

    .subtitle {
        text-align: center;
        color: #000;
        z-index: 3;
        font-size: 1.3125em;
        font-weight: 300;
        margin: 0 0 1.2em;
        padding: 0 2.5%;
    }

    .products-container {
        width: 100%;
        padding-top: 28px;

        .owl-stage-outer {
            display: flex;
            justify-content: center;
        }

        .owl-item:first-child .product {
            margin-left: 130px;
        }

        .owl-item:last-child .product {
            margin-right: 100px;
        }

        .product {
            display: flex;
            flex-direction: column;
            align-items: center;
            width: 160px;
            background-color: #EBEBEB;
            border-radius: 24px;
            overflow: hidden;
            cursor: pointer;
            transition: transform 0.3s ease;
            position: relative;
            text-decoration: none;

            img {
                position: relative;
            }

            &::before {
                content: '';
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                height: 189px;
                background-color: rgba(0, 0, 0, 0.15);
                border-radius: 24px 24px 0 0;
                transition: background-color 0.3s ease;
                pointer-events: none;
                z-index: 1;
            }

            &:hover::before {
                background-color: rgba(0, 0, 0, 0.6);
            }

            .product-icon {
                position: absolute;
                top: 80px;
                left: 50%;
                transform: translateX(-50%) translateY(20px);
                z-index: 2;
                opacity: 0;
                transition: all 0.4s ease;
                pointer-events: none;

                i {
                    font-size: 32px;
                    color: #FFFFFF;
                    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.5));
                }
            }

            &:hover .product-icon {
                opacity: 1;
                transform: translateX(-50%) translateY(0);
            }

            .product-name {
                text-align: left;
                font: normal normal 500 18px/23px Gotham;
                color: #000000;
                padding: 24px;
                transition: background-color 0.3s ease;
                width: 100%;
                display: flex;
                justify-content: center;
                align-items: center;
                min-height: 94px;
            }

            &:hover .product-name {
                background-color: rgba(0, 0, 0, 0.05);
            }
        }
    }
}

/* Korean Promo Banner */
.korean-promo {
    width: 95%;
    margin:auto;
    padding: 3.5rem 0;
    z-index: 4;

    .banner {
        max-width: 1080px;
        width: 95%;
        display: block;
        margin: auto;
        border-radius: 24px;
    }
}

.around-the-world {
    padding: 0 2.5% 5.625em;
    margin-top: 3.5rem;
    background-size:cover;
    background-position: center;
    /* max-height: 100vh; */
    position: relative;
    z-index: 3;
    overflow: hidden;

    /* Pseudo-element for crossfade background */
    &::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-size: cover;
        background-position: center;
        opacity: 0;
        transition: opacity 0.6s ease;
        z-index: -1;
    }

    .option{
        margin: 4.5em auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 8px;
        transition: all 0.6s ease;
        color:#fff;
        text-align: center;
        width:80%;
        max-width: 775px;
        transition: transform 0.3s ease, opacity 0.3s ease;
        padding:0 5px;
    }

    .option.left::before {
        content: '\f060';
        font-family: 'Font Awesome 6 Pro', 'Font Awesome 6 Free', serif;
        font-weight: 300;
        font-size: 1.5em;
        position: absolute;
        top: 20px;
        left: 50%;
        transform: translateX(-50%) translateY(-40px);
        opacity: 0;
        transition: transform 0.3s ease, opacity 0.3s ease;
    }

    .option.right::before {
        content: '\f061';
        font-family: 'Font Awesome 6 Pro', 'Font Awesome 6 Free', serif;
        font-weight: 300;
        font-size: 1.5em;
        position: absolute;
        top: 20px;
        left: 50%;
        transform: translateX(-50%) translateY(-40px);
        opacity: 0;
        transition: transform 0.3s ease, opacity 0.3s ease;
    }

    .option .ttl{
        font-size: 2.5em;
        font-weight: 900;
        transition: transform 0.3s ease, opacity 0.3s ease;
    }

    .option .descr{
        text-align: center;
        color: #fff;
        z-index: 3;
        font-size: 1.3125em;
        font-weight: 300;
    }
    
    .option.inactive{
        position: absolute;
        top: 20px;
        left: 20px;
        background: rgba(233, 83, 29, 0.5) 0% 0% no-repeat padding-box;
        border-radius: 50%;
        width: 168px;
        height: 168px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        margin: 0;
        cursor: pointer;
    }

    .option.inactive.right{
        left:unset;
        right: 20px;
    }

    .option.inactive:hover{
        .ttl{
            transform: translateY(20px);
        }
        &::before {
            transform: translateX(-50%) translateY(0);
            opacity: 1;
        }
    }

    .option.inactive .ttl{
        font-size: 1.3125em;
        font-weight: 700;
    }

    .option.inactive .descr{
        display:none;
    }

    .content {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-top: 6em;

        .content-images {
            display: flex;
            gap: 15px;
            justify-content: center;
            align-items: center;

            img {
                cursor: pointer;
                animation: slideInFromBottom 0.6s ease forwards;
            }

            .unselected {
                filter: grayscale(100%);
            }

            /* Slide out animation class */
            &.slide-out img {
                animation: slideOutToBottom 0.4s ease forwards;
            }
        }

        .content-text {
            margin-top: 4.5em;
            padding: 0 20px;
            max-width: 804px;
            text-align: left;
            font: normal normal normal 16px/23px Gotham;
            letter-spacing: 0;
            color: #FFFFFF;
            position: relative;
            min-height: 4.5em;
        }
    }
}

.our-shops {
    margin-top: 3.5rem;

    .title {
        text-align: center;
        font: normal normal 900 40px/44px Gotham;
        color: #000000;
    }

    .shop-list-container {
        display: flex;
        flex-direction: column;
    }

    .shop-list {
        align-self: center;
        display: grid;
        max-width: 1080px;
        grid-template-columns: repeat(4, 1fr);
        gap: 24px;
        padding: 56px 0px;
        justify-items: center;

        .shop-card {
            display: inline-block;
            background: #FFFFFF 0% 0% no-repeat padding-box;
            border-radius: 20px;
            padding: 40px 24px;
            width: 252px;

            .shop-name {
                text-align: left;
                font: normal normal 500 18px/23px Gotham;
                color: #000000;
            }

            .shop-address {
                margin-top: 8px;
                text-align: left;
                font: normal normal normal 16px/23px Gotham;
                color: #757575;
            }

            .working-days {
                margin-top: 24px;
                text-align: left;
                font: normal normal normal 16px/23px Gotham;
                color: #757575;
            }

            .working-hours {
                margin-top: 8px;
                text-align: left;
                font: normal normal 500 16px/23px Gotham;
                color: #757575;
            }

            .sunday {
                margin-top: 24px;
                text-align: left;
                font: normal normal normal 16px/23px Gotham;
                color: #757575;
            }

            .sunday-working-hours {
                margin-top: 8px;
                text-align: left;
                font: normal normal normal 16px/23px Gotham;
                color: #757575;
            }
        }
    }
}

.shopsTabs.nav{
    margin: 2em auto 3.5em;
    border:1px solid #E9531D33;
    background-color: #E9531D1A;
    border-radius: 2em;
    display: flex;
    justify-content: center;
    width: fit-content;
}

.shopsTabs.nav .nav-item .nav-link{
    color:#E9531DD6;
    background-color:transparent;
    border:1px solid transparent;
    border-radius: 50%;
    width:2em;
    height:2em;
    position: relative;
    padding: 0;
}

.shopsTabs.nav .nav-item .nav-link.active{
    color:#FFFFFF;
    background-color: #E9531D;
}

.shopsTabs.nav .nav-item .nav-link i{
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	position: absolute;
}

.shopsMap{
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
}

/* Animations for around-the-world text transitions */
@keyframes fadeInSlideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeOutSlideDown {
    from {
        opacity: 1;
        transform: translateY(0);
    }
    to {
        opacity: 0;
        transform: translateY(30px);
    }
}

/* Animations for image transitions */
@keyframes slideInFromBottom {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideOutToBottom {
    from {
        opacity: 1;
        transform: translateY(0);
    }
    to {
        opacity: 0;
        transform: translateY(50px);
    }
}

.around-the-world .content-text.fade-in {
    animation: fadeInSlideUp 0.6s ease-out forwards;
}

.around-the-world .content-text.fade-out {
    animation: fadeOutSlideDown 0.4s ease-in forwards;
}

/* Footer */
.footer {
    background: #E9531D 0% 0% no-repeat padding-box;
    padding: 2.5em 0 1.5em;
    color: #FFFFFF;
    position: relative;
    z-index: 5;

    .footer-content {
        display: flex;
        justify-content: space-between;
        gap: 80px;
        width: 95%;
        margin: 0 auto 2.5em;
        max-width: 1080px;
    }

    .footer-left {
        flex: 1;
        max-width: 600px;

        .footer-logo {
            height: 1.5em;
            margin-bottom: 30px;
        }

        .footer-description {
            font-size: 14px;
            color: #FFFFFF;
            opacity: 1;
        }
    }

    .footer-right {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        width: 33%;

        .footer-phone {
            font-size:1.125em;
            font-weight:500;
            color: #FFFFFF;
            text-decoration: none;
            transition: opacity 0.3s ease;

            &:hover {
                opacity: 0.8;
            }
        }

        .footer-email {
            font-size:1.125em;
            font-weight:500;
            color: #FFFFFF;
            text-decoration: none;
            transition: opacity 0.3s ease;

            &:hover {
                opacity: 0.8;
            }
        }

        .footer-social {
            display: flex;
            gap: 30px;
            margin-top: 10px;

            a {
                color: #FFFFFF;
                font-size: 24px;
                transition: opacity 0.3s ease;

                &:hover {
                    opacity: 0.7;
                }
            }
        }
    }

    .footer-bottom {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        gap: 20px;
        width: 95%;
        margin:auto;
        max-width: 1080px;

        .footer-bottom-left {
            display: flex;
            align-items: center;
            gap: 30px;
            flex-wrap: wrap;

            p {
                font-size: 0.875em;
                color: #FFFFFF;
                margin: 0;
            }
        }

        .footer-link {
            font-size: 0.875em;
            color: #FFFFFF;
            transition: opacity 0.3s ease;

            &:hover {
                opacity: 0.7;
            }
        }

        .footer-bottom-right {
            width: 33%;
            a {
                text-decoration: none;
                color:#FFFFFF;
            }
            p {
                font-size: 0.875em;
                color: #FFFFFF;
                margin: 0;
            }
        }
    }
}

/* Responsive */

@media (min-width: 1201px) {
    .fresh-beef-stakes {
        background-size: cover;
    }
}

@media (max-width: 1200px) {
    .fresh-beef-stakes {
        background-size: cover;
        padding: 3.5rem 1.5rem;

        .stakes-container {
            flex-wrap: wrap;
        }

        .stake-item {
            flex: 1 1 calc(50% - 2rem);
        }
    }

    .our-shops .shop-list {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;

        padding: 28px 120px;
    }

    .products-container {
        .owl-stage-outer {
            justify-content: flex-start!important;
        }
    }
    
    .around-the-world{
        .option {
            max-width: 680px;
        }
        .option.inactive{
            left: -10px;
        }
        .option.inactive.right{
            left:unset;
            right: -10px;
        }
    }
}

@media (max-width: 992px) {
    .around-the-world{
        .option.inactive{
            top: 10px;
            left: 10px;
            width: 3.5em;
            height: 3.5em;
        }
        .option.inactive.right{
            left:unset;
            right: 10px;
        }
        .option.inactive .ttl{
            display: none;
        }
        .option.inactive{
            &::before {
                opacity: 1;
                top: 50%;
                left: 50%;
                transform: translate(-50%, -50%);
                -ms-transform: translate(-50%, -50%);
                -webkit-transform: translate(-50%, -50%);
                position: absolute;
            }
        }
        .option.inactive:hover{
            &::before {
                transform: translate(-50%, -50%);
                -ms-transform: translate(-50%, -50%);
                -webkit-transform: translate(-50%, -50%);
            }
        }
    }
}

@media (max-width: 768px) {
    .navbar-custom {
        padding: 1rem 1.5rem;
    }
    .navbar-custom.scrolled {
        padding: 0.5rem 1.5rem;

        .logo {
            transform: scale(0.8);
        }
    }
    .navbar-custom .logo {
        height: 20px;
    }

    .food-lover-section {
        align-items: flex-end;
        display: flex;
        background-size: cover;

        .text-container {
            width: 100%;
            padding: 6.5rem 5rem 2rem;
            bottom: 0;
        }
    }

    .around-the-world {
        .content {
            .content-images {
                overflow: hidden;

                &.owl-carousel {
                    display: flex;
                    width: 100%;
                }

                img {
                    width: 200px;
                    margin: 0 auto;
                }
            }
        }
    }

    .footer {
        padding: 60px 40px 30px;

        .footer-content {
            flex-direction: column;
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-left {
            max-width: 100%;
        }

        .footer-right {
            align-items: flex-start;
            width: 100%;
        }

        .footer-bottom {
            flex-direction: column;
            align-items: flex-start;

            .footer-bottom-left {
                flex-direction: column;
                align-items: flex-start;
                gap: 15px;
            }
        }
    }

    .bbq-video.desktoponly,
    .carousel-video.desktoponly,
    .korean-promo .banner.desktoponly{
        display: none;
    }

    .bbq-video.mobileonly,
    .carousel-video.mobileonly,
    .korean-promo .banner.mobileonly{
        display: block;
    }
}

@media (max-width: 600px) {
    .around-the-world {
        .option {
            width: 95%;
        }
    }
    .navbar-custom {
        .cart-icon {
            background-color: #ff6b35;
            color: #FFF;
            padding: 6px 12px;
        }

        .cart-icon span {
            display: none;
        }

        /* Language Selector Mobile Styles */
        .language-selector {
            margin-left: 0.75rem;
        }

        .language-text-desktop {
            display: none !important;
        }

        .language-dropdown-mobile {
            display: block !important;
        }

        .language-dropdown-btn {
            background: #FAFAFA 0% 0% no-repeat padding-box;
            border: 1px solid #F0F0F0;
            border-radius: 24px;
            padding: 6px 12px;
            color: #000000;
            font-size: 0.875em;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 8px;
            transition: all 0.3s ease;
        }

        .language-dropdown-btn i {
            font-size: 12px;
            transition: transform 0.3s ease;
        }

        .language-dropdown-btn.open i {
            transform: rotate(180deg);
        }

        .language-dropdown-menu {
            position: absolute;
            top: calc(100% + 8px);
            right: 0;
            background: #F0F0F0 0% 0% no-repeat padding-box;
            border: 1px solid #E6E6E6;
            border-radius: 12px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
            min-width: 140px;
            opacity: 0;
            visibility: hidden;
            transform: translateY(-10px);
            transition: all 0.3s ease;
            z-index: 100;
        }

        .language-dropdown-menu.show {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .language-dropdown-item {
            padding: 0.875em 1.145em;
            font-size: 0.875em;
            color: #333333;
            cursor: pointer;
            transition: background-color 0.2s ease;
            text-decoration: none;
        }

        .language-dropdown-item:first-child {
            border-radius: 12px 12px 0 0;
        }

        .language-dropdown-item:last-child {
            border-radius: 0 0 12px 12px;
        }

        .language-dropdown-item:hover {
            background-color: #F5F5F5;
        }

        .language-dropdown-item.active {
            font-weight: 700;
        }
    }

    /**/

    .food-lover-section {
        margin-bottom: 1.75rem;
    }


    .main-screen {
        justify-content: flex-start;
        padding-top: 15vh;
    }

    .taste-art-text {
        font-size: 32.5px;
    }

    .bbq-title {
        font-size: 5em;
    }

    .bbq-title.lang-en {
        font-family: 'Quickpen', Gotham, sans-serif;
    }

    .bbq-title.lang-el {
        font-family: 'NF-BlancSeing', Gotham, sans-serif;
    }

    .food-lover-section {
        .text-container {
            padding: 100px 24px 56px 24px;
            .title {
                font-size: 30px;
                line-height: 60px;
            }

            .text {
                font-size: 18px;
                line-height: 24px;
            }
        }
    }

    .promo-banner-img {
        filter: grayscale(100%);
    }

    .promo-chevron-circle {
        display: none;
    }

    .promo-section img.promo-banner-desktop {
        display: none;
    }

    .promo-section img.promo-banner-mobile{
        display: block;
    }

    .your-next-meal {
        padding-top: 1.75rem;
        padding-bottom: 1.75rem;

        .title {
            text-align: center;
            font-size:2.5em;
            font-weight: 900;
            padding: 0 2rem;
            margin-bottom: 1rem;
        }

        .carousel-wrapper {
            padding-top: 1rem;
            .owl-carousel {
                .owl-stage:first-child {
                    margin-left: 0;
                    padding-left: 0;
                }
            }

            .carousel-item {
                width: calc(100vw - 100px);

                img {
                    object-fit: cover;
                    border-radius: 24px;
                }

                .carousel-video {
                    border-radius: 24px;
                }

                .item-text {
                    text-align: left;
                    font-size:1.875em;
                    font-weight: 700;
                    top:1em;
                }
            }
        }
    }

    .fresh-beef-stakes-wrapper {
        margin-top: 1.25rem;
        margin-bottom: 1.25rem;
    }

    .fresh-beef-stakes {
        padding: 3rem 5%;
        background-size: cover;

        .title {
            font-size: 30px;
            line-height: 36px;
            margin-bottom: 14px;
        }

        .stakes-container {
            column-gap: 16px;
            row-gap: 48px;
            margin-top: 14px;
            margin-bottom: 30px;
        }

        .stake-item {
            flex: 1 1 calc(50% - 1rem);
            width: 148px;

            img {
                width: 148px;
            }
        }

        button {
            margin-top: 30px;
        }
    }

    .discover-our-products {
        margin-bottom: 1.75rem;
        padding-bottom: 0;
        padding-top: 3.5rem;

        .title {
            font-size: 30px;
            line-height: 34px;
            text-align: center;
            margin: 0 1.75rem 20px 1.75rem;
        }

        .products-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 16px;
            padding: 1.75rem 1.5rem 0;

            .product {
                max-width: 148px;
                max-height: 260px;

                &::before {
                    background-color: rgba(0, 0, 0, 0);
                }

                img {
                    width: 100%;
                    height: auto;
                }
            }
        }
    }

    /* Around the World section mobile styles */
    .around-the-world {
        margin-top: 1.75rem;

        .content {
            .content-images {
                overflow: hidden;

                &.owl-carousel {
                    display: block;
                }

                img {
                    width: 200px;
                    margin: 0 auto;
                }
            }
        }
    }

    .our-shops {
        padding: 0;
        .shop-list {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            padding: 48px 20px;

            .shop-card {
                width: 100%;
            }
        }
    }

    .shopsMap {
        width: 100%;
        height: 672px;
    }

    .tab-content {
        min-height: 672px;
    }

    .footer {
        padding: 40px 20px 20px;

        .footer-right {

            .footer-phone {
                font-size: 24px;
                line-height: 32px;
            }

            .footer-email {
                font-size: 16px;
                line-height: 20px;
            }
        }
    }
}

@media (max-width: 460px) {
    .bbq-title {
        font-size: 4em;
    }
}

/* Owl Carousel Customization */

.owl-stage {
    display: flex;
    align-items: center;
}
