﻿:root {
  --primary: #8B008B;
  --primary-dark: #6B0050;
  --accent: #DA70D6;
  --accent-light: #E6A8E6;
  --success: #25D366;
  --dark: #0a0e27;
  --muted: #555;
  --radius: 6px;
  --gold: #FFD700;
}

* { box-sizing: border-box; }

body {
  font-family: 'Inter', 'Segoe UI', sans-serif;
  color: var(--dark);
  background: linear-gradient(135deg, #f5f1ff 0%, #fff5f7 100%);
  letter-spacing: 0.3px;
}

a { transition: color .15s ease, background .15s ease; }

.fw-800 { font-weight: 800; }

/* ---------- Header ---------- */
.topbar {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: #fff;
  font-size: .8rem;
  padding: 0.6rem 0 !important;
  font-weight: 500;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 8px rgba(139, 0, 139, 0.2);
}

.site-header { 
  z-index: 1030;
  background: #fff;
  border-bottom: 2px solid var(--accent-light);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.navbar {
  padding: 0.6rem 0;
  border-bottom: 1px solid #f0e6ff;
}

.navbar-brand {
  color: var(--primary) !important;
  font-weight: 800;
  font-size: 1.3rem;
  letter-spacing: 1px;
}

.search-form .input-group-text,
.search-form .form-control {
  border: 2px solid #e8d5f2;
  border-radius: 6px;
  background: #fefbff;
}

.search-form .form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(139, 0, 139, 0.1);
}

.search-form .btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  border-color: var(--primary);
  border-radius: 6px;
  padding: 0.5rem 1.2rem;
  font-weight: 600;
}

.search-form .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(139, 0, 139, 0.2);
}

.filter-scroll {
  overflow-x: auto;
  white-space: nowrap;
  scrollbar-width: thin;
  padding: 0.3rem 0;
}

.filter-scroll::-webkit-scrollbar { 
  height: 4px; 
}

.filter-scroll::-webkit-scrollbar-thumb { 
  background: linear-gradient(90deg, var(--accent), var(--primary));
  border-radius: 4px; 
}

.filter-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 16px;
  border-radius: 20px;
  background: linear-gradient(135deg, #f8f0ff 0%, #fff0f7 100%);
  color: var(--dark);
  font-size: .8rem;
  font-weight: 600;
  text-decoration: none;
  flex-shrink: 0;
  border: 2px solid #e6d5f0;
  cursor: pointer;
}

.filter-chip:hover {
  background: linear-gradient(135deg, #ede0ff 0%, #ffdfef 100%);
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(139, 0, 139, 0.15);
}

.filter-chip.active {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  color: #fff;
  border-color: var(--primary);
  box-shadow: 0 6px 20px rgba(139, 0, 139, 0.3);
}

/* ---------- Hero Section ---------- */
.hero-section {
  padding: .6rem 0 0;
}

.hero-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
  padding: .75rem .9rem;
  border-radius: 12px;
  background: linear-gradient(135deg, #2a0b32 0%, #55124b 100%);
  color: #fff;
  box-shadow: 0 10px 24px rgba(31, 11, 42, 0.16);
}

.hero-strip-copy {
  display: flex;
  flex-direction: column;
  gap: .1rem;
}

.hero-strip-copy strong {
  font-size: .9rem;
  font-weight: 900;
  letter-spacing: .06em;
}

.hero-strip-copy span {
  color: rgba(255,255,255,.76);
  font-size: .8rem;
}

/* ---------- Listing Card ---------- */
.listing-col { 
  animation: fadeInUp .4s ease both; 
}

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

.listing-card {
  border-radius: var(--radius);
  overflow: hidden;
  transition: all .2s ease;
  border: 1px solid #e8d5f2;
  background: #fff;
  position: relative;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.listing-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(139, 0, 139, 0.2) !important;
  border-color: var(--accent);
}

.listing-card-img-wrap {
  position: relative;
  display: block;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: linear-gradient(135deg, #f0e6ff 0%, #ffe6f0 100%);
}

.listing-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .3s ease;
}

.listing-card:hover .listing-card-img {
  transform: scale(1.08);
}

.badge-featured {
  position: absolute;
  top: 8px;
  left: 8px;
  background: linear-gradient(135deg, var(--gold) 0%, #FFB700 100%);
  color: var(--dark);
  font-size: .7rem;
  padding: 5px 10px;
  border-radius: 3px;
  z-index: 2;
  font-weight: 700;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 12px rgba(255, 215, 0, 0.4);
}

/* VIP & Gold Special Styling */
.listing-card .badge-featured {
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  animation: badgePulse 2s ease-in-out infinite;
}

.listing-card .badge-regular {
  background: rgba(33, 37, 41, .82);
  color: #fff;
  box-shadow: 0 4px 12px rgba(33, 37, 41, .22);
}

.listing-type-section + .listing-type-section {
  margin-top: 1rem;
}

.listing-type-heading {
  margin: 0 0 .45rem;
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.listing-type-heading::before,
.listing-type-heading::after {
  display: none;
  content: '';
}

.listing-type-vip .listing-type-heading {
  color: #16a34a;
}

.listing-type-gold .listing-type-heading {
  color: #c98d00;
}

.listing-type-normal .listing-type-heading {
  color: #495057;
}

.section-eyebrow {
  display: inline-block;
  margin-bottom: .15rem;
  color: #9c27b0;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .14em;
}

.section-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .4rem .75rem;
  border-radius: 999px;
  background: #fff;
  border: 1px solid #eadcf1;
  color: var(--primary);
  font-size: .78rem;
  font-weight: 700;
  box-shadow: 0 8px 18px rgba(139, 0, 139, 0.06);
}

.listing-thumb-grid {
  display: grid;
  gap: 4px;
}

.listing-thumb-grid-gold {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.listing-thumb-grid-normal {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.listing-thumb {
  display: block;
  border: 2px solid #fff;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 6px 18px rgba(20, 12, 32, 0.06);
}

.listing-thumb img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: center top;
  transition: transform .25s ease;
}

.listing-thumb:hover img,
.listing-thumb:focus-visible img {
  transform: scale(1.03);
}

/* İlan türüne göre kompakt vitrin görünümü */
.listing-vip-grid,
.listing-gold-grid {
  display: grid;
  gap: 3px;
}

.listing-vip-grid { grid-template-columns: 1fr; }
.listing-gold-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }

.listing-media-preview {
  position: relative;
  display: block;
  overflow: hidden;
  background: #111827;
  color: #fff;
}

.listing-media-preview-vip { aspect-ratio: 16 / 3.35; }
.listing-media-preview-gold { aspect-ratio: 16 / 5.5; }

.listing-media-images {
  display: grid;
  width: 100%;
  height: 100%;
}

.listing-media-preview-vip .listing-media-images { grid-template-columns: repeat(5, minmax(0, 1fr)); }
.listing-media-preview-gold .listing-media-images { grid-template-columns: repeat(2, minmax(0, 1fr)); }

.listing-media-images img {
  width: 100%;
  height: 100%;
  min-width: 0;
  object-fit: cover;
  object-position: center top;
  border-right: 2px solid #fff;
}

.listing-media-images img:last-child { border-right: 0; }

.listing-media-title {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: .28rem .5rem;
  overflow: hidden;
  color: #fff;
  background: linear-gradient(180deg, transparent, rgba(2, 6, 23, .88));
  font-size: clamp(.62rem, 1.1vw, .82rem);
  font-weight: 800;
  letter-spacing: .04em;
  line-height: 1.1;
  text-align: center;
  text-overflow: ellipsis;
  text-shadow: 0 1px 5px #000;
  text-transform: uppercase;
  white-space: nowrap;
}
/* =========================================================
   ARES İSTANBUL — PREMIUM İLAN POSTER
   ========================================================= */

.listing-poster-grid {
    display: grid;
    gap: 14px;
}

.listing-poster-grid-vip,
.listing-poster-grid-gold,
.listing-poster-grid-normal {
    grid-template-columns: 1fr;
}

/* POSTER ANA KART */
.listing-poster {
    --poster-main: #8B008B;
    --poster-light: #DA70D6;

    position: relative;
    display: block;
    width: 100%;
    aspect-ratio: 16 / 6.8;

    overflow: hidden;
    border: 1px solid rgba(139, 0, 139, .28);
    border-radius: 12px;

    background:
        radial-gradient(circle at 50% 100%,
        rgba(139, 0, 139, .38),
        transparent 55%),
        #090b18;

    color: #fff;
    text-decoration: none;

    box-shadow:
        0 8px 25px rgba(20, 0, 30, .16),
        0 2px 8px rgba(139, 0, 139, .10);

    isolation: isolate;

    transition:
        transform .28s cubic-bezier(.2,.8,.2,1),
        box-shadow .28s ease,
        border-color .28s ease;
}

/* VIP */
.listing-poster-vip {
    --poster-main: #8B008B;
    --poster-light: #DA70D6;
}

/* GOLD */
.listing-poster-gold {
    --poster-main: #c58a00;
    --poster-light: #FFD700;
}

/* NORMAL */
.listing-poster-regular {
    --poster-main: #8B008B;
    --poster-light: #DA70D6;
}

.listing-poster:hover,
.listing-poster:focus-visible {
    transform: translateY(-3px);

    border-color: var(--poster-light);

    box-shadow:
        0 14px 38px rgba(60, 0, 70, .22),
        0 0 0 1px rgba(218, 112, 214, .12);
}

/* =========================================================
   FOTO ALANI
   ========================================================= */

.listing-poster-frame {
    position: relative;

    display: grid;

    width: 100%;
    height: 100%;

    grid-template-columns:
        minmax(0, 1fr)
        minmax(0, 1fr)
        minmax(0, 1fr);

    gap: 3px;

    padding: 3px;

    background: #080a14;
}

.listing-poster-photo {
    position: relative;

    display: block;

    min-width: 0;
    min-height: 0;

    overflow: hidden;

    background:
        linear-gradient(
            135deg,
            rgba(139, 0, 139, .12),
            rgba(10, 14, 39, .9)
        );
}

.listing-poster-photo:nth-child(1) {
    grid-column: 1;
    grid-row: 1;
}

.listing-poster-photo:nth-child(2) {
    grid-column: 2;
    grid-row: 1;
}

.listing-poster-photo:nth-child(4) {
    grid-column: 3;
    grid-row: 1;
}

.listing-poster-photo::after {
    content: "";

    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            180deg,
            rgba(0,0,0,.02) 35%,
            rgba(0,0,0,.20) 100%
        );

    pointer-events: none;
}

.listing-poster-photo img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center top;

    filter:
        saturate(.94)
        contrast(1.04)
        brightness(.91);

    transform: scale(1.001);

    transition:
        transform .55s cubic-bezier(.2,.8,.2,1),
        filter .4s ease;
}

