/* ============================================
   Genel Stiller
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #2563eb;
    --primary-dark: #1e40af;
    --secondary-color: #64748b;
    --success-color: #10b981;
    --error-color: #ef4444;
    --warning-color: #f59e0b;
    --accent-yellow: #FFD700;
    --accent-orange: #FF8C00;
    --accent-red: #DC143C;
    --text-primary: #1e293b;
    --text-secondary: #64748b;
    --bg-primary: #ffffff;
    --bg-secondary: #f8fafc;
    --bg-tertiary: #f1f5f9;
    --border-color: #e2e8f0;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --transition: all 0.3s ease;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: #1e293b;
    font-size: 16px;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
    box-sizing: border-box;
}

body.admin-dashboard-modern {
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

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

/* ============================================
   Header
   ============================================ */
.main-header {
    background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 50%, #3b82f6 100%);
    color: white;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.main-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 140, 0, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.header-top {
    background: rgba(0, 0, 0, 0.15);
    padding: 1.25rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 1;
}

.header-top-content {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.logo-section {
    display: flex;
    align-items: center;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    color: white;
    transition: var(--transition);
}

.logo-link:hover {
    transform: scale(1.05);
}

.site-logo {
    width: 50px;
    height: 50px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.header-nav {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    border-radius: var(--radius-lg);
    font-weight: 500;
    transition: var(--transition);
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    font-size: 0.95rem;
}

.nav-link:hover {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.nav-link.active {
    background: var(--accent-yellow);
    color: #000;
    border-color: var(--accent-yellow);
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.4);
}

.nav-link.active:hover {
    background: #ffed4e;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(255, 215, 0, 0.5);
}

.nav-link i {
    font-size: 1rem;
}


/* ============================================
   View Toggle
   ============================================ */
.view-toggle-sidebar {
    padding: 0.5rem 1rem;
    border-bottom: 1px solid var(--border-color);
    background: var(--bg-secondary);
    flex-shrink: 0;
}

.toggle-buttons {
    display: flex;
    gap: 0.375rem;
    flex-direction: row;
    background: var(--bg-tertiary);
    padding: 0.25rem;
    border-radius: 8px;
}

.toggle-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.375rem;
    padding: 0.5rem 0.75rem;
    background: #f8f9ff !important;
    color: #5348e7 !important;
    border: 1px solid #b9b5f9 !important;
    box-shadow: 0 2px 6px rgba(83, 72, 231, 0.18) !important;
    border-radius: 10px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: inherit;
    font-size: 0.8rem;
    flex: 1;
    text-align: center;
    position: relative;
}

.toggle-btn i {
    font-size: 0.875rem;
    color: inherit;
}

.toggle-btn:hover {
    transform: translateY(-1px);
    background: #eef0ff !important;
    color: #5348e7 !important;
    box-shadow: 0 4px 12px rgba(83, 72, 231, 0.25) !important;
}

.toggle-btn.active {
    background: #1d4ed8 !important; /* en koyu mavi */
    color: #ffffff !important;
    border: 1px solid #1e40af !important;
    box-shadow: 0 4px 14px rgba(15, 23, 42, 0.45) !important;
}

/* ============================================
   Main Wrapper & Sidebar
   ============================================ */
.main-wrapper {
    display: flex;
    gap: 0;
    min-height: auto;
    position: relative;
    margin-bottom: 0;
    padding-bottom: 0;
}

.main-content {
    margin-left: 340px;
    width: calc(100% - 340px);
}


.sidebar {
    width: 340px;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    border-right: 2px solid var(--border-color);
    padding: 0;
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    overflow-y: hidden;
    box-shadow: 4px 0 12px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    z-index: 1001;
    display: flex;
    flex-direction: column;
}

/* Kaydırma çubuğunu gizle (tüm tarayıcılar için) */
.sidebar::-webkit-scrollbar {
    display: none;
}

.sidebar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.sidebar-bottom {
    margin-top: auto;
    padding: 0.5rem 0 0.5rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    flex-shrink: 0;
}

.sidebar-header {
    padding: 0.5rem 0.75rem;
    border-bottom: none;
    background: var(--bg-primary);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
    gap: 0.4rem;
    position: relative;
    min-height: auto;
    border-radius: 0 0 20px 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    margin-bottom: 0.4rem;
    z-index: 10;
    flex-shrink: 0;
}

.sidebar-header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    gap: 0.75rem;
}

.sidebar-logo {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-shrink: 0;
    margin: 0;
    padding: 0;
}

.sidebar-social-section {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.5rem;
    flex: 1;
    min-width: 0;
    max-width: calc(100% - 120px);
}

.sidebar-social {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--bg-secondary);
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition);
    font-size: 1rem;
    border: 2px solid transparent;
    flex-shrink: 0;
}

.social-facebook {
    background: #1877f2;
    color: white;
    border-color: #1877f2;
}

.social-facebook:hover {
    background: #166fe5;
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 6px 12px rgba(24, 119, 242, 0.4);
}

.social-instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
    border-color: transparent;
}

.social-instagram:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 6px 12px rgba(225, 48, 108, 0.4);
}

.social-youtube {
    background: #ff0000;
    color: white;
    border-color: #ff0000;
}

.social-youtube:hover {
    background: #cc0000;
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 6px 12px rgba(255, 0, 0, 0.4);
}

.sidebar-title {
    text-align: right;
    max-width: 100%;
    width: 100%;
}

.sidebar-title h3 {
    font-size: 0.75rem;
    font-weight: 600;
    color: #000000;
    margin: 0;
    line-height: 1.3;
    padding-bottom: 6px;
    letter-spacing: 0.2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}

.site-logo-image {
    width: 80px;
    height: 80px;
    object-fit: contain;
    border-radius: 0;
    background: transparent;
    padding: 0;
    margin: 0;
    box-shadow: none;
    transition: var(--transition);
    display: block;
    line-height: 0;
}

.site-logo-image:hover {
    transform: scale(1.05);
    opacity: 0.9;
}

.logo-placeholder {
    width: 80px;
    height: 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: transparent;
    border: 1px dashed rgba(0, 0, 0, 0.1);
    border-radius: var(--radius-sm);
    color: var(--text-secondary);
    gap: 0.25rem;
    transition: var(--transition);
}

.logo-placeholder:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.logo-placeholder i {
    font-size: 1.75rem;
}

.logo-placeholder span {
    font-size: 0.7rem;
    text-align: center;
    font-weight: 500;
}

.logo-link-sidebar {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: var(--transition);
    margin: 0;
    padding: 0;
    line-height: 0;
}

.logo-link-sidebar:hover {
    opacity: 0.8;
}

.sidebar-close {
    display: none;
    background: transparent;
    border: none;
    color: var(--text-secondary);
    font-size: 1.25rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: var(--radius-md);
    transition: var(--transition);
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 1002;
}

.sidebar-close:hover {
    background: var(--bg-tertiary);
    color: var(--text-primary);
}

.mobile-menu-toggle {
    display: none;
    position: fixed;
    top: 1rem;
    left: 1rem;
    z-index: 1000;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 8px;
    padding: 0.75rem 1rem;
    font-size: 1.25rem;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.mobile-menu-toggle:active {
    transform: translateY(0);
}

.filter-section {
    padding: 0.75rem 1rem;
    flex-shrink: 0;
}

.sidebar-info-note {
    margin: 0 1rem 0 1rem;
    padding: 0.6rem 0.75rem;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    color: var(--text-secondary);
    font-size: 0.75rem;
    line-height: 1.3;
    text-align: center;
}

.sidebar-info-note p {
    margin-bottom: 0.4rem;
}

.sidebar-info-note p:last-child {
    margin-bottom: 0;
}

.sidebar-info-meta {
    color: var(--text-primary);
    font-weight: 600;
    font-size: 0.85rem;
}

.sidebar-suggest {
    margin: 0 1rem 0.4rem 1rem;
    display: flex;
    justify-content: center;
}

.btn-suggest {
    width: 100%;
    justify-content: center;
    gap: 0.5rem;
    font-weight: 700;
    background: #f8f9ff !important;
    color: #5348e7 !important;
    border: 1px solid #b9b5f9 !important;
    box-shadow: 0 2px 6px rgba(83, 72, 231, 0.18) !important;
    text-decoration: none;
    border-radius: 10px;
}

.btn-suggest:hover {
    transform: translateY(-1px);
    background: #eef0ff !important;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(83, 72, 231, 0.25) !important;
}

.sidebar-home {
    margin: 0 1rem 0.4rem 1rem;
}

.btn-home {
    width: 100%;
    justify-content: center;
    gap: 0.5rem;
    font-weight: 700;
    color: #5348e7 !important;
    background: #f8f9ff !important;
    border: 1px solid #b9b5f9 !important;
    box-shadow: 0 2px 6px rgba(83, 72, 231, 0.18) !important;
    text-decoration: none;
    border-radius: 10px;
}

.btn-home:hover {
    transform: translateY(-1px);
    background: #eef0ff !important;
    color: #5348e7 !important;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(83, 72, 231, 0.25) !important;
}

.btn-home i,
.btn-suggest i {
    color: inherit;
}

.search-bar {
    display: flex;
    align-items: center;
    gap: 0;
    padding: 0;
    margin-bottom: 0.5rem;
    background: transparent;
    border: none;
    border-radius: 0;
    box-shadow: none;
}

.search-input {
    flex: 1;
    width: 100%;
    padding: 1rem 1.25rem;
    border: 1px solid #d6e3f0;
    border-radius: 12px;
    font-size: 1rem;
    color: #10263d;
    background: #ffffff;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.08);
    text-align: center;
}

.search-input:focus {
    outline: none;
    border-color: #5e93c6;
    box-shadow: 0 0 0 3px rgba(94, 147, 198, 0.18);
}

.search-button {
    display: none;
}

.filter-group {
    margin-bottom: 2rem;
}

.filter-group h4 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
}

.filter-options {
    display: flex;
    flex-direction: column;
    gap: 5px;
    align-items: stretch;
}

.filter-option {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 0.65rem 1.1rem;
    margin: 0 0.2px;
    background: linear-gradient(135deg, #f9fbfd 0%, #f1f5f9 100%);
    color: #10263d;
    text-decoration: none;
    border-radius: 11px; /* 20% smaller than 14px */
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #d6e3f0;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 10px 26px rgba(9, 39, 71, 0.12);
    position: relative;
    overflow: hidden;
    width: calc(100% - 0.4px);
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    user-select: none;
}

.filter-option::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.25s ease;
    border-radius: 11px; /* match container radius */
    z-index: 0;
    background:
        radial-gradient(circle at 20% 20%, rgba(14, 165, 233, 0.08), transparent 45%),
        radial-gradient(circle at 80% 20%, rgba(14, 165, 233, 0.06), transparent 40%);
}

.filter-option > * {
    position: relative;
    z-index: 1;
}

.filter-option:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(9, 39, 71, 0.18);
}

.filter-option.active {
    color: #0b1f35;
    box-shadow: 0 14px 32px rgba(9, 39, 71, 0.26);
    transform: translateY(-4px);
}

.filter-option i {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    border-radius: 8px;
    background: rgba(14, 165, 233, 0.1);
    flex-shrink: 0;
    border: 1px solid rgba(14, 165, 233, 0.16);
}

.filter-option.active i {
    background: rgba(14, 165, 233, 0.16);
}

.filter-option span:not(.count) {
    flex: 1;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    text-transform: uppercase;
}

.filter-option .count {
    background: rgba(14, 165, 233, 0.1);
    padding: 0.3rem 0.6rem;
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 800;
    min-width: 34px;
    text-align: center;
    border: 1px solid rgba(14, 165, 233, 0.18);
}

.filter-option.active .count {
    background: rgba(14, 165, 233, 0.16);
    color: #0b1f35;
}

