/* İSMAİL OTOMOTİV - PLATINUM WHITE TEMA + GLOBAL PREMIUM (SİYAH ÇERÇEVE) */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&display=swap');

:root {
    /* --- RENK PALETİ --- */
    --ana-renk: #0f172a; /* Slate Black */
    --vurgu-renk: #D32F2F; /* Logondaki Kırmızı */
    --altin-renk: #c5a059; /* Satin Gold */
    --yazi-renk: #475569; /* Slate Gray */

    --arkaplan: #f8fafc; /* Ice White (Sayfa Zemini) */
    --kart-arkaplan: #ffffff;
    /* === İŞTE SİHRİN OLDUĞU YER: SİYAH İNCE ÇERÇEVE === */
    --cerceve: #000000;
    --border-light: #E2E8F0;
    --radius-xl: 16px;
    --radius-md: 10px;
    --golge-kart: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

body {
    font-family: 'Montserrat', sans-serif !important;
    background-color: var(--arkaplan) !important;
    color: var(--yazi-renk) !important;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

/* === GLOBAL KART VE ÇERÇEVE STİLLERİ (ADMİN PANELİ DAHİL HER YERDE) === */
.card {
    background: var(--kart-arkaplan) !important;
    border: 1px solid var(--cerceve) !important; /* İnce Siyah Çizgi */
    border-radius: var(--radius-xl) !important;
    box-shadow: var(--golge-kart) !important;
    overflow: hidden;
}

.card-header {
    background-color: var(--kart-arkaplan) !important;
    border-bottom: 1px solid var(--cerceve) !important; /* Başlık Altı Siyah Çizgi */
    padding: 1.2rem 1.5rem !important;
}

/* === FORM GİRİŞ ALANLARI === */
.form-control, .form-select, .form-floating > input {
    border-radius: var(--radius-md) !important;
    border: 1px solid var(--border-light) !important;
    background-color: #F8FAFC !important;
    color: var(--ana-renk) !important;
    transition: all 0.3s ease !important;
    box-shadow: none !important;
}

    .form-control:focus, .form-select:focus, .form-floating > input:focus {
        border-color: var(--vurgu-renk) !important;
        box-shadow: 0 0 0 0.25rem rgba(211, 47, 47, 0.15) !important;
        background-color: #FFFFFF !important;
    }

/* === GLOBAL BUTON STİLLERİ === */
.btn {
    border-radius: 100px !important; /* Yuvarlak Butonlar */
    font-weight: 700 !important;
    letter-spacing: 0.5px !important;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1) !important;
}

.btn-primary, .btn-danger {
    background-color: var(--vurgu-renk) !important;
    border-color: var(--vurgu-renk) !important;
    color: white !important;
}

    .btn-primary:hover, .btn-danger:hover {
        background-color: #b71c1c !important;
        border-color: #b71c1c !important;
        transform: translateY(-3px);
        box-shadow: 0 10px 20px -5px rgba(211, 47, 47, 0.4) !important;
    }

.btn-dark {
    background-color: var(--ana-renk) !important;
    border-color: var(--ana-renk) !important;
    color: white !important;
}

    .btn-dark:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 20px -5px rgba(15, 23, 42, 0.4) !important;
    }

.btn-success {
    background-color: #10B981 !important;
    border-color: #10B981 !important;
    color: white !important;
}

    .btn-success:hover {
        background-color: #059669 !important;
        transform: translateY(-3px);
        box-shadow: 0 10px 20px -5px rgba(16, 185, 129, 0.4) !important;
    }

.btn-warning {
    background-color: #F59E0B !important;
    border-color: #F59E0B !important;
    color: #fff !important;
}

    .btn-warning:hover {
        background-color: #D97706 !important;
        transform: translateY(-3px);
        box-shadow: 0 10px 20px -5px rgba(245, 158, 11, 0.4) !important;
    }

/* Tablolar (Admin Paneli İçin) */
.table thead th {
    background-color: #f1f5f9 !important;
    color: var(--ana-renk) !important;
    font-weight: 700;
    border-bottom: 2px solid var(--cerceve) !important; /* Siyah Çizgi */
}

