/**
 * Turlar Arsiv Sayfasi CSS
 * Modern filtreleme + grid layout
 */

/* Breadcrumb CSS - components/breadcrumb.css'de */

/* ============================================
   LAYOUT
   ============================================ */
.tours-archive-wrapper {
  padding: 50px 0;
  background: #f8fafc;
}

.tours-archive-container {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 40px;
}

/* ============================================
   SIDEBAR FILTRELEME - Yenilenmis
   ============================================ */
.tours-filter-sidebar .sidebar__inner {
  background: linear-gradient(135deg, #f8fafc, #ffffff);
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 25px 20px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.filter-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 2px solid #bae6fd;
}

.filter-header h3 {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 700;
  color: #0891b2;
  display: flex;
  align-items: center;
  gap: 8px;
}

.filter-header h3 i {
  color: #1ca8cb;
  font-size: 1.1rem;
}

.clear-filters {
  background: none;
  border: none;
  color: #64748b;
  font-size: 0.85rem;
  cursor: pointer;
  text-decoration: none;
  font-weight: 600;
}

.clear-filters:hover {
  color: #1ca8cb;
}

.filter-section {
  margin-bottom: 30px;
}

.filter-section h4 {
  margin: 0 0 15px 0;
  font-size: 0.8rem;
  font-weight: 700;
  color: #475569;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Badge Filter Buttons */
.badge-filter-buttons {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 10px;
}

.badge-filter-btn {
  background: white;
  border: 2px solid #e2e8f0;
  border-radius: 8px;
  padding: 12px 15px;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 0.9rem;
  color: #475569;
}

.badge-filter-btn:hover {
  background: #f8fafc;
  border-color: #cbd5e1;
}

.badge-filter-btn.active {
  background: #e0f2fe;
  border-color: #1ca8cb;
  color: #0891b2;
  box-shadow: 0 2px 8px rgba(28, 168, 203, 0.2);
}

.badge-filter-btn i {
  color: #94a3b8;
  font-size: 1rem;
}

.badge-filter-btn.active i {
  color: #1ca8cb;
}

/* Kategori Checkboxlar */
.category-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.category-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s;
  background: white;
}

.category-item:hover {
  background: #f8fafc;
}

.category-item:has(input:checked) {
  background: linear-gradient(135deg, #1ca8cb, #0891b2);
}

.category-item input[type="checkbox"] {
  display: none;
}

.category-item span {
  flex: 1;
  font-size: 0.9rem;
  color: #475569;
  font-weight: 500;
  transition: color 0.3s;
}

.category-item:has(input:checked) span {
  color: white;
  font-weight: 600;
}

/* Range Sliders */
.range-slider-container,
.price-range-container {
  padding: 10px 0;
}

.range-slider {
  width: 100%;
  height: 4px;
  border-radius: 2px;
  background: #e2e8f0;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}

.range-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1ca8cb, #0891b2);
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(28, 168, 203, 0.4);
}

.range-slider::-moz-range-thumb {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1ca8cb, #0891b2);
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(28, 168, 203, 0.4);
  border: none;
}

.range-values {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  font-size: 0.8rem;
  color: #64748b;
}

#price-display,
#days-display {
  color: #1ca8cb;
  font-weight: 700;
  font-size: 0.9rem;
}

.apply-filters-btn {
  width: 100%;
  background: linear-gradient(135deg, #1ca8cb, #0891b2);
  color: white;
  border: none;
  padding: 14px 20px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.3s;
  box-shadow: 0 4px 15px rgba(28, 168, 203, 0.35);
  margin-top: 10px;
}

.apply-filters-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(28, 168, 203, 0.45);
}

/* ============================================
   UST BAR (Arama + Siralama)
   ============================================ */
.tours-top-bar {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
  background: white;
  padding: 20px 25px;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.search-section {
  flex: 1;
}

.search-input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.search-input-wrapper i {
  position: absolute;
  left: 15px;
  color: #94a3b8;
  font-size: 1rem;
}

.tour-search-input {
  width: 100%;
  padding: 12px 12px 12px 45px;
  border: 2px solid #e2e8f0;
  border-radius: 8px;
  font-size: 14px;
  transition: all 0.3s;
}

.tour-search-input:focus {
  outline: none;
  border-color: #1ca8cb;
  box-shadow: 0 0 0 3px rgba(28, 168, 203, 0.1);
}

.sort-select {
  padding: 12px 40px 12px 15px;
  border: 2px solid #e2e8f0;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  color: #475569;
  background: white;
  cursor: pointer;
  transition: all 0.3s;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2364748b' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
}

.sort-select:focus {
  outline: none;
  border-color: #1ca8cb;
}

.result-count {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #64748b;
  white-space: nowrap;
}

.result-count i {
  color: #1ca8cb;
}

.result-count strong {
  color: #1ca8cb;
  font-size: 16px;
}

/* View Toggle */
.view-toggle {
  display: flex;
  gap: 5px;
  background: #f8fafc;
  padding: 4px;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
}

.view-btn {
  width: 38px;
  height: 38px;
  background: transparent;
  border: none;
  border-radius: 6px;
  color: #64748b;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.view-btn:hover {
  color: #1ca8cb;
  background: #e0f2fe;
}

.view-btn.active {
  background: linear-gradient(135deg, #1ca8cb, #0891b2);
  color: white;
  box-shadow: 0 2px 8px rgba(28, 168, 203, 0.3);
}

/* ============================================
   TUR GRID (2 Sutun - Varsayilan)
   ============================================ */
.tours-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  transition: opacity 0.3s ease;
  min-height: 400px;
}

.tour-card {
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
  position: relative;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.tour-card:hover {
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
  transform: translateY(-8px);
  border-color: #cbd5e1;
}

.tour-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  padding: 7px 16px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  color: white;
  z-index: 10;
  letter-spacing: 0.5px;
}

.badge-kampanya {
  background: linear-gradient(135deg, #f59e0b, #ea580c);
  box-shadow: 0 3px 12px rgba(245, 158, 11, 0.5);
}

.badge-onerilen {
  background: linear-gradient(135deg, #06b6d4, #0891b2);
  box-shadow: 0 3px 12px rgba(6, 182, 212, 0.5);
}

.badge-ozel {
  background: linear-gradient(135deg, #8b5cf6, #7c3aed);
  box-shadow: 0 3px 12px rgba(139, 92, 246, 0.5);
}

.badge-featured {
  background: linear-gradient(135deg, #10b981, #059669);
  box-shadow: 0 3px 12px rgba(16, 185, 129, 0.5);
}

.tour-card-image {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.tour-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.tour-card:hover .tour-card-image img {
  transform: scale(1.1);
}

.wishlist-btn {
  position: absolute;
  top: 15px;
  left: 15px;
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.95);
  border: none;
  border-radius: 50%;
  color: #ef4444;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  z-index: 10;
}

.wishlist-btn:hover {
  background: white;
  transform: scale(1.1);
}

.tour-location-badge {
  position: absolute;
  bottom: 15px;
  left: 15px;
  background: rgba(255,255,255,0.95);
  color: #475569;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
  z-index: 10;
}

.tour-location-badge i {
  color: #1ca8cb;
  font-size: 0.9rem;
}

.tour-card-body {
  padding: 20px;
}

.tour-card-header {
  margin-bottom: 12px;
}

.tour-card-title {
  margin: 0 0 8px 0;
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.4;
}

.tour-card-title a {
  color: #1e293b;
  text-decoration: none;
  transition: color 0.3s;
}

.tour-card-title a:hover {
  color: #1ca8cb;
}

.tour-card-subtitle {
  color: #64748b;
  font-size: 0.85rem;
  margin: 6px 0 0 0;
  font-weight: 500;
}

.tour-excerpt {
  color: #64748b;
  font-size: 0.9rem;
  line-height: 1.7;
  margin: 15px 0;
  min-height: 45px;
}

/* Card Footer */
.tour-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 15px;
  border-top: 1px solid #f1f5f9;
}

.tour-duration-info {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #64748b;
  font-size: 0.9rem;
}

.tour-duration-info i {
  color: #1ca8cb;
}

.tour-price-section {
  display: flex;
  align-items: center;
  gap: 15px;
}

.tour-price-display {
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.price-symbol {
  font-size: 1rem;
  font-weight: 700;
  color: #0891b2;
}

.price-amount {
  font-size: 1.5rem;
  font-weight: 800;
  color: #0891b2;
}

.tour-details-btn {
  background: linear-gradient(135deg, #1ca8cb, #0891b2);
  color: white;
  padding: 11px 22px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(28, 168, 203, 0.35);
}

.tour-details-btn:hover {
  transform: translateX(5px);
  box-shadow: 0 6px 22px rgba(28, 168, 203, 0.5);
  gap: 14px;
}

.tour-details-btn i {
  transition: transform 0.3s ease;
}

.tour-details-btn:hover i {
  transform: translateX(3px);
}

/* Tur Kart Swiper */
.tour-image-swiper {
  width: 100%;
  height: 100%;
}

.tour-image-swiper .swiper-slide {
  width: 100%;
  height: 100%;
}

.tour-image-swiper .swiper-slide a {
  display: block;
  width: 100%;
  height: 100%;
}

.tour-image-swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tour-image-swiper .swiper-pagination {
  bottom: 10px;
}

.tour-image-swiper .swiper-pagination-bullet {
  background: white;
  opacity: 0.7;
  width: 8px;
  height: 8px;
}

.tour-image-swiper .swiper-pagination-bullet-active {
  background: #1ca8cb;
  opacity: 1;
}

/* ============================================
   LISTE GORUNUMU - 275px Foto
   ============================================ */
.tours-grid.list-view {
  grid-template-columns: 1fr;
}

.tours-grid.list-view .tour-card {
  display: flex;
  flex-direction: row;
  height: auto;
}

.tours-grid.list-view .tour-card-image {
  width: 450px;
  min-width: 450px;
  height: 100%;
  align-self: stretch;
}

.tours-grid.list-view .tour-image-swiper {
  height: 100%;
}

.tours-grid.list-view .tour-image-swiper .swiper-slide img {
  height: 100%;
  object-fit: cover;
}

.tours-grid.list-view .tour-card-body {
  padding: 20px 25px;
  display: flex;
  flex-direction: column;
  flex: 1;
  justify-content: space-between;
}

/* Liste gorunumunde siralama */
.tours-grid.list-view .tour-card-header {
  order: 1;
  margin-bottom: 12px;
}

.tours-grid.list-view .tour-card-footer {
  order: 2;
  margin: 12px 0;
  padding: 12px 0;
  border-top: 1px solid #f1f5f9;
  border-bottom: 1px solid #f1f5f9;
}

.tours-grid.list-view .tour-excerpt {
  order: 3;
  margin: 0;
  font-size: 0.85rem;
  line-height: 1.6;
}

.tours-grid.list-view .tour-card-title {
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.tours-grid.list-view .tour-card-subtitle {
  font-size: 0.8rem;
}

/* ============================================
   PAGINATION
   ============================================ */
.tours-pagination {
  margin-top: 50px;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.tours-pagination .page-numbers {
  padding: 10px 16px;
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  color: #475569;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s;
}

.tours-pagination .page-numbers:hover,
.tours-pagination .page-numbers.current {
  background: linear-gradient(135deg, #1ca8cb, #0891b2);
  color: white;
  border-color: #1ca8cb;
}

/* ============================================
   BOS DURUM
   ============================================ */
.no-tours-found {
  text-align: center;
  padding: 80px 40px;
  background: white;
  border: 2px dashed #e2e8f0;
  border-radius: 12px;
}

.no-tours-found i {
  font-size: 4rem;
  color: #cbd5e1;
  margin-bottom: 20px;
}

.no-tours-found h3 {
  margin: 0 0 10px 0;
  color: #1e293b;
}

.no-tours-found p {
  margin: 0;
  color: #64748b;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1200px) {
  .tours-archive-container {
    grid-template-columns: 260px 1fr;
    gap: 30px;
  }
  
  .tours-grid {
    gap: 20px;
  }
}

@media (max-width: 992px) {
  .tours-archive-container {
    grid-template-columns: 1fr;
  }
  
  .tours-filter-sidebar {
    position: static;
  }
  
  .tours-grid {
    grid-template-columns: 1fr;
  }
  
  .tours-top-bar {
    flex-direction: column;
    align-items: stretch;
  }
}

@media (max-width: 768px) {
  .page-title {
    font-size: 1.8rem !important;
  }
  
  .tour-card-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
  
  .includes-list {
    grid-template-columns: 1fr;
  }
  
  /* Touch-friendly elements */
  .badge-filter-btn,
  .category-item {
    min-height: 44px;
    touch-action: manipulation;
  }
  
  .tour-details-btn {
    min-height: 48px;
    width: 100%;
    justify-content: center;
  }
}

/* Mobile specific - 576px */
@media (max-width: 576px) {
  .tours-archive-wrapper {
    padding: 30px 0;
  }
  
  .tours-top-bar {
    padding: 15px 18px;
    gap: 15px;
  }
  
  .tour-search-input {
    padding: 10px 10px 10px 40px;
    font-size: 14px;
  }
  
  .search-input-wrapper i {
    left: 12px;
  }
  
  .sort-select {
    padding: 10px 35px 10px 12px;
    font-size: 13px;
  }
  
  .result-count {
    font-size: 13px;
  }
  
  .tours-grid {
    gap: 20px;
  }
  
  .tour-card {
    border-radius: 10px;
  }
  
  .tour-card-image {
    height: 220px;
  }
  
  .tour-card-body {
    padding: 16px;
  }
  
  .tour-card-title {
    font-size: 1rem;
    margin-bottom: 10px;
  }
  
  .tour-card-subtitle {
    font-size: 0.8rem;
  }
  
  .tour-excerpt {
    font-size: 0.85rem;
    line-height: 1.6;
    margin: 12px 0;
    min-height: 40px;
  }
  
  .tour-duration-info {
    font-size: 0.85rem;
  }
  
  .price-amount {
    font-size: 1.3rem;
  }
  
  .tour-details-btn {
    padding: 10px 18px;
    font-size: 0.85rem;
  }
  
  /* Sidebar filters mobile */
  .tours-filter-sidebar .sidebar__inner {
    padding: 20px 16px;
  }
  
  .filter-header h3 {
    font-size: 1rem;
  }
  
  .filter-section h4 {
    font-size: 0.75rem;
  }
  
  .badge-filter-btn {
    padding: 10px 12px;
    font-size: 0.85rem;
  }
  
  .category-item span {
    font-size: 0.85rem;
  }
  
  .apply-filters-btn {
    padding: 12px 18px;
    font-size: 0.9rem;
  }
  
  /* Pagination */
  .tours-pagination {
    margin-top: 35px;
  }
  
  .tours-pagination .page-numbers {
    padding: 8px 12px;
    font-size: 0.85rem;
  }
}

/* Extra small devices - 375px */
@media (max-width: 375px) {
  .tours-archive-wrapper {
    padding: 25px 0;
  }
  
  .tours-top-bar {
    padding: 12px 15px;
  }
  
  .tour-card-image {
    height: 200px;
  }
  
  .tour-card-body {
    padding: 14px;
  }
  
  .tour-card-title {
    font-size: 0.95rem;
  }
  
  .tour-excerpt {
    font-size: 0.8rem;
    min-height: 36px;
  }
  
  .price-amount {
    font-size: 1.2rem;
  }
  
  .tour-details-btn {
    padding: 9px 16px;
    font-size: 0.8rem;
  }
  
  .tours-filter-sidebar .sidebar__inner {
    padding: 18px 14px;
  }
  
  .badge-filter-btn {
    padding: 9px 10px;
    font-size: 0.8rem;
  }
}

/* ============================================
   MOBIL FILTRE BOTTOM SHEET
   ============================================ */
.mobile-filter-sheet {
  display: none;
}

@media (max-width: 768px) {
  /* Desktop sidebar'i gizle */
  .tours-filter-sidebar {
    display: none !important;
  }
  
  /* Mobile filter sheet goster */
  .mobile-filter-sheet {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    border-radius: 20px 20px 0 0;
    box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    transform: translateY(calc(100% - 55px));
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }
  
  .mobile-filter-sheet.expanded {
    transform: translateY(0);
  }
  
  .mobile-filter-sheet-peek {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 12px 20px 15px;
    cursor: pointer;
  }
  
  .mobile-filter-sheet-peek .sheet-handle {
    width: 40px;
    height: 4px;
    background: #ddd;
    border-radius: 2px;
    margin-bottom: 10px;
  }
  
  .sheet-peek-text {
    font-size: 14px;
    font-weight: 600;
    color: #1ca8cb;
  }
  
  .sheet-peek-text i {
    margin-right: 8px;
  }
  
  .mobile-filter-sheet-content {
    padding: 0 20px 30px;
    max-height: 70vh;
    overflow-y: auto;
  }
  
  .mobile-filter-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
    margin-bottom: 15px;
  }
  
  .mobile-filter-header h3 {
    margin: 0;
    font-size: 18px;
    color: #333;
  }
  
  .mobile-filter-header h3 i {
    color: #1ca8cb;
    margin-right: 8px;
  }
  
  .mobile-filter-close {
    background: #f5f5f5;
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 16px;
    color: #666;
  }
  
  .mobile-filter-section {
    margin-bottom: 20px;
  }
  
  .mobile-filter-section h4 {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin: 0 0 12px 0;
  }
  
  /* Kategori Chips */
  .mobile-category-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
  }
  
  .mobile-category-chip {
    display: inline-flex;
    align-items: center;
    padding: 8px 14px;
    background: #f5f5f5;
    border: 1px solid #e0e0e0;
    border-radius: 20px;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.2s;
  }
  
  .mobile-category-chip input {
    display: none;
  }
  
  .mobile-category-chip.active,
  .mobile-category-chip:has(input:checked) {
    background: #1ca8cb;
    color: white;
    border-color: #1ca8cb;
  }
  
  /* Badge Buttons */
  .mobile-badge-buttons {
    display: flex;
    gap: 8px;
  }
  
  .mobile-badge-btn {
    flex: 1;
    padding: 10px 8px;
    background: #f5f5f5;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
  }
  
  .mobile-badge-btn i {
    display: block;
    font-size: 16px;
    margin-bottom: 4px;
  }
  
  .mobile-badge-btn.active {
    background: #1ca8cb;
    color: white;
    border-color: #1ca8cb;
  }
  
  .mobile-badge-btn[data-badge="kampanya"].active {
    background: #ef4444;
    border-color: #ef4444;
  }
  
  .mobile-badge-btn[data-badge="onerilen"].active {
    background: #f59e0b;
    border-color: #f59e0b;
  }
  
  .mobile-badge-btn[data-badge="ozel"].active {
    background: #8b5cf6;
    border-color: #8b5cf6;
  }
  
  /* Range Slider */
  .mobile-range-slider {
    width: 100%;
    height: 6px;
    border-radius: 3px;
    background: #e0e0e0;
    outline: none;
    -webkit-appearance: none;
    appearance: none;
  }
  
  .mobile-range-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #1ca8cb;
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(28, 168, 203, 0.4);
  }
  
  /* Actions */
  .mobile-filter-actions {
    display: flex;
    gap: 10px;
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid #eee;
  }
  
  .mobile-clear-btn {
    flex: 1;
    padding: 12px;
    background: #f5f5f5;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    color: #666;
  }
  
  .mobile-apply-btn {
    flex: 2;
    padding: 12px;
    background: #1ca8cb;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    color: white;
    cursor: pointer;
  }
  
  .mobile-apply-btn:hover {
    background: #178ea8;
  }
  
  /* Tours container tek sutun */
  .tours-archive-container {
    grid-template-columns: 1fr !important;
  }
  
  /* View toggle mobilde gizle */
  .view-toggle {
    display: none !important;
  }
}

/* ============================================
   FİYAT İÇİN ARAYIN (Arşiv Kartı)
   ============================================ */
.tour-price-call-us {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: linear-gradient(135deg, #f0fdfa 0%, #ccfbf1 100%);
  border-radius: 8px;
  border: 1px dashed #0891b2;
}

.tour-price-call-us i {
  font-size: 16px;
  color: #0891b2;
}

.tour-price-call-us span {
  font-size: 14px;
  font-weight: 600;
  color: #0f766e;
}

