/**
 * ========================================================================
 * TATIL VİLLAMIZ - ÖZEL CSS OVERRIDE DOSYASI
 * ========================================================================
 * 
 * Amaç: Ana style.css dosyasını değiştirmeden modern pembe & amber
 *       renk şeması ve keskin köşeli tasarım uygulamak
 * 
 * Renk Paleti:
 * - Ana Pembe: #E91E63 (vurgular, butonlar)
 * - Açık Pembe: #F8BBD0 (hover efektleri)
 * - Koyu Pembe: #C2185B (aktif durumlar)
 * - Ana Amber: #FFA726 (fiyat etiketleri, aksan renk)
 * - Açık Amber: #FFE0B2 (arka planlar)
 * - Koyu Amber: #F57C00 (hover)
 * 
 * Tasarım Prensibi: Keskin köşeler (border-radius: 0)
 * İstisnalar: Avatar'lar, sosyal medya ikonları (tam daire kalacak)
 * 
 * Versiyon: 1.0
 * Tarih: 13 Mayıs 2026
 * ========================================================================
 */


/* ========================================================================
   1. CSS CUSTOM PROPERTIES OVERRIDE (:root)
   ======================================================================== */

/**
 * Ana renk değişkenlerini HSL formatında override ediyoruz.
 * Bu değişiklik tüm hsl(var(--primary-*)) kullanımlarını otomatik günceller.
 */
:root {
    /* PRIMARY - Pembe Tonları */
    --primary-50: 340 100% 97%;      /* Çok açık pembe - arka planlar için */
    --primary-75: 340 90% 92%;       /* Açık pembe - hover arka planlar */
    --primary-100: 340 85% 85%;      /* Orta açık pembe */
    --primary-200: 340 82% 70%;      /* Orta pembe */
    --primary-300: 340 82% 52%;      /* ANA PEMBE - #E91E63 - Butonlar, vurgular */
    --primary-400: 340 70% 42%;      /* Koyu pembe - #C2185B - Hover durumu */
    --primary-500: 340 70% 35%;      /* Çok koyu pembe - Aktif durum */
    
    /* TERTIARY - Amber/Altın Tonları */
    --tertiary-50: 28 100% 97%;      /* Çok açık amber - arka planlar */
    --tertiary-75: 28 100% 90%;      /* Açık amber */
    --tertiary-100: 28 100% 82%;     /* Orta açık amber - #FFE0B2 */
    --tertiary-200: 28 100% 70%;     /* Orta amber */
    --tertiary-300: 28 100% 58%;     /* ANA AMBER - #FFA726 - Fiyat etiketleri */
    --tertiary-400: 28 100% 48%;     /* Koyu amber - #F57C00 - Hover */
    --tertiary-500: 28 80% 35%;      /* Çok koyu amber */
    
    /* NEUTRAL - Koyu Renkler (pembe alt tonlu) */
    --neutral-700: 340 15% 25%;      /* Koyu gri - pembe uyumlu */
    --neutral-900: 340 25% 18%;      /* En koyu - yazı renkleri */
    
    /* TEXT COLOR */
    --text-dark: 210 25% 25%;        /* Ana yazı rengi - #2C3E50 */
}


/* ========================================================================
   2. GLOBAL BORDER-RADIUS KALDIRILMASI
   ======================================================================== */

/**
 * Keskin köşeli modern tasarım için tüm border-radius değerlerini sıfırlıyoruz.
 * İSTİSNALAR: .rounded-circle (avatar, ikonlar), img avatarları
 */

/* Utility class override - En yüksek öncelikle */
.rounded-pill,
.rounded-1,
.rounded-2,
.rounded-3,
.rounded-4,
.rounded-5 {
    border-radius: 0 !important;
}

/* Villa kartları ve ana bileşenler */
.property-card,
.property-card__img,
.property-card__head,
.category-card,
.property-filter,
.property-search__col,
.property-search__select,
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
input[type="date"],
select,
textarea,
.form-control,
.btn,
.badge {
    border-radius: 0 !important;
}