.listing-poster:hover .listing-poster-photo img,
.listing-poster:focus-visible .listing-poster-photo img {
    transform: scale(1.055);

    filter:
        saturate(1.08)
        contrast(1.05)
        brightness(.98);
}

/* =========================================================
   ORTA YAZI KATMANI
   ========================================================= */

.listing-poster-copy {
    position: absolute;
    z-index: 5;

    left: 0;
    right: 0;
    bottom: 0;

    display: flex;
    flex-direction: column;

    align-items: center;
    justify-content: flex-end;

    min-width: 0;

    padding:
        58px
        18px
        14px;

    text-align: center;

    color: #fff;

    line-height: 1;

    background:
        linear-gradient(
            180deg,
            rgba(4, 4, 14, 0) 0%,
            rgba(5, 3, 15, .08) 20%,
            rgba(7, 3, 18, .55) 54%,
            rgba(8, 2, 20, .91) 82%,
            rgba(8, 2, 20, .98) 100%
        );

    pointer-events: none;
}

/* ÜST KONUM */
.listing-poster-district {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    margin: 0 0 6px;

    padding: 5px 11px;

    border: 1px solid
        color-mix(in srgb, var(--poster-light) 42%, transparent);

    border-radius: 999px;

    background:
        rgba(15, 5, 22, .52);

    color: var(--poster-light);

    font-size: clamp(
        .58rem,
        .9vw,
        .75rem
    );

    font-weight: 900;

    letter-spacing: .16em;

    text-transform: uppercase;

    text-shadow:
        0 2px 10px rgba(0,0,0,.7);

    backdrop-filter: blur(7px);
}

/* HİZMET TÜRÜ */
.listing-poster-type {
    display: block;

    margin: 0 0 5px;

    color: rgba(255,255,255,.86);

    font-size: clamp(
        .58rem,
        .85vw,
        .72rem
    );

    font-weight: 800;

    letter-spacing: .14em;

    line-height: 1.1;

    text-transform: uppercase;

    text-shadow:
        0 2px 8px rgba(0,0,0,.8);
}

/* =========================================================
   İLAN / İSİM — ANA ODAK
   ========================================================= */

.listing-poster-name {
    position: relative;

    display: block;

    max-width: 92%;

    margin: 0 0 7px;

    color: #fff;

    font-size: clamp(
        1.25rem,
        2.35vw,
        2rem
    );

    font-weight: 950;

    letter-spacing: .025em;

    line-height: .98;

    text-transform: uppercase;

    text-shadow:
        0 2px 4px rgba(0,0,0,.9),
        0 5px 18px rgba(0,0,0,.75);

    overflow: hidden;

    text-overflow: ellipsis;

    white-space: nowrap;
}