/* Kategori Filtre Renkleri - Resmi kurum uyumlu */
.filter-option.filter-all {
    background: linear-gradient(135deg, #f3f7fb, #e6eef7);
    color: #10263d;
    border: 1px solid #cfdced;
    font-weight: 700;
}

.filter-option.filter-all i {
    background: rgba(59, 130, 246, 0.08);
    color: #10263d;
}

.filter-option.filter-all .count {
    background: rgba(16, 38, 61, 0.06);
    color: #10263d;
}

.filter-option.filter-all.active {
    background: linear-gradient(135deg, #e1e9f4, #d5e0ef);
    color: #0b1f35;
    border-color: #c4d2e7;
}


.filter-option.filter-tarihi {
    background: #e05e56;
    color: #ffffff;
    border: none;
    border-radius: 14px;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: -0.01em;
    text-transform: none;
    padding: 0.5rem 1.5rem;
    white-space: nowrap;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    box-shadow: 0 3px 10px rgba(224, 94, 86, 0.22);
}

.filter-option.filter-tarihi .filter-text-wrapper {
    white-space: normal;
}

.filter-option.filter-tarihi .filter-title,
.filter-option.filter-tarihi .filter-subtitle {
    white-space: nowrap;
}

.filter-option.filter-tarihi i {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    border: 1px solid rgba(245, 245, 245, 0.4);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.filter-option.filter-tarihi:hover {
    background: #d14a42;
    box-shadow: 0 4px 14px rgba(224, 94, 86, 0.3);
    transform: translateY(-2px) scale(1.015);
}

.filter-option.filter-tarihi.active {
    background: #d14a42;
    box-shadow: 0 3px 12px rgba(224, 94, 86, 0.35);
    color: #ffffff;
}

.filter-option.filter-tarihi.active .filter-title {
    color: #ffffff;
}

.filter-option.filter-tarihi.active .filter-subtitle {
    color: rgba(255, 255, 255, 0.9);
}

.filter-option.filter-tarihi .filter-text-wrapper {
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
    flex: 1;
    align-items: flex-start;
}

.filter-option.filter-tarihi .filter-title {
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: -0.01em;
    line-height: 1.3;
    color: #ffffff;
}

.filter-option.filter-tarihi .filter-subtitle {
    font-weight: 400;
    font-size: 0.8rem;
    letter-spacing: -0.01em;
    text-transform: none;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.3;
}

.filter-option.filter-tarihi .count {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.4);
    color: #ffffff;
}

.filter-option.filter-tarihi.active .count {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    color: #ffffff;
}

.filter-option.filter-doğa {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: #ffffff;
    border: none;
    border-radius: 14px;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: -0.01em;
    text-transform: none;
    padding: 0.5rem 1.5rem;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    box-shadow: 0 3px 10px rgba(16, 185, 129, 0.22);
}

.filter-option.filter-doğa .filter-text-wrapper {
    white-space: normal;
}

.filter-option.filter-doğa i {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.25);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.filter-option.filter-doğa:hover {
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
    box-shadow: 0 4px 14px rgba(16, 185, 129, 0.3);
    transform: translateY(-2px) scale(1.015);
}

.filter-option.filter-doğa.active {
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
    box-shadow: 0 5px 18px rgba(16, 185, 129, 0.4);
    color: #ffffff;
}

.filter-option.filter-doğa.active .filter-title {
    color: #ffffff;
}

.filter-option.filter-doğa.active .filter-subtitle {
    color: rgba(255, 255, 255, 0.9);
}

.filter-option.filter-doğa .filter-text-wrapper {
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
    flex: 1;
    align-items: flex-start;
}

.filter-option.filter-doğa .filter-title {
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: -0.01em;
    line-height: 1.3;
    color: #ffffff;
}

.filter-option.filter-doğa .filter-subtitle {
    font-weight: 400;
    font-size: 0.8rem;
    letter-spacing: -0.01em;
    text-transform: none;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.3;
}

.filter-option.filter-doğa .count {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.4);
    color: #ffffff;
}

.filter-option.filter-doğa.active .count {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    color: #ffffff;
}

.filter-option.filter-turistik {
    background: linear-gradient(135deg, #e2b523 0%, #d4a017 100%);
    color: #ffffff;
    border: none;
    border-radius: 14px;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: -0.01em;
    text-transform: none;
    padding: 0.5rem 1.5rem;
    white-space: nowrap;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    box-shadow: 0 3px 10px rgba(226, 181, 35, 0.22);
}

.filter-option.filter-turistik .filter-text-wrapper {
    white-space: normal;
}

.filter-option.filter-turistik i {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.25);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.filter-option.filter-turistik:hover {
    background: linear-gradient(135deg, #d4a017 0%, #c6930f 100%);
    box-shadow: 0 4px 14px rgba(226, 181, 35, 0.3);
    transform: translateY(-2px) scale(1.015);
}

.filter-option.filter-turistik.active {
    background: linear-gradient(135deg, #d4a017 0%, #c6930f 100%);
    box-shadow: 0 5px 18px rgba(226, 181, 35, 0.4);
    color: #ffffff;
}

.filter-option.filter-turistik.active .filter-title {
    color: #ffffff;
}

.filter-option.filter-turistik.active .filter-subtitle {
    color: rgba(255, 255, 255, 0.9);
}

.filter-option.filter-turistik .filter-text-wrapper {
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
    flex: 1;
    align-items: flex-start;
}

.filter-option.filter-turistik .filter-title {
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: -0.01em;
    line-height: 1.3;
    color: #ffffff;
}

.filter-option.filter-turistik .filter-subtitle {
    font-weight: 400;
    font-size: 0.8rem;
    letter-spacing: -0.01em;
    text-transform: none;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.3;
}

.filter-option.filter-turistik .count {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.4);
    color: #ffffff;
}

.filter-option.filter-turistik.active .count {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    color: #ffffff;
}

.filter-option.filter-yeme-içme {
    background: linear-gradient(135deg, #5287bb 0%, #3d6fa3 100%);
    color: #ffffff;
    border: none;
    border-radius: 14px;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: -0.01em;
    text-transform: none;
    padding: 0.5rem 1.5rem;
    white-space: nowrap;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    box-shadow: 0 3px 10px rgba(82, 135, 187, 0.22);
}

.filter-option.filter-yeme-içme .filter-text-wrapper {
    white-space: normal;
}

.filter-option.filter-yeme-içme i {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.25);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.filter-option.filter-yeme-içme:hover {
    background: linear-gradient(135deg, #3d6fa3 0%, #2d5a8f 100%);
    box-shadow: 0 4px 14px rgba(82, 135, 187, 0.3);
    transform: translateY(-2px) scale(1.015);
}

.filter-option.filter-yeme-içme.active {
    background: linear-gradient(135deg, #3d6fa3 0%, #2d5a8f 100%);
    box-shadow: 0 5px 18px rgba(82, 135, 187, 0.4);
    color: #ffffff;
}

.filter-option.filter-yeme-içme.active .filter-title {
    color: #ffffff;
}

.filter-option.filter-yeme-içme.active .filter-subtitle {
    color: rgba(255, 255, 255, 0.9);
}

.filter-option.filter-yeme-içme .filter-text-wrapper {
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
    flex: 1;
    align-items: flex-start;
}

.filter-option.filter-yeme-içme .filter-title {
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: -0.01em;
    line-height: 1.3;
    color: #ffffff;
}

.filter-option.filter-yeme-içme .filter-subtitle {
    font-weight: 400;
    font-size: 0.8rem;
    letter-spacing: -0.01em;
    text-transform: none;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.3;
}

.filter-option.filter-yeme-içme .count {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.4);
    color: #ffffff;
}

.filter-option.filter-yeme-içme.active .count {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    color: #ffffff;
}

.filter-option.filter-konaklama-ulaşım {
    background: linear-gradient(135deg, #535068 0%, #3f3e4f 100%);
    color: #ffffff;
    border: none;
    border-radius: 14px;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: -0.01em;
    text-transform: none;
    padding: 0.5rem 1.5rem;
    white-space: nowrap;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    box-shadow: 0 3px 10px rgba(83, 80, 104, 0.22);
}

.filter-option.filter-konaklama-ulaşım .filter-text-wrapper {
    white-space: normal;
}

.filter-option.filter-konaklama-ulaşım i {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.25);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.filter-option.filter-konaklama-ulaşım:hover {
    background: linear-gradient(135deg, #3f3e4f 0%, #2d2c3a 100%);
    box-shadow: 0 4px 14px rgba(83, 80, 104, 0.3);
    transform: translateY(-2px) scale(1.015);
}

.filter-option.filter-konaklama-ulaşım.active {
    background: linear-gradient(135deg, #3f3e4f 0%, #2d2c3a 100%);
    box-shadow: 0 5px 18px rgba(83, 80, 104, 0.4);
    color: #ffffff;
}

.filter-option.filter-konaklama-ulaşım.active .filter-title {
    color: #ffffff;
}

.filter-option.filter-konaklama-ulaşım.active .filter-subtitle {
    color: rgba(255, 255, 255, 0.9);
}

.filter-option.filter-konaklama-ulaşım .filter-text-wrapper {
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
    flex: 1;
    align-items: flex-start;
}

.filter-option.filter-konaklama-ulaşım .filter-title {
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: -0.01em;
    line-height: 1.3;
    color: #ffffff;
}

.filter-option.filter-konaklama-ulaşım .filter-subtitle {
    font-weight: 400;
    font-size: 0.8rem;
    letter-spacing: -0.01em;
    text-transform: none;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.3;
}

.filter-option.filter-konaklama-ulaşım .count {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.4);
    color: #ffffff;
}

.filter-option.filter-konaklama-ulaşım.active .count {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    color: #ffffff;
}

/* ============================================
   Main Content
   ============================================ */
.main-content {
    flex: 1;
    padding: 0;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
    min-height: 100vh;
    position: relative;
    margin-left: 340px;
    width: calc(100% - 340px);
}

.main-content #list-view {
    padding: 2rem;
}

.content-view {
    display: none;
}

.content-view.active {
    display: block;
}

.content-header {
    margin-bottom: 2rem;
}

.content-header h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.content-header .result-count {
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-secondary);
}

.places-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 1.25rem;
    animation: fadeIn 0.5s ease-in;
}

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

/* ============================================
   Map View
   ============================================ */
.map-container {
    width: 100%;
    height: 100vh;
    overflow: hidden;
    position: fixed;
    top: 0;
    left: 340px;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.map-overlay {
    position: fixed;
    top: 16px;
    right: 16px;
    z-index: 2000;
    background: rgba(0, 0, 0, 1);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.35);
    border-radius: 12px;
    padding: 12px 14px;
    min-width: 200px;
}

.map-overlay-secondary {
    top: 60px;
    background: rgba(255, 255, 255, 0.35);
    color: #0f172a;
    border: 1px solid rgba(226, 232, 240, 0.6);
    box-shadow: 0 6px 14px rgba(15, 23, 42, 0.08);
}

.map-overlay-secondary .map-overlay-header {
    color: #0f172a;
}

.map-overlay-secondary .map-overlay-header i {
    color: var(--primary-color);
}

.map-overlay-secondary .map-overlay-list li {
    color: #0f172a;
}

.map-overlay-secondary .map-overlay-list li strong {
    color: var(--primary-color);
}

.map-overlay-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.map-overlay-header i {
    color: #ffffff;
}

.map-overlay-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.map-overlay-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.95rem;
    color: #ffffff;
}

.map-overlay-list li strong {
    color: #fbbf24;
    font-weight: 700;
}

#map {
    width: 100%;
    height: 100%;
}

.custom-marker {
    background: transparent;
    border: none;
}

.marker-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    border: 3px solid white;
}


.marker-tarihi {
    background: linear-gradient(135deg, #d14a42 0%, #e05e56 100%);
}

.marker-doğa {
    background: linear-gradient(135deg, #059669 0%, #10b981 100%);
}

.marker-turistik {
    background: linear-gradient(135deg, #d4a017 0%, #e2b523 100%);
}

.marker-yeme-içme {
    background: linear-gradient(135deg, #3d6fa3 0%, #5287bb 100%);
}

.marker-konaklama-ulaşım {
    background: linear-gradient(135deg, #3f3e4f 0%, #535068 100%);
}

/* Harita marker tooltip - hover ile gösterilen yer adı */
.map-marker-tooltip {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.95) 0%, rgba(30, 41, 59, 0.95) 100%) !important;
    backdrop-filter: blur(10px) !important;
    -webkit-backdrop-filter: blur(10px) !important;
    color: #ffffff !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    border-radius: 8px !important;
    padding: 0.5rem 0.75rem !important;
    font-size: 0.875rem !important;
    font-weight: 600 !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.1) inset !important;
    white-space: nowrap !important;
    max-width: 250px !important;
    text-align: center !important;
    line-height: 1.4 !important;
    pointer-events: none !important;
    z-index: 1000 !important;
}

.map-marker-tooltip::before {
    border-top-color: rgba(15, 23, 42, 0.95) !important;
}

/* Leaflet popup wrapper genişliği */
.leaflet-popup-content-wrapper {
    min-width: 400px !important;
    max-width: 600px !important;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 250, 252, 0.95) 50%, rgba(241, 245, 249, 0.98) 100%) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    border: 1px solid rgba(226, 232, 240, 0.8) !important;
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.15), 0 0 0 1px rgba(255, 255, 255, 0.5) inset !important;
    border-radius: 16px !important;
}

.leaflet-popup-tip {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 250, 252, 0.95) 100%) !important;
    border: 1px solid rgba(226, 232, 240, 0.8) !important;
}

.leaflet-popup-content {
    margin: 0;
    padding: 0;
}


.map-popup {
    min-width: 400px;
    max-width: 600px;
    display: grid;
    grid-template-columns: 150px 1fr;
    grid-template-rows: auto auto;
    column-gap: 1rem;
    row-gap: 0.75rem;
    align-items: stretch;
}

.map-popup-thumb {
    width: 150px;
    height: 145px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    background: var(--bg-tertiary);
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: stretch;
}

.map-popup-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.map-popup-thumb--placeholder {
    color: var(--text-secondary);
    justify-content: center;
    padding: 0.75rem;
}

.map-popup-thumb--placeholder i {
    font-size: 1.4rem;
    opacity: 0.6;
}

.map-popup-title {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--text-primary);
    text-align: center;
    padding: 0 0.25rem;
    line-height: 1.2;
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.map-popup-button-wrapper {
    grid-column: 1 / -1;
    display: flex;
    justify-content: flex-end;
    margin-top: 0.5rem;
    padding-top: 0.75rem;
    padding-right: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.popup-360-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
    padding: 0.4rem 0.9rem;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 6px;
    border: 1px solid #1e40af;
    background: #ffffff;
    color: #1e40af;
    cursor: pointer;
    margin-right: 0.5rem;
    transition: all 0.2s ease;
    text-transform: none;
    letter-spacing: 0.01em;
    box-shadow: none;
    -webkit-tap-highlight-color: transparent;
}

.popup-360-btn .icon-360 {
    width: auto;
    height: auto;
    border-radius: 0;
    border: none;
    display: inline-block;
    font-size: 0.7rem;
    position: relative;
    overflow: visible;
}

.popup-360-btn .icon-360::before {
    content: '360°';
    position: relative;
    color: #1e40af;
}

.popup-360-btn:hover {
    background: #f8fafc;
    border-color: #1e3a8a;
    color: #1e3a8a;
    transform: translateY(-1px);
}

.popup-360-btn:active {
    transform: translateY(0);
    background: #f1f5f9;
}

.popup-360-btn span.label {
    white-space: nowrap;
}

/* 360° tam ekran görüntüleyici */
#pano-viewer-overlay {
    position: fixed;
    inset: 0;
    background: radial-gradient(circle at top left, rgba(15, 23, 42, 0.96), rgba(15, 23, 42, 0.98));
    backdrop-filter: blur(18px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s ease;
    z-index: 9999;
}

#pano-viewer-overlay.visible {
    opacity: 1;
    visibility: visible;
}

body.pano-open {
    overflow: hidden;
}

.pano-modal {
    position: relative;
    width: 100vw;
    height: 100vh;
    max-width: 100vw;
    max-height: 100vh;
    background: #000;
    border-radius: 0;
    border: none;
    box-shadow: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
    color: #e5e7eb;
}

.pano-close {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    width: 40px;
    height: 40px;
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.6);
    background: rgba(31, 41, 55, 0.95);
    color: #e5e7eb;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    line-height: 1;
    box-shadow: 0 8px 22px rgba(15, 23, 42, 0.85);
    transition: all 0.2s ease;
    z-index: 10001;
}

.pano-close:hover {
    transform: translateY(-1px);
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.9);
    border-color: rgba(248, 250, 252, 0.6);
}

.pano-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 1.5rem;
    padding-right: 3.5rem;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(10px);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10000;
    border-bottom: 1px solid rgba(148, 163, 184, 0.2);
}

.pano-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.25rem 0.7rem;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    border-radius: 999px;
    background: linear-gradient(120deg, rgba(59, 130, 246, 0.35), rgba(139, 92, 246, 0.35));
    border: 1px solid rgba(191, 219, 254, 0.5);
    color: #e5e7eb;
}

.pano-badge::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: radial-gradient(circle, #facc15, #f97316);
    box-shadow: 0 0 16px rgba(250, 204, 21, 0.8);
}

.pano-hint {
    font-size: 0.72rem;
    color: #9ca3af;
}

