/* Base Styles & Variables */
:root {
    --bg-dark: #0a0a0a;
    --bg-card: #151515;
    --bg-hover: #1e1e1e;
    --text-main: #f0f0f0;
    --text-muted: #a0a0a0;
    --gold: #d4af37;
    --gold-hover: #f1cf5b;
    --accent-red: #c41e3a;
    --border-color: #2a2a2a;
    
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
}

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

body {
    font-family: var(--font-body);
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
}

/* Navbar */
.navbar {
    background-color: rgba(10, 10, 10, 0.95);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

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

.logo h1 {
    font-size: 1.8rem;
    letter-spacing: 2px;
    color: #fff;
}

.logo span {
    color: var(--gold);
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

.nav-links a:hover, .nav-links a.active {
    color: var(--gold);
}

/* Buttons */
.btn {
    padding: 0.6rem 1.5rem;
    border-radius: 4px;
    font-family: var(--font-body);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold);
}

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

.btn-primary {
    background: var(--gold);
    color: var(--bg-dark);
}

.btn-primary:hover {
    background: var(--gold-hover);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-main);
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    position: relative;
    height: 25vh;
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(to bottom, rgba(10,10,10,0.8), rgba(10,10,10,1)), url('https://images.unsplash.com/photo-1541359927273-d76820fc43f9?q=80&w=2070&auto=format&fit=crop') center/cover;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 0 2rem;
}

.hero h2 {
    font-size: 2.2rem;
    margin-bottom: 0.3rem;
}

.hero h2 span {
    color: var(--gold);
    font-style: italic;
}

.hero p {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 0;
}

.legal-notice {
    margin-top: 10px;
    padding: 6px 12px;
    background: rgba(0, 0, 0, 0.45);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    max-width: 600px;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.35;
    text-align: left;
    backdrop-filter: blur(8px);
}

.legal-notice i {
    font-size: 0.85rem;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .legal-notice {
        flex-direction: column;
        text-align: center;
        gap: 4px;
        padding: 6px 10px;
    }
}

/* VIP & Premium Özel Kart Stilleri */
@keyframes vipRainbowGlow {
    0% {
        box-shadow:
            0 0 8px 2px rgba(212, 175, 55, 0.8),
            0 0 25px 6px rgba(212, 175, 55, 0.4),
            0 0 50px 10px rgba(255, 51, 102, 0.25);
        border-color: rgba(212, 175, 55, 0.9);
    }
    33% {
        box-shadow:
            0 0 8px 2px rgba(255, 51, 102, 0.9),
            0 0 25px 6px rgba(255, 51, 102, 0.5),
            0 0 50px 10px rgba(51, 204, 255, 0.3);
        border-color: rgba(255, 51, 102, 0.9);
    }
    66% {
        box-shadow:
            0 0 8px 2px rgba(51, 204, 255, 0.9),
            0 0 25px 6px rgba(51, 204, 255, 0.5),
            0 0 50px 10px rgba(212, 175, 55, 0.3);
        border-color: rgba(51, 204, 255, 0.9);
    }
    100% {
        box-shadow:
            0 0 8px 2px rgba(212, 175, 55, 0.8),
            0 0 25px 6px rgba(212, 175, 55, 0.4),
            0 0 50px 10px rgba(255, 51, 102, 0.25);
        border-color: rgba(212, 175, 55, 0.9);
    }
}

.card-vip-glowing {
    animation: vipRainbowGlow 3s infinite ease-in-out;
    border-width: 2px !important;
    border-style: solid !important;
    background: linear-gradient(135deg, rgba(20, 20, 20, 0.98), rgba(10, 10, 10, 0.98)) !important;
}

.card-premium-distinct {
    border: 1px solid rgba(212, 175, 55, 0.6) !important;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.15) !important;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.95), rgba(18, 18, 18, 0.95)) !important;
}

.card-premium-distinct::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    z-index: 3;
}