/* İSMİN ALTINDA MOR VURGU */
.listing-poster-name::after {
    content: "";

    display: block;

    width: 52px;
    height: 3px;

    margin:
        7px
        auto
        0;

    border-radius: 99px;

    background:
        linear-gradient(
            90deg,
            transparent,
            var(--poster-light),
            transparent
        );

    box-shadow:
        0 0 12px
        color-mix(
            in srgb,
            var(--poster-light) 55%,
            transparent
        );
}

/* =========================================================
   ALT BİLGİ
   ========================================================= */

.listing-poster-meta {
    display: block;

    margin: 1px 0 5px;

    color: rgba(255,255,255,.92);

    font-size: clamp(
        .58rem,
        .82vw,
        .69rem
    );

    font-style: normal;

    font-weight: 900;

    letter-spacing: .09em;

    line-height: 1.1;

    text-transform: uppercase;

    text-shadow:
        0 2px 7px rgba(0,0,0,.85);
}

.listing-poster-real {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    min-height: 20px;

    padding: 4px 10px;

    border-radius: 5px;

    background:
        color-mix(
            in srgb,
            var(--poster-main) 82%,
            #000
        );

    color: #fff;

    font-size: clamp(
        .54rem,
        .75vw,
        .63rem
    );

    font-weight: 900;

    letter-spacing: .11em;

    line-height: 1;

    text-transform: uppercase;

    box-shadow:
        0 3px 12px rgba(0,0,0,.3);

    text-shadow:
        0 1px 4px rgba(0,0,0,.65);
}

/* =========================================================
   VIP ÖZEL PARILTI
   ========================================================= */

.listing-poster-vip::before {
    content: "";

    position: absolute;
    z-index: 10;

    top: 0;
    left: -100%;

    width: 55%;
    height: 100%;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(255,255,255,.09),
            transparent
        );

    transform: skewX(-18deg);

    pointer-events: none;
}

.listing-poster-vip:hover::before {
    animation: aresPosterShine .9s ease;
}

@keyframes aresPosterShine {
    from {
        left: -100%;
    }

    to {
        left: 150%;
    }
}

/* =========================================================
   VIP / GOLD ÜST ÇİZGİ
   ========================================================= */

.listing-poster-vip,
.listing-poster-gold {
    border-top: 2px solid var(--poster-light);
}

.listing-poster-vip::after,
.listing-poster-gold::after {
    content: "";

    position: absolute;

    z-index: 12;

    top: 0;
    left: 8%;
    right: 8%;

    height: 1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            var(--poster-light),
            transparent
        );

    opacity: .9;

    pointer-events: none;
}

/* =========================================================
   MOBİL
   ========================================================= */

@media (max-width: 767.98px) {

    .listing-poster {
        aspect-ratio: 16 / 8.4;

        border-radius: 9px;
    }

    .listing-poster-frame {
        gap: 2px;
        padding: 2px;
    }

    .listing-poster-copy {
        padding:
            48px
            9px
            10px;
    }

    .listing-poster-district {
        margin-bottom: 4px;
        padding: 4px 8px;

        font-size: .53rem;

        letter-spacing: .12em;
    }

    .listing-poster-type {
        margin-bottom: 3px;

        font-size: .52rem;

        letter-spacing: .10em;
    }

    .listing-poster-name {
        max-width: 96%;

        margin-bottom: 4px;

        font-size: clamp(
            .92rem,
            4.5vw,
            1.3rem
        );
    }

    .listing-poster-name::after {
        width: 38px;
        height: 2px;

        margin-top: 5px;
    }

    .listing-poster-meta {
        margin-bottom: 3px;

        font-size: .50rem;
        letter-spacing: .07em;
    }

    .listing-poster-real {
        min-height: 17px;

        padding: 3px 7px;

        font-size: .46rem;
        letter-spacing: .07em;
    }
}

/* ÇOK KÜÇÜK EKRANLAR */
@media (max-width: 430px) {

    .listing-poster {
        aspect-ratio: 16 / 9;
    }

    .listing-poster-copy {
        padding:
            38px
            7px
            8px;
    }

    .listing-poster-district {
        font-size: .47rem;
        padding: 3px 7px;
    }

    .listing-poster-type {
        font-size: .46rem;
    }

    .listing-poster-name {
        font-size: .88rem;
    }

    .listing-poster-meta {
        font-size: .44rem;
    }

    .listing-poster-real {
        font-size: .41rem;
    }
}

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

.listing-title {
  line-height: 1.2;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--primary);
}

.listing-card .card-body {
  gap: 0.5rem;
  padding: 1rem;
}

.listing-card .card-body p {
  margin-bottom: 0.5rem;
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.3;
}

.row { 
  --bs-gutter-x: 0.75rem; 
  --bs-gutter-y: 0.75rem; 
}

/* ---------- Badge Styles ---------- */
.badge {
  padding: 0.4rem 0.8rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.3px;
}

.bg-light.text-dark {
  background: linear-gradient(135deg, #f8f0ff 0%, #fff0f7 100%) !important;
  border: 1px solid #e8d5f2;
}

/* ---------- Buttons ---------- */
.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  border: none;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(139, 0, 139, 0.3);
}

.btn-success {
  background: linear-gradient(135deg, var(--success) 0%, #1ea853 100%);
  border: none;
  font-weight: 600;
}

.btn-success:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
}

.btn-danger {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  border: none;
  font-weight: 600;
}

.btn-danger:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(139, 0, 139, 0.3);
}

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

.btn-outline-primary:hover {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  color: #fff;
  border-color: transparent;
}

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

.btn-outline-success:hover {
  background: var(--success);
  color: #fff;
}

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

.btn-outline-danger:hover {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  color: #fff;
  border-color: transparent;
}

.btn-outline-warning {
  color: #FFC107;
  border: 2px solid #FFC107;
}

.btn-outline-warning:hover {
  background: #FFC107;
  color: #000;
}

.btn-outline-secondary {
  color: var(--muted);
  border: 2px solid var(--muted);
}

.btn-outline-secondary:hover {
  background: var(--muted);
  color: #fff;
}

/* ---------- WhatsApp Floating Button ---------- */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: linear-gradient(135deg, var(--success) 0%, #1ea853 100%);
  color: #fff;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
  z-index: 1040;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6); }
  70% { box-shadow: 0 0 0 12px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

/* ---------- Footer ---------- */
.footer-link:hover { 
  color: var(--accent) !important; 
}

/* ---------- Utility ---------- */
.text-primary {
  color: var(--primary) !important;
}

.bg-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%) !important;
}

.container { 
  padding-left: 0.75rem; 
  padding-right: 0.75rem; 
}

.mb-3 { margin-bottom: 0.75rem !important; }
.mb-4 { margin-bottom: 1rem !important; }

/* ---------- Alerts ---------- */
.alert {
  border: none;
  border-radius: 8px;
  font-weight: 500;
  letter-spacing: 0.3px;
}

.alert-danger {
  background: linear-gradient(135deg, rgba(139, 0, 139, 0.1) 0%, rgba(218, 112, 214, 0.1) 100%);
  color: var(--primary);
  border-left: 4px solid var(--primary);
}

