Skip to content

My Cart

Bmw inpa Gizli Özellik Açma Cihazı / E Serisi

No reviews yet
| SKU: OTO0016 | |

Enet arayüzü, BMW F serisi araçlar için profesyonel bir teşhis ve kodlama çözümüdür. E-Sys yazılımıyla tam uyumlu çalışarak, gizli özellikleri aktif etme ve modül programlama gibi işlemleri mümkün kılar.

E-SYS Yazılımı

E Serisi Uyumlu

Ethernet Bağlantısı

1.096,90 ₺ 1.462,90 ₺
In stock
This product has a 25% discount.
366,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'nizin Gizli Gücünü
Ortaya Çıkarın

INPA K+DCAN arayüzü ile E-Serisi aracınızın fabrika tarafından kısıtlanmış özelliklerini aktif edin. Dijital hız göstergesi, Amerikan park, hareket halinde video ve daha fazlasını kolayca kodlayarak aracınızı kişiselleştirin ve sürüş deneyiminizi zenginleştirin.


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

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ı...

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.

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.096,90 ₺ 1.096,90 ₺
2 Installment 576,09 ₺ 1.152,18 ₺
3 Installment 391,92 ₺ 1.175,77 ₺
4 Installment 300,03 ₺ 1.200,12 ₺
5 Installment 245,05 ₺ 1.225,24 ₺
6 Installment 208,56 ₺ 1.251,34 ₺
7 Installment 182,73 ₺ 1.279,10 ₺
8 Installment 163,34 ₺ 1.306,74 ₺
9 Installment 148,37 ₺ 1.335,37 ₺
10 Installment 136,54 ₺ 1.365,42 ₺
11 Installment 126,87 ₺ 1.395,59 ₺
12 Installment 118,90 ₺ 1.426,85 ₺
Bonus 12 Installment
Single Payment 1.096,90 ₺ 1.096,90 ₺
2 Installment 576,09 ₺ 1.152,18 ₺
3 Installment 391,85 ₺ 1.175,55 ₺
4 Installment 299,92 ₺ 1.199,68 ₺
5 Installment 244,87 ₺ 1.224,36 ₺
6 Installment 208,38 ₺ 1.250,25 ₺
7 Installment 182,48 ₺ 1.277,34 ₺
8 Installment 163,10 ₺ 1.304,76 ₺
9 Installment 148,08 ₺ 1.332,73 ₺
10 Installment 136,24 ₺ 1.362,35 ₺
11 Installment 126,54 ₺ 1.391,97 ₺
12 Installment 118,55 ₺ 1.422,57 ₺
Paraf 12 Installment
Single Payment 1.096,90 ₺ 1.096,90 ₺
2 Installment 571,87 ₺ 1.143,74 ₺
3 Installment 388,38 ₺ 1.165,13 ₺
4 Installment 296,69 ₺ 1.186,74 ₺
5 Installment 241,73 ₺ 1.208,67 ₺
6 Installment 205,12 ₺ 1.230,72 ₺
7 Installment 179,08 ₺ 1.253,54 ₺
8 Installment 159,52 ₺ 1.276,13 ₺
9 Installment 144,28 ₺ 1.298,51 ₺
10 Installment 132,19 ₺ 1.321,87 ₺
11 Installment 122,22 ₺ 1.344,47 ₺
12 Installment 113,94 ₺ 1.367,29 ₺
World 12 Installment
Single Payment 1.096,90 ₺ 1.096,90 ₺
2 Installment 577,47 ₺ 1.154,93 ₺
3 Installment 398,47 ₺ 1.195,40 ₺
4 Installment 305,54 ₺ 1.222,17 ₺
5 Installment 249,83 ₺ 1.249,15 ₺
6 Installment 212,71 ₺ 1.276,24 ₺
7 Installment 186,30 ₺ 1.304,10 ₺
8 Installment 166,43 ₺ 1.331,42 ₺
9 Installment 150,96 ₺ 1.358,62 ₺
10 Installment 138,67 ₺ 1.386,70 ₺
11 Installment 128,53 ₺ 1.413,79 ₺
12 Installment 120,08 ₺ 1.441,00 ₺
Maximum 12 Installment
Single Payment 1.096,90 ₺ 1.096,90 ₺
2 Installment 576,09 ₺ 1.152,18 ₺
3 Installment 391,92 ₺ 1.175,77 ₺
4 Installment 300,03 ₺ 1.200,12 ₺
5 Installment 245,05 ₺ 1.225,24 ₺
6 Installment 208,56 ₺ 1.251,34 ₺
7 Installment 182,73 ₺ 1.279,10 ₺
8 Installment 163,34 ₺ 1.306,74 ₺
9 Installment 148,37 ₺ 1.335,37 ₺
10 Installment 136,54 ₺ 1.365,42 ₺
11 Installment 126,87 ₺ 1.395,59 ₺
12 Installment 118,90 ₺ 1.426,85 ₺
BankKart 12 Installment
Single Payment 1.096,90 ₺ 1.096,90 ₺
2 Installment 575,05 ₺ 1.150,10 ₺
3 Installment 391,12 ₺ 1.173,35 ₺
4 Installment 299,40 ₺ 1.197,60 ₺
5 Installment 244,48 ₺ 1.222,39 ₺
6 Installment 208,12 ₺ 1.248,71 ₺
7 Installment 182,18 ₺ 1.275,26 ₺
8 Installment 162,92 ₺ 1.303,34 ₺
9 Installment 147,85 ₺ 1.330,65 ₺
10 Installment 135,49 ₺ 1.354,89 ₺
11 Installment 126,08 ₺ 1.386,92 ₺
12 Installment 118,33 ₺ 1.419,94 ₺
CardFinans 12 Installment
Single Payment 1.096,90 ₺ 1.096,90 ₺
2 Installment 576,09 ₺ 1.152,18 ₺
3 Installment 391,92 ₺ 1.175,77 ₺
4 Installment 300,03 ₺ 1.200,12 ₺
5 Installment 245,05 ₺ 1.225,24 ₺
6 Installment 208,56 ₺ 1.251,34 ₺
7 Installment 182,73 ₺ 1.279,10 ₺
8 Installment 163,34 ₺ 1.306,74 ₺
9 Installment 148,37 ₺ 1.335,37 ₺
10 Installment 136,54 ₺ 1.365,42 ₺
11 Installment 126,87 ₺ 1.395,59 ₺
12 Installment 118,90 ₺ 1.426,85 ₺
Kuveyt Türk 12 Installment
Single Payment 1.096,90 ₺ 1.096,90 ₺
2 Installment 573,96 ₺ 1.147,91 ₺
3 Installment 389,80 ₺ 1.169,41 ₺
4 Installment 297,78 ₺ 1.191,12 ₺
5 Installment 242,63 ₺ 1.213,17 ₺
6 Installment 205,87 ₺ 1.235,22 ₺
7 Installment 179,72 ₺ 1.258,03 ₺
8 Installment 160,07 ₺ 1.280,52 ₺
9 Installment 144,78 ₺ 1.303,01 ₺
10 Installment 132,64 ₺ 1.326,37 ₺
11 Installment 122,64 ₺ 1.349,08 ₺
12 Installment 114,32 ₺ 1.371,78 ₺
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 OTO0016
Barcode OTO0016
1/5
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