/* Search Bar */
.search-bar {
    display: flex;
    background: rgba(21, 21, 21, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 30px;
    padding: 0.4rem;
    gap: 0.2rem;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.search-input {
    flex: 1;
    display: flex;
    align-items: center;
    background: transparent;
    padding: 0.8rem 1.2rem;
    border-radius: 25px;
    color: var(--text-muted);
}

.search-input:not(:last-child) {
    border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.search-input i {
    margin-right: 10px;
    color: var(--gold);
}

.search-input select {
    background: transparent;
    border: none;
    color: var(--text-main);
    width: 100%;
    outline: none;
    font-size: 1rem;
    cursor: pointer;
}

.search-input select option {
    background: var(--bg-dark);
    color: var(--text-main);
}

.search-bar .btn-primary {
    border-radius: 25px;
    padding: 0.8rem 2.2rem;
    font-weight: 600;
}

/* Directory Layout */
.directory-container {
    max-width: 1400px;
    margin: 3rem auto;
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

#listContainer {
    width: 100%;
}

/* Sidebar Filters */
.filters-sidebar {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    height: fit-content;
}

.filters-sidebar h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--gold);
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 0.5rem;
}

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

.filter-group h4 {
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
}

.filter-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-muted);
    cursor: pointer;
    font-size: 0.95rem;
}

.filter-group label:hover {
    color: var(--text-main);
}

.filter-group input {
    margin-right: 8px;
    accent-color: var(--gold);
}

/* Profiles Grid */
.profiles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1.5rem;
}

/* Profile Card */
.profile-card {
    background: var(--bg-card);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s ease, border-color 0.4s ease;
    cursor: pointer;
    position: relative;
}

.profile-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.7);
    border-color: rgba(212, 175, 55, 0.4);
}

.card-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--gold);
    color: var(--bg-dark);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    z-index: 2;
}

