:root {
    --primary: #ff5f00;
}

@-ms-viewport {
    width: device-width;
}

* {
    font-family: 'Montserrat', sans-serif;
    scroll-behavior: smooth;
    outline: 0 !important;
}

body, html {
    font-size: 16px;
    font-weight: 400;
    padding: 0;
    margin: 0;
}

a {
    text-decoration: none;
}

img {
    max-width: 100%;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

article, aside, dialog, figcaption, figure, footer, header, hgroup, main, nav, section {
    display: block;
}

#sidebarleft {
    display: none;
}

.container {
    padding: 0 15px;
}

.main-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 15px 0;
}

.main-header > button {
    width: 40px;
    height: 40px;
    border-radius: 100%;
    border: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 15px;
    background: transparent;
    transition: 300ms;
}

.main-header > form {
    background: #f2f2f2;
    display: flex;
    width: calc(100% - 100px);
    align-items: center;
    justify-content: space-between;
    overflow: hidden;
    border-radius: 5px;
    position: relative;
}

.main-header > form > button,
.main-header > form > input {
    height: 40px;
    border: 0;
    background: transparent;
}

.main-header > form > button {
    width: 40px;
    position: absolute;
    right: 0;
    top: 0;
    transition: 300ms;
    opacity: .6;
}

.main-header > form > input {
    padding: 0 15px;
    width: 100%;
    text-align: center;
}

.img-hero {
    margin: 15px 0;
}

.img-hero img {
    border-radius: 10px;
}

.section-home.s-category {
    margin: 15px 0;
}

.section-home.s-category .sa-title {
    font-size: 25px;
    font-weight: 700;
    color: #ddd;
    margin-top: 40px;
}

.section-home.s-category .home-category-list {
    display: flex;
    flex-wrap: wrap;
    margin: 15px -5px;
}

.section-home.s-category .home-category-list > a {
    position: relative;
    width: calc(50% - 10px);
    margin: 5px;
    overflow: hidden;
    border-radius: 10px;
}

.section-home.s-category .home-category-list .home-box-category .home-image-category {
    overflow: hidden;
    width: 100%;
}

.section-home.s-category .home-category-list .home-box-category .home-text-category {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    padding: 0 15px;
}

.section-home.s-category .home-category-list .home-box-category .home-text-category .bc-text {
    word-break: break-word;
}

.section-home.s-category .home-category-list .home-box-category .home-image-category img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    filter: brightness(40%);
}

#sidebarleft {
    position: fixed;
    left: 0;
    top: 0;
    width: calc(100% - 30px);
    z-index: 999;
    background: #fff;
    height: 100%;
    overflow: scroll;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 15px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.3);
    transition: 400ms;
    transform: translateX(-100%);
    opacity: 0;
    visibility: hidden;
}

#sidebarleft .logo {
    background: #f2f2f2;
    width: 100%;
    margin-bottom: 90px;
    height: 0;
    padding: 0;
    border-bottom-right-radius: 15px;
    border-bottom-left-radius: 15px;
    transition: 600ms;
    height: 90px;
    padding: 15px 15px 15px 30px;
}

#sidebarleft .logo img {
    width: 150px;
    height: 150px;
    transition: 600ms;
    transform: scale(.1);
    opacity: 0;
    object-fit: contain;
}

#close-menu {
    display: flex;
    position: absolute;
    right: 40px;
    top: 40px;
}

#close-menu .toggle-menu {
    width: 40px;
    height: 40px;
    background: #ddd;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
    border: 0;
    border-radius: 5px;
    transition: 600ms;
    transform: scale(.1);
    opacity: 0;
}

#sidebarleft .sidebar-header h3 {
    color: #ddd;
    margin: 30px 0 10px;
    font-size: 15px;
    display: flex;
    align-items: center;
    column-gap: 10px;
}

#sidebarleft .sidebar-header h3:before {
    content: '\f0c9';
    font-family: 'Font Awesome 5 Free';
}

#sidebarleft .components {
    list-style: none;
    padding: 0;
    margin: 0;
    max-width: 100%;
}

#sidebarleft .components li a {
    font-weight: 700;
    color: rgba(0, 0, 0, 0.6);
    display: block;
    border-bottom: 1px solid #f2f2f2;
    padding: 16px 0;
    transition: 300ms;
    transform: translateX(30px);
    opacity: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

#sidebarleft .components li a > i {
    font-size: 14px;
    margin-right: 10px;
    opacity: .3;
    width: 20px;
    text-align: center;
}

.open-menu #sidebarleft .logo img {
    opacity: 1;
    transform: scale(1);
}

.open-menu #close-menu .toggle-menu {
    opacity: 1;
    transform: scale(1);
}

.open-menu #sidebarleft .components li a {
    transform: translateX(0);
    opacity: 1;
}

