
Yokohama Advan V61 235/60R18 103H
ADVAN V61
Stok: 2 adet · Hemen kargoda
Ücretsiz Kargo
100₺ üzeri siparişe
Güvenli Ödeme
256-bit SSL
Kolay İade
30 gün içinde
Hızlı Teslimat
Aynı gün kargo
24 ay garanti güvencesi
Yokohama Advan V61 235/60R18 103H Yaz Lastiği
:root {
--yokohama-red: #CC0000;
--yokohama-black: #000000;
--yokohama-white: #FFFFFF;
--yokohama-gray: #F5F5F5;
}
body {
font-family: 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
line-height: 1.6;
color: var(--yokohama-black);
background-color: var(--yokohama-white);
margin: 0;
padding: 0;
}
.product-container {
max-width: 1200px;
margin: 0 auto;
padding: 20px;
}
.product-hero {
display: flex;
flex-direction: column;
align-items: center;
gap: 30px;
margin-bottom: 40px;
background: linear-gradient(135deg, var(--yokohama-gray) 0%, var(--yokohama-white) 100%);
padding: 30px;
border-radius: 15px;
position: relative;
overflow: hidden;
border: 1px solid #ddd;
}
.hero-content {
text-align: center;
z-index: 2;
}
.hero-content h1 {
font-size: 2.2rem;
margin-bottom: 15px;
color: var(--yokohama-black);
font-weight: 800;
}
.hero-content .brand {
color: var(--yokohama-red);
font-weight: 900;
}
.subtitle {
font-size: 1.2rem;
color: var(--yokohama-red);
margin-bottom: 25px;
font-weight: 700;
}
.hero-image img {
border-radius: 10px;
box-shadow: 0 15px 30px rgba(0,0,0,0.1);
max-width: 100%;
transition: transform 0.5s ease;
border: 2px solid var(--yokohama-red);
}
.floating-img:hover {
transform: translateY(-5px);
}
.badge-container {
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: 15px;
margin: 20px 0;
}
.badge {
background-color: var(--yokohama-red);
color: white;
padding: 8px 15px;
border-radius: 20px;
font-size: 0.9rem;
font-weight: 600;
display: flex;
align-items: center;
gap: 8px;
}
.section-title {
text-align: center;
font-size: 1.8rem;
margin-bottom: 25px;
color: var(--yokohama-black);
position: relative;
padding-bottom: 8px;
}
.section-title:after {
content: "";
position: absolute;
bottom: 0;
left: 50%;
transform: translateX(-50%);
width: 60px;
height: 3px;
background: var(--yokohama-red);
}
.feature-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 20px;
margin-bottom: 40px;
}
.feature-card {
background: var(--yokohama-white);
border-radius: 10px;
padding: 25px;
box-shadow: 0 5px 15px rgba(0,0,0,0.05);
transition: all 0.3s ease;
border-top: 4px solid var(--yokohama-red);
text-align: center;
border: 1px solid #eee;
}
.feature-card:hover {
transform: translateY(-5px);
box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}
.feature-icon {
color: var(--yokohama-red);
font-size: 2rem;
margin-bottom: 15px;
}
.tech-specs {
background-color: var(--yokohama-gray);
padding: 30px;
border-radius: 15px;
margin-bottom: 30px;
}
.specs-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: 15px;
margin-top: 20px;
}
.spec-item {
background: var(--yokohama-white);
padding: 15px;
border-radius: 8px;
display: flex;
justify-content: space-between;
border: 1px solid #ddd;
}
.spec-label {
font-weight: 600;
color: var(--yokohama-red);
}
.tech-visuals {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 30px;
margin: 40px 0;
}
.tech-visual-card {
background: white;
border-radius: 10px;
overflow: hidden;
box-shadow: 0 5px 15px rgba(0,0,0,0.1);
transition: all 0.3s ease;
}
.tech-visual-card:hover {
transform: translateY(-5px);
box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}
.tech-visual-img {
width: 100%;
height: 200px;
object-fit: cover;
}
.tech-visual-content {
padding: 20px;
}
.tech-visual-content h3 {
color: var(--yokohama-red);
margin-top: 0;
}
.visual-cta {
display: inline-block;
background-color: var(--yokohama-red);
color: white;
padding: 8px 15px;
border-radius: 5px;
text-decoration: none;
font-weight: 600;
margin-top: 15px;
transition: all 0.3s ease;
}
.visual-cta:hover {
background-color: var(--yokohama-black);
}
@media (max-width: 768px) {
.tech-visuals {
grid-template-columns: 1fr;
}
.tech-visual-img {
height: 180px;
}
}
.cta-section {
text-align: center;
padding: 40px 20px;
background: linear-gradient(135deg, var(--yokohama-red) 0%, var(--yokohama-black) 100%);
color: var(--yokohama-white);
border-radius: 15px;
margin-top: 20px;
}
.cta-button {
display: inline-flex;
align-items: center;
gap: 8px;
background-color: var(--yokohama-white);
color: var(--yokohama-red);
padding: 12px 24px;
border-radius: 50px;
text-decoration: none;
font-weight: 600;
transition: all 0.3s ease;
border: 2px solid var(--yokohama-white);
margin-top: 15px;
}
.cta-button:hover {
background-color: transparent;
color: var(--yokohama-white);
transform: translateY(-2px);
}
Yokohama Advan V61
Premium SUV araçlar için yüksek performans
Toyota BZ4X
Islak Zeminde Güvenlik
Çevre Dostu
Sessiz Sürüş
Öne Çıkan Özellikler
Yokohama Advan V61 ile Tanışın
Toyota BZ4X ve Lexus LBX gibi premium SUV'larda fabrika donanımı olarak kullanılan, yapay zeka destekli geliştirilmiş yüksek performanslı lastik.
Fabrika Çıkışlı Kalite
Toyota BZ4X ve Lexus LBX gibi premium araçlarda orijinal ekipman olarak kullanılır
Teknolojiyi Keşfet
Islak Zeminde Güvenlik
Geniş oluklar ve optimize edilmiş lameller sayesinde suyu hızla tahliye eder
Teknolojiyi Keşfet
Çevre Dostu
Düşük yuvarlanma direnci sayesinde yakıt tasarrufu sağlar ve CO₂ emisyonunu azaltır
Teknolojiyi Keşfet
Teknolojik Yenilikler
Advan V61'in üstün performansını sağlayan özel teknolojiler
Islak Zeminde Üstün Performans
Geniş oluklar ve özel lameller sayesinde yağmurlu havalarda bile güvenli sürüş sağlar. Suyu hızla tahliye ederek kayma riskini azaltır.
Yapay Zeka Destekli Geliştirme
HAICoLab teknolojisi ile insan yaratıcılığı ve yapay zeka gücü birleştirilerek geliştirildi. Gerçek ve sanal veriler analiz edilerek optimize edildi.
Üstün Sürüş Konforu
Hassas mühendislik ürünü diş blokları sayesinde yol gürültüsü ve titreşimi azaltır. Lüks bir sürüş deneyimi sunar.
Yakıt Tasarrufu
Özel bileşik sayesinde düşük yuvarlanma direnci sağlar. Daha az yakıt tüketirken performanstan ödün vermez.
Orijinal Ekipman Standardı
Lexus LBX için özel olarak ayarlanmış diş yapısı, yanak tasarımı ve bileşiklerle premium sürüş deneyimi sunar.
Premium SUV Aracınız için Mükemmel Lastik!
Yokohama Advan V61 ile güvenli, konforlu ve çevre dostu bir sürüş deneyimi yaşayın
Hemen Satın Al
Benzer Ürünler

Pirelli SottoZero Serie 3 RFT * 225/50R18 95H
SOTTOZERO SERIE 3 RFT
12.270,49 ₺

Pirelli SottoZero Serie 3 RFT * 225/60R18 104H XL
SOTTOZERO SERIE 3 RFT 104H XL
12.589,65 ₺

Pirelli SottoZero Serie 3 * 225/60R18 104H XL
SOTTOZERO SERIE 3 104H XL
10.729,23 ₺

Pirelli SottoZero Serie 3 AO 225/50R18 99H XL
SOTTOZERO SERIE 3 AO 99H XL
10.944,36 ₺

Pirelli SottoZero Serie 3 MO 215/55R18 99V XL
SOTTOZERO SERIE 3 MO 99V XL
10.447,44 ₺