.alert-success {
  background: linear-gradient(135deg, rgba(37, 211, 102, 0.1) 0%, rgba(30, 168, 83, 0.1) 100%);
  color: #1ea853;
  border-left: 4px solid var(--success);
}

.alert-info {
  background: linear-gradient(135deg, rgba(139, 0, 139, 0.1) 0%, rgba(218, 112, 214, 0.1) 100%);
  color: var(--primary);
  border-left: 4px solid var(--primary);
}

/* ---------- Cards ---------- */
.card {
  border-radius: 8px;
  border: 1px solid #e8d5f2;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.card-header {
  background: linear-gradient(135deg, #f8f0ff 0%, #fff0f7 100%);
  border-bottom: 2px solid #e8d5f2;
}

/* ---------- Forms ---------- */
.form-control, .form-select {
  border: 2px solid #e8d5f2;
  border-radius: 6px;
  transition: all 0.2s ease;
}

.form-control:focus, .form-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(139, 0, 139, 0.1);
}

.form-label {
  color: var(--dark);
  font-weight: 600;
}

/* ---------- Table ---------- */
.table {
  border-collapse: collapse;
}

.table th {
  background: linear-gradient(135deg, #f8f0ff 0%, #fff0f7 100%);
  border-bottom: 2px solid #e8d5f2;
  font-weight: 600;
  color: var(--primary);
}

.table-hover tbody tr:hover {
  background-color: #fef8ff;
}

/* ---------- Mobile Responsive ---------- */
@media (max-width: 768px) {
  .hero-section h1 { font-size: 1.8rem; }
  .topbar { font-size: 0.75rem; }
  .navbar { padding: 0.5rem 0; }
  .listing-card { margin-bottom: 0.3rem; }
  .navbar-brand { max-width: calc(100% - 58px); font-size: 1.05rem; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
  .search-form .input-group { flex-wrap: nowrap; }
  .search-form .form-control { min-width: 0; font-size: .9rem; }
  .search-form .btn { padding-inline: .75rem; }
  .filter-scroll { margin-inline: -.75rem; padding-inline: .75rem; scroll-padding-inline: .75rem; -webkit-overflow-scrolling: touch; }
  .filter-chip { padding: 7px 12px; }
  .pagination .page-link { padding: .45rem .65rem; }
  .gallery-img { max-height: 60vh; object-fit: cover; }
  .whatsapp-float { width: 50px; height: 50px; right: 14px; bottom: 14px; font-size: 24px; }
}
/* =========================================================
   ARES ISTANBUL - YENI ILAN POSTER TASARIMI
   SADECE style.css
   ========================================================= */

.listing-media-preview {
    position: relative !important;
    width: 100% !important;
    min-height: 300px !important;
    margin: 25px 0 !important;
    overflow: hidden !important;
    border-radius: 14px !important;
    border: 2px solid #8B008B !important;
    background: #0a0e27 !important;
    box-shadow: 0 10px 35px rgba(0,0,0,.35) !important;
}

/* Resim alanı */
.listing-media-images {
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    display: grid !important;
    grid-template-columns: repeat(5, 1fr) !important;
    gap: 0 !important;
    z-index: 1 !important;
}

/* Resimler */
.listing-media-images img {
    width: 100% !important;
    height: 100% !important;
    min-height: 300px !important;
    object-fit: cover !important;
    display: block !important;
    transition: transform .5s ease !important;
}

/* Koyu kaplama */
.listing-media-preview::after {
    content: "" !important;
    position: absolute !important;
    inset: 0 !important;
    z-index: 2 !important;
    background:
        linear-gradient(
            90deg,
            rgba(0,0,0,.82) 0%,
            rgba(0,0,0,.35) 50%,
            rgba(0,0,0,.82) 100%
        ) !important;
    pointer-events: none !important;
}

/* Başlık */
.listing-media-title {
    position: absolute !important;
    left: 50% !important;
    bottom: 35px !important;
    transform: translateX(-50%) !important;
    z-index: 5 !important;

    width: 90% !important;
    text-align: center !important;

    color: #fff !important;
    font-size: 34px !important;
    font-weight: 900 !important;
    text-transform: uppercase !important;
    letter-spacing: 2px !important;
    text-shadow: 0 3px 12px rgba(0,0,0,.9) !important;
}

/* Mor dekoratif çizgi */
.listing-media-title::after {
    content: "" !important;
    display: block !important;
    width: 90px !important;
    height: 4px !important;
    margin: 12px auto 0 !important;
    background: #DA70D6 !important;
    border-radius: 10px !important;
}

/* VIP */
.listing-media-preview-vip {
    min-height: 350px !important;
    border-color: #DA70D6 !important;
    box-shadow:
        0 0 25px rgba(218,112,214,.25),
        0 12px 40px rgba(0,0,0,.4) !important;
}

/* VIP başlık */
.listing-media-preview-vip .listing-media-title {
    color: #fff !important;
    font-size: 38px !important;
}

/* GOLD */
.listing-media-preview-gold {
    min-height: 320px !important;
    border-color: #FFD700 !important;
}

/* Gold çizgi */
.listing-media-preview-gold .listing-media-title::after {
    background: #FFD700 !important;
}

/* Hover */
.listing-media-preview:hover .listing-media-images img {
    transform: scale(1.04) !important;
}

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

    .listing-media-preview {
        min-height: 240px !important;
        border-radius: 10px !important;
    }

    .listing-media-images {
        grid-template-columns: repeat(3, 1fr) !important;
    }

    .listing-media-images img {
        min-height: 240px !important;
    }

    .listing-media-title {
        bottom: 22px !important;
        font-size: 23px !important;
        letter-spacing: 1px !important;
    }

    .listing-media-preview-vip .listing-media-title {
        font-size: 26px !important;
    }
} /* =========================================================
   ARES İSTANBUL - NORMAL İLAN TASARIMI
   ========================================================= */

.listing-thumb-grid-normal {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 10px !important;
}

.listing-thumb {
    position: relative !important;
    display: block !important;
    overflow: hidden !important;
    aspect-ratio: 4 / 3 !important;
    border: 2px solid #ead7ec !important;
    border-radius: 10px !important;
    background: #fff !important;
    box-shadow: 0 5px 16px rgba(60, 0, 60, .10) !important;
    text-decoration: none !important;
    transition: all .25s ease !important;
}

.listing-thumb::after {
    content: "" !important;
    position: absolute !important;
    inset: 0 !important;
    z-index: 2 !important;
    pointer-events: none !important;

    background: linear-gradient(
        180deg,
        transparent 40%,
        rgba(10, 0, 15, .08) 50%,
        rgba(10, 0, 15, .82) 100%
    ) !important;
}

.listing-thumb img {
    width: 100% !important;
    height: 100% !important;
    aspect-ratio: auto !important;
    object-fit: cover !important;
    object-position: center top !important;
    display: block !important;
    transition: transform .35s ease, filter .35s ease !important;
}

/* Normal ilan hover */
.listing-thumb:hover {
    transform: translateY(-4px) !important;
    border-color: #DA70D6 !important;
    box-shadow:
        0 10px 25px rgba(139, 0, 139, .20) !important;
}

.listing-thumb:hover img {
    transform: scale(1.06) !important;
    filter: brightness(.82) saturate(1.08) !important;
}

/* Normal ilan bölümünü daha kaliteli göster */
.listing-type-normal {
    padding-top: 4px !important;
}

.listing-type-normal .listing-type-heading {
    display: flex !important;
    align-items: center !important;
    gap: 9px !important;
    margin-bottom: 10px !important;
    color: #555 !important;
}

.listing-type-normal .listing-type-heading::before {
    content: "" !important;
    display: block !important;
    width: 5px !important;
    height: 22px !important;
    border-radius: 5px !important;
    background: linear-gradient(
        180deg,
        #8B008B,
        #DA70D6
    ) !important;
}

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

    .listing-thumb-grid-normal {
        grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
        gap: 6px !important;
    }

    .listing-thumb {
        border-radius: 7px !important;
        border-width: 1px !important;
    }
}

