/* Özel Vip Sevgili - Ana CSS Dosyası */

:root {
    --primary-color: #2563eb;
    --primary-dark: #1e40af;
    --secondary-color: #64748b;
    --success-color: #10b981;
    --danger-color: #ef4444;
    --warning-color: #f59e0b;
    --bg-color: #f8fafc;
    --text-color: #1e293b;
    --text-light: #64748b;
    --border-color: #e2e8f0;
    --white: #ffffff;
    --shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    --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);
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--text-color);
    background-color: var(--bg-color);
    line-height: 1.6;
}

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

.container-full-width {
    max-width: 100%;
    padding: 0 20px;
}

.container-full-width .listings-grid {
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1.25rem;
}

/* Header */
.main-header {
    background: var(--white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    padding: 1rem 0;
    gap: 1rem;
    position: relative;
    min-height: 60px;
    contain: layout style;
}

.logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 10;
}

.logo-banner {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    padding: 0.85rem 1.75rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    background-size: 200% 200%;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4), 0 0 30px rgba(118, 75, 162, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    height: auto;
    line-height: 1;
    min-width: 120px;
    width: auto;
    animation: bannerGradient 3s ease infinite;
}

.logo-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.2) 50%, transparent 70%);
    transform: rotate(45deg);
    animation: bannerShimmer 3s ease-in-out infinite;
}

.logo-banner:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.5), 0 0 40px rgba(118, 75, 162, 0.3);
}

@keyframes bannerGradient {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

@keyframes bannerShimmer {
    0% { transform: translateX(-100%) rotate(45deg); }
    100% { transform: translateX(100%) rotate(45deg); }
}

.logo-text {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    line-height: 1;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3), 0 0 20px rgba(255,255,255,0.2);
    position: relative;
    z-index: 1;
    white-space: nowrap;
    display: inline-block;
    min-width: 120px;
    text-align: center;
}

/* Mobil için logo banner */
@media (max-width: 768px) {
    .logo-banner {
        padding: 0.7rem 1.25rem;
    }
    
    .logo-text {
        font-size: 1.3rem;
        letter-spacing: 0.8px;
    }
}

.header-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.75rem;
    flex-shrink: 0;
    min-width: fit-content;
}

.btn-contact {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 0.875rem;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: var(--white);
    white-space: nowrap;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-contact::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.4s ease, height 0.4s ease;
}

.btn-contact:hover::before {
    width: 300px;
    height: 300px;
}

.btn-contact svg {
    animation: whatsappBounce 2s ease-in-out infinite;
}

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

.btn-contact:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    box-shadow: var(--shadow-md);
}

.btn-contact svg {
    flex-shrink: 0;
}

.main-nav {
    min-width: 0;
    flex-shrink: 1;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 1.5rem;
    flex-wrap: wrap;
    min-width: 0;
}

.main-nav a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s ease;
    padding: 0.5rem 0.75rem;
    border-radius: 0.375rem;
    position: relative;
}

