@media (max-width:768px){
.col-xs-9{
margin-left:50px;
}
.img-thumbnail {
    display: inline-block;
    width: 90px;
    height: auto;
    padding: 2px;
    line-height: 1.42857143;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    -webkit-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;

}
} 
.halilliste{
display:none;
}
@media (max-width:768px){
.halilliste{
display:block;
}
} 
.form-group {
margin-bottom: 0px !important;
}


.modulitem-btn-group {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.modulitem-btn {
    background: #fff;
    border: 1px solid #ddd;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    color: #333;
    text-decoration: none !important;
    transition: 0.2s;
}

.modulitem-btn i {
    font-size: 15px;
    color: #d00;
}

.modulitem-btn:hover {
    background: #f7f7f7;
}

.modulitem-btn.active {
    border-color: #d00;
    background: #fff4f4;
    color: #d00;
}
.filter-checklist{
  display:flex;
  flex-direction:column;
  gap:8px;
  padding:6px 0;
  max-height: 170px;     /* ihtiyaca göre 180/220/260 yap */
  overflow-y: auto;
  padding-right: 6px;    /* scrollbar yazıya yapışmasın */
}
.filter-check{
  display:flex;
  align-items:center;
  gap:10px;
  cursor:pointer;
  user-select:none;
  margin:0;
  font-weight:500;
}
.filter-check input{
  width:16px;
  height:16px;
}
/* daha düzgün görünüm (opsiyonel) */
.filter-checklist::-webkit-scrollbar{
  width: 8px;
}
.filter-checklist::-webkit-scrollbar-thumb{
  background: #cfcfcf;
  border-radius: 10px;
}
.filter-checklist::-webkit-scrollbar-track{
  background: transparent;
}

.view-toggle-wrap {
    display: flex;
    gap: 5px;
    margin-bottom: 7px;
}

.view-btn {
    background: #fff;
    border: 1px solid #ddd;
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    color: #333;
    text-decoration: none !important;
    transition: 0.2s;
}

.view-btn i {
    font-size: 16px;
    color: #191919; /* kırmızı ikon */
}

.view-btn:hover {
    background: #f5f5f5;
}

.view-btn.active {
    border-color: #d00;
    background: #fff4f4;
    color: #d00;
}

.view-btn.active i {
    color: #d00;
}


.order-map-wrap {
    display: flex;
    gap: 10px;
    float: right;
}

.om-btn {
    background: #fff;
    border: 1px solid #ddd;
    padding: 4px 16px;
    border-radius: 6px;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    transition: 0.2s;
}

.om-btn i {
    color: #c00;
    font-size: 16px;
}

.om-btn:hover {
    background: #f5f5f5;
}

/* Dropdown */
.om-dropdown {
    position: relative;
}

.om-menu {
    position: absolute;
    top: 42px;
    right: 0;
    width: 180px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 6px;
    list-style: none;
    padding: 0;
    margin: 0;
    display: none;
    z-index: 999;
}

.om-menu li {
    border-bottom: 1px solid #eee;
}

.om-menu li:last-child {
    border-bottom: none;
}

.om-menu li a {
    display: block;
    padding: 10px 12px;
    color: #333;
    text-decoration: none;
}

.om-menu li a:hover {
    background: #f5f5f5;
}

  #cat-map { height: 400px; width: 100%; border-radius: 8px; }
  .catmap-thumbnail { max-width: 100px; max-height: 100px; margin: 0 auto 10px; display: block; border-radius: 4px; }
  .catmap-info-window { text-align: center; padding: 10px; max-width: 200px; font-family: Arial, sans-serif; }
  .catmap-info-window b { font-size: 16px; font-weight: 700; color: #333; display: block; margin-bottom: 5px; }
  .catmap-info-window .price { font-size: 15px; font-weight: 600; color: #404040; }
  .catmap-info-window a { text-decoration: none; font-size: 14px; }

  .catmap-price-marker {
    background-color: #113998;
    color: #fff;
    padding: 5px 10px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: bold;
    text-align: center;
    white-space: nowrap;
    box-shadow: 0 2px 6px rgba(0,0,0,0.3);
  }

  .leaflet-popup-content-wrapper {
    border-radius: 8px;
    padding: 0;
  }
  .leaflet-popup-content {
    margin: 10px;
    min-width: 180px;
  }
  .leaflet-control-fullscreen-button {
    background: #113998 !important;
    border-radius: 4px !important;
    color: #fff !important;
}


/* COOKIE BANNER */
.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  max-width: 1200px;
  margin: auto;
  background: #1f2937;
  color: #fff;
  border-radius: 14px;
  padding: 18px 22px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.25);
  z-index: 9999;
  display: none;
  animation: slideUp 0.5s ease;
}

.cookie-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.cookie-text p {
  margin: 6px 0 0;
  font-size: 14px;
  color: #d1d5db;
}

.cookie-text a {
  color: #60a5fa;
  text-decoration: underline;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.btn-cookie {
  border: none;
  padding: 10px 16px;
  border-radius: 8px;
  font-size: 14px;
  cursor: pointer;
  transition: all .25s ease;
  white-space: nowrap;
}

.btn-cookie.accept {
  background: #22c55e;
  color: #fff;
}

.btn-cookie.accept:hover {
  background: #16a34a;
}

.btn-cookie.reject {
  background: #374151;
  color: #e5e7eb;
}

.btn-cookie.reject:hover {
  background: #4b5563;
}

.btn-cookie.settings {
  background: #2563eb;
  color: #fff;
}

.btn-cookie.settings:hover {
  background: #1d4ed8;
}

@keyframes slideUp {
  from {
    transform: translateY(30px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* MOBILE */
@media (max-width: 768px) {
  .cookie-content {
    flex-direction: column;
    align-items: flex-start;
  }
  .cookie-actions {
    width: 100%;
    justify-content: flex-end;
  }
}

.sticky {height: %100;}
.stickystay {position: sticky;top: 0px;padding:0px;z-index: 1;}

.stickyfiltre{background-repeat:repeat-x;background-image:-moz-linear-gradient(top,#fdfdfd,#ededed);
background-image:-ms-linear-gradient(top,#fdfdfd,#ededed);background-image:-webkit-gradient(linear,left top,left bottom,color-stop(0%,#fdfdfd),color-stop(100%,#ededed));background-image:-webkit-linear-gradient(top,#fdfdfd,#ededed);background-image:-o-linear-gradient(top,#fdfdfd,#ededed);background-image:linear-gradient(top,#fdfdfd,#ededed);
border-bottom:2px solid #d6d6d6;border-top:1px solid #d6d6d6;left:0;padding:6px;margin:0px}

.stickycategory{height:31px;width:100%;background-repeat:repeat-x;background-image:-moz-linear-gradient(top,#fdfdfd,#ededed);
background-image:-ms-linear-gradient(top,#fdfdfd,#ededed);background-image:-webkit-gradient(linear,left top,left bottom,color-stop(0%,#fdfdfd),color-stop(100%,#ededed));background-image:-webkit-linear-gradient(top,#fdfdfd,#ededed);background-image:-o-linear-gradient(top,#fdfdfd,#ededed);background-image:linear-gradient(top,#fdfdfd,#ededed);
border-bottom:1px solid #d6d6d6;border-top:1px solid #d6d6d6;left:0;}

.listcategoryyaz{max-width: 1200px!important;margin:0 auto;}
.listcategoryyaz ul{margin:auto;overflow:hidden;zoom:1;}
.listcategoryyaz ul:before,.listcategory ul:after{display:table;zoom:1}
.listcategoryyaz ul:after{clear:both}
.listcategoryyaz ul li{float:left;list-style-type:none;padding:3px 12px 0 0;margin:0px 0px 0px 0px}
.listcategoryyaz ul li a{color:#000000;padding-left:10px;background:url('images/img-icons/scripticons.png') 1px -915px no-repeat;font-size:13.5px;
cursor:pointer}