/* Küçük telefon */
@media (max-width: 480px) {

    .listing-thumb-grid-normal {
        grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
        gap: 4px !important;
    }

} /* =========================================================
   ARES İSTANBUL - İLAN GÖRÜNÜMÜ
   VIP  = 5 FOTO / 1 İLAN
   GOLD = 3 FOTO / 2 İLAN
   NORMAL = 1 FOTO / 5 İLAN
   ========================================================= */

/* VIP: tek ilan, 5 fotoğraf */
.listing-vip-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
}

.listing-media-preview-vip {
    aspect-ratio: 16 / 4.2;
    border-radius: 8px;
    overflow: hidden;
}

/* VIP 5 foto */
.listing-media-preview-vip .listing-media-images {
    grid-template-columns: repeat(5, 1fr);
}

.listing-media-preview-vip .listing-media-images img {
    border-right: 3px solid #fff;
}

/* GOLD: 2 ilan yan yana */
.listing-gold-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
}

/* GOLD ilan başına 3 foto */
.listing-media-preview-gold {
    aspect-ratio: 16 / 6;
    border-radius: 8px;
    overflow: hidden;
}

.listing-media-preview-gold .listing-media-images {
    grid-template-columns: repeat(3, 1fr);
}

.listing-media-preview-gold .listing-media-images img {
    border-right: 3px solid #fff;
}

/* NORMAL: 5 ilan yan yana */
.listing-thumb-grid-normal {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 6px;
}

.listing-thumb {
    display: block;
    position: relative;
    overflow: hidden;
    border: 2px solid #fff;
    border-radius: 7px;
    background: #111;
    box-shadow: 0 5px 15px rgba(20, 12, 32, .10);
}

.listing-thumb img {
    display: block;
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    object-position: center top;
    transition: transform .25s ease;
}

.listing-thumb:hover img {
    transform: scale(1.04);
}

/* =========================================================
   MOBİL
   ========================================================= */

@media (max-width: 767.98px) {

    /* VIP yine tek ilan / 5 foto */
    .listing-media-preview-vip {
        aspect-ratio: 16 / 6;
    }

    /* GOLD yine 2 ilan yan yana */
    .listing-gold-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 4px;
    }

    .listing-media-preview-gold {
        aspect-ratio: 3 / 2;
    }

    /* Normal yine 5 kişi yan yana */
    .listing-thumb-grid-normal {
        grid-template-columns: repeat(5, minmax(0, 1fr));
        gap: 3px;
    }

    .listing-thumb {
        border-width: 1px;
        border-radius: 4px;
    }

    .listing-thumb img {
        aspect-ratio: 3 / 4;
    }
}/* =========================================================
   İLAN VİTRİNİ - SON DÜZENLEME
   VIP = 5 FOTO
   GOLD = 3 FOTO
   NORMAL = 1 FOTO
   ========================================================= */

/* VIP: tek ilan, 5 fotoğraf yan yana */
.listing-vip-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 5px !important;
}

.listing-media-preview-vip {
    width: 100% !important;
    aspect-ratio: 5 / 1.35 !important;
    min-height: 0 !important;
}

.listing-media-preview-vip .listing-media-images {
    display: grid !important;
    grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
    width: 100% !important;
    height: 100% !important;
    gap: 2px !important;
}

.listing-media-preview-vip .listing-media-images img {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    min-width: 0 !important;
    object-fit: cover !important;
    object-position: center top !important;
}

/* VIP başlık yazısı */
.listing-media-preview-vip .listing-media-title {
    z-index: 5;
    font-size: clamp(11px, 1.3vw, 16px) !important;
    padding: 8px 10px !important;
}

/* =========================================================
   GOLD: 2 ilan yan yana, her ilanda 3 foto
   ========================================================= */

.listing-gold-grid {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 5px !important;
}

.listing-media-preview-gold {
    width: 100% !important;
    aspect-ratio: 3 / 1.35 !important;
}

.listing-media-preview-gold .listing-media-images {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    width: 100% !important;
    height: 100% !important;
    gap: 2px !important;
}

.listing-media-preview-gold .listing-media-images img {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    min-width: 0 !important;
    object-fit: cover !important;
    object-position: center top !important;
}

.listing-media-preview-gold .listing-media-title {
    z-index: 5;
    font-size: clamp(10px, 1.1vw, 14px) !important;
    padding: 7px 8px !important;
}

/* =========================================================
   NORMAL: 5 ilan yan yana, 1 foto
   ========================================================= */

.listing-thumb-grid-normal {
    display: grid !important;
    grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
    gap: 5px !important;
}

.listing-thumb-grid-normal .listing-thumb {
    width: 100%;
    min-width: 0;
}

.listing-thumb-grid-normal .listing-thumb img {
    display: block;
    width: 100%;
    aspect-ratio: 1 / 1.15;
    object-fit: cover;
    object-position: center top;
}

/* =========================================================
   MOBİL
   ========================================================= */

@media (max-width: 767.98px) {

    /* VIP yine 5 fotoğraf */
    .listing-vip-grid {
        grid-template-columns: 1fr !important;
        gap: 3px !important;
    }

    .listing-media-preview-vip {
        aspect-ratio: 5 / 1.55 !important;
        width: 100% !important;
    }

    .listing-media-preview-vip .listing-media-images {
        grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
        gap: 2px !important;
    }

    .listing-media-preview-vip .listing-media-images img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
    }

    /* GOLD: 3 fotoğraf */
    .listing-gold-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 3px !important;
    }

    .listing-media-preview-gold {
        aspect-ratio: 3 / 1.65 !important;
    }

    .listing-media-preview-gold .listing-media-images {
        grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
        gap: 2px !important;
    }

    /* NORMAL: 5 ilan */
    .listing-thumb-grid-normal {
        grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
        gap: 3px !important;
    }

    .listing-thumb-grid-normal .listing-thumb img {
        aspect-ratio: 1 / 1.25;
    }

    /* Mobilde yazılar taşmasın */
    .listing-media-title {
        overflow: hidden !important;
        white-space: nowrap !important;
        text-overflow: ellipsis !important;
    }
}/*/* VIP - 5 FOTOĞRAF */
.listing-media-preview-vip {
    position: relative !important;
    width: 100% !important;
    aspect-ratio: 5 / 1.45 !important;
    overflow: hidden !important;
}

