انتقل إلى المحتوى

سلتي

Volkswagen Vagcom VCDS Gizli Özellik Açma Cihazı / Güncellenebilir Versiyon

لا توجد تقييمات بعد
| رمز المنتج: OTO0127 | |
WhatsApp Facebook

VagCom gizli özellik açma cihazı, Volkswagen Grubu araçlarındaki fabrika kısıtlamalı özellikleri aktifleştirmek için tasarlanmıştır. Gizli menülere erişim sağlayarak aracınızı kişiselleştirebilirsiniz.

Kodlama
Gizli Özellikler

Uyumluluk
VAG Grubu

v24.7
Güncel

4.716,90 ₺ 7.447,90 ₺
متوفر
يحتوي هذا المنتج على خصم %37.
2.731,00 ₺ توفير
اسألنا عبر واتساب احصل على رد سريع ومعلومات السعر والمخزون
هل لديك سؤال حول هذا المنتج؟ اسأل سؤالك وسنجيب في أقرب وقت ممكن.
رضا العملاء أنتم أولويتنا
دفع آمن 3D Secure / SSL
شحن في نفس اليوم توصيل سريع
دعم 24/7 دائماً بجانبكم
/* @import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@200;300;400;500;600;700;800&display=swap'); _/ /_ Removed @import for fonts */
:root {
--primary-blue: #0a4da8;
--secondary-blue: #1a73e8;
--tertiary-blue: #4c8bf5;
--light-blue: #e8f0fe;
--superlight-blue: #f6f9ff;
--gray-100: #f8f9fa;
--gray-200: #e9ecef;
--gray-300: #dee2e6;
--gray-400: #ced4da;
--gray-500: #adb5bd;
--gray-600: #6c757d;
--gray-700: #495057;
--gray-800: #343a40;
--gray-900: #212529;
--black: #000;
--white: #fff;
--shadow-sm: 0 2px 4px rgba(0, 30, 80, 0.05);
--shadow-md: 0 4px 8px rgba(0, 30, 80, 0.1);
--shadow-lg: 0 10px 25px rgba(0, 30, 80, 0.15);
--shadow-xl: 0 20px 50px rgba(0, 30, 80, 0.2);
--radius-sm: 4px;
--radius-md: 8px;
--radius-lg: 16px;
--radius-xl: 24px;
--radius-xxl: 32px;
--spacing-xs: 4px;
--spacing-sm: 8px;
--spacing-md: 16px;
--spacing-lg: 24px;
--spacing-xl: 32px;
--spacing-xxl: 48px;
--spacing-xxxl: 64px;
--main-content-max-width: 1400px;
--header-height: 80px;
--section-padding: 80px;
--animation-duration: 0.3s;
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Montserrat', sans-serif;
}
html {
scroll-behavior: smooth;
overflow-x: hidden;
}
body {
background-color: var(--white);
color: var(--gray-800);
overflow-x: hidden;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
img {
max-width: 100%;
display: block;
}
a {
text-decoration: none;
color: inherit;
transition: color var(--animation-duration) ease;
}
/* Hero Section */
.hero-section {
min-height: 100vh;
display: flex;
position: relative;
padding-top: var(--header-height);
overflow: hidden;
}
.hero-bg {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: var(--superlight-blue);
z-index: -1;
}
.hero-bg::before {
content: "";
position: absolute;
bottom: 0;
left: 0;
width: 100%;
height: 100%;
background-image: linear-gradient(to top, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0));
}
.hero-circle {
position: absolute;
border-radius: 50%;
opacity: 0.1;
background-color: var(--primary-blue);
}
.hero-circle:nth-child(1) {
width: 300px;
height: 300px;
top: 10%;
left: -150px;
}
.hero-circle:nth-child(2) {
width: 500px;
height: 500px;
top: 20%;
right: -250px;
}
.hero-circle:nth-child(3) {
width: 200px;
height: 200px;
bottom: 10%;
left: 20%;
}
.hero-inner {
max-width: var(--main-content-max-width);
margin: 0 auto;
width: 100%;
display: flex;
align-items: center;
padding: var(--spacing-lg) var(--spacing-xl) var(--spacing-xxxl); /* Reduced top padding */
}
.hero-content {
flex: 1;
position: relative;
z-index: 2;
}
.hero-tag {
display: inline-block;
padding: var(--spacing-xs) var(--spacing-md);
background-color: var(--primary-blue);
color: var(--white);
font-size: 12px;
font-weight: 600;
text-transform: uppercase;
letter-spacing: 1px;
border-radius: var(--radius-sm);
margin-bottom: var(--spacing-xl);
}
.hero-title {
font-size: 40px; /* Set to 40px as per user request */
font-weight: 700;
color: var(--primary-blue);
line-height: 1.2;
margin-bottom: var(--spacing-xl);
}
.hero-title span {
display: block;
font-weight: 300;
}
.hero-description {
font-size: 18px;
line-height: 1.7;
color: var(--gray-700);
margin-bottom: var(--spacing-xxl);
max-width: 600px;
}
.hero-features {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: var(--spacing-md);
margin-bottom: var(--spacing-xl);
}
.hero-feature {
display: flex;
align-items: center;
background-color: var(--white);
padding: var(--spacing-md);
border-radius: var(--radius-md);
box-shadow: var(--shadow-sm);
transition: transform var(--animation-duration) ease, box-shadow var(--animation-duration) ease;
}
.hero-feature:hover {
transform: translateY(-3px);
box-shadow: var(--shadow-md);
}
.feature-icon {
width: 40px;
height: 40px;
background-color: var(--light-blue);
color: var(--primary-blue);
border-radius: 50%;
display: flex;
justify-content: center;
align-items: center;
margin-right: var(--spacing-md);
flex-shrink: 0;
}
.feature-icon i {
font-size: 18px;
}
.feature-text {
font-size: 14px;
font-weight: 500;
color: var(--gray-800);
}
.hero-cta {
display: inline-block;
padding: 14px 35px;
background-color: var(--primary-blue);
color: var(--white);
font-size: 16px;
font-weight: 600;
border-radius: var(--radius-md);
transition: background-color var(--animation-duration) ease, transform var(--animation-duration) ease;
box-shadow: var(--shadow-md);
position: relative;
overflow: hidden;
}
.hero-cta::before {
content: "";
position: absolute;
top: 0;
left: -100%;
width: 100%;
height: 100%;
background: rgba(255, 255, 255, 0.2);
transform: skewX(-30deg);
transition: left 0.6s ease;
}
.hero-cta:hover {
background-color: var(--secondary-blue);
transform: translateY(-3px);
}
.hero-cta:hover::before {
left: 100%;
}
.hero-image {
flex: 1;
display: flex;
flex-direction: column; /* Align main image and thumbnails vertically */
justify-content: center;
align-items: center;
position: relative;
z-index: 2;
}
.main-image-container, #iframe-display-container {
margin-bottom: var(--spacing-md); /* Space between main image and thumbnails */
border: 1px solid var(--gray-300);
border-radius: var(--radius-lg); /* Increased border-radius */
overflow: hidden; /* Ensure image stays within rounded borders */
box-shadow: var(--shadow-md);
width: 100%;
max-width: 400px;
aspect-ratio: 1 / 1;
}
#iframe-display-container iframe {
width: 100%;
height: 100%;
border: none;
}
#mainProductImage {
width: 100%;
height: 100%;
object-fit: contain; /* Ensure the whole image is visible */
}
.thumbnail-container {
display: flex;
gap: var(--spacing-sm);
padding: var(--spacing-sm); /* Padding for the container's frame */
/* border: 2px solid var(--primary-blue); _/ /_ Border removed as per new design */
border-radius: var(--radius-lg); /* Rounded corners for the container */
transition: border-color var(--animation-duration) ease;
}
/* .thumbnail-container:hover {
border-color: var(--primary-blue);
} _/ /_ Removed hover effect for the container */
.thumbnail-img {
width: 80px;
height: 80px;
object-fit: cover;
background-color: var(--white);
border-radius: 15px; /* Set border-radius to 15px */
cursor: pointer;
transition: transform var(--animation-duration) ease, border-color var(--animation-duration) ease, box-shadow var(--animation-duration) ease;
border: 2px solid var(--gray-200); /* Light border for inactive thumbnails */
box-shadow: var(--shadow-sm);
}
/* .thumbnail-img:hover {
transform: scale(1.05);
border-color: var(--secondary-blue);
} _/ /_ Custom hover can be added if needed */
.thumbnail-img.active-thumbnail {
border: 2px solid var(--primary-blue); /* Prominent blue border for active thumbnail */
transform: scale(1.05);
box-shadow: var(--shadow-md);
}
.device-showcase {
width: 450px;
height: 450px;
position: relative;
}
.device-circle {
position: absolute;
width: 100%;
height: 100%;
border-radius: 50%;
background: linear-gradient(145deg, var(--gray-100), var(--gray-200));
box-shadow:
25px 25px 50px rgba(0, 30, 80, 0.05),
-25px -25px 50px rgba(255, 255, 255, 0.8);
display: flex;
justify-content: center;
align-items: center;
}
.device-container {
width: 250px;
height: 250px;
background-color: var(--white);
border-radius: var(--radius-md);
box-shadow: var(--shadow-lg);
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
position: relative;
overflow: hidden;
}
.device-container::before {
content: "";
position: absolute;
top: -50%;
left: -50%;
width: 200%;
height: 200%;
background: conic-gradient(transparent, rgba(0, 30, 80, 0.03), transparent);
animation: rotate 10s linear infinite;
}
@keyframes rotate {
0% { transform: rotate(0deg); }
100% { transform: rotate(360deg); }
}
.device-model {
font-size: 32px;
font-weight: 700;
color: var(--primary-blue);
margin-bottom: var(--spacing-md);
position: relative;
z-index: 1;
}
.device-label {
font-size: 14px;
color: var(--gray-600);
position: relative;
z-index: 1;
}
.ring {
position: absolute;
border: 1px dashed var(--gray-300);
border-radius: 50%;
animation: pulse 3s linear infinite;
}
@keyframes pulse {
0% { opacity: 0.3; transform: scale(0.95); }
50% { opacity: 0.6; transform: scale(1.05); }
100% { opacity: 0.3; transform: scale(0.95); }
}
.ring-1 {
width: calc(100% + 20px);
height: calc(100% + 20px);
animation-delay: 0s;
}
.ring-2 {
width: calc(100% + 60px);
height: calc(100% + 60px);
animation-delay: 0.5s;
}
.ring-3 {
width: calc(100% + 100px);
height: calc(100% + 100px);
animation-delay: 1s;
}
.floating-icons {
position: absolute;
width: 100%;
height: 100%;
top: 0;
left: 0;
}
.floating-icon {
position: absolute;
width: 30px;
height: 30px;
background-color: var(--white);
border-radius: 50%;
display: flex;
justify-content: center;
align-items: center;
box-shadow: var(--shadow-sm);
font-size: 14px;
color: var(--primary-blue);
z-index: 3;
animation: float 5s ease-in-out infinite;
}
@keyframes float {
0% { transform: translateY(0); }
50% { transform: translateY(-15px); }
100% { transform: translateY(0); }
}
.floating-icon:nth-child(1) {
top: 10%;
left: 10%;
animation-delay: 0s;
}
.floating-icon:nth-child(2) {
top: 20%;
right: 10%;
animation-delay: 1s;
}
.floating-icon:nth-child(3) {
bottom: 15%;
left: 15%;
animation-delay: 2s;
}
.floating-icon:nth-child(4) {
bottom: 10%;
right: 15%;
animation-delay: 3s;
}
.scroll-down {
position: absolute;
bottom: var(--spacing-xl);
left: 50%;
transform: translateX(-50%);
display: flex;
flex-direction: column;
align-items: center;
color: var(--gray-600);
font-size: 12px;
font-weight: 500;
letter-spacing: 1px;
animation: bounce 2s infinite;
}
@keyframes bounce {
0%, 20%, 50%, 80%, 100% { transform: translateY(0) translateX(-50%); }
40% { transform: translateY(-10px) translateX(-50%); }
60% { transform: translateY(-5px) translateX(-50%); }
}
.scroll-down i {
font-size: 20px;
margin-top: var(--spacing-xs);
}
/* Section Styles */
.section {
padding: var(--section-padding) 0;
}
.section-inner {
max-width: var(--main-content-max-width);
margin: 0 auto;
padding: 0 var(--spacing-xl);
}
.section-header {
text-align: center;
margin-bottom: var(--spacing-xxxl);
}
.section-subtitle {
font-size: 14px;
font-weight: 600;
color: var(--secondary-blue);
text-transform: uppercase;
letter-spacing: 2px;
margin-bottom: var(--spacing-md);
}
.section-title {
font-size: 36px;
font-weight: 700;
color: var(--primary-blue);
line-height: 1.3;
margin-bottom: var(--spacing-lg);
}
.section-description {
font-size: 18px;
line-height: 1.7;
color: var(--gray-600);
max-width: 800px;
margin: 0 auto;
}
/* Features Section */
.features-section {
background-color: var(--superlight-blue);
position: relative;
overflow: hidden;
}
.features-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 30px;
position: relative;
z-index: 2;
}
.feature-card {
background-color: var(--white);
border-radius: var(--radius-lg);
padding: var(--spacing-xl);
box-shadow: var(--shadow-md);
transition: transform var(--animation-duration) ease, box-shadow var(--animation-duration) ease;
min-height: 350px;
display: flex;
flex-direction: column;
align-items: center; /* Center icon, title, and description horizontally */
position: relative;
overflow: hidden;
}
.feature-card:hover {
transform: translateY(-10px);
box-shadow: var(--shadow-lg);
}
.feature-card-icon {
width: 60px;
height: 60px;
background-color: var(--light-blue);
color: var(--primary-blue);
border-radius: 50%;
display: flex;
justify-content: center;
align-items: center;
margin-bottom: var(--spacing-lg);
transition: background-color var(--animation-duration) ease, color var(--animation-duration) ease;
}
.feature-card:hover .feature-card-icon {
background-color: var(--primary-blue);
color: var(--white);
}
.feature-card-icon i {
font-size: 24px;
}
.feature-card-title {
font-size: 20px;
font-weight: 600;
color: var(--gray-800);
margin-bottom: var(--spacing-md);
text-align: center; /* Center card title text */
}
.feature-card-description {
font-size: 15px;
line-height: 1.6;
color: var(--gray-600);
flex: 1;
text-align: center; /* Center card description text */
}
.feature-card::after {
content: "";
position: absolute;
bottom: 0;
left: 0;
width: 100%;
height: 4px;
background: linear-gradient(to right, var(--primary-blue), var(--secondary-blue));
transform: scaleX(0);
transform-origin: left;
transition: transform var(--animation-duration) ease;
}
.feature-card:hover::after {
transform: scaleX(1);
}
.features-bg-shape {
position: absolute;
background-color: var(--primary-blue);
opacity: 0.02;
border-radius: 50%;
}
.features-bg-shape:nth-child(1) {
width: 500px;
height: 500px;
top: -250px;
left: -250px;
}
.features-bg-shape:nth-child(2) {
width: 400px;
height: 400px;
bottom: -200px;
right: -200px;
}
/* Specs Section */
.specs-section {
position: relative;
overflow: hidden;
}
.specs-container {
display: flex;
flex-wrap: wrap;
gap: var(--spacing-xxl);
position: relative;
z-index: 2;
}
.specs-content {
flex: 1;
min-width: 300px;
}
.specs-title {
font-size: 32px;
font-weight: 700;
color: var(--primary-blue);
margin-bottom: var(--spacing-xl);
position: relative;
padding-bottom: var(--spacing-md);
}
.specs-title::after {
content: "";
position: absolute;
bottom: 0;
left: 0;
width: 60px;
height: 3px;
background-color: var(--secondary-blue);
}
.specs-description {
font-size: 16px;
line-height: 1.7;
color: var(--gray-600);
margin-bottom: var(--spacing-xl);
}
.specs-list {
list-style: none;
}
.specs-item {
display: flex;
align-items: flex-start;
margin-bottom: var(--spacing-md);
}
.specs-item i {
color: var(--secondary-blue);
margin-right: var(--spacing-md);
margin-top: 3px;
}
.specs-item-content {
flex: 1;
}
.specs-item-title {
font-size: 16px;
font-weight: 600;
color: var(--gray-800);
margin-bottom: 5px;
}
.specs-item-description {
font-size: 14px;
color: var(--gray-600);
line-height: 1.5;
}
.specs-image-container {
flex: 1;
min-width: 300px;
position: relative;
}
.specs-image-container::before {
content: "";
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: var(--light-blue);
border-radius: var(--radius-xxl);
transform: rotate(-5deg);
}
.specs-image {
position: relative;
background-color: var(--white);
border-radius: var(--radius-lg);
box-shadow: var(--shadow-lg);
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
gap: 15px;
padding: 15px;
font-size: 36px;
font-weight: 700;
color: var(--primary-blue);
position: relative; /* Added for tag positioning */
}
.specs-image img {
max-width: 100%;
height: auto;
border-radius: var(--radius-md);
}
.specs-image-tag {
position: absolute;
top: 10px;
right: 10px;
background-color: rgba(0, 30, 80, 0.7);
color: var(--white);
padding: var(--spacing-sm) var(--spacing-md); /* Increased padding */
border-radius: var(--radius-sm);
font-size: 16px; /* Increased font size */
font-weight: 700; /* Increased font weight */
}
.specs-background-shape {
position: absolute;
background-color: var(--primary-blue);
opacity: 0.02;
border-radius: 50%;
}
.specs-background-shape:nth-child(1) {
width: 300px;
height: 300px;
top: 10%;
right: 5%;
}
.specs-background-shape:nth-child(2) {
width: 200px;
height: 200px;
bottom: 20%;
left: 10%;
}
/* New Hidden Features Section */
.hidden-features-section {
background-color: var(--superlight-blue);
position: relative;
overflow: hidden;
padding: var(--section-padding) 0;
}
.hidden-features-list {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 20px;
margin-top: var(--spacing-xl);
}
.hidden-feature-item {
background-color: var(--white);
border-radius: var(--radius-md);
padding: var(--spacing-md);
box-shadow: var(--shadow-sm);
transition: transform var(--animation-duration) ease, box-shadow var(--animation-duration) ease;
display: flex;
align-items: center;
}
.hidden-feature-item:hover {
transform: translateY(-3px);
box-shadow: var(--shadow-md);
background-color: var(--light-blue);
}
.hidden-feature-icon {
width: 32px;
height: 32px;
border-radius: 50%;
background-color: var(--light-blue);
color: var(--primary-blue);
display: flex;
justify-content: center;
align-items: center;
margin-right: var(--spacing-md);
flex-shrink: 0;
}
.hidden-feature-item:hover .hidden-feature-icon {
background-color: var(--white);
}
.hidden-feature-icon i {
font-size: 14px;
}
.hidden-feature-text {
font-size: 14px;
color: var(--gray-700);
line-height: 1.4;
}
.view-more-button {
display: block;
margin: var(--spacing-xxl) auto 0;
padding: 12px 30px;
background-color: var(--primary-blue);
color: var(--white);
border: none;
border-radius: var(--radius-md);
font-size: 16px;
font-weight: 600;
cursor: pointer;
transition: background-color var(--animation-duration) ease, transform var(--animation-duration) ease;
}
.view-more-button:hover {
background-color: var(--secondary-blue);
transform: translateY(-3px);
}
.hidden-features-collapsed .hidden-feature-item:nth-child(n+19) {
display: none;
}
/* Software Section - NEW DESIGN */
.software-section {
position: relative;
overflow: hidden;
padding: var(--section-padding) 0;
background: linear-gradient(135deg, var(--superlight-blue), white);
}
.software-container {
position: relative;
z-index: 2;
}
.software-header {
text-align: center;
margin-bottom: var(--spacing-xxxl);
}
.software-subtitle {
display: inline-block;
padding: 6px 16px;
background-color: rgba(0, 30, 80, 0.1);
color: var(--primary-blue);
font-size: 13px;
font-weight: 600;
text-transform: uppercase;
letter-spacing: 2px;
border-radius: 30px;
margin-bottom: var(--spacing-md);
}
.software-title {
font-size: 36px;
font-weight: 700;
color: var(--primary-blue);
line-height: 1.3;
margin-bottom: var(--spacing-xl);
}
.software-intro {
font-size: 18px;
line-height: 1.7;
color: var(--gray-700);
max-width: 800px;
margin: 0 auto var(--spacing-xxl);
}
.software-cards {
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: 40px;
margin-bottom: var(--spacing-xxl);
}
.software-card-wrapper {
flex: 1;
min-width: 280px;
max-width: 380px;
position: relative;
}
.software-card {
position: relative;
background-color: white;
border-radius: 20px;
box-shadow: 0 15px 35px rgba(0, 30, 80, 0.1);
padding: 70px 30px 30px;
transition: all 0.3s ease;
z-index: 1;
height: 100%;
}
.software-card:hover {
transform: translateY(-10px);
box-shadow: 0 20px 40px rgba(0, 30, 80, 0.15);
}
.software-icon {
position: absolute;
top: -30px;
left: 30px;
width: 80px;
height: 80px;
background: white;
border-radius: 20px;
display: flex;
justify-content: center;
align-items: center;
box-shadow: 0 10px 20px rgba(0, 30, 80, 0.1);
z-index: 2;
}
.software-icon i {
font-size: 36px;
background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
-webkit-background-clip: text;
background-clip: text;
-webkit-text-fill-color: transparent;
}
.software-tag {
position: absolute;
top: 20px;
right: 20px;
padding: 5px 12px;
background: rgba(0, 30, 80, 0.1);
color: var(--primary-blue);
font-size: 12px;
font-weight: 600;
border-radius: 30px;
}
.software-card-title {
font-size: 24px;
font-weight: 700;
color: var(--primary-blue);
margin-bottom: 15px;
}
.software-card-description {
font-size: 15px;
line-height: 1.7;
color: var(--gray-700);
margin-bottom: 25px;
}
.software-features {
margin-bottom: 20px;
}
.software-feature {
display: flex;
align-items: flex-start;
margin-bottom: 12px;
}
.software-feature i {
color: var(--primary-blue);
margin-right: 10px;
font-size: 14px;
margin-top: 4px;
flex-shrink: 0;
}
.software-feature-text {
font-size: 14px;
color: var(--gray-700);
}
.software-card-footer {
padding-top: 20px;
border-top: 1px solid var(--gray-200);
display: flex;
justify-content: space-between;
align-items: center;
}
.software-compatibility {
font-size: 13px;
color: var(--gray-600);
}
.software-year {
display: inline-block;
padding: 4px 10px;
background: var(--light-blue);
color: var(--primary-blue);
font-size: 13px;
font-weight: 500;
border-radius: 4px;
}
.software-note-wrapper {
position: relative;
margin-top: 80px;
padding: 0 20px;
display: flex; /* Center the note block */
justify-content: center; /* Center the note block */
}
.software-note {
background-color: white;
border-radius: 20px;
box-shadow: 0 15px 35px rgba(0, 30, 80, 0.08);
padding: 30px;
position: relative;
overflow: hidden;
z-index: 1;
}
.software-note::before {
content: "";
position: absolute;
top: 0;
left: 0;
width: 8px;
height: 100%;
background: linear-gradient(to bottom, var(--primary-blue), var(--secondary-blue));
z-index: 2;
}
.software-note-content {
display: flex;
flex-direction: column; /* Stack icon and text vertically */
align-items: center; /* Center items horizontally */
}
.software-note-icon {
width: 50px;
height: 50px;
background: var(--light-blue);
border-radius: 50%;
display: flex;
justify-content: center;
align-items: center;
margin-bottom: var(--spacing-lg); /* Space below icon */
flex-shrink: 0;
}
.software-note-icon i {
font-size: 24px;
color: var(--primary-blue);
}
.software-note-text {
flex: 1;
text-align: center; /* Center the text content */
}
.software-note-title {
font-size: 18px;
font-weight: 600;
color: var(--primary-blue);
margin-bottom: 10px;
}
.software-note-description {
font-size: 15px;
line-height: 1.7;
color: var(--gray-700);
}
.software-background-shape {
position: absolute;
border-radius: 50%;
background-color: var(--primary-blue);
opacity: 0.03;
z-index: 0;
}
.software-bg-shape1 {
width: 400px;
height: 400px;
top: -200px;
right: -200px;
}
.software-bg-shape2 {
width: 300px;
height: 300px;
bottom: -150px;
left: -150px;
}
/* Capabilities Section */
.capabilities-section {
position: relative;
overflow: hidden;
}
.capabilities-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: var(--spacing-lg);
position: relative;
z-index: 2;
}
.capability-item {
background-color: var(--white);
border-radius: var(--radius-md);
padding: var(--spacing-lg);
display: flex;
align-items: center;
box-shadow: var(--shadow-sm);
transition: transform var(--animation-duration) ease, box-shadow var(--animation-duration) ease;
}
.capability-item:hover {
transform: translateY(-3px);
box-shadow: var(--shadow-md);
}
.capability-icon {
width: 40px;
height: 40px;
background-color: var(--light-blue);
color: var(--primary-blue);
border-radius: 50%;
display: flex;
justify-content: center;
align-items: center;
margin-right: var(--spacing-md);
flex-shrink: 0;
}
.capability-icon i {
font-size: 16px;
}
.capability-text {
font-size: 14px;
font-weight: 500;
color: var(--gray-700);
}
.capabilities-background-shape {
position: absolute;
background-color: var(--primary-blue);
opacity: 0.02;
border-radius: 50%;
}
.capabilities-background-shape:nth-child(1) {
width: 400px;
height: 400px;
bottom: -200px;
left: -200px;
}
.capabilities-background-shape:nth-child(2) {
width: 300px;
height: 300px;
top: -150px;
right: -150px;
}
.capability-item-more {
grid-column: 1 / -1; /* Span all columns */
justify-content: center; /* Center its flex content (icon + text block) */
/* background-color: var(--superlight-blue); Optional: to make it stand out or blend */
/* box-shadow: none; _/ /_ Optional: remove shadow if it should not look like a card */
padding-top: var(--spacing-lg);
padding-bottom: var(--spacing-lg);
margin-top: var(--spacing-md); /* Add some space above it */
}
.capability-item-more .capability-icon {
width: 48px; /* Slightly larger icon container */
height: 48px;
}
.capability-item-more .capability-icon i {
font-size: 22px; /* Larger icon */
}
.capability-item-more .capability-text {
font-size: 18px; /* Larger text */
font-weight: 600; /* Bolder text */
color: var(--primary-blue); /* Make it more prominent */
}
/* FAQ Section - Redesigned */
.faq-section {
background-color: var(--white); /* Cleaner background */
padding: var(--section-padding) 0; /* Ensure consistent section padding */
}
.faq-container { /* Renamed from faq-grid and new styles */
max-width: 850px;
margin: 0 auto;
display: flex;
flex-direction: column;
gap: var(--spacing-lg); /* Space between FAQ items */
}
.faq-item {
background-color: var(--superlight-blue); /* Light background for the item */
border: 1px solid var(--gray-200); /* Subtle border */
border-radius: var(--radius-md); /* Consistent with other cards */
box-shadow: var(--shadow-sm);
transition: box-shadow var(--animation-duration) ease;
overflow: hidden; /* Crucial for max-height animation */
}
.faq-item:hover {
box-shadow: var(--shadow-md);
}
.faq-question {
font-size: 18px;
font-weight: 600;
color: var(--primary-blue);
padding: var(--spacing-lg);
cursor: pointer;
display: flex;
justify-content: space-between;
align-items: center;
transition: background-color var(--animation-duration) ease;
border-bottom: 1px solid transparent; /* For separation when open */
}
.faq-question span { /* To wrap the question text */
flex-grow: 1;
margin-right: var(--spacing-md);
}
.faq-icon { /* Class for the icon element */
font-size: 1rem; /* 16px */
color: var(--primary-blue);
transition: transform var(--animation-duration) ease;
flex-shrink: 0;
}
.faq-item.active .faq-question {
background-color: var(--light-blue);
border-bottom-color: var(--gray-300); /* Separator line when active */
}
.faq-item.active .faq-icon {
transform: rotate(180deg);
}
.faq-answer {
font-size: 16px;
line-height: 1.7;
color: var(--gray-700);
padding: 0 var(--spacing-lg); /* Horizontal padding */
max-height: 0;
overflow: hidden;
transition: max-height 0.35s ease-out, padding-top 0.35s ease-out, padding-bottom 0.35s ease-out;
}
.faq-item.active .faq-answer {
padding-top: var(--spacing-lg); /* Top padding when open */
padding-bottom: var(--spacing-lg); /* Bottom padding when open */
max-height: 600px; /* Sufficient height for content */
}
/* End of FAQ Section - Redesigned */
/* Contact Section */
.contact-section {
background-color: var(--white);
}
.contact-cards-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: var(--spacing-xl);
}
.contact-card {
background-color: var(--superlight-blue);
padding: var(--spacing-xl);
border-radius: var(--radius-lg);
box-shadow: var(--shadow-md);
text-align: center;
transition: transform var(--animation-duration) ease, box-shadow var(--animation-duration) ease;
}
.contact-card:hover {
transform: translateY(-5px);
box-shadow: var(--shadow-lg);
}
.contact-card-icon {
width: 60px;
height: 60px;
background-color: var(--light-blue);
color: var(--primary-blue);
border-radius: 50%;
display: flex;
justify-content: center;
align-items: center;
margin: 0 auto var(--spacing-lg);
font-size: 24px;
}
.contact-card-icon i.fab.fa-whatsapp { /* Specific styling for WhatsApp icon if needed */
font-size: 28px; /* Slightly larger for brand icon */
}
.contact-card-title {
font-size: 20px;
font-weight: 600;
color: var(--primary-blue);
margin-bottom: var(--spacing-sm);
}
.contact-card-detail {
font-size: 16px;
color: var(--gray-700);
line-height: 1.6;
}
.contact-card-detail a {
color: var(--secondary-blue);
font-weight: 500;
}
.contact-card-detail a:hover {
text-decoration: underline;
color: var(--primary-blue);
}
/* Note Section */
.note-section {
background-color: var(--light-blue);
padding: var(--spacing-xxxl) 0;
}
.note-container {
max-width: 900px;
margin: 0 auto;
text-align: center;
}
.note-icon {
width: 60px;
height: 60px;
background-color: var(--primary-blue);
color: var(--white);
font-size: 24px;
border-radius: 50%;
display: flex;
justify-content: center;
align-items: center;
margin: 0 auto var(--spacing-lg);
}
.note-title {
font-size: 24px;
font-weight: 600;
color: var(--primary-blue);
margin-bottom: var(--spacing-md);
}
.note-text {
font-size: 16px;
line-height: 1.7;
color: var(--gray-700);
}
/* Responsive Styles */
@media (max-width: 1200px) {
:root {
--section-padding: 60px;
}
.hero-title {
font-size: 48px;
}
.features-grid {
grid-template-columns: repeat(2, 1fr);
}
.software-cards {
justify-content: center;
}
.software-card-wrapper {
min-width: 45%;
}
.hidden-features-list {
grid-template-columns: repeat(2, 1fr);
}
}
@media (max-width: 992px) {
.hero-inner {
flex-direction: column;
}
.hero-content {
margin-bottom: var(--spacing-xxxl);
text-align: center;
}
.hero-description {
margin-left: auto;
margin-right: auto;
}
.hero-features {
justify-content: center;
}
.device-showcase {
width: 350px;
height: 350px;
}
.device-container {
width: 200px;
height: 200px;
}
.specs-container {
flex-direction: column;
}
.specs-image-container {
margin-top: var(--spacing-xxl);
}
.specs-image {
min-height: auto;
}
}
@media (max-width: 768px) {
:root {
--section-padding: 50px;
}
.hero-title {
font-size: 36px;
}
.hero-features {
grid-template-columns: 1fr;
}
.section-title {
font-size: 28px;
}
.features-grid,
.contact-cards-grid {
grid-template-columns: 1fr;
}
.capabilities-grid {
grid-template-columns: repeat(2, 1fr);
}
.software-card-wrapper {
min-width: 100%;
}
.hidden-features-list {
grid-template-columns: 1fr;
}
}
@media (max-width: 576px) {
:root {
--spacing-xl: 24px;
--spacing-xxl: 32px;
--spacing-xxxl: 48px;
--section-padding: 40px;
}
.hero-title {
font-size: 30px;
}
.hero-description {
font-size: 16px;
}
.capabilities-grid {
grid-template-columns: 1fr;
}
#mainProductImage { /* Smaller main image on mobile */
max-width: 300px;
max-height: 300px;
}
.thumbnail-img { /* Smaller thumbnails on mobile */
width: 60px;
height: 60px;
}
.device-showcase {
width: 280px;
height: 280px;
}
.device-container {
width: 160px;
height: 160px;
}
.device-model {
font-size: 24px;
}
.scroll-down {
display: none;
}
}