/* =========================================================
   SENİN ÖZEL FİLTRE VE DİĞER CSS KODLARIN (DOKUNULMADI) 
   ========================================================= */
.filter-toggle-btn {
    position: fixed;
    top: 120px;
    left: 0;
    z-index: 1050;
    background: #ffffff;
    border: none;
    padding: 10px 14px;
    border-radius: 0 30px 30px 0;
    box-shadow: 0 6px 18px rgba(0,0,0,.18);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all .3s ease;
}

    .filter-toggle-btn:hover {
        background: #f8f9fa;
    }

.filter-canvas {
    width: 320px;
    box-shadow: 0 25px 60px rgba(0,0,0,.3);
}

.filter-link {
    display: block;
    padding: 8px 10px;
    margin-bottom: 4px;
    border-radius: 6px;
    text-decoration: none;
    color: #333;
    transition: all .2s;
}

    .filter-link:hover {
        background: #f1f3f5;
    }

    .filter-link.active {
        background: #e9ecef;
        font-weight: 600;
    }

.filter-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 10px;
    background: #f1f3f5;
    border-radius: 20px;
    font-size: 13px;
    text-decoration: none;
    color: #333;
    margin-right: 6px;
    margin-bottom: 6px;
}

/* Sahibinden benzeri sol filtre paneli */
.sb-filter {
    border: 1px solid var(--cerceve);
    border-radius: var(--radius-md);
    background: #fff;
    overflow: hidden;
    box-shadow: 0 1px 2px rgba(0,0,0,.04);
}

.sb-filter__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 12px;
    background: var(--vurgu-renk);
    color: #fff;
    border-bottom: 1px solid var(--cerceve);
}

.sb-filter__title {
    font-weight: 800;
    font-size: 12px;
    letter-spacing: .3px;
    display: flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
}

.sb-filter__icon {
    font-size: 14px;
}

.sb-filter__reset {
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-size: 12px;
    opacity: .95;
}

    .sb-filter__reset:hover {
        text-decoration: underline;
    }

.sb-filter__section {
    padding: 10px 12px;
    border-top: 1px solid var(--cerceve);
}

.sb-filter__section--tight {
    padding: 8px 12px;
}

.sb-filter__sectionTitle {
    font-weight: 800;
    font-size: 12px;
    color: var(--ana-renk);
    margin-bottom: 8px;
}

.sb-filter__search {
    margin-bottom: 8px;
}

.sb-filter__searchInput {
    width: 100%;
    border: 1px solid var(--border-light);
    border-radius: 8px;
    padding: 8px 10px;
    font-size: 13px;
    outline: none;
}

    .sb-filter__searchInput:focus {
        border-color: var(--vurgu-renk);
    }

.sb-filter__list {
    max-height: 180px;
    overflow: auto;
    padding-right: 4px;
}

    .sb-filter__list::-webkit-scrollbar {
        width: 8px;
    }

    .sb-filter__list::-webkit-scrollbar-thumb {
        background: #e6e6e6;
        border-radius: 10px;
    }

.sb-filter__item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 2px;
    font-size: 13px;
    color: #333;
    cursor: pointer;
}

    .sb-filter__item input {
        cursor: pointer;
    }

    .sb-filter__item:hover {
        background: #fafafa;
        border-radius: 6px;
    }

.sb-filter__stockOnly {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 13px;
    color: #333;
    cursor: pointer;
}

    .sb-filter__stockOnly input {
        cursor: pointer;
    }

.sb-filter__footer {
    padding: 10px 12px;
    border-top: 1px solid var(--cerceve);
    background: #fff;
}

.sb-filter__apply {
    width: 100%;
    border: none;
    border-radius: 100px;
    padding: 10px 12px;
    font-weight: 800;
    background: #2e7d32;
    color: #fff;
    transition: 0.3s;
}

    .sb-filter__apply:hover {
        filter: brightness(.95);
        transform: translateY(-2px);
    }