.main-nav a:hover {
    color: var(--primary-color);
    background: rgba(37, 99, 235, 0.05);
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.main-nav a:hover::after {
    width: 80%;
}

/* Mobil Menü Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-color);
    padding: 0.5rem;
}

.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 280px;
    height: 100%;
    background: var(--white);
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
    z-index: 1001;
    overflow-y: auto;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

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

.mobile-menu-header {
    padding: 1rem;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile-menu-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-color);
    padding: 0.25rem;
}

.mobile-menu-content {
    padding: 1rem;
}

.mobile-menu-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-menu-content li {
    margin-bottom: 0.5rem;
}

.mobile-menu-content a {
    display: block;
    padding: 0.75rem;
    color: var(--text-color);
    text-decoration: none;
    border-radius: 0.5rem;
    transition: background 0.2s;
    font-weight: 600;
}

/* Mobil menüde ok işaretini gizle */
.mobile-menu-content .btn-arrow {
    display: none;
}

/* Mobilde header butonlarındaki ok işaretini de gizle */
@media (max-width: 768px) {
    .header-actions .btn-arrow {
        display: none;
    }
}

.mobile-menu-content a:hover {
    background: var(--bg-color);
    color: var(--primary-color);
}

.mobile-menu-content .btn {
    width: 100%;
    text-align: center;
    margin-top: 1rem;
}

.mobile-menu-content .btn-primary {
    color: var(--white) !important;
}

.mobile-menu-content .btn-contact {
    margin-top: 0.5rem;
}

/* Butonlar */
.btn {
    display: inline-block;
    padding: 0.625rem 1.25rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s;
    border: none;
    cursor: pointer;
    font-size: 0.875rem;
}

.btn-primary {
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 50%, #1e3a8a 100%);
    background-size: 200% 200%;
    color: var(--white);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(30, 58, 138, 0.5), 0 0 0 0 rgba(30, 58, 138, 0.4);
    white-space: nowrap;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
    animation: btnPulse 2s ease-in-out infinite, btnGradient 3s ease infinite;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s ease;
}

.btn-primary:hover::before {
    left: 100%;
}

@keyframes btnPulse {
    0%, 100% { box-shadow: 0 4px 15px rgba(30, 58, 138, 0.5), 0 0 0 0 rgba(30, 58, 138, 0.4); }
    50% { box-shadow: 0 4px 15px rgba(30, 58, 138, 0.5), 0 0 0 8px rgba(30, 58, 138, 0); }
}

@keyframes btnGradient {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.btn-primary:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 8px 25px rgba(30, 58, 138, 0.6), 0 0 30px rgba(59, 130, 246, 0.4);
}

.btn-primary .btn-arrow {
    font-size: 1.125rem;
    transition: transform 0.3s ease;
}

.btn-primary:hover .btn-arrow {
    transform: translateX(4px);
}

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

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

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

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

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

/* Main Content */
.main-content {
    min-height: calc(100vh - 200px);
    padding: 0.5rem 0 2rem 0;
}

/* Flash Messages */
.flash-message {
    padding: 1rem;
    margin-bottom: 1rem;
    border-radius: 0.5rem;
}

.flash-success {
    background: #d1fae5;
    color: #065f46;
    border-left: 4px solid var(--success-color);
}

.flash-error {
    background: #fee2e2;
    color: #991b1b;
    border-left: 4px solid var(--danger-color);
}

.flash-info {
    background: #dbeafe;
    color: #1e40af;
    border-left: 4px solid var(--primary-color);
}

/* İlan Listesi */
.listings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1.25rem;
    margin-top: 2rem;
}

.listing-card {
    background: var(--white);
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: 1px solid var(--border-color);
    position: relative;
}

.listing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), #764ba2);
    transform: scaleX(0);
    transition: transform 0.3s ease;
    z-index: 1;
}

.listing-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    border-color: var(--primary-color);
}

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

.listing-image {
    width: 100%;
    height: 280px;
    object-fit: contain;
    background: var(--border-color);
    display: block;
}

/* İlan Resim Carousel - Instagram Tarzı */
.listing-carousel {
    position: relative;
    width: 100%;
    height: 280px;
    overflow: hidden;
    background: #000;
    touch-action: pan-y pinch-zoom;
    user-select: none;
    -webkit-user-select: none;
}

.listing-carousel .carousel-track {
    display: flex;
    height: 100%;
    will-change: transform;
}

.listing-carousel .carousel-slide {
    flex: 0 0 100%;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.listing-carousel .carousel-slide img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    user-select: none;
    -webkit-user-drag: none;
    pointer-events: none;
}

.carousel-dots {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 5px;
    z-index: 10;
    background: rgba(0, 0, 0, 0.4);
    padding: 4px 8px;
    border-radius: 10px;
}

.carousel-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-dot.active {
    background: white;
}

/* Eski slider stilleri - geriye uyumluluk */
.listing-image-slider {
    position: relative;
    width: 100%;
    height: 280px;
    overflow: hidden;
    background: var(--border-color);
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slider-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.slider-slide.active {
    opacity: 1;
    z-index: 1;
}

.slider-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.slider-indicators {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
    z-index: 10;
    background: rgba(0, 0, 0, 0.3);
    padding: 4px 8px;
    border-radius: 12px;
}

.slider-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot.active {
    background: var(--white);
    width: 20px;
    border-radius: 3px;
}

.listing-content {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    min-height: 180px;
}

.listing-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-color);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.listing-location {
    color: var(--text-light);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.listing-description {
    color: var(--text-light);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 2.5rem;
    flex-grow: 1;
}

.listing-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.875rem;
    color: var(--text-light);
    margin-top: auto;
}

.rating-count {
    margin-left: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-light);
}

.rating {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.star {
    color: #fbbf24;
    font-size: 1rem;
}

.star.empty {
    color: var(--border-color);
}

/* Sekmeler */
.tabs {
    display: flex;
    gap: 0.5rem;
    background: var(--white);
    padding: 0.5rem;
    border-radius: 0.75rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--border-color);
    flex-wrap: wrap;
    flex: 1 1 auto;
}