.open-menu #sidebarleft {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
}

.list-section.favorites {
    margin: 15px 0;
}

.list-section.favorites .heading-section,
.food-page-section .heading-page {
    text-align: center;
    border-radius: 10px;
    font-weight: bolder;
    color: rgba(0, 0, 0, 0.6);
    margin: 30px 0;
}

.list-section.favorites .wrap-list-rc .lrc-item {
    margin: 20px 0;
    padding: 15px;
    background: #fcfcfc;
    border-radius: 10px;
}

.list-section.favorites .wrap-list-rc .lrc-item .lrc-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.list-section.favorites .wrap-list-rc .lrc-item .lrc-img {
    width: 150px;
}

.list-section.favorites .wrap-list-rc .lrc-item .lrc-img img {
    width: 150px;
    height: 150px;
    object-fit: contain;
    background: #ffff;
    border-radius: 10px;
    box-shadow: 0 0 70px #f9f9f9;
}

.list-section.favorites .wrap-list-rc .lrc-item .lrc-desc {
    width: calc(100% - 150px);
    padding-left: 20px;
}

.list-section.favorites .wrap-list-rc .lrc-item .lrc-content .lrc-title {
    font-size: 18px;
    font-weight: 700;
    color: rgba(0, 0, 0, .5);
    margin-bottom: 10px;
    display: block;
    word-break: break-all;
}

.list-section.favorites .wrap-list-rc .lrc-item .lrc-content .lrc-text {
    display: inline-block;
    font-size: 14px;
    border-radius: 5px;
    color: #000;
    font-weight: 700;
    color: rgba(0, 0, 0, .4);
}

.product-detail-card {
    position: fixed;
    left: 15px;
    bottom: 0;
    height: 80vh;
    width: calc(100% - 30px);
    background: #fff;
    z-index: 999;
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.2);
    overflow: auto;
    padding: 20px;
    transition: 600ms cubic-bezier(0.2, 0.29, 0.6, 1.06) all;
}

.product-detail-card > .product-details .images img:not(:first-child) {
    display: none;
}

.product-detail-card > .product-details .images img {
    width: 100%;
    height: 50vh;
    object-fit: contain;
    margin-bottom: 20px;
    border-radius: 15px;
}

.product-detail-card .product-heading {
    font-size: 20px;
    display: block;
    margin-bottom: 10px;
    opacity: .6;
}

.product-detail-card .product-price {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.product-detail-card .product-price .title {
    font-size: 14px;
    opacity: .6;
}

.product-detail-card .product-price .price {
    font-weight: 600;
    opacity: .5;
}

.product-detail-card .product-price .price:after {
    content: ' TL';
}

.product-detail-card .related-products {
    margin-top: 50px;
}

.product-detail-card .related-products > .title {
    display: block;
    font-size: 22px;
    color: #ddd;
    margin-bottom: 20px;
}

.product-detail-card .related-products > .products {
    display: flex;
    overflow: auto;
    column-gap: 20px;
    padding-bottom: 20px;
}

.product-detail-card .related-products > .products .product {
    min-width: 33%;
}

.product-detail-card .related-products > .products .product .title {
    font-size: 14px;
    display: block;
    margin-top: 20px;
}

.product-detail-card .related-products > .products .product .total {
    font-size: 14px;
    margin-top: 5px;
}

.product-detail-card .related-products > .products .product img {
    width: 100%;
    height: 150px;
    object-fit: contain;
    border-radius: 10px;
}

.product-detail-card .close-card {
    display: flex;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    border: 0;
    background: #f7f7f7;
    border-radius: 5px;
    right: 30px;
    top: 30px;
    position: absolute;
    z-index: 99;
}

.product-detail-card .product-description {
    font-size: 14px;
    margin-top: 20px;
    color: rgba(0, 0, 0, 0.6);
}

body.loading .product-detail-card {
    transform: translateY(40%);
    opacity: 0;
}

body:before {
    content: '\f110';
    font-family: 'Font Awesome 5 Free';
    font-weight: bolder;
    margin-left: 10px;
    animation-name: spin;
    animation-duration: 2000ms;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    position: fixed;
    animation-play-state: paused;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    z-index: 999;
    font-size: 40px;
    left: calc(50% - 20px);
    top: calc(50% - 20px);
    display: none;
}

body:after {
    content: '';
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 99;
    background: rgba(255, 255, 255, 0.5);
    display: none;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

body.loading:before,
body.loading:after {
    display: block;
}

body.loading:before {
    animation-play-state: running;
}

#results-wrapper {
    position: fixed;
    left: 30px;
    top: 60px;
    width: calc(100% - 60px);
    min-height: 80px;
    max-height: 40vh;
    overflow: auto;
    background: #fff;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
    padding: 10px;
    border-radius: 10px;
    visibility: hidden;
    transition: 300ms;
    opacity: 0;
    transform: scale(.2);
    z-index: -999;
}

#results-wrapper.active {
    visibility: visible;
    opacity: 1;
    z-index: 99;
    transform: scale(1);
}