.card-badge.badge-vip {
    background: linear-gradient(135deg, #d4af37, #f3e5ab) !important;
    color: #000 !important;
    box-shadow: 0 0 8px rgba(212, 175, 55, 0.6);
}

.card-badge.badge-premium {
    background: linear-gradient(135deg, #8a2be2, #4b0082) !important;
    color: #fff !important;
    box-shadow: 0 0 8px rgba(138, 43, 226, 0.6);
}

.card-badge.badge-new, .card-badge.badge-yeni, .card-badge.new {
    background: linear-gradient(135deg, #00bfff, #008080) !important;
    color: white !important;
}

.card-img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.profile-card:hover .card-img {
    transform: scale(1.06);
}

.card-info {
    padding: 1.5rem;
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 0.5rem;
}

.card-header h3 {
    font-size: 1.5rem;
    color: #fff;
}

.card-age {
    color: var(--gold);
    font-weight: 600;
}

.card-location {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 5px;
}

.card-tags {
    display: none !important; /* Sarı etiketleri tamamen gizle */
    gap: 0.5rem;
    flex-wrap: wrap;
}

.tag {
    display: none !important; /* Sarı etiketleri tamamen gizle */
    background: rgba(212, 175, 55, 0.1);
    color: var(--gold);
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
    font-size: 0.8rem;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

/* Footer */
footer {
    background: var(--bg-card);
    border-top: 1px solid var(--border-color);
    padding: 3rem 2rem 1rem;
    margin-top: 4rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-brand h2 {
    font-size: 1.5rem;
}

.footer-brand span {
    color: var(--gold);
}

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

.footer-links {
    display: flex;
    gap: 1.5rem;
}

.footer-links a:hover {
    color: var(--gold);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Responsive Design */

@media (max-width: 768px) {
    .nav-links, .nav-actions .btn {
        display: none;
    }
    .mobile-menu-toggle {
        display: block;
    }
    .hero h2 {
        font-size: 2rem;
    }
    .hero {
        height: auto;
        min-height: 300px;
        padding: 3rem 1rem;
    }
    .search-bar {
        flex-direction: column;
        border-radius: 16px;
        padding: 0.8rem;
        gap: 0.8rem;
    }
    .search-input {
        border-right: none !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        padding: 0.6rem 0.4rem;
        border-radius: 0;
    }
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    .profile-detail-content {
        flex-direction: column;
    }
    .profile-media {
        flex: unset;
        width: 100%;
    }
}

/* New Light Theme Components based on screenshots */
.filters-sidebar.light-theme {
    background: #f5f5f5;
    border: 1px solid #c41e3a;
    padding: 0;
    color: #333;
}

.country-header {
    background: #fdfdfd;
    border-bottom: 1px solid #e0e0e0;
    padding: 10px 15px;
    font-size: 1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #c41e3a;
}

.country-header img {
    border: 1px solid #ccc;
}

.country-header .count {
    color: #c41e3a;
    margin-left: auto;
}

.city-list {
    list-style: none;
    padding: 0;
    margin: 0;
    max-height: 600px;
    overflow-y: auto;
}

.city-list li {
    padding: 8px 15px;
    border-bottom: 1px solid #e0e0e0;
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: #444;
}

.city-list li:hover {
    background: #eaeaea;
}

.city-list li a {
    color: #444;
}

.city-list li .city-count {
    color: #888;
}

.city-list li.active a {
    color: #c41e3a;
}

/* Horizontal Nav */
.horizontal-nav {
    background: #f5f5f5;
    padding: 10px 15px;
    border: 1px solid #e0e0e0;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    font-size: 0.9rem;
    color: #333;
}

.btn-incall {
    background: #c41e3a;
    color: white;
    padding: 6px 12px;
    font-weight: bold;
    border-radius: 2px;
}

.btn-incall:hover {
    color: white;
    background: #a01830;
}

.horizontal-nav a {
    color: #c41e3a;
    font-weight: 600;
}

.horizontal-nav a:hover {
    text-decoration: underline;
    color: #a01830;
}

.horizontal-nav .separator {
    color: #ccc;
}

.nav-all {
    color: #333 !important;
}

.nav-district-count {
    color: #888;
    font-weight: normal;
}

.content-area {
    display: flex;
    flex-direction: column;
}

/* --- Profile Detail View Styles --- */

.profile-detail-view-hidden {
    display: none;
}

#profileDetailView {
    width: 100%;
}

.profile-detail-content {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 3rem;
    background: var(--bg-card);
    padding: 2.5rem;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    align-items: flex-start;
}

.profile-media {
    flex: 0 0 380px;
    width: 380px;
}

.main-image-container {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 1rem;
    border: 2px solid var(--border-color);
    aspect-ratio: 3 / 4;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #111;
}

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

.top-premium-badge {
    position: absolute;
    top: -15px;
    right: -35px;
    background: linear-gradient(to bottom, #f9d423 0%, #ff4e50 100%);
    color: #fff;
    padding: 30px 40px 10px;
    transform: rotate(45deg);
    font-weight: 800;
    font-size: 0.8rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.5);
    z-index: 10;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.8);
}

.verified-badge {
    position: absolute;
    bottom: 0;
    left: 0;
    background: #007bff;
    color: #fff;
    padding: 5px 15px;
    font-weight: bold;
    font-size: 0.9rem;
    border-top-right-radius: 4px;
}

.thumbnail-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.thumbnail-gallery img {
    width: 100%;
    height: 100px;
    object-fit: cover;
    border-radius: 4px;
    cursor: pointer;
    transition: transform 0.2s ease, border-color 0.2s ease;
    border: 2px solid transparent;
}

.thumbnail-gallery img:hover {
    transform: scale(1.05);
    border-color: var(--gold);
}

.profile-info {
    flex: 1;
    min-width: 300px;
}

.contact-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.btn-whatsapp {
    flex: 1;
    background-color: #25D366;
    color: #fff;
    text-align: center;
    padding: 12px;
    border-radius: 4px;
    font-weight: bold;
    font-size: 1.1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    transition: background-color 0.3s ease;
}

.btn-whatsapp:hover {
    background-color: #128C7E;
    color: #fff;
}

.btn-call {
    flex: 1;
    background-color: var(--accent-red);
    color: #fff;
    text-align: center;
    padding: 12px;
    border-radius: 4px;
    font-weight: bold;
    font-size: 1.1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    transition: background-color 0.3s ease;
}

.btn-call:hover {
    background-color: #a01830;
    color: #fff;
}

.attributes-table {
    width: 100%;
    border-collapse: collapse;
}

.attributes-table tr {
    border-bottom: 1px solid var(--border-color);
}

.attributes-table tr:last-child {
    border-bottom: none;
}

.attributes-table td {
    padding: 12px 8px;
    font-size: 0.95rem;
}

.attributes-table td:first-child {
    color: var(--accent-red);
    font-weight: 600;
    width: 40%;
}

.attributes-table td:last-child {
    color: var(--text-main);
}

/* ---- Düzenleme Formu Stili ---- */
.edit-form-panel {
    margin-top: 3rem;
    background: var(--bg-card);
    border: 1px solid var(--gold);
    border-radius: 10px;
    padding: 2rem;
}

#profileEditPanel {
    display: none; /* Standart ziyaretçilerden korumak için sadece detay sayfasındaki paneli varsayılan olarak gizler */
}

.edit-form-panel h3 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    color: var(--gold);
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 10px;
}

.edit-form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
}

.edit-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.edit-field.full-width {
    grid-column: 1 / -1;
}

.edit-field label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.edit-field input,
.edit-field select,
.edit-field textarea {
    background: var(--bg-dark);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    color: var(--text-main);
    padding: 10px 14px;
    font-size: 1rem;
    font-family: var(--font-body);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    outline: none;
    width: 100%;
}

.edit-field input:focus,
.edit-field select:focus,
.edit-field textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.15);
}