.tab {
    padding: 0.75rem 1.25rem;
    background: transparent;
    border: none;
    cursor: pointer;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--text-light);
    border-radius: 0.5rem;
    transition: all 0.2s ease;
    position: relative;
}

.tab:hover {
    color: var(--primary-color);
    background: rgba(37, 99, 235, 0.05);
}

.tab.active {
    color: var(--primary-color);
    background: rgba(37, 99, 235, 0.1);
    box-shadow: 0 2px 4px rgba(37, 99, 235, 0.15);
}

/* Tab metinleri - Desktop ve Mobil */
.tab-text-desktop {
    display: inline;
}

.tab-text-mobile {
    display: none;
}

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

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-color);
}

.form-input,
.form-textarea,
.form-select {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid var(--border-color);
    border-radius: 0.5rem;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.2s;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
    outline: none;
    border-color: var(--primary-color);
}

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

.form-error {
    color: var(--danger-color);
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

/* Sayfalama */
.pagination {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.pagination a,
.pagination span {
    padding: 0.5rem 1rem;
    border: 2px solid var(--border-color);
    border-radius: 0.5rem;
    text-decoration: none;
    color: var(--text-color);
    transition: all 0.2s;
}

.pagination a:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.pagination .active {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

/* Footer */
.main-footer {
    background: var(--text-color);
    color: var(--white);
    padding: 3rem 0 1rem;
    margin-top: 4rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-section a:hover {
    color: var(--white);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

/* Responsive */
@media (max-width: 768px) {
    .header-content {
        padding: 0.75rem 0;
        gap: 0.5rem;
        grid-template-columns: auto 1fr auto;
        grid-template-rows: auto auto;
        min-height: 60px;
    }
    
    .mobile-menu-toggle {
        grid-column: 1;
        grid-row: 1;
    }
    
    .logo {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        grid-column: 1 / -1;
        grid-row: 1;
        z-index: 1;
    }
    
    .logo a {
        font-size: 1.25rem;
    }
    
    .mobile-menu-toggle {
        display: block;
        z-index: 2;
    }
    
    .main-nav {
        display: none;
    }
    
    .header-actions {
        grid-column: 3;
        grid-row: 1;
        gap: 0.5rem;
        z-index: 2;
    }
    
    .header-actions .btn {
        padding: 0.5rem 0.75rem;
        font-size: 0.8125rem;
    }
    
    .header-actions .btn-contact {
        display: none !important;
    }
    
    .header-actions .btn-primary {
        padding: 0.5rem 0.75rem;
        font-size: 0.8125rem;
    }
    
    .mobile-menu-content .btn-contact {
        display: inline-flex !important;
        width: 100%;
        justify-content: center;
        margin-top: 0.5rem;
    }
    
    .mobile-menu-overlay.active {
        display: block;
    }
    
    .mobile-menu {
        display: block;
    }

    .listings-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.625rem;
    }
    
    .listing-image {
        height: 200px;
    }
    
    .listing-carousel {
        height: 200px;
    }
    
    .listing-image-slider {
        height: 200px;
    }
    
    .listing-image-slider     .listing-image {
        height: 200px;
    }
    
    .listing-image-slider {
        height: 200px;
    }
    
    .listing-image-slider .listing-image {
        height: 200px;
    }
    
    .listing-content {
        padding: 0.75rem;
        display: flex;
        flex-direction: column;
        min-height: 150px;
    }
    
    .listing-title {
        font-size: 0.9375rem;
        margin-bottom: 0.25rem;
    }
    
    .listing-location {
        font-size: 0.75rem;
        margin-bottom: 0.5rem;
    }
    
    .listing-description {
        font-size: 0.75rem;
        margin-bottom: 0.5rem;
        -webkit-line-clamp: 2;
        min-height: 2rem;
        flex-grow: 1;
    }
    
    .listing-meta {
        font-size: 0.75rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.25rem;
        margin-top: auto;
    }
    
    .rating-count {
        font-size: 0.75rem;
        margin-left: 0.5rem;
    }
    
    .rating-count {
        font-size: 0.75rem;
        margin-left: 0.5rem;
    }

    .filter-sort-wrapper {
        flex-direction: column;
        gap: 0.5rem;
        margin-bottom: 1rem !important;
    }
    
    .filter-form-container {
        width: 100%;
        margin-bottom: 0 !important;
    }

    .tabs {
        flex-wrap: wrap;
        gap: 0.5rem;
        width: 100%;
        margin-bottom: 0 !important;
    }
    
    .listings-grid {
        margin-top: 0.75rem !important;
    }
    
    .main-content {
        padding: 0.5rem 0 1.5rem 0 !important;
    }
    
    .tab {
        padding: 0.5rem 1rem;
        font-size: 0.875rem;
        font-weight: 700;
    }
    
    /* Tablet görünümde de mobil metinleri göster */
    .tab-text-desktop {
        display: none;
    }
    
    .tab-text-mobile {
        display: inline;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .container-full-width {
        padding: 0 15px;
    }
    
    .container-full-width .listings-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.75rem;
    }
    
    .filter-form {
        grid-template-columns: 1fr 1fr !important;
        gap: 0.625rem;
    }
    
    .filter-form-container {
        padding: 0.625rem 0.75rem !important;
        margin-bottom: 0.5rem;
    }
    
    .filter-label {
        font-size: 0.75rem;
    }
    
    .filter-select {
        padding: 0.5rem 0.75rem !important;
        font-size: 0.8125rem !important;
        font-weight: 700;
        border-radius: 0.375rem;
        line-height: 1.2;
    }
    
    .filter-form {
        gap: 0.5rem;
    }
    
    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .footer-section {
        text-align: center;
    }
    
    .main-footer {
        padding: 2rem 0 1rem;
    }
    
    /* İlan Detay Sayfası */
    .listing-detail {
        padding: 0.75rem;
    }
    
    .listing-detail-header {
        margin-bottom: 0.5rem;
    }
    
    .listing-detail-title {
        font-size: 1.125rem;
        margin-bottom: 0.25rem;
    }
    
    .listing-detail-meta {
        flex-direction: column;
        gap: 0.125rem;
        font-size: 0.75rem;
    }
    
    .main-image {
        max-height: 300px;
    }
    
    .gallery-nav-btn {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }
    
    .gallery-prev {
        left: 10px;
    }
    
    .gallery-next {
        right: 10px;
    }
    
    .thumbnail-grid {
        grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
        gap: 0.5rem;
    }
    
    .thumbnail {
        height: 80px;
    }
    
    /* Tablolar */
    .table-wrapper {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .table {
        min-width: 600px;
        font-size: 0.875rem;
    }
    
    .table th,
    .table td {
        padding: 0.75rem 0.5rem;
    }
    
    /* Formlar */
    .form-group {
        margin-bottom: 1rem;
    }
    
    .form-input,
    .form-textarea,
    .form-select {
        padding: 0.625rem;
        font-size: 0.9375rem;
    }
    
    /* Panel Content */
    .panel-content {
        padding: 1rem;
    }
    
    /* Butonlar */
    .btn {
        padding: 0.5rem 1rem;
        font-size: 0.875rem;
    }
    
    /* Pagination */
    .pagination {
        gap: 0.25rem;
    }
    
    .pagination a,
    .pagination span {
        padding: 0.5rem 0.75rem;
        font-size: 0.875rem;
    }
    
    /* Admin Header */
    .admin-header {
        padding: 0.75rem 0;
    }
    
    .admin-header-content {
        flex-wrap: wrap;
    }
    
    .admin-header h2 {
        font-size: 1.25rem;
    }
    
    .admin-mobile-menu-toggle {
        display: block;
    }
    
    .admin-nav {
        display: none;
    }
    
    .admin-mobile-menu-overlay.active {
        display: block;
    }
    
    .admin-mobile-menu {
        display: block;
    }
    
    /* WhatsApp Banner */
    .whatsapp-banner {
        padding: 0.5rem 0.875rem;
        margin-bottom: 1.5rem;
    }
    
    .whatsapp-banner-link {
        gap: 0.625rem;
    }
    
    .whatsapp-number {
        font-size: 1rem;
    }
    
    .whatsapp-icon-circle {
        width: 28px;
        height: 28px;
    }
    
    .whatsapp-icon-circle svg {
        width: 18px;
        height: 18px;
    }
}

/* Mobil - Küçük ekranlar (480px ve altı) */
@media (max-width: 480px) {
    .listings-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }
    
    .container-full-width {
        padding: 0 10px;
    }
    
    .container-full-width .listings-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }
    
    .listing-image {
        height: 160px;
    }
    
    .listing-carousel {
        height: 160px;
    }
    
    .carousel-dots {
        bottom: 6px;
        padding: 3px 6px;
        gap: 4px;
    }
    
    .carousel-dot {
        width: 5px;
        height: 5px;
    }
    
    .listing-image-slider {
        height: 160px;
    }
    
    .listing-image-slider .listing-image {
        height: 160px;
    }
    
    .slider-indicators {
        bottom: 6px;
        padding: 3px 6px;
    }
    
    .slider-dot {
        width: 5px;
        height: 5px;
    }
    
    .slider-dot.active {
        width: 16px;
    }
    
    .listing-content {
        padding: 0.5rem;
        display: flex;
        flex-direction: column;
        min-height: 130px;
    }
    
    .listing-title {
        font-size: 0.875rem;
        margin-bottom: 0.25rem;
        -webkit-line-clamp: 1;
    }
    
    .listing-location {
        font-size: 0.6875rem;
        margin-bottom: 0.5rem;
    }
    
    .listing-description {
        font-size: 0.6875rem;
        margin-bottom: 0.5rem;
        min-height: 1.75rem;
        flex-grow: 1;
        -webkit-line-clamp: 2;
    }
    
    .listing-meta {
        font-size: 0.6875rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.25rem;
        margin-top: auto;
    }
    
    .rating-count {
        font-size: 0.6875rem;
        margin-left: 0.5rem;
    }
    
    .star {
        font-size: 0.875rem;
    }

    .tabs {
        gap: 0.25rem;
        padding: 0.375rem;
    }
    
    .tab {
        padding: 0.5rem 0.625rem;
        font-size: 0.75rem;
        font-weight: 700;
        white-space: nowrap;
    }
    
    /* Mobil görünümde desktop metnini gizle, mobil metnini göster */
    .tab-text-desktop {
        display: none;
    }
    
    .tab-text-mobile {
        display: inline;
    }
    
    .filter-form {
        grid-template-columns: 1fr 1fr !important;
        gap: 0.5rem;
    }
    
    .filter-sort-wrapper {
        flex-direction: column;
        gap: 0.5rem;
        margin-bottom: 0.75rem !important;
    }
    
    .filter-form-container {
        width: 100%;
        padding: 0.375rem !important;
        border-radius: 0.5rem;
        margin-bottom: 0 !important;
    }
    
    .tabs {
        width: 100%;
        margin-bottom: 0 !important;
    }
    
    .listings-grid {
        margin-top: 0.5rem !important;
    }
    
    .main-content {
        padding: 0.5rem 0 1rem 0 !important;
    }
    
    .filter-label {
        font-size: 0.6875rem;
    }
    
    .filter-select {
        padding: 0.5rem 0.625rem !important;
        padding-right: 1.75rem !important;
        font-size: 0.75rem !important;
        font-weight: 700;
        border-radius: 0.375rem;
        border: 1px solid var(--border-color);
        line-height: 1.2;
        background-position: right 0.5rem center !important;
        background-size: 10px !important;
    }
    
    .filter-select:disabled {
        background-position: right 0.5rem center !important;
        background-size: 10px !important;
    }
    
    .filter-form {
        gap: 0.375rem;
    }
    
    
    /* Footer */
    .footer-content {
        gap: 1rem;
    }
    
    .main-footer {
        padding: 1.5rem 0 1rem;
    }
    
    /* İlan Detay */
    .listing-detail {
        padding: 0.5rem;
    }
    
    .listing-detail-header {
        margin-bottom: 0.5rem;
    }
    
    .listing-detail-title {
        font-size: 1rem;
        margin-bottom: 0.25rem;
    }
    
    .listing-detail-meta {
        gap: 0.125rem;
        font-size: 0.6875rem;
    }
    
    .listing-detail-header {
        margin-bottom: 0.5rem;
    }
    
    .listing-detail-title {
        font-size: 1rem;
        margin-bottom: 0.25rem;
    }
    
    .listing-detail-meta {
        gap: 0.125rem;
        font-size: 0.6875rem;
    }
    
    .main-image {
        max-height: 250px;
    }
    
    .gallery-nav-btn {
        width: 35px;
        height: 35px;
        font-size: 1.25rem;
    }
    
    .thumbnail-grid {
        grid-template-columns: repeat(auto-fill, minmax(70px, 1fr));
    }
    
    .thumbnail {
        height: 70px;
    }
    
    /* Tablolar */
    .table {
        min-width: 500px;
        font-size: 0.8125rem;
    }
    
    .table th,
    .table td {
        padding: 0.5rem 0.375rem;
    }
    
    /* Butonlar */
    .btn {
        padding: 0.5rem 0.75rem;
        font-size: 0.8125rem;
    }
    
    /* WhatsApp Banner */
    .whatsapp-banner {
        padding: 0.5rem 0.75rem;
        margin-bottom: 1rem;
        border-radius: 0.5rem;
    }
    
    .whatsapp-banner-link {
        gap: 0.5rem;
    }
    
    .whatsapp-number {
        font-size: 0.9375rem;
    }
    
    .whatsapp-icon-circle {
        width: 26px;
        height: 26px;
    }
    
    .whatsapp-icon-circle svg {
        width: 16px;
        height: 16px;
    }
}

/* Mobil - Orta ekranlar (481px - 600px) */
@media (min-width: 481px) and (max-width: 600px) {
    .listings-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.625rem;
    }
    
    .listing-image {
        height: 180px;
    }
    
    .container-full-width .listings-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.625rem;
    }
}

/* Mobil - Büyük ekranlar (601px - 768px) */
@media (min-width: 601px) and (max-width: 768px) {
    .listings-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 0.625rem;
    }
    
    .listing-image {
        height: 200px;
    }
    
    .container-full-width .listings-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 0.625rem;
    }
}