.pano-viewport {
    flex: 1;
    margin-top: 0.35rem;
    border-radius: 18px;
    border: 1px solid rgba(51, 65, 85, 0.9);
    background-color: #020617;
    background-size: auto 100%;
    background-repeat: repeat-x;
    background-position: 50% 50%;
    box-shadow:
        inset 0 0 40px rgba(0, 0, 0, 0.9),
        0 20px 60px rgba(15, 23, 42, 0.9);
    cursor: grab;
    position: relative;
    overflow: hidden;
}

.pano-viewport.dragging {
    cursor: grabbing;
}

/* Pannellum container stilleri */
#pannellum-container {
    width: 100%;
    height: 100%;
}

#pannellum-container .pnlm-container {
    width: 100% !important;
    height: 100% !important;
}

#pannellum-container .pnlm-render-container {
    width: 100% !important;
    height: 100% !important;
}

@media (max-width: 768px) {
    .pano-modal {
        width: 100vw;
        height: 100vh;
        padding: 0;
        border-radius: 0;
    }

    .pano-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.4rem;
        padding: 0.75rem 1rem;
        padding-right: 3rem;
    }

    .pano-hint {
        font-size: 0.68rem;
    }

    .pano-close {
        top: 0.75rem;
        right: 1rem;
        width: 36px;
        height: 36px;
        font-size: 1.3rem;
    }
}

.popup-link-under-thumb,
a.popup-link.popup-link-under-thumb,
.popup-link.popup-link-under-thumb {
    padding: 0.4rem 0.9rem;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 6px;
    background: #ffffff !important;
    color: #1e40af !important;
    border: 1px solid #1e40af !important;
    transition: all 0.2s ease;
    text-decoration: none;
    box-shadow: none;
    display: inline-block;
    margin-right: 20px;
    letter-spacing: 0.01em;
    position: relative;
    overflow: hidden;
}

.popup-link-under-thumb:hover,
a.popup-link.popup-link-under-thumb:hover,
.popup-link.popup-link-under-thumb:hover {
    background: #f8fafc !important;
    border-color: #1e3a8a !important;
    color: #1e3a8a !important;
    transform: translateY(-1px);
}

.popup-link-under-thumb:active,
a.popup-link.popup-link-under-thumb:active,
.popup-link.popup-link-under-thumb:active {
    transform: translateY(0);
    background: #f1f5f9 !important;
}

.map-popup-body {
    min-width: 0;
    padding-right: 0.25rem;
    display: flex;
    flex-direction: column;
}

.map-popup-actions {
    display: flex !important;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 0.35rem;
    margin-top: auto;
    visibility: visible !important;
    opacity: 1 !important;
}

.map-popup-actions .map-popup-rating {
    display: inline-flex !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.map-popup-actions .popup-link-compact {
    margin-left: 0;
    align-self: flex-start;
    flex-shrink: 0;
}

.map-popup-rating {
    display: inline-flex !important;
    flex-direction: row;
    align-items: center;
    gap: 0.3rem;
    background: rgba(255,255,255,0.12);
    padding: 0.28rem 0.48rem;
    border-radius: 10px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    margin: 0;
    min-width: 0;
    flex: 1 1 auto;
    max-width: 100%;
    visibility: visible !important;
    opacity: 1 !important;
    min-height: 2rem;
}

.map-popup-actions .map-popup-rating {
    margin: 0;
}

.map-rating-score {
    font-size: 1.05rem;
    font-weight: 800;
    color: #fbbc04;
    line-height: 1;
}

.map-rating-stars {
    display: inline-flex;
    gap: 0.14rem;
    align-items: center;
    padding: 0.08rem 0.16rem;
    background: rgba(0,0,0,0.08);
    border-radius: 10px;
}

.map-star {
    font-size: 1.15rem;
    color: rgba(255, 215, 0, 0.35);
    cursor: pointer;
    transition: transform 0.15s ease, color 0.15s ease, text-shadow 0.15s ease;
    display: inline-block !important;
    visibility: visible !important;
    opacity: 1 !important;
    pointer-events: auto !important;
}

.map-star.hover,
.map-star.active {
    color: #fbbf24;
    text-shadow: 0 0 8px rgba(251, 191, 36, 0.65);
}

.map-star:hover {
    transform: translateY(-1px) scale(1.08);
}

.map-rating-count {
    font-size: 0.78rem;
    color: #111;
    font-weight: 600;
    white-space: nowrap;
}

.map-rating-label { display: none; }

.popup-link-compact {
    white-space: nowrap;
    flex-shrink: 0;
}

.map-rating-label {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.92);
    white-space: nowrap;
}

.popup-link-compact {
    padding: 0.45rem 0.9rem;
    white-space: nowrap;
    align-self: center;
}

.map-popup h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.map-popup p {
    font-size: 0.83rem;
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
    line-height: 1.5;
    word-break: break-word;
    padding-right: 20px;
}

.popup-link {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--primary-color);
    color: #ffffff !important;
    text-decoration: none;
    border-radius: var(--radius-md);
    font-size: 0.875rem;
    font-weight: 600;
    transition: var(--transition);
}

.popup-link:hover {
    background: var(--primary-dark);
}

/* ============================================
   Place Cards
   ============================================ */
.place-card {
    background: var(--bg-primary);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--border-color);
}

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

.card-link {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.card-image {
    width: 100%;
    height: 180px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--bg-tertiary) 0%, var(--bg-secondary) 100%);
    position: relative;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.place-card:hover .card-image img {
    transform: scale(1.05);
}

.card-image.no-image {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--bg-tertiary) 0%, var(--bg-secondary) 100%);
}

.card-image.no-image i {
    font-size: 3rem;
    color: var(--text-secondary);
    opacity: 0.5;
}

.card-content {
    padding: 1.25rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.category-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.375rem 0.75rem;
    border-radius: var(--radius-md);
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    width: fit-content;
}


.category-tarihi {
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
    color: #1e40af;
    border: 1px solid #60a5fa;
}

.category-doğa {
    background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
    color: #065f46;
    border: 1px solid #34d399;
}

.card-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.625rem;
    color: var(--text-primary);
    line-height: 1.3;
}

.card-content p {
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
    flex: 1;
    line-height: 1.5;
    font-size: 0.875rem;
}

.card-meta {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    color: var(--text-secondary);
    font-size: 0.75rem;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
}

.card-meta i {
    color: var(--primary-color);
}

.card-footer {
    margin-top: auto;
    padding-top: 0.75rem;
    border-top: 1px solid var(--border-color);
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.75rem;
    transition: var(--transition);
}

.place-card:hover .read-more {
    gap: 0.75rem;
    color: var(--primary-dark);
}

.card-footer {
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
    background: linear-gradient(180deg, transparent 0%, rgba(37, 99, 235, 0.02) 100%);
}

/* ============================================
   Detail Page - Modern Redesign
   ============================================ */
/* Detail sayfası için scroll'u kapat */
body.detail-page-no-scroll {
    overflow: hidden;
    height: 100vh;
    max-height: 100vh;
}

.detail-page-wrapper {
    height: 100vh;
    max-height: 100vh;
    overflow: hidden;
}

.detail-main-content {
    margin-left: 0;
    width: 100%;
    padding: 0;
    background: transparent;
    margin-bottom: 0;
    padding-bottom: 0;
    height: 100vh;
    max-height: 100vh;
    overflow-y: auto;
    overflow-x: hidden;
}

.detail-hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
}

/* Home Butonu - Sol Üst Köşe */
.detail-hero-home-btn {
    position: absolute;
    top: 2rem;
    left: 2rem;
    z-index: 30;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.detail-hero-home-btn:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
    color: white;
}

.detail-hero-home-btn:active {
    transform: translateY(0);
}

@media (max-width: 768px) {
    .detail-hero-home-btn {
        top: 1rem;
        left: 1rem;
        width: 44px;
        height: 44px;
        font-size: 1.1rem;
    }
}

.detail-hero-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.detail-hero-no-image {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
}

.detail-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.7) 100%);
}

.detail-hero-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 3rem;
    z-index: 10;
    color: white;
}

.detail-hero-badge {
    margin-bottom: 1rem;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.3);
    color: white;
}

.detail-hero-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: white;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
    line-height: 1.2;
}

.detail-hero-center-content {
    position: absolute;
    bottom: 3.25rem;
    left: 3rem;
    text-align: left;
    max-width: 90%;
    z-index: 25;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.4rem;
}

/* Hero Bölümünde Küçük Resimler Overlay */
.detail-hero-images-overlay {
    position: absolute;
    bottom: calc(3.25rem + 200px);
    left: 3rem;
    z-index: 24;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-radius: 0;
    padding: 0;
    border: none;
    box-shadow: none;
    max-width: calc(100% - 6rem);
}

.detail-hero-images-grid {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    max-height: 400px;
    overflow-y: auto;
    overflow-x: hidden;
    padding-right: 0.5rem;
}

.detail-hero-images-grid::-webkit-scrollbar {
    width: 6px;
}

.detail-hero-images-grid::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
}

.detail-hero-images-grid::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 3px;
}

.detail-hero-images-grid::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.5);
}

.detail-hero-image-thumb {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    background: transparent;
    border: none;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    box-shadow: none;
}

.detail-hero-image-thumb:hover {
    transform: scale(1.1);
}

.detail-hero-image-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.detail-hero-image-thumb:hover img {
    transform: scale(1.1);
}

/* 360 Görüntü Badge - Modern Minimal Tasarım */
.detail-hero-360-thumb {
    position: relative;
}

.detail-hero-360-thumb img {
    position: relative;
    z-index: 0;
}

.detail-hero-360-badge {
    position: absolute;
    top: 6px;
    right: 6px;
    background: rgba(249, 115, 22, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: white;
    padding: 0.3rem 0.5rem;
    border-radius: 8px;
    font-size: 0.65rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    box-shadow: 0 2px 8px rgba(249, 115, 22, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.1);
    z-index: 2;
    letter-spacing: 0.3px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.detail-hero-360-badge i {
    font-size: 0.7rem;
    color: #ffffff;
}

.detail-hero-360-badge span {
    font-size: 0.65rem;
    color: #ffffff;
}

.detail-hero-360-thumb:hover .detail-hero-360-badge {
    background: rgba(249, 115, 22, 1);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(249, 115, 22, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.2);
}

.detail-hero-360-thumb:hover .detail-hero-360-badge i {
    color: #ffffff;
}

@media (max-width: 768px) {
    .detail-hero-360-badge {
        top: 4px;
        right: 4px;
        padding: 0.25rem 0.4rem;
        font-size: 0.6rem;
        gap: 0.25rem;
    }
    
    .detail-hero-360-badge i {
        font-size: 0.65rem;
    }
    
    .detail-hero-360-badge span {
        font-size: 0.6rem;
    }
}

@media (max-width: 1024px) {
    .detail-hero-images-overlay {
        bottom: 2rem;
        left: 2rem;
        padding: 0;
    }
    
    .detail-hero-image-thumb {
        width: 70px;
        height: 70px;
    }
}

@media (max-width: 768px) {
    .detail-hero-images-overlay {
        bottom: 1.5rem;
        left: 1rem;
        padding: 0;
        max-width: calc(100% - 2rem);
    }
    
    .detail-hero-images-grid {
        max-height: 300px;
        gap: 0.5rem;
    }
    
    .detail-hero-image-thumb {
        width: 60px;
        height: 60px;
    }
}

.detail-hero-center-badge {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.detail-hero-center-title {
    background: none;
    color: #fff;
    padding: 0;
    border-radius: 0;
    font-size: 2.75rem;
    font-weight: 800;
    letter-spacing: 0.3px;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.45);
    margin: 0;
}

.detail-rating-card {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.12);
    padding: 0.4rem 0.6rem;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
}

/* Hero Center Rating & Instagram Wrapper */
.detail-hero-rating-instagram-wrapper {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 0.5rem;
}

/* Social Media Icons */
.detail-hero-social-icons {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
}

.detail-hero-social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.detail-hero-social-icon i {
    font-size: 1.1rem;
}

/* Instagram Icon */
.detail-hero-social-icon-instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
    box-shadow: 0 2px 8px rgba(220, 39, 67, 0.3);
}

.detail-hero-social-icon-instagram:hover {
    transform: translateY(-2px) scale(1.1);
    box-shadow: 0 4px 12px rgba(220, 39, 67, 0.5);
}

/* YouTube Icon */
.detail-hero-social-icon-youtube {
    background: #FF0000;
    color: white;
    box-shadow: 0 2px 8px rgba(255, 0, 0, 0.3);
}

.detail-hero-social-icon-youtube:hover {
    transform: translateY(-2px) scale(1.1);
    box-shadow: 0 4px 12px rgba(255, 0, 0, 0.5);
}

/* Facebook Icon */
.detail-hero-social-icon-facebook {
    background: #1877F2;
    color: white;
    box-shadow: 0 2px 8px rgba(24, 119, 242, 0.3);
}

.detail-hero-social-icon-facebook:hover {
    transform: translateY(-2px) scale(1.1);
    box-shadow: 0 4px 12px rgba(24, 119, 242, 0.5);
}

/* Disabled State (No Link) */
.detail-hero-social-icon-disabled {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.4);
    cursor: not-allowed;
    opacity: 0.5;
    box-shadow: none;
}

.detail-hero-social-icon-disabled:hover {
    transform: none;
    box-shadow: none;
}

/* Instagram Modal */
.instagram-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.instagram-modal.active {
    opacity: 1;
    visibility: visible;
}

.instagram-modal-content {
    background: #ffffff;
    border-radius: 16px;
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    position: relative;
    display: flex;
    flex-direction: column;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.instagram-modal.active .instagram-modal-content {
    transform: scale(1);
}

.instagram-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(0, 0, 0, 0.5);
    border: none;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.25rem;
    z-index: 10001;
    transition: all 0.2s ease;
}

.instagram-modal-close:hover {
    background: rgba(0, 0, 0, 0.8);
    transform: rotate(90deg);
}

.instagram-modal-header {
    padding: 1.5rem;
    border-bottom: 1px solid #e0e0e0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
    border-radius: 16px 16px 0 0;
    font-weight: 600;
    font-size: 1.125rem;
}

.instagram-modal-header i {
    font-size: 1.5rem;
}

.instagram-modal-body {
    padding: 0;
    position: relative;
    min-height: 500px;
    max-height: calc(90vh - 100px);
    overflow: hidden;
    background: #f5f5f5;
}

.instagram-modal-body iframe {
    width: 100%;
    height: 100%;
    min-height: 500px;
    border: none;
    display: block;
}