.edit-field input::placeholder,
.edit-field textarea::placeholder {
    color: #555;
}

.edit-field select option {
    background: var(--bg-dark);
    color: var(--text-main);
}

.edit-field textarea {
    resize: vertical;
    min-height: 100px;
}

#saveProfileBtn {
    background: var(--gold);
    color: var(--bg-dark);
    font-weight: 700;
    letter-spacing: 1px;
    border-radius: 6px;
    cursor: pointer;
    border: none;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

#saveProfileBtn:hover {
    background: var(--gold-hover);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
    transform: translateY(-2px);
}

/* =============================================
   ÇOKLU GÖRÜNÜM SEÇENEKLERİ CSS KURALLARI
   ============================================= */

/* Kontrol Barı */
.controls-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
    padding: 0.8rem 1.2rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

/* Görünüm Değiştirme Butonları */
.view-toggles {
    display: flex;
    gap: 0.4rem;
    background: var(--bg-dark);
    padding: 0.25rem;
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.view-btn {
    background: none;
    border: none;
    color: var(--text-muted);
    padding: 0.5rem 0.9rem;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    font-weight: 600;
}

.view-btn:hover {
    color: var(--gold);
}

.view-btn.active {
    background: var(--gold) !important;
    color: var(--bg-dark) !important;
}

/* Vitrin Görünümü (Standart Grid) */
.profiles-grid.view-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1.5rem;
}

/* Liste Görünümü (Yatay Satırlar) */
.profiles-grid.view-list {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.profiles-grid.view-list .profile-card {
    display: flex;
    flex-direction: row;
    align-items: center;
    min-height: 200px;
    height: auto;
    max-height: none;
    border-radius: 12px;
    overflow: hidden;
    width: 100%;
}

.profiles-grid.view-list .profile-card .card-img {
    width: 180px;
    min-width: 180px;
    height: 200px;
    align-self: stretch;
    border-radius: 12px 0 0 12px;
    object-fit: cover;
}

/* Card Info for List View */
.profiles-grid.view-list .profile-card .card-info {
    display: flex;
    flex-direction: row;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    flex: 1;
}

.card-details-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    text-align: left;
}

