/* --- 1. DEĞİŞKENLER VE TEMEL AYARLAR --- */
:root {
    --brand-dark: #063231;
    --brand-light-green: #C3DF94;
    --brand-orange: #F75709;
    --brand-gray: #B7C4C4;
    --white: #ffffff;
    --soft-border: #d1dee6;
    --text-muted: #777777;
}

/* Genel Yardımcı Sınıflar */
.bg-custom-gray { background-color: var(--brand-gray) !important; }
.text-custom-orange { color: var(--brand-orange) !important; }
.text-custom-dark { color: var(--brand-dark) !important; }

/* --- 2. ÜRÜN KARTI (LİSTELEME) STİLLERİ --- */
.product-card-modern {
    background: var(--brand-gray);
    border-radius: 10px;
    border: 1px solid var(--soft-border);
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: transform 0.3s ease;
}

.product-card-modern:hover { 
    transform: translateY(-5px); 
}

/* Rozetler */
.promo-badge-container { 
    padding: 5px 10px 0 5px; 
}

.badge-promo {
    background: var(--brand-orange);
    color: var(--white);
    font-size: 10px;
    font-weight: 600;
    padding: 6px;
    border-radius: 6px;
    display: inline-block;
    max-width: 100px;
    line-height: 1.2;
}

/* Görsel Alanı */
.product-thumb {
    padding: 10px;
    text-align: center;
}

.product-thumb img {
    max-height: 200px;
    width: auto;
    mix-blend-mode: multiply;
}

/* Bilgi Alanı (Beyaz Oval Kısım) */
.product-info-wrapper {
    background: var(--white);
    padding: 20px 10px;
    border-radius: 25px 25px 0 0;
    flex-grow: 1;
    box-shadow: 0 -10px 20px rgba(0,0,0,0.03);
    margin-top: 5px;
}

.product-model { 
    font-weight: 700; 
    font-size: 16px; 
    margin: 0; 
    color: #333;
}

.product-category { 
    font-size: 12px; 
    color: var(--text-muted); 
    margin-bottom: 4px; 
}

/* Kampanya Kutusu (Kart İçi) */
.campaign-strip {
    background: var(--brand-dark);
    border-radius: 4px;
    padding: 6px;
    margin: 15px 0;
    display: flex;
    align-items: center;
    gap: 2px;
    font-size: 10px;
    color: var(--white);
}

.campaign-strip i {
    color: #d9534f;
    font-size: 14px;
}

/* Fiyat ve Alt Kısım */
.product-footer-price {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-top: auto;
}

.old-price {
    display: block;
    font-size: 12px;
    color: #aaa;
    text-decoration: line-through;
}

.current-price {
    display: block;
    font-size: 18px;
    font-weight: 800;
    color: #222;
}

.member-special {
    background: var(--brand-light-green);
    color: var(--brand-dark);
    font-size: 9px;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 4px;
}

.btn-incele {
    border: 1px solid var(--brand-dark);
    color: var(--brand-dark);
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-incele:hover {
    background: var(--brand-dark);
    color: var(--white);
    transform: scale(1.1);
}

/* --- 3. ÜRÜN DETAY SAYFASI ÖZEL STİLLERİ --- */
.badge-promo-detail {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--brand-orange);
    color: var(--white);
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 11px;
    font-weight: 700;
    z-index: 5;
}

.brand-badge-modern {
    background: rgba(6, 50, 49, 0.4);
    color: var(--brand-dark);
    display: inline-block;
    padding: 4px 16px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1px;
}

/* Detay Fiyat Kartı (Üye Özel) */
.member-badge-modern {
    background: var(--brand-light-green);
    color: var(--brand-dark);
    border-radius: 12px;
    display: flex;
    align-items: center;
    overflow: hidden;
    border: 1px solid var(--brand-dark);
}

.member-badge-modern .badge-label {
    background: var(--brand-dark);
    color: var(--brand-light-green);
    padding: 8px 12px;
    font-size: 11px;
    font-weight: 700;
}

.member-badge-modern .badge-price { 
    padding: 0 15px; 
    font-size: 20px; 
    font-weight: 800; 
}

/* Detay Butonları */
.btn-contact-now {
    background: transparent;
    color: var(--brand-dark);
    border: 1px solid var(--brand-dark) !important;
    border-radius: 20px;
    padding: 10px 20px;
    font-weight: 800;
    font-size: 14px;
    transition: 0.5s;
}

.btn-contact-now:hover { 
    background: var(--brand-dark); 
    color: white; 
    transform: translateY(-2px) scale(1.1);
    transition: 0.5s;
}

.btn-action-outline {
    border: 2px solid var(--brand-dark);
    color: var(--brand-dark);
    border-radius: 50px;
    font-weight: 700;
    font-size: 13px;
    background: transparent;
    transition: 0.3s;
}

.btn-action-outline:hover { 
    background: var(--brand-dark); 
    color: var(--brand-light-green); 
}

/* Tab Tasarımı */
.tab-btn-modern {
    padding: 12px 24px;
    border: none;
    background: #eee;
    font-weight: 700;
    font-size: 13px;
    color: #666;
    border-radius: 50px;
    transition: 0.3s;
}

.tab-btn-modern.active {
    background: var(--brand-dark);
    color: var(--brand-light-green);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Galeri/Zoom Elemanları */
.main-img { 
    max-height: 400px; 
    mix-blend-mode: multiply; 
    transition: transform 0.3s ease; 
}

.thumb-box {
    background: var(--white);
    border-radius: 10px;
    padding: 5px;
    cursor: pointer;
    width: 65px;
    height: 65px;
    border: 2px solid transparent;
}

.thumb-box.active { 
    border-color: var(--brand-dark); 
}

.thumb-box img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* --- 4. RESPONSIVE (MOBİL) AYARLAR --- */
@media (max-width: 768px) {
    .product-details-main {
        border-radius: 0;
    }

    .main-img {
        max-height: 250px;
    }

    .thumbnail-stack {
        order: 2;
        width: 100%;
        justify-content: center;
    }

    .current-price { 
        font-size: 15px; 
    }

    .badge-promo { 
        font-size: 9px; 
    }
}