/* İSTİSNALAR - Tam daire kalacak elementler */
.rounded-circle,
.icon-circle,
.property-card__fav,
.social-icon,
img.avatar,
.avatar img {
    border-radius: 50% !important; /* Daire ikonlar için korunuyor */
}


/* ========================================================================
   3. HEADER & NAVIGATION
   ======================================================================== */

/**
 * Header arka plan için hafif pembe gradient
 * Navigasyon menüsü modern ve keskin köşeli
 */

/* Header arka plan */
.header {
    background: linear-gradient(135deg, 
        rgba(233, 30, 99, 0.03) 0%, 
        rgba(255, 167, 38, 0.02) 100%) !important;
    border-bottom: 1px solid rgba(233, 30, 99, 0.1);
}

/* Sticky header için daha belirgin arka plan */
.header--sticky {
    background: linear-gradient(135deg, 
        rgba(233, 30, 99, 0.95) 0%, 
        rgba(233, 30, 99, 0.98) 100%) !important;
    box-shadow: 0 2px 10px rgba(233, 30, 99, 0.15);
}

/* Header top bar */
.header-top {
    background-color: #ffffff !important;
    border-bottom: 2px solid #E91E63;
}

/* Menü linkleri */
.menu-link {
    color: hsl(var(--neutral-700)) !important;
    transition: all 0.3s ease;
}

.menu-link:hover,
.menu-link.active {
    color: #E91E63 !important;
}

/* Mobil menü toggle */
.menu-toggle {
    background-color: #E91E63 !important;
    color: #ffffff !important;
    border-radius: 0 !important;
}

/* Alt menü (dropdown) */
.menu-sub {
    background-color: #ffffff !important;
    border: 1px solid #E91E63;
    border-radius: 0 !important;
    box-shadow: 0 4px 15px rgba(233, 30, 99, 0.15);
}

.menu-sub-link:hover {
    background-color: rgba(233, 30, 99, 0.05) !important;
    color: #E91E63 !important;
}

/* Header içi arama kutusu */
.header input[type="text"] {
    border: 2px solid #FFA726 !important;
    border-radius: 0 !important;
}

.header .btn[type="submit"] {
    background-color: #FFA726 !important;
    border-radius: 0 !important;
}


/* ========================================================================
   4. BUTON OVERRIDE - TÜM BUTON TİPLERİ
   ======================================================================== */

/**
 * Tüm butonları pembe/amber renk şemasına ve keskin köşelere çeviriyoruz.
 * Gradient YOK - Sadece solid renkler
 */

/* Ana buton - Primary */
.btn-primary,
.btn.bg-primary-300,
.property-filter__btn,
button[type="submit"] {
    background-color: #E91E63 !important;
    border-color: #E91E63 !important;
    color: #ffffff !important;
    border-radius: 0 !important;
    transition: all 0.3s ease;
}

.btn-primary:hover,
.btn.bg-primary-300:hover,
.property-filter__btn:hover,
button[type="submit"]:hover {
    background-color: #C2185B !important;
    border-color: #C2185B !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(233, 30, 99, 0.3);
}

/* Outline butonlar */
.btn-outline-primary {
    border: 2px solid #E91E63 !important;
    color: #E91E63 !important;
    background-color: transparent !important;
    border-radius: 0 !important;
}

.btn-outline-primary:hover {
    background-color: #E91E63 !important;
    color: #ffffff !important;
}

/* Secondary butonlar - Amber */
.btn-secondary,
.btn-amber {
    background-color: #FFA726 !important;
    border-color: #FFA726 !important;
    color: #ffffff !important;
    border-radius: 0 !important;
}

.btn-secondary:hover,
.btn-amber:hover {
    background-color: #F57C00 !important;
    border-color: #F57C00 !important;
}

