body{
font-family:Arial;
max-width:900px;
margin:auto;
padding:10px;
background:#f4f6f9;
}

/* TOP BAR */

.topbar{
display:flex;
justify-content:space-between;
align-items:center;
margin-bottom:20px;
}

.logo{
height:50px;
}

.ilanver{
background:#25D366;
color:white;
padding:10px 15px;
border-radius:8px;
text-decoration:none;
font-weight:bold;
}

.ilanver:hover{
background:#1ebe5d;
}

/* TITLES */

h2{
margin-top:25px;
}

/* GRID */

.grid{
display:grid;
grid-template-columns:1fr;
gap:18px;
}

/* CARD */

.card{
    
background:white;
border-radius:14px;
overflow:hidden;
box-shadow:0 6px 18px rgba(0,0,0,0.12);
transition:0.2s;
}
.card{
position:relative;
}

.card:hover{
transform:translateY(-3px);
}

/* SLIDER (ana sayfa mini resimler) */

.slider{
position:relative;
width:100%;
height:220px;
display:flex;
gap:6px;
overflow:hidden;
padding:6px;
}

.slider img{
height:100%;
width:auto;
border-radius:8px;
object-fit:cover;
}

/* BADGE */

.badge{
position:absolute;
top:15px;
left:-40px;
width:140px;
text-align:center;
transform:rotate(-45deg);
font-size:12px;
font-weight:bold;
color:white;
padding:6px 0;
z-index:10;
}

.gold{
background:#f1b500;
}

.platin{
background:#6c63ff;
}

/* TITLE OVERLAY */

.overlay{
position:absolute;
bottom:0;
width:100%;
height:80px;
background:linear-gradient(transparent,rgba(0,0,0,0.7));
}

.title{
position:absolute;
bottom:15px;
left:15px;
color:white;
font-size:18px;
font-weight:600;
z-index:2;
}

/* WHATSAPP BUTTON */

.whatsapp{
display:block;
background:#25D366;
color:white;
padding:15px;
text-align:center;
margin-top:20px;
border-radius:10px;
font-weight:bold;
text-decoration:none;
}

/* ILAN SAYFASI GALERI */

.gallery{
display:flex;
overflow-x:auto;
gap:15px;
padding:10px 0;
}

.gallery img{
height:320px;
width:auto;
border-radius:12px;
box-shadow:0 6px 15px rgba(0,0,0,0.15);
}

.gallery::-webkit-scrollbar{
display:none;
}

.gallery img{
height:320px;
width:auto;
border-radius:12px;
box-shadow:0 6px 15px rgba(0,0,0,0.15);
}

.gallery::-webkit-scrollbar{
display:none;
}

/* BURAYA EKLE */

.tumilanlar-wrap{
width:100%;
display:flex;
justify-content:center;
margin:40px 0;
}

.tumilanlar-btn{
background:#111;
color:#fff;
padding:14px 28px;
border-radius:12px;
font-size:16px;
font-weight:600;
text-decoration:none;
transition:0.3s;
box-shadow:0 8px 20px rgba(0,0,0,0.15);
}

.tumilanlar-btn:hover{
background:#25D366;
transform:translateY(-3px);
box-shadow:0 12px 25px rgba(0,0,0,0.25);
}

.galeri{
display:flex;
flex-wrap:wrap;
gap:15px;
margin-top:10px;
}

.resim{
width:120px;
text-align:center;
cursor:grab;
}

.resim img{
width:100%;
border-radius:8px;
box-shadow:0 4px 10px rgba(0,0,0,0.15);
}

.galeri{
display:flex;
flex-wrap:wrap;
gap:12px;
margin-top:15px;
}

.resim{
width:120px;
text-align:center;
cursor:grab;
}

.resim img{
width:100%;
height:90px;
object-fit:cover;
border-radius:8px;
box-shadow:0 4px 10px rgba(0,0,0,0.15);
}

/* ADMIN RESİM GALERİSİ */

#galeri{
display:grid;
grid-template-columns:repeat(auto-fill,120px);
gap:12px;
margin-top:15px;
}

#galeri .resim{
width:120px;
}

#galeri .resim img{
width:120px;
height:90px;
object-fit:cover;
border-radius:8px;
box-shadow:0 4px 10px rgba(0,0,0,0.15);
display:block;
}

#galeri{
display:grid;
grid-template-columns:repeat(auto-fill,120px);
gap:12px;
margin-top:15px;
}

#galeri .resim img{
width:120px;
height:90px;
object-fit:cover;
border-radius:8px;
}

.ilan-aciklama{
font-size:20px !important;
font-weight:600;
line-height:1.7;
margin-top:15px;
color:#222;
}


.ilan-resim{
cursor:pointer;
transition:0.2s;
}

.ilan-resim:hover{
transform:scale(1.03);
}




.slider{
position:relative;
overflow:hidden;
height:220px;
}

.slide-track{
display:flex;
width:max-content;
animation:scroll 25s linear infinite;
}

.slide-track img{
height:220px;
width:auto;
object-fit:cover;
margin-right:10px;
border-radius:10px;
}

@keyframes scroll{
0%{
transform:translateX(0);
}

100%{
transform:translateX(-50%);
}
}