/* === TABLO SATIRLARINA (KATEGORİ/ÜRÜN LİSTESİ) ÜZERİNE GELİNCE KOYULAŞMA EFEKTİ === */
.table tbody tr {
    transition: background-color 0.2s ease;
}

    .table tbody tr:hover {
        background-color: #e2e8f0 !important; /* Üzerine gelince tatlı bir gri/koyu ton olur */
    }

        /* Hücrelerin içindeki arka plan rengini şeffaf yapalım ki hover efekti çalışsın */
        .table tbody tr:hover td {
            background-color: transparent !important;
        }
/* === FİLTRE: ARAÇ MARKASI (KOYU VE KALIN) === */
.filter-item {
    font-weight: 800 !important; /* Çok Kalın */
    color: #0f172a !important; /* Gece Mavisi / Neredeyse Siyah */
}

    .filter-item:hover {
        color: #D32F2F !important; /* Üzerine gelince senin kırmızı logona uysun */
    }

    .filter-item.active {
        color: #D32F2F !important;
        font-weight: 900 !important;
    }

/* === FİLTRE: ARAÇ MODELİ (BİRAZ DAHA AÇIK VE İNCE) === */
.sub-item {
    font-weight: 500 !important; /* Normalden bir tık ince */
    color: #475569 !important; /* Tatlı bir orta-açık gri */
}

    .sub-item:hover {
        color: #0f172a !important; /* Üzerine gelince koyulaşsın ki okunsun */
        font-weight: 600 !important;
    }

    .sub-item.active {
        color: #D32F2F !important;
        font-weight: 700 !important;
    }
/* =========================================================
   ANA SAYFA (INDEX) ÖZEL TASARIMLARI
========================================================= */

/* === ARAMA ALANI (SİYAH ÇERÇEVELİ) === */
.hero-search-wrapper {
    background: linear-gradient(135deg, #ffffff 0%, #f1f5f9 100%);
    padding: 15px;
    border-radius: 100px;
    box-shadow: 0 20px 40px -10px rgba(15, 23, 42, 0.05);
    border: 1px solid #000;
    display: flex;
    align-items: center;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), border-color 0.3s;
}

    .hero-search-wrapper:focus-within {
        transform: scale(1.02);
        box-shadow: 0 25px 50px -12px rgba(225, 29, 72, 0.15);
        border-color: var(--primary-red);
    }

.hero-input {
    border: none;
    background: transparent;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--dark-surface);
    padding-left: 20px;
    width: 100%;
}

    .hero-input:focus {
        outline: none;
    }

    .hero-input::placeholder {
        color: #94A3B8;
        font-weight: 400;
    }

.btn-hero-search {
    background: var(--dark-surface);
    color: white;
    border-radius: 50px;
    padding: 14px 40px;
    font-weight: 700;
    letter-spacing: 0.5px;
    border: none;
    transition: 0.3s;
}

    .btn-hero-search:hover {
        background: var(--primary-red);
        box-shadow: 0 10px 20px -5px rgba(225, 29, 72, 0.4);
    }

/* === HERO YENİ NESİL ARAMA ALANI === */
.hero-banner {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.85) 0%, rgba(225, 29, 72, 0.75) 100%), url('https://images.unsplash.com/photo-1486262715619-67b85e0b08d3?q=80&w=2000&auto=format&fit=crop') center/cover no-repeat;
    border-radius: var(--radius-xl);
    padding: 60px 20px;
    margin-bottom: 20px;
    border: 1px solid #000;
    box-shadow: 0 10px 30px -10px rgba(225, 29, 72, 0.3);
}

/* === GÜVEN ŞERİDİ (TRUST BADGES) === */
.trust-badges-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 40px;
    padding: 20px;
    background: #fff;
    border: 1px solid #000;
    border-radius: var(--radius-xl);
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 15px;
}

.trust-icon {
    width: 45px;
    height: 45px;
    background: rgba(225, 29, 72, 0.1);
    color: var(--primary-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
}

.trust-text strong {
    display: block;
    font-size: 0.9rem;
    color: var(--dark-surface);
}

.trust-text small {
    font-size: 0.75rem;
    color: #64748B;
    font-weight: 500;
}

/* === SABİT WHATSAPP BUTONU === */
.float-wa {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 0px 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulse-wa 2s infinite;
    border: 2px solid #fff;
}

    .float-wa:hover {
        color: #fff;
        transform: scale(1.1);
    }

@keyframes pulse-wa {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* === PREMIUM ÜRÜN KARTI === */
.pro-card {
    background: var(--card-bg);
    border-radius: var(--radius-xl);
    border: 1px solid #000;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02), 0 2px 4px -1px rgba(0, 0, 0, 0.02);
    overflow: hidden;
}

    .pro-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1);
        border-color: rgba(225, 29, 72, 0.5);
    }

