
🔔 Stoka Girince Haber Ver
Maxtrek Trek M7 225/55R18 98T M+S 3PMSF
TREK M7 98T MS 3PMSF
Bu birim için stokta yok — başka birim seçebilirsiniz
Seçenek
Ü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ü
Maxtrek Trek M7 225/55R18 98T M+S 3PMSF Kış Lastiği
:root {
--maxtrek-blue: #005BAA;
--maxtrek-orange: #FF6B00;
--maxtrek-white: #FFFFFF;
--maxtrek-gray: #F5F5F5;
--maxtrek-dark: #333333;
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Montserrat', 'Segoe UI', sans-serif;
}
@font-face {
font-family: 'Montserrat';
src: url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700&display=swap');
}
body {
background-color: var(--maxtrek-white);
color: var(--maxtrek-dark);
line-height: 1.6;
}
.container {
max-width: 1200px;
margin: 0 auto;
padding: 0 20px;
}
/* Hero Section */
.hero {
padding: 80px 0;
position: relative;
overflow: hidden;
background: linear-gradient(135deg, var(--maxtrek-gray) 0%, var(--maxtrek-white) 100%);
}
.hero-container {
display: flex;
align-items: center;
flex-wrap: wrap;
}
.hero-content {
flex: 1;
min-width: 300px;
padding-right: 40px;
}
.hero-image {
flex: 1;
min-width: 300px;
text-align: center;
}
.brand-logo {
width: 180px;
margin-bottom: 20px;
}
.highlight-badge {
background-color: var(--maxtrek-orange);
color: var(--maxtrek-white);
padding: 8px 20px;
border-radius: 50px;
font-weight: 700;
display: inline-block;
margin-bottom: 20px;
font-size: 1rem;
box-shadow: 0 3px 6px rgba(0,0,0,0.1);
}
.hero h1 {
font-size: 2.5rem;
color: var(--maxtrek-blue);
margin-bottom: 20px;
font-weight: 800;
line-height: 1.2;
}
.hero-subtitle {
font-size: 1.3rem;
color: var(--maxtrek-dark);
margin-bottom: 30px;
}
.hero-image img {
max-width: 100%;
height: auto;
border-radius: 10px;
box-shadow: 0 15px 30px rgba(0,0,0,0.1);
transition: transform 0.5s ease;
}
.hero-image:hover img {
transform: translateY(-10px);
}
/* Features Section */
.features-section {
padding: 80px 0;
background-color: var(--maxtrek-white);
}
.section-title {
text-align: center;
margin-bottom: 50px;
position: relative;
}
.section-title h2 {
font-size: 2.5rem;
color: var(--maxtrek-blue);
display: inline-block;
padding-bottom: 15px;
}
.section-title h2:after {
content: "";
position: absolute;
bottom: 0;
left: 50%;
transform: translateX(-50%);
width: 80px;
height: 4px;
background: var(--maxtrek-orange);
}
.features-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 30px;
}
.feature-card {
background-color: var(--maxtrek-gray);
border-radius: 10px;
padding: 30px;
box-shadow: 0 10px 20px rgba(0,0,0,0.05);
transition: all 0.3s ease;
border-top: 4px solid var(--maxtrek-orange);
}
.feature-card:hover {
transform: translateY(-10px);
box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}
.feature-icon {
font-size: 2.5rem;
color: var(--maxtrek-orange);
margin-bottom: 20px;
}
.feature-card h3 {
font-size: 1.5rem;
color: var(--maxtrek-blue);
margin-bottom: 15px;
}
/* Usage Areas Section */
.usage-section {
padding: 80px 0;
background-color: var(--maxtrek-gray);
}
.usage-container {
display: flex;
flex-wrap: wrap;
gap: 40px;
}
.usage-content {
flex: 1;
min-width: 300px;
}
.usage-image {
flex: 1;
min-width: 300px;
text-align: center;
}
.usage-image img {
max-width: 100%;
height: auto;
border-radius: 10px;
box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}
.usage-list {
margin-top: 30px;
}
.usage-item {
display: flex;
align-items: center;
margin-bottom: 15px;
}
.usage-icon {
font-size: 1.5rem;
color: var(--maxtrek-orange);
margin-right: 15px;
}
/* Performance Section */
.performance-section {
padding: 80px 0;
background-color: var(--maxtrek-white);
}
.performance-stats {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: 20px;
margin-top: 40px;
}
.stat-card {
background-color: var(--maxtrek-gray);
padding: 20px;
border-radius: 10px;
text-align: center;
box-shadow: 0 5px 15px rgba(0,0,0,0.05);
border-left: 4px solid var(--maxtrek-orange);
}
.stat-card h4 {
font-size: 2.5rem;
color: var(--maxtrek-orange);
margin-bottom: 10px;
}
/* Benefits Section */
.benefits-section {
padding: 80px 0;
background-color: var(--maxtrek-gray);
}
.benefits-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 30px;
margin-top: 40px;
}
.benefit-card {
background-color: var(--maxtrek-white);
border-radius: 10px;
padding: 30px;
box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}
.benefit-card h3 {
color: var(--maxtrek-blue);
margin-bottom: 15px;
font-size: 1.5rem;
}
/* CTA Section */
.cta-section {
padding: 80px 0;
background: linear-gradient(135deg, var(--maxtrek-blue) 0%, #004B8D 100%);
color: white;
text-align: center;
}
.cta-section h2 {
font-size: 2.5rem;
margin-bottom: 20px;
}
.cta-buttons {
display: flex;
justify-content: center;
gap: 20px;
margin-top: 30px;
flex-wrap: wrap;
}
.cta-button {
padding: 15px 30px;
border-radius: 50px;
font-weight: 600;
text-decoration: none;
transition: all 0.3s ease;
display: inline-flex;
align-items: center;
gap: 10px;
}
.cta-primary {
background-color: var(--maxtrek-orange);
color: var(--maxtrek-white);
}
.cta-primary:hover {
background-color: #E05E00;
transform: translateY(-3px);
box-shadow: 0 5px 15px rgba(255,107,0,0.3);
}
.cta-secondary {
background-color: transparent;
border: 2px solid white;
color: white;
}
.cta-secondary:hover {
background-color: rgba(255,255,255,0.1);
transform: translateY(-3px);
}
/* Responsive Adjustments */
@media (max-width: 768px) {
.hero-container {
flex-direction: column;
}
.hero-content {
padding-right: 0;
margin-bottom: 40px;
text-align: center;
}
.hero h1 {
font-size: 2rem;
}
.usage-container {
flex-direction: column;
}
.cta-buttons {
flex-direction: column;
align-items: center;
}
.cta-button {
width: 100%;
max-width: 300px;
justify-content: center;
}
}
/* Animations */
@keyframes pulse {
0% { transform: scale(1); }
50% { transform: scale(1.05); }
100% { transform: scale(1); }
}
.pulse {
animation: pulse 2s infinite;
}
Maxtrek Trek M7
Soğuk kış koşullarında güvenli sürüş için tasarlanmış, karlı ve buzlu yollarda üstün tutuş sağlayan kış lastiği
Kullanım Alanları
Maxtrek Trek M7 kış lastikleri, soğuk hava koşulları ve çeşitli yol tipleri için ideal çözüm sunar:
Binek otomobiller ve hafif ticari araçlar
Karlı ve buzlu yollar
Yağmurlu ve ıslak zeminler
7°C altındaki tüm soğuk hava koşulları
Neden Maxtrek M7 Kış Lastiği?
Üstün Karlı ve Buzlu Zemin Performansı
Özel yumuşak yüzey malzemesi ve desen tasarımı sayesinde karlı ve buzlu yollarda mükemmel frenleme ve çekiş sağlar.
Güvenli Kontrol
Soğuk havalarda bile yumuşak kalabilen özel yapısı, buzlu yollarda bile aracın kontrolünü kolaylaştırır.
Sessiz ve Konforlu Sürüş
Özel diş deseni ve yapısı ile yolda oluşan gürültüyü azaltarak daha sessiz ve konforlu bir sürüş deneyimi sunar.
Sürücülere Sağladığı Avantajlar
Karlı ve Buzlu Yollarda Güven
Özel diş deseni ve yumuşak yapısı sayesinde karlı ve buzlu yollarda kayma riskini azaltarak güvenli sürüş imkanı sunar.
Kısa Fren Mesafesi
Karlı ve buzlu yollarda daha kısa mesafede durmanızı sağlayarak olası kazaları önlemede yardımcı olur.
Soğuk Havada Esneklik
Soğuk havalarda bile yumuşak kalabilen özel yapısı, lastiğin yola daha iyi tutunmasını sağlar.
Maxtrek Trek M7 ile kış yolculuklarınız için en güvenilir lastik çözümünü keşfedin!
HEMEN SATIN AL DETAYLI BİLGİ
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 ₺