/* İlan Detay Sayfası */
.listing-detail {
    background: var(--white);
    border-radius: 0.75rem;
    padding: 1.5rem;
    box-shadow: var(--shadow);
    margin-bottom: 2rem;
}

.listing-detail-header {
    margin-bottom: 1rem;
}

.listing-detail-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.listing-detail-meta {
    display: flex;
    gap: 0.75rem;
    color: var(--text-light);
    font-size: 0.875rem;
}

/* Resim Galerisi */
.image-gallery {
    margin-bottom: 2rem;
}

.main-image-container {
    position: relative;
    margin-bottom: 1rem;
}

.main-image {
    width: 100%;
    max-height: 500px;
    object-fit: contain;
    border-radius: 0.5rem;
    background: var(--bg-color);
    display: block;
}

.gallery-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.6);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, transform 0.2s;
    z-index: 10;
    user-select: none;
}

.gallery-nav-btn:hover {
    background: rgba(0, 0, 0, 0.8);
    transform: translateY(-50%) scale(1.1);
}

.gallery-prev {
    left: 20px;
}

.gallery-next {
    right: 20px;
}

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

.thumbnail {
    width: 100%;
    height: 100px;
    object-fit: cover;
    border-radius: 0.5rem;
    cursor: pointer;
    border: 2px solid transparent;
    transition: border-color 0.2s;
}