.instagram-modal-fallback {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background: #f5f5f5;
    text-align: center;
}

.instagram-modal-fallback p {
    margin-bottom: 1.5rem;
    color: #666;
    font-size: 1rem;
}

@media (max-width: 768px) {
    .instagram-modal-content {
        width: 95%;
        max-height: 85vh;
    }

    .instagram-modal-body {
        min-height: 400px;
        max-height: calc(85vh - 100px);
    }

    .instagram-modal-body iframe {
        min-height: 400px;
    }

    .detail-instagram-icon-btn {
        width: 36px;
        height: 36px;
        font-size: 1.125rem;
    }
}

.detail-rating-score {
    font-size: 1.2rem;
    font-weight: 800;
    color: #fbbc04;
    line-height: 1;
}

.detail-rating-stars {
    display: inline-flex;
    gap: 0.2rem;
    align-items: center;
    padding: 0.1rem 0.2rem;
    background: rgba(0,0,0,0.1);
    border-radius: 10px;
}

.detail-star {
    font-size: 1.2rem;
    color: rgba(255, 215, 0, 0.4);
    cursor: pointer;
    transition: transform 0.15s ease, color 0.15s ease, text-shadow 0.15s ease;
}

.detail-star.hover,
.detail-star.active {
    color: #fbbf24;
    text-shadow: 0 0 8px rgba(251, 191, 36, 0.65);
}

.detail-star:hover {
    transform: translateY(-1px) scale(1.08);
}

.detail-rating-count {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.92);
    white-space: nowrap;
}

.detail-hero-dot {
    position: absolute;
    left: 80px;
    top: 80px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(255,255,255,0.9);
    border: 2px solid rgba(255, 87, 34, 0.9);
    box-shadow: 0 0 0 0 rgba(255, 87, 34, 0.4), 0 2px 8px rgba(0,0,0,0.2);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 26;
    transition: all 0.3s ease;
    overflow: visible;
    animation: heroDotFloat 2s ease-in-out infinite, heroDotGlow 2s ease-in-out infinite, heroDotColorChange 4s ease-in-out infinite;
}

.detail-hero-dot::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(255, 87, 34, 0.3);
    animation: heroDotPulse 2s ease-in-out infinite, heroDotColorChange 4s ease-in-out infinite;
}

.detail-hero-dot-pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(255, 152, 0, 0.25);
    animation: heroDotPulse 2s ease-in-out infinite, heroDotColorChange 4s ease-in-out infinite;
}

.detail-hero-dot:hover {
    transform: scale(1.2);
    animation: heroDotFloat 0.8s ease-in-out infinite, heroDotGlow 1s ease-in-out infinite, heroDotColorChange 2s ease-in-out infinite;
}

.detail-hero-dot:hover::before {
    animation: heroDotPulse 0.8s ease-in-out infinite, heroDotColorChange 2s ease-in-out infinite;
}

@keyframes heroDotFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}

@keyframes heroDotGlow {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 87, 34, 0.4), 0 2px 8px rgba(0,0,0,0.2);
        border-color: rgba(255, 87, 34, 0.9);
    }
    16.66% {
        box-shadow: 0 0 0 4px rgba(255, 87, 34, 0.3), 0 0 15px rgba(255, 87, 34, 0.6), 0 0 25px rgba(255, 152, 0, 0.4), 0 2px 8px rgba(0,0,0,0.2);
        border-color: rgba(255, 152, 0, 0.9);
    }
    33.33% {
        box-shadow: 0 0 0 4px rgba(76, 175, 80, 0.3), 0 0 15px rgba(76, 175, 80, 0.6), 0 0 25px rgba(139, 195, 74, 0.4), 0 2px 8px rgba(0,0,0,0.2);
        border-color: rgba(76, 175, 80, 0.9);
    }
    50% {
        box-shadow: 0 0 0 4px rgba(33, 150, 243, 0.3), 0 0 15px rgba(33, 150, 243, 0.6), 0 0 25px rgba(63, 81, 181, 0.4), 0 2px 8px rgba(0,0,0,0.2);
        border-color: rgba(33, 150, 243, 0.9);
    }
    66.66% {
        box-shadow: 0 0 0 4px rgba(156, 39, 176, 0.3), 0 0 15px rgba(156, 39, 176, 0.6), 0 0 25px rgba(123, 31, 162, 0.4), 0 2px 8px rgba(0,0,0,0.2);
        border-color: rgba(156, 39, 176, 0.9);
    }
    83.33% {
        box-shadow: 0 0 0 4px rgba(233, 30, 99, 0.3), 0 0 15px rgba(233, 30, 99, 0.6), 0 0 25px rgba(244, 67, 54, 0.4), 0 2px 8px rgba(0,0,0,0.2);
        border-color: rgba(233, 30, 99, 0.9);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 87, 34, 0.4), 0 2px 8px rgba(0,0,0,0.2);
        border-color: rgba(255, 87, 34, 0.9);
    }
}

@keyframes heroDotColorChange {
    0% {
        border-color: rgba(255, 87, 34, 0.9);
    }
    16.66% {
        border-color: rgba(255, 152, 0, 0.9);
    }
    33.33% {
        border-color: rgba(76, 175, 80, 0.9);
    }
    50% {
        border-color: rgba(33, 150, 243, 0.9);
    }
    66.66% {
        border-color: rgba(156, 39, 176, 0.9);
    }
    83.33% {
        border-color: rgba(233, 30, 99, 0.9);
    }
    100% {
        border-color: rgba(255, 87, 34, 0.9);
    }
}

@keyframes heroDotPulse {
    0% {
        transform: scale(1);
        opacity: 0.6;
        background: rgba(255, 87, 34, 0.3);
    }
    16.66% {
        background: rgba(255, 152, 0, 0.3);
    }
    33.33% {
        background: rgba(76, 175, 80, 0.3);
    }
    50% {
        transform: scale(2);
        opacity: 0.2;
        background: rgba(33, 150, 243, 0.2);
    }
    66.66% {
        background: rgba(156, 39, 176, 0.2);
    }
    83.33% {
        background: rgba(233, 30, 99, 0.2);
    }
    100% {
        transform: scale(2.5);
        opacity: 0;
        background: rgba(255, 87, 34, 0.1);
    }
}

@media (max-width: 768px) {
    .detail-hero-center-content {
        bottom: 1.5rem;
        left: 1rem;
        gap: 0.35rem;
    }
    
    .detail-hero-rating-instagram-wrapper {
        gap: 0.75rem;
        margin-top: 0.5rem;
    }
    
    .detail-hero-social-icons {
        gap: 0.5rem;
    }
    
    .detail-hero-social-icon {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }
    
    .detail-hero-social-icon i {
        font-size: 1rem;
    }
    
    .detail-rating-card {
        font-size: 0.9rem;
    }
    
    .detail-hero-center-title {
        font-size: 2rem;
    }
    
    .detail-hero-center-badge {
        font-size: 0.75rem;
        padding: 0.4rem 0.8rem;
    }
    
    .detail-hero-dot {
        left: 60px;
        top: 60px;
        width: 18px;
        height: 18px;
    }
}

.detail-hero-location {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.125rem;
    color: rgba(255,255,255,0.9);
}

.detail-hero-location-overlay {
    position: absolute;
    top: 2rem;
    right: 2rem;
    z-index: 20;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.detail-hero-location-item {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 12px;
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: white;
    font-size: 0.95rem;
    font-weight: 500;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
}

.detail-hero-location-item:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.detail-hero-location-item i {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
}

.detail-hero-map-overlay {
    position: absolute;
    top: 2rem;
    right: 2rem;
    z-index: 20;
    width: 400px;
    max-width: calc(100% - 4rem);
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 16px;
    padding: 1rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.detail-hero-map-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.125rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.75rem;
}

.detail-hero-map-header i {
    color: rgba(255, 255, 255, 0.9);
}

.detail-hero-map-container {
    width: 100%;
    height: 300px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 0.75rem;
    opacity: 0.9;
}

.detail-hero-map-actions {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.detail-hero-map-actions .btn {
    flex: 1 1 48%;
    min-width: 0;
    justify-content: center;
    font-size: 0.875rem;
    padding: 0.625rem 1rem;
    background: transparent;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    transition: var(--transition);
}

.detail-hero-map-actions .btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.detail-hero-map-actions .btn-primary {
    background: transparent;
    border-color: rgba(255, 255, 255, 0.6);
    color: white;
}

.detail-hero-map-actions .btn-primary:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.8);
}

.detail-hero-map-actions .btn-secondary {
    background: transparent;
    border-color: rgba(255, 255, 255, 0.6);
    color: white;
}

.detail-hero-map-actions .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.8);
}

.detail-hero-about-overlay {
    position: absolute;
    top: calc(2rem + 437px);
    right: 2rem;
    z-index: 20;
    width: 400px;
    max-width: calc(100% - 4rem);
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 16px;
    padding: 1rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.detail-hero-about-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.125rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.75rem;
}

.detail-hero-about-header i {
    color: rgba(255, 255, 255, 0.9);
}

.detail-hero-about-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.95);
    max-height: 200px;
    overflow-y: auto;
}

.detail-hero-about-text::-webkit-scrollbar {
    width: 6px;
}

.detail-hero-about-text::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
}

.detail-hero-about-text::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 3px;
}

.detail-hero-about-text::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.5);
}

@media (max-width: 1024px) {
    .detail-hero-map-overlay {
        width: 350px;
        max-width: calc(100% - 2rem);
        top: 1rem;
        right: 1rem;
    }
    
    .detail-hero-map-container {
        height: 250px;
    }
    
    .detail-hero-about-overlay {
        width: 350px;
        max-width: calc(100% - 2rem);
        top: calc(1rem + 387px);
        right: 1rem;
    }
}

@media (max-width: 768px) {
    .detail-hero-section {
        height: 50vh;
        min-height: 400px;
    }

    .detail-hero-map-overlay {
        position: relative;
        top: auto;
        right: auto;
        width: 100%;
        max-width: 100%;
        margin: 1rem;
        padding: 1rem;
    }
    
    .detail-hero-about-overlay {
        position: relative;
        top: auto;
        right: auto;
        width: 100%;
        max-width: 100%;
        margin: 1rem;
        padding: 1rem;
    }
    
    .detail-hero-location-overlay {
        top: 1rem;
        right: 1rem;
        flex-direction: column;
        gap: 0.5rem;
    }

    .detail-hero-location-item {
        font-size: 0.875rem;
        padding: 0.625rem 0.875rem;
    }

    .detail-hero-map-container {
        height: 250px;
    }

    .detail-hero-map-actions {
        flex-direction: column;
    }

    .detail-hero-map-actions .btn {
        flex: 1 1 100%;
        width: 100%;
    }

    .detail-content-wrapper {
        padding: 1.5rem 1rem 0 1rem;
    }

    .detail-content-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .detail-main-column {
        gap: 1.5rem;
    }

    .detail-gallery-thumbnails {
        grid-template-columns: repeat(auto-fill, minmax(70px, 1fr));
        gap: 0.5rem;
        padding: 1rem;
    }
}

.detail-content-wrapper {
    padding: 3rem 3rem 0 3rem;
    max-width: 1400px;
    margin: 0 auto 0 auto;
    padding-bottom: 0;
    background: transparent;
}

.detail-content-grid {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 2rem;
    margin-bottom: 0;
}

.detail-main-column {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 0;
}

.detail-gallery-section {
    background: var(--bg-primary);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.detail-gallery-main {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
    background: var(--bg-tertiary);
}

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

.detail-gallery-main:hover .detail-gallery-main-img {
    transform: scale(1.02);
}

.detail-gallery-fullscreen {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(0,0,0,0.7);
    color: white;
    border: none;
    border-radius: 12px;
    padding: 0.75rem 1rem;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s ease;
    z-index: 10;
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.detail-gallery-fullscreen:hover {
    background: rgba(0,0,0,0.9);
    transform: scale(1.05);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
}

.detail-gallery-thumbnails {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 0.75rem;
    padding: 1rem;
    background: var(--bg-secondary);
}

.detail-gallery-thumb {
    aspect-ratio: 1;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
    border: 3px solid transparent;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0.7;
    position: relative;
}

.detail-gallery-thumb::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(37, 99, 235, 0);
    transition: background 0.3s ease;
    z-index: 1;
    border-radius: var(--radius-md);
}

.detail-gallery-thumb:hover::before {
    background: rgba(37, 99, 235, 0.1);
}

.detail-gallery-thumb:hover,
.detail-gallery-thumb.active {
    opacity: 1;
    border-color: var(--primary-color);
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.detail-gallery-thumb.active {
    border-width: 3px;
    box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.2), 0 4px 12px rgba(37, 99, 235, 0.3);
}

.detail-gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.detail-description-section,
.detail-images-gallery-section {
    background: var(--bg-primary);
    border-radius: var(--radius-xl);
    padding: 2rem;
    box-shadow: var(--shadow-md);
    margin-bottom: 2rem;
}

.detail-videos-section {
    background: transparent;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
    margin-bottom: 2rem;
}

/* Resim Galerisi Grid */
.detail-images-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
}

.detail-image-thumbnail {
    position: relative;
    aspect-ratio: 1;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
    background: var(--bg-tertiary);
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.detail-image-thumbnail:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

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

.detail-image-thumbnail:hover img {
    transform: scale(1.1);
}

.detail-image-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.detail-image-thumbnail:hover .detail-image-overlay {
    opacity: 1;
}

.detail-image-overlay i {
    color: white;
    font-size: 2rem;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

@media (max-width: 768px) {
    .detail-images-grid {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
        gap: 0.75rem;
    }
    
    .detail-image-overlay i {
        font-size: 1.5rem;
    }
}

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

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

.detail-description-text {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-secondary);
}

.detail-video-wrapper {
    margin-bottom: 2rem;
}

.detail-video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.detail-video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.detail-instagram-wrapper {
    margin-top: 1rem;
}

.detail-instagram-link {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
    text-decoration: none;
    border-radius: var(--radius-lg);
    font-weight: 600;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
}

.detail-instagram-link:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.detail-sidebar-column {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 0;
}

.detail-map-section {
    background: var(--bg-primary);
    border-radius: var(--radius-xl);
    padding: 1.5rem;
    box-shadow: var(--shadow-md);
}

.detail-sidebar-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.detail-sidebar-title i {
    color: var(--primary-color);
}

.detail-map-container {
    width: 100%;
    height: 300px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 1rem;
    box-shadow: var(--shadow-sm);
    opacity: 0.85;
    transition: var(--transition);
}

.detail-map-container:hover {
    opacity: 1;
}

.detail-map-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.detail-info-cards {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.detail-info-card {
    background: var(--bg-primary);
    border-radius: var(--radius-lg);
    padding: 1.25rem;
    display: flex;
    gap: 1rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.detail-info-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.detail-info-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.detail-info-content h4 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 0.25rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.detail-info-content p {
    font-size: 1rem;
    color: var(--text-primary);
    margin: 0;
    line-height: 1.5;
}

.detail-similar-section {
    margin-top: 3rem;
}

/* Lightbox Modal */
.detail-lightbox-modal {
    display: flex;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.detail-lightbox-modal.active {
    opacity: 1;
    visibility: visible;
}

.detail-lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: default;
}

.detail-lightbox-img {
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    transition: opacity 0.3s ease;
    animation: lightboxFadeIn 0.3s ease;
}

@keyframes lightboxFadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.detail-lightbox-info {
    margin-top: 1.5rem;
    color: white;
    text-align: center;
}

.detail-lightbox-counter {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    font-size: 0.95rem;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.detail-lightbox-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 10001;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.detail-lightbox-close:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.1) rotate(90deg);
}

.detail-lightbox-prev,
.detail-lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 10001;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.detail-lightbox-prev {
    left: 2rem;
}

.detail-lightbox-next {
    right: 2rem;
}

.detail-lightbox-prev:hover,
.detail-lightbox-next:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-50%) scale(1.1);
}

