
Pirelli Cinturato Winter 2 215/50R18 92V
CINTURATO WINTER 2
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
Ek Özellikler
AB Ürün Etiketi
Yakıt
Islak Zemin
Gürültü
Pirelli Cinturato Winter 2 215/50R18 92V Kış Lastiği
:root {
--pirelli-yellow: #FFD700;
--pirelli-red: #CC0000;
--pirelli-black: #000000;
--pirelli-white: #FFFFFF;
--pirelli-light: #F8F8F8;
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
line-height: 1.6;
color: var(--pirelli-black);
background-color: #fffff;
}
.pirelli-container {
max-width: 1200px;
margin: 0 auto;
padding: 20px;
background-color: var(--pirelli-white);
box-shadow: 0 0 20px rgba(0,0,0,0.05);
}
.product-hero {
display: flex;
flex-direction: column;
align-items: center;
gap: 30px;
margin-bottom: 40px;
background: linear-gradient(135deg, var(--pirelli-light) 0%, var(--pirelli-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(--pirelli-black);
font-weight: 800;
}
.hero-content .brand {
color: var(--pirelli-red);
font-weight: 900;
}
.subtitle {
font-size: 1.2rem;
color: var(--pirelli-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(--pirelli-yellow);
}
.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(--pirelli-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(--pirelli-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(--pirelli-yellow);
}
.product-intro {
margin-bottom: 30px;
padding: 0 20px;
}
.intro-content {
max-width: 800px;
margin: 0 auto;
text-align: center;
font-size: 1.1rem;
line-height: 1.7;
}
.features-section {
margin-bottom: 40px;
}
.features-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 30px;
margin-top: 30px;
}
.feature-card {
background: var(--pirelli-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(--pirelli-yellow);
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(--pirelli-red);
font-size: 2.5rem;
margin-bottom: 15px;
}
.feature-card h3 {
font-size: 1.4rem;
margin-bottom: 15px;
color: var(--pirelli-black);
}
.highlight-badge {
display: inline-block;
background-color: var(--pirelli-yellow);
color: var(--pirelli-black);
padding: 5px 10px;
border-radius: 5px;
font-size: 0.9rem;
margin: 15px 0;
font-weight: 600;
}
.tech-section {
background-color: var(--pirelli-light);
padding: 30px;
border-radius: 15px;
margin-bottom: 30px;
}
.tech-features {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 30px;
margin-top: 30px;
}
.tech-card {
background: var(--pirelli-white);
border-radius: 10px;
overflow: hidden;
box-shadow: 0 5px 15px rgba(0,0,0,0.05);
transition: all 0.3s ease;
border: 1px solid #ddd;
}
.tech-card:hover {
transform: translateY(-5px);
box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}
.tech-image {
text-align: center;
padding: 20px;
background: var(--pirelli-white);
}
.tech-image img {
max-width: 100%;
height: auto;
border-radius: 8px;
}
.tech-content {
padding: 20px;
}
.tech-content h4 {
color: var(--pirelli-black);
font-size: 1.3rem;
margin-bottom: 15px;
display: flex;
align-items: center;
}
.tech-content h4 i {
margin-right: 10px;
color: var(--pirelli-red);
}
.performance-section {
margin-bottom: 40px;
}
.performance-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: 20px;
margin-top: 30px;
}
.performance-item {
background: var(--pirelli-white);
border-radius: 10px;
padding: 20px;
text-align: center;
box-shadow: 0 5px 15px rgba(0,0,0,0.05);
border-top: 4px solid var(--pirelli-yellow);
}
.performance-value {
font-size: 1.8rem;
font-weight: 700;
color: var(--pirelli-red);
margin: 10px 0;
}
.certification-section {
background-color: var(--pirelli-red);
color: var(--pirelli-white);
padding: 40px 20px;
border-radius: 15px;
margin: 40px 0;
text-align: center;
}
.certification-content {
max-width: 800px;
margin: 0 auto;
}
.certification-icon {
font-size: 2.5rem;
color: var(--pirelli-yellow);
margin-bottom: 15px;
}
.cta-section {
text-align: center;
padding: 40px 20px;
background: linear-gradient(135deg, var(--pirelli-red) 0%, var(--pirelli-black) 100%);
color: var(--pirelli-white);
border-radius: 15px;
margin-top: 40px;
}
.cta-section h2 {
margin-bottom: 15px;
font-size: 1.8rem;
}
.cta-section h2 i {
margin-right: 10px;
color: var(--pirelli-yellow);
}
.cta-section p {
margin-bottom: 20px;
font-size: 1.1rem;
opacity: 0.9;
}
.cta-wrapper {
display: flex;
justify-content: center;
gap: 15px;
flex-wrap: wrap;
}
.cta-button {
display: inline-flex;
align-items: center;
gap: 8px;
background-color: var(--pirelli-yellow);
color: var(--pirelli-black);
padding: 12px 25px;
border-radius: 50px;
text-decoration: none;
font-weight: 600;
transition: all 0.3s ease;
border: 2px solid var(--pirelli-yellow);
}
.cta-button i {
font-size: 0.9rem;
}
.cta-button:hover {
background-color: transparent;
color: var(--pirelli-yellow);
transform: translateY(-2px);
}
.cta-button.secondary {
background-color: transparent;
border: 2px solid var(--pirelli-white);
color: var(--pirelli-white);
}
.cta-button.secondary:hover {
background-color: rgba(255,255,255,0.1);
}
@media (min-width: 768px) {
.product-hero {
flex-direction: row;
text-align: left;
padding: 40px;
}
.hero-content {
flex: 1;
text-align: left;
}
.hero-image {
flex: 1;
}
.section-title {
font-size: 2rem;
}
}
@media (min-width: 992px) {
.hero-content h1 {
font-size: 2.5rem;
}
.subtitle {
font-size: 1.3rem;
}
}
@media (max-width: 480px) {
.hero-content h1 {
font-size: 1.8rem;
}
.subtitle {
font-size: 1rem;
}
.cta-button {
padding: 10px 20px;
font-size: 0.9rem;
}
.section-title {
font-size: 1.5rem;
}
.features-grid {
grid-template-columns: 1fr;
}
.tech-features {
grid-template-columns: 1fr;
}
.performance-grid {
grid-template-columns: 1fr 1fr;
}
}
Pirelli Cinturato Winter 2
Kış Koşullarında Konfor ve Güvenlik
Kış Lastiği
Binek Araçlar
TÜV Onaylı
Öne Çıkan Özellikler
Pirelli Cinturato Winter 2, modern otomobil ve CUV araçlara uygun olacak şekilde optimize edilmiştir. Tamamen yenilenmiş Cinturato serisinin en son ürünüdür (2022). Yeni bileşiği sayesinde hem kilometre ömrünü uzatır hem de üst seviye kar ve ıslak zemin performansı sağlar.
Öne Çıkan Özellikler
Üstün Kar Performansı
7°C altında kuru, ıslak ve karlı zeminlerde yüksek yol tutuş ve fren performansı
Sessiz ve Konforlu
Önceki modele göre önemli ölçüde azaltılmış gürültü seviyesi
Uzun Ömürlü
Yeni bileşik teknolojisi ile daha uzun lastik ömrü ve dayanıklılık
Teknolojik Yenilikler
Şekil Değiştiren Kılcallar
3D kılcallar, özel adaptif teknoloji sayesinde lastik ömrü boyunca kar üzerinde uzun süreli performans sunar. Aşındıklarında zikzak şeklini alarak karı depolama ve yüksek yol tutuşu sağlama kabiliyetlerini sürdürürler.
4D Kılcallar
Karlı zeminlerde manevra kabiliyetini yükselten özel tasarım. Tüm kış koşullarında fren performansını artırır.
Geliştirilmiş Oluk Tasarımı
Omuz bölgesine doğru genişleyen oluk tasarımı, manevra kabiliyetini artırırken suda kızaklama riskine karşı daha fazla güvenlik sağlar.
Gelişmiş Drenaj Sistemi
Lastik kanallarının özel tasarımı, suyu tahliye etmek için ikinci bir katman oluşturur. Suda kızaklama riskine karşı güvenliği artırır.
Performans İyileştirmeleri
Karlı Zeminde Fren
+%15
Önceki modele göre daha iyi fren performansı
Islak Zemin
+%12
Yağmurlu havalarda daha güvenli yol tutuş
Gürültü Azalması
-20%
Daha sessiz ve konforlu sürüş deneyimi
Lastik Ömrü
+%18
Daha uzun kullanım ömrü
TÜV Sertifikalı Güvenlik
Pirelli Cinturato Winter 2 lastiklerin kış koşullarında emniyet sağladığı bağımsız TÜV sertifikası ile onaylanmıştır. Karlı, buzlu ve ıslak zeminlerde üstün performans.
Kışın Güvenle Yol Alın!
Pirelli Cinturato Winter 2 ile her kış koşulunda güvenli ve konforlu sürüş
Hemen Satın Al Teknik Detaylar
Related Products

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 ₺