.thumbnail:hover,
.thumbnail.active {
    border-color: var(--primary-color);
}

/* Rating Form */
.rating-form {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 0.75rem;
    box-shadow: var(--shadow);
    margin-bottom: 2rem;
}

.rating-input {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.rating-input .star {
    cursor: pointer;
    transition: transform 0.2s;
}

.rating-input .star:hover {
    transform: scale(1.2);
}

/* Yorumlar */
.comments-section {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 0.75rem;
    box-shadow: var(--shadow);
}

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

.comment:last-child {
    border-bottom: none;
}

.comment-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}

.comment-author {
    font-weight: 600;
}

.comment-date {
    color: var(--text-light);
    font-size: 0.875rem;
}

/* Chatbot */
.chatbot-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.chatbot-toggle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    cursor: pointer;
    box-shadow: var(--shadow-lg);
    font-size: 1.5rem;
}

.chatbot-container {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 350px;
    height: 500px;
    background: var(--white);
    border-radius: 1rem;
    box-shadow: var(--shadow-lg);
    display: none;
    flex-direction: column;
}

.chatbot-container.active {
    display: flex;
}

.chatbot-header {
    padding: 1rem;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 1rem 1rem 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chatbot-messages {
    flex: 1;
    padding: 1rem;
    overflow-y: auto;
}

.chatbot-message {
    margin-bottom: 1rem;
    padding: 0.75rem;
    border-radius: 0.5rem;
    max-width: 80%;
}

.chatbot-message.user {
    background: var(--primary-color);
    color: var(--white);
    margin-left: auto;
}

.chatbot-message.bot {
    background: var(--bg-color);
    color: var(--text-color);
}

.chatbot-input-container {
    padding: 1rem;
    border-top: 1px solid var(--border-color);
    display: flex;
    gap: 0.5rem;
}

.chatbot-input {
    flex: 1;
    padding: 0.75rem;
    border: 2px solid var(--border-color);
    border-radius: 0.5rem;
}

/* User Panel */
.panel-tabs {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    border-bottom: 2px solid var(--border-color);
}

.panel-tab {
    padding: 0.75rem 1.5rem;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-light);
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
    transition: color 0.2s;
}