Profesyonel Gizli Özellik Açma Cihazı

Volkswagen Vagcom v24.7
Gizli Özellik Açma Cihazı

Vagcom v24.7, Ross-Tech firması tarafından geliştirilen VCDS yazılımı ile Volkswagen, Audi, Seat ve Skoda araçlarda gizli özellikleri açmanızı sağlayan profesyonel bir OBD2 cihazıdır. Güncellenebilir yazılım ve donanım desteği ile en yeni araç modellerini desteklemektedir.

VCDS Yazılım Uyumluluğu
Kısa ve Uzun Kodlama
Geniş Araç Desteği
HEX-V2 Fonksiyon Desteği

Vagcom v24.7 Cihazı Ana Görsel
360 Derece Görünüm
Vagcom Thumbnail 1
Vagcom Thumbnail 2
Vagcom Thumbnail 3
Vagcom Thumbnail 4
DETAYLAR İÇİN KAYDIRIN

TEMEL FONKSİYONLAR

Vagcom v24.7 Temel Yetenekleri

Vagcom v24.7 Gizli Özellik Açma Cihazı, Volkswagen Grubu araçlarda gizli özellik aktivasyonu ve kodlama işlemleri gerçekleştirmenizi sağlar. Avrupa Klon model olan bu cihaz en çok tercih edilen Vagcom modelidir.

