/* Villa List Page Styles */

/* Main Layout */
.villa-list__main {
  min-height: 100vh;
  background: #f8fafc;
}

/* Professional Header Design - Match tour-detail */
.villa-list--header {
  background: 
    linear-gradient(135deg, rgba(248, 250, 252, 0.95) 0%, rgba(226, 232, 240, 0.65) 50%, rgba(241, 245, 249, 0.95) 100%),
    url('https://images.unsplash.com/photo-1506905925346-21bda4d32df4?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  border-bottom: 1px solid #e2e8f0;
  padding: 40px 0;
  position: relative;
  overflow: hidden;
}
.villa-list--header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 80%, rgba(59, 130, 246, 0.12) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(99, 102, 241, 0.12) 0%, transparent 50%),
    radial-gradient(circle at 40% 40%, rgba(139, 92, 246, 0.08) 0%, transparent 50%);
  pointer-events: none;
}
.villa-list--header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #3b82f6 0%, #6366f1 50%, #8b5cf6 100%);
}
.villa-list--header-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 32px;
}
.villa-list--header-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 32px;
}
.villa-list--header-left {
  flex: 1;
}
.villa-list--header-right {
  flex-shrink: 0;
}
.villa-list--share-buttons {
  display: flex;
  gap: 8px;
  align-items: center;
}
.villa-list--share-btn {
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 16px;
  color: #ffffff;
  position: relative;
}
.villa-list--share-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.villa-list--share-btn:active {
  transform: translateY(0);
}
.villa-list--share-facebook {
  background: #1877f2;
}
.villa-list--share-facebook:hover {
  background: #166fe5;
}
.villa-list--share-twitter {
  background: #1da1f2;
}
.villa-list--share-twitter:hover {
  background: #1a91da;
}
.villa-list--share-whatsapp {
  background: #25d366;
}
.villa-list--share-whatsapp:hover {
  background: #22c55e;
}
.villa-list--share-linkedin {
  background: #0077b5;
}
.villa-list--share-linkedin:hover {
  background: #006097;
}
.villa-list--copy-link {
  background: #6b7280;
}
.villa-list--copy-link:hover {
  background: #4b5563;
}
.villa-list--copy-link.copied {
  background: #10b981;
}
.villa-list--copy-link.copied::after {
  content: 'Kopyalandı!';
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  background: #1f2937;
  color: #ffffff;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 12px;
  white-space: nowrap;
  opacity: 0;
  animation: fadeInOut 2s ease-in-out;
}
@keyframes fadeInOut {
  0%, 100% { opacity: 0; }
  20%, 80% { opacity: 1; }
}
@media (max-width: 968px) {
  .villa-list--header-container {
    padding: 0 12px;
  }
  .villa-list--header-content {
    flex-direction: column;
    gap: 18px;
  }
  .villa-list--header-right {
    margin-top: 12px;
  }
}
@media (max-width: 640px) {
  .villa-list--header {
    padding: 24px 0;
    background-attachment: scroll;
  }
  .villa-list--title {
    font-size: 1.5rem;
  }
  .villa-list--subtitle {
    font-size: 1rem;
  }
  .villa-list--header-content {
    gap: 10px;
  }
  .villa-list--share-btn {
    width: 32px;
    height: 32px;
    font-size: 14px;
  }
}

.villa-list--breadcrumb {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  font-size: 14px;
}

.villa-list--breadcrumb-link {
  color: #6b7280;
  text-decoration: none;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.3s ease;
  padding: 4px 8px;
  border-radius: 6px;
}

.villa-list--breadcrumb-link:hover {
  color: #3b82f6;
  background: #f8fafc;
}

.villa-list--breadcrumb-link i {
  font-size: 12px;
}

.villa-list--breadcrumb-separator {
  color: black;
  font-weight: 400;
  font-size: 14px;
}

.villa-list--breadcrumb-current {
  color: #1f2937;
  font-weight: 600;
}