.panel-tab.active {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
}

/* Mobil Panel Tabs - Modern Görünüm */
@media (max-width: 768px) {
    .panel-tabs {
        gap: 0;
        margin-bottom: 1.25rem;
        border-bottom: none;
        background: var(--bg-color);
        border-radius: 0.75rem;
        padding: 0.25rem;
    }
    
    .panel-tab {
        flex: 1;
        padding: 0.7rem 0.5rem;
        font-size: 0.975rem;
        font-weight: 700;
        text-align: center;
        border-radius: 0.5rem;
        border-bottom: none;
        margin-bottom: 0;
        color: var(--text-light);
        background: transparent;
        transition: all 0.2s ease;
    }
    
    .panel-tab.active {
        background: var(--white);
        color: var(--primary-color);
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        border-bottom-color: transparent;
    }
}

.panel-content {
    background: var(--white);
    padding: 2rem;
    border-radius: 0.75rem;
    box-shadow: var(--shadow);
}

/* Modern Login Sayfası */
.login-container {
    min-height: calc(100vh - 200px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem 1rem;
    background: var(--bg-color);
}

.login-wrapper {
    width: 100%;
    max-width: 420px;
}

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

.login-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.login-subtitle {
    font-size: 0.9375rem;
    color: var(--text-light);
    font-weight: 400;
}

.login-error-message {
    background: #fee2e2;
    color: #991b1b;
    padding: 0.875rem 1rem;
    border-radius: 0.5rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.875rem;
    border: 1px solid #fecaca;
    animation: slideDown 0.3s ease-out;
}

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

.error-icon {
    font-size: 1.25rem;
}

.login-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 0.75rem;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    border: 1px solid var(--border-color);
}

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