.listing-media-preview-vip .listing-media-images {
    display: grid !important;
    grid-template-columns: repeat(5, 1fr) !important;
    width: 100% !important;
    height: 100% !important;
    gap: 2px !important;
}

.listing-media-preview-vip .listing-media-images img {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    min-width: 0 !important;
    min-height: 0 !important;
    object-fit: cover !important;
    object-position: center center !important;
}

/* MOBİL VIP */
@media (max-width: 767.98px) {
    .listing-media-preview-vip {
        aspect-ratio: 5 / 1.8 !important;
        overflow: hidden !important;
    }

    .listing-media-preview-vip .listing-media-images {
        display: grid !important;
        grid-template-columns: repeat(5, 1fr) !important;
        width: 100% !important;
        height: 100% !important;
    }

    .listing-media-preview-vip .listing-media-images img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
        object-position: center center !important;
    }
}/* =========================================================
   ARES İSTANBUL
   VIP / GOLD / NORMAL YENİ BÖLÜM SİSTEMİ
   ========================================================= */

.listing-type-section {
    width: 100%;
    margin-bottom: 1.5rem;
}


/* =========================================================
   WHATSAPP YAZI KUTUSU
   ========================================================= */

.category-whatsapp-box {
    width: 100%;
    margin: 0 0 .7rem 0;
    background: #fff;
    border: 1px solid #eadff0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow:
        0 5px 18px
        rgba(40, 10, 50, .07);
}


.category-whatsapp-box-vip {
    border-left:
        5px solid #a855f7;
}


.category-whatsapp-box-gold {
    border-left:
        5px solid #f5b400;
}


.category-whatsapp-box-regular {
    border-left:
        5px solid var(--primary);
}


.category-whatsapp-content {
    display: flex;
    align-items: center;
    gap: .8rem;
    padding: .75rem .9rem;
}


.category-whatsapp-icon {
    width: 42px;
    height: 42px;

    flex: 0 0 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 10px;

    background:
        linear-gradient(
            135deg,
            #effff4,
            #e4ffed
        );

    color: #20b858;
    font-size: 23px;
}


.category-whatsapp-text {
    flex: 1;
    min-width: 0;

    display: flex;
    flex-direction: column;
    gap: 2px;
}


.category-whatsapp-text strong {
    color: var(--primary);
    font-size: .86rem;
    font-weight: 900;
    line-height: 1.2;
}


.category-whatsapp-box-gold
.category-whatsapp-text strong {
    color: #a56f00;
}


.category-whatsapp-text span {
    color: #6b7280;
    font-size: .73rem;
    line-height: 1.35;
}


.category-whatsapp-button {
    flex: 0 0 auto;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;

    padding: .58rem .85rem;

    background:
        linear-gradient(
            135deg,
            #25D366,
            #1cab51
        );

    border: 0;
    border-radius: 8px;

    color: #fff !important;

    font-size: .75rem;
    font-weight: 800;

    text-decoration: none !important;

    box-shadow:
        0 4px 13px
        rgba(37, 211, 102, .25);

    transition:
        transform .15s ease,
        box-shadow .15s ease;
}


.category-whatsapp-button:hover {
    color: #fff !important;

    transform:
        translateY(-1px);

    box-shadow:
        0 6px 16px
        rgba(37, 211, 102, .32);
}


/* =========================================================
   BÖLÜM BAŞLIKLARI
   ========================================================= */

.listing-type-heading-wrap {
    margin-bottom: .55rem;
}


.listing-type-heading {
    margin: 0;

    font-size: .9rem;
    font-weight: 900;

    letter-spacing: .02em;
}


/* =========================================================
   VIP
   5 FOTOĞRAF
   1 İLAN / SATIR
   ========================================================= */

.listing-vip-grid {
    display: grid !important;
    grid-template-columns:
        minmax(0, 1fr) !important;
    gap: 12px !important;
}


.listing-media-preview-vip {
    position: relative;

    display: block;

    width: 100%;

    aspect-ratio:
        15 / 4;

    overflow: hidden;

    border-radius: 12px;

    background: #111;

    text-decoration: none;

    box-shadow:
        0 5px 18px
        rgba(0, 0, 0, .12);
}


.listing-media-preview-vip
.listing-media-images {
    display: grid !important;

    grid-template-columns:
        repeat(
            5,
            minmax(0, 1fr)
        ) !important;

    width: 100%;
    height: 100%;
}


.listing-media-preview-vip
.listing-media-images img {
    display: block;

    width: 100% !important;
    height: 100% !important;

    min-width: 0;

    object-fit: cover !important;

    border-right:
        1px solid
        rgba(255, 255, 255, .18);
}


.listing-media-preview-vip
.listing-media-images img:last-child {
    border-right: 0;
}


/* =========================================================
   GOLD
   3 FOTOĞRAF
   2 İLAN / SATIR
   ========================================================= */

.listing-gold-grid {
    display: grid !important;

    grid-template-columns:
        repeat(
            2,
            minmax(0, 1fr)
        ) !important;

    gap: 12px !important;
}


.listing-media-preview-gold {
    position: relative;

    display: block;

    width: 100%;

    aspect-ratio:
        9 / 4;

    overflow: hidden;

    border-radius: 11px;

    background: #111;

    text-decoration: none;

    box-shadow:
        0 4px 15px
        rgba(0, 0, 0, .11);
}


.listing-media-preview-gold
.listing-media-images {
    display: grid !important;

    grid-template-columns:
        repeat(
            3,
            minmax(0, 1fr)
        ) !important;

    width: 100%;
    height: 100%;
}


.listing-media-preview-gold
.listing-media-images img {
    display: block;

    width: 100% !important;
    height: 100% !important;

    min-width: 0;

    object-fit: cover !important;

    border-right:
        1px solid
        rgba(255, 255, 255, .16);
}


.listing-media-preview-gold
.listing-media-images img:last-child {
    border-right: 0;
}


/* =========================================================
   VIP / GOLD FOTOĞRAF ÜZERİ İSİM
   ========================================================= */