Hata Kodları Okuma ve Silme

Tüm modüllerden (motor, şanzıman, ABS, hava yastığı vb.) hata kodlarını okuyabilir ve silebilirsiniz. Detaylı hata açıklamaları ile sorunları kolayca teşhis edebilirsiniz.

Uzun Kodlama (Long Coding)

HEX-V2 fonksiyon desteği ile en güncel araçlarda bile uzun kodlama yapabilirsiniz. Karmaşık modül özelliklerini aktifleştirme ve özelleştirme imkanı sunar.

Canlı Veri Görüntüleme

Araç sistemlerinden gelen verileri gerçek zamanlı olarak görüntüleyebilir, grafik formatında analiz edebilirsiniz. Performans ölçümü ve sorun giderme süreçlerinde kritik bilgiler sağlar.

Adaptasyon ve Kalibrasyon

Elektrikli direksiyon adaptasyonu, otomatik vites ayarı, gaz kelebeği adaptasyonu gibi önemli kalibrasyon işlemlerini güvenle gerçekleştirebilirsiniz.

Servis Sıfırlama

Yağ değişimi, bakım aralıkları, fren balataları gibi servis bildirimlerini sıfırlayabilirsiniz. Dizel partikül filtresi rejenerasyonu ve servis tarih sıfırlama işlemleri yapabilirsiniz.

