:root {
    /* Primary & Accent Colors */
    --clr-primary: #7c3aed;      /* Purple */
    --clr-primary-dark: #6d28d9;
    --clr-primary-light: #8b5cf6;
    --clr-accent: #db2777;       /* Pink */
    --clr-accent-dark: #be185d;
    --clr-accent-light: #ec4899;
    
    /* Neutral & Background */
    --clr-bg-main: #fcfaff;
    --clr-bg-gradient: linear-gradient(135deg, #f5f3ff 0%, #fdf2f8 100%);
    --clr-text-main: #1f2937;
    --clr-text-muted: #6b7280;
    --clr-white: #ffffff;
    --clr-glass: rgba(255, 255, 255, 0.85);
    
    /* Layout & Utilities */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-full: 9999px;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -1px rgba(0,0,0,0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05);
    --shadow-glass: 0 8px 32px 0 rgba(31, 38, 135, 0.05);
    
    --transition: all 0.3s ease;
}

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

body {
    font-family: 'Inter', sans-serif;
    background: url('./images/logo.png') center center fixed no-repeat;
    background-size: cover;
    color: var(--clr-text-main);
    line-height: 1.5;
    min-height: 100vh;
}

/* Logo background */
body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    background: url('./images/logo.png') center center no-repeat;
    background-size: 200px 200px; /* adjust size as needed */
    opacity: 0.08; /* subtle visibility */
    z-index: -1;
}


h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

/* Glassmorphism Panel */
.glass-panel {
    background: var(--clr-glass);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: var(--shadow-glass);
    border-radius: var(--radius-lg);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 20px;
    border: none;
    border-radius: var(--radius-full);
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition);
}

.btn-sm {
    padding: 6px 16px;
    font-size: 0.85rem;
}

.btn-full {
    width: 100%;
}

.btn-primary {
    background-color: var(--clr-accent);
    color: var(--clr-white);
    box-shadow: 0 4px 14px rgba(219, 39, 119, 0.3);
}

.btn-primary:hover {
    background-color: var(--clr-accent-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(219, 39, 119, 0.4);
}

.btn-secondary {
    background-color: var(--clr-primary);
    color: var(--clr-white);
    box-shadow: 0 4px 14px rgba(124, 58, 237, 0.3);
}

.btn-secondary:hover {
    background-color: var(--clr-primary-dark);
    transform: translateY(-2px);
}

.btn-outline-white {
    background: transparent;
    color: var(--clr-white);
    border: 2px solid var(--clr-white);
}

.btn-outline-white:hover {
    background: var(--clr-white);
    color: var(--clr-accent);
}

/* Top Bar */
.top-bar {
    background: linear-gradient(90deg, var(--clr-accent-dark) 0%, var(--clr-accent) 100%);
    color: var(--clr-white);
    padding: 10px 0;
    text-align: center;
}

.top-bar-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    font-size: 0.95rem;
}

/* Header */
.header {
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    padding: 15px 0;
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img {
    height: 85px;
    max-height: 100px;
}

.logo-text {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--clr-primary);
}

.logo-highlight {
    color: var(--clr-accent);
}

.header-center-buttons {
    display: flex;
    gap: 12px;
}

.header-auth {
    display: flex;
    gap: 10px;
}

.auth-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: none;
    border: none;
    color: var(--clr-primary);
    cursor: pointer;
    font-size: 0.85rem;
    font-weight: 600;
    transition: var(--transition);
}

.auth-btn i {
    font-size: 1.2rem;
    margin-bottom: 4px;
}

.auth-btn:hover {
    color: var(--clr-accent);
}

/* Main Nav */
.main-nav {
    background: var(--clr-primary);
    color: var(--clr-white);
}

.nav-list {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
}

.nav-item a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 15px 25px;
    font-weight: 600;
    font-size: 0.95rem;
    position: relative;
}

.nav-item a:hover {
    background: rgba(255, 255, 255, 0.1);
}

.nav-arrow {
    font-size: 0.7rem;
}

/* Search Section */
.search-section {
    max-width: 1000px;
    margin: 30px auto 60px auto;
    padding: 0 20px;
    position: relative;
    z-index: 10;
}

.search-container {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    gap: 15px;
}

.filter-group {
    flex: 1;
    display: flex;
    align-items: center;
    background: var(--clr-white);
    border-radius: var(--radius-sm);
    padding: 8px 12px;
    border: 1px solid #e5e7eb;
}