.detail-lightbox-prev:active,
.detail-lightbox-next:active {
    transform: translateY(-50%) scale(0.95);
}

/* Eski fullscreen modal (geriye dönük uyumluluk) */
.detail-fullscreen-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(15, 23, 42, 0.98) 0%, rgba(0, 0, 0, 0.95) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    cursor: pointer;
    align-items: center;
    justify-content: center;
}

.detail-fullscreen-img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    border-radius: var(--radius-lg);
}

.detail-fullscreen-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    color: white;
    font-size: 3rem;
    font-weight: bold;
    cursor: pointer;
    z-index: 10000;
    transition: var(--transition);
}

.detail-fullscreen-close:hover {
    transform: scale(1.2);
}

@media (max-width: 768px) {
    .detail-lightbox-close {
        top: 1rem;
        right: 1rem;
        width: 40px;
        height: 40px;
        font-size: 1.25rem;
    }

    .detail-lightbox-prev,
    .detail-lightbox-next {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }

    .detail-lightbox-prev {
        left: 1rem;
    }

    .detail-lightbox-next {
        right: 1rem;
    }

    .detail-lightbox-img {
        max-height: 80vh;
    }

    .detail-lightbox-counter {
        font-size: 0.85rem;
        padding: 0.4rem 0.8rem;
    }
}

/* Responsive */
@media (max-width: 1024px) {
    .detail-main-content {
        margin-left: 0;
        width: 100%;
    }

    .detail-content-grid {
        grid-template-columns: 1fr;
    }

    .detail-hero-section {
        height: 70vh;
        min-height: 500px;
    }

    .detail-hero-title {
        font-size: 2rem;
    }

    .detail-content-wrapper {
        padding: 1.5rem 1.5rem 0 1.5rem;
    }

    .detail-hero-map-overlay {
        width: 350px;
        max-width: calc(100% - 2rem);
        top: 1rem;
        right: 1rem;
    }
    
    .detail-hero-map-container {
        height: 250px;
    }
}

@media (max-width: 768px) {
    .detail-hero-section {
        height: 50vh;
        min-height: 400px;
    }

    .detail-hero-content {
        padding: 1.5rem;
    }

    .detail-hero-title {
        font-size: 1.75rem;
    }

    .detail-hero-map-overlay {
        position: relative;
        top: auto;
        right: auto;
        width: 100%;
        max-width: 100%;
        margin: 1rem;
    }

    .detail-hero-location-overlay {
        top: 1rem;
        right: 1rem;
    }

    .detail-gallery-thumbnails {
        grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
        gap: 0.5rem;
        padding: 0.75rem;
    }
}

@media (max-width: 480px) {
    .detail-hero-section {
        height: 40vh;
        min-height: 300px;
    }

    .detail-hero-content {
        padding: 1rem;
    }

    .detail-hero-title {
        font-size: 1.5rem;
    }

    .detail-hero-badge {
        font-size: 0.75rem;
        padding: 0.375rem 0.75rem;
    }

    .detail-hero-location-overlay {
        top: 0.75rem;
        right: 0.75rem;
    }

    .detail-hero-location-item {
        font-size: 0.875rem;
        padding: 0.5rem 0.75rem;
    }

    .detail-hero-map-overlay {
        margin: 0.75rem;
        padding: 0.75rem;
    }

    .detail-hero-map-container {
        height: 200px;
    }

    .detail-hero-map-header {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }

    .detail-content-wrapper {
        padding: 1.5rem 1rem 0 1rem;
    }

    .detail-content-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .detail-main-column {
        gap: 1.5rem;
    }

    .detail-gallery-thumbnails {
        grid-template-columns: repeat(auto-fill, minmax(60px, 1fr));
        gap: 0.5rem;
        padding: 0.75rem;
    }

    .detail-gallery-fullscreen {
        top: 0.5rem;
        right: 0.5rem;
        padding: 0.5rem 0.75rem;
        font-size: 0.875rem;
    }
}

/* ============================================
   Detail Page - Old Styles (Backward Compatible)
   ============================================ */
.detail-page {
    max-width: 1000px;
    margin: 0 auto;
}

.place-detail {
    background: var(--bg-primary);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    text-decoration: none;
    margin-bottom: 2rem;
    font-weight: 500;
    transition: var(--transition);
}

.back-link:hover {
    color: var(--primary-color);
    gap: 0.75rem;
}

.place-detail {
    background: var(--bg-primary);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.detail-header {
    padding: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.detail-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-top: 1rem;
    color: var(--text-primary);
}

.detail-image {
    width: 100%;
    height: 450px;
    overflow: hidden;
    background: var(--bg-tertiary);
    border-radius: var(--radius-lg);
    margin-bottom: 2rem;
    box-shadow: var(--shadow-md);
}

.detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Çoklu Resim Galerisi */
.detail-images {
    width: 100%;
    margin-bottom: 2rem;
}

.image-gallery {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.main-image {
    width: 100%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    aspect-ratio: 16/9;
    background: var(--bg-tertiary);
}

.main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.thumbnail-images {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 0.75rem;
}

.thumbnail-item {
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
    border: 3px solid transparent;
    transition: all 0.3s ease;
    aspect-ratio: 1;
    background: var(--bg-tertiary);
}

.thumbnail-item:hover {
    border-color: var(--primary-color);
    transform: scale(1.05);
}

.thumbnail-item.active {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.2);
}

.thumbnail-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Video Bölümü */
.detail-videos {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--bg-secondary);
    border-radius: var(--radius-lg);
}

.detail-videos h2 {
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.video-container {
    margin-bottom: 2rem;
}

.video-container:last-child {
    margin-bottom: 0;
}

.video-container h3 {
    margin-bottom: 1rem;
    color: var(--text-primary);
    font-size: 1.25rem;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.instagram-embed {
    display: flex;
    justify-content: center;
    margin-top: 1rem;
}

.instagram-embed blockquote {
    margin: 0 auto;
}

.detail-map-container {
    margin-top: 1.5rem;
}

.detail-map-container #detail-map {
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
}

.map-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.detail-content {
    padding: 2rem;
}

.detail-description,
.detail-info {
    margin-bottom: 2rem;
}

.detail-content h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.detail-content h2 i {
    color: var(--primary-color);
}

.detail-content p {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 1.125rem;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: var(--bg-secondary);
    border-radius: var(--radius-md);
    margin-bottom: 0.75rem;
}

.info-item i {
    color: var(--primary-color);
    font-size: 1.25rem;
}

.map-link {
    margin-top: 1rem;
}

.similar-places {
    margin-top: 4rem;
}

.similar-places h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.similar-places h2 i {
    color: var(--primary-color);
}

/* ============================================
   Empty State
   ============================================ */
.empty-state {
    text-align: center;
    padding: 4rem 2rem;
    background: var(--bg-primary);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

.empty-state i {
    font-size: 4rem;
    color: var(--text-secondary);
    opacity: 0.5;
    margin-bottom: 1.5rem;
}

.empty-state h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.empty-state p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

/* ============================================
   Detail Bottom Info
   ============================================ */
.detail-bottom-info {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.05) 0%, rgba(59, 130, 246, 0.05) 100%);
    padding: 3rem 2rem;
    text-align: center;
    margin-top: 4rem;
    border-top: 1px solid var(--border-color);
}

.detail-bottom-content {
    max-width: 800px;
    margin: 0 auto;
}

.detail-bottom-category {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.75rem;
    opacity: 0.8;
}

.detail-bottom-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
    line-height: 1.2;
}

@media (max-width: 768px) {
    .detail-bottom-info {
        padding: 2rem 1rem;
    }
    
    .detail-bottom-title {
        font-size: 1.75rem;
    }
}

/* ============================================
   Footer
   ============================================ */
.main-footer {
    background: var(--text-primary);
    color: white;
    padding: 2rem 0;
    text-align: center;
    margin-top: 0;
    margin-bottom: 0;
}

.main-footer p {
    opacity: 0.8;
}

/* ============================================
   Admin Panel Styles
   ============================================ */
.admin-login {
    background: #20232a;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    position: relative;
    overflow: hidden;
}

.admin-login::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(52, 152, 219, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(52, 152, 219, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.login-container {
    width: 100%;
    max-width: 420px;
    position: relative;
    z-index: 1;
}

.login-box {
    background: #2a2e35;
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5),
                0 0 0 1px rgba(255, 255, 255, 0.05);
    border: 1px solid #3a3f47;
}

.login-header {
    text-align: center;
    margin-bottom: 2rem;
}

.login-header i {
    font-size: 3rem;
    color: #3498db;
    margin-bottom: 1rem;
    display: block;
}

.login-header h1 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #ecf0f1;
    margin: 0;
}

.login-footer {
    margin-top: 1.5rem;
    text-align: center;
    font-size: 0.875rem;
    color: #bdc3c7;
}

/* Login sayfası için özel form stilleri */
.admin-login .form-group {
    margin-bottom: 1.5rem;
}

.admin-login .form-group label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
    font-size: 14px;
    color: #ecf0f1;
    margin-bottom: 0.5rem;
    letter-spacing: 0.2px;
}

.admin-login .form-group label i {
    color: #3498db;
    font-size: 1rem;
}

.admin-login .form-group input {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #3a3f47;
    border-radius: 8px;
    font-size: 15px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    transition: all 0.2s ease;
    background: #20232a;
    color: #ecf0f1;
    font-weight: 400;
}

.admin-login .form-group input:focus {
    border-color: #3498db;
    outline: none;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.2);
    background: #252830;
}

.admin-login .form-group input::placeholder {
    color: #7f8c8d;
    opacity: 0.7;
}

/* Login sayfası için özel buton stilleri */
.admin-login .btn {
    width: 100%;
    padding: 0.875rem 1.5rem;
    font-size: 15px;
    font-weight: 600;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.admin-login .btn-primary {
    background: #3498db;
    color: white;
}

.admin-login .btn-primary:hover {
    background: #2980b9;
    box-shadow: 0 4px 12px rgba(52, 152, 219, 0.4);
    transform: translateY(-1px);
}

.admin-login .btn-primary:active {
    transform: translateY(0);
}

/* Login sayfası için özel alert stilleri */
.admin-login .alert {
    padding: 0.875rem 1.25rem;
    border-radius: 8px;
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 400;
    font-size: 14px;
    border-left: 4px solid;
}

.admin-login .alert-error {
    background: rgba(231, 76, 60, 0.15);
    color: #e74c3c;
    border-left-color: #e74c3c;
    border: 1px solid rgba(231, 76, 60, 0.3);
}

.admin-login .alert i {
    font-size: 1.25rem;
}

@media (max-width: 768px) {
    .admin-login {
        padding: 1rem;
    }

    .login-box {
        padding: 2rem 1.5rem;
    }

    .login-header i {
        font-size: 2.5rem;
    }

    .login-header h1 {
        font-size: 1.5rem;
    }
}

.admin-nav {
    background: var(--bg-primary);
    box-shadow: var(--shadow-md);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.admin-nav h1 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.admin-nav h1 i {
    color: var(--primary-color);
}

.nav-user {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.nav-user span {
    color: var(--text-secondary);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-logout {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--error-color);
    color: white;
    text-decoration: none;
    border-radius: var(--radius-md);
    font-weight: 500;
    transition: var(--transition);
}

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

.admin-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
}

.admin-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.admin-header-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.logo-upload-section {
    background: #2a2e35;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    border: 1px solid #3a3f47;
}

.current-logo-preview {
    margin-bottom: 2rem;
    text-align: center;
}

.current-logo-preview h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ecf0f1;
}

.logo-preview {
    display: inline-block;
    text-align: center;
}

.logo-preview p {
    margin-top: 0.5rem;
    color: #bdc3c7;
    font-size: 0.875rem;
}

.logo-preview.no-logo {
    padding: 2rem;
    border: 2px dashed #3a3f47;
    border-radius: 4px;
    background: #20232a;
}

.logo-upload-form {
    max-width: 500px;
    margin: 0 auto;
}

.admin-header h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #ecf0f1;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.admin-header h2 i {
    color: #3498db;
}

.admin-card {
    max-width: 100%;
}

.admin-card .card-actions {
    display: flex;
    gap: 0.75rem;
    margin-top: 1rem;
}

.current-image {
    margin-bottom: 1rem;
}

.current-image img {
    max-width: 200px;
    height: auto;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
}

.current-image p {
    margin-top: 0.5rem;
    font-size: 0.875rem;
    color: #bdc3c7;
}

/* ============================================
   Forms
   ============================================ */
.place-form {
    background: #2a2e35;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    border: 1px solid #3a3f47;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
    font-size: 14px;
    color: #ecf0f1;
    margin-bottom: 0.5rem;
    letter-spacing: 0.2px;
}

.form-group label i {
    color: #3498db;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.625rem 0.875rem;
    border: 1px solid #3a3f47;
    border-radius: 4px;
    font-size: 14px;
    font-family: 'Roboto', sans-serif;
    transition: border-color 0.2s ease;
    background: #20232a;
    color: #ecf0f1;
    font-weight: 400;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #3498db;
    outline: none;
    box-shadow: 0 0 0 2px rgba(52, 152, 219, 0.2);
    background: #2a2e35;
}

/* Select Options - Dark Theme */
.form-group select option {
    background: #2a2e35;
    color: #ecf0f1;
    padding: 0.5rem;
}

