
body
{
    background: #F3F3F3;
    overscroll-behavior-y: contain;
}
html {
    scroll-behavior: smooth;
    overscroll-behavior-y: contain;
  }
*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}


.loading-screen
{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #112219 0%, #112219 25%, #15281E 50%, #132019 75%, #141414 100%);
    color: #000;
    z-index: 5;
    opacity: 0;
    visibility: hidden;
    transition: .4s;
}
.loading-screen.show
{
    opacity: 1;
    visibility: visible;
    transition: .4s;
}

.loading-screen-footer {
    position: absolute;
    bottom: 24px;
    width: 100%;
    text-align: center;
    display: flex;
    justify-content: center;
    font-family: Poppins;
    font-weight: 500;
    font-size: 13px;
    line-height: 21px;
    color: #fff;
    padding: 8px 10px;
}

.spinner {
    animation: spin 1s linear infinite;
    width: 36px;
    transform-origin: center center;
    height: 36px;
}
  @keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }


  .loading-screen-logo-and-spinner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, calc(-50% + -60px));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    row-gap: 40px;
}





header {
    background: linear-gradient(90deg, #112219 0%, #112219 25%, #15281E 50%, #132019 75%, #141414 100%);
    padding: 5px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    z-index: 2;
}

.header-social-media-list ul {
    display: flex;
    align-items: center;
    padding: 0;
    margin: 0;
    list-style: none;
    column-gap: 6px;
}

.header-social-media-list ul li a {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #294234;
    border-radius: 4px;
    font-size: 16px;
    text-decoration: none;
    line-height: 16px;
    color: #F4F2DE;
}


.fixed-menu-categories {
    background: #294234;
    padding: 14px 20px;
    padding-right: 0;
    display: flex;
    align-items: center;
    column-gap: 10px;
    flex-wrap: nowrap;
    white-space: nowrap;
    overflow: hidden;
    overflow-x: auto;
    position: sticky;
    top: 89px;
    border-top: 1px solid #4B5B52;
    border-bottom: 1px solid #4B5B52;
    z-index: 2;
    scroll-behavior: smooth;
}

.fixed-menu-categories::-webkit-scrollbar
{
    display: none;
}

.fixed-menu-categories .fixed-menu-category a {
    font-family: Poppins;
    font-weight: 500;
    font-size: 12px;
    line-height: 20px;
    color: #fff;
    padding: 8px 18px;
    text-decoration: none;
    background: #294234;
    border-radius: 4px;
    border: 1px solid #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .4s;
}

.fixed-menu-categories .fixed-menu-category:last-child
{
    margin-right: 20px;
}

.fixed-menu-categories .fixed-menu-category.active a
{
    background: #F4F2DE;
    border: 1px solid #F4F2DE;
    color: #000;
    transition: .4s;
}

.menu-body {
    padding: 36px 0;
    padding-bottom: 75px;
}

.menu-categories {
    display: flex;
    flex-direction: column;
    row-gap: 36px;
}

.menu-category {
    display: flex;
    flex-direction: column;
    row-gap: 16px;
}

.menu-category-title {
    width: max-content;
    padding: 6px 20px;
    padding-right: 30px;
    background: #294234;
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
    font-family: Poppins;
    font-weight: 500;
    font-size: 13px;
    line-height: 21px;
    color: #FFFFFF;
}

.menu-category-items {
    padding-left: 20px;
}

.product-carousel .owl-stage
{
    padding-left: 0!important;
}

.product-card
{
    border-radius: 4px;
    background: #fff;
}

.product-card-image {
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid #294234;
}

.product-card-image, .product-card-image img {
    aspect-ratio: 1/1;
    object-fit: cover;
}

.product-card-text {
    display: flex;
    flex-direction: column;
    padding: 4px 10px;
    justify-content: center;
    height: 100px;
    row-gap: 8px;
}
.product-card-title {
    font-family: Poppins;
    font-weight: 500;
    font-size: 14px;
    line-height: 22px;
    color: #000;
}

.product-card-price {
    font-family: Poppins;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    color: #27553E;
}





#soguk-icecekler, #sicak-icecekler, #tatlilar, #kategori-4, #kategori-5, #kategori-6, #kategori-7, #kategori-8
{
    scroll-margin-top: 173px;
}

.scroll-to-top-area {
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    bottom: 55px;
    right: 20px;
    z-index: 1;
}

.scroll-to-top-area.hidden {
    opacity: 0;
    visibility: hidden;
    transition: .4s;
}


.scroll-to-top-area.show {
    opacity: 1;
    visibility: visible;
    transition: .4s;
}

.scroll-to-top {
    width: 50px;
    height: 50px;
    border-radius: 50px;
    border: 1px solid #294234;
    background: #294234;
    color: #fff;
    font-size: 18px;
    line-height: 26px;
    border: 2px solid #F4F2DE;
}

footer
{
    background: #294234;
    padding: 10px 20px;
}

.footer-copyright {
    display: flex;
    align-items: center;
    column-gap: 8px;
    font-family: Poppins;
    font-weight: 500;
    font-size: 13px;
    line-height: 21px;
    color: #fff;
    justify-content: center;
}

.footer-copyright a {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #fff;
}

.fancybox-caption {
    background: #ffffff;
    padding: 20px;
}

.fancybox-caption__body {
    display: flex;
    justify-content: start;
    color: #282828;
    font-family: 'Poppins';
    font-size: 16px;
    line-height: 24px;
    font-weight: 500;
    text-align: start;
}

.fancybox-caption__body ul {
    display: flex;
    flex-direction: column;
    row-gap: 4px;
    width: 100%;
}

.fancybox-caption__body ul li {
    display: flex;
    align-items: center;
    column-gap: 12px;
    background: #f3f3f3;
    padding: 4px;
    width: 100%;
    border-bottom: 1px solid #133a16;
}

.fancybox-caption__body ul li::before {
    content: "";
    width: 4px;
    height: 4px;
    background: #414141;
    display: block;
    border-radius: 50px;
}