.pro-img-container {
    height: 300px !important; /* Yüksekliği 240'tan 300'e çıkardık */
    padding: 15px !important; /* Kenar boşluğunu azalttık (resim daha büyük görünsün diye) */
    background: #ffffff;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid #F1F5F9;
    overflow: hidden;
}

    .pro-img-container::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: radial-gradient(circle, rgba(241,245,249,0) 0%, rgba(241,245,249,0.5) 100%);
        opacity: 0;
        transition: 0.4s;
    }

.pro-card:hover .pro-img-container::before {
    opacity: 1;
}

.pro-img-container img {
    max-height: 95% !important; /* Kartın içine iyice yayılsın */
    max-width: 95% !important;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: transform 0.5s ease;
    filter: drop-shadow(0 4px 10px rgba(0,0,0,0.08)); /* Hafif gölge ekleyerek derinlik kattık */
    z-index: 1;
}

.pro-card:hover .pro-img-container img {
    transform: scale(1.15) !important; /* %12 yerine %15 büyüsün */
    filter: drop-shadow(0 15px 30px rgba(0,0,0,0.15));
}

.stock-dot-pulse {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    position: relative;
    margin-right: 6px;
}

    .stock-dot-pulse::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
        border-radius: 50%;
        background-color: inherit;
        opacity: 0.6;
        animation: pulse 2s infinite cubic-bezier(0.66, 0, 0, 1);
        z-index: -1;
    }

@keyframes pulse {
    to {
        transform: scale(2.5);
        opacity: 0;
    }
}

.pro-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.brand-tag {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--primary-red);
    background: rgba(225, 29, 72, 0.08);
    padding: 4px 10px;
    border-radius: 6px;
    display: inline-block;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    align-self: flex-start;
}

.pro-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-main);
    line-height: 1.45;
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 46px;
}

.tech-specs {
    display: flex;
    justify-content: space-between;
    background: #F8FAFC;
    border-radius: 10px;
    padding: 10px 15px;
    margin-top: auto;
    border: 1px solid #F1F5F9;
    margin-bottom: 15px;
}

.spec-box {
    display: flex;
    flex-direction: column;
}

.spec-title {
    font-size: 0.65rem;
    color: #94A3B8;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 2px;
}

.spec-value {
    font-size: 0.85rem;
    color: var(--text-main);
    font-weight: 700;
    font-family: monospace;
}

.btn-wa-pro {
    background: #1E293B;
    color: white;
    width: 100%;
    border: none;
    padding: 14px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

    .btn-wa-pro::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
        transition: 0.5s;
    }

.pro-card:hover .btn-wa-pro {
    background: #22C55E;
    box-shadow: 0 10px 20px -5px rgba(34, 197, 94, 0.4);
    transform: translateY(-2px);
}

    .pro-card:hover .btn-wa-pro::before {
        left: 100%;
    }

/* === SIDEBAR VE DİĞER DETAYLAR === */
.sidebar-sticky {
    position: sticky;
    top: 120px;
    z-index: 99;
}

.filter-panel {
    background: #fff;
    border-radius: var(--radius-xl);
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
    border: 1px solid #000;
    overflow: hidden;
}

/* === FİLTRE PANELİ BAŞLIK GÜNCELLEMESİ (HERO TEMALI) === */
.filter-header-pro {
    /* Arama barındaki görselin ve gradyanın aynısını buraya uyguluyoruz */
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.9) 0%, rgba(225, 29, 72, 0.8) 100%), url('https://images.unsplash.com/photo-1486262715619-67b85e0b08d3?q=80&w=2000&auto=format&fit=crop') center/cover no-repeat !important;
    padding: 20px 24px !important;
    border-bottom: 2px solid #000 !important;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Başlık içindeki yazıyı ve ikonları beyaz yapalım ki görselin üstünde parlasın */