/* Küçük butonlar */
.btn-sm {
    padding: 0.5rem 1.25rem !important;
    border-radius: 0 !important;
}

/* Büyük butonlar */
.btn-lg {
    padding: 1rem 2.5rem !important;
    border-radius: 0 !important;
}

/* Daire buton (circle-btn) - keskin köşeye çevir */
.circle-btn {
    border-radius: 0 !important;
    background-color: #E91E63 !important;
    color: #ffffff !important;
}

/* Link butonlar */
a.btn,
a.btn-primary,
a.btn-secondary {
    text-decoration: none !important;
}


/* ========================================================================
   5. VİLLA KARTLARI (property-card)
   ======================================================================== */

/**
 * Villa kartları için keskin köşeli, modern tasarım
 * Pembe hover efektleri ve amber fiyat etiketleri
 */

/* Ana kart container */
.property-card {
    background-color: #ffffff;
    border: 1px solid #E0E0E0;
    border-radius: 0 !important;
    transition: all 0.3s ease;
    overflow: hidden;
}

.property-card:hover {
    border-color: #E91E63 !important;
    box-shadow: 0 8px 25px rgba(233, 30, 99, 0.15) !important;
    transform: translateY(-5px);
}

/* Kart başlık resim alanı */
.property-card__head {
    position: relative;
    border-radius: 0 !important;
    overflow: hidden;
}

.property-card__img {
    border-radius: 0 !important;
}

/* Kategori tag'i - Keskin köşe */
.property-card__tag {
    background-color: #E91E63 !important;
    color: #ffffff !important;
    border-radius: 0 !important;
    padding: 0.4rem 1rem !important;
    font-size: 0.875rem;
    font-weight: 600;
}

/* Favori butonu */
.property-card__fav {
    background-color: rgba(255, 255, 255, 0.95) !important;
    color: #E91E63 !important;
    border: 2px solid #E91E63;
    transition: all 0.3s ease;
    /* border-radius: 50% korunuyor - global override'dan */
}

.property-card__fav:hover {
    background-color: #E91E63 !important;
    color: #ffffff !important;
}

/* Villa ismi */
.property-card__title,
.property-card h3 {
    color: hsl(var(--text-dark)) !important;
    transition: color 0.3s ease;
}

.property-card:hover .property-card__title,
.property-card:hover h3 {
    color: #E91E63 !important;
}

/* Konum bilgisi */
.property-card__location {
    color: #757575;
}

/* Özellikler (yatak, banyo, vb.) */
.property-card__amenities,
.property-card__features {
    color: #616161;
}

/* Fiyat alanı - Amber vurgu */
.property-card__price,
.property-card .price {
    color: #FFA726 !important;
    font-weight: 700 !important;
    font-size: 1.5rem !important;
}

.property-card__price-label {
    color: #757575;
    font-size: 0.875rem;
}

/* Footer butonları */
.property-card__footer .btn {
    border-radius: 0 !important;
}

/* Yatay kart düzeni */
.property-card--row {
    display: flex;
    border-radius: 0 !important;
}


/* ========================================================================
   6. ARAMA FORMU & FİLTRELER (property-filter, property-search)
   ======================================================================== */

/**
 * Modern, keskin köşeli arama formu tasarımı
 * Pembe buton, amber vurgular
 */

/* Ana filtre container */
.property-filter {
    background-color: #ffffff !important;
    border: 1px solid #E0E0E0;
    border-radius: 0 !important;
    padding: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

/* Filtre item'ları */
.property-filter__item {
    border-radius: 0 !important;
}

/* Select ve input alanları */
.property-filter select,
.property-filter input,
.property-search__select,
.property-search__col input {
    border: 2px solid #E0E0E0 !important;
    border-radius: 0 !important;
    padding: 0.875rem 1rem;
    transition: border-color 0.3s ease;
}

.property-filter select:focus,
.property-filter input:focus {
    border-color: #FFA726 !important;
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 167, 38, 0.1);
}