Güncellenebilir Yazılım

Resmi web sitesinden indirebileceğiniz güncellemeler ile cihazınızı sürekli güncel tutabilirsiniz. Loader/Crack vb. başlatıcılara gerek duymadan internet açık kullanabilirsiniz.

Vagcom v24.7 Teknik Spesifikasyonları

Vagcom v24.7, Volkswagen Grubu araçlar için tasarlanmış, yüksek performanslı bir Gizli Özellik Açma Cihazıdır. OBD portu aracılığıyla elektronik kontrol ünitelerine (ECU) erişim sunar.

  • Bağlantı ve Uyumluluk

    USB arayüzü ile bilgisayara bağlantı sağlar. Windows 7, 8, 10 ve 11 işletim sistemleri ile uyumlu olup, 32-bit ve 64-bit sürümlerde sorunsuz çalışır.

  • İletişim Protokolleri

    KWP2000, ISO9141, ISO14230, UDS ve çeşitli CAN (Controller Area Network) protokollerini destekler. EOBD, OBDII ve VAG protokollerinde eksiksiz iletişim sağlar.

  • Yazılım Özellikleri

    VCDS v24.7 yazılımı ile tam uyumlu çalışır. İngilizce ve diğer dillerde arayüz desteği sunar. İleri seviye kodlama, adaptasyon ve temel ayar fonksiyonlarına sahiptir.

  • Fiziksel Özellikleri

    Kompakt tasarım, dayanıklı kablo yapısı ve LED gösterge sistemine sahiptir. 1.5 metre uzunluğunda yüksek kaliteli OBD kablosu ile esnek kullanım imkanı sunar.