.villa-list--title {
  font-size: 42px;
  font-weight: 800;
  color: #1f2937;
  margin-bottom: 12px;
  letter-spacing: -0.8px;
  line-height: 1.1;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.villa-list--subtitle {
  font-size: 18px;
  color: #6b7280;
  font-weight: 500;
  margin: 0;
  letter-spacing: 0.2px;
}

/* Results Bar */
.villa-list--results-bar {
  background: #ffffff;
  border-bottom: 1px solid #e5e7eb;
  padding: 20px 0;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.villa-list--results-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 32px;
}

.villa-list--results-info {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  background: #f8fafc;
  padding: 16px 24px;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.villa-list--results-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Active Filters Styles */
.villa-list--active-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.villa-list--active-filter {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #f1f5f9;
  color: #475569;
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 500;
  border: 1px solid #e2e8f0;
}

.villa-list--active-filter i {
  font-size: 12px;
  color: #64748b;
}

.villa-list--filter-remove {
  background: #e2e8f0;
  border: none;
  color: #64748b;
  width: 16px;
  height: 16px;
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 11px;
  font-weight: 600;
  margin-left: 4px;
  transition: all 0.2s ease;
}

.villa-list--filter-remove:hover {
  background: #cbd5e1;
  color: #475569;
}

.villa-list--clear-all-filters {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #f8fafc;
  color: #64748b;
  padding: 4px 12px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 500;
  border: 1px solid #e2e8f0;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
}

.villa-list--clear-all-filters:hover {
  background: #f1f5f9;
  color: #475569;
  border-color: #cbd5e1;
}

.villa-list--clear-all-filters i {
  font-size: 12px;
}

.villa-list--results-count {
  font-size: 16px;
  font-weight: 700;
  color: #374151;
  display: flex;
  align-items: center;
  gap: 10px;
}

.villa-list--results-count::before {
  content: '\f015';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  color: #3b82f6;
  font-size: 16px;
}

/* Content Area */
.villa-list__content {
  padding: 40px 0 80px 0;
}

.villa-list__container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 40px;
}

/* Filters Sidebar */
.villa-list--sidebar {
  grid-row: 1 / span 2;
}

/* Mobile Filter Toggle Button - Only visible on mobile */
.villa-list--filter-toggle {
  display: none; /* Hidden by default on desktop */
  width: 100%;
  padding: 14px 20px;
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  color: #fff;
  border: none;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  margin-bottom: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
  align-items: center;
  justify-content: space-between;
}

.villa-list--filter-toggle:hover {
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(59, 130, 246, 0.4);
}

.villa-list--filter-toggle i {
  font-size: 18px;
  transition: transform 0.3s ease;
}

.villa-list--filter-toggle.active i {
  transform: rotate(180deg);
}

.villa-list--filter-box {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 20px 0 rgba(16,30,54,0.08), 0 1px 3px 0 rgba(16,30,54,0.04);
  border: 1px solid #e2e8f0;
  margin-bottom: 24px;
  position: static; /* Remove sticky behavior */
  transition: all 0.3s ease;
  max-height: 110vh;
  display: flex;
  flex-direction: column;
}

/* Fixed header */
.villa-list--filter-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 20px;
  font-weight: 700;
  color: #1a1a2e;
  letter-spacing: -0.3px;
  padding: 24px 20px 16px 20px;
  border-bottom: 2px solid #f1f5f9;
  flex-shrink: 0;
}

.villa-list--filter-title {
  display: flex;
  align-items: center;
  gap: 10px;
}

.villa-list--filter-title i {
  color: #3b82f6;
  font-size: 18px;
}

.villa-list--scroll-hint {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  font-weight: 500;
  color: #64748b;
  background: #f1f5f9;
  padding: 4px 8px;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
}

.villa-list--scroll-hint i {
  font-size: 10px;
  color: #94a3b8;
  animation: scrollBounce 2s infinite;
}

@keyframes scrollBounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-3px);
  }
  60% {
    transform: translateY(-1px);
  }
}