/* Arama butonu */
.property-filter__btn {
    background-color: #E91E63 !important;
    border-radius: 0 !important;
    padding: 1rem 2.5rem !important;
    font-weight: 600;
}

/* Sidebar accordion (listeleme sayfası) */
.property-accordion .accordion-button {
    background-color: #2C3E50 !important;
    color: #ffffff !important;
    border-radius: 0 !important;
}

.property-accordion .accordion-button:not(.collapsed) {
    background-color: #E91E63 !important;
}

.property-accordion .accordion-body {
    border: 1px solid #E0E0E0;
    border-top: none;
    border-radius: 0 !important;
}

/* Checkbox ve radio stilleri */
.form-check-input:checked {
    background-color: #E91E63 !important;
    border-color: #E91E63 !important;
}

/* Range slider */
input[type="range"]::-webkit-slider-thumb {
    background-color: #E91E63 !important;
}

input[type="range"]::-moz-range-thumb {
    background-color: #E91E63 !important;
}


/* ========================================================================
   7. BADGE & ETIKETLER
   ======================================================================== */

/**
 * Pembe ve amber badge tasarımları
 */

/* Ana badge - Pembe */
.badge,
.badge-primary {
    background-color: #E91E63 !important;
    color: #ffffff !important;
    border-radius: 0 !important;
    padding: 0.4rem 0.8rem;
    font-weight: 600;
}

/* Amber badge */
.badge-warning,
.badge-amber {
    background-color: #FFA726 !important;
    color: #ffffff !important;
    border-radius: 0 !important;
}

/* Success badge */
.badge-success {
    background-color: #4CAF50 !important;
    border-radius: 0 !important;
}

/* Info badge */
.badge-info {
    background-color: #2196F3 !important;
    border-radius: 0 !important;
}

/* Danger badge */
.badge-danger {
    background-color: #F44336 !important;
    border-radius: 0 !important;
}


/* ========================================================================
   8. FORM ELEMENTS (Input, Select, Textarea)
   ======================================================================== */

/**
 * Tüm form elementleri için keskin köşeli tasarım
 */

/* Genel input stilleri */
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
input[type="password"],
input[type="date"],
input[type="search"],
select,
textarea,
.form-control,
.form-select {
    border: 2px solid #E0E0E0 !important;
    border-radius: 0 !important;
    padding: 0.75rem 1rem;
    transition: all 0.3s ease;
}

/* Focus durumu - Amber vurgu */
input:focus,
select:focus,
textarea:focus,
.form-control:focus,
.form-select:focus {
    border-color: #FFA726 !important;
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 167, 38, 0.15) !important;
}

/* Form label */
label {
    color: hsl(var(--text-dark));
    font-weight: 500;
    margin-bottom: 0.5rem;
}

/* Placeholder */
::placeholder {
    color: #9E9E9E;
}


/* ========================================================================
   9. KATEGORİ KARTLARI (category-card)
   ======================================================================== */

/**
 * Anasayfa kategori kartları - Keskin köşe
 */

.category-card {
    border-radius: 0 !important;
    overflow: hidden;
    position: relative;
    transition: all 0.3s ease;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(233, 30, 99, 0.2) !important;
}

/* Kategori footer - Pembe arka plan */
.category-card__footer {
    background-color: #E91E63 !important;
    border-radius: 0 !important;
}

.category-card__link {
    color: #ffffff !important;
    text-decoration: none;
}

.category-card__link:hover {
    color: #FFE0B2 !important;
}


/* ========================================================================
   10. HERO BÖLÜMÜ (secondary-hero)
   ======================================================================== */

/**
 * Hero bölümü için modern overlay ve başlık stilleri
 */

.secondary-hero {
    position: relative;
}

/* Hero overlay - Hafif pembe ton */
.secondary-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(233, 30, 99, 0.3) 0%, 
        rgba(255, 167, 38, 0.2) 100%);
    pointer-events: none;
}

