:root {
    --accent: #1e293b; 
    --gold: #b45309;   
    --bg: #ffffff;
    --card-shadow: 0 10px 30px -10px rgba(0,0,0,0.08);
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: var(--bg);
    color: var(--accent);
    margin: 0;
}

header {
    padding: 4rem 1rem;
    text-align: center;
    background: #ebe9e0;
    border-bottom: 1px solid #e2e8f0;
}

header h1 {
    font-family: 'Playfair Display', serif; 
    font-size: 2.8rem;
    margin: 0;
    letter-spacing: -1px;
}

header p {
    font-size: 1.1rem;
    color: #64748b;
    margin-top: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 300;
}

/* Vitrin Izgarası */
#vitrin {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 40px;
    max-width: 1400px;
    margin: 50px auto;
    padding: 0 25px;
}

/* Mobilya Kartı */
.mobilya-kart {
    background: white;
    transition: all 0.4s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

/* SWIPER / RESİM ALANI DÜZENLEMELERİ */
.swiper {
    width: 100%;
    height: auto;
    background-color: #f8fafc; /* Resim arkasına hafif ton */
    border-radius: 4px;
    overflow: hidden;
}

.swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobilya-img {
    width: 100%;
    height: auto;
    max-height: 400px; /* Mobilde çok uzamasını engeller */
    object-fit: contain;
    /* NETLİK AYARLARI */
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    display: block;
}

/* Slider Okları ve Noktaları */
.swiper-button-next, .swiper-button-prev {
    color: var(--gold) !important;
    transform: scale(0.5); /* Okları biraz küçülttük */
}

.swiper-pagination-bullet-active {
    background: var(--gold) !important;
}

/* Bilgi Alanı */
.bilgi {
    padding: 15px 5px;
    text-align: left;
    flex-grow: 1;
}

.bilgi h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin: 0 0 8px 0;
    font-weight: 700;
}

.bilgi p {
    color: #64748b;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 15px;
    word-wrap: break-word;
    overflow-wrap: break-word;
    white-space: normal;
    display: block;
}

/* Fiyat ve Aksiyon */
.alt-kisim {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #f1f5f9;
    padding-top: 15px;
}

.fiyat {
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--accent);
}

.incele-btn {
    color: var(--gold);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 6px;
    border: 1px solid var(--gold);
    padding: 8px 16px;
    transition: 0.3s;
}

.incele-btn:hover {
    background: var(--gold);
    color: white;
}

/* İletişim Barı */
.iletisim-bar {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-top: 20px;
    flex-wrap: wrap; 
}

.iletisim-link {
    color: var(--accent);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 400;
    transition: 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.iletisim-link i {
    color: var(--gold); 
    font-size: 1rem;
}

.iletisim-link:hover {
    color: var(--gold);
    transform: translateY(-2px);
}

/* Footer */
footer {
    background-color: #1e293b;
    color: #f8fafc;
    padding: 50px 20px;
    margin-top: 100px;
    text-align: center;
}

.footer-icerik {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-icerik h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #f1f5f9;
}

.adres-text {
    line-height: 1.8;
    font-size: 1rem;
    color: #cbd5e1;
    margin-bottom: 30px;
}

.harita-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #b45309;
    text-decoration: none;
    font-weight: 600;
    border: 1px solid #b45309;
    padding: 10px 20px;
    transition: 0.3s;
}

.harita-link:hover {
    background-color: #b45309;
    color: white;
}

/* Mobil Düzenlemeler */
@media (max-width: 768px) {
    #vitrin {
        grid-template-columns: 1fr; /* Mobilde tek sütun */
        gap: 30px;
    }
    header h1 { font-size: 2rem; }
    .iletisim-bar { gap: 15px; }
    .iletisim-link { font-size: 0.8rem; }
}