Vagcom Teknik Özellikler 1
Vagcom Teknik Özellikler 2
v24.7

GİZLİ ÖZELLİKLER

Aktif Edilebilir Özellikler

Vagcom v24.7 ile araçlarınızda aktif edebileceğiniz çok sayıda gizli özellik bulunmaktadır. İşte bunlardan bazıları:

Sunroof ve camların otomatik kapanması (Uzun basım)
DWA onay sesi (Alarm hazırlığı olan araçlarda)
RCD510 araç temasını ve şeklini değiştirme
Otoban farı (140km/h üzerinde otomatik yanma)
TSC (Direksiyon Tork Telafisi) - Ani kalkışlarda savrulmayı engelleme
Sunroof ve camları kumandadan açıp kapatabilme
Gündüz farlarını MFA ekranında açıp kapatabilme
Optik Park Sensörünü (OPS) yol bilgisayarı ekranında görme
Kadran selamlama (Göstergelerin sona vurup geri gelmesi)
Amerikan park (Ön turuncu sinyallerin yüzdesel ayarlanarak yanık kalması)
Arka stoplar CC LED halka şeklinde yakma, yanış şiddetini artırma
Dönüşlerde veya sinyal verildiğinde dönüş yönüne göre sislerin yanması
Selektör yapıldığında sislerin yanıp sönmesi (Şimşek çakma etkisi)
Geri vitese atıldığında sağ aynanın aşağı inmesi
90 km üstünde ani fren yapıldığında stopların çakması
Rain Closing (Yağmur yağdığında camların otomatik kapanması)
Şerit değiştirirken sinyal sayısını 3'ten 5'e çıkarma
Navigasyon sisteminde arka tema değiştirme
Araç içi aydınlatmaların şiddetinin ayarlanması (Ayak altı aydınlatma)
Geri viteste karşıdan gelenleri uyarmak için ön sislerin yanması
Ani frenlerde araç durduğunda arka dörtlülerin çakması
DRL - Sis farları üzerinden gündüz sürüş farı
Arka cam ve yan ayna ısı sürelerini değiştirebilme
15 km/h hızı geçince kapıların otomatik kilitlenmesi
Fren şiddetini ayarlama (sert-orta-yumuşak)
DSR (Sürücü Direksiyon Yardımcısı) - Savrulmayı engelleme
Dijital hızı ve sinyalizasyonu teyp ekranında görme
El freni çekince gündüz farlarının sönmesi
Park sensörü ve geri görüş kamerası hız limitini değiştirme
Yüksek hızda camların otomatik kapanması (120-140 km/h)
Coming Home - Leaving Home özelliğini sis farları üzerinden kullanma
Ek yakıt gösterge özelliği (Kaç litre daha alınabileceğini gösterir)
Start&Stop sisteminin devre dış bırakılması
Performans kodlaması (ACT Modu)
Yağ sıcaklığının bilgi ekranında gösterilmesi
Emniyet kemeri ikaz sesini kapatma
Açılış logosu değiştirme
ve daha fazla özellik