.secondary-hero > * {
    position: relative;
    z-index: 1;
}

/* Hero başlık */
.secondary-hero h1,
.secondary-hero h2 {
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}


/* ========================================================================
   11. SWIPER SLIDER CUSTOMIZATION
   ======================================================================== */

/**
 * Villa resim slider'ları için keskin köşeli navigasyon
 */

/* Swiper container */
.swiper-container,
.swiper-wrapper {
    border-radius: 0 !important;
}

/* Navigasyon butonları - Pembe */
.swiper-button-next,
.swiper-button-prev {
    background-color: rgba(233, 30, 99, 0.9) !important;
    color: #ffffff !important;
    width: 50px !important;
    height: 50px !important;
    border-radius: 0 !important;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background-color: #E91E63 !important;
}

/* Pagination dots - Pembe */
.swiper-pagination-bullet {
    background-color: #E0E0E0 !important;
    opacity: 1 !important;
    border-radius: 0 !important;
    width: 30px;
    height: 4px;
}

.swiper-pagination-bullet-active {
    background-color: #E91E63 !important;
}

/* Galeri thumbnails */
.property-gallery-slider .swiper-slide img {
    border-radius: 0 !important;
}

/* "Tüm Fotoğrafları Gör" butonu */
.tum_gor_link {
    background-color: rgba(233, 30, 99, 0.95) !important;
    border-radius: 0 !important;
    color: #ffffff !important;
    padding: 0.875rem 2rem !important;
    transition: all 0.3s ease;
}

.tum_gor_link:hover {
    background-color: #C2185B !important;
    transform: scale(1.05);
}


/* ========================================================================
   12. DETAY SAYFASI ÖZEL BİLEŞENLER
   ======================================================================== */

/**
 * Villa detay sayfası için özelleştirilmiş elementler
 */

/* Özellik kartları */
.feature-card,
.amenity-card {
    border: 1px solid #E0E0E0;
    border-radius: 0 !important;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.feature-card:hover,
.amenity-card:hover {
    border-color: #E91E63;
    box-shadow: 0 4px 15px rgba(233, 30, 99, 0.1);
}

/* İkonlar */
.feature-icon,
.amenity-icon {
    color: #E91E63;
    font-size: 2rem;
}

/* Mesafe butonları */
.btn-mesafe {
    border: 2px solid #E0E0E0 !important;
    border-radius: 0 !important;
    color: hsl(var(--text-dark)) !important;
    background-color: #ffffff;
    transition: all 0.3s ease;
}

.btn-mesafe:hover,
.btn-mesafe.active {
    border-color: #E91E63 !important;
    background-color: #E91E63 !important;
    color: #ffffff !important;
}

/* Yorum kartları */
.review-card {
    border: 1px solid #E0E0E0;
    border-radius: 0 !important;
    padding: 1.5rem;
    background-color: #F5F5F5;
}

.review-rating {
    color: #FFA726 !important;
}

/* Benzer villalar bölümü */
.similar-properties .property-card {
    /* property-card stillerini kullanacak */
}


/* ========================================================================
   13. FOOTER
   ======================================================================== */

/**
 * Footer için modern, keskin köşeli tasarım
 */

.footer {
    background-color: #2C3E50;
    color: #ffffff;
}

/* Footer başlıklar */
.footer h3,
.footer h4 {
    color: #FFA726 !important;
}

/* Footer linkler */
.footer a {
    color: #E0E0E0;
    transition: color 0.3s ease;
    text-decoration: none;
}

.footer a:hover {
    color: #E91E63 !important;
}

/* Sosyal medya ikonları */
.social-icon {
    background-color: #E91E63 !important;
    color: #ffffff !important;
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    /* border-radius: 50% korunuyor */
}

.social-icon:hover {
    background-color: #C2185B !important;
    transform: scale(1.1);
}

/* Newsletter form */
.newsletter-form input {
    border: 2px solid #E0E0E0 !important;
    border-radius: 0 !important;
    background-color: #ffffff;
}

.newsletter-form button {
    background-color: #E91E63 !important;
    border-radius: 0 !important;
}

.newsletter-form button:hover {
    background-color: #C2185B !important;
}

/* Footer alt bilgi */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    margin-top: 2rem;
}


