@charset "UTF-8";
:root {
  --theme-color: #a89474;
  --title-color: #1C1C1C;
  --body-color: #7B7E86;
  --smoke-color: #F3F3F3;
  --smoke-color2: #F6F6F7;
  --smoke-color3: #F5F5F6;
  --smoke-color4: #F4F4F4;
  --smoke-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: "Segoe UI", 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;
}




.phone-text {
    color: white !important; /* Telefon numarasını beyaz yap */
    text-decoration: none; /* Alt çizgiyi kaldır */
}

.phone-text, .phone-text:link, .phone-text:visited {
    color: white !important; /* Bağlantı ve ziyaret edilen stilini beyaz yap */
    text-decoration: none; /* Alt çizgiyi tamamen kaldır */
}

.phone-text:hover, .phone-text:active {
    color: white !important; /* Hover ve aktif durumunda da beyaz kalsın */
    text-decoration: none; /* Her durumda alt çizgiyi kaldır */
}

@media screen and (max-width: 768px) {
    a[href^="tel"] {
        color: white !important; /* Mobil tarayıcılarda mavi renk sorununu çözer */
        text-decoration: none;
    }
}

.accordion {
    width: 80%;
    max-width: 1000px;
    margin: 20px auto;
}

.accordion-item {
    border-bottom: 2px solid #000000;
    margin-bottom: 5px; /* 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: 15px;
    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::after {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  
  background-image: none !important;
}
@keyframes blink {
    0% {
        background-color: var(--bs-dark);
    }
    50% {
        background-color: transparent;
    }
    100% {
        background-color: var(--bs-dark);
    }
}

.accordion-button.collapsed::after {
    
    
    animation: blink 1s infinite; /* Yanıp sönme animasyonu */
}
.accordion-button:not(.collapsed),
.accordion-button:focus {
  outline: none;
  border-color: transparent;
  box-shadow: none;
  background-color: transparent;
}

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

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


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

.item-menu {
    width: 45%;
    margin: 10px 0;
    text-align: center;
    cursor: pointer;
}

.item-menu img {
    width: 128px; /* Adjust the width as needed */
    height: 128px; /* Adjust the height as needed */
    object-fit: cover;
    border-radius: 30px;
    object-position:center center;
    padding: 0px; 
    border: 2px solid #e1e1e1;
    
}

/* 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 */
    }
    
}

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

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



.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: 72px; /* Logo width */
    height: 72px; /* Logo height */
    border-radius: 50%; /* Makes the logo circular */
    object-fit: cover; /* Ensures the image covers the area */
}

/*=================================
    03. Utilities
==================================*/
/*------------------- 3.1. Preloader -------------------*/
.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;
}

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

.item-image {
    position: relative;
}

.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;
}

.category-menu-items {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

/* Menü öğesi stili */
.item-menu {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 15px;
    
    padding: 20px;
    text-align: center;
    width: calc(33.333% - 20px);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.item-menu:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

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

/* Tablet ve büyük telefonlar (768px ve altı) */
@media (max-width: 768px) {
    .item-menu {
        width: calc(50% - 15px);
        margin: 7px;
    }

    h2 {
        font-size: 20px;
        line-height: 1.2;
    }


.item-menu img {
    width: 100%;
    height: 180px; /* Sabit yükseklik (istediğin gibi ayarlayabilirsin) */
    object-fit: cover; /* Resim taşmadan kırpar, bozulmaz */
    border-radius: 10px;
}
}

/* Küçük telefonlar (480px ve altı) */
@media (max-width: 480px) {
    
    
    .item-menu {
        width: 100%;
        margin: 7px 0;
        
    }

    h2 {
        font-size: 11px;
    }
    
    h4 {
        font-size: 11px;
        
    }
    .price, .price2 {
        font-size: 11px;
    }

    .item-menu img {
        border-radius: 8px;
    }
}


.price-badge {
    padding: 10px;
    border-radius: 12px;
    font-weight: bold;
}

/* Name badge sol alt köşede */
.name-badge {
    bottom: 10px;
    left: 10px;
    border-radius: 12px;
    background-color: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 5px 10px;
    font-size: 7px;

    /* Metin Kırpma */
    white-space: nowrap;       /* Metni tek satırda tut */
    overflow: hidden;          /* Taşan metni gizle */
    text-overflow: ellipsis;   /* Kırpılan metnin sonuna ... ekle */
   
    
}

.name-badge .price-badge {
    position: absolute;
    padding: 8px 12px;
    font-size: 14px;
    border-radius: 12px;
    z-index: 1;
}

/* Toast'ın z-index ve konum ayarları */
#toast-message {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1055; /* Bootstrap modalların üstünde göster */
    min-width: 300px;
    padding: 10px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.toast-body {
    text-align: center;
    font-size: 16px;
}

.modal-backdrop {
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    background-color: rgba(0, 0, 0, 0.1) !important;

    
}
.modal-backdrop.show {
    opacity: 1 !important;
}
