﻿:root {
    --bg: #0b1220;
    --text: #eaf0ff;
    --muted: #9fb0d0;
    --line: rgba(255,255,255,.08);
    --primary: #6ea8fe;
    --primary2: #3b82f6;
    --danger: #ff6b6b;
    --shadow: 0 30px 80px rgba(0,0,0,.35);
}

.details-section {
    padding: 26px 0 18px;
    color: var(--text);
}

/* Başlık alanı */
.home-title-box {
    border: 1px solid var(--line);
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,.01));
    box-shadow: 0 18px 50px rgba(0,0,0,.18);
    padding: 16px;
    margin-bottom: 14px;
    position: relative;
    overflow: hidden;
}

    .home-title-box::before {
        content: "";
        position: absolute;
        inset: -60px;
        background: radial-gradient(700px 300px at 20% 0%, rgba(110,168,254,.18), transparent 60%);
        pointer-events: none;
    }

.home-title {
    position: relative;
    z-index: 1;
    margin: 0;
    font-weight: 1000;
    letter-spacing: .2px;
    font-size: 30px;
    line-height: 1.15;
}

.home-sub {
    position: relative;
    z-index: 1;
    margin-top: 10px;
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.pill {
    display: inline-flex;
    padding: 5px 10px;
    border-radius: 999px;
    border: 1px solid var(--line);
    background: rgba(255,255,255,.03);
    color: var(--muted);
    font-weight: 800;
    font-size: 12px;
}

/* Üst iki kolon */
.details-wrapper {
    display: grid;
    grid-template-columns: 1.25fr 1fr;
    gap: 14px;
}

@media (max-width: 992px) {
    .details-wrapper {
        grid-template-columns: 1fr;
    }
}

/* Galeri */
.image-gallery {
    border: 1px solid var(--line);
    border-radius: 18px;
    overflow: hidden;
    background: rgba(255,255,255,.01);
    box-shadow: var(--shadow);
}

.main-image {
    border-bottom: 1px solid var(--line);
    background: rgba(10,16,28,.55);
}

    .main-image img {
        width: 100%;
        height: 420px;
        object-fit: cover;
        display: block;
        transition: opacity .18s ease;
    }

.thumbnail-slider {
    display: flex;
    gap: 10px;
    padding: 12px;
    overflow: auto;
    background: rgba(11,18,32,.75);
}

.thumbnail {
    width: 86px;
    height: 62px;
    object-fit: cover;
    border-radius: 14px;
    border: 1px solid var(--line);
    cursor: pointer;
    transition: .15s ease;
    flex: 0 0 auto;
    opacity: .9;
}

    .thumbnail:hover {
        transform: translateY(-2px);
        border-color: rgba(110,168,254,.35);
        opacity: 1;
    }

/* Bilgi paneli */
.info-panel {
    border: 1px solid var(--line);
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,.01));
    box-shadow: var(--shadow);
    padding: 14px;
    overflow: hidden;
    position: relative;
}

    .info-panel::before {
        content: "";
        position: absolute;
        inset: -60px;
        background: radial-gradient(650px 320px at 20% 0%, rgba(110,168,254,.12), transparent 60%);
        pointer-events: none;
    }

.price-box {
    position: relative;
    z-index: 1;
    border: 1px solid rgba(110,168,254,.25);
    border-radius: 16px;
    background: rgba(110,168,254,.08);
    padding: 12px 12px;
    margin-bottom: 12px;
}

.price-label {
    color: rgba(159,176,208,.9);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .6px;
}

.price-val {
    margin-top: 6px;
    font-size: 26px;
    font-weight: 1000;
    letter-spacing: .2px;
    color: var(--text);
}

.info-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

@media (max-width: 520px) {
    .info-grid {
        grid-template-columns: 1fr;
    }
}

.info-item {
    border: 1px solid var(--line);
    border-radius: 14px;
    background: rgba(10,16,28,.55);
    padding: 10px 10px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

    .info-item span {
        color: rgba(159,176,208,.85);
        font-size: 12px;
    }

    .info-item strong {
        color: rgba(234,240,255,.92);
        font-weight: 950;
    }

.info-wide {
    grid-column: 1 / -1;
}

/* Alt alan */
.bottom-section {
    margin-top: 14px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

@media (max-width: 992px) {
    .bottom-section {
        grid-template-columns: 1fr;
    }
}

.description-box,
.map-box {
    border: 1px solid var(--line);
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,.01));
    box-shadow: 0 18px 50px rgba(0,0,0,.18);
    padding: 14px;
}

    .description-box h3,
    .map-box h3 {
        margin: 0 0 10px;
        font-weight: 1000;
        letter-spacing: .2px;
    }

    .description-box p {
        margin: 0;
        color: rgba(234,240,255,.84);
        line-height: 1.7;
    }

    .map-box iframe {
        border: 0;
        border-radius: 14px;
    }

/* Geri butonu */
.back-row {
    margin-top: 16px;
    display: flex;
    justify-content: center;
}

.btn-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border-radius: 12px;
    border: 1px solid var(--line);
    background: rgba(255,255,255,.03);
    color: rgba(234,240,255,.9);
    text-decoration: none;
    font-weight: 900;
    transition: .15s ease;
}

    .btn-back:hover {
        transform: translateY(-1px);
        border-color: rgba(110,168,254,.35);
        box-shadow: 0 20px 50px rgba(0,0,0,.25);
    }

    .btn-back i {
        color: rgba(110,168,254,.95);
    }

/* Mobil görsel yükseklik */
@media (max-width: 576px) {
    .main-image img {
        height: 300px;
    }

    .home-title {
        font-size: 24px;
    }
}