.form-group select option:checked {
    background: #3498db;
    color: #ffffff;
}

/* Checkbox and Radio - Dark Theme */
.form-group input[type="checkbox"],
.form-group input[type="radio"] {
    width: auto;
    margin-right: 0.5rem;
    cursor: pointer;
    accent-color: #3498db;
}

/* Placeholder Text - Dark Theme */
.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #7f8c8d;
    opacity: 0.7;
}


.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-group small {
    display: block;
    margin-top: 0.5rem;
    color: #bdc3c7;
    font-size: 0.875rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

/* File Input Styles - Dark Theme */
.form-group input[type="file"] {
    padding: 0.5rem;
    background: #20232a;
    border: 1px dashed #3a3f47;
    border-radius: 4px;
    color: #ecf0f1;
    cursor: pointer;
    transition: all 0.2s ease;
}

.form-group input[type="file"]:hover {
    border-color: #3498db;
    background: #2a2e35;
}

.form-group input[type="file"]:focus {
    border-color: #3498db;
    border-style: solid;
    box-shadow: 0 0 0 2px rgba(52, 152, 219, 0.2);
}

.form-group input[type="file"]::file-selector-button {
    padding: 0.5rem 1rem;
    background: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 500;
    margin-right: 1rem;
    transition: all 0.2s ease;
}

.form-group input[type="file"]::file-selector-button:hover {
    background: #2980b9;
}

/* Image Preview Container - Dark Theme */
.current-images-grid,
.image-preview-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.image-preview-item {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid #3a3f47;
    background: #20232a;
}

.image-preview-item img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    display: block;
}

.image-preview-item .remove-image {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    background: rgba(231, 76, 60, 0.9);
    color: #ffffff;
    border: none;
    border-radius: 50%;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 0.875rem;
    transition: all 0.2s ease;
}

.image-preview-item .remove-image:hover {
    background: #e74c3c;
    transform: scale(1.1);
}

/* Video Preview - Dark Theme */
.video-preview {
    margin-top: 1rem;
    padding: 1rem;
    background: #20232a;
    border: 1px solid #3a3f47;
    border-radius: 4px;
}

.video-preview iframe {
    width: 100%;
    height: 300px;
    border: none;
    border-radius: 4px;
}

/* ============================================
   Buttons
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: 'Roboto', sans-serif;
    letter-spacing: 0.3px;
}

.btn-primary {
    background: #3498db;
    color: white;
}

.btn-primary:hover {
    background: #2980b9;
    box-shadow: 0 2px 4px rgba(52, 152, 219, 0.3);
}

.btn-secondary {
    background: #95a5a6;
    color: white;
}

.btn-secondary:hover {
    background: #7f8c8d;
    box-shadow: 0 2px 4px rgba(149, 165, 166, 0.3);
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

.btn-edit {
    background: var(--warning-color);
    color: white;
}

.btn-edit:hover {
    background: #d97706;
}

.btn-delete {
    background: var(--error-color);
    color: white;
}

.btn-delete:hover {
    background: #dc2626;
}

.btn-danger {
    background: #e74c3c;
    color: white;
    border: none;
}

.btn-danger:hover {
    background: #c0392b;
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(231, 76, 60, 0.3);
}

/* ============================================
   Alerts
   ============================================ */
.alert {
    padding: 0.875rem 1.25rem;
    border-radius: 4px;
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 400;
    font-size: 14px;
    border-left: 4px solid;
}

.alert-error {
    background: #f8d7da;
    color: #721c24;
    border-left-color: #e74c3c;
}

.alert-success {
    background: #d4edda;
    color: #155724;
    border-left-color: #27ae60;
}

.alert-info {
    background: #d1ecf1;
    color: #0c5460;
    border-left-color: #3498db;
}

.alert i {
    font-size: 1.25rem;
}

/* ============================================
   Badges
   ============================================ */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.3rem 0.65rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 700;
    border: 1px solid transparent;
}

.badge-success {
    background: #d4edda;
    color: #155724;
    border-color: #c3e6cb;
    font-weight: 400;
}

.badge-error {
    background: #f8d7da;
    color: #721c24;
    border-color: #f5c6cb;
    font-weight: 400;
}

.badge-warning {
    background: #fff3cd;
    color: #856404;
    border-color: #ffeaa7;
    font-weight: 400;
}

.badge-secondary {
    background: #ecf0f1;
    color: #7f8c8d;
    border-color: #bdc3c7;
    font-weight: 400;
}

/* ============================================
   Admin Panel Additional Mobile Styles
   ============================================ */
.places-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

.card-meta,
.admin-card-meta {
    margin: 1rem 0;
    padding: 0.75rem;
    background: #20232a;
    border-radius: 4px;
    font-size: 13px;
    color: #bdc3c7;
    letter-spacing: 0.2px;
    border: 1px solid #3a3f47;
}

.card-meta div,
.admin-card-meta div {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    font-size: 13px;
    font-weight: 400;
}

.card-meta div:last-child,
.admin-card-meta div:last-child {
    margin-bottom: 0;
}

.card-meta i,
.admin-card-meta i {
    color: #3498db;
    width: 16px;
    text-align: center;
    font-size: 13px;
}

.badge-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin: 1rem 0;
}

.current-images {
    margin-bottom: 1rem;
}

.current-images p {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #ecf0f1;
}

/* ============================================
   Responsive Design
   ============================================ */
@media (max-width: 1024px) {
    .main-content {
        margin-left: 0;
        width: 100%;
        padding: 0;
    }

    .sidebar {
        width: 100%;
        max-width: 100vw;
        height: auto;
        position: fixed;
        right: -100%;
        left: auto;
        top: 0;
        z-index: 999;
        height: 100vh;
        border-right: none;
        border-left: 2px solid var(--border-color);
        box-shadow: var(--shadow-xl);
        transition: right 0.3s ease;
        overflow-y: auto;
    }

    .sidebar.mobile-open {
        right: 0;
        left: auto;
    }

    .sidebar-close {
        display: block;
        right: auto;
        left: 1rem;
    }

    .mobile-menu-toggle {
        display: block;
        left: auto;
        right: 1rem;
        z-index: 998;
    }

    .sidebar-header-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .sidebar-social-section {
        width: 100%;
        align-items: flex-start;
    }

    .sidebar-social {
        width: 100%;
        justify-content: flex-start;
    }

    .sidebar-title {
        text-align: left;
        width: 100%;
    }

    .sidebar-title h3 {
        font-size: 0.7rem;
    }

    .sidebar-social-section {
        width: 100%;
        max-width: 100%;
        align-items: flex-start;
    }

    .sidebar-social {
        gap: 0.4rem;
    }

    .social-link {
        width: 32px;
        height: 32px;
        font-size: 0.9rem;
    }

    .filter-options {
        flex-direction: column;
        gap: 5px;
    }

    .filter-option {
        width: 100%;
        min-width: 100%;
        padding: 0.75rem 1rem;
        font-size: 0.875rem;
        min-height: 2.5rem;
    }
    
    .filter-option i {
        width: 24px;
        height: 24px;
        font-size: 1rem;
    }

    .filter-option .filter-text-wrapper {
        gap: 0.1rem;
    }

    .filter-option .filter-title {
        font-size: 0.875rem;
        text-transform: uppercase;
    }

    .filter-option .filter-subtitle {
        font-size: 0.625rem;
    }

    .main-content #list-view {
        padding: calc(1.5rem * 1.618);
        width: 100%;
        max-width: 100vw;
        margin: 0;
    }

    .map-container {
        left: 0;
        height: 100vh;
        position: fixed;
        width: 100%;
        max-width: 100vw;
    }
    
    /* Altın oran ile kart boyutlandırma */
    .place-card {
        aspect-ratio: 1 / 1.618;
        max-width: 100%;
    }
    
    .places-grid {
        grid-template-columns: 1fr;
        gap: calc(1.5rem * 1.618);
        padding: calc(1rem * 1.618);
        width: 100%;
        max-width: 100vw;
    }
    
    /* Mobilde sidebar tam ekran */
    .sidebar {
        max-width: 100vw;
        width: 100vw;
    }
    
    /* Mobilde içerik tam genişlik */
    .main-content {
        width: 100vw;
        max-width: 100vw;
        overflow-x: hidden;
    }
}

@media (max-width: 768px) {
    .header-top {
        padding: 1rem 0;
    }

    .header-top-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .header-nav {
        width: 100%;
        justify-content: flex-start;
        gap: 0.5rem;
    }

    .nav-link {
        flex: 1;
        justify-content: center;
        font-size: 0.875rem;
        padding: 0.625rem 1rem;
        min-width: auto;
    }

    .logo-text {
        font-size: 1.25rem;
    }

    .site-logo {
        width: 40px;
        height: 40px;
    }

    .places-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    /* Admin Panel Tablet */
    .admin-container {
        padding: 1.5rem;
    }

    .places-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    }

    .detail-value {
        font-size: 0.75rem;
    }

    .toggle-buttons {
        flex-direction: row;
        gap: 0.25rem;
        padding: 0.2rem;
    }

    .toggle-btn {
        flex: 1;
        justify-content: center;
        font-size: 0.75rem;
        padding: 0.45rem 0.6rem;
    }
    
    .toggle-btn i {
        font-size: 0.8rem;
    }

    /* Altın Oran (1.618) ile boyutlandırma */
    .filter-option {
        min-width: 100%;
        padding: calc(1rem * 1.618) calc(1.25rem * 1.618);
        font-size: calc(0.9375rem * 1.618);
        min-height: calc(2.5rem * 1.618);
        border-radius: calc(12px * 1.618);
    }
    
    .filter-option i {
        width: calc(28px * 1.618);
        height: calc(28px * 1.618);
        font-size: 1.25rem;
    }
    
    .filter-option span:not(.count) {
        font-size: 0.9375rem;
    }

    .map-container {
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
        height: 100vh;
        width: 100vw;
        position: fixed;
        z-index: 1;
    }

    .detail-header h1 {
        font-size: 1.75rem;
    }

    .image-gallery {
        gap: 0.75rem;
    }

    .thumbnail-images {
        grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
        gap: 0.5rem;
    }

    .video-wrapper {
        padding-bottom: 75%; /* Mobilde daha yüksek */
    }

    .detail-videos {
        padding: 1rem;
    }

    .detail-image {
        height: 250px;
    }

    .detail-content {
        padding: 1.5rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    /* Admin Panel Mobil Uyumluluk */
    .admin-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .admin-header h2 {
        font-size: 1.5rem;
    }

    .admin-header-actions {
        width: 100%;
        flex-direction: column;
        gap: 0.75rem;
    }

    .admin-header-actions .btn {
        width: 100%;
        justify-content: center;
    }

    .nav-container {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
        padding: 0 1rem;
    }

    .admin-nav h1 {
        font-size: 1.25rem;
    }

    .nav-user {
        width: 100%;
        flex-direction: column;
        gap: 0.75rem;
        align-items: flex-start;
    }

    .nav-user span {
        font-size: 0.875rem;
    }

    .btn-logout {
        width: 100%;
        justify-content: center;
        padding: 0.75rem 1rem;
    }

    .admin-container {
        padding: 1rem;
    }

    .place-form {
        padding: 1.5rem;
    }

    .form-group {
        margin-bottom: 1.25rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.875rem 1rem;
        font-size: 16px; /* iOS zoom önleme */
    }

    .form-group textarea {
        min-height: 150px;
    }

    .form-actions {
        flex-direction: column;
        gap: 0.75rem;
    }

    .form-actions .btn {
        width: 100%;
        justify-content: center;
        padding: 0.875rem 1.5rem;
    }

    .card-actions {
        flex-direction: column;
        gap: 0.5rem;
    }

    .card-actions .btn {
        width: 100%;
        justify-content: center;
    }

    .places-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .admin-card {
        width: 100%;
    }

    .admin-card img {
        width: 100%;
        height: auto;
        max-height: 250px;
        object-fit: cover;
    }

    .current-images-grid,
    .image-preview-container {
        grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
        gap: 0.75rem;
    }

    .video-preview iframe {
        height: 200px;
    }

    .login-container {
        padding: 1rem;
    }

    .login-box {
        padding: 2rem 1.5rem;
    }

    .login-header i {
        font-size: 2.5rem;
    }

    .login-header h1 {
        font-size: 1.5rem;
    }

    .logo-upload-section {
        padding: 1.5rem;
    }

    .logo-upload-form {
        max-width: 100%;
    }

    .empty-state {
        padding: 2rem 1rem;
    }

    .empty-state i {
        font-size: 3rem;
    }

    .badge-row {
        flex-direction: column;
        gap: 0.5rem;
        align-items: flex-start;
    }

    .card-meta {
        font-size: 0.875rem;
    }

    .card-meta div {
        margin-bottom: 0.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 0.75rem;
    }

    .filter-section {
        padding: 0.75rem 0.5rem;
    }

    .filter-option {
        padding: 0.625rem 0.75rem;
        font-size: 0.8125rem;
        min-height: 2.25rem;
    }

    .filter-option i {
        width: 20px;
        height: 20px;
        font-size: 0.875rem;
    }

    .filter-option .filter-title {
        font-size: 0.8125rem;
        text-transform: uppercase;
    }

    .filter-option .filter-subtitle {
        font-size: 0.5625rem;
    }

    .sidebar-header-content {
        padding: 0.75rem 0.5rem;
    }

    .site-logo-image {
        max-width: 100px;
        max-height: 100px;
    }

    .sidebar-social {
        gap: 0.5rem;
    }

    .social-link {
        width: 28px;
        height: 28px;
        font-size: 0.8rem;
    }

    .sidebar-title h3 {
        font-size: 0.75rem;
    }

    .main-header {
        padding: 2rem 0;
    }

    .main-header h1 {
        font-size: 1.5rem;
        flex-direction: column;
        gap: 0.5rem;
    }

    .main-content {
        padding: 2rem 0;
    }

    .card-content {
        padding: 1rem;
    }

    .card-content h3 {
        font-size: 1.25rem;
    }

    /* Admin Panel Küçük Ekranlar */
    .admin-container {
        padding: 0.75rem;
    }

    .admin-header h2 {
        font-size: 1.25rem;
    }

    .admin-header h2 i {
        font-size: 1.1rem;
    }

    .admin-nav {
        padding: 0.75rem 0;
    }

    .nav-container {
        padding: 0 0.75rem;
    }

    .admin-nav h1 {
        font-size: 1.1rem;
    }

    .admin-nav h1 i {
        font-size: 1rem;
    }

    .place-form {
        padding: 1rem;
    }

    .form-group {
        margin-bottom: 1rem;
    }

    .form-group label {
        font-size: 0.875rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.75rem 0.875rem;
        font-size: 16px; /* iOS zoom önleme */
    }

    .form-group small {
        font-size: 0.75rem;
    }

    .btn {
        padding: 0.75rem 1.25rem;
        font-size: 0.875rem;
    }

    .btn-sm {
        padding: 0.5rem 0.875rem;
        font-size: 0.8125rem;
    }

    .login-box {
        padding: 1.5rem 1rem;
    }

    .login-header i {
        font-size: 2rem;
    }

    .login-header h1 {
        font-size: 1.25rem;
    }

    .logo-upload-section {
        padding: 1rem;
    }

    .current-logo-preview h3 {
        font-size: 1.1rem;
    }

    .current-images-grid,
    .image-preview-container {
        grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
        gap: 0.5rem;
    }

    .video-preview {
        padding: 0.75rem;
    }

    .video-preview iframe {
        height: 180px;
    }

    .alert {
        padding: 0.875rem 1rem;
        font-size: 0.875rem;
    }

    .alert i {
        font-size: 1.1rem;
    }

    .badge {
        font-size: 0.7rem;
        padding: 0.25rem 0.5rem;
    }

    .empty-state {
        padding: 1.5rem 0.75rem;
    }

    .empty-state i {
        font-size: 2.5rem;
    }

    .empty-state p {
        font-size: 0.875rem;
    }

    .card-meta {
        font-size: 0.8125rem;
    }

    .card-meta i {
        font-size: 0.75rem;
    }
}