.login-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group-modern {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-label-modern {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 0.25rem;
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-icon {
    position: absolute;
    left: 1rem;
    font-size: 1rem;
    z-index: 1;
    pointer-events: none;
    opacity: 0.5;
}

.form-input-modern {
    width: 100%;
    padding: 0.75rem 1rem 0.75rem 2.75rem;
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
    font-size: 0.9375rem;
    font-family: inherit;
    transition: all 0.2s ease;
    background: var(--white);
    color: var(--text-color);
}

.form-input-modern:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-input-modern::placeholder {
    color: var(--text-light);
    opacity: 0.6;
}

.password-toggle {
    position: absolute;
    right: 1rem;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    transition: transform 0.2s;
}

.password-toggle:hover {
    transform: scale(1.1);
}

.eye-icon {
    font-size: 1.125rem;
    user-select: none;
}

.form-options {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: -0.5rem;
}

.forgot-password-link {
    color: var(--primary-color);
    font-size: 0.85rem;
    text-decoration: none;
    transition: color 0.2s;
}

.forgot-password-link:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

.checkbox-wrapper {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    user-select: none;
}

.checkbox-wrapper input[type="checkbox"] {
    width: 1.125rem;
    height: 1.125rem;
    cursor: pointer;
    accent-color: var(--primary-color);
}

.checkbox-label {
    font-size: 0.875rem;
    color: var(--text-light);
}

.btn-login {
    width: 100%;
    padding: 0.875rem 1rem;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.2s ease;
    margin-top: 0.5rem;
}

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

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

.btn-arrow {
    font-size: 1.25rem;
    transition: transform 0.3s ease;
}

.btn-login:hover .btn-arrow {
    transform: translateX(4px);
}

.login-divider {
    display: none;
}

.login-footer {
    text-align: center;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
}

.login-footer p {
    color: var(--text-light);
    font-size: 0.875rem;
}

.register-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s;
}

.register-link:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

/* Login Sayfası Responsive */
@media (max-width: 768px) {
    .login-container {
        padding: 1.5rem 1rem;
        min-height: calc(100vh - 150px);
    }
    
    .login-card {
        padding: 2rem 1.5rem;
    }
    
    .login-title {
        font-size: 1.75rem;
    }
    
    .login-subtitle {
        font-size: 0.9375rem;
    }
}

@media (max-width: 480px) {
    .login-card {
        padding: 1.5rem 1rem;
    }
    
    .login-title {
        font-size: 1.5rem;
    }
    
    .form-input-modern {
        padding: 0.75rem 0.875rem 0.75rem 2.75rem;
        font-size: 0.9375rem;
    }
    
    .input-icon {
        left: 0.75rem;
        font-size: 1rem;
    }
}

/* Drag & Drop Upload */
.upload-area {
    border: 2px dashed var(--border-color);
    border-radius: 0.5rem;
    padding: 1rem;
    text-align: center;
    cursor: pointer;
    transition: border-color 0.2s, background-color 0.2s;
    min-height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.upload-area:hover,
.upload-area.dragover {
    border-color: var(--primary-color);
    background: rgba(37, 99, 235, 0.05);
}

.upload-preview {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.upload-preview-item {
    position: relative;
    border-radius: 0.5rem;
    overflow: hidden;
}

.upload-preview-item img {
    width: 100%;
    height: 150px;
    object-fit: contain;
    background: var(--bg-color);
}

.upload-preview-item .remove-btn {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    background: var(--danger-color);
    color: var(--white);
    border: none;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    cursor: pointer;
    font-size: 1rem;
}

/* Admin Panel */
.admin-header {
    background: var(--text-color);
    color: var(--white);
    padding: 1rem 0;
    margin-bottom: 2rem;
}

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

.admin-header h2 {
    color: white;
    margin: 0;
    font-size: 1.5rem;
}

.admin-mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--white);
    padding: 0.5rem;
}

.admin-nav {
    display: flex;
    gap: 1.5rem;
    list-style: none;
    flex-wrap: wrap;
}

.admin-nav a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.2s;
}