.card-details-title-row {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.card-bio-text {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-align: left;
}

.model-meta-specs {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-top: 0.4rem;
}

.spec-badge {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-muted);
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    font-size: 0.8rem;
    white-space: nowrap;
}

.spec-badge strong {
    color: var(--gold);
    font-weight: 500;
}

.list-action-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    min-width: 150px;
}

.btn-whatsapp-direct {
    background: #25D366;
    color: #fff !important;
    text-align: center;
    font-size: 0.85rem;
    padding: 0.5rem 0.8rem;
    border-radius: 6px;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-whatsapp-direct:hover {
    background: #128C7E;
    transform: translateY(-2px);
}

.btn-call-direct {
    background: rgba(220, 53, 69, 0.15);
    color: #dc3545 !important;
    border: 1px solid #dc3545;
    text-align: center;
    font-size: 0.85rem;
    padding: 0.5rem 0.8rem;
    border-radius: 6px;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-call-direct:hover {
    background: #dc3545;
    color: #fff !important;
    transform: translateY(-2px);
}

/* List Gallery styling */
.list-gallery {
    display: flex;
    gap: 0.5rem;
    padding: 1rem;
    align-items: center;
    background: rgba(0,0,0,0.2);
    border-left: 1px solid var(--border-color);
    align-self: stretch;
}

.list-gallery img {
    width: 100px;
    height: 160px;
    object-fit: cover;
    border-radius: 6px;
    border: 1px solid var(--border-color);
    cursor: pointer;
    transition: transform 0.3s ease;
}

.list-gallery img:hover {
    transform: scale(1.05);
}

/* Galeri Görünümü (Kompakt Sıkışık Grid) */
.profiles-grid.view-compact {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
    gap: 1rem;
}

.profiles-grid.view-compact .profile-card .card-img {
    height: 220px;
}

.profiles-grid.view-compact .profile-card .card-info {
    padding: 0.8rem;
}

/* Mobil Cihazlar için Liste Görünümü Düzeltmesi (Yatay ve Kompakt) */
@media (max-width: 768px) {
    .profiles-grid.view-list .profile-card {
        flex-direction: row !important;
        align-items: stretch !important;
        min-height: unset;
        height: auto;
    }
    
    .profiles-grid.view-list .profile-card .card-img {
        width: 110px !important;
        min-width: 110px !important;
        height: auto !important;
        align-self: stretch;
        border-radius: 12px 0 0 12px !important;
    }
    
    .profiles-grid.view-list .profile-card .card-info {
        flex-direction: column !important;
        align-items: stretch !important;
        gap: 0.6rem !important;
        padding: 0.8rem !important;
        justify-content: center;
    }

    .card-details-left {
        gap: 0.4rem !important;
    }

    .card-details-title-row {
        gap: 0.5rem !important;
    }

    .card-details-title-row h3 {
        font-size: 1.15rem !important;
    }

    .card-details-title-row .card-age {
        font-size: 0.9rem !important;
    }

    .card-details-title-row span {
        font-size: 0.8rem !important;
    }

    .card-bio-text {
        font-size: 0.8rem !important;
        -webkit-line-clamp: 1 !important;
    }

    .model-meta-specs {
        gap: 0.3rem !important;
        margin-top: 0.2rem !important;
    }

    .spec-badge {
        padding: 0.1rem 0.35rem !important;
        font-size: 0.7rem !important;
    }
    
    .list-action-buttons {
        flex-direction: row !important;
        width: 100% !important;
        min-width: unset !important;
        gap: 0.4rem !important;
    }
    
    .list-action-buttons a {
        flex: 1 !important;
        padding: 0.35rem 0.5rem !important;
        font-size: 0.75rem !important;
        gap: 0.3rem !important;
    }

    .list-gallery {
        display: none !important;
    }
    
    .controls-bar {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
    }
    
    .controls-bar h2 {
        justify-content: center;
        font-size: 1.4rem !important;
    }
    
    .view-toggles {
        justify-content: center;
    }

    /* Profile Details Page Mobile Styling */
    .profile-disclaimer-box {
        display: none !important;
    }
    
    .btn-report {
        display: none !important;
    }
    
    #profileDetailView {
        padding: 0.5rem !important;
        width: 100% !important;
        box-sizing: border-box !important;
        overflow-x: hidden !important;
    }
    
    #backToListBtn {
        margin-bottom: 0.8rem !important;
        padding: 0.4rem 0.8rem !important;
        font-size: 0.8rem !important;
    }
    
    .profile-detail-content {
        flex-direction: column !important;
        padding: 0.8rem !important;
        gap: 1rem !important;
        align-items: center !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }
    
    .profile-media {
        flex: unset !important;
        width: 100% !important;
        max-width: 320px !important;
        margin: 0 auto !important;
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .main-image-container {
        width: 100% !important;
        height: 280px !important;
        border-radius: 8px;
        overflow: hidden;
        border: 1px solid var(--border-color);
        aspect-ratio: unset !important;
        margin-bottom: 0 !important;
    }
    
    .main-image-container img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
    }
    
    .thumbnail-gallery {
        display: flex !important;
        justify-content: center !important;
        gap: 0.4rem !important;
        grid-template-columns: none !important;
    }
    
    .thumbnail-gallery img {
        width: 75px !important;
        height: 60px !important;
        border-radius: 6px;
        object-fit: cover;
    }
    
    .profile-info {
        width: 100% !important;
        min-width: unset !important;
        box-sizing: border-box !important;
    }
    
    #detailName {
        font-size: 1.4rem !important;
        margin-top: 0.5rem !important;
        margin-bottom: 0.8rem !important;
        text-align: center !important;
        line-height: 1.2;
    }
    
    .attributes-table {
        width: 100% !important;
        margin-bottom: 0.8rem !important;
        border-collapse: collapse !important;
        table-layout: fixed !important;
    }
    
    .attributes-table td {
        padding: 6px 4px !important;
        font-size: 0.82rem !important;
        line-height: 1.3;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
    }
    
    .attributes-table td:first-child {
        width: 40% !important;
        font-weight: 500 !important;
        color: var(--text-muted) !important;
    }

    .attributes-table td:last-child {
        width: 60% !important;
        color: var(--text-main) !important;
        text-align: right !important;
    }
    
    .attributes-table tr:nth-last-child(2), /* WhatsApp */
    .attributes-table tr:nth-last-child(3)  /* Telefon */ {
        display: none !important;
    }
    
    .contact-actions {
        display: flex !important;
        gap: 0.5rem !important;
        margin-top: 0.8rem !important;
        width: 100% !important;
    }
    
    .btn-whatsapp, .btn-call {
        padding: 0.5rem !important;
        font-size: 0.85rem !important;
        border-radius: 8px !important;
        height: 38px !important;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.3rem;
        flex: 1;
        box-sizing: border-box !important;
    }

    .mobile-bio-box {
        display: block !important;
        margin: 1rem auto 0 auto !important;
        max-width: 320px !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding: 0.8rem;
        background: rgba(255, 255, 255, 0.02);
        border: 1px solid var(--border-color);
        border-radius: 8px;
        font-size: 0.82rem;
        color: var(--text-muted);
        line-height: 1.4;
    }
    
    .mobile-bio-box strong {
        color: var(--gold);
        display: block;
        margin-bottom: 0.3rem;
    }

    /* Grid layout adjustments for mobile */
    .profiles-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 0.8rem !important;
    }
    
    /* Default Vitrin view cards on mobile */
    .profiles-grid:not(.view-list):not(.view-compact) .profile-card .card-img {
        height: 200px !important;
    }
    .profiles-grid:not(.view-list):not(.view-compact) .profile-card .card-info h3 {
        font-size: 1rem !important;
    }
    .profiles-grid:not(.view-list):not(.view-compact) .profile-card .card-info .card-age {
        font-size: 0.82rem !important;
    }
    
    /* Compact view cards on mobile */
    .profiles-grid.view-compact .profile-card .card-img {
        height: 150px !important;
    }
    .profiles-grid.view-compact .profile-card .card-info h3 {
        font-size: 0.95rem !important;
    }
    .profiles-grid.view-compact .profile-card .card-info .card-age {
        font-size: 0.8rem !important;
    }

    /* List view columns reset on mobile */
    .profiles-grid.view-list {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
    }

    /* Scrollable tables inside dashboards on mobile */
    .admin-dashboard-container table,
    .user-dashboard-container table,
    .edit-form-panel table {
        width: 100% !important;
        display: block !important;
        overflow-x: auto !important;
        -webkit-overflow-scrolling: touch !important;
        white-space: nowrap !important;
    }
}

