@charset "UTF-8";

:root {
  --theme-color: #303030;
  --title-color: #1C1C1C;
  --body-color: #7B7E86;
  --smoke-color: #F3F3F3;
  --theme-color2: #F6F6F7;
  --theme-color3: #F5F5F6;
  --theme-color4: #F4F4F4;
  --theme-color5: #F0F2F4;
  --black-color: #202020;
  --gray-color: #303030;
  --white-color: #ffffff;
  --light-color: #9fa2ad;
  --yellow-color: #FFB539;
  --success-color: #28a745;
  --error-color: #dc3545;
  --border-color: #E3E3E3;
  --title-font: "Kanit", sans-serif;
  --body-font: "Kumbh Sans", sans-serif;
  --icon-font: "Font Awesome 6 Pro";
  --main-container: 1220px;
  --container-gutters: 24px;
  --section-space: 120px;
  --section-space-mobile: 80px;
  --section-title-space: 60px;
  --ripple-ani-duration: 5s;
}

* {
  margin: 0;
  padding: 0;
}

html,
body {
  scroll-behavior: smooth !important;
}

body {
  font-family: var(--body-font);
  font-size: 13px;
  background-image: linear-gradient(20deg, rgba(48, 48, 48, 1) 25%, rgba(61, 61, 61, 1) 50%, rgba(31, 31, 31, 1) 75%, rgba(158, 158, 158, 1) 100%);
  font-weight: 300;
  color: var(--body-color);
  line-height: 26px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
 
}
body::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}
body::-webkit-scrollbar-track {
  background: rgba(251, 212, 81, 0.1);
}
body::-webkit-scrollbar-thumb {
  background: var(--theme-color);
  border-radius: 0px;
}

.accordion {
    width: 90%;
    max-width: 1000px;
    margin: 10px auto;
}

.accordion-item {
    border-bottom: 2px solid #000000;
    margin-bottom: 7px; /* Space between categories */
}

.accordion-button {
    width: 100%;
    padding: 15px;
    border: none;
    outline: none;
    cursor: pointer;
    background-size: cover;
    background-position: center;
    color: white;
    font-size: 18px;
    font-weight: bold;
    transition: background-color 0.3s;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: transparent; /* Ensure background doesn't conflict */
}

.accordion-button::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.1));
    z-index: 1;
    transition: background-color 0.3s;
}

.accordion-button:hover::before {
    background: linear-gradient(to right, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.2));
}




.accordion-button span {
    color: white;
    position: relative;
    z-index: 2;
}

.accordion-body {
    display: none; /* Hide the content by default */
    padding: 15px;
    background-color: #5E5E5E;
    
}

.truncate {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    font-size: smaller;
    font-style: italic;
} 


.logo-img {
    width: 52px; /* Logo width */
    height: 52px; /* Logo height */
    border-radius: 50%; /* Makes the logo circular */
    object-fit: cover; /* Ensures the image covers the area */
}

.preloader {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 999;
  background-color: var(--title-color);
}
.preloader .btn {
  padding: 15px 20px;
  border-radius: 0;
  font-size: 14px;
  text-transform: capitalize;
}
.preloader .btn:after {
  border-radius: 0;
}

.preloader-inner {
  text-align: center;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  line-height: 1;
}
.preloader-inner img {
  display: block;
  margin: 0 auto 10px auto;
}

.loader {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: inline-block;
  border-top: 4px solid #FFF;
  border-right: 4px solid transparent;
  box-sizing: border-box;
  animation: rotation 1s linear infinite;
}

.loader::after {
  content: "";
  box-sizing: border-box;
  position: absolute;
  left: 0;
  top: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border-left: 4px solid var(--theme-color);
  border-bottom: 4px solid transparent;
  animation: rotation 0.5s linear infinite reverse;
}

@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
* {box-sizing:border-box}