/* ============================================
   Loading & Performance
   ============================================ */
img {
    max-width: 100%;
    height: auto;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
    margin: 0;
    padding: 0;
    height: 100%;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
    box-sizing: border-box;
}

/* Focus styles for accessibility */
*:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Mobile touch optimizations */
@media (max-width: 768px) {
    * {
        -webkit-tap-highlight-color: transparent;
    }

    body {
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
    }

    .filter-option,
    .toggle-btn,
    .nav-link {
        touch-action: manipulation;
        -webkit-tap-highlight-color: transparent;
    }

    img {
        max-width: 100%;
        height: auto;
        display: block;
    }

    .main-content {
        overflow-x: hidden;
    }
}

@media (max-width: 480px) {
    html {
        font-size: 14px;
    }

    body {
        font-size: 0.875rem;
    }
}

/* ============================================
   Modern Admin Panel Styles - Adminator Theme
   ============================================ */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap');

.admin-dashboard-modern {
    background: #20232a;
    min-height: 100vh;
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 14px;
    line-height: 1.5;
    color: #ecf0f1;
    font-weight: 400;
    overflow-x: hidden !important;
    width: 100% !important;
    max-width: 100vw !important;
    position: relative;
}

.admin-dashboard-modern * {
    box-sizing: border-box;
}

/* Sidebar - Adminator Style */
.admin-sidebar {
    position: fixed;
    left: 0;
    top: 0;
    width: 250px;
    height: 100vh;
    background: #1a1d24;
    box-shadow: none;
    z-index: 1000;
    transition: all 0.3s ease;
    overflow-y: auto;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.admin-sidebar::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 1px;
    background: #3a3f47;
    z-index: 1;
}

.admin-sidebar::-webkit-scrollbar {
    width: 6px;
}

.admin-sidebar::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.2);
}

.admin-sidebar::-webkit-scrollbar-thumb {
    background: rgba(52, 152, 219, 0.4);
    border-radius: 3px;
}

.admin-sidebar::-webkit-scrollbar-thumb:hover {
    background: rgba(52, 152, 219, 0.6);
}

.admin-sidebar-header {
    padding: 1.5rem 1.25rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #20232a;
}

.admin-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #ffffff;
    text-decoration: none;
    font-size: 1.125rem;
    font-weight: 600;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.admin-logo:hover {
    color: #3498db;
    transform: translateX(2px);
}

.admin-logo i {
    font-size: 1.5rem;
    color: #3498db;
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.admin-sidebar-toggle {
    display: none;
    background: transparent;
    border: none;
    color: #a0a8b0;
    font-size: 1.25rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 6px;
    transition: all 0.25s ease;
}

.admin-sidebar-toggle:hover {
    background: rgba(52, 152, 219, 0.1);
    color: #3498db;
    transform: rotate(90deg);
}

.admin-sidebar-nav {
    padding: 0.75rem 0;
}

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

.admin-menu-item {
    margin: 0;
}

.admin-menu-link {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    padding: 0.875rem 1.25rem;
    color: #a0a8b0;
    text-decoration: none;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.2px;
    border-left: 3px solid transparent;
}

.admin-menu-link:hover {
    background: rgba(52, 152, 219, 0.08);
    color: #ffffff;
    border-left-color: #3498db;
    transform: translateX(2px);
}

.admin-menu-item.active .admin-menu-link {
    background: linear-gradient(90deg, rgba(52, 152, 219, 0.2) 0%, rgba(52, 152, 219, 0.05) 100%);
    color: #ffffff;
    border-left-color: #3498db;
    font-weight: 500;
    box-shadow: inset 0 0 20px rgba(52, 152, 219, 0.1);
}

.admin-menu-link i {
    width: 20px;
    text-align: center;
    font-size: 1.125rem;
    color: #7f8c8d;
    transition: all 0.25s ease;
}

.admin-menu-link:hover i {
    color: #3498db;
    transform: scale(1.1);
}

.admin-menu-item.active .admin-menu-link i {
    color: #3498db;
    transform: scale(1.1);
}

.admin-menu-item.open > .admin-menu-link .submenu-icon {
    transform: rotate(180deg);
    color: #3498db;
}

.submenu-icon {
    color: #7f8c8d;
    transition: all 0.25s ease;
    font-size: 0.75rem;
    margin-left: auto;
}

.admin-menu-link:hover .submenu-icon {
    color: #3498db;
}

.admin-submenu {
    list-style: none;
    padding: 0;
    margin: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: rgba(0, 0, 0, 0.2);
}

.admin-submenu li a {
    display: block;
    padding: 0.75rem 1.25rem 0.75rem 3.25rem;
    color: #8a939b;
    text-decoration: none;
    font-size: 13px;
    font-weight: 400;
    transition: all 0.25s ease;
    border-left: 3px solid transparent;
}

.admin-submenu li a:hover {
    background: rgba(52, 152, 219, 0.08);
    color: #ffffff;
    border-left-color: #3498db;
    padding-left: 3.5rem;
}

.admin-badge {
    margin-left: auto;
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: #ffffff;
    font-size: 11px;
    font-weight: 600;
    padding: 0.25rem 0.5rem;
    border-radius: 12px;
    min-width: 20px;
    text-align: center;
    line-height: 1.2;
    box-shadow: 0 2px 4px rgba(231, 76, 60, 0.3);
}

/* Main Wrapper */
.admin-main-wrapper {
    margin-left: 250px;
    min-height: 100vh;
    transition: margin-left 0.3s ease;
    background: #20232a;
    overflow-x: hidden;
    width: calc(100% - 250px);
    max-width: calc(100vw - 250px);
    padding: 0;
    margin: 0;
    margin-top: 0;
    margin-right: 0;
    margin-bottom: 0;
    margin-left: 250px;
}

/* Top Header - Adminator Style */
.admin-top-header {
    background: #2a2e35;
    padding: 1rem 1.5rem 1rem 0;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    z-index: 999;
    border-bottom: 1px solid #3a3f47;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
}

.admin-header-left {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-left: 1.5rem;
}

.admin-mobile-menu-toggle {
    display: none;
    background: transparent;
    border: none;
    font-size: 1.25rem;
    color: #ecf0f1;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 4px;
    transition: background 0.2s ease;
}

.admin-mobile-menu-toggle:hover {
    background: rgba(255, 255, 255, 0.1);
}

.admin-page-title {
    font-size: 1.25rem;
    font-weight: 500;
    color: #ecf0f1;
    margin: 0;
    letter-spacing: 0.3px;
}

.admin-header-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.admin-header-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    max-width: 100%;
    box-sizing: border-box;
}

.admin-header-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: #3a3f47;
    color: #ecf0f1;
    text-decoration: none;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
}

.admin-header-btn:hover {
    background: #4a4f57;
    color: #ffffff;
}

.admin-header-btn-primary {
    background: #3498db;
    color: #ffffff;
}

.admin-header-btn-primary:hover {
    background: #2980b9;
}

.admin-user-menu {
    position: relative;
}

.admin-user-btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 1rem;
    background: transparent;
    border: none;
    color: #ecf0f1;
    cursor: pointer;
    border-radius: 4px;
    transition: background 0.2s ease;
    font-size: 14px;
    font-weight: 400;
}

.admin-user-btn:hover {
    background: rgba(255, 255, 255, 0.1);
}

.admin-user-btn i:first-child {
    font-size: 1.5rem;
    color: #3498db;
}

.admin-user-dropdown {
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 0;
    background: #2a2e35;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    border: 1px solid #3a3f47;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.admin-user-dropdown.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.admin-user-dropdown-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    color: #ecf0f1;
    text-decoration: none;
    font-size: 13px;
    font-weight: 400;
    transition: background 0.2s ease;
}

.admin-user-dropdown-item:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

.admin-user-dropdown-item:first-child {
    border-radius: 8px 8px 0 0;
}

.admin-user-dropdown-item:last-child {
    border-radius: 0 0 8px 8px;
}

.admin-user-dropdown-item:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

.admin-user-dropdown-item i {
    width: 18px;
    text-align: center;
    color: #bdc3c7;
}

.admin-user-info {
    padding: 0.75rem 1rem;
    border-bottom: 1px solid #3a3f47;
    margin-bottom: 0.5rem;
}

.admin-user-name {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #ecf0f1;
    margin-bottom: 0.25rem;
}

.admin-user-role {
    display: block;
    font-size: 12px;
    color: #bdc3c7;
    font-weight: 400;
}

.admin-user-dropdown-divider {
    height: 1px;
    background: #3a3f47;
    margin: 0.5rem 0;
}

/* Main Content */
.admin-main-content {
    padding: 1.5rem;
    background: #20232a;
    min-height: calc(100vh - 70px);
    color: #ecf0f1;
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.admin-dashboard-dark {
    background: #20232a;
}

.admin-main-content.admin-dashboard-dark {
    background: #20232a;
}

/* Modern Stat Cards */
.admin-stat-card-modern {
    background: #2a2e35;
    border: 1px solid #3a3f47;
    color: #ecf0f1;
}

.admin-stat-card-modern .admin-stat-value {
    color: #ffffff;
}

.admin-stat-card-modern .admin-stat-label {
    color: #bdc3c7;
}

.admin-stat-change {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 12px;
    font-weight: 500;
    margin-top: 0.5rem;
    padding: 0.25rem 0.5rem;
    border-radius: 12px;
}

.admin-stat-change-positive {
    background: rgba(39, 174, 96, 0.2);
    color: #27ae60;
}

.admin-stat-change-warning {
    background: rgba(243, 156, 18, 0.2);
    color: #f39c12;
}

.admin-stat-change-info {
    background: rgba(52, 152, 219, 0.2);
    color: #3498db;
}

/* Dashboard Main Grid */
.admin-dashboard-main-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 1.25rem;
    margin-top: 0;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.admin-card-map {
    background: #2a2e35;
    border: 1px solid #3a3f47;
}

.admin-card-map .admin-card-header {
    background: #20232a;
    border-bottom: 1px solid #3a3f47;
}

.admin-card-map .admin-card-title {
    color: #ecf0f1;
}

.admin-card-categories {
    background: #2a2e35;
    border: 1px solid #3a3f47;
}

.admin-card-categories .admin-card-header {
    background: #20232a;
    border-bottom: 1px solid #3a3f47;
}

.admin-card-categories .admin-card-title {
    color: #ecf0f1;
}

.admin-card-body-map {
    padding: 0;
}

/* Admin Map Markers */
.admin-marker-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 14px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    border: 2px solid #ffffff;
}

.admin-marker-doğa {
    background: linear-gradient(135deg, #27ae60 0%, #229954 100%);
}

.admin-marker-tarihi {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
}

.admin-marker-turistik {
    background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
}

.admin-marker-yeme-içme {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
}

.admin-marker-konaklama-ulaşım {
    background: linear-gradient(135deg, #535068 0%, #3f3e4f 100%);
}

/* Admin Map Popup */
.admin-custom-popup .leaflet-popup-content-wrapper {
    background: #2a2e35;
    color: #ecf0f1;
    border-radius: 4px;
    padding: 0;
}

.admin-custom-popup .leaflet-popup-content {
    margin: 0;
    padding: 0;
}

.admin-map-popup {
    padding: 1rem;
    min-width: 200px;
}

.admin-map-popup h3 {
    margin: 0 0 0.5rem 0;
    font-size: 15px;
    font-weight: 500;
    color: #ffffff;
}

.admin-map-popup p {
    margin: 0.5rem 0;
    font-size: 13px;
    color: #bdc3c7;
    line-height: 1.5;
}

.admin-popup-edit-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: #3498db;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.2s ease;
}

.admin-popup-edit-btn:hover {
    background: #2980b9;
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(52, 152, 219, 0.3);
}

.admin-custom-popup .leaflet-popup-tip {
    background: #2a2e35;
}

.admin-custom-popup .leaflet-popup-close-button {
    color: #ecf0f1;
    font-size: 18px;
    padding: 4px 8px;
}

.admin-custom-popup .leaflet-popup-close-button:hover {
    color: #ffffff;
}

.admin-content-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #3a3f47;
}

.admin-content-title {
    font-size: 1.5rem;
    font-weight: 500;
    color: #ecf0f1;
    margin: 0;
    letter-spacing: 0.3px;
}

/* Statistics Grid */
.admin-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.25rem;
    margin-bottom: 1.5rem;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.admin-stat-card {
    background: #2a2e35;
    border-radius: 6px;
    padding: 1.25rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    gap: 1.25rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    border: 1px solid #3a3f47;
    width: 100%;
    box-sizing: border-box;
}

.admin-stat-card:hover {
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}