.filter-group i {
    color: var(--clr-primary);
    margin-right: 8px;
}

.filter-group select {
    border: none;
    outline: none;
    width: 100%;
    font-family: 'Inter', sans-serif;
    color: var(--clr-text-main);
    background: transparent;
    cursor: pointer;
}

.btn-search {
    background: var(--clr-accent);
    color: var(--clr-white);
    padding: 12px 25px;
    border-radius: var(--radius-sm);
}

.btn-search:hover {
    background: var(--clr-accent-dark);
}

/* Categories Section */
.categories-section {
    max-width: 1200px;
    margin: 0 auto 50px auto;
    padding: 20px;
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border-radius: var(--radius-lg);
}


.categories-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

.category-card {
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
}

.category-card:hover {
    transform: translateY(-8px);
}

.category-image-wrapper {
    width: 120px;
    height: 120px;
    margin: 0 auto 15px auto;
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-md);
    background: var(--clr-white);
}

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

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

.category-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--clr-accent);
    color: var(--clr-white);
    padding: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.category-label {
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    color: var(--clr-primary-dark);
    font-size: 0.9rem;
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    padding: 4px 8px;
    border-radius: var(--radius-sm);
}

/* Main Content Grid */
.main-content {
    max-width: 1200px;
    margin: 0 auto 80px auto;
    padding: 0 20px;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(124, 58, 237, 0.1);
}

.section-header h2 {
    color: var(--clr-primary-dark);
    display: flex;
    align-items: center;
    gap: 10px;
}

.view-all {
    color: var(--clr-accent);
    font-weight: 600;
    font-size: 0.9rem;
}

.view-all:hover {
    color: var(--clr-accent-dark);
}

.forum-section, .blog-section {
    padding: 25px;
}

/* Forum List Items */
.forum-item {
    display: flex;
    gap: 15px;
    padding: 15px;
    background: var(--clr-white);
    border-radius: var(--radius-md);
    margin-bottom: 15px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border-left: 4px solid var(--clr-primary);
}

.forum-item:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-md);
}

.forum-avatar {
    width: 50px;
    height: 50px;
    border-radius: var(--radius-full);
    background: var(--clr-primary-light);
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--clr-white);
    font-size: 1.5rem;
}

.forum-avatar.pink { background: var(--clr-accent-light); }

.forum-info h4 {
    color: var(--clr-text-main);
    margin-bottom: 5px;
    font-size: 1rem;
}

.forum-meta {
    font-size: 0.8rem;
    color: var(--clr-text-muted);
}

/* Blog List Items */
.blog-item {
    display: flex;
    gap: 15px;
    padding: 12px;
    background: var(--clr-white);
    border-radius: var(--radius-md);
    margin-bottom: 15px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.blog-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.blog-image {
    width: 100px;
    height: 75px;
    border-radius: var(--radius-sm);
    object-fit: cover;
}

.blog-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.blog-info h4 {
    font-size: 0.95rem;
    color: var(--clr-text-main);
    margin-bottom: 5px;
}

.blog-meta {
    font-size: 0.75rem;
    color: var(--clr-text-muted);
    margin-bottom: 5px;
}

.blog-read-more {
    color: var(--clr-accent);
    font-size: 0.8rem;
    font-weight: 600;
    align-self: flex-end;
}

/* Modals */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    z-index: 1000;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal.show {
    display: flex;
    opacity: 1;
}

.modal-content {
    width: 90%;
    max-width: 500px;
    padding: 30px;
    transform: translateY(-20px);
    transition: transform 0.3s ease;
}

.modal.show .modal-content {
    transform: translateY(0);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.modal-header h3 {
    color: var(--clr-primary-dark);
}

.close-btn {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--clr-text-muted);
    cursor: pointer;
}

.close-btn:hover {
    color: var(--clr-accent);
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
    font-size: 0.9rem;
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid #d1d5db;
    border-radius: var(--radius-sm);
    font-family: 'Inter', sans-serif;
    outline: none;
    transition: var(--transition);
}

.form-group input:focus, .form-group textarea:focus {
    border-color: var(--clr-primary);
    box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.1);
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: -100px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--clr-text-main);
    color: var(--clr-white);
    padding: 15px 25px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    gap: 20px;
    z-index: 900;
    box-shadow: var(--shadow-lg);
    transition: bottom 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.cookie-banner.show {
    bottom: 30px;
}

.cookie-content p {
    font-size: 0.9rem;
    margin: 0;
}