/* ========================================================================
   14. UTILITY CLASS OVERRIDES
   ======================================================================== */

/**
 * Renk ve background utility class'larını override ediyoruz
 */

/* Text color utilities */
.clr-primary-300,
.text-primary {
    color: #E91E63 !important;
}

.clr-tertiary-300 {
    color: #FFA726 !important;
}

/* Background color utilities */
.bg-primary-300,
.bg-primary {
    background-color: #E91E63 !important;
}

.bg-tertiary-300 {
    background-color: #FFA726 !important;
}

.bg-primary-50 {
    background-color: rgba(233, 30, 99, 0.05) !important;
}

.bg-tertiary-50 {
    background-color: rgba(255, 167, 38, 0.05) !important;
}

/* Border color utilities */
.border-primary {
    border-color: #E91E63 !important;
}

.border-tertiary {
    border-color: #FFA726 !important;
}


/* ========================================================================
   15. MODAL & POPUP
   ======================================================================== */

/**
 * Modal ve popup pencereler için keskin köşeli tasarım
 */

.modal-content {
    border-radius: 0 !important;
    border: 2px solid #E91E63;
}

.modal-header {
    background-color: #E91E63;
    color: #ffffff;
    border-radius: 0 !important;
}

.modal-footer {
    border-radius: 0 !important;
}

.modal-footer .btn {
    border-radius: 0 !important;
}


/* ========================================================================
   16. ALERT & NOTIFICATION
   ======================================================================== */

/**
 * Bildirim ve alert mesajları
 */

.alert {
    border-radius: 0 !important;
    border-left: 4px solid;
}

.alert-success {
    border-left-color: #4CAF50 !important;
    background-color: #E8F5E9 !important;
}

.alert-warning {
    border-left-color: #FFA726 !important;
    background-color: #FFF3E0 !important;
}

.alert-danger {
    border-left-color: #F44336 !important;
    background-color: #FFEBEE !important;
}

.alert-info {
    border-left-color: #2196F3 !important;
    background-color: #E3F2FD !important;
}


/* ========================================================================
   17. PAGINATION
   ======================================================================== */

/**
 * Sayfalama için keskin köşeli butonlar
 */

.pagination .page-item .page-link {
    border-radius: 0 !important;
    color: #E91E63;
    border: 1px solid #E0E0E0;
    margin: 0 2px;
}

.pagination .page-item.active .page-link {
    background-color: #E91E63 !important;
    border-color: #E91E63 !important;
    color: #ffffff;
}

.pagination .page-item .page-link:hover {
    background-color: #F8BBD0;
    border-color: #E91E63;
}


/* ========================================================================
   18. BREADCRUMB
   ======================================================================== */

/**
 * Breadcrumb navigasyon
 */

.breadcrumb {
    background-color: transparent;
}

.breadcrumb-item a {
    color: #E91E63;
    text-decoration: none;
}

.breadcrumb-item.active {
    color: #757575;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: #BDBDBD;
}


/* ========================================================================
   19. TABS & ACCORDION
   ======================================================================== */

/**
 * Tab ve accordion bileşenleri
 */

/* Tabs */
.nav-tabs .nav-link {
    border-radius: 0 !important;
    color: hsl(var(--text-dark));
    border: none;
    border-bottom: 3px solid transparent;
}

.nav-tabs .nav-link.active {
    border-bottom-color: #E91E63 !important;
    color: #E91E63 !important;
}

.nav-tabs .nav-link:hover {
    border-bottom-color: #FFA726;
}