/* Scrollable content area */
.villa-list--filter-content {
  flex: 1;
  overflow-y: auto;
  padding: 16px 20px;
}

/* Custom scrollbar for filter content */
.villa-list--filter-content::-webkit-scrollbar {
  width: 8px;
}

.villa-list--filter-content::-webkit-scrollbar-track {
  background: #f1f5f9;
  border-radius: 4px;
}

.villa-list--filter-content::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 4px;
  transition: background 0.3s ease;
}

.villa-list--filter-content::-webkit-scrollbar-thumb:hover {
  background: #94a3b8;
}

/* Firefox scrollbar */
.villa-list--filter-content {
  scrollbar-width: thin;
  scrollbar-color: #cbd5e1 #f1f5f9;
}

/* Fixed buttons at bottom */
.villa-list--filter-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 16px 20px 20px 20px;
  border-top: 2px solid #f1f5f9;
  flex-shrink: 0;
}

.villa-list--filters {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.villa-list--filter-group {
  margin-bottom: 0;
  padding: 0;
  border: none;
}

.villa-list--filter-card {
  background: #f8fafc;
  border-radius: 12px;
  box-shadow: 0 1px 3px 0 rgba(16,30,54,0.02);
  padding: 16px 14px 12px 14px;
  margin-bottom: 0;
  border: 1px solid #e2e8f0;
  transition: all 0.2s ease;
}

.villa-list--filter-card:hover {
  background: #f1f5f9;
  border-color: #cbd5e1;
}

.villa-list--filter-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: #1a1a2e;
  margin-bottom: 10px;
}

.villa-list--filter-label i {
  color: #3b82f6;
  font-size: 14px;
  width: 16px;
  text-align: center;
}

.villa-list--search-box {
  position: relative;
}

.villa-list--search-input {
  width: 100%;
  padding: 10px 14px 10px 36px;
  border: 1.5px solid #d1d5db;
  border-radius: 8px;
  font-size: 14px;
  background: #fff;
  transition: all 0.2s ease;
}

.villa-list--search-input:focus {
  border-color: #3b82f6;
  outline: none;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.villa-list--search-icon {
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  color: #9ca3af;
  font-size: 14px;
}

/* Number Input Styles */
.villa-list--input-box {
  position: relative;
}

.villa-list--number-input {
  width: 100%;
  padding: 10px 14px 10px 36px;
  border: 1.5px solid #d1d5db;
  border-radius: 8px;
  font-size: 14px;
  background: #fff;
  transition: all 0.2s ease;
}

.villa-list--number-input:focus {
  border-color: #3b82f6;
  outline: none;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.villa-list--input-icon {
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  color: #9ca3af;
  font-size: 14px;
}

.villa-list--checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.villa-list--checkbox {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  padding: 6px 8px;
  border-radius: 6px;
  transition: background 0.2s ease;
  user-select: none;
}

.villa-list--checkbox:hover {
  background: #e0e7ef;
}

.villa-list--checkbox input[type="checkbox"] {
  display: none;
}

.villa-list--checkbox-mark {
  width: 16px;
  height: 16px;
  border: 2px solid #b6c2d6;
  border-radius: 4px;
  background: #fff;
  position: relative;
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.villa-list--checkbox input[type="checkbox"]:checked + .villa-list--checkbox-mark {
  background: #3b82f6;
  border-color: #3b82f6;
}

.villa-list--checkbox input[type="checkbox"]:checked + .villa-list--checkbox-mark::after {
  content: '';
  position: absolute;
  left: 4px;
  top: 1px;
  width: 3px;
  height: 7px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.villa-list--checkbox-text {
  font-size: 13px;
  color: #1a1a2e;
  font-weight: 500;
}

.villa-list--checkbox-text i {
  margin-right: 6px;
  color: #3b82f6;
}

/* Apply Filter Button */
.villa-list--filter-apply {
  width: 100%;
  padding: 14px 0;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: #ffffff;
  border: none;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(16, 185, 129, 0.25);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
  overflow: hidden;
}

.villa-list--filter-apply::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.villa-list--filter-apply:hover::before {
  left: 100%;
}

.villa-list--filter-apply:hover {
  background: linear-gradient(135deg, #059669 0%, #047857 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(16, 185, 129, 0.35);
}

.villa-list--filter-apply:active {
  transform: translateY(0);
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.villa-list--filter-apply i {
  font-size: 16px;
  transition: transform 0.3s ease;
}

.villa-list--filter-apply:hover i {
  transform: scale(1.1);
}

/* Reset Filter Button */
.villa-list--filter-reset {
  width: 100%;
  padding: 12px 0;
  background: linear-gradient(135deg, #6b7280 0%, #4b5563 100%);
  color: #ffffff;
  border: none;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(107, 114, 128, 0.2);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  position: relative;
  overflow: hidden;
}

.villa-list--filter-reset::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
  transition: left 0.4s;
}

.villa-list--filter-reset:hover::before {
  left: 100%;
}

.villa-list--filter-reset:hover {
  background: linear-gradient(135deg, #4b5563 0%, #374151 100%);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(107, 114, 128, 0.3);
}

.villa-list--filter-reset:active {
  transform: translateY(0);
  box-shadow: 0 2px 6px rgba(107, 114, 128, 0.25);
}

.villa-list--filter-reset i {
  font-size: 14px;
  transition: transform 0.3s ease;
}

.villa-list--filter-reset:hover i {
  transform: rotate(180deg);
}

/* Villa Results */
.villa-list__results {
  display: flex;
  flex-direction: column;
}

.villa-list__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 32px;
  margin-bottom: 48px;
}

/* No Results Found Styles */
.villa-list--no-results {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 40px;
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid #e2e8f0;
  min-height: 500px;
}

.villa-list--no-results-icon {
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 32px;
  position: relative;
}

.villa-list--no-results-icon::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: linear-gradient(135deg, #3b82f6 0%, #6366f1 100%);
  opacity: 0.1;
  animation: pulse 2s infinite;
}

.villa-list--no-results-icon i {
  font-size: 48px;
  color: #64748b;
  z-index: 1;
}

.villa-list--no-results-title {
  font-size: 28px;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 16px;
  line-height: 1.3;
}

.villa-list--no-results-description {
  font-size: 16px;
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 32px;
  max-width: 500px;
}

.villa-list--no-results-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.villa-list--clear-filters-btn,
.villa-list--view-all-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  min-width: 180px;
  justify-content: center;
}

.villa-list--clear-filters-btn {
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.villa-list--clear-filters-btn:hover {
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(59, 130, 246, 0.4);
}

.villa-list--view-all-btn {
  background: #ffffff;
  color: #64748b;
  border: 2px solid #e2e8f0;
}

.villa-list--view-all-btn:hover {
  background: #f8fafc;
  color: #374151;
  border-color: #cbd5e1;
  transform: translateY(-1px);
}

.villa-list--clear-filters-btn i,
.villa-list--view-all-btn i {
  font-size: 14px;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.1;
  }
  50% {
    transform: scale(1.05);
    opacity: 0.2;
  }
}

/* RESPONSIVE DESIGN */
@media (max-width: 1200px) {
  .villa-list__container {
    grid-template-columns: 280px 1fr;
    gap: 32px;
  }
  
  .villa-list__grid {
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 24px;
  }
}

@media (max-width: 968px) {
  .villa-list--filter-toggle {
    display: flex; /* Show toggle button only on mobile */
  }
  
  .villa-list--filter-box {
    position: static;
    top: unset;
    margin-bottom: 20px;
    display: none;
    animation: slideDown 0.3s ease-out;
    max-height: 70vh; /* Mobile için daha küçük */
  }
  
  .villa-list--filter-box.active {
    display: flex; /* Flexbox yapısını koru */
  }
  
  .villa-list__container {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .villa-list__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .villa-list--header-container {
    padding: 0 24px;
  }
  
  .villa-list--results-container {
    padding: 0 24px;
  }
  
  .villa-list--results-info {
    flex-direction: column;
    gap: 16px;
    align-items: stretch;
  }
  
  .villa-list__container {
    padding: 0 24px;
  }
  
  .villa-list--filter-header {
    font-size: 18px;
    padding: 20px 16px 14px 16px;
  }
  
  .villa-list--filter-content {
    padding: 14px 16px;
  }
  
  .villa-list--filter-buttons {
    padding: 14px 16px 16px 16px;
  }
  
  .villa-list--filters {
    gap: 14px;
  }
  
  .villa-list--filter-card {
    padding: 14px 12px 10px 12px;
  }
}

@media (max-width: 640px) {
  .villa-list--header {
    padding: 32px 0;
  }
  
  .villa-list--title {
    font-size: 32px;
  }
  
  .villa-list--subtitle {
    font-size: 16px;
  }
  
  .villa-list--breadcrumb {
    margin-bottom: 20px;
  }
  
  .villa-list--results-bar {
    padding: 16px 0;
  }
  
  .villa-list--results-info {
    padding: 14px 16px;
    gap: 12px;
  }
  
  .villa-list--results-count {
    font-size: 15px;
  }
  
  .villa-list--header-container {
    padding: 0 16px;
  }
  
  .villa-list--results-container {
    padding: 0 16px;
  }
  
  .villa-list__container {
    padding: 0 16px;
  }
  
  .villa-list--filter-toggle {
    padding: 12px 16px;
    font-size: 15px;
  }
  
  .villa-list--filter-box {
    max-height: 65vh; /* Küçük ekranlar için daha da küçük */
  }
  
  .villa-list--filter-header {
    font-size: 16px;
    padding: 16px 12px 12px 12px;
  }
  
  .villa-list--filter-content {
    padding: 12px 12px;
  }
  
  .villa-list--filter-buttons {
    padding: 12px 12px 14px 12px;
  }
  
  .villa-list--filter-card {
    padding: 12px 10px 8px 10px;
  }
  
  .villa-list--filter-label {
    font-size: 13px;
  }
  
  .villa-list--filter-apply {
    padding: 12px 0;
    font-size: 14px;
  }
  
  .villa-list--filter-reset {
    font-size: 13px;
    padding: 10px 0;
  }
  
  /* No Results Mobile */
  .villa-list--no-results {
    padding: 60px 24px;
    margin: 20px 0;
    min-height: 400px;
  }
  
  .villa-list--no-results-icon {
    width: 100px;
    height: 100px;
    margin-bottom: 24px;
  }
  
  .villa-list--no-results-icon i {
    font-size: 40px;
  }
  
  .villa-list--no-results-title {
    font-size: 24px;
    margin-bottom: 12px;
  }
  
  .villa-list--no-results-description {
    font-size: 15px;
    margin-bottom: 24px;
  }
  
  .villa-list--no-results-actions {
    flex-direction: column;
    gap: 12px;
  }
  
  .villa-list--clear-filters-btn,
  .villa-list--view-all-btn {
    min-width: 100%;
    padding: 14px 20px;
  }
}

@media (max-width: 480px) {
  .villa-list--no-results {
    padding: 40px 16px;
  }
  
  .villa-list--no-results-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
  }
  
  .villa-list--no-results-icon i {
    font-size: 32px;
  }
  
  .villa-list--no-results-title {
    font-size: 20px;
  }
  
  .villa-list--no-results-description {
    font-size: 14px;
  }
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Animation for smooth loading */
.villa-list--filter-box,
.villa-list__results {
  animation: fadeInUp 0.6s ease-out;
}

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

/* Focus states for accessibility */
.villa-list--filter-apply:focus,
.villa-list--filter-reset:focus {
  outline: 2px solid #3b82f6;
  outline-offset: 2px;
}