.filter-title {
    color: #ffffff !important;
    font-weight: 800 !important;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5); /* Okunurluğu artırmak için hafif gölge */
}

    .filter-title i {
        color: #ffffff !important; /* İkonu da beyaz yaptık */
    }

/* Sıfırla butonunu da beyaz/açık ton yapalım */
.btn-reset {
    color: rgba(255, 255, 255, 0.9) !important;
    font-weight: 700 !important;
}

    .btn-reset:hover {
        color: #ffffff !important;
        text-decoration: underline !important;
    }

.filter-list {
    padding: 10px 0;
}

.filter-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 24px;
    font-size: 0.95rem;
    font-weight: 800 !important;
    color: #0f172a !important;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    border-left: 3px solid transparent;
    cursor: pointer;
}

    .filter-item:hover {
        background-color: #F8FAFC;
        color: var(--primary-red) !important;
        padding-left: 28px;
    }

    .filter-item.active {
        background: linear-gradient(90deg, rgba(225, 29, 72, 0.05) 0%, rgba(255, 255, 255, 0) 100%);
        color: var(--primary-red) !important;
        border-left-color: var(--primary-red);
        font-weight: 900 !important;
    }

.sub-menu {
    background: #F8FAFC;
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.sub-item {
    display: block;
    padding: 8px 24px 8px 35px;
    font-size: 0.85rem;
    font-weight: 500 !important;
    color: #334155 !important;
    transition: 0.2s;
    position: relative;
}

    .sub-item:hover {
        color: #0f172a !important;
        font-weight: 600 !important;
    }

    .sub-item.active {
        color: var(--primary-red) !important;
        font-weight: 700 !important;
    }

        .sub-item.active::before {
            content: '•';
            position: absolute;
            left: 20px;
            color: var(--primary-red);
            font-weight: bold;
        }

.stock-switch-wrapper {
    margin-top: 15px;
    background: #fff;
    border-radius: var(--radius-xl);
    padding: 15px 20px;
    border: 1px solid #000;
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.form-switch .form-check-input {
    width: 2.5em;
    height: 1.25em;
    cursor: pointer;
    background-color: #cbd5e1;
    border-color: #cbd5e1;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e");
}

    .form-switch .form-check-input:checked {
        background-color: var(--primary-red);
        border-color: var(--primary-red);
    }

.page-link {
    border-radius: 10px !important;
    margin: 0 4px;
    border: none;
    color: var(--text-main);
    font-weight: 600;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-item.active .page-link {
    background-color: var(--vurgu-renk) !important;
    box-shadow: 0 5px 15px rgba(211, 47, 47, 0.3);
    color: #fff !important;
}


@media (max-width: 992px) {
    .sidebar-col {
        display: none;
    }

    .mobil-filtre-btn {
        display: block;
        margin-bottom: 20px;
    }
}

.mobil-filtre-btn {
    display: none;
}
/* === TEKNİK BİLGİ KUTUSU (OEM & ÜRÜN KODU) BÜYÜTME === */

/* Başlıklar (Ürün Kodu / OEM No yazısı) */
.spec-title, .spec-label {
    font-size: 0.8rem !important; /* 0.65'ten 0.8'e çıkardık */
    color: #64748B !important;
    font-weight: 700 !important;
    margin-bottom: 4px !important;
}

/* Değerler (LP2479 / 410602581R gibi kodlar) */
.spec-value {
    font-size: 0.9rem !important; /* 0.85'ten 1.1'e çıkararak %30 büyüme sağladık */
    color: #1e293b !important; /* Daha koyu ve net bir siyah/lacivert */
    font-weight: 800 !important; /* Ekstra kalın yaptık */
    font-family: 'Plus Jakarta Sans', sans-serif !important; /* Okuması zor olan monospace yerine ana fontu kullandık */
    letter-spacing: 0.5px !important;
}

/* Kutunun içindeki dikey boşluğu biraz arttıralım ki yazılar sıkışmasın */
.tech-specs {
    padding: 12px 15px !important;
    background: #f1f5f9 !important; /* Arka planı bir tık daha belirgin yaptık */
}