/* Accordion */
.accordion-button {
    border-radius: 0 !important;
    background-color: #F5F5F5;
    color: hsl(var(--text-dark));
}

.accordion-button:not(.collapsed) {
    background-color: #E91E63 !important;
    color: #ffffff !important;
}

.accordion-item {
    border-radius: 0 !important;
    border: 1px solid #E0E0E0;
    margin-bottom: 0.5rem;
}


/* ========================================================================
   20. RESPONSIVE ADJUSTMENTS
   ======================================================================== */

/**
 * Mobil cihazlar için optimizasyonlar
 */

@media (max-width: 991px) {
    /* Mobil header */
    .header--sticky {
        background: #E91E63 !important;
    }
    
    /* Villa kartları mobilde daha küçük padding */
    .property-card {
        margin-bottom: 1.5rem;
    }
    
    /* Mobil butonlar tam genişlik */
    .btn-block-mobile {
        width: 100%;
        margin-bottom: 1rem;
    }
    
    /* Mobil filtre */
    .property-filter {
        flex-direction: column;
    }
    
    .property-filter__item {
        width: 100%;
        margin-bottom: 1rem;
    }
}

@media (max-width: 767px) {
    /* Mobilde daha küçük yazı boyutları */
    .property-card__price {
        font-size: 1.25rem !important;
    }
    
    /* Swiper butonları mobilde daha küçük */
    .swiper-button-next,
    .swiper-button-prev {
        width: 40px !important;
        height: 40px !important;
    }
}


/* ========================================================================
   21. PRINT STYLES
   ======================================================================== */

/**
 * Yazdırma için optimizasyon
 */

@media print {
    .header,
    .footer,
    .swiper-button-next,
    .swiper-button-prev,
    .property-card__fav {
        display: none !important;
    }
    
    .property-card {
        border: 1px solid #000 !important;
        box-shadow: none !important;
    }
}


/* ========================================================================
   22. ACCESSIBILITY IMPROVEMENTS
   ======================================================================== */

/**
 * Erişilebilirlik iyileştirmeleri
 */

/* Focus görünürlüğü */
*:focus {
    outline: 3px solid #FFA726 !important;
    outline-offset: 2px;
}

/* Skip link */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: #E91E63;
    color: white;
    padding: 8px;
    text-decoration: none;
    z-index: 100;
}

.skip-link:focus {
    top: 0;
}


/* ========================================================================
   23. ANIMATION & TRANSITIONS
   ======================================================================== */

/**
 * Performanslı animasyonlar
 */

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

.animate-slide-in {
    animation: slideInUp 0.5s ease-out;
}

/* Hover efektleri için smooth transition */
.property-card,
.btn,
.category-card,
.feature-card {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}


/* ========================================================================
   24. CUSTOM SCROLLBAR
   ======================================================================== */

/**
 * Özel scrollbar tasarımı (Chrome, Edge, Safari)
 */

::-webkit-scrollbar {
    width: 12px;
    height: 12px;
}

::-webkit-scrollbar-track {
    background: #F5F5F5;
}

::-webkit-scrollbar-thumb {
    background: #E91E63;
    border-radius: 0;
}

::-webkit-scrollbar-thumb:hover {
    background: #C2185B;
}


/* ========================================================================
   25. LOADING STATES
   ======================================================================== */

/**
 * Yükleme durumları için stiller
 */

.loading {
    pointer-events: none;
    opacity: 0.6;
}

.spinner-border {
    border-color: #E91E63;
    border-right-color: transparent;
}

.spinner-grow {
    background-color: #E91E63;
}


/* ========================================================================
   DOSYA SONU
   ======================================================================== 
   
   Bu CSS dosyası ana style.css dosyasından SONRA yüklenmelidir.
   PHP header'a şu şekilde ekleyin:
   
   <link rel="stylesheet" href="path/to/custom-overrides.css">
   
   ========================================================================
*/
