Skip to content

My Cart

Bmw inpa Arıza Tespit Cihazı / E Serisi

No reviews yet
| SKU: OTO0027 | |

Profesyonel Arıza Tespit Cihazı, tüm araç markalarıyla uyumlu, kapsamlı bir diagnostik çözümüdür. Arıza kodlarını okuyup silme, canlı verileri izleme ve servis fonksiyonlarını gerçekleştirme gibi özelliklerle donatılmıştır.

Geniş Araç Desteği

Arıza Kodu Okuma/Silme

Canlı Veri

1.117,90 ₺ 1.539,90 ₺
In stock
This product has a 27% discount.
422,00 ₺ savings
Ask Us on WhatsApp Get quick response, price & stock info
Have a question about this product? Ask your question and we'll answer as soon as possible.
Customer Satisfaction You Come First
Secure Payment 3D Secure / SSL
Same Day Shipping Fast Delivery
24/7 Support Always Here for You

 

/* BMW INPA K+DCAN - Optimize Edilmiş Tasarım */
:root {
--primary: #007bff; /* Mavi tonu */
--primary-dark: #0056b3;
--primary-light: #3395ff;
--accent: #28a745; /* Yeşil tonu */
--accent-light: #40c861;
--success: #28a745;
--light-bg: #f8f9fa;
--gradient-bg: linear-gradient(180deg, #ffffff 0%, #f1f3f5 100%);
--text-dark: #212529;
--text-light: #6c757d;
--border-color: #dee2e6;
--shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.05);
--shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.08);
--shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
--border-radius: 12px;
--border-radius-lg: 16px;
--transition: all 0.3s ease;
--font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
html {
scroll-behavior: smooth;
}
body, button, input, select, textarea {
font-family: var(--font-family);
}
.bmw-inpa-page {
font-family: var(--font-family);
color: var(--text-dark);
background: var(--light-bg);
overflow-x: hidden;
line-height: 1.6;
}
/* Ortak Animasyonlar */
@keyframes fadeInLeft {
from { opacity: 0; transform: translateX(-30px); }
to { opacity: 1; transform: translateX(0); }
}
@keyframes fadeInRight {
from { opacity: 0; transform: translateX(30px); }
to { opacity: 1; transform: translateX(0); }
}
@keyframes pulse {
0%, 100% { transform: scale(1); }
50% { transform: scale(1.05); }
}
/* Ortak Bileşenler */
.card-base, .feature-card, .details-feature, .capability-card, .software-card {
background: white;
border-radius: var(--border-radius);
border: 1px solid var(--border-color);
transition: var(--transition);
position: relative;
overflow: hidden;
}
.card-base:hover, .feature-card:hover, .details-feature:hover, .capability-card:hover,
.software-card:hover {
transform: translateY(-5px);
box-shadow: var(--shadow-lg);
}
.gradient-text {
background: linear-gradient(135deg, var(--primary), var(--primary-light));
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}
/* Hero Section */
.hero-section {
position: relative;
min-height: 100vh;
background: var(--gradient-bg);
display: flex;
align-items: center;
overflow: hidden;
padding: 4rem 0;
}
.bmw-inpa-page .hero-container {
max-width: 1400px;
margin: 0 auto;
padding: 0 2rem;
display: grid;
grid-template-columns: 1fr 1fr;
gap: 4rem;
align-items: center;
position: relative;
z-index: 10;
}
.bmw-inpa-page .hero-content {
animation: fadeInLeft 0.8s ease-out;
text-align: center;
}
.bmw-inpa-page .hero-badge {
display: inline-flex;
align-items: center;
gap: 0.5rem;
background: linear-gradient(135deg, var(--primary), var(--primary-light));
color: white;
padding: 0.5rem 1.2rem;
border-radius: 50px;
font-size: 0.875rem;
font-weight: 600;
margin-bottom: 1.5rem;
box-shadow: var(--shadow-md);
animation: pulse 2s ease-in-out infinite;
}
.bmw-inpa-page .hero-title {
font-size: clamp(2.2rem, 4.5vw, 3rem);
font-weight: 900;
line-height: 1.1;
margin-bottom: 1.5rem;
color: var(--text-dark);
letter-spacing: -0.02em;
}
.bmw-inpa-page .hero-description {
font-size: 1.1rem;
line-height: 1.7;
color: var(--text-light);
margin-bottom: 2rem;
font-weight: 400;
}
.bmw-inpa-page .hero-actions {
display: flex;
gap: 1rem;
flex-wrap: wrap;
justify-content: center;
}
.bmw-inpa-page .btn {
padding: 1rem 2rem;
border-radius: 12px;
font-weight: 600;
font-size: 1rem;
text-decoration: none;
display: inline-flex;
align-items: center;
gap: 0.5rem;
transition: all 0.3s ease;
cursor: pointer;
border: none;
}
.bmw-inpa-page .btn-primary {
background: linear-gradient(135deg, var(--primary), var(--primary-light));
color: white;
box-shadow: 0 4px 14px rgba(0, 123, 255, 0.25);
}
.bmw-inpa-page .btn-primary:hover {
transform: translateY(-2px);
box-shadow: 0 6px 20px rgba(0, 123, 255, 0.35);
}
.bmw-inpa-page .btn-whatsapp {
background: linear-gradient(135deg, #25d366, #128c7e);
color: white;
box-shadow: 0 4px 14px rgba(37, 211, 102, 0.25);
}
.bmw-inpa-page .btn-whatsapp:hover {
transform: translateY(-2px);
box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
}
.bmw-inpa-page .btn-secondary {
background: white;
color: var(--primary);
border: 2px solid var(--border-color);
box-shadow: var(--shadow-sm);
}
.bmw-inpa-page .btn-secondary:hover {
background: var(--light-bg);
border-color: var(--primary);
transform: translateY(-2px);
box-shadow: var(--shadow-md);
}
.bmw-inpa-page .trust-badges {
display: flex;
gap: 1.5rem;
align-items: center;
flex-wrap: wrap;
margin-top: 2rem;
justify-content: center;
}
.bmw-inpa-page .trust-badge {
display: flex;
align-items: center;
gap: 0.5rem;
font-size: 0.875rem;
color: var(--text-light);
font-weight: 500;
}
.bmw-inpa-page .trust-badge i {
color: var(--accent);
font-size: 1.1rem;
}
.bmw-inpa-page .hero-visual {
position: relative;
animation: fadeInRight 0.8s ease-out;
}
.bmw-inpa-page .product-showcase {
position: relative;
background: white;
border-radius: 24px;
padding: 1.5rem;
box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
border: 1px solid var(--border-color);
max-width: 500px;
margin: 0 auto;
}
.showcase-badge {
position: absolute;
top: 25px;
right: 25px;
background: linear-gradient(135deg, var(--accent), var(--accent-light));
color: white;
padding: 0.4rem 1rem;
border-radius: 50px;
font-size: 0.7rem;
font-weight: 700;
text-transform: uppercase;
letter-spacing: 0.05em;
box-shadow: var(--shadow-md);
z-index: 10;
display: none; /* Initially hidden */
}
#media-display {
position: relative;
width: 100%;
padding-top: 100%; /* 1:1 aspect ratio */
margin-bottom: 1rem;
border-radius: 16px;
overflow: hidden;
background: #fff;
}
#media-display iframe,
#media-display img {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
border: 0;
object-fit: cover;
}
.thumbnail-gallery {
display: grid;
grid-template-columns: repeat(5, 1fr);
gap: 0.75rem;
}
.thumbnail {
width: 100%;
padding-top: 100%;
position: relative;
border-radius: 10px;
overflow: hidden;
cursor: pointer;
border: 3px solid transparent;
transition: all 0.3s ease;
}
.thumbnail img, .thumbnail .icon-360 {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
object-fit: cover;
display: flex;
align-items: center;
justify-content: center;
font-size: 2rem;
color: var(--primary);
background-color: #e9f2ff;
}
.thumbnail:hover {
border-color: var(--primary-light);
}
.thumbnail.active {
border-color: var(--primary);
box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.2);
}
/* Details Section */
.details-section {
padding: 5rem 2rem;
background: #fff;
}
.details-section:nth-child(even) {
background: var(--light-bg);
}
.details-container {
max-width: 1200px;
margin: 0 auto;
}
.details-header {
text-align: center;
margin-bottom: 4rem;
}
.details-header h2 {
font-size: clamp(2rem, 4vw, 2.5rem);
font-weight: 900;
margin-bottom: 1.5rem;
color: var(--text-dark);
}
.details-header p {
font-size: 1.125rem;
color: var(--text-light);
max-width: 800px;
margin: 0 auto;
line-height: 1.7;
}
/* Capabilities Grid */
.capabilities-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 1.5rem;
}
.capability-card {
padding: 2rem;
text-align: center;
}
.capability-icon {
width: 60px;
height: 60px;
background: linear-gradient(135deg, var(--light-bg), #e9ecef);
border-radius: 12px;
display: flex;
align-items: center;
justify-content: center;
margin: 0 auto 1.5rem;
border: 2px solid var(--border-color);
}
.capability-icon i {
font-size: 1.5rem;
color: var(--primary);
}
.capability-card h3 {
font-size: 1.1rem;
font-weight: 600;
color: var(--text-dark);
}
/* Software Grid */
.software-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 2rem;
}
.software-card {
padding: 2rem;
text-align: center;
}
.software-icon {
width: 70px;
height: 70px;
background: linear-gradient(135deg, var(--light-bg), #e9ecef);
border-radius: 16px;
display: flex;
align-items: center;
justify-content: center;
margin: 0 auto 1.5rem;
border: 2px solid var(--border-color);
}
.software-icon i {
font-size: 2rem;
color: var(--primary);
}
.software-card h3 {
font-size: 1.3rem;
font-weight: 700;
margin-bottom: 1rem;
}
.software-card p {
font-size: 1rem;
color: var(--text-light);
}
/* Responsive Design */
@media (max-width: 1024px) {
.bmw-inpa-page .hero-container {
grid-template-columns: 1fr;
gap: 3rem;
padding: 2rem 1.5rem;
}
.bmw-inpa-page .hero-content {
text-align: center;
}
.bmw-inpa-page .hero-actions, .bmw-inpa-page .trust-badges {
justify-content: center;
}
}
@media (max-width: 768px) {
.bmw-inpa-page .hero-title { font-size: 2rem; }
.bmw-inpa-page .hero-description { font-size: 1rem; }
.bmw-inpa-page .hero-actions { flex-direction: column; width: 100%; }
.bmw-inpa-page .btn { width: 100%; justify-content: center; }
.details-section { padding: 3rem 1.5rem; }
.details-header h2 { font-size: 2rem; }
.details-header p { font-size: 1rem; }
.why-choose-item {
flex-direction: column;
align-items: center;
text-align: center;
}
.why-choose-icon {
margin: 0 auto 1rem;
}
}
/* Why Choose Section */
.why-choose-container {
display: grid;
grid-template-columns: 1fr 1.2fr;
gap: 4rem;
align-items: center;
}
.why-choose-content h3 {
font-size: 1.8rem;
font-weight: 700;
margin-bottom: 1.5rem;
color: var(--text-dark);
}
.why-choose-content p {
font-size: 1.1rem;
line-height: 1.8;
color: var(--text-light);
}
.why-choose-list {
list-style: none;
padding: 0;
margin: 0;
display: flex;
flex-direction: column;
gap: 2rem;
}
.why-choose-item {
display: flex;
align-items: flex-start;
gap: 1.5rem;
}
.why-choose-icon {
flex-shrink: 0;
width: 50px;
height: 50px;
background: linear-gradient(135deg, var(--primary-light), var(--primary));
color: white;
border-radius: 12px;
display: flex;
align-items: center;
justify-content: center;
font-size: 1.5rem;
box-shadow: var(--shadow-sm);
}
.why-choose-text h4 {
font-size: 1.1rem;
font-weight: 600;
margin-bottom: 0.5rem;
color: var(--text-dark);
}
.why-choose-text p {
font-size: 0.95rem;
color: var(--text-light);
line-height: 1.6;
margin: 0;
}
@media (max-width: 992px) {
.why-choose-container {
grid-template-columns: 1fr;
}
}
@media (max-width: 768px) {
.capabilities-grid,
.software-grid {
grid-template-columns: 1fr;
}
}
/* Proactive Hidden Features Section */
.proactive-features .capability-card {
transition: all 0.4s ease;
border-color: var(--border-color);
}
.proactive-features .capability-card:hover .capability-icon {
transform: scale(1.1);
}
.proactive-features .capability-card .capability-icon i {
transition: transform 0.3s ease, color 0.3s ease;
}
/* FAQ Section */
.faq-container {
max-width: 800px;
margin: 0 auto;
}
.faq-item {
background: white;
border-radius: 12px;
margin-bottom: 1rem;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
border: 1px solid var(--border-color);
overflow: hidden;
transition: all 0.3s ease;
}
.faq-question {
padding: 1.5rem;
cursor: pointer;
display: flex;
justify-content: space-between;
align-items: center;
transition: all 0.3s ease;
}
.faq-question:hover {
background: var(--light-bg);
}
.faq-question h3 {
font-size: 1.1rem;
font-weight: 600;
color: var(--text-dark);
margin: 0;
}
.faq-question i {
color: var(--primary);
transition: transform 0.3s ease;
}
.faq-item.active .faq-question i {
transform: rotate(180deg);
}
.faq-answer {
max-height: 0;
overflow: hidden;
transition: max-height 0.4s ease;
}
.faq-answer p {
padding: 0 1.5rem 1.5rem;
margin: 0;
font-size: 1rem;
line-height: 1.6;
color: var(--text-light);
}
/* Support Section */
.support-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 2rem;
}
.support-card {
padding: 2rem;
text-align: center;
}
.support-icon {
width: 70px;
height: 70px;
background: linear-gradient(135deg, var(--light-bg), #e9ecef);
border-radius: 16px;
display: flex;
align-items: center;
justify-content: center;
margin: 0 auto 1.5rem;
border: 2px solid var(--border-color);
}
.support-icon i {
font-size: 2rem;
color: var(--primary);
}
.support-card h3 {
font-size: 1.3rem;
font-weight: 700;
margin-bottom: 1rem;
}
.support-card p {
color: var(--text-light);
margin-bottom: 1.5rem;
}
.support-btn {
display: inline-flex;
align-items: center;
gap: 0.5rem;
background: linear-gradient(135deg, var(--primary), var(--primary-light));
color: white;
padding: 0.75rem 1.5rem;
border-radius: 10px;
text-decoration: none;
font-weight: 600;
transition: all 0.3s ease;
}
.support-btn:hover {
transform: translateY(-2px);
}
.contact-container {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 3rem;
align-items: center;
}
.contact-content h3 {
font-size: 1.8rem;
font-weight: 700;
margin-bottom: 1.5rem;
}
.contact-content p {
font-size: 1.1rem;
line-height: 1.8;
color: var(--text-light);
}
.contact-options {
display: flex;
flex-direction: column;
gap: 1.5rem;
}
.contact-option {
display: flex;
align-items: center;
gap: 1.5rem;
background: white;
padding: 1.5rem;
border-radius: 12px;
border: 1px solid var(--border-color);
transition: all 0.3s ease;
}
.contact-option:hover {
transform: translateY(-5px);
box-shadow: var(--shadow-md);
}
.contact-icon {
font-size: 2rem;
color: var(--primary);
}
.contact-text h4 {
font-size: 1.1rem;
font-weight: 600;
margin-bottom: 0.25rem;
}
.contact-text p {
margin: 0;
color: var(--text-light);
}
@media (max-width: 992px) {
.contact-container {
grid-template-columns: 1fr;
}
}


E Serisi Uzmanı

BMW INPA K+DCAN
Arıza Tespit Arayüzü

BMW E-Serisi araçlar için özel olarak geliştirilmiş INPA K+DCAN Profesyonel Teşhis Arayüzü ile tanışın. Bu arayüz, 1998-2013 model aralığındaki araçlarda mühendislik düzeyinde arıza tespiti, modül kodlama, adaptasyon ve programlama işlemleri gerçekleştirmenizi sağlar. Güvenilir FTDI çipseti ve dahili protokol anahtarı (K-Line/D-CAN) ile donatılmış olup, BMW'nin standart mühendislik yazılımlarıyla kusursuz bir entegrasyon sunar.


Hemen Satın Al


Detaylı Bilgi

6 Ay Garanti
Aynı Gün Kargo
Kalite Kontrollü Ürün

360° Görüntü

INPA Cihaz Görsel 1
INPA Cihaz Görsel 2
INPA Cihaz Görsel 3
INPA Cihaz Görsel 4

Neden INPA K+DCAN Tercih Edilmelidir?

E-Serisi için En Kapsamlı ve Güvenilir Çözüm

Piyasadaki genel amaçlı OBD2 cihazlarının aksine, INPA K+DCAN arayüzü, BMW'nin kendi mühendislik altyapısını kullanarak E-Serisi araçların elektronik sistemleriyle doğrudan iletişim kurar. Bu, size yalnızca arıza kodlarını okuyup silmekten çok daha fazlasını yapma imkanı tanır; aracınızın beyniyle (ECU) doğrudan konuşarak, fabrika ayarlarını değiştirme ve gizli özellikleri ortaya çıkarma gücü verir. Hem hobi amaçlı kullanıcılar hem de profesyonel servisler için tasarlanan bu arayüz, E-Serisi'nin tüm potansiyelini ortaya çıkarmak için en güvenilir ve maliyet-etkin yöntemdir.

  • Güvenilir Donanım ve Stabil Bağlantı

    Yüksek kaliteli FTDI çipseti ve sağlam yapısı, uzun kodlama veya programlama işlemleri sırasında veri kaybı riskini ortadan kaldırır ve kesintisiz, stabil bir bağlantı sunar. Bu, modüllerinize zarar verme riskini en aza indirir.

  • Maliyet-Etkin Profesyonel Çözüm

    Yetkili servislerde binlerce liraya mal olabilecek adaptasyon, kalibrasyon ve kişiselleştirme işlemlerini, bu arayüz sayesinde çok daha düşük bir maliyetle kendiniz yapabilirsiniz.

  • Geniş Topluluk ve Bilgi Desteği

    Dünya çapında milyonlarca kullanıcısı olan forumlar ve topluluklar sayesinde, yapabileceğiniz modifikasyonlar ve karşılaşabileceğiniz sorunların çözümleri hakkında neredeyse sınırsız bir bilgi havuzuna erişiminiz olur.

Aracınızın Gizli Potansiyelini Keşfedin

INPA K+DCAN arayüzü ve NCS-Expert yazılımı ile aracınızda fabrika tarafından kapatılmış birçok özelliği kolayca aktif hale getirebilirsiniz.

Dijital Hız Göstergesi

Hareket Halinde Video (CIC)

Otomatik Kapı Kilitleme

Amerikan Park Sinyalleri

Görsel ve Sesli Alarm Onayı

Tek Tuşla Ayna Katlama

Karşılama & Uğurlama Işıkları

Ve Daha Fazlası...

Arayüzün Teknik Yetenekleri

Kapsamlı Arıza Tespiti (DTC)

Gerçek Zamanlı Veri Analizi

Gelişmiş Adaptasyon & Sıfırlama

Modül Kodlama & Programlama

Akü Kaydı ve Yönetimi

Çift Protokol Desteği (K-Line/D-CAN)

Güvenilir FTDI FT232RL Çipset

Gizli Özellik Aktivasyonu

Profesyonel Yazılım Paketi

INPA K+DCAN arayüzü, BMW'nin standart mühendislik araçlarıyla tam uyumluluk gösterir. Paket, aşağıdaki profesyonel yazılımları içerir ve tüm Windows sürümlerinde çalışır. Gerekli yazılımlar, ürünle birlikte bir indirme bağlantısı aracılığıyla sağlanır.

INPA & EDIABAS

Motor, şanzıman ve diğer modüller için temel ve ileri düzey teşhis fonksiyonları sunar.

NCS-Expert & NCS Dummy

Araç siparişini (VO) düzenleme, modül kodlama ve gizli özelliklerin aktivasyonunu sağlar.

WinKFP

Kontrol üniteleri için yazılım güncelleme (firmware flashing) ve versiyon yükseltme işlemleri yapar.

Tool32 & Coding Tool

Mühendislik seviyesinde testler, komut dosyası çalıştırma ve derinlemesine sistem analizi imkanı tanır.

Sıkça Sorulan Sorular

INPA K+DCAN arayüzü hakkında merak ettiğiniz sorular ve yanıtları.

Bu arayüz hangi araçlarla uyumludur?

Bu arayüz, 1998-2013 yılları arasında üretilen BMW E serisi modellerin büyük çoğunluğu (E39, E46, E60, E87, E90 vb.) ve ilgili Mini modelleri (R50, R53, R56 vb.) ile uyumludur.

F serisi (F10, F30 vb.) araçlarda çalışır mı?

Hayır, F, G ve I serisi yeni nesil araçlar için bu arayüz uygun değildir. Bu modeller için ENET kablosu veya ICOM arayüzü gereklidir.

Yazılım kurulumu için destek sağlıyor musunuz?

Ürünle birlikte gelen yazılımın kurulumu için detaylı bir kılavuz sunuyoruz. Kurulum temel bilgisayar bilgisi gerektirir ve genellikle kullanıcılarımız tarafından kolayca tamamlanır.

Arayüzdeki switch ne işe yarıyor?

Switch, eski (K-Line) ve yeni (D-CAN) protokoller arasında geçiş yapmak için kullanılır. Bu sayede 2007 öncesi ve sonrası E serisi modellerle sorunsuz bağlantı sağlar.

Destek ve İletişim

Sorularınız mı var?

INPA K+DCAN arayüzü, yazılım paketi veya aracınızla uyumluluğu hakkında herhangi bir sorunuz varsa, uzman ekibimizle iletişime geçmekten çekinmeyin. Size yardımcı olmaktan memnuniyet duyarız.

 

WhatsApp Destek

Hızlı sorular ve sipariş için bize yazın.

 

Telefon Desteği

Detaylı bilgi için bizi arayın.

 

E-posta Desteği

Sorularınızı e-posta ile gönderin.

 

 

Axess 12 Installment
Single Payment 1.117,90 ₺ 1.117,90 ₺
2 Installment 587,12 ₺ 1.174,24 ₺
3 Installment 399,43 ₺ 1.198,28 ₺
4 Installment 305,77 ₺ 1.223,09 ₺
5 Installment 249,74 ₺ 1.248,69 ₺
6 Installment 212,55 ₺ 1.275,30 ₺
7 Installment 186,23 ₺ 1.303,58 ₺
8 Installment 166,47 ₺ 1.331,75 ₺
9 Installment 151,21 ₺ 1.360,93 ₺
10 Installment 139,16 ₺ 1.391,56 ₺
11 Installment 129,30 ₺ 1.422,30 ₺
12 Installment 121,18 ₺ 1.454,16 ₺
Bonus 12 Installment
Single Payment 1.117,90 ₺ 1.117,90 ₺
2 Installment 587,12 ₺ 1.174,24 ₺
3 Installment 399,35 ₺ 1.198,05 ₺
4 Installment 305,66 ₺ 1.222,65 ₺
5 Installment 249,56 ₺ 1.247,80 ₺
6 Installment 212,36 ₺ 1.274,18 ₺
7 Installment 185,97 ₺ 1.301,79 ₺
8 Installment 166,22 ₺ 1.329,74 ₺
9 Installment 150,92 ₺ 1.358,25 ₺
10 Installment 138,84 ₺ 1.388,43 ₺
11 Installment 128,97 ₺ 1.418,62 ₺
12 Installment 120,82 ₺ 1.449,80 ₺
Paraf 12 Installment
Single Payment 1.117,90 ₺ 1.117,90 ₺
2 Installment 582,82 ₺ 1.165,63 ₺
3 Installment 395,81 ₺ 1.187,43 ₺
4 Installment 302,37 ₺ 1.209,46 ₺
5 Installment 246,36 ₺ 1.231,81 ₺
6 Installment 209,05 ₺ 1.254,28 ₺
7 Installment 182,51 ₺ 1.277,54 ₺
8 Installment 162,57 ₺ 1.300,56 ₺
9 Installment 147,04 ₺ 1.323,37 ₺
10 Installment 134,72 ₺ 1.347,18 ₺
11 Installment 124,56 ₺ 1.370,21 ₺
12 Installment 116,12 ₺ 1.393,46 ₺
World 12 Installment
Single Payment 1.117,90 ₺ 1.117,90 ₺
2 Installment 588,52 ₺ 1.177,04 ₺
3 Installment 406,10 ₺ 1.218,29 ₺
4 Installment 311,39 ₺ 1.245,56 ₺
5 Installment 254,61 ₺ 1.273,06 ₺
6 Installment 216,78 ₺ 1.300,68 ₺
7 Installment 189,87 ₺ 1.329,07 ₺
8 Installment 169,61 ₺ 1.356,91 ₺
9 Installment 153,85 ₺ 1.384,63 ₺
10 Installment 141,33 ₺ 1.413,25 ₺
11 Installment 130,99 ₺ 1.440,86 ₺
12 Installment 122,38 ₺ 1.468,59 ₺
Maximum 12 Installment
Single Payment 1.117,90 ₺ 1.117,90 ₺
2 Installment 587,12 ₺ 1.174,24 ₺
3 Installment 399,43 ₺ 1.198,28 ₺
4 Installment 305,77 ₺ 1.223,09 ₺
5 Installment 249,74 ₺ 1.248,69 ₺
6 Installment 212,55 ₺ 1.275,30 ₺
7 Installment 186,23 ₺ 1.303,58 ₺
8 Installment 166,47 ₺ 1.331,75 ₺
9 Installment 151,21 ₺ 1.360,93 ₺
10 Installment 139,16 ₺ 1.391,56 ₺
11 Installment 129,30 ₺ 1.422,30 ₺
12 Installment 121,18 ₺ 1.454,16 ₺
BankKart 12 Installment
Single Payment 1.117,90 ₺ 1.117,90 ₺
2 Installment 586,06 ₺ 1.172,12 ₺
3 Installment 398,61 ₺ 1.195,82 ₺
4 Installment 305,13 ₺ 1.220,52 ₺
5 Installment 249,16 ₺ 1.245,79 ₺
6 Installment 212,10 ₺ 1.272,62 ₺
7 Installment 185,67 ₺ 1.299,67 ₺
8 Installment 166,04 ₺ 1.328,29 ₺
9 Installment 150,68 ₺ 1.356,12 ₺
10 Installment 138,08 ₺ 1.380,83 ₺
11 Installment 128,50 ₺ 1.413,47 ₺
12 Installment 120,59 ₺ 1.447,12 ₺
CardFinans 12 Installment
Single Payment 1.117,90 ₺ 1.117,90 ₺
2 Installment 587,12 ₺ 1.174,24 ₺
3 Installment 399,43 ₺ 1.198,28 ₺
4 Installment 305,77 ₺ 1.223,09 ₺
5 Installment 249,74 ₺ 1.248,69 ₺
6 Installment 212,55 ₺ 1.275,30 ₺
7 Installment 186,23 ₺ 1.303,58 ₺
8 Installment 166,47 ₺ 1.331,75 ₺
9 Installment 151,21 ₺ 1.360,93 ₺
10 Installment 139,16 ₺ 1.391,56 ₺
11 Installment 129,30 ₺ 1.422,30 ₺
12 Installment 121,18 ₺ 1.454,16 ₺
Kuveyt Türk 12 Installment
Single Payment 1.117,90 ₺ 1.117,90 ₺
2 Installment 584,94 ₺ 1.169,88 ₺
3 Installment 397,26 ₺ 1.191,79 ₺
4 Installment 303,48 ₺ 1.213,93 ₺
5 Installment 247,28 ₺ 1.236,40 ₺
6 Installment 209,81 ₺ 1.258,87 ₺
7 Installment 183,16 ₺ 1.282,12 ₺
8 Installment 163,13 ₺ 1.305,04 ₺
9 Installment 147,55 ₺ 1.327,95 ₺
10 Installment 135,18 ₺ 1.351,76 ₺
11 Installment 124,99 ₺ 1.374,91 ₺
12 Installment 116,50 ₺ 1.398,05 ₺
Order before 4:00 PM, ships the same day!
Fastest
1-2 business days
Turkey's most established carrier. Wide branch network across all 81 provinces with real-time tracking.
200
Economic
2-3 business days
One of Turkey's largest cargo networks with 5,500+ branches. Affordable and fast delivery.
175
Popular
2-3 business days
Choose your preferred time slot for delivery. Tech-driven infrastructure with instant notifications.
125
Same Day Shipping Orders placed before 4 PM weekdays, 12 PM Saturdays
Free Over 30,000₺ No shipping fee on domestic orders
67+ Countries Via DHL, UPS, FedEx — 3-10 business days
Store Pickup Antalya Muratpasa Free
Our professional team carefully packages every product and ensures safe delivery to your door.

No questions have been asked about this product yet.

Be the first to ask a question!

Ask a Question

No reviews yet

Have you tried this product? Share your experience and help other customers make the right choice. Your review will be published after approval.

Your privacy is protected
Takes just a few seconds
Help the community

Write a Review

Your Rating
Max 3 photos, 5MB
SKU OTO0027
Barcode OTO0027
1/6
Cookie Notice

We use cookies to provide you with the best shopping experience. Cookies help us remember your preferences and improve our services. For details, see our Cookie Policy