Yazılım Platformu

VCDS Yazılım Özellikleri

Vagcom v24.7 Arıza Tespit Cihazı, VCDS (VAG-COM Diagnostic System) yazılımı ile çalışarak Volkswagen Grubu araçlar için kapsamlı teşhis ve programlama özellikleri sunar.

Temel İşlevler

Diagnostik İşlemleri

Kapsamlı arıza tespit ve temel servis işlemleri için gerekli tüm fonksiyonları içerir.

Otomatik araç tarama ve hata kodu okuma
Arıza kodlarını silme ve sıfırlama
Tüm araç modüllerine erişim
Gelişmiş

Kodlama ve Adaptasyon

ECU (Elektronik Kontrol Ünitesi) kodlama ve gelişmiş adaptasyon fonksiyonları sunar.

Uzun kodlama (Long Coding) desteği
Adaptasyon kanalları ile sistem ayarları
Konfor özelliklerini özelleştirme
Analiz

Veri Analiz Araçları

Canlı veri akışı görüntüleme ve analiz için gelişmiş araçlar sunar.

Gerçek zamanlı veri ölçüm blokları
Grafik gösterge ve veri kaydı
Gelişmiş sorun giderme araçları
Otomasyon

Otomatik VIN Tanıma

Cihaz, araca bağlandığında şasi numarasını (VIN) otomatik olarak tanır ve doğru araç protokolünü seçer.