/* Caption text */
.text {
  color: #000000;
  font-size: 15px;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
}
/* Number text (1/3 etc) */
.numbertext {
  color: #000000;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}
/* The dots/bullets/indicators */
.dot {
  height: 13px;
  width: 13px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}
.active {
  background-color: #717171;
}


.owl-carousel .item img {
    height: 198px; /* Adjust the height as needed */
    object-fit: cover;
    position: relative;
    object-position:center center;
    padding: 0px; 
    border: 3px solid #000000;
}

.item-description {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    
}


.item-image {
    position: relative;
}

.item-menu img {
    width: 128px;
    height: 128px;
    object-fit: cover;
    border-radius: 30px;
    object-position: center center;
    padding: 0;
    border: 2px solid #e1e1e1;
    opacity: 0.9; /* Transparanlık efekti */
    transition: opacity 0.3s ease;
}

.item-menu img:hover {
    opacity: 1; /* Hover durumunda tam opak */
}

.item-menu h3 {
    margin: 8px 0;
    font-size: 14px;
}

.item-menu h4 {
    font-size: 13px;
}


/* Menü öğesi stili */
.item-menu {
    background-color: #5E5E5E;
    border: 2px solid #DDD;
    border-radius: 15px;
    padding: 20px;
    margin: 10px 0;
    text-align: center;
    width: calc(33.333% - 20px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3); /* Gölgeyi daha koyu ve belirgin yap */
    transition: all 0.3s ease;
    cursor: pointer;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.1));
    color: white;
}


.item-menu:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.5); /* Hover durumunda gölgeyi daha belirgin yap */
}

.menu-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Responsive adjustments for smaller screens */
@media (max-width: 768px) {
    .item-menu img {
        max-width: 100px; /* Adjust maximum width for smaller screens */
        max-height: 100px; /* Adjust maximum height for smaller screens */
        margin: 10px 0;
    }
    
}

/* On smaller screens, decrease text size */
@media only screen and (max-width: 300px) {
  .text {font-size: 11px}
  
}

/* Mobil görünüm için uyarlamalar */
@media (max-width: 768px) {
    .item-menu {
        width: calc(50% - 20px);
    }

    h4 {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .item-menu {
        width: calc(50% - 10px);
    }
    h4 {
        font-size: 24px;
    }
}

@media (max-width: 390px) {
    .item-menu {
        width: calc(50% - 20px);
    }

    h4 {
        font-size: 22px; /* iPhone 13 için başlık boyutunu optimize et */
    }

}

/* Fiyat badge ayarları */
.price-badge {
    background-color: #dc3545; /* Kırmızı arka plan */
    top: 10px;
    right: 10px;
    font-size: 16px;
    position: absolute;
    font-size: 16px;
    padding: 20px 10px;
    border-radius: 5px;
    color: #fff;
    text-decoration: line-through; /* Üstü çizili yap */
}

/* İndirimli fiyat badge ayarları */
.discount-price-badge {
    background-color: #28a745; /* Yeşil arka plan */
    top: 10px;
    right: 110px; /* Price badge ile aradaki boşluğu artırdık */
    font-size: 16px;
    position: absolute;
    font-size: 16px;
    padding: 20px 10px;
    border-radius: 5px;
    color: #fff;
}

/* İndirimli fiyat badge ayarları */
.discount-badge {
    background-color: #28a745; /* Yeşil arka plan */
    top: 10px;
    left: 10px; /* Price badge ile aradaki boşluğu artırdık */
    font-size: 16px;
    position: absolute;
    font-size: 16px;
    padding: 20px 10px;
    border-radius: 5px;
    color: #fff;
}

/* Ürün ismi badge ayarları */
.name-badge {
    background-color: #343a40; /* Koyu renk arka plan */
    bottom: 10px;
    left: 50%; /* Sol tarafı kapsayıcının ortasına hizala */
    transform: translateX(-50%); /* Ortalamak için sola kaydır */
    font-size: 12px;
    padding: 3px 8px;
    position: absolute;
    font-size: 16px;
    padding: 5px 10px;
    border-radius: 5px;
    color: #fff;
}

/* FCM toast için temel stil */
.custom-toast {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #333;
    color: #fff;
    padding: 16px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    z-index: 10000;
    opacity: 1;
    transition: opacity 0.5s ease;
    min-width: 250px;
}

/* Header kısmı */
.custom-toast-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.custom-toast-icon {
    width: 24px;
    height: 24px;
    margin-right: 8px;
}

.custom-toast-close {
    background: none;
    border: none;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
}

.custom-toast-body {
    margin-top: 8px;
}


#owl-carousel .item {
    
    height: 450px; /* Yükseklik ayarı */
    overflow: hidden;
}

#owl-carousel .item img {
    height: 450px; /* Yükseklik ayarı */
    object-fit: cover; /* Görseli tam doldurur, oranını korur */
}