.listing-media-title {
    position: absolute;

    left: 8px;
    bottom: 8px;

    z-index: 5;

    max-width:
        calc(100% - 16px);

    padding:
        .32rem .55rem;

    border-radius: 6px;

    background:
        rgba(0, 0, 0, .65);

    backdrop-filter:
        blur(4px);

    color: #fff;

    font-size: .76rem;
    font-weight: 800;

    line-height: 1.15;

    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}


/* =========================================================
   NORMAL
   1 FOTOĞRAF
   5 İLAN / SATIR
   ========================================================= */

.listing-thumb-grid-normal {
    display: grid !important;

    grid-template-columns:
        repeat(
            5,
            minmax(0, 1fr)
        ) !important;

    gap: 10px !important;
}


.listing-thumb-normal {
    display: block;

    width: 100%;

    aspect-ratio:
        3 / 4;

    overflow: hidden;

    border-radius: 10px;

    background: #eee;

    box-shadow:
        0 4px 13px
        rgba(0, 0, 0, .09);

    transition:
        transform .15s ease,
        box-shadow .15s ease;
}


.listing-thumb-normal:hover {
    transform:
        translateY(-2px);

    box-shadow:
        0 7px 18px
        rgba(0, 0, 0, .14);
}


.listing-thumb-normal img {
    display: block;

    width: 100% !important;
    height: 100% !important;

    object-fit: cover !important;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (
    max-width: 991.98px
) {

    .listing-thumb-grid-normal {
        grid-template-columns:
            repeat(
                4,
                minmax(0, 1fr)
            ) !important;
    }

}


/* =========================================================
   TELEFON
   ========================================================= */

@media (
    max-width: 767.98px
) {

    .category-whatsapp-content {
        gap: .55rem;
        padding: .65rem;
    }


    .category-whatsapp-icon {
        width: 36px;
        height: 36px;

        flex-basis: 36px;

        font-size: 20px;
    }


    .category-whatsapp-text strong {
        font-size: .76rem;
    }


    .category-whatsapp-text span {
        font-size: .66rem;
    }


    .category-whatsapp-button {
        padding:
            .5rem .62rem;

        font-size: .68rem;
    }


    /*
     * VIP mobilde de
     * 5 fotoğraf görünmeye devam eder.
     */
    .listing-media-preview-vip {
        aspect-ratio:
            5 / 1.6;
    }


    .listing-media-preview-vip
    .listing-media-images {
        grid-template-columns:
            repeat(
                5,
                minmax(0, 1fr)
            ) !important;
    }


    /*
     * GOLD mobilde
     * tek ilan / satır.
     * Her ilanda yine 3 fotoğraf.
     */
    .listing-gold-grid {
        grid-template-columns:
            minmax(
                0,
                1fr
            ) !important;
    }


    .listing-media-preview-gold {
        aspect-ratio:
            9 / 4;
    }


    .listing-media-preview-gold
    .listing-media-images {
        grid-template-columns:
            repeat(
                3,
                minmax(0, 1fr)
            ) !important;
    }


    /*
     * NORMAL mobilde
     * fotoğraflar çok küçülmesin.
     */
    .listing-thumb-grid-normal {
        grid-template-columns:
            repeat(
                2,
                minmax(0, 1fr)
            ) !important;

        gap: 8px !important;
    }


    .listing-media-title {
        left: 5px;
        bottom: 5px;

        max-width:
            calc(100% - 10px);

        font-size: .65rem;

        padding:
            .25rem .4rem;
    }

}


/* =========================================================
   ÇOK KÜÇÜK TELEFON
   ========================================================= */

@media (
    max-width: 420px
) {

    .category-whatsapp-content {
        flex-wrap: wrap;
    }


    .category-whatsapp-text {
        width:
            calc(
                100% - 48px
            );
    }


    .category-whatsapp-button {
        margin-left: 47px;
    }

} /* =========================================================
   ARES İSTANBUL - İLETİŞİM REKLAM BANDI
   ========================================================= */

.ares-contact-banner {
    position: relative;
    width: 100%;
    min-height: 105px;
    margin: 0 0 12px;
    display: flex;
    align-items: stretch;
    overflow: hidden;

    background:
        linear-gradient(
            135deg,
            #050505 0%,
            #111 55%,
            #050505 100%
        );

    border: 2px solid #222;
    border-radius: 7px;

    box-shadow:
        0 6px 18px rgba(0, 0, 0, .18);
}


/* SOL ARES İSTANBUL */

.ares-contact-brand {
    position: relative;

    width: 150px;
    min-width: 150px;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    overflow: hidden;

    background:
        linear-gradient(
            135deg,
            #161616,
            #050505
        );

    border-right:
        3px solid #e60023;
}


.ares-contact-brand::after {
    content: "";

    position: absolute;

    right: -28px;
    top: -20px;

    width: 45px;
    height: 150%;

    transform: rotate(12deg);

    background: #e60023;
}


.ares-contact-brand span {
    position: relative;
    z-index: 2;

    display: block;

    max-width: 110px;

    color: #fff;

    font-size: 19px;
    line-height: 1;

    font-weight: 1000;

    text-align: center;

    text-transform: uppercase;

    transform: rotate(-10deg);

    text-shadow:
        2px 2px 0 #e60023,
        -1px -1px 0 #e60023;

    letter-spacing: -.4px;
}


.ares-contact-brand small {
    position: relative;
    z-index: 2;

    margin-top: 8px;

    padding: 3px 7px;

    border-radius: 4px;

    background: #e60023;

    color: #fff;

    font-size: 10px;
    font-weight: 900;

    letter-spacing: 1px;
}


/* ORTA ALAN */

.ares-contact-main {
    flex: 1;
    min-width: 0;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    padding: 10px 18px;

    text-align: center;
}


.ares-contact-title {
    color: #fff;

    font-size: 19px;
    line-height: 1.05;

    font-weight: 1000;

    text-transform: uppercase;

    text-shadow:
        1px 1px 0 #e60023,
        -1px -1px 0 #e60023,
        0 0 5px rgba(255, 0, 30, .7);
}


.ares-contact-description {
    margin-top: 5px;

    color: #ff334c;

    font-size: 15px;
    line-height: 1.15;

    font-weight: 900;

    text-transform: uppercase;
}


/* WHATSAPP ALT YAZI / BUTON */

.ares-contact-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;

    margin-top: 7px;

    padding: 4px 12px;

    color: #28ff28 !important;

    background: transparent;

    border: 0;

    text-decoration: none !important;

    font-size: 15px;
    line-height: 1;

    font-weight: 1000;

    text-transform: uppercase;

    text-shadow:
        0 0 4px rgba(0, 255, 0, .55);

    transition:
        transform .15s ease,
        color .15s ease;
}


.ares-contact-whatsapp:hover {
    color: #72ff72 !important;
    transform: scale(1.025);
}


.ares-contact-whatsapp i {
    font-size: 18px;
}


/* VIP */

.ares-contact-banner-vip {
    border-color: #e91e63;
}


/* GOLD */

.ares-contact-banner-gold {
    border-color: #f5b400;
}