Hızlı ve hatasız araç tespiti
Manuel araç seçimi ihtiyacını azaltır
Doğru teşhis için temel oluşturur

Yazılım Erişimi

Vagcom v24.7 yazılımına erişmek için, sipariş kodunuzu kullanarak sipariş sorgulama sayfamızdan güvenle indirebilirsiniz. Paketimiz, teşhis donanımı ve VCDS yazılımını içeren tam bir çözüm sunmaktadır.

CİHAZ KABİLİYETLERİ

Vagcom v24.7 ile Yapabileceğiniz İşlemler

Vagcom v24.7 Gizli Özellik Açma Cihazı, Volkswagen Grubu araçlarda çeşitli gizli özellik aktivasyonu, analiz ve kodlama işlemlerini profesyonel düzeyde gerçekleştirme imkanı sunar.

Konfor Sistemleri Kodlaması
VIN (Şasi No) ile Detaylı Araç Bilgisi
Arıza Kodu Okuma ve Silme (DTC)
Canlı Veri Akışı ve Grafik Analizi
Yağ Servisi ve Bakım Sıfırlama
DPF Rejenerasyon ve Servis İşlemleri
Anahtar Adaptasyonu ve İmmobilizer
Enjektör Kodlama ve Ayarları
Hava Yastığı (SRS) Arıza Sıfırlama
Klima ve Konfor Adaptasyonları
Multimedya ve Navigasyon Kodlaması
Far Adaptasyonu ve Coming Home
Ve Daha Birçok Gelişmiş Fonksiyon

Not: Desteklenen diagnostik fonksiyonları ve burada listelenmeyen diğer birçok özellik, aracınızın donanımına, markasına ve modeline göre değişiklik gösterebilir.

SIKÇA SORULAN SORULAR

Merak Edilenler

Vagcom v24.7 Gizli Özellik Açma Cihazı ve kullanımı hakkında sıkça sorulan sorular ve yanıtları.

Vagcom v24.7 hangi araçlarla uyumludur?

Vagcom v24.7, Volkswagen Grubu'nun eski ve yeni model birçok aracıyla (Volkswagen, Audi, Seat ve Skoda dahil) uyumludur. Hem eski tip KWP2000 protokolünü kullanan araçları hem de modern CAN-Bus sistemlerini destekler. Yeni nesil MQB ve MLB platformlarını kullanan araçlarda da tam işlevsellik sunar.

Vagcom cihazının garantisi var mı?

Evet, Vagcom v24.7 Arıza Tespit Cihazı, satın alma tarihinden itibaren fabrikasyon hatalara karşı 6 ay boyunca garantilidir. Ayrıca, yazılım güncellemeleri için teknik destek sağlanmaktadır. Yanlış kullanım, fiziksel hasar veya yetkisiz müdahale garanti kapsamı dışındadır.

Cihazı kullanmak için hangi bilgisayar gereksinimleri vardır?

Vagcom v24.7 kullanımı için en az Windows 7, 8, 10 veya 11 işletim sistemine sahip bir bilgisayar gereklidir. Bilgisayarınızda minimum 2GB RAM, 100MB boş disk alanı ve en az bir adet USB 2.0 portu bulunmalıdır. Yazılım hem 32-bit hem de 64-bit işletim sistemlerinde çalışabilir. En iyi performans için Windows 10 veya 11 tavsiye edilir.

Cihazı aldıktan sonra nasıl kullanmaya başlayabilirim?

Cihazınızla birlikte gelen VCDS yazılımını, sipariş durumu sorgulama sayfamıza sipariş kodunuzu girerek kolayca indirebilirsiniz. Kurulum veya kullanım sırasında herhangi bir sorunla karşılaşırsanız, 0850 532 0550 WhatsApp destek hattımız üzerinden teknik ekibimizle iletişime geçebilirsiniz.

Gizli özellikleri açarken aracıma zarar verir miyim?

Gizli özelliklerin açılması, doğru yapıldığında aracınıza zarar vermez. Ancak, özellikle güvenlik sistemleri veya motor kontrol üniteleriyle ilgili değişiklikler yaparken dikkatli olunması önemlidir. Kullanım kılavuzunda belirtilen talimatlara uymanız, kodlama yapmadan önce mevcut ayarları yedeklemeniz ve yetkili servis veya deneyimli biri eşliğinde işlem yapmanız tavsiye edilir. Bazı özellikler aracınızın donanımına bağlı olarak desteklenmeyebilir.

DESTEK

Destek ve İletişim

Ürünlerimizle ilgili her türlü soru, destek talebi veya işbirliği için bize ulaşabilirsiniz.

Telefon

0850 532 05 50

E-posta

info@otoeko.com

WhatsApp

WhatsApp Destek Hattı