.mobile-bio-box {
    display: none;
}

/* Slot Cards styles */
.slot-card-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 420px;
    background: rgba(20, 20, 20, 0.5);
    border: 2px dashed rgba(212, 175, 55, 0.3);
    border-radius: 12px;
    color: var(--text-muted);
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    padding: 2rem;
    position: relative;
    box-sizing: border-box;
}

.slot-card-empty:hover {
    border-color: var(--gold);
    background: rgba(212, 175, 55, 0.05);
    color: var(--text-main);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.1);
}

.slot-card-empty i {
    font-size: 3.5rem;
    color: rgba(212, 175, 55, 0.4);
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.slot-card-empty:hover i {
    color: var(--gold);
    transform: scale(1.1);
    text-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
}

.slot-card-empty h4 {
    font-size: 1.2rem;
    margin: 0 0 0.5rem 0;
    font-weight: 600;
    color: #fff;
}

.slot-card-empty p {
    font-size: 0.85rem;
    margin: 0;
    max-width: 200px;
    line-height: 1.4;
}

/* Cookie & Age Consent Banner Styles */
.cookie-overlay-backdrop {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.85);
    z-index: 9998;
    backdrop-filter: blur(5px);
}
.cookie-consent-bar {
    position: fixed;
    bottom: 20px; left: 50%;
    transform: translateX(-50%);
    width: 90%; max-width: 800px;
    background: #111111;
    border: 1px solid #d4af37;
    border-radius: 12px;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 9999;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}