/* NORMAL */

.ares-contact-banner-regular {
    border-color: #8b008b;
}


/* =========================================================
   MOBİL
   ========================================================= */

@media (max-width: 767.98px) {

    .ares-contact-banner {
        min-height: 85px;

        border-radius: 5px;
    }


    .ares-contact-brand {
        width: 88px;
        min-width: 88px;

        border-right-width: 2px;
    }


    .ares-contact-brand span {
        max-width: 75px;

        font-size: 12px;

        transform: rotate(-9deg);
    }


    .ares-contact-brand small {
        margin-top: 5px;

        padding: 2px 5px;

        font-size: 8px;
    }


    .ares-contact-main {
        padding: 7px 6px;
    }


    .ares-contact-title {
        font-size: 12px;
        line-height: 1.05;
    }


    .ares-contact-description {
        margin-top: 3px;

        font-size: 9px;
        line-height: 1.12;
    }


    .ares-contact-whatsapp {
        gap: 4px;

        margin-top: 5px;
        padding: 3px 5px;

        font-size: 9px;
    }


    .ares-contact-whatsapp i {
        font-size: 11px;
    }

} /* =========================================================
   AFİŞ 5 SATIR YAZI DÜZELTMESİ
   style.css DOSYASININ EN ALTINA EKLE
   ========================================================= */

.listing-media-title {
    display: none !important;
}

.listing-media-copy {
    position: absolute;
    left: 50%;
    bottom: 8px;
    z-index: 20;
    transform: translateX(-50%);
    width: auto;
    min-width: 180px;
    max-width: calc(100% - 16px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 5px 10px;
    border-radius: 7px;
    background: linear-gradient(180deg, rgba(0,0,0,.20), rgba(0,0,0,.82));
    text-align: center;
    pointer-events: none;
    text-shadow: 0 1px 2px rgba(0,0,0,.95);
}

.listing-media-line1 {
    display: block;
    color: #ff2b45;
    font-size: .69rem;
    line-height: 1.05;
    font-weight: 900;
    letter-spacing: .02em;
}

.listing-media-line2 {
    display: block;
    margin-top: 1px;
    color: #32ff64;
    font-size: .64rem;
    line-height: 1.05;
    font-weight: 900;
}

.listing-media-line3 {
    display: block;
    margin-top: 1px;
    color: #fff;
    font-size: .92rem;
    line-height: 1.05;
    font-weight: 900;
    text-shadow: 0 1px 2px #000, 0 0 5px rgba(255,255,255,.18);
}

.listing-media-line4 {
    display: block;
    margin-top: 1px;
    color: #32ff64;
    font-size: .62rem;
    line-height: 1.05;
    font-weight: 900;
}

.listing-media-line5 {
    display: block;
    margin-top: 1px;
    color: #ff2b45;
    font-size: .63rem;
    line-height: 1.05;
    font-weight: 900;
}

.listing-media-preview-vip .listing-media-copy {
    bottom: 10px;
    min-width: 220px;
}

.listing-media-preview-vip .listing-media-line1 {
    font-size: .76rem;
}

.listing-media-preview-vip .listing-media-line2 {
    font-size: .70rem;
}

.listing-media-preview-vip .listing-media-line3 {
    font-size: 1.05rem;
}

.listing-media-preview-vip .listing-media-line4,
.listing-media-preview-vip .listing-media-line5 {
    font-size: .68rem;
}

.listing-media-preview-gold .listing-media-copy {
    min-width: 160px;
}

@media (max-width: 767.98px) {
    .listing-media-copy {
        bottom: 4px;
        min-width: 115px;
        max-width: calc(100% - 8px);
        padding: 3px 5px;
        border-radius: 5px;
    }

    .listing-media-line1 {
        font-size: .48rem;
    }

    .listing-media-line2 {
        font-size: .44rem;
    }

    .listing-media-line3 {
        font-size: .65rem;
    }

    .listing-media-line4 {
        font-size: .43rem;
    }

    .listing-media-line5 {
        font-size: .44rem;
    }

    .listing-media-preview-vip .listing-media-copy {
        bottom: 4px;
        min-width: 130px;
    }

    .listing-media-preview-vip .listing-media-line1 {
        font-size: .50rem;
    }

    .listing-media-preview-vip .listing-media-line2 {
        font-size: .46rem;
    }

    .listing-media-preview-vip .listing-media-line3 {
        font-size: .69rem;
    }

    .listing-media-preview-vip .listing-media-line4,
    .listing-media-preview-vip .listing-media-line5 {
        font-size: .45rem;
    }
} /* =========================================================
   NORMAL İLAN - 5 SATIR AFİŞ YAZISI
   ========================================================= */

.listing-thumb-normal {
    position: relative !important;
    display: block !important;
    overflow: hidden !important;
    border-radius: 7px;
    background: #111;
}

.listing-thumb-normal > img {
    width: 100% !important;
    height: 100% !important;
    display: block;
    object-fit: cover !important;
}


/* Alt yazı alanı */
.normal-poster-copy {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;

    z-index: 5;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;

    padding: 30px 4px 7px;

    text-align: center;

    background:
        linear-gradient(
            to bottom,
            transparent 0%,
            rgba(0,0,0,.22) 20%,
            rgba(0,0,0,.78) 68%,
            rgba(0,0,0,.94) 100%
        );

    pointer-events: none;
}


/* Ortak satır */
.normal-poster-line {
    display: block;

    width: 100%;

    margin: 0;

    font-family: Arial, Helvetica, sans-serif;

    font-size: clamp(7px, .72vw, 11px);

    line-height: 1.02;

    font-weight: 900;

    text-transform: uppercase;

    letter-spacing: .15px;

    text-shadow:
        0 1px 2px #000,
        0 0 4px #000;

    white-space: nowrap;

    overflow: hidden;

    text-overflow: ellipsis;
}


/* 1 - KIRMIZI */
.normal-poster-line1 {
    color: #ff1744;
}


/* 2 - YEŞİL */
.normal-poster-line2 {
    color: #00ff5a;
}


/* 3 - BEYAZ / ANA İSİM */
.normal-poster-line3 {
    color: #ffffff;

    font-size: clamp(9px, .9vw, 14px);

    line-height: 1.05;
}


/* 4 - YEŞİL */
.normal-poster-line4 {
    color: #00ff5a;
}


/* 5 - KIRMIZI */
.normal-poster-line5 {
    color: #ff1744;
}


/* Hover */
.listing-thumb-normal:hover > img {
    transform: scale(1.04);
}

.listing-thumb-normal > img {
    transition: transform .25s ease;
}


/* MOBİL */
@media (max-width: 768px) {

    .normal-poster-copy {
        padding:
            24px
            3px
            5px;
    }

    .normal-poster-line {
        font-size: 7px;
        line-height: 1;
    }

    .normal-poster-line3 {
        font-size: 8px;
    }
}