.admin-nav a:hover {
    opacity: 0.8;
}

/* Admin Mobil Menü */
.admin-mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
}

.admin-mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 280px;
    height: 100%;
    background: var(--text-color);
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
    z-index: 1001;
    overflow-y: auto;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.admin-mobile-menu.active {
    transform: translateX(0);
}

.admin-mobile-menu-header {
    padding: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.admin-mobile-menu-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--white);
    padding: 0.25rem;
}

.admin-mobile-menu-content {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.admin-mobile-menu-content a {
    display: block;
    padding: 0.75rem;
    color: var(--white);
    text-decoration: none;
    border-radius: 0.5rem;
    transition: background 0.2s;
}

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

/* WhatsApp Banner */
.whatsapp-banner {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border-radius: 0.5rem;
    padding: 0.5rem 1rem;
    margin-bottom: 2rem;
    box-shadow: 0 3px 12px rgba(37, 211, 102, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.whatsapp-banner-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    text-decoration: none;
    color: white;
    transition: all 0.3s ease;
}

.whatsapp-banner-link:hover {
    transform: translateY(-1px);
}

.whatsapp-icon-circle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: white;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.whatsapp-banner-link:hover .whatsapp-icon-circle {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.whatsapp-icon-circle svg {
    width: 20px;
    height: 20px;
}

.whatsapp-number {
    color: white;
    font-size: 1.125rem;
    font-weight: 700;
    letter-spacing: 0.2px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

/* Filter Form Styles */
.filter-sort-wrapper {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 2rem;
    align-items: flex-start;
    flex-wrap: wrap;
}

.filter-form-container {
    background: var(--white);
    padding: 0.5rem;
    border-radius: 0.75rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--border-color);
    flex: 0 0 auto;
}

@media (min-width: 769px) {
    .filter-sort-wrapper {
        flex-wrap: nowrap;
        align-items: center;
        width: 100%;
    }
    
    .filter-form-container {
        flex: 0 1 25%;
        margin: 0;
        min-width: 0;
    }
    
    .tabs {
        flex: 1 1 70%;
        margin: 0;
        min-width: 0;
    }
    
    .filter-select {
        padding: 0.5rem 1rem;
        padding-right: 2rem;
        font-size: 0.875rem;
        background-position: right 0.5rem center;
    }
    
    .filter-form {
        gap: 0.5rem;
    }
}

.filter-form {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 0.5rem;
    align-items: center;
}

.filter-form-group {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.filter-label {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--text-color);
    margin: 0;
}

.filter-select {
    width: 100%;
    padding: 0.75rem 1.25rem;
    padding-right: 2.5rem;
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
    font-size: 0.8125rem;
    font-weight: 700;
    font-family: inherit;
    line-height: 1.4;
    transition: all 0.2s ease;
    background: var(--white);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 12px;
    cursor: pointer;
    color: var(--text-color);
    position: relative;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.filter-select:disabled {
    background-color: var(--bg-color);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23999' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 12px;
    cursor: not-allowed;
    opacity: 0.6;
}

.filter-select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.filter-form-group {
    position: relative;
}

.filter-btn {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    white-space: nowrap;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.stat-card {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 0.75rem;
    box-shadow: var(--shadow);
}

.stat-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.stat-label {
    color: var(--text-light);
    font-size: 0.875rem;
    margin-top: 0.5rem;
}

.table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.table th,
.table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.table th {
    background: var(--bg-color);
    font-weight: 600;
}

.table tr:hover {
    background: var(--bg-color);
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }

