    /* ========================================
   GLOBAL STYLES & THEME VARIABLES
======================================== */

/* CSS Variables for Theme - Modern Minimal Design */
:root {
  /* Light Theme Colors - Modern Professional Palette */
  --bg-primary: #ffffff;
  --bg-secondary: #f8fafc;
  --bg-tertiary: #f1f5f9;
  --text-primary: #0f172a;
  --text-secondary: #475569;
  --text-muted: #94a3b8;
  --border-color: #e2e8f0;
  --card-bg: #ffffff;
  --card-shadow: rgba(15, 23, 42, 0.08);
  --navbar-bg: #ffffff;
  --footer-bg: #f8fafc;
  --modal-bg: #ffffff;
  --modal-backdrop: rgba(15, 23, 42, 0.4);
  --input-bg: #ffffff;
  --input-border: #e2e8f0;
  --badge-bg: #f1f5f9;
    --hero-gradient-start: #0f172a;
    --hero-gradient-mid: #1e293b;
    --hero-gradient-end: #4338ca;
    --hero-glow-primary: rgba(129, 140, 248, 0.34);
    --hero-glow-secondary: rgba(34, 211, 238, 0.18);
    --hero-noise-opacity: 0.18;
  --primary-color: #6366f1;
  --primary-hover: #4f46e5;
  --secondary-color: #64748b;
  --danger-color: #ef4444;
  --success-color: #22c55e;
  --warning-color: #f59e0b;
  --modal-border: #e2e8f0;
  --label-text: #475569;
  --chip-default: #6366f1;
  --toast-success: #22c55e;
  --toast-error: #ef4444;
  --select-bg: rgba(255, 255, 255, 0.95);
  --select-border: rgba(226, 232, 240, 0.6);
  --rating-color: #632a44;
  --rating-shadow: rgba(245, 158, 11, 0.2);
    --text-inverse: #ffffff;
    --footer-text: #f8fafc;
    --footer-muted: #cbd5e1;
    --footer-gradient-start: #1a202c;
    --footer-gradient-end: #2d3748;
    --footer-divider: rgba(255, 255, 255, 0.1);
    --footer-divider-strong: #4a5568;
    --surface-overlay: rgba(255, 255, 255, 0.95);
    --surface-overlay-border: rgba(255, 255, 255, 0.8);
    --surface-overlay-soft: rgba(255, 255, 255, 0.1);
    --surface-overlay-strong: rgba(255, 255, 255, 0.2);
    --primary-soft: rgba(99, 102, 241, 0.1);
    --primary-ring: rgba(99, 102, 241, 0.25);
    --primary-glow: rgba(99, 102, 241, 0.3);
    --primary-glow-strong: rgba(99, 102, 241, 0.6);
    --warning-soft: rgba(245, 158, 11, 0.16);
    --warning-ring: rgba(245, 158, 11, 0.25);
    --warning-gradient-start: #fbbf24;
    --warning-gradient-end: #f59e0b;
    --danger-soft: rgba(239, 68, 68, 0.1);
    --danger-glow: rgba(239, 68, 68, 0.3);
    --danger-glow-strong: rgba(239, 68, 68, 0.4);
    --danger-gradient-start: #f56565;
    --danger-gradient-end: #e53e3e;
    --danger-gradient-hover-start: #e53e3e;
    --danger-gradient-hover-end: #c53030;
    --success-soft: rgba(34, 197, 94, 0.12);
    --button-gradient-start: var(--primary-color);
    --button-gradient-end: var(--primary-hover);
    --button-gradient: linear-gradient(135deg, var(--button-gradient-start) 0%, var(--button-gradient-end) 100%);
    --avatar-gradient-start: var(--primary-color);
    --avatar-gradient-end: var(--primary-hover);
    --avatar-gradient: linear-gradient(135deg, var(--avatar-gradient-start) 0%, var(--avatar-gradient-end) 100%);
    --chip-business: var(--primary-color);
    --chip-cuisine: var(--secondary-color);
    --chip-facility: var(--success-color);
    --chip-payment: var(--warning-color);
    --chip-price: var(--danger-color);
    --facility-orange: var(--warning-color);
    --bg-hover: var(--bg-tertiary);
    --border-hover: var(--primary-color);
    --scrollbar-thumb: #cbd5e1;
    --scrollbar-thumb-hover: #94a3b8;
    --scrollbar-track: #f8fafc;
    --hero-title-gradient-start: #ffffff;
    --hero-title-gradient-end: #f0f0f0;
    --today-highlight-bg: rgba(34, 197, 94, 0.12);
    --modal-header-surface-start: #1e293b;
    --modal-header-surface-end: #334155;
    --modal-header-purple-accent: #6366f1;
    --modal-header-pink-accent: #db2777;
    --modal-header-orange-accent: #ea580c;
    --modal-header-cyan-accent: #0891b2;
    --modal-header-green-accent: #059669;
  
  /* Subtle shadows for modern look */
  --shadow-sm: 0 1px 2px 0 rgba(15, 23, 42, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(15, 23, 42, 0.08), 0 2px 4px -1px rgba(15, 23, 42, 0.04);
  --shadow-lg: 0 10px 15px -3px rgba(15, 23, 42, 0.08), 0 4px 6px -2px rgba(15, 23, 42, 0.04);
  --shadow-xl: 0 20px 25px -5px rgba(15, 23, 42, 0.08), 0 10px 10px -5px rgba(15, 23, 42, 0.04);
}

/* Dark Theme Colors - Modern Dark Palette */
[data-theme="dark"] {
  --bg-primary: #0f172a;
  --bg-secondary: #1e293b;
  --bg-tertiary: #334155;
  --text-primary: #f1f5f9;
  --text-secondary: #cbd5e1;
  --text-muted: #94a3b8;
  --border-color: #334155;
  --card-bg: #1e293b;
  --card-shadow: rgba(0, 0, 0, 0.3);
  --navbar-bg: #0f172a;
  --footer-bg: #1e293b;
  --modal-bg: #1e293b;
  --modal-backdrop: rgba(0, 0, 0, 0.6);
  --input-bg: #334155;
  --input-border: #475569;
  --badge-bg: #334155;
    --hero-gradient-start: #020617;
    --hero-gradient-mid: #0f172a;
    --hero-gradient-end: #312e81;
    --hero-glow-primary: rgba(129, 140, 248, 0.26);
    --hero-glow-secondary: rgba(34, 211, 238, 0.14);
    --hero-noise-opacity: 0.14;
  --primary-color: #818cf8;
  --primary-hover: #6366f1;
  --secondary-color: #94a3b8;
  --danger-color: #f87171;
  --success-color: #4ade80;
  --warning-color: #fbbf24;
  --modal-border: #334155;
  --label-text: #cbd5e1;
  --chip-default: #818cf8;
  --toast-success: #4ade80;
  --toast-error: #f87171;
  --select-bg: rgba(30, 41, 59, 0.95);
  --select-border: rgba(71, 85, 105, 0.6);
  --rating-color: #fbbf24;
  --rating-shadow: rgba(251, 191, 36, 0.2);
    --text-inverse: #ffffff;
    --footer-text: #f1f5f9;
    --footer-muted: #94a3b8;
    --footer-gradient-start: #0f172a;
    --footer-gradient-end: #1e293b;
    --footer-divider: rgba(255, 255, 255, 0.08);
    --footer-divider-strong: #334155;
    --surface-overlay: rgba(30, 41, 59, 0.95);
    --surface-overlay-border: rgba(71, 85, 105, 0.8);
    --surface-overlay-soft: rgba(255, 255, 255, 0.08);
    --surface-overlay-strong: rgba(255, 255, 255, 0.16);
    --primary-soft: rgba(129, 140, 248, 0.16);
    --primary-ring: rgba(129, 140, 248, 0.25);
    --primary-glow: rgba(129, 140, 248, 0.3);
    --primary-glow-strong: rgba(129, 140, 248, 0.5);
    --warning-soft: rgba(251, 191, 36, 0.18);
    --warning-ring: rgba(251, 191, 36, 0.28);
    --warning-gradient-start: #fcd34d;
    --warning-gradient-end: #fbbf24;
    --danger-soft: rgba(248, 113, 113, 0.12);
    --danger-glow: rgba(248, 113, 113, 0.3);
    --danger-glow-strong: rgba(248, 113, 113, 0.4);
    --danger-gradient-start: #fb7185;
    --danger-gradient-end: #f87171;
    --danger-gradient-hover-start: #f87171;
    --danger-gradient-hover-end: #ef4444;
    --success-soft: rgba(74, 222, 128, 0.16);
    --button-gradient-start: var(--primary-color);
    --button-gradient-end: var(--primary-hover);
    --button-gradient: linear-gradient(135deg, var(--button-gradient-start) 0%, var(--button-gradient-end) 100%);
    --avatar-gradient-start: var(--primary-color);
    --avatar-gradient-end: var(--primary-hover);
    --avatar-gradient: linear-gradient(135deg, var(--avatar-gradient-start) 0%, var(--avatar-gradient-end) 100%);
    --chip-business: var(--primary-color);
    --chip-cuisine: var(--secondary-color);
    --chip-facility: var(--success-color);
    --chip-payment: var(--warning-color);
    --chip-price: var(--danger-color);
    --facility-orange: var(--warning-color);
    --bg-hover: var(--bg-tertiary);
    --border-hover: var(--primary-color);
    --scrollbar-thumb: #475569;
    --scrollbar-thumb-hover: #64748b;
    --scrollbar-track: #1e293b;
    --hero-title-gradient-start: #ffffff;
    --hero-title-gradient-end: #e2e8f0;
    --today-highlight-bg: rgba(74, 222, 128, 0.16);
    --modal-header-surface-start: #0f172a;
    --modal-header-surface-end: #1e293b;
    --modal-header-purple-accent: #818cf8;
    --modal-header-pink-accent: #f472b6;
    --modal-header-orange-accent: #f59e0b;
    --modal-header-cyan-accent: #22d3ee;
    --modal-header-green-accent: #34d399;
  
  /* Dark shadows */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.4), 0 2px 4px -1px rgba(0, 0, 0, 0.3);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.4), 0 4px 6px -2px rgba(0, 0, 0, 0.3);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.4), 0 10px 10px -5px rgba(0, 0, 0, 0.3);
}

/* Page Loader */
#pageLoader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--primary-color);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.5s ease-out;
}

#pageLoader.fade-out {
  opacity: 0;
  pointer-events: none;
}

.loader-spinner {
  width: 60px;
  height: 60px;
  border: 5px solid rgba(255, 255, 255, 0.3);
  border-top: 5px solid #ffffff;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.loader-text {
  color: white;
  font-size: 18px;
  margin-top: 20px;
  font-weight: 500;
  animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

/* ========================================
   SEARCH PAGE (ARA.PHP) STYLES
======================================== */

/* Filter Icon Button */
.filter-icon-btn {
    position: relative;
  background: transparent;
  border: none;
  color: var(--text-secondary);
  cursor: pointer;
    padding: 6px 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
        gap: 6px;
  border-radius: 6px;
  transition: all 0.2s ease;
  z-index: 10;
}

.filter-icon-btn:hover {
  color: var(--primary-color);
  background: var(--bg-secondary);
    transform: scale(1.05);
}

.filter-icon-btn.has-filters {
  color: var(--primary-color);
}

.filter-icon-btn svg {
    flex-shrink: 0;
  transition: transform 0.2s ease;
}

.filter-btn-label {
    font-size: 0.82rem;
    font-weight: 600;
    line-height: 1;
    white-space: nowrap;
}

.filter-icon-btn:hover svg {
  transform: rotate(15deg);
}

.filter-badge {
  position: absolute;
  top: -5px;
  right: -5px;
  background: var(--danger-color);
  color: white;
  border-radius: 50%;
  width: 18px;
  height: 18px;
  font-size: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  animation: badgePop 0.3s ease;
}

@keyframes badgePop {
  0% { transform: scale(0); }
  50% { transform: scale(1.2); }
  100% { transform: scale(1); }
}

/* Active Filters Chips */
.active-filters-chips .filter-chip {
  animation: chipSlideIn 0.3s ease;
  transition: all 0.3s ease;
}

.active-filters-chips .filter-chip:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.active-filters-chips .filter-chip button:hover {
  transform: scale(1.2);
}

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

/* Filter Modal */
#filterModal .modal-content {
  border-radius: 20px;
  border: none;
  box-shadow: 0 10px 40px rgba(0,0,0,0.2);
  background: var(--modal-bg);
  animation: modalSlideUp 0.3s ease;
}

#filterModal .modal-header {
  border-bottom: 2px solid var(--modal-border);
  padding: 20px 30px;
  background: var(--modal-bg);
}

#filterModal .modal-title {
  font-weight: 700;
  color: var(--text-primary);
}

#filterModal .modal-body {
  padding: 30px;
  max-height: 60vh;
  overflow-y: auto;
  background: var(--modal-bg);
}

#filterModal .modal-footer {
  border-top: 2px solid var(--modal-border);
  padding: 20px 30px;
  display: flex;
  gap: 10px;
  background: var(--modal-bg);
}

#filterModal .form-label {
  font-weight: 600;
  color: var(--label-text);
  margin-bottom: 12px;
  display: block;
}

#filterModal .btn-apply {
  border-radius: 10px;
  padding: 10px 30px;
  font-weight: 600;
  background: linear-gradient(135deg, var(--button-gradient-start) 0%, var(--button-gradient-end) 100%);
  border: none;
  color: white;
}

#filterModal .btn-clear {
  border-radius: 10px;
  padding: 10px 20px;
  font-weight: 600;
  border: 1px solid var(--border-color);
  color: var(--text-secondary);
  background: transparent;
}

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

#filterModal .form-select:focus {
  border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem var(--primary-ring);
}

#filterModal .modal-header {
  background: var(--primary-color);
}

.active-filters .badge {
  font-size: 0.9rem;
  padding: 8px 12px;
  border-radius: 20px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: all 0.3s ease;
}

.active-filters .badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.active-filters .badge a {
  text-decoration: none;
  font-size: 1.2rem;
  line-height: 1;
  opacity: 0.8;
  transition: opacity 0.2s;
}

.active-filters .badge a:hover {
  opacity: 1;
}

.filters-section .form-select {
  cursor: pointer;
  transition: all 0.3s ease;
}

.filters-section .form-select:hover:not(:disabled) {
    border-color: var(--warning-color) !important;
    box-shadow: 0 2px 8px var(--warning-soft);
}

.filters-section .form-select:focus {
    border-color: var(--warning-color) !important;
    box-shadow: 0 0 0 0.25rem var(--warning-ring);
}

/* Payment Methods Checkbox Grid */
.payment-methods-grid,
.business-types-grid,
.cuisines-grid,
.facilities-grid,
.price-levels-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 10px;
  margin-top: 10px;
}

/* Hidden items için stil */
.hidden-item {
  display: none;
}

/* Show more button stil */
.show-more-btn {
  padding: 8px 0 !important;
  font-size: 13px !important;
  text-decoration: none !important;
  color: var(--primary-color) !important;
  font-weight: 600 !important;
  transition: all 0.3s ease;
}

.show-more-btn:hover {
  color: var(--primary-color) !important;
  transform: translateX(5px);
}

.payment-method-checkbox,
.business-type-checkbox,
.cuisine-checkbox,
.facility-checkbox,
.price-level-checkbox {
  display: flex;
  align-items: center;
  padding: 12px 16px;
  background: var(--bg-tertiary);
  border: 2px solid var(--border-color);
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}

.payment-method-checkbox:hover,
.business-type-checkbox:hover,
.cuisine-checkbox:hover,
.facility-checkbox:hover,
.price-level-checkbox:hover {
  background: var(--bg-tertiary);
  border-color: var(--primary-color);
  transform: translateY(-2px);
    box-shadow: 0 4px 12px var(--primary-glow);
}

.payment-method-checkbox input[type="checkbox"],
.business-type-checkbox input[type="checkbox"],
.cuisine-checkbox input[type="checkbox"],
.facility-checkbox input[type="checkbox"],
.price-level-checkbox input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

.payment-method-checkbox .payment-label,
.business-type-checkbox .business-label,
.cuisine-checkbox .cuisine-label,
.facility-checkbox .facility-label,
.price-level-checkbox .price-label {
  display: flex;
  align-items: center;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-primary);
  padding-left: 30px;
  position: relative;
  user-select: none;
  width: 100%;
}

.payment-method-checkbox .payment-label::before,
.business-type-checkbox .business-label::before,
.cuisine-checkbox .cuisine-label::before,
.facility-checkbox .facility-label::before,
.price-level-checkbox .price-label::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  border: 2px solid var(--border-color);
  border-radius: 5px;
  background: var(--card-bg);
  transition: all 0.3s ease;
}

.payment-method-checkbox .payment-label::after,
.business-type-checkbox .business-label::after,
.cuisine-checkbox .cuisine-label::after,
.facility-checkbox .facility-label::after,
.price-level-checkbox .price-label::after {
  content: '✓';
  position: absolute;
  left: 3px;
  top: 50%;
  transform: translateY(-50%) scale(0);
  font-size: 14px;
  color: white;
  transition: all 0.3s ease;
}

.payment-method-checkbox input[type="checkbox"]:checked ~ .payment-label::before,
.business-type-checkbox input[type="checkbox"]:checked ~ .business-label::before,
.cuisine-checkbox input[type="checkbox"]:checked ~ .cuisine-label::before,
.facility-checkbox input[type="checkbox"]:checked ~ .facility-label::before,
.price-level-checkbox input[type="checkbox"]:checked ~ .price-label::before {
  background: linear-gradient(135deg, var(--button-gradient-start) 0%, var(--button-gradient-end) 100%);
  border-color: var(--primary-color);
}

.payment-method-checkbox input[type="checkbox"]:checked ~ .payment-label::after,
.business-type-checkbox input[type="checkbox"]:checked ~ .business-label::after,
.cuisine-checkbox input[type="checkbox"]:checked ~ .cuisine-label::after,
.facility-checkbox input[type="checkbox"]:checked ~ .facility-label::after,
.price-level-checkbox input[type="checkbox"]:checked ~ .price-label::after {
  transform: translateY(-50%) scale(1);
}

.payment-method-checkbox input[type="checkbox"]:checked ~ .payment-label,
.business-type-checkbox input[type="checkbox"]:checked ~ .business-label,
.cuisine-checkbox input[type="checkbox"]:checked ~ .cuisine-label,
.facility-checkbox input[type="checkbox"]:checked ~ .facility-label,
.price-level-checkbox input[type="checkbox"]:checked ~ .price-label {
  color: var(--primary-color);
  font-weight: 600;
}

/* Responsive Filters */
@media (max-width: 768px) {
  .filters-section .col-md-2 {
    width: 100%;
    margin-bottom: 10px;
  }
  
  .active-filters .badge {
    font-size: 0.8rem;
    padding: 6px 10px;
  }
  
  .filter-icon-btn {
        padding: 6px 8px !important;
  }
  
  .search-wrapper .clear-search-btn {
            right: 152px !important;
  }
  
  #mainSearch {
            padding-right: 166px !important;
  }
  
  .payment-methods-grid {
    grid-template-columns: 1fr;
  }
  
  .payment-method-checkbox {
    padding: 10px 14px;
  }
  
  .payment-method-checkbox .payment-label {
    font-size: 13px;
  }
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-secondary);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    transition: background-color 0.3s ease, color 0.3s ease;
}

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

/* ========================================
   NAVBAR STYLES
======================================== */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar-brand {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary) !important;
    text-decoration: none;
}

.navbar-brand span {
    color: var(--primary-color);
    font-weight: 600;
}

.site-logo {
    display: block;
    width: auto;
    max-height: 50px;
    transition: background-color 0.2s ease, box-shadow 0.2s ease, padding 0.2s ease, border-radius 0.2s ease;
}

[data-theme="dark"] .site-logo {
    background: rgba(255, 255, 255, 0.96);
    padding: 8px 12px;
    border-radius: 14px;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.28);
}

.navbar .btn {
    border-radius: 8px;
    padding: 6px 12px;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.navbar .btn-outline-dark {
    border-color: var(--border-color);
    color: var(--text-secondary);
}

.navbar .btn-outline-dark:hover {
    background-color: var(--bg-secondary);
    border-color: var(--border-color);
}

.navbar .btn-warning {
    background: var(--primary-color);
    border: none;
    color: white;
    transition: all 0.2s ease;
}

.navbar .btn-warning:hover {
    background: var(--primary-hover);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

/* ========================================
   HERO SECTION
======================================== */
.hero-section {
    background: linear-gradient(135deg, var(--hero-gradient-start) 0%, var(--hero-gradient-mid) 52%, var(--hero-gradient-end) 100%);
    padding: 80px 0 60px;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="80" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="40" cy="60" r="1" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: var(--hero-noise-opacity);
    z-index: 0;
}

.hero-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 16% 18%, var(--hero-glow-primary) 0%, transparent 34%),
        radial-gradient(circle at 84% 14%, var(--hero-glow-secondary) 0%, transparent 30%),
        radial-gradient(circle at 50% 100%, rgba(255, 255, 255, 0.08) 0%, transparent 38%);
    z-index: 1;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--text-inverse);
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 16px;
    background: linear-gradient(135deg, var(--hero-title-gradient-start) 0%, var(--hero-title-gradient-end) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

/* ========================================
   SEARCH CONTAINER
======================================== */
.search-container {
    max-width: 600px;
    margin: 0 auto;
}

.hero-actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 14px;
}

.location-search-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 48px;
    padding: 0 18px;
    border-radius: 14px;
    border: 1px solid rgba(99, 102, 241, 0.16);
    background: rgba(255, 255, 255, 0.92);
    color: var(--primary-color);
    font-weight: 700;
    box-shadow: 0 12px 26px rgba(99, 102, 241, 0.08);
    transition: all 0.2s ease;
}

.location-search-btn:hover {
    transform: translateY(-2px);
    background: #ffffff;
    box-shadow: 0 16px 32px rgba(99, 102, 241, 0.12);
}

.location-search-btn:disabled,
.location-search-btn.is-loading {
    opacity: 0.72;
    cursor: wait;
    transform: none;
}

.location-reset-btn {
    color: var(--text-secondary);
    background: rgba(255, 255, 255, 0.78);
    border-color: rgba(148, 163, 184, 0.2);
    box-shadow: 0 10px 22px rgba(15, 23, 42, 0.06);
}

.location-reset-btn:hover {
    color: var(--text-primary);
}

.search-wrapper {
    position: relative;
    background: var(--card-bg);
    border-radius: 16px;
    box-shadow: 0 20px 40px var(--card-shadow);
    padding: 8px;
    margin-bottom: 20px;
}

.search-icon {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    z-index: 3;
}

#mainSearch {
    border: none;
    padding: 14px 186px 14px 58px;
    font-size: 1rem;
    border-radius: 12px;
    background: transparent;
    width: 100%;
    outline: none;
    height: 48px;
    line-height: 20px;
}

#mainSearch::placeholder {
    color: var(--text-muted);
}

.search-btn {
    position: absolute;
    right: 8px;
    top: 8px;
    background: var(--primary-color);
    border: none;
    border-radius: 8px;
    padding: 12px;
    color: white;
    cursor: pointer;
    transition: all 0.2s ease;
    z-index: 10;
}

.search-btn:hover {
    background: var(--primary-hover);
    transform: scale(1.03);
    box-shadow: var(--shadow-md);
}

.search-btn svg {
    stroke: white;
}

/* Quick Filters */
.quick-filters {
    display: flex;
    gap: 8px;
    justify-content: center;
    flex-wrap: wrap;
}

.filter-chip {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: white;
    padding: 6px 14px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 0.875rem;
    font-weight: 500;
}

.filter-chip:hover,
.filter-chip.active {
    background: rgba(255, 255, 255, 0.95);
    color: var(--text-primary);
    border-color: white;
}

/* Location Selectors */
.location-select-control {
    position: relative;
}

.location-selector .form-select {
    border-radius: 10px;
    background: var(--select-bg);
    border: 2px solid var(--select-border);
    padding: 10px 44px 10px 14px;
    font-weight: 500;
    color: var(--text-primary);
    transition: all 0.3s ease;
}

.location-selector .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem var(--primary-ring);
    background: var(--select-bg);
}

.location-selector .form-select option {
    background: var(--card-bg);
    color: var(--text-primary);
}

.location-clear-btn {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
    border-radius: 999px;
    background: rgba(99, 102, 241, 0.08);
    color: var(--text-muted);
    opacity: 0;
    pointer-events: none;
    transition: all 0.2s ease;
    z-index: 2;
}

.location-clear-btn.is-visible {
    opacity: 1;
    pointer-events: auto;
}

.location-clear-btn:hover {
    background: rgba(239, 68, 68, 0.12);
    color: var(--danger-color);
    transform: translateY(-50%) scale(1.08);
}

.location-clear-btn span {
    font-size: 16px;
    line-height: 1;
}

/* Avatar Gradient */
.avatar-gradient {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--avatar-gradient-start) 0%, var(--avatar-gradient-end) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 0.8rem;
}

/* Button Primary Gradient */
.btn-primary-gradient {
    background: linear-gradient(135deg, var(--button-gradient-start) 0%, var(--button-gradient-end) 100%);
    border: none;
    color: white;
    border-radius: 10px;
    padding: 10px 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary-gradient:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px var(--primary-glow);
}

/* Toast Notifications */
.toast-notification.success {
    background: var(--toast-success) !important;
}

.toast-notification.error {
    background: var(--toast-error) !important;
}

/* Loading State */
.loading-state {
    grid-column: 1/-1;
    text-align: center;
    padding: 60px 20px;
}

.loading-state .spinner-border {
    width: 3rem;
    height: 3rem;
}

.loading-state p {
    margin-top: 20px;
    color: var(--text-secondary);
    font-size: 16px;
}

/* Empty/Error State */
.empty-state {
    grid-column: 1/-1;
    text-align: center;
    padding: 60px 20px;
}

.empty-state svg {
    margin: 0 auto 20px;
}

.empty-state h3 {
    font-size: 24px;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.empty-state p {
    color: var(--text-secondary);
    font-size: 16px;
}

.empty-state .error-details {
    color: var(--text-muted);
    font-size: 14px;
    margin-top: 10px;
}

/* Filter Chips Dynamic */
.filter-chip-business {
    background: var(--chip-business);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.filter-chip-cuisine {
    background: var(--chip-cuisine);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.filter-chip-facility {
    background: var(--chip-facility);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.filter-chip-payment {
    background: var(--chip-payment);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.filter-chip-price {
    background: var(--chip-price);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.filter-chip-remove-btn {
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    font-size: 16px;
    line-height: 1;
    padding: 0 0 0 4px;
}

/* Search Wrapper Elements */
.search-wrapper .clear-search-btn {
    position: absolute;
    right: 152px;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    color: var(--text-muted);
    padding: 6px;
    cursor: pointer;
    border-radius: 6px;
    z-index: 10;
    transition: all 0.2s ease;
    opacity: 0;
    pointer-events: none;
}

.search-wrapper .clear-search-btn.visible {
    opacity: 1;
    pointer-events: auto;
}

.search-wrapper .clear-search-btn:hover {
    color: var(--danger-color);
    background: var(--danger-soft);
    transform: translateY(-50%) scale(1.1);
}

.search-wrapper .filter-btn-wrapper {
    position: absolute;
    right: 56px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
}

.search-wrapper .search-icon-svg {
    position: absolute;
    left: 22px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    pointer-events: none;
    z-index: 5;
}

/* ========================================
   CATEGORIES SECTION
======================================== */
.categories-section {
    padding: 60px 0;
    background: var(--bg-primary);
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
    color: var(--text-primary);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.category-card {
    background: var(--card-bg);
    padding: 30px 20px;
    border-radius: 16px;
    text-align: center;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    cursor: pointer;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.category-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.category-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--text-primary);
}

.category-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin: 0;
}

/* ========================================
   FEATURED SECTION
======================================== */
.featured-section {
    padding: 60px 0;
}

.section-header {
    margin-bottom: 40px;
}

/* Sıralama Butonları */
.sort-buttons-container {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    padding: 0 20px;
}

.sort-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: var(--card-bg);
    border: 2px solid var(--border-color);
    border-radius: 25px;
    font-weight: 600;
    font-size: 14px;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.sort-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.sort-btn.active {
    background: var(--primary-color);
    border-color: transparent;
    color: white;
    box-shadow: var(--shadow-md);
}

.sort-btn svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.sort-btn:hover svg {
    transform: scale(1.1);
}

.sort-btn.active svg {
    stroke: white;
}

/* Mobil Responsive */
@media (max-width: 768px) {
    .sort-buttons-container {
        gap: 8px;
    }
    
    .sort-btn {
        padding: 10px 16px;
        font-size: 13px;
        flex: 1 1 calc(50% - 8px);
        min-width: 0;
        justify-content: center;
    }
    
    .sort-btn svg {
        width: 16px;
        height: 16px;
    }
}

@media (max-width: 480px) {
    .sort-buttons-container {
        gap: 8px;
        padding: 0 10px;
    }
    
    .sort-btn {
        padding: 10px 12px;
        font-size: 12px;
        gap: 6px;
    }
}

.tab-navigation {
    border: none;
}

.tab-navigation .nav-link {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    padding: 8px 16px;
    border-radius: 8px;
    margin-right: 8px;
    transition: all 0.2s ease;
    text-decoration: none;
    font-weight: 500;
}

.tab-navigation .nav-link:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    background: var(--bg-tertiary);
}

.tab-navigation .nav-link.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

/* ========================================
   RESTAURANT CARDS - Modern Clean Design
======================================== */
.restaurants-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.restaurant-card {
    background: var(--card-bg);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: all 0.2s ease;
    cursor: pointer;
}

.restaurant-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.card-image {
    position: relative;
    height: 200px;
    overflow: hidden;
    background: var(--bg-tertiary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-image img {
    max-width: 85%;
    max-height: 85%;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.restaurant-card:hover .card-image img {
    transform: scale(1.03);
}

.card-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--primary-color);
    color: white;
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.3px;
    box-shadow: var(--shadow-sm);
}

.card-badge.campaign {
    background: var(--danger-color);
}

.card-badge.new {
    background: var(--success-color);
}

.card-badge.premium {
    background: var(--primary-color);
}

.restaurant-card .card-share {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 3;
}

.restaurant-card .share-btn,
.restaurant-card .favorite-btn {
    position: absolute;
    background: var(--surface-overlay);
    border: none;
    border-radius: 8px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    color: var(--text-secondary);
    box-shadow: var(--shadow-sm);
}

.restaurant-card .share-btn {
    position: relative;
}

.restaurant-card .favorite-btn {
    right: 12px;
    bottom: 12px;
    z-index: 3;
}

[data-theme="dark"] .restaurant-card .share-btn,
[data-theme="dark"] .restaurant-card .favorite-btn {
    background: var(--surface-overlay);
}

.restaurant-card .share-btn:hover,
.restaurant-card .favorite-btn:hover {
    background: var(--text-inverse);
    transform: scale(1.05);
    box-shadow: var(--shadow-md);
}

.restaurant-card .share-btn:hover {
    color: var(--primary-color);
}

.restaurant-card .favorite-btn:hover {
    color: var(--danger-color);
}

[data-theme="dark"] .restaurant-card .share-btn:hover,
[data-theme="dark"] .restaurant-card .favorite-btn:hover {
    background: var(--bg-secondary);
}

.restaurant-card .favorite-btn.active {
    color: var(--danger-color);
}

.restaurant-card .share-btn svg,
.restaurant-card .favorite-btn svg {
    width: 18px;
    height: 18px;
}

.restaurant-card .share-menu {
    position: absolute;
    top: 44px;
    right: 0;
    min-width: 170px;
    padding: 8px;
    border-radius: 12px;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-lg);
    display: none;
    flex-direction: column;
    gap: 6px;
    z-index: 4;
}

.restaurant-card .card-share.open .share-menu {
    display: flex;
}

.restaurant-card .share-menu button {
    width: 100%;
    border: none;
    background: transparent;
    color: var(--text-primary);
    text-align: left;
    border-radius: 8px;
    padding: 10px 12px;
    font-size: 0.9rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: background 0.2s ease, color 0.2s ease;
}

.restaurant-card .share-menu button svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.restaurant-card .share-menu button:hover {
    background: var(--bg-secondary);
    color: var(--primary-color);
}

.card-content {
    padding: 20px;
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 8px;
}

.restaurant-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
    transition: color 0.3s ease;
}

.rating {
    display: flex;
    align-items: center;
    gap: 4px;
    background: var(--bg-tertiary);
    padding: 4px 10px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.rating-star {
    color: var(--rating-color);
    font-size: 0.875rem;
}

.rating-value {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.875rem;
}

.restaurant-cuisine {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-secondary);
    margin-bottom: 12px;
    font-size: 0.9rem;
}

.restaurant-cuisine svg {
    width: 17px;
    height: 17px;
    flex-shrink: 0;
    color: var(--primary-color);
}

.restaurant-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.delivery-time {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.review-link {
    border: none;
    background: transparent;
    padding: 0;
    cursor: pointer;
    transition: color 0.2s ease, transform 0.2s ease;
}

.review-link:hover {
    color: var(--primary-color);
    transform: translateY(-1px);
}

.delivery-fee {
    color: var(--success-color);
    font-weight: 500;
    font-size: 0.9rem;
}

.menu-btn {
    background: var(--primary-color);
    border: none;
    color: white;
    padding: 10px 20px;
    border-radius: 8px;
    width: 100%;
    font-weight: 600;
    font-size: 0.9375rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.menu-btn:hover {
    background: var(--primary-hover);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

/* ========================================
   BUTTONS - Modern Clean Design
======================================== */
.load-more-btn {
    background: var(--primary-color);
    border: none;
    color: white;
    padding: 10px 28px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.load-more-btn:hover {
    background: var(--primary-hover);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

/* ========================================
   FOOTER STYLES
======================================== */
.info-section {
    background: linear-gradient(135deg, var(--footer-gradient-start) 0%, var(--footer-gradient-end) 100%);
    padding: 60px 0;
    color: white;
}

.info-section h6 {
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
    font-size: 1.1rem;
}

.info-section ul {
    list-style: none;
    padding-left: 0;
}

.info-section ul li {
    margin-bottom: 12px;
}

.info-section ul li a {
    color: var(--footer-text);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.info-section ul li a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

/* ========================================
   MODERN FOOTER STYLES
======================================== */
.modern-footer {
    background: var(--footer-bg);
    color: var(--text-primary);
    padding: 60px 0 0 0;
    padding-bottom: calc(80px + env(safe-area-inset-bottom));
    margin-top: 80px;
    position: relative;
    overflow: hidden;
    border-top: 2px solid var(--border-color);
    transition: background-color 0.3s ease, color 0.3s ease;
}

/* Light tema için gradient background */
[data-theme="light"] .modern-footer {
    background: linear-gradient(135deg, var(--footer-gradient-start) 0%, var(--footer-gradient-end) 100%);
    color: var(--footer-text);
    border-top: none;
}

.modern-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--footer-divider-strong), transparent);
}

/* Footer Brand - Sol Taraf */
.footer-brand {
    padding-right: 20px;
}

.footer-slogan {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--footer-text);
    margin-bottom: 10px;
}

.footer-tagline {
    font-size: 0.9rem;
    color: var(--footer-muted);
    line-height: 1.6;
    margin-bottom: 25px;
}

/* Sosyal Medya İkonları */
.footer-social {
    display: flex;
    gap: 12px;
    align-items: center;
}

.social-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--surface-overlay-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--footer-text);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    border: 1px solid var(--surface-overlay-soft);
}

.social-icon:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    color: #fff;
    border-color: var(--primary-color);
}

.social-icon i {
    font-size: 20px;
    line-height: 1;
}

/* Footer Links - Orta */
.footer-links,
.footer-user-menu,
.footer-auth-menu {
    padding-left: 20px;
}

.footer-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--footer-text);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 12px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
}

.footer-links ul li,
.footer-user-menu ul li,
.footer-auth-menu ul li {
    margin-bottom: 12px;
}

.footer-links ul li a,
.footer-user-menu ul li a,
.footer-auth-menu ul li a {
    color: var(--footer-muted);
    text-decoration: none;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    padding: 6px 0;
}

.footer-links ul li a:hover,
.footer-user-menu ul li a:hover,
.footer-auth-menu ul li a:hover {
    color: var(--primary-color);
    padding-left: 8px;
}

.footer-links ul li a svg,
.footer-user-menu ul li a svg,
.footer-auth-menu ul li a svg {
    flex-shrink: 0;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.footer-links ul li a:hover svg,
.footer-user-menu ul li a:hover svg,
.footer-auth-menu ul li a:hover svg {
    opacity: 1;
}

/* Footer Bottom - Copyright */
.footer-bottom {
    margin-top: 50px;
    padding-top: 25px;
    border-top: 1px solid var(--footer-divider);
}

.footer-bottom p {
    color: var(--footer-muted);
    font-size: 0.9rem;
}

/* Desktop navbar göster, mobile bottom nav gizle */
@media (min-width: 769px) {
    .mobile-bottom-nav {
        display: none;
    }
}

/* Mobile Responsive Footer */
@media (max-width: 768px) {
    .modern-footer {
        padding: 40px 0 0 0;
        padding-bottom: calc(100px + env(safe-area-inset-bottom));
        margin-top: 40px;
    }
    
    .footer-brand,
    .footer-links,
    .footer-user-menu,
    .footer-auth-menu {
        padding-left: 0;
        padding-right: 0;
        margin-bottom: 30px;
        text-align: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-links ul li a,
    .footer-user-menu ul li a,
    .footer-auth-menu ul li a {
        justify-content: center;
    }
    
    .footer-bottom {
        margin-top: 30px;
        padding-top: 20px;
    }
    
    .footer-bottom .col-md-6 {
        margin-bottom: 10px;
    }
    
    /* Desktop navbar gizle, mobile bottom nav göster */
    .desktop-navbar {
        display: none;
    }
    
    .mobile-bottom-nav {
        display: flex;
    }
}

/* Footer mobil için özel ayarlar zaten @media (max-width: 768px) içinde tanımlı */

/* ========================================
   CONTACT SECTION STYLES (HAKKIMIZDA.PHP)
======================================== */
.contact-info-list .d-flex {
    transition: all 0.3s ease;
}

.contact-info-list .d-flex:hover {
    transform: translateX(5px);
}

.contact-info-list a:hover {
    color: var(--primary-color) !important;
}

.map-container-contact {
    position: relative;
    overflow: hidden;
}

.map-container-contact iframe {
    display: block;
    width: 100%;
}

#contactForm .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem var(--primary-ring);
}

#contactForm .btn-primary {
    background: var(--primary-color);
    border: none;
    padding: 12px;
    font-weight: 600;
    transition: all 0.2s ease;
}

#contactForm .btn-primary:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* ========================================
   KVKK MODAL STYLES
======================================== */
#kvkkModal .modal-header {
    background: var(--primary-color);
}

#kvkkModal .kvkk-content {
    line-height: 1.8;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

#kvkkModal .kvkk-content p {
    margin-bottom: 1rem;
}

#kvkkModal .modal-body {
    max-height: 70vh;
}

/* ========================================
   PROFILE PAGE STYLES
======================================== */
.review-card {
    background: var(--bg-secondary);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 16px;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.review-card:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transform: translateY(-2px);
    border-color: var(--border-color);
}

.review-business-link {
    color: var(--text-primary);
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    transition: color 0.2s ease;
}

.review-business-link:hover {
    color: var(--primary-color);
}

.rating-badge {
    flex-shrink: 0;
}

.favorite-business-card:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-sm);
    transform: translateY(-2px);
}

.profile-nav .nav-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    color: var(--text-secondary);
    text-decoration: none;
    border-radius: 8px;
    margin-bottom: 8px;
    transition: all 0.2s ease;
    font-weight: 500;
}

.profile-nav .nav-item:hover {
    background: var(--bg-tertiary);
    color: var(--primary-color);
}

.profile-nav .nav-item.active {
    background: var(--primary-color);
    color: white;
}

.profile-nav .nav-item .badge {
    margin-left: auto;
    background: var(--primary-soft);
    color: var(--primary-color);
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
}

.profile-nav .nav-item.active .badge {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.btn-gradient {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.2s ease;
}

.btn-gradient:hover {
    background: var(--primary-hover);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
    color: white;
}

/* ========================================
   RESPONSIVE DESIGN
======================================== */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .section-header {
        flex-direction: column;
        text-align: center;
    }
    
    .categories-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 15px;
    }
    
    .restaurants-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .search-wrapper {
        padding: 6px;
    }
    
    #mainSearch {
        padding: 14px 166px 14px 52px;
    }

    .filter-btn-label {
        font-size: 0.75rem;
    }

    .search-wrapper .clear-search-btn {
        right: 152px;
    }

    .search-wrapper .filter-btn-wrapper {
        right: 56px;
    }
    
    .quick-filters {
        gap: 6px;
    }
    
    .filter-chip {
        padding: 6px 12px;
        font-size: 0.8rem;
    }
    
    /* Contact Section Mobil */
    .map-container-contact {
        min-height: 300px !important;
    }
    
    .map-container-contact iframe {
        min-height: 300px !important;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-section {
        padding: 60px 0 40px;
    }
    
    .categories-section,
    .featured-section {
        padding: 40px 0;
    }
    
    .category-card {
        padding: 20px 15px;
    }
    
    .card-content {
        padding: 15px;
    }
}

/* ========================================
   ANIMATIONS
======================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.restaurant-card {
    animation: fadeInUp 0.6s ease forwards;
}

.restaurant-card:nth-child(1) { animation-delay: 0.1s; }
.restaurant-card:nth-child(2) { animation-delay: 0.2s; }
.restaurant-card:nth-child(3) { animation-delay: 0.3s; }
.restaurant-card:nth-child(4) { animation-delay: 0.4s; }

/* ========================================
   RESTAURANT DETAIL PAGE STYLES
======================================== */

/* Hero Section for Restaurant Detail */
.hero-section.restaurant-hero {
    height: 400px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
}

.restaurant-hero .hero-content {
    position: relative;
    z-index: 2;
    padding: 40px 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}

/* Restaurant Logo */
.restaurant-logo-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
    animation: fadeInDown 0.6s ease-out;
}

.restaurant-logo {
    width: 120px;
    height: 120px;
    object-fit: contain;
    object-position: center;
    background: var(--surface-overlay);
    border-radius: 50%;
    padding: 10px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    border: 4px solid var(--surface-overlay-border);
    backdrop-filter: blur(10px);
}

.restaurant-title {
    font-size: 3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.restaurant-meta {
    display: flex;
    gap: 20px;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
    color: white;
    font-weight: 500;
}

.meta-item svg {
    color: var(--primary-color);
}

.cuisine-badge {
    background: var(--primary-color);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Content Layout */
.content-wrapper {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 40px;
    padding: 40px 0;
    max-width: 1200px;
    margin: 0 auto;
}

.main-content {
    min-width: 0;
}

.sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}

/* Detail Sections */
.detail-section {
    background: var(--card-bg);
    border-radius: 16px;
    padding: 30px;
    margin-bottom: 30px;
    border: 1px solid var(--border-color);
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.section-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.section-title svg {
    color: var(--primary-color);
}

.restaurant-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 25px;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.feature-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--bg-tertiary);
    padding: 12px 16px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    font-weight: 500;
    color: var(--text-primary);
}

.feature-badge svg {
    color: var(--success-color);
    flex-shrink: 0;
}

/* Menu Section */
.menu-section {
    padding: 40px;
}

/* Category Navigation */
.category-navigation {
    margin-bottom: 30px;
    padding: 20px;
    background: var(--primary-color);
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
}

.category-nav-wrapper {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding: 10px 5px;
    scrollbar-width: thin;
    scrollbar-color: rgba(255,255,255,0.3) transparent;
    scroll-behavior: smooth;
}

.category-nav-wrapper::-webkit-scrollbar {
    height: 8px;
}

.category-nav-wrapper::-webkit-scrollbar-track {
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
}

.category-nav-wrapper::-webkit-scrollbar-thumb {
    background: rgba(255,255,255,0.3);
    border-radius: 10px;
}

.category-nav-wrapper::-webkit-scrollbar-thumb:hover {
    background: rgba(255,255,255,0.5);
}

.category-nav-item {
    display: inline-block;
    padding: 10px 20px;
    background: var(--card-bg);
    color: var(--text-primary);
    text-decoration: none;
    border-radius: 8px;
    white-space: nowrap;
    font-weight: 500;
    font-size: 0.875rem; 
    transition: all 0.2s ease;
    border: 1px solid var(--border-color);
}

.category-nav-item:hover {
    background: var(--bg-tertiary);
    color: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-1px);
}

.category-nav-item.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    box-shadow: var(--shadow-sm);
}

.menu-category {
    margin-bottom: 40px;
    scroll-margin-top: 100px;
}

.menu-category.is-subcategory {
    margin-bottom: 18px;
    padding: 14px 16px;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
}

.menu-category-body[hidden] {
    display: none !important;
}

.category-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--primary-color);
    display: inline-block;
}

.subcategory-toggle {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    border: none;
    background: transparent;
    padding: 0;
    color: var(--text-primary);
    font-size: 1rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
}

.subcategory-toggle-text {
    flex: 1;
}

.subcategory-chevron {
    flex-shrink: 0;
    transition: transform 0.2s ease;
}

.menu-category.is-subcategory.is-open .subcategory-chevron {
    transform: rotate(180deg);
}

.menu-category.is-subcategory .menu-category-body {
    padding-top: 14px;
}

.category-description {
    margin: -6px 0 16px;
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    max-width: 780px;
}

.menu-items {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.menu-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 16px;
    background: var(--card-bg);
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: all 0.2s ease;
}

.menu-item:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-1px);
    border-color: var(--primary-color);
}

.menu-item.with-image {
    align-items: center;
}

.item-image {
    width: 80px;
    height: 80px;
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
    position: relative;
    cursor: pointer;
    transition: all 0.2s ease;
    background: var(--bg-tertiary);
}

.item-image:hover {
    transform: scale(1.03);
}

.item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.item-image:hover img {
    transform: scale(1.08);
}

.image-zoom-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--modal-backdrop);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.item-image:hover .image-zoom-overlay {
    opacity: 1;
}

.item-info {
    flex: 1;
    min-width: 0;
}

.item-name {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 4px;
    line-height: 1.4;
}

.item-description {
    color: var(--text-secondary);
    font-size: 0.875rem;
    margin: 0;
    line-height: 1.5;
}

.item-price-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
    margin-left: auto;
    flex-shrink: 0;
}

.item-price {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--primary-color);
    white-space: nowrap;
}

.price-update-date {
    font-size: 0.6875rem;
    color: var(--text-muted);
    opacity: 0.75;
    font-style: italic;
    white-space: nowrap;
}

[data-theme="dark"] .image-zoom-overlay {
    background: var(--modal-backdrop);
}

/* Contact Card */
.contact-card,
.tags-card {
    background: var(--card-bg);
    border-radius: 16px;
    padding: 30px;
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 12px var(--card-shadow);
    margin-bottom: 20px;
}

.card-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 25px;
    transition: color 0.3s ease;
}

.contact-info {
    margin-bottom: 25px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
}

.contact-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.contact-item svg {
    color: var(--primary-color);
    margin-top: 2px;
    flex-shrink: 0;
    transition: color 0.3s ease;
}

.contact-item > div {
    flex: 1;
}

.contact-label {
    display: block;
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 2px;
    transition: color 0.3s ease;
}

.contact-value {
    display: block;
    font-weight: 500;
    color: var(--text-primary);
    line-height: 1.4;
    transition: color 0.3s ease;
}

/* Action Buttons */
.action-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 30px;
}

.action-buttons .btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 500;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-primary {
    background: var(--button-gradient);
    color: white;
}

.btn-primary:hover {
    filter: brightness(0.9);
    transform: translateY(-1px);
}

.btn-secondary {
    background: var(--card-bg);
    color: var(--text-secondary);
    border: 2px solid var(--border-color);
}

.btn-secondary:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-1px);
}

/* QR Section */
.qr-section {
    text-align: center;
    padding: 20px;
    background: var(--bg-tertiary);
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.qr-label {
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 15px;
}

.qr-code {
    display: inline-block;
    margin-bottom: 10px;
}

.qr-section small {
    color: var(--text-muted);
    font-size: 0.8rem;
}

/* Tags Card */
.tags-card {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 20px;
}

.tag {
    background: var(--button-gradient);
    color: white;
    padding: 6px 12px;
    border-radius: 16px;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

/* Map Section */
.map-container {
    border-radius: 12px;
    overflow: hidden;
    height: 300px;
    border: 1px solid var(--border-color);
}

.map-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    background: var(--bg-tertiary);
    color: var(--text-secondary);
    text-align: center;
}

.map-placeholder svg {
    margin-bottom: 15px;
}

.map-placeholder p {
    font-weight: 500;
    margin-bottom: 5px;
}

/* ========================================
   FLOATING BUTTONS - Restaurant Detail Page
   3 buton alt alta: Feedback (üstte) → Favorite (ortada) → Scroll (altta)
======================================== */

/* Feedback Button (En üstte - Primary Color) */
.feedback-floating-btn {
    position: fixed;
    bottom: 150px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 50%;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    z-index: 998;
}

.feedback-floating-btn:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 6px 20px var(--primary-glow-strong);
}

.feedback-floating-btn svg {
    width: 20px;
    height: 20px;
}

/* Favorite Button (Ortada - Kırmızı) */
#favoriteBtn {
    position: fixed;
    bottom: 85px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--card-bg);
    color: var(--danger-color);
    border: 2px solid var(--border-color);
    border-radius: 50%;
    box-shadow: 0 4px 15px var(--card-shadow);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 999;
}

#favoriteBtn:hover {
    transform: scale(1.1);
    background: var(--bg-tertiary);
    border-color: var(--danger-color);
    box-shadow: 0 6px 20px var(--danger-glow);
}

#favoriteBtn.active {
    background: linear-gradient(135deg, var(--danger-gradient-start) 0%, var(--danger-gradient-end) 100%);
    color: white;
    border-color: var(--danger-color);
    box-shadow: 0 4px 15px var(--danger-glow-strong);
}

#favoriteBtn.active:hover {
    background: linear-gradient(135deg, var(--danger-gradient-hover-start) 0%, var(--danger-gradient-hover-end) 100%);
}

#favoriteBtn:active {
    transform: scale(0.95);
}

#favoriteBtn svg {
    transition: all 0.3s ease;
}

@keyframes heartBeat {
    0%, 100% { transform: scale(1); }
    25% { transform: scale(1.3); }
    50% { transform: scale(1.1); }
}

#favoriteBtn.heartbeat {
    animation: heartBeat 0.5s ease;
}

/* Scroll to Top Button (En altta - Primary Color) */
#scrollToTopBtn {
    position: fixed;
    bottom: 20px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 50%;
    box-shadow: var(--shadow-lg);
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    z-index: 997;
}

#scrollToTopBtn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px var(--primary-glow-strong);
}

#scrollToTopBtn:active {
    transform: scale(0.95);
}

#scrollToTopBtn svg {
    width: 20px;
    height: 20px;
}

/* Mobile Responsive - Butonlar navigation bar'ın üzerinde */
@media (max-width: 768px) {
    .feedback-floating-btn {
        bottom: 210px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
    
    .feedback-floating-btn svg {
        width: 18px;
        height: 18px;
    }
    
    #favoriteBtn {
        bottom: 150px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
    
    #scrollToTopBtn {
        bottom: 90px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
    
    #scrollToTopBtn svg {
        width: 18px;
        height: 18px;
    }
}

.map-placeholder small {
    font-size: 0.8rem;
    opacity: 0.7;
}

/* Navigation Breadcrumb */
.breadcrumb-nav {
    background: var(--card-bg);
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
    font-size: 0.9rem;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.breadcrumb-item a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-item a:hover {
    color: var(--primary-color);
}

.breadcrumb-item.active {
    color: var(--text-primary);
    font-weight: 500;
}

.breadcrumb-separator {
    color: var(--border-color);
}

/* Responsive Design for Restaurant Detail */
@media (max-width: 1024px) {
    .content-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .sidebar {
        position: static;
        order: -1;
    }
    
    .restaurant-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .hero-section.restaurant-hero {
        height: 300px;
    }
    
    .restaurant-logo-wrapper {
        margin-bottom: 15px;
    }
    
    .restaurant-logo {
        width: 80px;
        height: 80px;
        padding: 8px;
        border: 3px solid var(--surface-overlay-border);
    }
    
    .restaurant-title {
        font-size: 2rem;
    }
    
    .restaurant-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .content-wrapper {
        padding: 20px 0;
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .main-content {
        order: 1;
    }
    
    .sidebar {
        order: 2;
        position: relative;
        top: 0;
    }
    
    .section-title {
        justify-content: center;
    }
    
    .restaurant-description {
        text-align: center;
    }
    
    .detail-section {
        padding: 20px;
        margin-bottom: 20px;
    }
    
    .menu-section {
        padding: 25px;
    }
    
    /* Kategori navigasyonu mobilde en üste yapışık */
    .category-navigation {
        position: sticky !important;
        top: 0 !important;
        margin: 0 -15px 20px -15px !important;
        border-radius: 0 !important;
        padding: 8px 12px !important;
        margin-bottom: 15px !important;
    }
    
    /* Kategori butonları mobilde küçük */
    .category-nav-wrapper {
        gap: 8px;
        padding: 5px 2px;
    }
    
    .category-nav-item {
        padding: 8px 16px !important;
        font-size: 0.8rem !important;
        border-radius: 20px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }
    
    .category-nav-item:hover {
        transform: translateY(-1px) scale(1.02);
        box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
    }
    
    .category-nav-item.active {
        padding: 8px 16px !important;
        border: 2px solid var(--warning-color);
        box-shadow: 0 4px 12px var(--primary-glow), 0 0 0 2px var(--warning-soft);
        transform: translateY(-1px) scale(1.05);
    }
    
    .menu-item {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }
    
    .menu-item.with-image {
        flex-direction: row;
    }
    
    .item-image {
        width: 80px;
        height: 80px;
        margin-right: 15px;
    }
    
    .item-price {
        margin-left: 0;
        margin-top: 10px;
        align-self: flex-end;
    }
    
    .menu-item.with-image .item-price {
        margin-top: 0;
        margin-left: 15px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .contact-card {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }
    
    .restaurant-logo {
        width: 70px;
        height: 70px;
        padding: 6px;
        border: 2px solid var(--surface-overlay-border);
    }
    
    .restaurant-logo {
        width: 70px;
        height: 70px;
        padding: 6px;
        border: 2px solid var(--surface-overlay-border);
    }
    
    .restaurant-title {
        font-size: 1.8rem;
    }
    
    .detail-section {
        padding: 15px;
        border-radius: 12px;
    }
    
    .section-title {
        font-size: 1.3rem;
    }
    
    .menu-item {
        padding: 15px;
    }
    
    .action-buttons {
        gap: 8px;
    }
    
    .action-buttons .btn {
        padding: 10px 16px;
        font-size: 0.9rem;
    }
}

/* ========================================
   ANIMATIONS FOR RESTAURANT DETAIL
======================================== */
/* Animasyonlar kaldırıldı - anında yükleme için */
.detail-section {
    /* animation disabled */
}

.contact-card {
    /* animation disabled */
}

/* Menu item hover effects */
.menu-item {
    /* animation disabled - direkt görünür */
}

/* fadeInUp animasyonu kullanılmıyor - anında yüklenme aktif */

/* ========================================
   AUTH MODAL STYLES
======================================== */
.auth-modal {
    border: none;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.auth-modal .modal-dialog {
    max-width: 900px;
}

.btn-close-custom {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 10;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--text-primary);
}

.btn-close-custom:hover {
    background: var(--bg-tertiary);
    transform: rotate(90deg);
}

/* Auth Modal Info Section */
.auth-modal-info {
    background: var(--primary-color);
    color: white;
    padding: 50px 40px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.auth-modal-info::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: pulse 15s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.auth-modal-info.user-theme {
    background: var(--primary-color);
}

.info-content {
    position: relative;
    z-index: 2;
}

.info-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    backdrop-filter: blur(10px);
}

.info-content h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: white;
}

.info-content p {
    font-size: 1rem;
    margin-bottom: 30px;
    opacity: 0.95;
    line-height: 1.6;
}

.info-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.info-list li {
    padding: 10px 0;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    opacity: 0.95;
}

.info-list li::before {
    content: '✓';
    margin-right: 12px;
    font-size: 1.2rem;
    font-weight: bold;
}

/* Auth Modal Form Section */
.auth-modal-form {
    padding: 50px 40px;
    background: var(--card-bg);
}

.form-content h4 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.form-content .text-muted {
    color: var(--text-secondary) !important;
    font-size: 0.95rem;
}

.form-label {
    font-weight: 500;
    color: var(--label-text);
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.form-control {
    border: 2px solid var(--border-color);
    border-radius: 10px;
    padding: 12px 16px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px var(--primary-soft);
    outline: none;
}

.input-with-icon {
    position: relative;
}

.input-with-icon > svg {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    pointer-events: none;
    z-index: 5;
}

.input-with-icon .form-control {
    padding-left: 48px;
}

/* Password Input Wrapper - Şifre Göz İkonu */
.password-input-wrapper {
    position: relative;
}

.password-toggle-btn {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    padding: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: color 0.3s ease;
    z-index: 10;
    line-height: 1;
}

.password-toggle-btn:hover {
    color: var(--primary-color);
}

.password-toggle-btn:focus {
    outline: none;
}

.password-toggle-btn svg {
    width: 20px;
    height: 20px;
}

.password-input-wrapper .password-input {
    padding-right: 48px !important;
}

.form-check-input {
    width: 18px;
    height: 18px;
    border: 2px solid var(--border-color);
    border-radius: 4px;
    cursor: pointer;
}

.form-check-input:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.form-check-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    cursor: pointer;
    margin-left: 8px;
}

.btn-primary {
    background: var(--primary-color);
    border: none;
    padding: 14px 24px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.2s ease;
}

.btn-primary:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.auth-modal-form a {
    color: var(--primary-color);
    transition: all 0.2s ease;
}

.auth-modal-form a:hover {
    color: var(--primary-hover);
}

/* Dropdown Menu Styles */
.dropdown-menu {
    border: none;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 8px;
    margin-top: 8px;
}

.dropdown-item {
    border-radius: 8px;
    padding: 12px 16px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    font-size: 0.95rem;
}

.dropdown-item:hover {
    background: var(--primary-color);
    color: white;
}

.dropdown-item svg {
    transition: all 0.3s ease;
}

.dropdown-item:hover svg {
    stroke: white;
}

/* ========================================
   PROFILE PAGE STYLES
======================================== */

/* Profile Page Layout */
.profile-page {
    min-height: calc(100vh - 60px);
    padding: 40px 0;
}

.profile-sidebar {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 28px;
    box-shadow: 0 10px 30px var(--card-shadow);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.profile-sidebar:hover {
    box-shadow: 0 15px 40px var(--primary-glow);
    transform: translateY(-2px);
}

.user-summary {
    text-align: center;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 2px solid var(--primary-soft);
}

.user-avatar {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 2.2rem;
    margin: 0 auto 16px;
    box-shadow: var(--shadow-lg);
    border: 4px solid var(--card-bg);
    transition: all 0.2s ease;
}

.user-avatar:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 30px var(--primary-glow-strong);
}

.user-summary h5 {
    color: var(--text-primary);
    font-weight: 700;
    margin-bottom: 6px;
    font-size: 1.2rem;
}

.user-summary p {
    color: var(--text-secondary);
    font-size: 0.875rem;
    margin-bottom: 0;
}

/* Profile Navigation */
.profile-nav .nav-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    color: var(--text-secondary);
    text-decoration: none;
    border-radius: 12px;
    margin-bottom: 10px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border: 2px solid transparent;
}

.profile-nav .nav-item:hover {
    background: var(--bg-secondary);
    color: var(--primary-color);
    border-color: var(--border-color);
    transform: translateX(5px);
}

.profile-nav .nav-item.active {
    background: var(--primary-color);
    color: white;
    box-shadow: var(--shadow-md);
    border-color: transparent;
}

.profile-nav .nav-item.active::before {
    content: '';
    position: absolute;
    left: -10px;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 60%;
    background: var(--primary-color);
    border-radius: 2px;
}

.profile-nav .nav-item svg {
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.profile-nav .nav-item:hover svg {
    transform: scale(1.1);
}

.profile-nav .nav-item span:first-of-type {
    flex: 1;
    font-weight: 600;
}

.profile-nav .nav-item .badge {
    background: rgba(255, 255, 255, 0.3);
    color: white;
    padding: 4px 10px;
    border-radius: 16px;
    font-size: 0.75rem;
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.profile-nav .nav-item:not(.active) .badge {
    background: var(--primary-color);
    color: white;
}

/* Tab Content */
.tab-content {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 36px;
    box-shadow: 0 10px 30px var(--card-shadow);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.tab-content:hover {
    box-shadow: 0 15px 40px var(--primary-glow);
}

.tab-content h4 {
    color: var(--text-primary);
    font-weight: 700;
    margin: 0;
    display: flex;
    align-items: center;
}

.tab-content h4 svg {
    background: var(--primary-color);
    padding: 6px;
    border-radius: 8px;
    color: white;
    margin-right: 12px;
}

.tab-content .badge {
    background: var(--primary-color);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    box-shadow: var(--shadow-sm);
}

/* Review Cards */
.review-card {
    border: 2px solid var(--primary-soft);
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 20px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: linear-gradient(135deg, var(--card-bg) 0%, var(--bg-secondary) 100%);
    position: relative;
    overflow: hidden;
}

.review-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--primary-color);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.review-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
    border-color: var(--border-color);
}

.review-card:hover::before {
    opacity: 1;
}

.review-business-link {
    color: var(--primary-color);
    font-weight: 700;
    text-decoration: none;
    font-size: 1.15rem;
    transition: all 0.2s ease;
    position: relative;
}

.review-business-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.review-business-link:hover {
    color: var(--primary-hover);
}

.review-business-link:hover::after {
    width: 100%;
}

.review-card .rating {
    margin-top: 10px;
}

.review-card p {
    color: var(--text-secondary);
    margin: 16px 0 0 0;
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Favorite Business Cards */
.favorite-business-card {
    cursor: pointer;
}

.favorite-business-card:hover {
    border-color: var(--primary-color) !important;
    box-shadow: var(--shadow-sm) !important;
    transform: translateY(-2px);
}

/* Gradient Button - Simplified */
.btn-gradient {
    background: var(--primary-color);
    border: none;
    color: white;
    padding: 10px 24px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.2s ease;
    box-shadow: var(--shadow-sm);
}

.btn-gradient:hover {
    background: var(--primary-hover);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
    color: white;
}

.btn-gradient:active {
    transform: translateY(0);
    box-shadow: var(--shadow-sm);
}

/* Form Styles for Profile */
.form-label {
    color: var(--label-text);
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.form-control {
    border: 2px solid var(--input-border);
    border-radius: 10px;
    padding: 12px 18px;
    transition: all 0.3s ease;
    background: var(--input-bg);
    font-size: 0.95rem;
}

.form-control:hover {
    border-color: var(--border-color);
    background: var(--input-bg);
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px var(--primary-soft);
    outline: none;
    background: var(--input-bg);
}

/* Empty State Styling */
.text-center.py-5 {
    padding: 60px 20px !important;
}

.text-center.py-5 svg {
    filter: drop-shadow(0 4px 12px var(--card-shadow));
    transition: transform 0.3s ease;
}

.text-center.py-5:hover svg {
    transform: scale(1.1);
}

/* Responsive Profile */
@media (max-width: 768px) {
    .profile-sidebar {
        margin-bottom: 24px;
    }
    
    .profile-page {
        padding: 20px 0;
    }
    
    .tab-content {
        padding: 24px;
    }
    
    .user-avatar {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }
    
    .profile-nav .nav-item {
        padding: 12px 16px;
    }
}

/* Duplicate floating button definitions removed - see lines 1722+ for single source */

/* ========================================
   DETAIL BUTTONS WRAPPER (Restaurant Detail Page)
======================================== */
.detail-buttons-wrapper {
    display: flex;
    gap: 12px;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding: 0 15px 15px 15px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: var(--scrollbar-thumb) var(--scrollbar-track);
}

.detail-buttons-wrapper::-webkit-scrollbar {
    height: 8px;
}

.detail-buttons-wrapper::-webkit-scrollbar-track {
    background: var(--bg-tertiary);
    border-radius: 10px;
}

.detail-buttons-wrapper::-webkit-scrollbar-thumb {
    background: var(--scrollbar-thumb);
    border-radius: 10px;
}

.detail-buttons-wrapper::-webkit-scrollbar-thumb:hover {
    background: var(--scrollbar-thumb-hover);
}

.detail-buttons-wrapper .btn {
    white-space: nowrap;
    flex-shrink: 0;
}

/* ========================================
   MOBILE BOTTOM NAVIGATION
======================================== */
.mobile-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--card-bg);
    display: none;
    justify-content: space-around;
    align-items: center;
    padding: 8px 0 max(8px, env(safe-area-inset-bottom));
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    border-top: 1px solid var(--border-color);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.bottom-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    background: transparent;
    border: none;
    color: var(--text-secondary);
    font-size: 10px;
    line-height: 1.2;
    padding: 6px 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    min-width: 70px;
    border-radius: 12px;
}

.bottom-nav-item:hover,
.bottom-nav-item:active {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.bottom-nav-item svg {
    transition: all 0.3s ease;
}

.bottom-nav-item:hover svg,
.bottom-nav-item:active svg {
    stroke: white;
    transform: scale(1.1);
}

.bottom-nav-item span {
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

/* Çıkış butonu özel stil */
.bottom-nav-item-danger:hover,
.bottom-nav-item-danger:active {
    background: linear-gradient(135deg, var(--danger-gradient-start) 0%, var(--danger-gradient-end) 100%) !important;
    color: white;
}

.bottom-nav-item-danger:hover svg,
.bottom-nav-item-danger:active svg {
    stroke: white;
}

/* Link olarak kullanılan bottom nav itemlar */
.bottom-nav-item {
    text-decoration: none;
}

/* Mobile Theme Toggle - Özel Tasarım */
.bottom-nav-theme {
    position: relative;
}

.bottom-nav-theme .theme-toggle-icon {
    position: relative;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bottom-nav-theme .theme-icon-light,
.bottom-nav-theme .theme-icon-dark {
    position: absolute;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.bottom-nav-theme .theme-icon-light {
    opacity: 1;
    transform: rotate(0deg) scale(1);
}

.bottom-nav-theme .theme-icon-dark {
    opacity: 0;
    transform: rotate(-90deg) scale(0.5);
}

/* Dark Tema Aktif - İkon Değişimi */
[data-theme="dark"] .bottom-nav-theme .theme-icon-light {
    opacity: 0;
    transform: rotate(90deg) scale(0.5);
    display: block;
}

[data-theme="dark"] .bottom-nav-theme .theme-icon-dark {
    opacity: 1;
    transform: rotate(0deg) scale(1);
    display: block !important;
}

/* Hover Efekti - Mobil Tema Butonu */
.bottom-nav-theme:hover .theme-toggle-icon {
    animation: themeIconBounce 0.6s ease;
}

@keyframes themeIconBounce {
    0%, 100% { transform: scale(1); }
    25% { transform: scale(1.15); }
    50% { transform: scale(0.95); }
    75% { transform: scale(1.05); }
}

/* Aktif durumda parlama efekti */
.bottom-nav-theme:active {
    background: linear-gradient(135deg, var(--warning-gradient-start) 0%, var(--warning-gradient-end) 100%);
    transform: scale(0.95);
}

.bottom-nav-theme:active .theme-toggle-icon {
    animation: themeIconRotate 0.5s ease;
}

@keyframes themeIconRotate {
    0% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.2) rotate(180deg); }
    100% { transform: scale(1) rotate(360deg); }
}

[data-theme="dark"] .bottom-nav-theme:active {
    background: var(--button-gradient);
}

/* Smooth Transition for Theme Change */
* {
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.bottom-nav-item,
.bottom-nav-item svg {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Desktop navbar - gizle mobilde */
.desktop-navbar {
    display: flex;
}

/* Mobil responsive */
@media (max-width: 768px) {
    /* Desktop navbar'ı tamamen gizle mobilde */
    .desktop-navbar {
        display: none !important;
    }
    
    /* Bottom navigation'ı göster */
    .mobile-bottom-nav {
        display: flex;
    }
    
    /* Footer'a margin ekle mobil nav için */
    footer {
        margin-bottom: 70px !important;
    }
    
    /* Bottom nav item boyutları mobilde daha küçük */
    .bottom-nav-item {
        min-width: 60px;
        padding: 4px 6px;
        font-size: 9px;
    }
    
    .bottom-nav-item svg {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 480px) {
    /* Çok küçük ekranlarda daha da kompakt */
    .mobile-bottom-nav {
        padding: 6px 0 max(6px, env(safe-area-inset-bottom));
    }
    
    .bottom-nav-item {
        min-width: 48px;
        padding: 4px 2px;
        font-size: 8px;
        gap: 2px;
    }
    
    .bottom-nav-item svg {
        width: 18px;
        height: 18px;
    }
    
    .bottom-nav-item span {
        letter-spacing: 0;
        line-height: 1.1;
    }
    
    /* Tema butonu için özel ayar */
    .bottom-nav-theme .theme-toggle-icon {
        width: 22px;
        height: 22px;
    }
    
    .bottom-nav-theme svg {
        width: 18px;
        height: 18px;
    }
}

/* ========================================
   MODAL STYLES FOR RESTAURANT DETAIL
======================================== */
.modal-content {
    border-radius: 20px;
    border: none;
}

.modal-header.gradient-purple,
.modal-header.gradient-pink,
.modal-header.gradient-orange,
.modal-header.gradient-blue,
.modal-header.gradient-green {
    background: var(--primary-color);
    color: white;
    border-radius: 20px 20px 0 0;
}

.modal-body.detail-modal {
    padding: 30px;
}

.modal-body.about-modal {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-secondary);
}

.contact-modal-section {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    padding: 15px;
    background: var(--bg-tertiary);
    border-radius: 10px;
}

.contact-modal-icon {
    flex-shrink: 0;
    color: var(--primary-color);
}

.contact-modal-info {
    flex: 1;
}

.contact-modal-label {
    display: block;
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 2px;
}

.contact-modal-value {
    font-weight: 600;
    color: var(--text-primary);
    text-decoration: none;
}

.contact-modal-value:hover {
    color: var(--primary-color);
}

/* Eski facility stilleri kaldırıldı - yeni tema uyumlu stiller kullanılıyor */

.gallery-modal-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
}

.gallery-modal-item {
    position: relative;
    padding-bottom: 100%;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.gallery-modal-item:hover {
    transform: scale(1.05);
}

.gallery-modal-item img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hours-day-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    background: var(--bg-tertiary);
    border-radius: 10px;
    border: 2px solid transparent;
}

.hours-day-item.today {
    background: var(--today-highlight-bg);
    border-color: var(--success-color);
}

.hours-day-name {
    font-weight: 500;
    color: var(--text-primary);
}

.hours-day-name.today {
    font-weight: 600;
}

.hours-today-badge {
    font-size: 12px;
    color: var(--success-color);
    margin-left: 8px;
}

.hours-time {
    color: var(--text-secondary);
    font-weight: 500;
}

.hours-closed {
    color: var(--danger-color);
    font-weight: 500;
}

.map-info-box {
    background: var(--bg-tertiary);
    padding: 25px;
    border-radius: 12px;
    text-align: center;
}

.address-line {
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.address-district {
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.address-full {
    color: var(--text-secondary);
}

/* ========================================
   SOCIAL MEDIA MODAL STYLES
======================================== */
.social-media-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
    margin-bottom: 10px;
}

/* ========================================
   CUISINES MODAL STYLES
======================================== */
.cuisines-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 15px;
}

.cuisine-badge-item {
    background: linear-gradient(135deg, var(--primary-soft) 0%, transparent 100%);
    border: 2px solid var(--primary-color);
    padding: 15px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: default;
}

.cuisine-badge-item:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 20px var(--primary-glow);
    border-color: var(--primary-hover);
    background: linear-gradient(135deg, var(--primary-soft) 0%, var(--bg-secondary) 100%);
}

.social-media-item {
    display: flex;
    align-items: center;
    padding: 15px;
    border-radius: 12px;
    border: 2px solid var(--border-color);
    background: var(--card-bg);
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.social-media-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
    border-color: transparent;
}

.social-icon-wrapper {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.social-media-item:hover .social-icon-wrapper {
    transform: scale(1.1) rotate(5deg);
}

.social-icon-wrapper svg {
    width: 24px;
    height: 24px;
    fill: white;
}

.social-icon-wrapper i {
    font-size: 24px;
    color: white;
}

.social-info {
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.social-platform-name {
    font-weight: 600;
    font-size: 14px;
    color: var(--text-primary);
    margin-bottom: 2px;
}

.social-username {
    font-size: 12px;
    color: var(--text-secondary);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* Platform-specific colors */
.social-icon-wrapper.instagram {
    background: linear-gradient(135deg, #E4405F 0%, #F77737 50%, #FCAF45 100%);
}

.social-media-item:hover .social-icon-wrapper.instagram {
    background: linear-gradient(135deg, #FCAF45 0%, #F77737 50%, #E4405F 100%);
}

.social-icon-wrapper.facebook {
    background: linear-gradient(135deg, #1877F2 0%, #0C63D4 100%);
}

.social-media-item:hover .social-icon-wrapper.facebook {
    background: linear-gradient(135deg, #0C63D4 0%, #1877F2 100%);
}

.social-icon-wrapper.twitter {
    background: linear-gradient(135deg, #000000 0%, #14171A 100%);
}

.social-media-item:hover .social-icon-wrapper.twitter {
    background: linear-gradient(135deg, #14171A 0%, #000000 100%);
}

.social-icon-wrapper.tiktok {
    background: linear-gradient(135deg, #000000 0%, #EE1D52 50%, #69C9D0 100%);
}

.social-media-item:hover .social-icon-wrapper.tiktok {
    background: linear-gradient(135deg, #69C9D0 0%, #EE1D52 50%, #000000 100%);
}

.social-icon-wrapper.youtube {
    background: linear-gradient(135deg, #FF0000 0%, #CC0000 100%);
}

.social-media-item:hover .social-icon-wrapper.youtube {
    background: linear-gradient(135deg, #CC0000 0%, #FF0000 100%);
}

.social-icon-wrapper.google_maps {
    background: linear-gradient(135deg, #4285F4 0%, #34A853 50%, #FBBC05 100%);
}

/* ========================================
   RESPONSIVE MEDIA QUERIES FOR MODALS
======================================== */
@media (max-width: 768px) {
    .social-media-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 10px;
    }
    
    .cuisines-list {
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
        gap: 10px;
    }
    
    .cuisine-badge-item {
        padding: 12px;
    }
}

.social-media-item:hover .social-icon-wrapper.google_maps {
    background: linear-gradient(135deg, #FBBC05 0%, #34A853 50%, #4285F4 100%);
}

/* Responsive */
@media (max-width: 576px) {
    .social-media-grid {
        grid-template-columns: 1fr;
    }
    
    .social-media-item {
        padding: 12px;
    }
    
    .social-icon-wrapper {
        width: 40px;
        height: 40px;
    }
    
    .social-icon-wrapper svg,
    .social-icon-wrapper i {
        font-size: 20px;
        width: 20px;
        height: 20px;
    }
}

/* ========================================
   FEATURE CARDS (HAKKIMIZDA PAGE)
======================================== */
.feature-card {
    transition: all 0.3s ease;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary-color);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15) !important;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-icon {
    font-size: 3rem;
    line-height: 1;
}

.feature-icon i {
    display: inline-block;
    transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon i {
    transform: scale(1.1) rotate(5deg);
}

.feature-card h4 {
    font-size: 1.25rem;
    color: var(--text-primary);
}

.feature-card p {
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
    .feature-card {
        margin-bottom: 1rem;
    }
    
    .feature-icon {
        font-size: 2.5rem;
    }
    
    .feature-card h4 {
        font-size: 1.1rem;
    }
}

/* ========================================
   REQUIREMENTS MODAL OVERLAY STYLES
======================================== */
/* Aydınlatma metni modallarını diğer modalların üstünde göster */
#businessRequirementsModal.modal,
#userRequirementsModal.modal,
#kvkkModal.modal {
    z-index: 1065 !important;
}

/* Aydınlatma modalları için backdrop z-index ayarı */
.modal-backdrop.requirements-backdrop {
    z-index: 1060 !important;
}

/* Destek talebi modalı - mobil bottom nav ve backdrop-filter stacking context sorunu için */
#newTicketModal.modal {
    z-index: 1065 !important;
}

/* Tüm modal backdrop'larının mobile-bottom-nav (z-index: 1000) üzerinde görünmesini garantile */
.modal-backdrop {
    z-index: 1050 !important;
}

/* Requirements modal içerik stilleri */
.requirements-content {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--text-secondary);
    text-align: justify;
}

.requirements-content p {
    margin-bottom: 1rem;
}

/* ========================================
   DARK MODE ADDITIONAL STYLES
======================================== */

/* Modals */
[data-theme="dark"] .modal-content {
    background-color: var(--modal-bg);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
}

[data-theme="dark"] .modal-header {
    border-bottom-color: var(--border-color);
}

[data-theme="dark"] .modal-footer {
    border-top-color: var(--border-color);
}

[data-theme="dark"] .btn-close {
    filter: invert(1);
}

/* Forms */
[data-theme="dark"] .form-control,
[data-theme="dark"] .form-select {
    background-color: var(--input-bg);
    border-color: var(--input-border);
    color: var(--text-primary);
}

[data-theme="dark"] .form-control:focus,
[data-theme="dark"] .form-select:focus {
    background-color: var(--input-bg);
    border-color: var(--primary-color);
    color: var(--text-primary);
}

[data-theme="dark"] .form-control::placeholder {
    color: var(--text-muted);
}

/* Auth Modals */
[data-theme="dark"] .auth-modal {
    background-color: var(--modal-bg);
}

[data-theme="dark"] .auth-modal-info {
    background: var(--primary-color) !important;
}

[data-theme="dark"] .auth-modal-form {
    background-color: var(--modal-bg);
}

[data-theme="dark"] .auth-modal .form-content {
    color: var(--text-primary);
}

/* Dropdowns */
[data-theme="dark"] .dropdown-menu {
    background-color: var(--card-bg);
    border-color: var(--border-color);
}

[data-theme="dark"] .dropdown-item {
    color: var(--text-primary);
}

[data-theme="dark"] .dropdown-item:hover {
    background-color: var(--bg-tertiary);
    color: var(--text-primary);
}

[data-theme="dark"] .dropdown-divider {
    border-top-color: var(--border-color);
}

/* Mobile Bottom Nav */
[data-theme="dark"] .mobile-bottom-nav {
    background: var(--card-bg);
    border-top: 1px solid var(--border-color);
    box-shadow: 0 -2px 20px rgba(0, 0, 0, 0.4);
}

[data-theme="dark"] .bottom-nav-item {
    color: var(--text-secondary);
}

[data-theme="dark"] .bottom-nav-item:hover,
[data-theme="dark"] .bottom-nav-item.active {
    color: white;
    background: var(--primary-color);
}

/* Mobile Theme Toggle Dark Mode */
[data-theme="dark"] .bottom-nav-theme:hover {
    background: var(--primary-color);
}

[data-theme="dark"] .bottom-nav-theme svg {
    stroke: var(--text-secondary);
}

[data-theme="dark"] .bottom-nav-theme:hover svg {
    stroke: white;
}

[data-theme="dark"] .bottom-nav-item-danger:hover {
    background: linear-gradient(135deg, var(--danger-gradient-start) 0%, var(--danger-gradient-end) 100%) !important;
    color: white;
}

/* Category Cards */
[data-theme="dark"] .category-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
}

[data-theme="dark"] .category-card:hover {
    background: var(--bg-tertiary);
    box-shadow: 0 8px 24px var(--card-shadow);
}

/* Badges */
[data-theme="dark"] .badge {
    background-color: var(--badge-bg);
    color: var(--text-primary);
}

/* Search Input */
[data-theme="dark"] #mainSearch {
    background-color: var(--input-bg);
    border-color: var(--input-border);
    color: var(--text-primary);
}

[data-theme="dark"] #mainSearch::placeholder {
    color: var(--text-muted);
}

/* Hero Section */
[data-theme="dark"] .hero-section::before {
    opacity: var(--hero-noise-opacity);
}

/* Filter Chips */
[data-theme="dark"] .filter-chip {
    background-color: var(--badge-bg);
    color: var(--text-primary);
    border-color: var(--border-color);
}

[data-theme="dark"] .filter-chip:hover,
[data-theme="dark"] .filter-chip.active {
    background-color: var(--primary-color);
    color: white;
}

/* Restaurant Detail Page */
[data-theme="dark"] .detail-section {
    background: var(--card-bg);
    border-color: var(--border-color);
}

[data-theme="dark"] .sidebar {
    background: var(--card-bg);
}

[data-theme="dark"] .menu-item {
    background: var(--bg-tertiary);
    border-color: var(--border-color);
}

/* Footer links for dark mode */
[data-theme="dark"] .footer-links ul li a,
[data-theme="dark"] .footer-user-menu ul li a,
[data-theme="dark"] .footer-auth-menu ul li a {
    color: var(--text-secondary);
}

[data-theme="dark"] .footer-links ul li a:hover,
[data-theme="dark"] .footer-user-menu ul li a:hover,
[data-theme="dark"] .footer-auth-menu ul li a:hover {
    color: var(--text-primary);
}

/* Smooth transitions for theme switching */
body,
.navbar,
.restaurant-card,
.category-card,
.modal-content,
.form-control,
.form-select,
.dropdown-menu,
.mobile-bottom-nav,
.search-wrapper,
.detail-section,
.sidebar,
.menu-item,
.contact-card,
.tags-card,
.qr-card,
.profile-sidebar,
.tab-content,
.review-card,
.load-more-btn,
.btn-secondary,
.breadcrumb-nav,
.sort-btn,
.filter-chip,
.category-nav-item {
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

/* Additional Dark Theme Styles */
[data-theme="dark"] .hero-title {
    color: white;
}

[data-theme="dark"] .hero-subtitle {
    color: rgba(255, 255, 255, 0.9);
}

[data-theme="dark"] .section-title {
    color: var(--text-primary);
}

[data-theme="dark"] .category-card h3 {
    color: var(--text-primary);
}

[data-theme="dark"] .category-card p {
    color: var(--text-secondary);
}

[data-theme="dark"] .contact-card,
[data-theme="dark"] .tags-card {
    background: var(--card-bg);
    border-color: var(--border-color);
}

[data-theme="dark"] .qr-card {
    background: var(--card-bg);
    border-color: var(--border-color);
}

[data-theme="dark"] .tab-navigation .nav-link {
    background: var(--card-bg);
    border-color: var(--border-color);
    color: var(--text-secondary);
}

[data-theme="dark"] .tab-navigation  .nav-link:hover {
    background: var(--bg-tertiary);
    color: var(--text-primary);
}

[data-theme="dark"] .tab-navigation .nav-link.active {
    background: var(--primary-color);
    color: white;
}

[data-theme="dark"] .load-more-btn:hover {
    background: var(--bg-tertiary);
    color: var(--text-primary);
}

[data-theme="dark"] .btn-secondary:hover {
    background: var(--bg-tertiary);
}

[data-theme="dark"] .breadcrumb-nav {
    background: var(--card-bg);
    border-bottom-color: var(--border-color);
}

[data-theme="dark"] .profile-nav .nav-item {
    color: var(--text-secondary);
}

[data-theme="dark"] .profile-sidebar {
    background: var(--card-bg);
    border-color: var(--border-color);
}

[data-theme="dark"] .review-card {
    background: var(--card-bg);
    border-color: var(--border-color);
}

[data-theme="dark"] .favorite-business-card {
    background: var(--card-bg);
}

[data-theme="dark"] .restaurant-logo {
    background: var(--card-bg);
    border-color: var(--border-color);
}

[data-theme="dark"] .category-nav-item {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
}

[data-theme="dark"] .category-nav-item.active {
    background: var(--primary-color);
    color: white;
}

[data-theme="dark"] .sort-btn {
    background: var(--card-bg);
    color: var(--text-secondary);
    border-color: var(--border-color);
}

[data-theme="dark"] .sort-btn:hover {
    background: var(--bg-tertiary);
    color: var(--text-primary);
}

[data-theme="dark"] .sort-btn.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

/* Text Elements */
[data-theme="dark"] h1,
[data-theme="dark"] h2,
[data-theme="dark"] h3,
[data-theme="dark"] h4,
[data-theme="dark"] h5,
[data-theme="dark"] h6 {
    color: var(--text-primary);
}

[data-theme="dark"] p {
    color: var(--text-secondary);
}

[data-theme="dark"] .text-muted {
    color: var(--text-muted) !important;
}

/* Restaurant Info Colors */
[data-theme="dark"] .restaurant-description {
    color: var(--text-secondary);
}

[data-theme="dark"] .delivery-time,
[data-theme="dark"] .delivery-fee {
    color: var(--text-secondary);
}

[data-theme="dark"] .restaurant-info {
    color: var(--text-secondary);
}

/* Form Labels */
[data-theme="dark"] .form-label {
    color: var(--text-primary);
}

[data-theme="dark"] .form-check-label {
    color: var(--text-secondary);
}

/* Scrollbar Styling for Dark Mode */
[data-theme="dark"] ::-webkit-scrollbar-track {
    background: var(--bg-tertiary);
}

[data-theme="dark"] ::-webkit-scrollbar-thumb {
    background: var(--border-color);
}

[data-theme="dark"] ::-webkit-scrollbar-thumb:hover {
    background: var(--primary-color);
}

/* ========================================
   MENU SEARCH WRAPPER STYLES
======================================== */
.menu-search-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 15px;
}

.menu-search-wrapper .search-wrapper {
    position: relative;
    max-width: 500px;
    width: 100%;
}

.menu-search-wrapper .search-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-secondary);
    pointer-events: none;
    transition: color 0.3s ease;
}

.menu-search-wrapper .form-control {
    padding-left: 45px;
    border-radius: 12px;
    border: 2px solid var(--border-color);
    height: 48px;
    font-size: 15px;
    background: var(--input-bg);
    color: var(--text-primary);
    transition: all 0.3s ease;
}

.menu-search-wrapper .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px var(--primary-soft);
    outline: none;
}

.menu-search-wrapper .form-control::placeholder {
    color: var(--text-muted);
}

/* Sticky Category Navigation */
.category-navigation.sticky {
    position: sticky;
    top: 60px;
    z-index: 100;
    background: var(--card-bg);
    padding: 15px 20px;
    margin: 0 -20px 20px -20px;
    box-shadow: 0 2px 8px var(--card-shadow);
    border-radius: 12px;
    transition: all 0.3s ease;
}

/* ========================================
   RESTAURANT DETAIL MODAL BUTTONS & STYLES - Modern Clean
======================================== */
/* Modal Buttons - All using primary color for consistency */
.btn-gradient-primary,
.btn-gradient-pink,
.btn-gradient-orange,
.btn-gradient-cyan,
.btn-gradient-green,
.btn-gradient-pastel,
.btn-gradient-sunset {
    background: var(--primary-color);
    color: white;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    border: none;
    box-shadow: var(--shadow-sm);
    transition: all 0.2s ease;
    font-size: 0.875rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    cursor: pointer;
}

.btn-gradient-primary:hover,
.btn-gradient-pink:hover,
.btn-gradient-orange:hover,
.btn-gradient-cyan:hover,
.btn-gradient-green:hover,
.btn-gradient-pastel:hover,
.btn-gradient-sunset:hover {
    background: var(--primary-hover);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
    color: white;
    text-decoration: none;
}

/* Pastel variant for less emphasis */
.btn-gradient-pastel {
    background: var(--bg-tertiary);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
}

.btn-gradient-pastel:hover {
    background: var(--bg-secondary);
    color: var(--text-primary);
}

/* Modal Header Gradients - Using primary color */
.modal-header-gradient-primary,
.modal-header-gradient-pink,
.modal-header-gradient-orange,
.modal-header-gradient-cyan,
.modal-header-gradient-green {
    color: white;
    border: none;
    border-radius: 20px 20px 0 0;
}


/* Modal Body Styles */
.modal-body-themed {
    padding: 30px;
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-primary);
}

.modal-info-box {
    background: var(--bg-secondary);
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 15px;
}

.modal-info-box h6 {
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.modal-info-box p {
    margin-bottom: 5px;
    color: var(--text-secondary);
}

.modal-info-box .text-muted {
    color: var(--text-muted) !important;
}

.modal-link-white {
    color: white;
    text-decoration: none;
    margin-left: 5px;
}

.modal-link-white:hover {
    color: white;
    text-decoration: underline;
}

/* Icon Colors */
.icon-pink {
    color: var(--primary-color);
}

.icon-whatsapp {
    color: #25D366;
}

.icon-email {
    color: var(--primary-color);
}

.icon-website {
    color: #4facfe;
}

/* Modal Contact Items */
.modal-contact-item {
    background: var(--bg-secondary);
    padding: 15px;
    border-radius: 12px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.modal-contact-item i {
    font-size: 24px;
}

.modal-contact-label {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 2px;
}

.modal-contact-value {
    font-weight: 600;
    color: var(--text-primary);
    text-decoration: none;
}

.modal-contact-value:hover {
    color: var(--primary-color);
    text-decoration: none;
}

/* Button Icon Styles */
.btn i,
.btn svg {
    vertical-align: middle;
    margin-right: 6px;
}

.btn-sm i {
    vertical-align: middle;
    margin-right: 5px;
}

/* ========================================
   PROFILE PAGE SPECIFIC STYLES
======================================== */
/* Profile Page Container */
.profile-page {
    min-height: calc(100vh - 60px);
    padding: 40px 0;
    background: var(--bg-primary);
}

/* Profile Cards */
.profile-card {
    background: var(--card-bg);
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 2px 8px var(--card-shadow);
    transition: all 0.3s ease;
}

.profile-sidebar {
    background: var(--card-bg);
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 2px 8px var(--card-shadow);
}

/* Profile Dividers */
.profile-divider {
    border-bottom: 1px solid var(--border-color);
}

.profile-hr {
    margin: 20px 0;
    border-color: var(--border-color);
}

/* Avatar with Gradient */
.profile-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--avatar-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 2rem;
    transition: all 0.3s ease;
}

.profile-avatar:hover {
    transform: scale(1.05);
}

.profile-avatar-small {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    background: var(--avatar-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.5rem;
    flex-shrink: 0;
}

/* Text Styles */
.profile-text-heading {
    color: var(--text-primary);
    font-weight: 600;
    transition: color 0.3s ease;
}

.profile-text-secondary {
    color: var(--text-secondary);
    transition: color 0.3s ease;
}

.profile-small-text {
    font-size: 0.875rem;
}

.profile-smaller-text {
    font-size: 0.8rem;
}

/* Form Labels */
.profile-form-label {
    color: var(--text-secondary);
    font-weight: 500;
}

/* Badges */
.profile-badge {
    background: var(--primary-color);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.875rem;
    transition: all 0.3s ease;
}

/* Tab Content */
.profile-tab-content {
    background: var(--card-bg);
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 2px 8px var(--card-shadow);
}

/* Section Headers */
.profile-section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.profile-section-title {
    color: var(--text-primary);
    font-weight: 600;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.profile-section-title svg {
    margin-right: 8px;
    vertical-align: middle;
    color: var(--primary-color);
}

/* Favorite Card */
.profile-favorite-card {
    background: var(--card-bg);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 16px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 16px;
    position: relative;
}

.profile-favorite-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 4px 12px var(--card-shadow);
}

.profile-favorite-card img {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    object-fit: cover;
    flex-shrink: 0;
}

.profile-favorite-meta {
    flex: 1;
    min-width: 0;
}

.profile-favorite-name {
    color: var(--text-primary);
    font-weight: 600;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.profile-favorite-date {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.profile-favorite-date svg {
    vertical-align: middle;
    margin-right: 4px;
    color: var(--danger-color);
}

/* Remove Favorite Button */
.profile-remove-btn {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--card-bg);
    border: none;
    box-shadow: 0 2px 8px var(--card-shadow);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    z-index: 10;
}

.profile-remove-btn:hover {
    background: var(--danger-soft);
    transform: scale(1.1);
}

.profile-remove-btn svg {
    color: var(--danger-color);
}

/* Rating Badge */
.profile-rating-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: var(--warning-soft);
    padding: 4px 10px;
    border-radius: 6px;
    white-space: nowrap;
}

[data-theme="dark"] .profile-rating-badge {
    background: var(--warning-soft);
}

.profile-rating-badge .star {
    color: var(--warning-color);
    font-size: 1rem;
}

.profile-rating-badge .value {
    color: var(--text-primary);
    font-weight: 600;
    font-size: 0.875rem;
}

/* Empty State */
.profile-empty-state {
    text-align: center;
    padding: 60px 20px;
    color: var(--text-muted);
}

.profile-empty-state svg {
    margin-bottom: 16px;
    color: var(--border-color);
}

.profile-empty-state p {
    margin: 0;
    font-size: 1.125rem;
}

/* Review Comment Text */
.profile-review-text {
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.6;
}

.profile-review-response {
    color: var(--text-muted);
    margin: 0;
    font-style: italic;
    font-size: 0.9rem;
}

/* Support Tab Styles */
.profile-support-list-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-primary);
    font-weight: 600;
    margin: 24px 0 16px 0;
}

.profile-support-count-badge {
    background: var(--primary-color);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.875rem;
}

.support-ticket-card {
    display: block;
    text-decoration: none;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 16px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.support-ticket-card:hover {
    background: var(--bg-hover);
    border-color: var(--border-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.support-ticket-title {
    color: var(--text-primary);
    font-weight: 600;
    margin: 0 0 8px 0;
}

.ticket-status-badge {
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 0.75rem;
    color: white;
}

.ticket-status-open {
    background: var(--warning-color);
}

.ticket-status-closed {
    background: var(--secondary-color);
}

.ticket-reply-badge {
    background: var(--success-color);
    color: white;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 0.75rem;
}

.ticket-message-text {
    color: var(--text-secondary);
    margin: 0 0 12px 0;
    line-height: 1.6;
    white-space: pre-wrap;
}

.ticket-admin-reply {
    margin-top: 16px;
    padding: 16px;
    background: var(--card-bg);
    border-left: 4px solid var(--success-color);
    border-radius: 8px;
}

.ticket-admin-reply-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.ticket-admin-reply-label {
    color: var(--success-color);
    font-size: 0.875rem;
    font-weight: 600;
}

.ticket-admin-reply-text {
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.6;
    white-space: pre-wrap;
}

/* Support Modal Styles */
.profile-modal-content {
    border-radius: 16px;
    border: none;
    box-shadow: var(--shadow-lg);
}

.profile-modal-header {
    background: var(--button-gradient);
    color: white;
    border-radius: 16px 16px 0 0;
    padding: 24px;
}

.profile-modal-title {
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0;
}

.profile-modal-body {
    padding: 32px;
}

.profile-modal-label {
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 10px;
    display: block;
}

.profile-modal-input {
    border: 2px solid var(--border-color);
    border-radius: 10px;
    padding: 14px;
    font-size: 15px;
    transition: all 0.3s;
    background: var(--input-bg);
    color: var(--text-primary);
}

.profile-modal-input:focus {
    border-color: var(--primary-color);
    outline: none;
    background: var(--input-bg);
}

.profile-modal-textarea {
    border: 2px solid var(--border-color);
    border-radius: 10px;
    padding: 14px;
    font-size: 15px;
    resize: vertical;
    transition: all 0.3s;
    background: var(--input-bg);
    color: var(--text-primary);
}

.profile-modal-textarea:focus {
    border-color: var(--primary-color);
    outline: none;
    background: var(--input-bg);
}

.btn-gradient {
    background: var(--button-gradient);
    color: white;
    padding: 12px 32px;
    border-radius: 8px;
    border: none;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-gradient:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px var(--primary-glow-strong);
    color: white;
}

[data-theme="dark"] .support-ticket-card {
    background: var(--card-bg);
}

[data-theme="dark"] .ticket-admin-reply {
    background: var(--bg-primary);
}

/* Reservation Card Styles */
.reservation-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 16px;
    transition: all 0.3s ease;
}

.reservation-title {
    color: var(--text-primary);
    font-weight: 600;
    margin: 0 0 8px 0;
}

.reservation-link {
    color: var(--text-primary);
    text-decoration: none;
}

.reservation-link:hover {
    color: var(--primary-color);
}

.reservation-details {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.reservation-detail-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.reservation-notes {
    margin-top: 12px;
    padding: 12px;
    background: var(--card-bg);
    border-radius: 8px;
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.reservation-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
    margin-left: 16px;
}

.reservation-status-badge {
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.75rem;
    white-space: nowrap;
    color: white;
}

/* Load More Button */
.btn-load-more {
    background: var(--primary-color);
    color: white;
    padding: 12px 32px;
    border-radius: 8px;
    border: none;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-load-more:hover {
    background: var(--primary-hover);
    transform: scale(1.05);
    color: white;
}

[data-theme="dark"] .reservation-card {
    background: var(--card-bg);
}

[data-theme="dark"] .reservation-notes {
    background: var(--bg-primary);
}

/* Danger Zone */
.profile-danger-zone {
    border: 2px solid var(--danger-soft);
    border-radius: 12px;
    padding: 24px;
    background: var(--danger-soft);
}

[data-theme="dark"] .profile-danger-zone {
    border-color: var(--danger-soft);
    background: var(--danger-soft);
}

.profile-danger-title {
    color: var(--danger-color);
    font-weight: 600;
    font-size: 1.125rem;
    margin-bottom: 12px;
}

.profile-danger-text {
    color: var(--danger-color);
    margin-bottom: 20px;
}

[data-theme="dark"] .profile-danger-text {
    color: var(--danger-color);
}

/* Modal Ticket Form */
.profile-modal-header {
    background: var(--button-gradient);
    color: white;
    border-radius: 16px 16px 0 0;
    padding: 24px;
}

.profile-modal-title {
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
}

.profile-modal-content {
    border-radius: 16px;
    border: none;
    box-shadow: var(--shadow-lg);
}

.profile-modal-body {
    padding: 32px;
}

/* Ticket Status Badges */
.ticket-status-badge {
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
}

.ticket-status-open {
    background: var(--warning-soft);
    color: var(--warning-color);
}

.ticket-status-closed {
    background: var(--border-color);
    color: var(--text-secondary);
}

.ticket-status-pending {
    background: var(--warning-soft);
    color: var(--warning-color);
}

/* ========================================
   RESTAURANT DETAIL PAGE - MODAL STYLES (THEME AWARE)
======================================== */

/* Modal Header Gradients */
.modal-header-gradient-purple {
    background: var(--primary-color);
    color: white;
    border-radius: 20px 20px 0 0;
}

.modal-header-gradient-pink {
    background: var(--primary-color);
    color: white;
    border-radius: 20px 20px 0 0;
}

.modal-header-gradient-orange {
    background: var(--primary-color);
    color: white;
    border-radius: 20px 20px 0 0;
}

.modal-header-gradient-cyan {
    background: var(--primary-color);
    color: white;
    border-radius: 20px 20px 0 0;
}

.modal-header-gradient-green {
    background: var(--primary-color);
    color: white;
    border-radius: 20px 20px 0 0;
}

/* Theme-aware Modal Headers */
.modal-header-themed {
    border-bottom: 1px solid var(--modal-border);
    padding: 20px 30px;
    background: var(--primary-color);
}

.modal-title-themed {
    font-weight: 700;
    color: var(--text-inverse);
}

.modal-header-themed .btn-close {
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

.modal-header-themed .btn-close:hover {
    opacity: 1;
}

/* Modal Title Icons */
.modal-title svg,
.modal-title i {
    vertical-align: middle;
    margin-right: 8px;
}

.modal-title-themed svg,
.modal-title-themed i {
    vertical-align: middle;
    margin-right: 8px;
}

/* Button Icons */
.btn svg,
.btn i {
    vertical-align: middle;
    margin-right: 6px;
}

/* Theme-aware Modal Bodies */
.modal-body-themed {
    padding: 30px;
    background: var(--card-bg);
    color: var(--text-primary);
}

/* Modal Content Containers */
.modal-content-themed {
    border-radius: 20px;
    border: none;
    background: var(--card-bg);
}

/* Cuisines List Grid */
.cuisines-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 15px;
}

.cuisine-item-card {
    background: var(--bg-secondary);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
    color: var(--text-primary);
}

.cuisine-item-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px var(--card-shadow);
}

.cuisine-emoji {
    font-size: 32px;
    margin-bottom: 8px;
}

.cuisine-name {
    font-weight: 600;
    font-size: 14px;
}

/* Facilities Grid */
.facilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 20px;
}

.facility-item-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px;
    background: var(--bg-secondary);
    border-radius: 12px;
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
    color: var(--text-primary);
}

.facility-item-card:hover {
    border-color: var(--facility-orange);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px var(--card-shadow);
}

.facility-icon {
    font-size: 2rem;
    margin-bottom: 10px;
    color: var(--facility-orange);
}

.facility-name {
    font-weight: 600;
    font-size: 0.95rem;
}

/* Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    aspect-ratio: 1;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* Contact Modal Items */
.contact-modal-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.contact-item-card {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: var(--bg-secondary);
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.contact-item-card:hover {
    border-color: var(--primary-color);
    transform: translateX(5px);
}

.contact-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: var(--primary-color);
    color: white;
    font-size: 1.5rem;
}

.contact-item-content {
    flex: 1;
}

.contact-item-label {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 4px;
}

.contact-item-value {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
}

.contact-item-link {
    color: var(--primary-color);
    text-decoration: none;
}

.contact-item-link:hover {
    text-decoration: underline;
}

/* Social Media Grid */
.social-media-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
}

.social-media-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: var(--bg-secondary);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-media-item:hover {
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px var(--card-shadow);
}

.social-icon-large {
    font-size: 2rem;
    color: var(--primary-color);
}

.social-platform-name {
    font-weight: 600;
    font-size: 1rem;
    color: var(--text-primary);
}

/* Alert Box Themed */
.alert-themed {
    background: var(--bg-secondary);
    border: 2px solid var(--border-color);
    margin-top: 20px;
    padding: 15px;
    border-radius: 12px;
    color: var(--text-secondary);
}

.alert-icon {
    margin-right: 8px;
}

.alert-text {
    font-size: 14px;
}

/* Container Classes */
.detail-buttons-container {
    margin-top: 30px;
    margin-bottom: 30px;
}

.menu-section-container {
    max-width: 1200px;
}

/* Business Hours List */
.business-hours-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.business-hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    background: var(--bg-secondary);
    border-radius: 10px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.business-hours-item:hover {
    border-color: var(--border-color);
}

.business-hours-item.today {
    background: var(--bg-tertiary);
    border-color: var(--primary-color);
}

.day-name {
    font-weight: 500;
    color: var(--text-primary);
}

.business-hours-item.today .day-name {
    font-weight: 600;
}

.today-badge {
    font-size: 12px;
    color: var(--primary-color);
    margin-left: 8px;
}

.hours-time {
    color: var(--text-secondary);
    font-weight: 500;
}

.closed-status {
    color: var(--danger-color);
}



/* ========================================
   REVIEWS PAGE (YORUMLAR.PHP) STYLES
======================================== */

/* Page Container */
.reviews-page-container {
    padding: 40px 15px;
}

/* Restaurant Header Card */
.reviews-restaurant-header {
    margin-bottom: 30px;
    text-align: center;
}

.reviews-restaurant-title {
    font-size: 2rem;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.reviews-page-subtitle {
    font-size: 1.5rem;
    color: var(--text-secondary);
    font-weight: 400;
    margin-bottom: 20px;
}

.reviews-rating-summary {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.reviews-rating-display {
    font-size: 3.5rem;
    color: var(--primary-color);
    font-weight: 700;
    line-height: 1;
}

.reviews-stars-container {
    display: flex;
    justify-content: center;
    gap: 5px;
    margin-top: 10px;
}

.reviews-star {
    font-size: 1.5rem;
}

.reviews-star.filled {
    color: var(--primary-color);
}

.reviews-star.empty {
    color: var(--border-color);
}

.reviews-rating-info {
    text-align: left;
}

.reviews-count-text {
    font-size: 1.2rem;
    color: var(--text-primary);
    font-weight: 600;
}

.reviews-rating-label {
    color: var(--text-secondary);
    margin-top: 5px;
}

.reviews-action-buttons {
    margin-top: 25px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

/* Review Item */
.review-item {
    padding: 25px;
}

.review-item-divider {
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 20px;
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 15px;
    flex-wrap: wrap;
    gap: 15px;
}

.review-user-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.review-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
    font-weight: 600;
    flex-shrink: 0;
}

.review-user-details .review-user-name {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 1.1rem;
}

.review-date {
    color: var(--text-secondary);
    font-size: 0.875rem;
    margin-top: 2px;
}

.review-rating-stars {
    display: flex;
    gap: 3px;
}

.review-rating-star {
    font-size: 1.3rem;
}

.review-rating-star.filled {
    color: var(--primary-color);
}

.review-rating-star.empty {
    color: var(--border-color);
}

.review-comment-text {
    color: var(--text-primary);
    line-height: 1.7;
    font-size: 1rem;
}

.review-no-comment {
    color: var(--text-secondary);
    font-style: italic;
}

/* Empty State */
.reviews-empty-state {
    text-align: center;
    padding: 60px 20px;
}

.reviews-empty-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    stroke: var(--border-color);
}

.reviews-empty-title {
    color: var(--text-secondary);
    font-size: 1.3rem;
    font-weight: 500;
}

.reviews-empty-description {
    color: var(--text-secondary);
    margin-top: 10px;
}

/* Star Rating Input (Modal) */
.star-rating-input {
    display: flex;
    gap: 8px;
    font-size: 2rem;
    cursor: pointer;
}

.star-rating-input .star {
    transition: color 0.2s ease;
}

/* Responsive */
@media (max-width: 768px) {
    .reviews-page-container {
        padding: 20px 10px;
    }
    
    .reviews-restaurant-title {
        font-size: 1.5rem;
    }
    
    .reviews-page-subtitle {
        font-size: 1.2rem;
    }
    
    .reviews-rating-display {
        font-size: 2.5rem;
    }
    
    .reviews-rating-summary {
        gap: 20px;
    }
}



/* Responsive Adjustments */
@media (max-width: 768px) {
    .cuisines-list {
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
        gap: 10px;
    }
    
    .facilities-grid {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
        gap: 15px;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 10px;
    }
    
    .social-media-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-modal-grid {
        gap: 15px;
    }
    
    .modal-header-themed,
    .modal-body-themed {
        padding: 20px;
    }
}

@media (max-width: 768px) {
    input,
    textarea,
    select,
    .form-control,
    .form-select,
    .profile-modal-input,
    .profile-modal-textarea {
        font-size: 16px !important;
    }

    #mainSearch,
    #menuSearch,
    .menu-search-wrapper .form-control,
    .search-wrapper #mainSearch {
        font-size: 16px !important;
        -webkit-text-size-adjust: 100%;
    }
}

/* Public multi-menu tabs */
.public-menu-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 1.25rem 0 1.5rem;
}

.public-menu-tab {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0.75rem 1.1rem;
    border-radius: 999px;
    border: 1px solid rgba(17, 24, 39, 0.12);
    background: rgba(255, 255, 255, 0.88);
    color: #1f2937;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
}

.public-menu-tab:hover,
.public-menu-tab.active {
    border-color: #ff6b35;
    background: #ff6b35;
    color: #fff;
    box-shadow: 0 12px 26px rgba(255, 107, 53, 0.24);
}

.public-menu-intro {
    margin: 0 0 1.75rem;
}

.public-menu-intro-media {
    margin-bottom: 1rem;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
}

.public-menu-intro-media img {
    width: 100%;
    display: block;
    object-fit: cover;
    max-height: 340px;
}

.public-menu-intro-text {
    margin: 0;
    padding: 1rem 1.1rem;
    border-radius: 18px;
    background: rgba(255, 107, 53, 0.08);
    color: #374151;
    line-height: 1.65;
}

body.dark-mode .public-menu-tab {
    background: rgba(24, 28, 39, 0.92);
    border-color: rgba(255, 255, 255, 0.12);
    color: #f9fafb;
}

/* Trust stats section */
.trust-stats-section {
    padding: 26px 0 18px;
    max-height: 720px;
    opacity: 1;
    overflow: hidden;
    visibility: visible;
    transform: translateY(0);
    transition: max-height 0.35s ease, opacity 0.25s ease, padding 0.35s ease, margin 0.35s ease, transform 0.25s ease, visibility 0.25s ease;
}

.trust-stats-section.is-collapsed {
    max-height: 0;
    opacity: 0;
    padding-top: 0;
    padding-bottom: 0;
    margin: 0;
    pointer-events: none;
    visibility: hidden;
    transform: translateY(-8px);
}

.trust-stats-shell {
    max-width: 1120px;
    margin: 0 auto;
    padding: 24px;
    border-radius: 28px;
    border: 1px solid rgba(148, 163, 184, 0.16);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(247, 249, 252, 0.96) 100%);
    box-shadow: 0 20px 50px rgba(99, 102, 241, 0.08);
    overflow: hidden;
}

.trust-stats-header {
    text-align: center;
    margin-bottom: 20px;
}

.trust-stats-title {
    margin: 0;
    color: #0f172a;
    font-size: clamp(1.5rem, 2.15vw, 2rem);
    font-weight: 800;
    letter-spacing: -0.03em;
}

.trust-stats-primary {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-bottom: 12px;
}

.trust-stat-card {
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 122px;
    padding: 16px 18px;
    border-radius: 22px;
    border: 1px solid rgba(129, 140, 248, 0.12);
    background: #ffffff;
    box-shadow: 0 12px 28px rgba(99, 102, 241, 0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.trust-stat-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 34px rgba(99, 102, 241, 0.11);
    border-color: rgba(99, 102, 241, 0.2);
}

.trust-stat-card-primary {
    justify-content: flex-start;
}

.trust-stat-copy {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
}

.trust-stats-secondary {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
}

.trust-feature-card {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 68px;
    padding: 12px 14px;
    border-radius: 18px;
    border: 1px solid rgba(148, 163, 184, 0.16);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 8px 20px rgba(99, 102, 241, 0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.trust-feature-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 24px rgba(99, 102, 241, 0.08);
}

.trust-stat-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 15px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.14) 0%, rgba(59, 130, 246, 0.1) 100%);
    color: #4f46e5;
    flex-shrink: 0;
}

.trust-feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 12px;
    background: rgba(99, 102, 241, 0.1);
    color: #4f46e5;
    flex-shrink: 0;
}

.trust-stat-value {
    color: #0f172a;
    font-size: clamp(1.7rem, 2vw, 2.25rem);
    line-height: 1;
    font-weight: 800;
    letter-spacing: -0.04em;
}

.trust-stat-label {
    color: #64748b;
    font-size: 0.92rem;
    line-height: 1.45;
    font-weight: 600;
}

.trust-feature-title {
    margin: 0;
    color: #334155;
    font-size: 0.88rem;
    font-weight: 700;
    line-height: 1.45;
}

.trust-stats-note {
    margin: 8px 0 0;
    text-align: center;
    color: #64748b;
    font-size: 0.9rem;
    line-height: 1.6;
    padding: 0 10px;
}

@media (max-width: 991px) {
    .trust-stats-primary {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .trust-stats-secondary {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .hero-actions {
        margin-top: 10px;
    }

    .location-search-btn {
        width: 100%;
        min-height: 46px;
        padding: 0 16px;
        font-size: 0.95rem;
    }

    .location-clear-btn {
        right: 8px;
        width: 30px;
        height: 30px;
    }

    .trust-stats-section {
        padding: 18px 0 12px;
    }

    .trust-stats-shell {
        padding: 18px 16px;
        border-radius: 24px;
    }

    .trust-stats-header {
        margin-bottom: 16px;
    }

    .trust-stats-title {
        font-size: 1.35rem;
        line-height: 1.35;
    }

    .trust-stats-primary {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .trust-stat-card {
        min-height: auto;
        justify-content: center;
        align-items: center;
        text-align: center;
        padding: 16px 14px;
    }

    .trust-stat-value {
        font-size: 1.85rem;
    }

    .trust-stat-copy {
        align-items: center;
        text-align: center;
    }

    .trust-stats-secondary {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .trust-feature-card {
        min-height: 0;
        padding: 10px 2px;
        border: none;
        border-radius: 0;
        background: transparent;
        box-shadow: none;
    }

    .trust-feature-card:hover {
        transform: none;
        box-shadow: none;
    }

    .trust-feature-icon {
        width: 28px;
        height: 28px;
        border-radius: 999px;
    }

    .trust-feature-title {
        font-size: 0.9rem;
    }
}

body.dark-mode .public-menu-intro-text {
    background: rgba(255, 255, 255, 0.08);
    color: #f3f4f6;
}

.seo-content-block {
    margin: 2.5rem auto 0;
    padding: 1.25rem 1.5rem;
    border-radius: 20px;
    background: rgba(15, 23, 42, 0.04);
}

.seo-content-block p {
    margin: 0;
    color: #4b5563;
    line-height: 1.75;
    font-size: 0.98rem;
}

body.dark-mode .seo-content-block {
    background: rgba(255, 255, 255, 0.06);
}

body.dark-mode .seo-content-block p {
    color: #e5e7eb;
}