.admin-stat-icon {
    width: 56px;
    height: 56px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.admin-stat-icon-primary {
    background: #3498db;
    color: #ffffff;
}

.admin-stat-icon-success {
    background: #27ae60;
    color: #ffffff;
}

.admin-stat-icon-warning {
    background: #f39c12;
    color: #ffffff;
}

.admin-stat-icon-info {
    background: #16a085;
    color: #ffffff;
}

.admin-stat-content {
    flex: 1;
}

.admin-stat-value {
    font-size: 1.75rem;
    font-weight: 500;
    color: #ecf0f1;
    margin: 0 0 0.25rem 0;
    line-height: 1.2;
}

.admin-stat-label {
    font-size: 13px;
    color: #bdc3c7;
    margin: 0;
    font-weight: 400;
}

/* Admin Card - Adminator Style */
.admin-card {
    background: #2a2e35;
    border-radius: 4px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    margin-bottom: 1.5rem;
    overflow: hidden;
    border: 1px solid #3a3f47;
}

.admin-card-header {
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid #3a3f47;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #20232a;
}

.admin-card-title {
    font-size: 1rem;
    font-weight: 500;
    color: #ecf0f1;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    letter-spacing: 0.3px;
}

.admin-card-title i {
    color: #3498db;
    font-size: 1.125rem;
}

.admin-card-body {
    padding: 1.5rem;
    background: #2a2e35;
    color: #ecf0f1;
}

/* Category Stats - Grid Layout */
.admin-category-stats-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0.75rem;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.admin-category-stat-card {
    background: #2a2e35;
    border: 1px solid #3a3f47;
    border-radius: 4px;
    padding: 0.875rem 0.75rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.2s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.admin-category-stat-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
    border-color: #3498db;
}

.admin-category-stat-icon {
    width: 36px;
    height: 36px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    background: #20232a;
    color: #3498db;
}

.admin-category-stat-card:hover .admin-category-stat-icon {
    background: #3498db;
    color: #ffffff;
}

.admin-category-stat-content {
    width: 100%;
}

.admin-category-stat-label {
    font-size: 11px;
    color: #bdc3c7;
    font-weight: 400;
    margin-bottom: 0.375rem;
    line-height: 1.3;
}

.admin-category-stat-value {
    font-size: 1.25rem;
    font-weight: 500;
    color: #ecf0f1;
    line-height: 1.2;
}

/* Places Grid */
.admin-places-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1.5rem;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.admin-place-card {
    background: #2a2e35;
    border: 1px solid #3a3f47;
    border-radius: 4px;
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.admin-place-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.admin-place-card-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: #20232a;
}

.admin-place-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.admin-place-card-image-empty {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #7f8c8d;
    font-size: 3rem;
}

.admin-place-card-content {
    padding: 1.25rem;
}

.admin-place-card-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.375rem 0.75rem;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 500;
    margin-bottom: 0.75rem;
}

.admin-place-card-title {
    font-size: 15px;
    font-weight: 500;
    color: #ecf0f1;
    margin: 0 0 0.5rem 0;
    line-height: 1.4;
    letter-spacing: 0.2px;
}

.admin-place-card-description {
    font-size: 13px;
    color: #bdc3c7;
    margin: 0 0 1rem 0;
    line-height: 1.5;
    font-weight: 400;
}

.admin-place-card-actions {
    display: flex;
    gap: 0.5rem;
    padding-top: 1rem;
    border-top: 1px solid #3a3f47;
}

.admin-place-card-actions .btn {
    flex: 1;
    text-align: center;
    padding: 0.5rem;
    justify-content: center;
}

/* Empty State */
.admin-empty-state {
    text-align: center;
    padding: 3rem 2rem;
}

.admin-empty-state i {
    font-size: 4rem;
    color: #bdc3c7;
    margin-bottom: 1rem;
}

.admin-empty-state p {
    font-size: 15px;
    color: #7f8c8d;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

/* Collapsed Sidebar */
.admin-sidebar.collapsed {
    width: 70px;
}

.admin-sidebar.collapsed .admin-logo span,
.admin-sidebar.collapsed .admin-menu-link span,
.admin-sidebar.collapsed .admin-badge,
.admin-sidebar.collapsed .submenu-icon {
    display: none;
}

.admin-sidebar.collapsed .admin-main-wrapper {
    margin-left: 70px;
    width: calc(100% - 70px);
    max-width: calc(100vw - 70px);
}

/* Mobile Responsive */
@media (max-width: 1024px) {
    .admin-sidebar {
        transform: translateX(-100%);
    }

    .admin-sidebar.mobile-open {
        transform: translateX(0);
    }

    .admin-main-wrapper {
        margin-left: 0;
        width: 100%;
        max-width: 100vw;
        overflow-x: hidden;
    }

    .admin-mobile-menu-toggle {
        display: block;
    }

    .admin-sidebar-toggle {
        display: block;
    }

    .admin-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .admin-category-stats-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.75rem;
    }

    .admin-places-grid {
        grid-template-columns: 1fr;
    }

    .admin-dashboard-main-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .admin-card-body-map {
        padding: 0;
    }

    #admin-map {
        height: 400px !important;
    }
}

@media (max-width: 768px) {
    .admin-main-content {
        padding: 1rem;
        overflow-x: hidden;
        width: 100%;
        max-width: 100%;
    }

    .admin-top-header {
        padding: 1rem 1rem 1rem 0;
        overflow-x: hidden;
        width: 100%;
        max-width: 100%;
    }

    .admin-header-left {
        padding-left: 1rem;
    }

    .admin-page-title {
        font-size: 1.25rem;
    }

    .admin-header-btn span {
        display: none;
    }

    .admin-user-btn span {
        display: none;
    }

    .admin-stats-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .admin-stat-card {
        padding: 1rem;
        gap: 1rem;
    }

    .admin-stat-icon {
        width: 48px;
        height: 48px;
        font-size: 1.25rem;
    }

    .admin-stat-value {
        font-size: 1.5rem;
    }

    .admin-card-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
        padding: 1rem;
    }

    .admin-card-body {
        padding: 1rem;
    }

    .admin-category-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }

    .admin-category-stat-card {
        padding: 0.75rem 0.5rem;
    }

    .admin-category-stat-icon {
        width: 32px;
        height: 32px;
        font-size: 1rem;
    }

    .admin-dashboard-main-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    #admin-map {
        height: 350px !important;
    }

    .admin-card-body {
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .admin-main-content {
        padding: 0.75rem;
    }

    .admin-stat-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .admin-stat-value {
        font-size: 1.5rem;
    }

    .admin-category-stats-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .admin-category-stat-card {
        padding: 0.75rem 0.5rem;
    }

    .admin-category-stat-icon {
        width: 32px;
        height: 32px;
        font-size: 1rem;
        margin-bottom: 0.375rem;
    }

    .admin-category-stat-label {
        font-size: 10px;
        margin-bottom: 0.25rem;
    }

    .admin-category-stat-value {
        font-size: 1.125rem;
    }

    .admin-place-card-actions {
        flex-direction: column;
    }

    .admin-place-card-actions .btn {
        width: 100%;
    }
}

/* ============================================
   Toggle Switch (SEO Sayfaları için)
   ============================================ */
.toggle-switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 26px;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #3a3f47;
    transition: 0.3s;
    border-radius: 26px;
}

.toggle-slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 3px;
    bottom: 3px;
    background-color: #ecf0f1;
    transition: 0.3s;
    border-radius: 50%;
}

.toggle-switch input:checked + .toggle-slider {
    background-color: #3498db;
}

.toggle-switch input:checked + .toggle-slider:before {
    transform: translateX(24px);
}

.toggle-switch input:focus + .toggle-slider {
    box-shadow: 0 0 1px #3498db;
}

/* ============================================
   Yorum Paneli - Sol Dikey Şeffaf Panel
   ============================================ */
.comments-panel {
    position: fixed;
    right: 0;
    top: 0;
    width: 380px;
    height: 100vh;
    background: rgba(30, 41, 59, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 3000 !important;
    transform: translateX(100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex !important;
    flex-direction: column;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    visibility: visible !important;
    opacity: 1 !important;
    /* Sağ tarafta görünmesi için */
    position: fixed !important;
    right: 0 !important;
    top: 0 !important;
}

.comments-panel.active {
    transform: translateX(0) !important;
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    right: 0 !important;
    position: fixed !important;
    z-index: 3000 !important;
}

.comments-panel-header {
    padding: 1.5rem;
    background: rgba(15, 23, 42, 0.8);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-shrink: 0;
}

.comments-panel-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin: 0;
}

.comments-panel-title i {
    color: var(--primary-color);
    font-size: 1.5rem;
}

.comments-panel-close {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 1.125rem;
}

.comments-panel-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
}

.comments-panel-content {
    flex: 1;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    padding: 0;
    min-height: 0;
}

.comments-panel-content::-webkit-scrollbar {
    width: 6px;
}

.comments-panel-content::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
}

.comments-panel-content::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 3px;
}

.comments-panel-content::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.3);
}

.comments-list {
    flex: 1;
    padding: 1.5rem;
    min-height: 0;
    overflow-y: auto;
    overflow-x: hidden;
    max-height: calc(100vh - 350px);
}

.comments-list::-webkit-scrollbar {
    width: 6px;
}

.comments-list::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 3px;
}

.comments-list::-webkit-scrollbar-thumb {
    background: rgba(99, 102, 241, 0.5);
    border-radius: 3px;
}

.comments-list::-webkit-scrollbar-thumb:hover {
    background: rgba(99, 102, 241, 0.7);
}

.comments-loading,
.comments-empty,
.comments-error {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem 1.5rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    min-height: 200px;
}

.comments-loading i,
.comments-empty i,
.comments-error i {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    opacity: 0.5;
}

.comments-loading i {
    color: var(--primary-color);
}

.comments-empty i {
    color: rgba(255, 255, 255, 0.3);
}

.comments-error i {
    color: var(--error-color);
}

.comment-item {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-left: 3px solid rgba(99, 102, 241, 0.5);
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1rem 1.25rem;
    margin-bottom: 0.875rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 2px 8px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.comment-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(180deg, rgba(99, 102, 241, 0.6) 0%, rgba(139, 92, 246, 0.6) 100%);
}

.comment-item:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.25);
    border-left-color: rgba(99, 102, 241, 0.7);
    transform: translateX(4px);
    box-shadow: 
        0 4px 12px rgba(99, 102, 241, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.comment-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.625rem;
    gap: 0.75rem;
    padding-bottom: 0.625rem;
    border-bottom: 1px solid rgba(99, 102, 241, 0.15);
}

.comment-author {
    color: #e0e7ff;
    font-weight: 600;
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.comment-author::before {
    content: '';
    width: 6px;
    height: 6px;
    background: #6366f1;
    border-radius: 50%;
    box-shadow: 0 0 6px rgba(99, 102, 241, 0.6);
}

.comment-date {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.75rem;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 0.375rem;
    font-weight: 400;
}

.comment-date::before {
    content: '🕒';
    font-size: 0.7rem;
    opacity: 0.7;
}

.comment-text {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    font-size: 0.875rem;
    padding-left: 0.5rem;
    position: relative;
}

.comments-form-wrapper {
    padding: 0.5rem 0.75rem;
    background: rgba(15, 23, 42, 0.8);
    border-top: 2px solid rgba(99, 102, 241, 0.3);
    flex-shrink: 0;
    position: relative;
    z-index: 10;
}

.comments-form-title {
    font-size: 0.8125rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.375rem;
    display: flex;
    align-items: center;
    gap: 0.375rem;
}

.comments-form-title::before {
    content: '';
    width: 2px;
    height: 10px;
    background: var(--primary-color);
    border-radius: 2px;
}

.comments-form {
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
}

.comments-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.25rem;
}

.comments-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
    margin-bottom: 0;
}

.comments-form .form-group label {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.65rem;
    font-weight: 500;
    margin-bottom: 0;
    line-height: 1.2;
}

.comments-form .form-group input,
.comments-form .form-group textarea {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    padding: 0.3125rem 0.4375rem;
    color: #ffffff;
    font-size: 0.6875rem;
    transition: all 0.2s ease;
    font-family: inherit;
    line-height: 1.4;
}

.comments-form .form-group input:focus,
.comments-form .form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.1);
}

.comments-form .form-group input::placeholder,
.comments-form .form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.6875rem;
}

.comments-form .form-group textarea {
    resize: vertical;
    min-height: 45px;
    max-height: 80px;
}

.form-hint {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.65rem;
    margin-top: -0.25rem;
}

.btn-comment-submit {
    background: var(--primary-color);
    color: #ffffff;
    border: none;
    border-radius: 4px;
    padding: 0.375rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.375rem;
    margin-top: 0.125rem;
}

.btn-comment-submit:hover:not(:disabled) {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.btn-comment-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Captcha Stilleri */
.comments-form .captcha-group {
    margin-bottom: 0.375rem;
}

.comments-form .captcha-group label {
    font-size: 0.65rem;
    margin-bottom: 0;
}

.comments-form .captcha-wrapper {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    padding: 0.25rem 0.375rem;
}

.comments-form .captcha-question {
    color: #ffffff;
    font-size: 0.6875rem;
    font-weight: 600;
    white-space: nowrap;
    min-width: 70px;
    text-align: center;
    padding: 0.1875rem 0.375rem;
    background: rgba(37, 99, 235, 0.2);
    border-radius: 3px;
}

.comments-form .captcha-input {
    flex: 1;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    padding: 0.3125rem 0.4375rem;
    color: #ffffff;
    font-size: 0.6875rem;
    transition: all 0.2s ease;
    font-family: inherit;
    min-width: 50px;
}

.comments-form .captcha-input:focus {
    outline: none;
    border-color: var(--primary-color);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.1);
}

.comments-form .captcha-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.6875rem;
}

.comments-form .btn-captcha-refresh {
    background: rgba(37, 99, 235, 0.3);
    color: #ffffff;
    border: 1px solid rgba(37, 99, 235, 0.5);
    border-radius: 3px;
    padding: 0.25rem 0.375rem;
    font-size: 0.6875rem;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 28px;
    height: 28px;
}

.comments-form .btn-captcha-refresh:hover {
    background: rgba(37, 99, 235, 0.5);
    border-color: var(--primary-color);
    transform: rotate(180deg);
}

.comments-form .btn-captcha-refresh i {
    transition: transform 0.3s ease;
    font-size: 0.6875rem;
}

.comments-form .captcha-error {
    color: #ef4444;
    font-size: 0.6rem;
    margin-top: 0.125rem;
    display: flex;
    align-items: center;
    gap: 0.1875rem;
    line-height: 1.2;
}

/* Test Butonu */
.test-comments-btn {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: #ffffff;
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.4);
    z-index: 2500;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.test-comments-btn:hover {
    background: var(--primary-dark);
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(37, 99, 235, 0.5);
}

/* Responsive */
@media (max-width: 768px) {
    .comments-panel {
        width: 100%;
        max-width: 100vw;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .test-comments-btn {
        bottom: 1rem;
        right: 1rem;
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
}