Axess 12 تقسيط
دفعة واحدة 4.716,90 ₺ 4.716,90 ₺
2 تقسيط 2.477,32 ₺ 4.954,63 ₺
3 تقسيط 1.685,35 ₺ 5.056,05 ₺
4 تقسيط 1.290,19 ₺ 5.160,76 ₺
5 تقسيط 1.053,76 ₺ 5.268,78 ₺
6 تقسيط 896,84 ₺ 5.381,04 ₺
7 تقسيط 785,77 ₺ 5.500,38 ₺
8 تقسيط 702,41 ₺ 5.619,24 ₺
9 تقسيط 638,04 ₺ 5.742,35 ₺
10 تقسيط 587,16 ₺ 5.871,60 ₺
11 تقسيط 545,57 ₺ 6.001,31 ₺
12 تقسيط 511,31 ₺ 6.135,74 ₺
Bonus 12 تقسيط
دفعة واحدة 4.716,90 ₺ 4.716,90 ₺
2 تقسيط 2.477,32 ₺ 4.954,63 ₺
3 تقسيط 1.685,03 ₺ 5.055,10 ₺
4 تقسيط 1.289,72 ₺ 5.158,87 ₺
5 تقسيط 1.053,00 ₺ 5.265,00 ₺
6 تقسيط 896,05 ₺ 5.376,32 ₺
7 تقسيط 784,69 ₺ 5.492,83 ₺
8 تقسيط 701,34 ₺ 5.610,75 ₺
9 تقسيط 636,78 ₺ 5.731,03 ₺
10 تقسيط 585,84 ₺ 5.858,39 ₺
11 تقسيط 544,16 ₺ 5.985,75 ₺
12 تقسيط 509,78 ₺ 6.117,35 ₺
Paraf 12 تقسيط
دفعة واحدة 4.716,90 ₺ 4.716,90 ₺
2 تقسيط 2.459,16 ₺ 4.918,31 ₺
3 تقسيط 1.670,10 ₺ 5.010,29 ₺
4 تقسيط 1.275,80 ₺ 5.103,21 ₺
5 تقسيط 1.039,51 ₺ 5.197,55 ₺
6 تقسيط 882,06 ₺ 5.292,36 ₺
7 تقسيط 770,07 ₺ 5.390,47 ₺
8 تقسيط 685,96 ₺ 5.487,64 ₺
9 تقسيط 620,43 ₺ 5.583,87 ₺
10 تقسيط 568,43 ₺ 5.684,34 ₺
11 تقسيط 525,59 ₺ 5.781,50 ₺
12 تقسيط 489,97 ₺ 5.879,62 ₺
World 12 تقسيط
دفعة واحدة 4.716,90 ₺ 4.716,90 ₺
2 تقسيط 2.483,21 ₺ 4.966,42 ₺
3 تقسيط 1.713,49 ₺ 5.140,48 ₺
4 تقسيط 1.313,89 ₺ 5.255,57 ₺
5 تقسيط 1.074,32 ₺ 5.371,61 ₺
6 تقسيط 914,69 ₺ 5.488,11 ₺
7 تقسيط 801,13 ₺ 5.607,92 ₺
8 تقسيط 715,67 ₺ 5.725,37 ₺
9 تقسيط 649,15 ₺ 5.842,35 ₺
10 تقسيط 596,31 ₺ 5.963,10 ₺
11 تقسيط 552,69 ₺ 6.079,61 ₺
12 تقسيط 516,38 ₺ 6.196,59 ₺
Maximum 12 تقسيط
دفعة واحدة 4.716,90 ₺ 4.716,90 ₺
2 تقسيط 2.477,32 ₺ 4.954,63 ₺
3 تقسيط 1.685,35 ₺ 5.056,05 ₺
4 تقسيط 1.290,19 ₺ 5.160,76 ₺
5 تقسيط 1.053,76 ₺ 5.268,78 ₺
6 تقسيط 896,84 ₺ 5.381,04 ₺
7 تقسيط 785,77 ₺ 5.500,38 ₺
8 تقسيط 702,41 ₺ 5.619,24 ₺
9 تقسيط 638,04 ₺ 5.742,35 ₺
10 تقسيط 587,16 ₺ 5.871,60 ₺
11 تقسيط 545,57 ₺ 6.001,31 ₺
12 تقسيط 511,31 ₺ 6.135,74 ₺
BankKart 12 تقسيط
دفعة واحدة 4.716,90 ₺ 4.716,90 ₺
2 تقسيط 2.472,84 ₺ 4.945,67 ₺
3 تقسيط 1.681,89 ₺ 5.045,67 ₺
4 تقسيط 1.287,48 ₺ 5.149,91 ₺
5 تقسيط 1.051,30 ₺ 5.256,51 ₺
6 تقسيط 894,95 ₺ 5.369,72 ₺
7 تقسيط 783,41 ₺ 5.483,87 ₺
8 تقسيط 700,58 ₺ 5.604,62 ₺
9 تقسيط 635,79 ₺ 5.722,07 ₺
10 تقسيط 582,63 ₺ 5.826,31 ₺
11 تقسيط 542,19 ₺ 5.964,05 ₺
12 تقسيط 508,84 ₺ 6.106,03 ₺
CardFinans 12 تقسيط
دفعة واحدة 4.716,90 ₺ 4.716,90 ₺
2 تقسيط 2.477,32 ₺ 4.954,63 ₺
3 تقسيط 1.685,35 ₺ 5.056,05 ₺
4 تقسيط 1.290,19 ₺ 5.160,76 ₺
5 تقسيط 1.053,76 ₺ 5.268,78 ₺
6 تقسيط 896,84 ₺ 5.381,04 ₺
7 تقسيط 785,77 ₺ 5.500,38 ₺
8 تقسيط 702,41 ₺ 5.619,24 ₺
9 تقسيط 638,04 ₺ 5.742,35 ₺
10 تقسيط 587,16 ₺ 5.871,60 ₺
11 تقسيط 545,57 ₺ 6.001,31 ₺
12 تقسيط 511,31 ₺ 6.135,74 ₺
Kuveyt Türk 12 تقسيط
دفعة واحدة 4.716,90 ₺ 4.716,90 ₺
2 تقسيط 2.468,12 ₺ 4.936,24 ₺
3 تقسيط 1.676,23 ₺ 5.028,69 ₺
4 تقسيط 1.280,52 ₺ 5.122,08 ₺
5 تقسيط 1.043,38 ₺ 5.216,89 ₺
6 تقسيط 885,28 ₺ 5.311,70 ₺
7 تقسيط 772,83 ₺ 5.409,81 ₺
8 تقسيط 688,31 ₺ 5.506,51 ₺
9 تقسيط 622,58 ₺ 5.603,21 ₺
10 تقسيط 570,37 ₺ 5.703,68 ₺
11 تقسيط 527,39 ₺ 5.801,32 ₺
12 تقسيط 491,58 ₺ 5.898,96 ₺
اطلب قبل الساعة 4:00 مساءً، يُشحن في نفس اليوم!
الأسرع
1-2 أيام عمل
أعرق شركة شحن في تركيا. شبكة فروع واسعة في 81 مدينة مع تتبع لحظي.
200
اقتصادي
2-3 أيام عمل
واحدة من أكبر شبكات الشحن في تركيا مع أكثر من 5,500 فرع. توصيل سريع وبأسعار مناسبة.
175
شائع
2-3 أيام عمل
اختر الوقت المناسب لاستلام طلبك. بنية تقنية متطورة مع إشعارات فورية.
125
شحن في نفس اليوم الطلبات قبل 4 م أيام الأسبوع، 12 ظ السبت
مجاني فوق 30,000₺ بدون رسوم شحن للطلبات المحلية
67+ دولة عبر DHL، UPS، FedEx — 3-10 أيام عمل
استلام من المتجر أنطاليا مراد باشا مجاني
فريقنا المحترف يغلف كل منتج بعناية ويضمن وصوله بأمان إلى باب منزلك.

لم يتم طرح أي أسئلة حول هذا المنتج بعد.

كن أول من يسأل!

اطرح سؤالاً

لا توجد تقييمات بعد

هل جربت هذا المنتج؟ شارك تجربتك وساعد العملاء الآخرين في اتخاذ القرار الصحيح. سيتم نشر مراجعتك بعد الموافقة.

خصوصيتك محمية
يستغرق ثوانٍ فقط
ساعد المجتمع

اكتب مراجعة

تقييمك
حد أقصى 3 صور، 5 ميغابايت
رمز المنتج OTO0127
الباركود OTO0127
1/8
إشعار ملفات تعريف الارتباط

نستخدم ملفات تعريف الارتباط لتقديم أفضل تجربة تسوق لك. تساعدنا ملفات تعريف الارتباط على تذكر تفضيلاتك وتحسين خدماتنا. لمزيد من التفاصيل، راجع سياسة ملفات تعريف الارتباط