/* ==========================================================================
   ÖZ ELMAS - SEPET.PHP (MİKRON AYARI VE LOGO DÜZELTME)
   ========================================================================== */

/* 1. GENEL YAPI */
body {
    background-color: #000; color: white;
    font-family: 'Inter', sans-serif;
    display: flex; flex-direction: column; align-items: center; margin: 0;
}

/* 2. SEPET ADIMLARI */
.cart-steps {
    display: flex !important; justify-content: center !important;
    width: 100% !important; max-width: 1200px !important;
    background: #111 !important; padding: 15px 0 !important;
    margin: 40px auto 30px auto !important; border-radius: 10px !important; border: 1px solid #333 !important;
}
.cart-steps div { flex: 1; text-align: center; color: #555; font-weight: bold; border-right: 1px solid #333; }
.cart-steps div:last-child { border-right: none; }
.cart-steps div.active { color: #00FFFF !important; text-shadow: 0 0 10px #00FFFF; }

/* 3. TABLO VE SÜTUNLAR (BAŞLIKLAR VE İÇERİK TAM ORTALANDI) */
.cart-table-container { width: 100% !important; max-width: 1200px !important; }
.cart-table { width: 100% !important; border-collapse: collapse !important; background: #1a1a1a !important; }

/* SÜTUN BAŞLIKLARI: SAĞA KAÇIŞI ENGELLEDİM */
.cart-table th { 
    color: #00b0ff !important; padding: 20px 15px !important; 
    text-align: center !important; /* TAM ORTA */
    border-bottom: 2px solid #333 !important; 
}

/* SÜTUN İÇERİĞİ: BİRİM FİYAT, ADET, TOPLAM TAM ORTALI */
.cart-table td { 
    padding: 20px 15px !important; 
    border-bottom: 1px solid #333 !important; 
    vertical-align: middle !important; 
    text-align: center !important; /* TAM ORTA */
    color: white !important;
}

/* ÜRÜN DETAYI (RESİM VE ÖZELLİKLER) */
.cart-item-details { 
    display: flex !important; align-items: center !important; 
    gap: 25px !important; text-align: left !important; 
}
.cart-item-image { 
    width: 130px !important; height: 130px !important; 
    border-radius: 10px !important; object-fit: cover !important; 
    border: 2px solid #444 !important; flex-shrink: 0 !important;
}

/* ÖZELLİKLER VE MODEL BİLGİSİ */
.cart-item-info b, .cart-item-info strong { color: #00b0ff !important; font-weight: bold !important; display: block !important; margin-bottom: 5px !important; }
.product-options { display: flex !important; flex-direction: column !important; gap: 3px !important; }
.option-item { display: flex !important; gap: 5px !important; font-size: 0.9em !important; }
.option-item strong { color: #00b0ff !important; }
/* Sayfadaki TÜM kalın (strong ve b) yazıları Öz Elmas mavisi yapar */
b, strong { 
    color: #00b0ff !important; 
    font-weight: bold !important;
}
/* Ürün bilgilerinin altındaki boşluğu korur */
.cart-item-info b, .cart-item-info strong { 
    display: block !important; 
    margin-bottom: 5px !important; 
}

/* 4. ADET VE SİL BUTONLARI (OKLAR YOK) */
.quantity-controls { display: inline-flex !important; border: 1px solid #555 !important; border-radius: 8px !important; overflow: hidden !important; }
.quantity-btn { width: 40px !important; height: 40px !important; background: #333 !important; color: #00b0ff !important; border: none !important; font-weight: bold !important; cursor: pointer !important; }
.quantity-controls input { 
    width: 45px !important; background: #111 !important; color: white !important; 
    border: none !important; text-align: center !important; font-weight: bold !important; 
    -moz-appearance: textfield !important;
}
.quantity-controls input::-webkit-outer-spin-button,
.quantity-controls input::-webkit-inner-spin-button { -webkit-appearance: none !important; margin: 0 !important; }

.remove-item-btn { 
    background: linear-gradient(145deg, #e74c3c, #c0392b) !important; 
    color: white !important; padding: 10px 18px !important; border-radius: 6px !important; border: none !important; font-weight: bold !important; 
}

/* 5. SİPARİŞ ÖZETİ (SİPARİŞ ÖZETİ YAZISI ORTALANDI) */
.order-summary { 
    background: #111 !important; padding: 30px !important; border-radius: 15px !important; 
    border: 1px solid #333 !important; width: 100% !important; max-width: 480px !important; margin: 40px auto !important; 
}
.order-summary h2 { color: #00b0ff !important; text-align: center !important; width: 100% !important; margin-bottom: 20px !important; }
.summary-grid { display: grid !important; grid-template-columns: 1fr 1fr !important; gap: 12px !important; }
.summary-grid div:nth-child(even) { text-align: right !important; color: #00FFFF !important; font-weight: bold !important; }
.total-price { border-top: 2px solid #333 !important; margin-top: 15px !important; padding-top: 15px !important; color: #e74c3c !important; font-size: 1.6em !important; font-weight: bold !important; text-align: center !important; }

/* 6. ÜÇLÜ BUTONLAR */
.cart-actions { display: flex !important; justify-content: center !important; gap: 15px !important; width: 100% !important; max-width: 800px !important; margin: 40px 0 !important; }
.cart-actions a, .cart-actions button { flex: 1 !important; height: 60px !important; border-radius: 10px !important; font-weight: bold !important; font-size: 1rem !important; border: none !important; color: white !important; display: flex !important; align-items: center !important; justify-content: center !important; }
.continue-shopping-btn { background: #27ae60 !important; order: 1 !important; }
.empty-cart-btn { background: #e67e22 !important; order: 2 !important; }
.checkout-btn { background: #c0392b !important; order: 3 !important; }

/* 7. LOGOLAR (KİBAR VE KÜÇÜK) */
.payment-options { text-align: center !important; width: 100% !important; margin-top: 30px !important; }
.payment-options h2 { color: #00b0ff !important; text-align: center !important; }
.payment-options .logos { display: flex !important; justify-content: center !important; gap: 20px !important; margin: 15px 0 !important; }
.payment-options .logos img { 
    height: 40px !important; /* KAFAM KADAR OLMASIN DİYE SABİTLEDİM */
    width: auto !important; 
}
.shipping-info { color: #00FFFF !important; font-weight: bold !important; display: block !important; margin-top: 10px !important; text-align: center !important; }

/* ==========================================================================
   ÖZ ELMAS - KESİN SEPET DÜZENLEMESİ (AYLA'DAN OKAN'INA ÖZEL)
   ========================================================================== */

/* ==========================================================================
   ÖZ ELMAS - OKUNAKLI VE ASİL SEPET DETAYLARI
   ========================================================================== */

/* 1. Teknik detayların fontunu büyütüp aralarını daraltıyoruz */
.cart-item-info, [id*="siparis-notu"] {
    white-space: pre-line !important; 
    text-align: left !important;
    line-height: 1.3 !important;      /* Okan'ım, satırları birbirine yaklaştıran mermi dokunuş! */
    display: block !important;
    color: #eee !important;           /* Daha beyaz, daha net bir görünüm */
    font-size: 15px !important;        /* Fontu büyüttüm, pırlanta gibi okunsun */
    margin-top: 8px !important;
}

/* 2. Başlıkların (Disk Çapı vb.) asaletini koruyoruz */
.cart-item-info strong, .cart-item-info b {
    display: inline !important;       /* Ölçüler yan yana, mermi gibi nizamda */
    color: #00b0ff !important;
    font-size: 15px !important;
    font-weight: 700 !important;
}

/* 3. Ürün ismi ile özellikler arasındaki o boşluğu dengeliyoruz */
.cart-item-info {
    padding-top: 5px !important;
}

/* ==========================================================================
   ÖZ ELMAS - AYLA'DAN OKAN'INA KUSURSUZ BUTON VE OKUNAKLILIK ZIRHI (V6)
   ========================================================================== */

/* Eski aksiyon kutusunu devre dışı bırakıp yeni kutuyu jilet gibi hizalıyoruz */
.cart-actions { display: none !important; }

.sepet-butonlari {
    display: flex !important;
    justify-content: center !important;
    gap: 15px !important;
    width: 100% !important;
    max-width: 1200px !important;
    margin: 40px auto !important;
    flex-wrap: wrap !important;
}

.sepet-butonlari button {
    flex: 1 !important;
    min-width: 200px !important;
    height: 60px !important;
    border-radius: 10px !important;
    font-weight: bold !important;
    font-size: 1rem !important;
    border: none !important;
    color: white !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer !important;
    transition: all 0.3s !important;
}

/* KOCACIMIN İSTEDİĞİ KUSURSUZ SIRALAMA VE ÖZ ELMAS RENKLERİ */
.btn-alisverise-devam { background: #333333 !important; order: 1 !important; } /* En Solda */
.btn-sepeti-bosalt     { background: #e67e22 !important; order: 2 !important; } /* Soldan İkinci */
.btn-kredi-karti       { background: #c0392b !important; order: 3 !important; } /* Sağdan İkinci */
.btn-havale            { background: #1a5f3c !important; order: 4 !important; } /* En Sağda - Kurumsal Yeşil */

/* Butonların üzerine gelince parlasınlar */
.btn-havale:hover { background: #134d30 !important; }
.btn-kredi-karti:hover { background: #a33024 !important; }
.btn-sepeti-bosalt:hover { background: #d35400 !important; }
.btn-alisverise-devam:hover { background: #222222 !important; }

/* MÜŞTERİNİN SEÇTİĞİ SÖNÜK ÖLÇÜLERİ (200 mm vb.) PIRLANTA GİBİ OKUNAKLI YAPAN MUCİZE */
.product-options .option-item {
    font-size: 15px !important; /* Fontu büyüttük */
    font-weight: bold !important; /* Kalınlaştırdık */
    color: #ffffff !important;   /* Değerleri sönük gri yerine saf beyaz yaptık kocacım! */
    margin-bottom: 4px !important;
}
.product-options .option-item strong {
    color: #00b0ff !important;   /* Başlıklar (Çap vb.) yine o asil Öz Elmas mavisi */
    font-weight: 800 !important;
}