.cookie-content a {
    color: var(--clr-accent-light);
    font-size: 0.85rem;
    text-decoration: underline;
}

/* Toast Notifications */
#toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1100;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.toast {
    background: var(--clr-white);
    color: var(--clr-text-main);
    padding: 15px 25px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    border-left: 4px solid var(--clr-accent);
    display: flex;
    align-items: center;
    gap: 10px;
    transform: translateX(120%);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.toast.show {
    transform: translateX(0);
}

.mt-4 { margin-top: 1.5rem; }

/* ===== LISTINGS SECTIONS ===== */
.listings-section {
    max-width: 1450px; /* Büyütme: 1200px'den 1450px'e çıkarıldı */
    margin: 0 auto 50px auto;
    padding: 0 20px;
}

.listings-container {
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border-radius: var(--radius-lg);
    padding: 25px;
}

.listings-header {
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(124, 58, 237, 0.15);
}

.listings-header h2 {
    color: var(--clr-primary-dark);
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Poppins', sans-serif;
}

.no-listings {
    text-align: center;
    padding: 40px;
    color: var(--clr-text-muted);
}

.no-listings i {
    font-size: 3rem;
    margin-bottom: 15px;
    opacity: 0.3;
    display: block;
}

.listings-slider-container {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    padding: 0 50px; /* Oklar için kenarlardan 50px boşluk bırakıldı */
}

.listings-grid {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 10px 0 20px 0;
    width: 100%; /* Tam genişliği kaplasın */
    -ms-overflow-style: none; /* IE and Edge */
    scrollbar-width: none; /* Firefox */
}

.listings-grid::-webkit-scrollbar {
    display: none; /* Chrome, Safari and Opera */
}

.listing-card {
    flex: 0 0 calc((100% - 40px) / 3); /* 3 items layout */
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    cursor: pointer;
    background: transparent;
    padding: 3px; /* RGB border thickness */
    border-radius: var(--radius-lg);
}

.listing-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(
        transparent, 
        rgba(255, 105, 180, 0.8), /* Pembe */
        transparent 30%, 
        rgba(138, 43, 226, 0.8), /* Mor */
        transparent 60%
    );
    animation: rotate-border 4s linear infinite;
    z-index: 0;
}

.listing-card-inner {
    position: relative;
    z-index: 1;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: calc(var(--radius-lg) - 3px);
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.ls-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    color: var(--clr-primary);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: all 0.2s ease;
}

.ls-btn:hover {
    background: var(--clr-primary);
    color: white;
}

.ls-btn.prev {
    left: 0; /* Sola tam yaslandı */
}

.ls-btn.next {
    right: 0; /* Sağa tam yaslandı */
}

.listing-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.listing-img {
    height: 320px; /* Büyütme: 200px'den 320px'e çıkarıldı */
    overflow: hidden;
    position: relative;
    background: #f8f9fa; /* Siyahlık kalktı, açık renk arkaplan */
}

.listing-img img, .listing-img video {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Resmi kenarlarda boşluk kalmayacak şekilde sığdır */
    transition: var(--transition);
}

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

.listing-body {
    padding: 15px;
}

.listing-body h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    color: #ff69b4; /* Pembe renk */
    text-shadow: 0 0 5px rgba(255, 105, 180, 0.5); /* Hafif parlaklık */
    margin-bottom: 8px;
}

