
Yokohama Geolandar CV G058 245/65R17 107H
GEOLANDAR CV G058
Stok: 1 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 Geolandar CV G058 245/65R17 107H 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: 305px;
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: 235px;
weight: 200px;
}
}
.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 Geolandar CV G058
Crossover SUV'lar için konfor ve güvenliğin mükemmel dengesi
Crossover SUV'lar
Islakta Zeminde Güvenli
Sessiz
M+S Uyumlu
Öne Çıkan Özellikler
Yokohama Geolandar CV G058 ile Tanışın
Crossover SUV'lar için özel olarak geliştirilmiş, her mevsim güvenli ve konforlu sürüş deneyimi sunan grand touring lastiği.
Uygulama Alanları
Crossover SUV'lar
Hafif arazi araçları
Şehir içi ve uzun yol kullanımı
Avantajlar
Islak zeminde güvenilir performans
Uzun lastik ömrü
Sessiz ve konforlu sürüş
Hafif karlı ve çamurlu yollarda kullanım
Özellikler
Gelişmiş bileşik teknolojisi
4'lü kombinasyon oluklu simetrik desen
Geniş ve düz temas yüzeyi
M+S (Çamur ve Kar) uyumlu
Teknolojik Yenilikler
Geolandar CV G058'in performansını sağlayan özel teknolojiler
Akıllı Diş Deseni
1) 4'lü kombinasyon olukları - Merkez ve omuz oluklarıyla daha iyi çekiş ve su tahliyesi
2) Simetrik desen - Daha iyi yol tutuş ve eşit aşınma
3) 2D/3D kombinasyon lamelleri - Çekiş ve lastik ömrünü artırır
4) 5 Farklı desen varyasyonu - Gürültüyü azaltan blok tasarımı
Geniş ve Düz Temas Yüzeyi
Yuvarlak omuz blokları sayesinde:
- Daha eşit aşınma
- Daha uzun lastik ömrü
- Artırılmış çekiş gücü
*Geniş temas yüzeyi daha stabil ve konforlu bir sürüş sağlar
Gelişmiş Bileşik Teknolojisi
1) Mikro Silica - Islak zeminde tutuşu artırır
2) Silica Dağıtıcı - Bileşiğin homojen dağılmasını sağlar
3) Islak performans için özel polimer karışımı
4) Karlı zeminler için optimize edilmiş polimer
Crossover ve SUV Aracınız İçin Harika Seçim!
Yokohama Geolandar CV G058 ile her mevsim güvenli ve konforlu sürüş keyfi
Hemen Satın Al
Ähnliche Produkte

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 ₺