#results-wrapper .product {
    display: flex;
    padding: 10px 0;
    border-bottom: 1px solid #f7f7f7;
    align-items: center;
}

#results-wrapper .product .image {
    width: 70px;
    overflow: hidden;
    border-radius: 5px;
}

#results-wrapper .product .image img {
    width: 100%;
    height: 70px;
    object-fit: contain;
    color: #fff;
}

#results-wrapper .product .content {
    width: calc(100% - 70px);
    padding-left: 10px;
    max-width: 100%;
}

#results-wrapper .product .content .title {
    font-size: 14px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 3px;
    font-weight: 700;
}

#results-wrapper .price {
    font-size: 12px;
    margin: 0;
}

#results-wrapper .alert {
    height: 80px;
    display: flex;
    position: relative;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.footer {
    background: #f7f7f7;
    padding: 15px;
    margin: 60px 15px 0 15px;
    border-top-right-radius: 20px;
    border-top-left-radius: 20px;
    text-align: center;
}

.footer .logo {
    position: relative;
    margin-top: -40px;
    text-align: center;
    margin-bottom: 30px;
}

.footer .logo img {
    width: 80px;
    height: 80px;
    display: inline-block;
    padding: 10px;
    background: #fff;
    border-radius: 100%;
    box-shadow: 0 0 30px #f7f7f7;
    object-fit: contain;
}

.footer .footer-heading.footer-title h6 {
    margin: 0;
    padding: 0;
}

.footer .socmed {
    display: flex;
    align-items: center;
    justify-content: center;
    align-items: center;
    jusify-content: center;
    flex-wrap: wrap;
}

.footer .socmed .socmed-line a {
    margin: 20px 10px;
    font-size: 25px;
    display: flex;
    background: #ddd;
    width: 50px;
    height: 50px;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    color: #000;
}

.content-wrap .img-hero .container {
    display: flex;
    overflow: scroll;
    column-gap: 11px;
}

.content-wrap .img-hero .container img {
    min-width: calc(100vw - 60px);
}

.content-wrap .yml-carousel {
    display: flex;
    background: #f2f2f2;
    padding: 10px 20px;
    overflow: scroll;
    column-gap: 10px;
}

.content-wrap .yml-carousel .yml-box {
    min-width: calc(33vw - 10px);
}

.content-wrap .yml-carousel .yml-box img {
    width: 100%;
    height: 80px;
    object-fit: cover;
    border-radius: 10px;
}

.content-wrap .yml-carousel .yml-box .yml-food-text {
    display: block;
    font-size: 13px;
    color: #000;
    margin-top: 10px;
    text-align: center;
    text-transform: capitalize;
}

.content-wrap .img-hero .container img {
    height: 250px;
    object-fit: cover;
}

.content-wrap .img-hero.simple-image .container {
    display: block;
    column-gap: 0;
    overflow: hidden;
}

.content-wrap .img-hero.simple-image .container img {
    width: 100%;
    max-width: 100%;
}

.app-home {
    display: flex;
    flex-direction: column;
    height: 100vh;
    width: 100%;
    align-items: center;
    justify-content: space-between;
}

.app-home .header-title {
    background: #5E6472;
    width: 100%;
    text-align: center;
}

.app-home .header-title strong {
    color: #ffF;
    font-size: 20px;
    padding: 15px 0;
    display: block;
}

.app-home .footer {
    width: 100%;
}

.app-home .card {
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
    padding: 15px;
    border-radius: 10px;
    text-align: center;
}

.app-home .card img {
    width: 100%;
    border-radius: 10px;
}

.app-home .card-title {
    font-size: 20px;
    margin: 30px 0 10px;
    padding: 0;
}

.app-home .card-text {
    font-weight: lighter;
    font-size: 13px;
}

.app-home .card-button a {
    background: #26ff8f;
    display: block;
    padding: 10px 0;
    margin-top: 30px;
    border-radius: 5px;
    font-size: 14px;
    color: rgba(0, 0, 0, 0.8);
    transition: 300ms;
}

.app-home .card-button a:Hover {
    background: #19cf71;
    color: #ffF;
    box-shadow: 0 0 10px #19cf71;
}

.app-home .card .phone {
    margin: 20px 0;
}

.app-home .card .phone > div:first-child {
    font-size: 13px;
}

.app-home .card .phone > div:last-child {
    font-weight: 600;
    margin-top: 5px;
    transition: 300ms;
    color: rgba(0, 0, 0, .6);
}

.app-home .card .phone > div:last-child:Hover {
    color: #000;
}