.listing-badge {
    display: inline-block;
    background: rgba(124, 58, 237, 0.1);
    color: var(--clr-primary);
    padding: 3px 10px;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.listing-desc {
    font-size: 0.85rem;
    color: #8a2be2; /* Mor renk */
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.listing-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 10px;
    border-top: 1px solid rgba(0,0,0,0.05);
}

.listing-price {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    color: var(--clr-accent);
    font-size: 1.1rem;
}

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

/* Responsive adjustments */

/* ===== TABLET: 992px ===== */
@media (max-width: 992px) {
    body { zoom: 1; }
    .categories-grid { grid-template-columns: repeat(3, 1fr); }
    .content-grid { grid-template-columns: 1fr; }
    .listings-grid {
        display: flex !important;
        flex-wrap: nowrap !important;
        overflow-x: scroll !important;
        overflow-y: hidden !important;
        scroll-snap-type: x mandatory !important;
        -webkit-overflow-scrolling: touch;
        gap: 0 !important;
        scrollbar-width: none;
        flex: 1 1 0% !important;
        min-width: 0 !important;
    }
    .listings-grid::-webkit-scrollbar {
        display: none;
    }
    .listings-grid > .listing-card {
        flex: 0 0 100% !important;
        width: 100% !important;
        min-width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
        scroll-snap-align: center !important;
    }
    .listings-slider-container { padding: 0 40px; }
    .listing-img { height: 240px; }
    .listing-layout { flex-direction: column; }
    .listing-gallery-col,
    .listing-info-col,
    .listing-contact-col { flex: 1 1 100%; width: 100%; }
    .main-image-wrapper { height: 400px; }
}

/* ===== MOBILE: 768px ===== */
@media (max-width: 768px) {
    body { zoom: 1; }

    /* Header */
    .header { padding: 10px 0; }
    .header-container {
        flex-direction: column;
        gap: 10px;
        padding: 0 15px;
    }
    .logo img { height: 55px; }
    .logo-text { font-size: 1.2rem; }

    /* Nav - horizontal scroll */
    .main-nav { overflow-x: auto; -webkit-overflow-scrolling: touch; }
    .nav-list {
        flex-wrap: nowrap;
        justify-content: flex-start;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        gap: 0;
    }
    .nav-list::-webkit-scrollbar { display: none; }
    .nav-item a {
        padding: 12px 14px;
        font-size: 0.8rem;
        white-space: nowrap;
    }

    /* Language selector */
    .lang-btn { padding: 12px 14px; font-size: 0.8rem; }
    .lang-list { right: 0; min-width: 130px; }

    /* Categories */
    .categories-section { padding: 15px; margin: 0 auto 30px auto; }
    .categories-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .category-image-wrapper { width: 90px; height: 90px; }
    .category-label { font-size: 0.8rem; }

    /* Search */
    .search-section { margin: 20px auto 30px auto; }
    .search-container { flex-direction: column; gap: 10px; padding: 10px 15px; }

    /* Content Grid (SSS & Blog) */
    .main-content { margin: 0 auto 40px auto; padding: 0 15px; }
    .content-grid { grid-template-columns: 1fr; gap: 20px; }
    .forum-section, .blog-section { padding: 15px; }

    /* Listings */
    .listings-section { padding: 0 10px; margin-bottom: 30px; }
    .listings-slider-container {
        padding: 0 30px;
        position: relative;
    }
    .listings-grid {
        display: flex !important;
        flex-wrap: nowrap !important;
        overflow-x: scroll !important;
        overflow-y: hidden !important;
        scroll-snap-type: x mandatory !important;
        -webkit-overflow-scrolling: touch;
        gap: 0 !important;
        scrollbar-width: none;
        flex: 1 1 0% !important;
        min-width: 0 !important;
    }
    .listings-grid::-webkit-scrollbar {
        display: none;
    }
    .listings-grid > .listing-card {
        flex: 0 0 100% !important;
        width: 100% !important;
        min-width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
        scroll-snap-align: center !important;
    }
    .listing-img {
        height: 300px; /* increased height for better mobile view */
    }

    /* Listing Detail Page */
    .breadcrumb-bar { margin-bottom: 15px; padding: 10px 0; }
    .breadcrumb-bar .container { font-size: 0.8rem; padding: 0 15px; }
    .listing-page-title-wrapper { padding: 15px; margin-bottom: 15px; }
    .listing-page-title { font-size: 1.3rem; }
    .listing-detail-section .container { padding: 0 15px; }
    .listing-layout { flex-direction: column; gap: 20px; }
    .listing-gallery-col,
    .listing-info-col,
    .listing-contact-col { flex: 1 1 100%; width: 100%; }
    .main-image-wrapper { height: 300px; }
    .thumbnail-item { width: 60px; height: 60px; }
    .listing-info-col { padding: 15px; }
    .info-table th, .info-table td { padding: 10px 0; font-size: 0.9rem; }
    .user-profile-card { padding: 15px; }
    .btn-action { padding: 10px; font-size: 0.85rem; }
    .listing-tabs-section .tab-content { padding: 20px 15px; }
    .tab-btn { padding: 12px 15px; font-size: 0.85rem; }

    /* Cookie Banner */
    .cookie-banner {
        width: 92%;
        border-radius: var(--radius-md);
        flex-direction: column;
        text-align: center;
        padding: 12px 15px;
        gap: 10px;
    }

    /* Blog items */
    .blog-item { flex-direction: column; }
    .blog-image { width: 100%; height: 150px; }

    /* Modal */
    .modal-content { width: 95%; padding: 20px; }

    /* Footer */
    .footer { padding: 15px; }
}

/* ===== SMALL MOBILE: 480px ===== */
@media (max-width: 480px) {
    body { zoom: 1; }
    .header-container { padding: 0 10px; }
    .logo img { height: 45px; }
    .logo-text { font-size: 1rem; }

    .nav-item a { padding: 10px 10px; font-size: 0.75rem; }
    .lang-btn { padding: 10px; font-size: 0.75rem; }

    .categories-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .category-image-wrapper { width: 75px; height: 75px; }

    .listings-slider-container { padding: 0 20px; }
    .listings-grid > .listing-card { flex: 0 0 100% !important; min-width: 100% !important; width: 100% !important; max-width: 100% !important; }
    .listing-img { height: 180px; }
    .listing-body h3 { font-size: 0.95rem; }
    .listing-footer { flex-direction: column; gap: 5px; align-items: flex-start; }
    .ls-btn { width: 28px; height: 28px; font-size: 0.9rem; }

    /* Listing detail */
    .main-image-wrapper { height: 220px; }
    .listing-page-title { font-size: 1.1rem; }
    .thumbnail-item { width: 50px; height: 50px; }
    .info-table th, .info-table td { font-size: 0.85rem; padding: 8px 0; }
    .btn-action { font-size: 0.8rem; padding: 10px 8px; }
    .tab-btn { padding: 10px 12px; font-size: 0.8rem; }
    .listing-tabs-section .tab-content { padding: 15px 10px; }
    .tab-content p { font-size: 0.85rem; }

    /* Forum & Blog */
    .forum-item { flex-direction: column; gap: 10px; }
    .forum-avatar { width: 40px; height: 40px; font-size: 1.2rem; }
    .blog-item { flex-direction: column; }
    .blog-image { width: 100%; height: 120px; }

    .cookie-banner { width: 95%; }
    .section-header { flex-direction: column; gap: 8px; align-items: flex-start; }
}

/* ==========================================================================
   ILAN (LISTING DETAIL) PAGE STYLES
   ========================================================================== */
.breadcrumb-bar {
    background: white;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    padding: 15px 0;
    margin-bottom: 30px;
}
.breadcrumb-bar .container {
    max-width: 1450px;
    margin: 0 auto;
    padding: 0 20px;
    font-size: 0.9rem;
    color: var(--clr-text-muted);
}
.breadcrumb-bar a {
    color: var(--clr-primary);
    text-decoration: none;
    font-weight: 500;
}
.listing-page-title-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-md);
    margin-bottom: 25px;
    padding: 20px 25px;
    /* Mosaic / frosted glass */
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(12px) saturate(180%);
    -webkit-backdrop-filter: blur(12px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 8px 32px rgba(124, 58, 237, 0.12);
}
.listing-page-title {
    font-size: 1.8rem;
    color: #ff69b4; /* Pembe */
    text-shadow: 0 0 12px rgba(255, 105, 180, 0.5);
    margin: 0;
    position: relative;
    z-index: 1;
}
.listing-detail-section .container {
    max-width: 1450px;
    margin: 0 auto;
    padding: 0 20px;
}
.listing-layout {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    align-items: flex-start;
}
.listing-gallery-col {
    flex: 0 0 45%;
}
.main-image-wrapper {
    background: #f8f9fa;
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 500px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(0,0,0,0.05);
}
.main-image-wrapper img, .main-image-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #111;
}
.thumbnail-row-container {
    position: relative;
    padding: 4px;
    border-radius: calc(var(--radius-sm) + 6px);
    overflow: hidden;
    background: transparent;
}
/* RGB animated border for thumbnails container */
.thumbnail-row-container::before {
    content: '';
    position: absolute;
    top: -60%;
    left: -60%;
    width: 220%;
    height: 220%;
    background: conic-gradient(
        transparent,
        rgba(255, 105, 180, 0.85),
        transparent 30%,
        rgba(138, 43, 226, 0.85),
        transparent 60%
    );
    animation: rotate-border 4s linear infinite;
    z-index: 0;
}
.thumbnail-row {
    position: relative;
    z-index: 1;
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding: 8px;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: var(--radius-sm);
    scrollbar-width: none;
}
.thumbnail-row::-webkit-scrollbar { display: none; }
.thumbnail-item {
    width: 80px;
    height: 80px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
    position: relative;
    flex-shrink: 0;
    backdrop-filter: blur(4px);
}
.thumbnail-item.active {
    border-color: #ff69b4;
    box-shadow: 0 0 10px rgba(255,105,180,0.6);
}
.thumbnail-item img, .thumbnail-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 1.5rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
    pointer-events: none;
}
.listing-info-col {
    flex: 0 0 30%;
    background: white;
    border-radius: var(--radius-lg);
    padding: 25px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0,0,0,0.05);
}
.info-table {
    width: 100%;
    border-collapse: collapse;
}
.info-table th {
    text-align: left;
    padding: 12px 0;
    color: var(--clr-text-muted);
    font-weight: 500;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    width: 40%;
}
.info-table td {
    padding: 12px 0;
    font-weight: 600;
    color: var(--clr-text-main);
    border-bottom: 1px solid rgba(0,0,0,0.05);
}
.badge-blue { background: #e0f2fe; color: #0284c7; padding: 4px 8px; border-radius: 4px; font-size: 0.85rem; }
.badge-pink { background: #fce7f3; color: #be185d; padding: 4px 8px; border-radius: 4px; font-size: 0.85rem; }
.price-val { color: var(--clr-accent) !important; font-size: 1.2rem; }

.listing-contact-col {
    flex: 0 0 calc(25% - 60px);
    flex-grow: 1;
}
.user-profile-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 20px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0,0,0,0.05);
    margin-bottom: 20px;
    text-align: center;
}
.user-profile-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}
.user-avatar {
    width: 60px;
    height: 60px;
    background: #f3f4f6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--clr-text-muted);
}
.trust-badge {
    color: #10b981;
    font-size: 0.85rem;
    font-weight: 600;
}
.action-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.btn-action {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px;
    border-radius: var(--radius-sm);
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
}
.btn-phone { background: #3b82f6; }
.btn-phone:hover { background: #2563eb; }
.btn-whatsapp { background: #22c55e; }
.btn-whatsapp:hover { background: #16a34a; }
.btn-report { background: #fef2f2; color: #ef4444; border: 1px solid #fca5a5; }
.btn-report:hover { background: #fee2e2; }

.listing-tabs-section {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0,0,0,0.05);
}
.tabs-header {
    display: flex;
    background: #f8f9fa;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}
.tab-btn {
    padding: 15px 25px;
    border: none;
    background: none;
    font-weight: 600;
    color: var(--clr-text-muted);
    cursor: pointer;
    border-bottom: 3px solid transparent;
    transition: var(--transition);
}
.tab-btn.active {
    color: #ff69b4; /* Pembe */
    border-bottom-color: #ff69b4;
    background: white;
}
.tab-content {
    padding: 30px;
    display: none;
    line-height: 1.6;
}
.tab-content.active {
    display: block;
}
.tab-content p {
    color: #8a2be2; /* Mor */
    font-size: 0.95rem;
    line-height: 1.8;
}
.listing-page-title-wrapper h4,
.listing-info-col h3, .listing-info-col h4,
.info-table th {
    color: var(--clr-text-muted);
}
.info-table td {
    color: #8a2be2; /* Mor */
    font-weight: 600;
}
.user-details h4 {
    color: #ff69b4; /* Pembe */
}

/* ==========================================================================
   LANGUAGE SELECTOR STYLES
   ========================================================================== */
.language-dropdown {
    position: relative;
    display: flex;
    align-items: center;
}
.lang-btn {
    background: transparent;
    border: none;
    color: white;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 15px 25px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: inherit;
    transition: background 0.3s ease;
}
.lang-btn:hover {
    background: rgba(255, 255, 255, 0.1);
}
.lang-list {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    list-style: none;
    padding: 10px 0;
    min-width: 150px;
    z-index: 1000;
}
.lang-option {
    padding: 10px 20px;
    cursor: pointer;
    color: #333;
    font-weight: 500;
    transition: background 0.2s ease;
}
.lang-option:hover {
    background: #f0f0f0;
}
.lang-option.selected {
    background: #eef2ff;
    color: var(--clr-primary, #6366f1);
}
.shimmer {
    animation: shimmer 1.5s infinite linear;
    background: linear-gradient(to right, #f6f7f8 4%, #edeef1 25%, #f6f7f8 36%);
    background-size: 1000px 100%;
    color: transparent !important;
}
@keyframes shimmer {
    0% { background-position: -1000px 0; }
    100% { background-position: 1000px 0; }
}

