/* Sayfa özgü: Hero arka planı */
    .page-hero { background-image:url('../images/hero-bg.jpg'); background-size:cover; background-position:center 40%; }
    /* Filter tabs */
    .filter-tab { padding:8px 20px; border-radius:3px; font-size:.7rem; font-weight:700; letter-spacing:.1em; text-transform:uppercase; cursor:pointer; border:1.5px solid #e0ddd7; color:#7c7c7c; background:#fff; transition:all .25s ease; }
    .filter-tab:hover, .filter-tab.active { background:#1c1c1c; border-color:#1c1c1c; color:#fff; }
    /* Coming card */
    .coming-card { border-radius:16px; overflow:hidden; position:relative; transition:transform .35s ease,box-shadow .35s ease; }
    .coming-card:hover { transform:translateY(-6px); box-shadow:0 24px 60px rgba(0,0,0,.15); }
    .coming-card .inner { background:#fff; border:1px solid #e8e8e6; border-radius:16px; height:100%; transition:border-color .3s ease; }
    .coming-card:hover .inner { border-color:rgba(200,169,110,.4); }
    /* Pulse ring animasyonu */
    @keyframes pulse-ring { 0%{transform:scale(1);opacity:.6} 100%{transform:scale(1.5);opacity:0} }
    .pulse-ring { animation:pulse-ring 2s ease-out infinite; }