/* 2. SİSTEM VE NAVİGASYON İKONLARI */
.fa-heart::before { content: "\2764"; color: #ff3e3e; } /* ❤ Kalp */
.fa-search::before { content: "\1F50D"; font-size: 0.9rem; } /* 🔍 Büyüteç */
.fa-angle-right::before { content: "\203A"; font-weight: bold; font-size: 1.4rem; } /* › Sağ Ok */
.fa-home::before { content: "\2302"; } /* ⌂ Ev */
.fa-user::before { content: "\1F464"; } /* 👤 Kullanıcı */
.fa-envelope::before { content: "\2709"; } /* ✉ Mektup */
.fa-cog::before { content: "\2699"; } /* ⚙ Çark/Ayarlar */

/* 3. EDEBİYAT VE GÜZEL SÖZLER İKONLARI */
.fa-quote::before { content: "\275D"; } /* ❝ Alıntı Başlat */
.fa-quote-end::before { content: "\275E"; } /* ❞ Alıntı Bitir */
.fa-pen::before { content: "\270E"; } /* ✎ Kalem */
.fa-book::before { content: "\1F516";  } /* 🔖 Kitap/Ayraç */
.fa-feather::before { content: "\1FAB6"; } /* 🪶 Tüy */
.fa-scroll::before { content: "\1F4DC"; } /* 📜 Parşömen */
.fa-sparkle::before { content: "\2728"; } /* ✨ Işıltı */
.fa-lightbulb::before { content: "\1F4A1"; } /* 💡 Ampul/Fikir */
.fa-star::before { content: "\2B50"; } /* ⭐ Yıldız */
.fa-gem::before { content: "\1F48E"; } /* 💎 Elmas */
.fa-infinity::before { content: "\221E"; } /* ∞ Sonsuzluk */

/* 4. DOĞA VE DUYGU TEMALI İKONLAR */
.fa-sun::before { content: "\2600"; } /* ☀ Güneş */
.fa-moon::before { content: "\1F319"; } /* 🌙 Ay */
.fa-leaf::before { content: "\1F343"; } /* 🍃 Yaprak */
.fa-seedling::before { content: "\1F331"; } /* 🌱 Filiz */
.fa-flame::before { content: "\1F525"; } /* 🔥 Ateş */
.fa-bird::before { content: "\1F426"; } /* 🐦 Kuş */
.fa-cloud::before { content: "\2601"; } /* ☁ Bulut */
.fa-anchor::before { content: "\2693"; } /* ⚓ Çapa */
.fa-compass::before { content: "\1F1ED"; } /* 🧭 Pusula */

/* 5. YAŞAM VE MODERN SİMGELER */
.fa-coffee::before { content: "\2615"; } /* ☕ Kahve */
.fa-hourglass::before { content: "\23F3"; } /* ⏳ Kum Saati */
.fa-key::before { content: "\1F511"; } /* 🔑 Anahtar */
.fa-umbrella::before { content: "\2602"; } /* ☂ Şemsiye */
.fa-mountain::before { content: "\26F0"; } /* ⛰ Dağ */
.fa-wind::before { content: "\1F32C"; } /* 🌬 Rüzgar */
.fa-puzzle::before { content: "\1F9E9"; } /* 🧩 Yapboz */
.fa-music::before { content: "\266B"; } /* ♫ Müzik */
.fa-balance::before { content: "\2696"; } /* ⚖ Terazi */
.fa-lotus::before { content: "\1FAB7"; } /* 🪷 Lotus Çiçeği */
.fa-bolt::before { 
    content: "\26A1";
}
.fa-eye::before { content: "\1F441"; } /* 👁 Göz */
.fa-paperplane::before { content: "\1F4AC"; } /* 💬 Mesaj */
.tag-orange {
    background: linear-gradient(45deg, #ff8c00, #ff2e63);
}@media (max-width: 768px) {
  .container {
    padding: 5px;
  }
}/* Desktop gizle */
.category-scroll{
    display:none;
}

/* Mobil Scroll Menü */
@media (max-width:768px){

    .category-scroll{
        display:block;

    }

    .scroll-container{
        overflow-x:auto;
        scrollbar-width:none;
        -ms-overflow-style:none;
        padding:0 5px;
    }

    .scroll-container::-webkit-scrollbar{
        display:none;
    }

    .cat-items{
        display:flex;
        gap:10px;
        padding:0;
        margin:0;
        list-style:none;
        white-space:nowrap;
    }

    .cat-items li{
        flex:0 0 auto;
    }

    .nav-link-item{
        display:flex;
        align-items:center;
        gap:6px;
        padding:10px 16px;
        border-radius:50px;
        text-decoration:none;
        background:#fff;
        color:#222;
        font-size:13px;
        font-weight:600;
        border:1px solid #ececec;
        box-shadow:0 2px 8px rgba(0,0,0,.05);
        transition:.2s ease;
    }

    .nav-link-item i{
        font-size:12px;
        color:#ff4d6d;
    }

    .nav-link-item.active{
        background:linear-gradient(135deg,#ff4d6d,#ff758f);
        color:#fff;
        border-color:transparent;
        box-shadow:0 4px 14px rgba(255,77,109,.35);
    }

    .nav-link-item.active i{
        color:#fff;
    }

    .nav-link-item:active{
        transform:scale(.96);
    }
}