.cookie-content p { color: #ffffff; font-size: 0.95rem; line-height: 1.5; margin: 0; }
.cookie-content a { color: #d4af37; text-decoration: underline; font-weight: 600; }
.btn-cookie-accept {
    background: #d4af37; color: #000000; border: none; padding: 12px 24px;
    font-size: 0.95rem; font-weight: 700; border-radius: 6px; cursor: pointer;
    white-space: nowrap; transition: all 0.3s ease;
}
.btn-cookie-accept:hover { background: #fff; box-shadow: 0 0 15px rgba(212,175,55,0.4); }
.hidden-legal-modal {
    display: none; position: fixed; top: 50%; left: 50%; transform: translate(-50%, -50%);
    width: 90%; max-width: 600px; background: #161616; border: 1px solid #333; border-radius: 8px; padding: 20px; z-index: 10000;
}
.hidden-legal-content h3 { color: #d4af37; margin-top: 0; }
.legal-scroll-text { max-height: 300px; overflow-y: auto; color: #ccc; font-size: 0.85rem; margin-bottom: 15px; }
#closeHiddenLegalBtn { background: #333; color: #fff; border: none; padding: 8px 16px; cursor: pointer; border-radius: 4px; }

@media (max-width: 768px) {
    .cookie-consent-bar { flex-direction: column; bottom: 10px; text-align: center; }
    .cookie-content p { margin-bottom: 15px; }
    .btn-cookie-accept { width: 100%; }
}
