body, html {
  font-family: 'Nunito', Arial, Helvetica, sans-serif !important;
}

.search-btn {
  background: none;
  border: none;
  color: #fa0050;
  font-size: 22px;
  cursor: pointer;
  transition: color .16s;
}
.search-btn:hover { color: #111; }

.search-modal {
  display: none; position: fixed; z-index: 9999; inset: 0;
  align-items: center; justify-content: center;
  background: rgba(0,0,0,0.17);
  animation: fadeIn .22s;
}
.search-modal.open { display: flex; }

.search-modal-backdrop {
  position:absolute; inset:0;
  background:rgba(0,0,0,0.18);
  z-index:0;
}
.search-modal-content {
  position:relative; z-index:2;
  background:#fff; border-radius:18px;
  padding:32px 28px 24px 28px;
  min-width:340px; max-width:96vw;
  box-shadow:0 8px 44px #0002;
  display:flex; flex-direction:column;
  align-items:center;
}
.search-form-popup, #searchFormPopup {
  width:100%; display:flex; align-items:center; gap:10px;
  margin-bottom:16px; position:relative;
}
.search-input {
  flex:1 1 0; font-size:18px; border-radius:10px; padding:13px 50px 13px 18px;
  border:1px solid #ececec; background:#f6f6f8;
  font-family: 'Nunito', Arial, Helvetica, sans-serif;
  transition:border-color .18s;
}
.search-input:focus {
  outline:none; border-color:#fa0050; background:#fff;
}
.search-voice-btn, .search-submit-btn {
  background:transparent; border:none; padding:0; font-size:20px;
  color:#b3b3b3; cursor:pointer; position:absolute; top:50%; transform:translateY(-50%);
  transition:color .18s;
}
.search-voice-btn { right:40px; }
.search-submit-btn { right:8px; }
.search-voice-btn:active, .search-voice-btn:focus,
.search-submit-btn:active, .search-submit-btn:focus { color:#fa0050; }

.search-extra-actions {
  width:100%; margin:8px 0 4px 0; display:flex; justify-content:flex-end;
}
.yakindaki-btn {
  background:#ffe600; color:#c41e3a; border:none; border-radius:9px; font-weight:700;
  font-size:15px; padding:9px 18px; cursor:pointer; transition:background .16s;
  display:inline-flex; align-items:center; gap:7px;
}
.yakindaki-btn:hover { background:#fa0050; color:#fff; }

.search-results, #searchSuggest {
  margin-top:12px; width:100%;
  /* Buraya autocomplete ve sonuçlar için ekstra tasarım ekleyebilirsin */
}

@media (max-width: 540px) {
  .search-modal-content { min-width:98vw; padding:16px 4px; }
  .search-input { font-size:16px; }
}
@keyframes fadeIn {
  from { opacity:0 } to { opacity:1 }
}

.header-notification {
  color: inherit;
  text-decoration: none;
  font-size: 1.2rem;
  position: relative;
}

.header-notification .badge {
  font-size: 0.65rem;
  line-height: 1;
  padding: 0.25em 0.4em;
  pointer-events: none;
}

.topbar {
  font-size: 0.9rem;
}
.topbar-left a:hover { color: #ff6b6b; }

.topbar-right .dropdown-menu { min-width: 130px; }
.topbar-right .form-check-label i {
  font-size: 1.1rem;
  cursor: pointer;
  user-select: none;
}

.custom-lang-switcher { position: relative; display: inline-block; margin-right: 1rem; }

.header-lang .lang-dropdown a.active {
  background: #f2f3fa;
  color: #222;
  font-weight: bold;
}
.fi { font-size:1.1em; margin-right:8px; }

.lang-btn {
  background: #f5f6fa;
  color: #222;
  border: none;
  padding: 8px 18px 8px 12px;
  border-radius: 1.5rem;
  font-weight: 600;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: box-shadow 0.2s;
  box-shadow: 0 2px 8px rgba(40,40,60,0.05);
}

.lang-btn:hover { box-shadow: 0 4px 18px rgba(60,60,80,0.10); }

.lang-dropdown {
  display: none;
  position: absolute;
  top: 120%;
  left: 0;
  background: #fff;
  min-width: 140px;
  border-radius: 1rem;
  box-shadow: 0 4px 24px rgba(40, 40, 60, 0.15);
  z-index: 99999;
  animation: fadeDown 0.25s;
  overflow: hidden;
}

.lang-dropdown a {
  display: flex;
  align-items: center;
  padding: 10px 18px;
  color: #222;
  text-decoration: none;
  font-size: 1rem;
  gap: 10px;
  transition: background 0.15s;
}

.lang-dropdown a:hover,
.lang-dropdown a.active {
  background: #f1f3f8;
  color: #1366d6;
  font-weight: bold;
}

.fi { font-size: 1.1em; }

.custom-dark-toggle {
  position: relative;
  display: flex;
  align-items: center;
  width: 52px;
  height: 32px;
  background: linear-gradient(90deg,#24243a,#6a82fb);
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: background 0.3s;
  overflow: hidden;
}

.toggle-bg {
  position: absolute;
  inset: 0;
  border-radius: 50px;
  background: linear-gradient(90deg,#24243a 0%,#6a82fb 100%);
  opacity: 0.8;
  z-index: 1;
}

.toggle-icon {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 auto;
  z-index: 2;
  transition: color 0.3s;
}

.toggle-icon i { font-size: 1.25em; transition: opacity 0.25s; }

.darkmode-on .toggle-icon .fa-moon { opacity: 0; }
.darkmode-on .toggle-icon .fa-sun { opacity: 1; color: #ffd600; }
.toggle-icon .fa-moon {
  opacity: 1;
  color: white;
}
.toggle-icon .fa-sun { opacity: 0; }


 /* Arama Butonu */
 #searchOpenBtn {
  top: 22px; right: 30px; z-index: 1001;
  background: #fff; border: none; width: 48px; height: 48px; border-radius: 50%; box-shadow: 0 4px 18px 0 rgba(30,40,60,.09);
  display: flex; align-items: center; justify-content: center; font-size: 1.35em; cursor: pointer;
  transition: background .15s;
}
#searchOpenBtn:hover { background: #f5f5f5; }
.search-modal { position: fixed; z-index: 99999; top:0;left:0;right:0;bottom:0; display:none; align-items: flex-start; justify-content: center;}
.search-modal.open { display:flex; }
.search-modal-backdrop { position: absolute; inset: 0; background: rgba(30, 32, 40, .45);}
.search-modal-content {
  position: relative;
  margin-top: 8vh;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 12px 48px 0 rgba(20, 30, 40, .13);
  width: 60%;
  max-width: 100%;
  padding: 32px 24px 16px 24px;
  z-index: 3;
  animation: popupIn .23s cubic-bezier(.18,1.26,.55,1.09);
}
@keyframes popupIn { 0%{transform:translateY(-50px);opacity:0;}100%{transform:translateY(0);opacity:1;} }
#searchInput { width:100%;font-size:1.15em; padding:14px 44px 14px 12px; border-radius:10px; border:1px solid #ccc;}
#searchInput:focus { outline: 2px solid #3c63ef; border-color: #3c63ef;}
#voiceBtn {
  position:absolute;right:14px;top:50%;transform:translateY(-50%);
  background:none;border:none;padding:0;color:#4963f2;font-size:1.45em;cursor:pointer;
}
#voiceBtn.active{color:#dd3127;}
.search-results { margin-top:14px; max-height:380px; overflow-y:auto;}
.search-result-item {
  display:flex;align-items:center;padding:11px 0; border-bottom:1px solid #f3f3f3;cursor:pointer;
  transition:background .15s;
}
.search-result-item:last-child {border-bottom:none;}
.search-result-item.active, .search-result-item:hover {background: #f4f6fd;}
.search-result-img { width: 54px; height: 54px; object-fit: cover; border-radius: 10px; margin-right: 14px; border:1px solid #eee;}
.search-result-title { font-weight: 600; font-size: 1.07em; }
.search-result-meta {display:flex;gap:6px;align-items:center;margin-top:2px;}
.search-result-cat {background:#f6e9e0; color:#7b4413; border-radius:8px; font-size:.87em; padding:2px 9px;}
.search-result-stock {color:#32bb58;font-weight:600;font-size:.93em;}
.search-result-stock.out {color:#b81d23;font-weight:600;}
.search-result-camp {background:#ffe87c;color:#8d7b07;font-size:.93em;border-radius:8px;padding:2px 7px;}
.search-result-rating {color:#e2a80d;font-weight:700;font-size:.98em;}
.search-result-price {color:#108d42;font-weight:700;margin-left:8px;}
.search-highlight { background: #ffe066; font-weight: bold; }
.search-noresult { padding: 36px 0; color: #888; text-align: center; font-size:1.08em;}
.search-spinner {text-align:center; padding:40px 0;}
.search-spinner:after{content:"";display:inline-block;width:22px;height:22px;border:3px solid #f3f3f3;border-top:3px solid #3c63ef;border-radius:50%;animation:spin .8s linear infinite;}
@keyframes spin{100%{transform:rotate(360deg);}}
.search-section-title {font-weight:700;color:#546; margin:18px 0 8px 0;}
.search-chip {display:inline-block;background:#f3f4fa;border-radius:14px;padding:6px 16px;margin:4px 5px 0 0;font-size:.97em;cursor:pointer;}
.search-chip:hover {background:#dce3ff;}
.yakindaki-btn{display:inline-block;margin:10px 0;padding:7px 20px;border-radius:18px;background:#f1f7f9;font-weight:700;color:#444;border:1px solid #b7dbeb;cursor:pointer;font-size:1.06em;}
.yakindaki-btn.active{background:#328de0;color:#fff;border-color:#328de0;}
@media(max-width:600px){
  .search-modal-content{max-width:99vw; margin-top:2vw; border-radius:11px;}
  #searchOpenBtn{top:10px;right:10px;}
}


/* Fethiye Döner King - Topbar Styles */
#fdk-topbar {
  width: 100vw;
  min-width: 100vw;
  max-width: 100vw;
  min-height: 48px;
  max-height: 90px;
  height: 90px;
  position: relative;
  top: 0; left: 0;
  z-index: 22;
  overflow: hidden;
  display: flex;
  align-items: stretch;
  justify-content: center;
  box-shadow: 0 6px 24px -10px #1a1a1a15;
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  transition: background-image .5s, background-color .35s;
}
#fdk-topbar .fdk-topbar-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.35);
  z-index: 1;
  pointer-events: none;
  transition: background .22s;
}
#fdk-topbar .fdk-topbar-content {
  position: relative;
  z-index: 2;
  width: 100%;
  min-height: 48px; max-height: 90px;
  display: flex;
  align-items: center; justify-content: center;
  flex-wrap: wrap;
  color: inherit;
  text-align: center;
  overflow: hidden;
  font-size: 1.12em;
  padding: 0 1em;
}
#fdk-topbar .fdk-topbar-message {
  display: flex; align-items: center; gap: 0.5em; flex-wrap: wrap; width: 100%;
  color: inherit;
  text-shadow: 0 2px 12px #0007, 0 0 1px #fff4;
  justify-content: center;
}
#fdk-topbar .fdk-topbar-icon { font-size: 1.18em; margin-right: 4px; opacity: 0.85;}
#fdk-topbar .fdk-topbar-badge {
  margin-left: 10px; font-size: .97em; padding: 2px 11px; border-radius: 12px;
  background: #d41117; color: #fff; font-weight: 700;
  animation: fdk-badge-pulse 1.4s infinite alternate;
}
@keyframes fdk-badge-pulse { 0%{box-shadow:0 0 0 0 #d411171e;} 100%{box-shadow:0 0 8px 3px #d411171a;} }
#fdk-topbar .fdk-topbar-link {
  margin-left: 12px; text-decoration: none; padding: 4px 15px; border-radius: 7px;
  font-weight: 600; border: none; display: inline-block; transition: background .16s, color .16s;
  background: #fff8; color: #1a1a1a; box-shadow: 0 1px 5px 0 #0002;
}
#fdk-topbar .fdk-topbar-link:hover {
  filter: brightness(1.09); text-decoration: underline; box-shadow: 0 2px 14px 0 #0002;
}
#fdk-topbar .fdk-topbar-close {
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 9;
  background: rgba(0,0,0,0.40);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.92;
  cursor: pointer;
  transition: background .16s, color .16s, opacity .16s;
  box-shadow: 0 2px 14px #0003;
}
#fdk-topbar .fdk-topbar-close:hover {
  background: #fff; color: #d41117; opacity: 1;
}
body.fdk-topbar-active { padding-top: 0px; }

@media (max-width: 767px) {
  #fdk-topbar .fdk-topbar-content { font-size: 0.98em;}
  #fdk-topbar .fdk-topbar-link { margin-left: 6px; font-size: 0.98em;}
  #fdk-topbar .fdk-topbar-badge { margin-left: 7px;}
  #fdk-topbar .fdk-topbar-close { right: 8px; }

  body.fdk-topbar-active {
    padding-top: 0px !important;
  }
  #fdk-topbar .fdk-topbar-link {
    margin-left: 12px;
    text-decoration: none;
    padding: 0px 8px;
    border-radius: 7px;
    font-weight: 600;
    border: none;
    display: inline-block;
    transition: background .16s, color .16s;
    background: #fff8;
    color: #1a1a1a;
    box-shadow: 0 1px 5px 0 #0002;
  }
  #fdk-topbar {
    min-height: 60px !important;
    max-height: 70px !important;
    height: 71px !important;
    max-width: 768px !important;
    left: 0;
    right: 0;
    margin: 0 auto;
    position: relative;
    top: 0;
    left: 0;
    z-index: 22;
    overflow: hidden;
    display: flex;
    align-items: stretch;
    justify-content: center;
    box-shadow: 0 6px 24px -10px #1a1a1a15;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    transition: background-image .5s, background-color .35s;
    padding-top: 5px;
}
#fdk-topbar .fdk-topbar-message {
  display: flex;
  align-items: center;
  gap: 0.5em;
  flex-wrap: wrap;
  width: 100%;
  color: inherit;
  text-shadow: 0 2px 12px #0007, 0 0 1px #fff4;
  justify-content: normal;
}
  #fdk-topbar .fdk-topbar-content {
    font-size: 0.97em;
    min-height: 40px; max-height: 60px;
  }

  #fdk-topbar-toast {
    position: fixed; bottom: 34px; right: 30px;
    background: rgba(25,25,25,0.96);
    color: #fff;
    font-size: 1.08em;
    padding: 12px 26px;
    border-radius: 22px;
    box-shadow: 0 3px 18px #0006;
    z-index: 9999;
    opacity: 0;
    pointer-events: none;
    transition: opacity .38s cubic-bezier(.7,0,.2,1);
  }

  #fdk-topbar .fdk-topbar-close {
    position: absolute;
    right: 0px;
    top: 26%;
    margin-right:0px;
    transform: translateY(-50%);
    z-index: 9;
    background: rgba(0, 0, 0, 0);
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    font-size: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.92;
    cursor: pointer;
    transition: background .16s, color .16s, opacity .16s;
    box-shadow: 0 2px 14px rgba(0, 0, 0, 0);
}
  
}


@media (max-width: 480px) {
  .custom-lang-switcher { margin-right: 0.5rem; }
  .lang-btn { font-size: 0.98rem; padding: 6px 12px; }
  .lang-dropdown { min-width: 110px; }
  .custom-dark-toggle { width: 44px; height: 28px; }
}

@keyframes popupShow { 
  from { transform: scale(0.95); opacity: 0; } 
  to { transform: scale(1); opacity: 1; } 
}

.custom-modal-close {
  position: absolute;
  top: 16px;
  right: 18px;
  font-size: 2rem;
  color: #888;
  cursor: pointer;
  transition: .2s;
}

.custom-modal-close:hover { color: #f3901d; }

@media (max-width: 768px) {
  .custom-modal-content { padding: 18px 6px; }
}

@media (min-width: 1025px) {
  #slider-desktop { display: block; }
  #slider-tablet, #slider-mobile { display: none !important; }
}

@media (min-width: 768px) and (max-width: 1024px) {
  #slider-tablet { display: block; }
  #slider-desktop, #slider-mobile { display: none !important; }
}

@media (max-width: 767px) {
  #slider-mobile { display: block; }
  #slider-tablet, #slider-desktop { display: none !important; }
}



#fdk-main-menu {
  font-family: 'Nunito', Arial, Helvetica, sans-serif;
}

.fdk-menu {
  list-style:none;
  margin:0;
  padding:0;
  display:flex;
  flex-wrap:wrap;
  align-items:center;
}
ul.list-unstyled.text-muted.mb-2 a {
  text-decoration: unset;
}
.fdk-menu-item:hover {
  background: #f9f9f9;
  border-radius: 5px;
}
.fdk-menu-item {
  position: relative;
  margin: 0 6px;
  padding: 8px 20px;
  display: flex;
  flex-direction: column;
  /* align-items: center; */
  transition: background 0.18s;
  border-radius: 5px;
}
.fdk-menu-img {
  height:32px; width:auto;
  border-radius:9px;
  margin-bottom:2px;
}

.fdk-menu-main {
  display:flex;
  align-items:center;
  gap:8px;
}

.fdk-menu-link {
  text-decoration:none !important;
  color:#232323;
  font-size:17px;
  font-weight:700;
  letter-spacing:-0.02em;
  padding:3px 4px;
  transition: color 0.18s;
}
.fdk-menu-link:hover {
  color:#fa0050;
}

.fdk-menu-badge {
  display: inline-block;
  background: #ffe600;
  color: #db3752;
  padding: 2px 10px;
  font-size: 12px;
  border-radius: 11px;
  font-weight: 700;
  margin-left: 0px !important;
  vertical-align: middle;
  box-shadow: 0 2px 6px #0001;
  letter-spacing: 0.01em;
  position: absolute;
  top: -11px;
  right: 0px;
}

.fdk-menu-title {
  font-size:13px;
  color:#8d8d8d;
  font-weight:600;
  margin-top:2px;
}

.fdk-menu-desc {
  font-size:12px;
  color:#666;
  margin-top:2px;
}

.fdk-menu > .fdk-menu-item > ul {
  display:none;
  position:absolute;
  top:54px;
  left:0;
  background:#fff;
  box-shadow:0 6px 24px #0002;
  min-width:170px;
  border-radius:11px;
  z-index:99;
  padding:10px 0;
}

.fdk-menu-item:hover > ul {
  display:block;
}

.fdk-alert {
  padding:18px 0;
  color:#db3752;
  font-weight:600;
  font-family:'Nunito',Arial,sans-serif;
  text-align:center;
  font-size:16px;
}

ul.fdk-menu a {
  text-decoration: none;
}

.fdk-menu-link .fdk-menu-icon {
  font-size: 1em;         /* Linkin yazı boyutu neyse, ikon da o */
  vertical-align: middle;
  margin-right: 7px;
}

@media (max-width: 991px) {
  .fdk-menu { flex-direction:column; }
  .fdk-menu-item { flex-direction:row; justify-content:flex-start; align-items:center; }
  .fdk-menu > .fdk-menu-item > ul { position:static; box-shadow:none; min-width:0; }
}

.contact-card-mini {
    transition: box-shadow .18s, transform .18s;
    background: #ffffff00;
    border: none;
    min-width: 216px;
    max-width: 320px;
    min-height: 47px;
    font-size: 0.98rem;
    padding: 0px 10px !important;
}

.contact-card-mini:hover {
    background: #ffffff;
}

.contact-icon-mini {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.32rem;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #f2f4f7;
  transition: background .18s, color .18s;
  flex-shrink: 0;
}
.contact-label-mini {
    font-size: .78rem;
    color: #888;
    font-weight: 500;
    margin-bottom: 0px;
    line-height: 1.5;
}
.contact-value-mini {
    font-size: 12px;
    font-weight: bold;
    color: #222;
    letter-spacing: .4px;
    line-height: 1.15;
    word-break: break-all;
}

  /* Genel buton stili */
  .header-action-btn {
    position: relative;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border: 1px solid #f5f4f4;
    border-radius: 34px;
    background-color: #ffffff;
    color: #333;
    font-size: 1.5rem;
    transition: background-color 0.25s, color 0.25s, box-shadow 0.25s;
    margin-left: 12px;
    cursor: pointer;
    text-align: -webkit-center;
    align-content: center;
}

  .header-action-btn:hover,
  .header-action-btn:focus {
    background-color: #ff6f61; /* İstediğin vurgu rengi */
    color: #fff;
    box-shadow: 0 4px 12px rgb(255 111 97 / 0.5);
    text-decoration: none;
  }

  /* Badge stili */
  .header-action-badge {
    position: absolute;
    top: 4px;
    right: 4px;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 18px;
    color: #fff;
    background-color: #dc3545; /* Bootstrap danger */
    border-radius: 9px;
    text-align: center;
    pointer-events: none;
    user-select: none;
    transition: opacity 0.3s ease;
  }

  /* Sayı 0 ise gizle */
  .header-action-badge[data-count="0"] {
    opacity: 1;
    pointer-events: none;
    width: 0;
    padding: 0;
    overflow: hidden;
  }

  /* İkonlar arasında boşluk */
  .header-actions-wrapper {
    display: flex;
    align-items: center;
  }