/* 
 * MTA Mobilya Sistemi - BOHEMIA TASARIMI v11.3
 */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;600;700;800&family=Playfair+Display:wght@700&display=swap');

:root {
    /* Faz 3.2 - Woodmart Tema Değişkenleri ve Özel Özellikler */
    --bohemia-gold: #c5a059;
    --bohemia-black: #111111;
    --bohemia-grey: #f8f8f8;
    --bohemia-border: #eeeeee;
    --bohemia-text: #333333;
    --bohemia-accent: #b08d4a;
    
    /* Woodmart Uyumlu Pill Tasarımı */
    --fkm-pill-radius: 20px;
    --fkm-pill-bg: #fff;
    --fkm-pill-border: var(--bohemia-gold);
}

.fcm-bohemia-container {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 40px;
    font-family: 'Montserrat', sans-serif;
    color: var(--bohemia-text);
    max-width: 1400px;
    margin: 40px auto;
    padding: 0 20px;
}

.fcm-bohemia-title {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 40px;
    border-left: 5px solid var(--bohemia-gold);
    padding-left: 20px;
}

/* Kart Tasarımı */
.fcm-bohemia-card {
    display: flex;
    background: #fff;
    border: 1px solid var(--bohemia-border);
    margin-bottom: 30px;
    transition: all 0.4s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.02);
}

.fcm-bohemia-card:hover {
    border-color: var(--bohemia-gold);
    box-shadow: 0 15px 35px rgba(0,0,0,0.05);
}

/* RESİM ALANI %25 BÜYÜTÜLDÜ (350px -> 440px yaklaşık %25) */
.fcm-card-visual {
    width: 440px; 
    position: relative;
    overflow: hidden;
    background: var(--bohemia-grey);
    flex-shrink: 0;
}

.fcm-slider {
    height: 300px; /* Boyut da orantılı artırıldı */
}

.fcm-slide {
    display: none;
    height: 100%;
}

.fcm-slide.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.fcm-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.fcm-slider-nav {
    position: absolute;
    bottom: 15px;
    right: 15px;
    display: flex;
    gap: 5px;
}

.fcm-slider-nav button {
    background: rgba(255,255,255,0.9);
    border: none;
    width: 35px;
    height: 35px;
    cursor: pointer;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.fcm-slider-nav button:hover {
    background: var(--bohemia-black);
    color: #fff;
}

.fcm-card-details {
    flex: 1;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.fcm-group-label {
    color: var(--bohemia-gold);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.fcm-part-name {
    font-size: 20px;
    font-weight: 700;
    margin: 5px 0 10px 0;
}

.fcm-part-dims {
    font-size: 12px;
    color: #888;
    font-weight: 400;
}

.fcm-details-bottom {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-top: 20px;
}

.fcm-price-block {
    display: flex;
    flex-direction: column;
}

.fcm-old-price {
    text-decoration: line-through;
    color: #bbb;
    font-size: 14px;
}

.fcm-new-price {
    font-size: 24px;
    font-weight: 800;
    color: var(--bohemia-black);
}

/* ADET KONTROLÜ TASARIMI İYİLEŞTİRİLDİ */
.fcm-qty-control {
    display: inline-flex;
    align-items: center;
    border: 1px solid var(--fkm-pill-border);
    border-radius: var(--fkm-pill-radius);
    overflow: hidden;
    height: 30px;
    background: var(--fkm-pill-bg);
}

.fcm-qty-btn {
    background: transparent;
    border: none;
    width: 28px;
    height: 100%;
    cursor: pointer;
    font-size: 16px;
    color: var(--bohemia-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.fcm-qty-btn:hover {
    background: #fdf8ef;
    color: var(--bohemia-black);
}

.fcm-qty-input {
    width: 25px;
    text-align: center;
    border: none;
    font-weight: 700;
    font-size: 13px;
    color: var(--bohemia-black);
    background: transparent;
    padding: 0;
    margin: 0;
}

/* Özet Paneli */
.fcm-bohemia-summary {
    background: #fff;
    border: 1px solid var(--bohemia-black);
    padding: 30px;
    position: sticky;
    top: 100px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

.fcm-summary-heading {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 25px;
    border-bottom: 2px solid var(--bohemia-gold);
    padding-bottom: 12px;
}

.fcm-summary-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 13px;
}

.fcm-summary-item-name {
    font-weight: 600;
    color: #444;
}

.fcm-summary-item-price {
    font-weight: 700;
    color: var(--bohemia-black);
}

.fcm-summary-total {
    margin-top: 25px;
    padding-top: 15px;
    border-top: 2px solid var(--bohemia-black);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.fcm-total-text {
    font-size: 12px;
    font-weight: 700;
    color: #888;
    letter-spacing: 1px;
}

.fcm-total-amount {
    font-size: 30px;
    font-weight: 800;
    color: var(--bohemia-gold);
    margin: 5px 0 20px 0;
}

.fcm-bohemia-btn {
    width: 100%;
    background: var(--bohemia-black);
    color: #fff;
    border: none;
    padding: 15px;
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s;
}

.fcm-bohemia-btn:hover {
    background: var(--bohemia-gold);
}

/* Mobil Uyumluluk */
@media (max-width: 1100px) {
    .fcm-bohemia-container {
        grid-template-columns: 1fr;
    }
    .fcm-bohemia-sidebar {
        order: -1;
    }
    .fcm-bohemia-card {
        flex-direction: column;
    }
    .fcm-card-visual {
        width: 100%;
        height: auto;
    }
    .fcm-slider {
        height: 250px;
    }
}
