:root {
    --primary-dark: #0F172A;  /* Navbar ve Footer */
    --topbar-bg: #1A2236;     /* Topbar */
    --accent-color: #E63946;  /* Kırmızı */
    --text-dark: #111827;     /* Başlıklar */
    --text-muted: #6B7280;    /* Metinler */
    --bg-soft: #F9FAFB;       /* Açık Gri */
    
    /* Gölgeler */
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

/* --- GENEL AYARLAR --- */
/* --- Sticky Fix (Kritik: Body overflow ayarı) --- */
body, html {
    overflow-x: clip !important; /* hidden sticky'i bozar, clip düzeltir */
}


body {
    font-family: 'Inter', sans-serif;
    color: var(--text-muted);
    font-size: 16px;
    line-height: 1.7;
    background-color: #fff;
}
h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-dark);
    font-weight: 700;
}
a { text-decoration: none; transition: all 0.3s ease; }
ul { list-style: none; padding: 0; margin: 0; }

/* --- TOP BAR --- */
.top-bar {
    background-color: var(--topbar-bg); padding: 10px 0; font-size: 13px; font-weight: 500;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.top-info a { color: #cbd5e1; }
.top-info a:hover { color: #fff; }
.divider { display: inline-block; width: 1px; height: 12px; background: rgba(255,255,255,0.2); margin: 0 15px; vertical-align: middle; }
.follow-text { color: #94a3b8; font-size: 11px; letter-spacing: 1px; text-transform: uppercase; font-weight: 700; }
.top-social a { color: #94a3b8; margin-left: 15px; transition: 0.3s; }
.top-social a:hover { color: var(--accent-color); transform: translateY(-2px); }

/* --- NAVBAR --- */
.navbar {
    background-color: var(--primary-dark) !important; padding: 0; height: 90px;
    box-shadow: var(--shadow-lg); z-index: 1000;
}
.navbar-brand img { height: 50px; width: auto; }

.nav-link {
    color: rgba(255,255,255,0.9) !important; font-family: 'Montserrat', sans-serif;
    font-weight: 600; text-transform: uppercase; font-size: 14px; letter-spacing: 0.5px;
    height: 90px; display: flex; align-items: center; padding: 0 18px !important; position: relative; transition: 0.3s;
}
.nav-link::after {
    content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 4px; background: var(--accent-color); transition: 0.3s;
}
.nav-link:hover::after, .nav-link.active::after { width: 100%; }
.nav-link:hover, .nav-link.active { color: #fff !important;}

.dropdown-arrow { font-size: 10px; margin-left: 6px; opacity: 0.7; transition: transform 0.3s; }
.nav-item.dropdown:hover .dropdown-arrow { transform: rotate(180deg); opacity: 1; }
.custom-dropdown-toggle::after { display: none; }

.btn-premium-cta {
    background: linear-gradient(135deg, var(--accent-color) 0%, #c9182b 100%);
    color: #fff; padding: 10px 25px; border-radius: 50px; font-weight: 600; font-size: 14px;
    box-shadow: 0 4px 15px rgba(230, 57, 70, 0.4); border: none; display: inline-flex; align-items: center;
}
.btn-premium-cta:hover { color: #fff; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(230, 57, 70, 0.6); }

/* --- DROPDOWN MENÜ --- */
.dropdown-menu {
    margin-top: 0; padding: 0; border: none; border-radius: 0 0 8px 8px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.2); background: #fff; min-width: 250px;
    border-top: 3px solid var(--accent-color); display: block; opacity: 0; visibility: hidden; transform: translateY(10px); transition: all 0.3s ease;
}
@media (min-width: 992px) {
    .nav-item.dropdown:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
}
.dropdown-item { padding: 14px 20px; font-size: 14px; font-weight: 600; color: var(--text-dark); border-bottom: 1px solid #f1f1f1; transition: 0.2s; }
.dropdown-item:last-child { border-bottom: none; }
.dropdown-item:hover { background-color: #fdf2f3; color: var(--accent-color); padding-left: 25px; }

/* --- HERO SLIDER --- */
#heroSlider { width: 100%; overflow: hidden; }
#heroSlider .carousel-item { height: 600px; width: 100%; position: relative; }
#heroSlider img { width: 100%; height: 100%; object-fit: cover; }
.slide-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(15, 23, 42, 0.9) 0%, rgba(15, 23, 42, 0.5) 100%); z-index: 1; }
.carousel-caption { z-index: 2; top: 50%; transform: translateY(-50%); bottom: auto; text-align: left; }
.badge-premium { background: rgba(255,255,255,0.1); backdrop-filter: blur(5px); border: 1px solid rgba(255,255,255,0.2); color: #fff; padding: 8px 16px; border-radius: 4px; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 20px; display: inline-block; }
.hero-title { font-size: 3.5rem; font-weight: 800; line-height: 1.1; margin-bottom: 20px; text-shadow: 0 10px 30px rgba(0,0,0,0.5); }
.text-danger-gradient { background: -webkit-linear-gradient(45deg, #E63946, #ff7b85); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.hero-desc { font-size: 1.2rem; color: rgba(255,255,255,0.9); max-width: 600px; margin-bottom: 30px; text-shadow: 0 2px 5px rgba(0,0,0,0.5); }
.animate-fade-up { animation: fadeUp 1s ease-out forwards; opacity: 0; transform: translateY(30px); }
.delay-100 { animation-delay: 0.2s; } .delay-200 { animation-delay: 0.4s; }
@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }

/* --- BÖLÜM STİLLERİ --- */
.section-padding { padding: 50px 0; }
.bg-soft-gray { background-color: var(--bg-soft); }
.section-title { font-size: 38px; line-height: 1.2; margin-bottom: 15px; }
.sub-title { color: var(--accent-color); font-weight: 700; text-transform: uppercase; letter-spacing: 1px; font-size: 13px; display: block; margin-bottom: 10px; }
.title-line { width: 80px; height: 4px; background: var(--accent-color); border-radius: 2px; }

/* --- KURUMSAL KISA --- */
.clean-image-wrapper { position: relative; z-index: 1; padding: 0 0 20px 20px; }
.clean-image-wrapper img { width: 100%; border-radius: 20px; box-shadow: 0 20px 40px rgba(0,0,0,0.15); position: relative; z-index: 2; }
.bold-badge { position: absolute; bottom: 40px; left: -10px; background: linear-gradient(135deg, var(--accent-color) 0%, #c9182b 100%); color: #fff; padding: 20px 30px; border-radius: 15px; box-shadow: 0 10px 20px rgba(230, 57, 70, 0.4); z-index: 3; text-align: center; }
.bold-badge .years { display: block; font-size: 36px; font-weight: 900; line-height: 1; margin-bottom: 5px; }
.bold-badge .label { display: block; font-size: 11px; font-weight: 700; opacity: 0.9; line-height: 1.2; }
.dots-decoration { position: absolute; top: -20px; right: -20px; width: 150px; height: 150px; background-image: radial-gradient(#cbd5e1 2px, transparent 2px); background-size: 15px 15px; z-index: 1; }

.clean-feature-card { background: #fff; padding: 20px; border-radius: 12px; display: flex; align-items: center; box-shadow: 0 5px 15px rgba(0,0,0,0.05); border: 1px solid rgba(0,0,0,0.03); transition: 0.3s; height: 100%; }
.clean-feature-card:hover { transform: translateY(-5px); box-shadow: 0 15px 30px rgba(0,0,0,0.1); border-color: rgba(230, 57, 70, 0.2); }
.clean-feature-card .icon-wrap { width: 50px; height: 50px; background: #FFF1F2; color: var(--accent-color); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 22px; margin-right: 15px; flex-shrink: 0; }
.clean-feature-card .text-wrap h6 { font-weight: 800; margin-bottom: 3px; color: var(--text-dark); font-size: 16px; }
.clean-feature-card .text-wrap p { margin: 0; font-size: 13px; color: var(--text-muted); }
.btn-red-gradient { background: linear-gradient(90deg, var(--accent-color) 0%, #b91c1c 100%); color: #fff; border: none; transition: 0.3s; }
.btn-red-gradient:hover { transform: translateY(-3px); box-shadow: 0 10px 25px rgba(220, 38, 38, 0.4); color: #fff; }

/* --- ÜRÜN KATEGORİ KARTLARI --- */
.product-cat-card {
    display: flex; flex-direction: column; background: #fff;
    border-radius: 16px; overflow: hidden; position: relative;
    box-shadow: var(--shadow-md); transition: 0.4s; height: 100%; border: 1px solid #f0f0f0; text-decoration: none;
}
.product-cat-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-lg); border-color: var(--accent-color); }

.pcat-img { height: 240px; position: relative; overflow: hidden; flex-shrink: 0; }
.pcat-img img { width: 100%; height: 100%; object-fit: cover; transition: 0.5s; }
.pcat-overlay {
    position: absolute; inset: 0; background: rgba(15, 23, 42, 0.6); display: flex; align-items: center; justify-content: center;
    opacity: 0; transition: 0.3s; backdrop-filter: blur(2px);
}
.pcat-btn { background: #fff; color: var(--text-dark); padding: 10px 25px; border-radius: 30px; font-weight: 700; font-size: 13px; transform: translateY(20px); transition: 0.3s; }
.product-cat-card:hover .pcat-img img { transform: scale(1.1); }
.product-cat-card:hover .pcat-overlay { opacity: 1; }
.product-cat-card:hover .pcat-btn { transform: translateY(0); }

.pcat-body {
    padding: 15px; 
    background: #fff; 
    border-top: 1px solid #f9f9f9; 
    display: flex; 
    flex-direction: column; 
    justify-content: center;
    align-items: center;
    min-height: 80px;
}
.pcat-title { font-size: 17px; margin: 0; font-weight: 700; color: var(--text-dark); transition: 0.3s; text-align: center; }
.product-cat-card:hover .pcat-title { color: var(--accent-color); }

/* --- HİZMET KARTLARI --- */
.premium-card { background: #fff; padding: 40px 30px; border-radius: 16px; transition: 0.3s; position: relative; height: 100%; box-shadow: var(--shadow-sm); border: 1px solid rgba(0,0,0,0.03); }
.premium-card:hover { transform: translateY(-10px); box-shadow: 0 20px 40px rgba(0,0,0,0.1); border-color: var(--accent-color); }
.card-icon { width: 60px; height: 60px; background: #FFF1F2; color: var(--accent-color); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 24px; margin-bottom: 20px; }
.card-title { font-size: 20px; margin-bottom: 10px; }
.card-text { font-size: 14px; color: var(--text-muted); }
.card-link { font-size: 13px; font-weight: 700; color: var(--primary-dark); text-transform: uppercase; margin-top: 15px; display: inline-block; }
.card-link:hover { color: var(--accent-color); }

/* --- MARKALAR SLIDER --- */
.logos-slider { overflow: hidden;  width: 100%; }
.logos-slide-track { display: flex; width: calc(250px * 14); animation: scroll 40s linear infinite; }
.slide { width: 250px; display: flex; align-items: center; }
.brand-box { background: #ffffff; width: 100%; margin: 0px 10px; border-radius: 12px; box-shadow: 0 2px 5px rgba(0,0,0,0.03); border: 1px solid #eee; height: 100px; display: flex; align-items: center; justify-content: center; transition: 0.3s; }
.brand-box:hover { transform: translateY(-3px); border-color: var(--accent-color); box-shadow: var(--shadow-md); background: #fff; }
.brand-box img { max-width: 95%; max-height: 95%; transition: 0.3s; }
.brand-box:hover img { filter: grayscale(0); opacity: 1; }
@keyframes scroll { 0% { transform: translateX(0); } 100% { transform: translateX(calc(-250px * 7)); } }

/* --- CTA SECTION --- */
.cta-section { position: relative; padding: 100px 0; background-color: var(--primary-dark); overflow: hidden; }
.cta-bg-image { position: absolute; inset: 0; background-image: url('https://karatmakina.com/uploads/bg-1.jpeg'); opacity: 0.1; background-size: cover; background-position: center; }
.cta-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(15,23,42,0) 0%, rgba(15,23,42,1) 100%); }

/* --- FOOTER --- */
.footer-section { background-color: #0b1121; color: #94a3b8; font-size: 14px; border-top: 3px solid #bd1e20; }
.footer-top { padding: 80px 0; }
.footer-logo img { opacity: 0.95; }
.footer-desc { line-height: 1.8; margin-bottom: 30px; max-width: 350px; }
.footer-title { color: #fff; font-size: 18px; margin-bottom: 25px; position: relative; padding-bottom: 15px; }
.footer-title::after { content: ''; position: absolute; left: 0; bottom: 0; width: 30px; height: 2px; background: var(--accent-color); }
.footer-menu li { margin-bottom: 12px; }
.footer-menu a { color: #94a3b8; transition: 0.3s; }
.footer-menu a:hover { color: #fff; padding-left: 8px; }
.footer-contact li { display: flex; margin-bottom: 20px; align-items: start; }
.footer-contact i { margin-top: 4px; margin-right: 15px; width: 18px; text-align: center; font-size: 16px; }
.footer-contact a { color: #94a3b8 !important; }
.footer-contact a:hover { color: #ffffff !important; }
.social-links a { display: inline-flex; width: 40px; height: 40px; background: rgba(255,255,255,0.05); color: #fff; border-radius: 50%; align-items: center; justify-content: center; margin-right: 10px; transition: 0.3s; }
.social-links a:hover { background: var(--accent-color); transform: scale(1.1); }
.footer-bottom { background-color: #050914; padding: 25px 0; width: 100%; border-top: 1px solid rgba(255,255,255,0.05); overflow: hidden; }

/* --- RESPONSIVE AYARLARI --- */
@media (max-width: 991px) {
    .section-padding { padding: 60px 0; }
    .section-title { font-size: 28px; margin-bottom: 15px; }
    .navbar { height: auto; padding: 15px 0; }
    .nav-link { height: auto; padding: 15px 20px !important; border-bottom: 1px solid rgba(255,255,255,0.05); }
    .nav-link::after { display: none; }
    .navbar-collapse { background-color: var(--primary-dark); padding: 0; margin-top: 15px; border-radius: 8px; overflow: hidden; }
    .dropdown-menu { position: static; box-shadow: none; border-top: none; padding-left: 20px; background-color: rgba(0,0,0,0.2); }
    .header-btn { margin: 20px; text-align: center; }
    .btn-premium-cta { justify-content: center; width: 100%; }
    .top-bar { display: none !important; }
    #heroSlider .carousel-item { height: 500px; }
    .hero-title { font-size: 2.2rem; }
    .carousel-caption { left: 5%; right: 5%; text-align: center; }
    .btn-group-hero { display: flex; flex-direction: column; gap: 10px; align-items: center; }
    
    .clean-image-wrapper { padding: 0; margin-bottom: 40px; text-align: center; }
    .bold-badge { left: 50%; transform: translateX(-50%); bottom: -25px; width: 160px; }
    .dots-decoration { display: none; }
    .clean-feature-card { margin-bottom: 10px; }
    
    /* MOBİL ÜRÜN KARTLARI DÜZELTMESİ */
    .product-cat-card { margin-bottom: 15px; }
    .pcat-img { height: 200px; }
    .pcat-overlay { display: none; } /* Overlay ve buton tamamen gizlendi */
    .pcat-body { padding: 10px; min-height: auto; } /* Boşluk azaltıldı */
    .pcat-title { font-size: 16px; margin: 0; } /* Font ayarlandı */
    
    .footer-top { padding: 50px 0; }
    .footer-bottom { text-align: center; }
    .footer-bottom .text-md-end { text-align: center !important; margin-top: 10px; }
}








/* =========================================
   HAKKIMIZDA SAYFASI ÖZEL STİLLERİ (FİNAL)
========================================= */

/* --- 1. PAGE HEADER (SAYFA BAŞLIĞI) --- */
.page-header {
    position: relative;
    /* Arka plan görselini değiştirebilirsiniz */
    background: url('https://images.unsplash.com/photo-1504917595217-d4dc5ebe6122?auto=format&fit=crop&q=80&w=1920');
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Parallax efekti */
    padding: 120px 0; /* Yükseklik artırıldı */
    margin-bottom: 0;
}

/* Koyu Perde (Yazının Okunması İçin) */
.page-header-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    /* Soldan sağa koyu geçiş */
    background: linear-gradient(90deg, rgba(15, 23, 42, 0.95) 0%, rgba(15, 23, 42, 0.6) 100%);
    z-index: 1;
}

/* Başlık Yazısı (Kesin Beyaz) */
.page-title {
    font-family: 'Montserrat', sans-serif;
    color: #ffffff !important; 
    text-shadow: 0 4px 15px rgba(0,0,0,0.3);
    margin-bottom: 10px;
    position: relative;
    z-index: 2;
}

/* Breadcrumb (Yol Haritası) */
.breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
    position: relative;
    z-index: 2;
}

.breadcrumb-item a {
    color: rgba(255,255,255,0.7) !important;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
}

.breadcrumb-item a:hover {
    color: #fff !important;
}

.breadcrumb-item.active {
    color: var(--accent-color) !important; /* Kırmızı vurgu */
    font-weight: 600;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255,255,255,0.5);
}

/* --- 2. GÖRSEL KOMPOZİSYONU (BÜYÜK VE NET) --- */
.about-detail-img {
    position: relative;
    padding-left: 40px; 
    padding-bottom: 40px;
    height: 100%;
}

.about-detail-img .main-img {
    width: 100%;
    /* Görselin yüksekliği sabitlendi, küçük kalmaz */
    height: 600px; 
    object-fit: cover;
    position: relative;
    z-index: 1;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25) !important;
}

/* Sol Alttaki Küçük Resim */
.floating-small-img {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 300px;
    height: 200px;
    z-index: 2;
    border: 8px solid #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.floating-small-img img {
    width: 100%; 
    height: 100%; 
    object-fit: cover;
}

/* Liste Maddeleri */
.check-list li {
    margin-bottom: 12px;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 15px;
    display: flex;
    align-items: center;
}

/* --- 3. İSTATİSTİKLER (SAYAÇLAR - GRADIENT) --- */
.counter-section {
    /* Modern Koyu Mavi Gradient */
    background: linear-gradient(135deg, #0F172A 0%, #1e293b 100%);
    border-top: 4px solid var(--accent-color);
    position: relative;
}

.bg-pattern-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: radial-gradient(rgba(255,255,255,0.05) 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.4;
}

.counter-box {
    position: relative;
    z-index: 2;
}

.counter-box h2 {
    font-family: 'Montserrat', sans-serif;
    line-height: 1;
    text-shadow: 0 5px 15px rgba(0,0,0,0.3);
    margin-bottom: 5px;
}

/* --- 4. MİSYON & VİZYON KARTLARI --- */
.value-card {
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.03) !important;
    background: #fff;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08) !important;
    border-color: rgba(230, 57, 70, 0.2) !important;
}

.icon-wrap-lg {
    width: 80px;
    height: 80px;
    background-color: #FFF1F2; /* Çok açık kırmızı */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
    margin-bottom: 20px;
}

.value-card:hover .icon-wrap-lg {
    background-color: var(--accent-color);
    transform: scale(1.1);
}

.value-card:hover .icon-wrap-lg i {
    color: #fff !important;
}

/* --- MOBİL AYARLAR (Hakkımızda Sayfası İçin) --- */
@media (max-width: 991px) {
    .page-header { padding: 60px 0; }
    .page-title { font-size: 2.2rem; }
    
    .about-detail-img { 
        padding: 0; 
        text-align: center; 
        margin-top: 40px; 
        height: auto; 
    }
    
    .about-detail-img .main-img { 
        height: 350px; /* Mobilde görsel boyutu optimize edildi */
    }
    
    .floating-small-img { 
        display: none; /* Mobilde karmaşa olmaması için küçük resim gizlenir */
    } 
    
    .value-card { text-align: center; margin-bottom: 20px; }
    .icon-wrap-lg { margin: 0 auto 20px auto; }
    
    .counter-box { margin-bottom: 30px; }
    .counter-box h2 { font-size: 2.5rem; }
}


/* =========================================
   İLETİŞİM SAYFASI ÖZEL STİLLERİ (COMPACT)
========================================= */

/* --- İletişim Formu --- */
.contact-form-box {
    background: #fff;
    /* Padding azaltıldı: 50px -> 35px */
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    height: 100%;
}

.form-label {
    font-weight: 700;
    font-size: 12px; /* Font biraz küçültüldü */
    color: var(--text-dark);
    margin-bottom: 6px;
    text-transform: uppercase;
}

.contact-input {
    border: 2px solid #f0f0f0;
    border-radius: 10px;
    padding: 10px 15px; /* Input içi boşluk azaltıldı */
    font-size: 14px;
    color: var(--text-dark);
    background-color: #fcfcfc;
    transition: all 0.3s ease;
}

.contact-input:focus {
    border-color: var(--accent-color);
    background-color: #fff;
    box-shadow: 0 0 0 3px rgba(230, 57, 70, 0.1);
    outline: none;
}

.contact-input::placeholder {
    color: #bbb;
    font-weight: 500;
}

/* --- Sağ Taraf (Bilgi Kartları) --- */
.contact-info-sidebar {
    /* Soldan boşluk azaltıldı (Mobil uyum için de iyi) */
    padding-left: 0; 
}

/* Masaüstünde biraz sol boşluk bırak (g-4 yetmezse) */
@media (min-width: 992px) {
    .contact-info-sidebar {
        padding-left: 15px; 
    }
}

.contact-card-item {
    display: flex;
    align-items: center; /* Dikey ortalama */
    background: #fff;
    /* Padding azaltıldı: 25px -> 20px */
    padding: 20px;
    border-radius: 16px;
    /* Alt boşluk azaltıldı: 20px -> 15px */
    margin-bottom: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
    border: 1px solid rgba(0,0,0,0.02);
    transition: 0.3s;
}

.contact-card-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.06);
    border-color: rgba(230, 57, 70, 0.1);
}

.contact-card-item .icon-box {
    width: 45px; /* İkon kutusu küçültüldü */
    height: 45px;
    background-color: #FFF1F2; 
    color: var(--accent-color);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    margin-right: 15px;
    flex-shrink: 0;
    transition: 0.3s;
}

.contact-card-item:hover .icon-box {
    background-color: var(--accent-color);
    color: #fff;
}

.contact-card-item .text-box h5 {
    font-size: 16px; /* Başlık boyutu dengelendi */
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--text-dark);
}

.contact-card-item .text-box p {
    margin-bottom: 0;
    color: var(--text-muted);
    font-size: 13px;
    line-height: 1.5;
}

.contact-card-item .text-box a {
    color: var(--text-muted);
    text-decoration: none;
    transition: 0.2s;
    font-weight: 600;
}

.contact-card-item .text-box a:hover {
    color: var(--accent-color);
}

/* Harita Alanı */
.contact-map-wrap {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 4px solid #fff;
}

/* MOBİL AYARLAR */
@media (max-width: 991px) {
    .contact-form-box {
        padding: 25px;
    }
    .contact-card-item {
        padding: 15px;
        align-items: flex-start; /* Mobilde ikon yukarıda kalsın */
    }
    .contact-map-wrap {
        height: 250px;
    }
}




/* =========================================
   BLOG SAYFASI ÖZEL STİLLERİ
========================================= */

/* --- Blog Kartları --- */
.blog-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
    border: 1px solid rgba(0,0,0,0.02);
    transition: 0.3s;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
}

.blog-img-wrap {
    height: 240px;
    position: relative;
    overflow: hidden;
}

.blog-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}

.blog-card:hover .blog-img-wrap img {
    transform: scale(1.1);
}

.blog-date {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--accent-color);
    color: #fff;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 700;
    box-shadow: 0 4px 10px rgba(230, 57, 70, 0.4);
}

.blog-body {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-meta {
    font-size: 12px;
    color: #888;
    margin-bottom: 10px;
    font-weight: 600;
    text-transform: uppercase;
}

.blog-meta span {
    margin-right: 15px;
}

.blog-title {
    font-size: 18px;
    margin-bottom: 12px;
    line-height: 1.4;
}

.blog-title a {
    color: var(--text-dark);
    text-decoration: none;
    transition: 0.2s;
}

.blog-title a:hover {
    color: var(--accent-color);
}

.blog-text {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-read-btn {
    margin-top: auto;
    font-size: 13px;
    font-weight: 700;
    color: var(--primary-dark);
    text-transform: uppercase;
}

.blog-read-btn:hover {
    color: var(--accent-color);
}

.blog-read-btn i {
    font-size: 11px;
    margin-left: 5px;
    transition: 0.2s;
}

.blog-read-btn:hover i {
    margin-left: 8px;
}

/* --- Sayfalama (Pagination) --- */
.custom-pagination {
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 10px;
}

.custom-pagination li a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
    font-weight: 600;
    border: 1px solid #eee;
    transition: 0.3s;
}

.custom-pagination li a:hover,
.custom-pagination li a.active {
    background: var(--accent-color);
    color: #fff;
    border-color: var(--accent-color);
}

/* --- Sidebar --- */
.blog-sidebar-wrap {
    position: sticky;
    top: 110px; /* Header yüksekliğine göre */
}

.sidebar-widget {
    background: #fff;
    padding: 30px;
    border-radius: 16px;
    border: 1px solid rgba(0,0,0,0.02);
    box-shadow: 0 5px 15px rgba(0,0,0,0.02);
    margin-bottom: 30px;
}

.widget-head {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f0f0f0;
    position: relative;
    color: var(--text-dark);
}

.widget-head::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--accent-color);
}

/* Arama Widget */
.search-widget form {
    position: relative;
}

.search-widget input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #eee;
    border-radius: 8px;
    font-size: 14px;
    outline: none;
    transition: 0.3s;
    background: #fcfcfc;
}

.search-widget input:focus {
    border-color: var(--accent-color);
    background: #fff;
}

.search-widget button {
    position: absolute;
    right: 5px;
    top: 5px;
    bottom: 5px;
    border: none;
    background: var(--accent-color);
    color: #fff;
    width: 35px;
    border-radius: 6px;
    cursor: pointer;
}

/* Kategori Listesi */
.category-list li {
    margin-bottom: 10px;
    border-bottom: 1px dashed #eee;
    padding-bottom: 10px;
}

.category-list li:last-child {
    border: none;
    margin: 0;
    padding: 0;
}

.category-list a {
    color: var(--text-muted);
    font-size: 14px;
    font-weight: 500;
    display: flex;
    justify-content: space-between;
    transition: 0.2s;
}

.category-list a:hover {
    color: var(--accent-color);
    padding-left: 5px;
}

.category-list a span {
    background: #f5f5f5;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 11px;
    color: #888;
}

/* Son Yazılar (Recent Posts) */
.recent-posts li {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.recent-posts li:last-child {
    margin-bottom: 0;
}

.rp-img {
    width: 70px;
    height: 70px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
    margin-right: 15px;
}

.rp-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.3s;
}

.recent-posts li:hover .rp-img img {
    transform: scale(1.1);
}

.rp-info h6 {
    font-size: 14px;
    line-height: 1.4;
    margin-bottom: 5px;
    font-weight: 700;
}

.rp-info h6 a {
    color: var(--text-dark);
}

.rp-info h6 a:hover {
    color: var(--accent-color);
}

.rp-info span {
    font-size: 11px;
    color: #999;
}

/* Etiketler (Tag Cloud) */
.tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag-cloud a {
    font-size: 12px;
    color: #666;
    background: #f5f5f5;
    padding: 6px 12px;
    border-radius: 4px;
    font-weight: 600;
    border: 1px solid transparent;
}

.tag-cloud a:hover {
    background: #fff;
    border-color: var(--accent-color);
    color: var(--accent-color);
}

/* MOBİL AYARLAR */
@media (max-width: 991px) {
    .blog-sidebar-wrap {
        position: static;
        margin-top: 40px;
    }
}






/* =========================================
   BLOG DETAY SAYFASI ÖZEL STİLLERİ
========================================= */

/* --- İçerik Tipografisi --- */
.blog-content {
    font-size: 17px;
    line-height: 1.8;
    color: #4b5563;
}

.blog-content h3 {
    font-size: 24px;
    font-weight: 800;
    color: var(--text-dark);
    margin-top: 40px;
}

.blog-content p {
    margin-bottom: 20px;
}

.blog-content strong {
    color: var(--text-dark);
    font-weight: 700;
}

/* --- Liste Tasarımı --- */
.content-list {
    list-style: none;
    padding: 0;
}

.content-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    font-weight: 500;
    color: var(--text-dark);
}

.content-list li::before {
    content: '\f00c'; /* Check Icon */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--accent-color);
    font-size: 14px;
}

/* --- Alıntı Kutusu (Blockquote) --- */
.blockquote-custom {
    background: #FFF1F2; /* Çok açık kırmızı */
    padding: 40px;
    border-radius: 12px;
    border-left: 5px solid var(--accent-color);
    position: relative;
    margin: 40px 0;
}

.blockquote-custom .icon-quote {
    font-size: 30px;
    color: rgba(230, 57, 70, 0.2);
    position: absolute;
    top: 20px;
    left: 20px;
}

.blockquote-custom p {
    font-size: 18px;
    font-style: italic;
    color: var(--text-dark);
    position: relative;
    z-index: 1;
}

/* --- Etiketler ve Paylaşım --- */
.tag-link {
    display: inline-block;
    background: #f3f4f6;
    color: #666;
    padding: 5px 12px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    margin-right: 5px;
    transition: 0.2s;
    text-decoration: none;
}

.tag-link:hover {
    background: var(--accent-color);
    color: #fff;
}

.share-btn {
    display: inline-flex;
    width: 36px;
    height: 36px;
    background: #f3f4f6;
    color: var(--text-dark);
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    margin-left: 5px;
    transition: 0.3s;
    font-size: 14px;
}

.share-btn:hover {
    background: var(--accent-color);
    color: #fff;
    transform: translateY(-2px);
}

/* --- Yazar Kutusu --- */
.author-box {
    border: 1px solid #eee;
}

.author-img img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border: 3px solid #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* MOBİL AYARLAR */
@media (max-width: 991px) {
    .blog-footer {
        flex-direction: column;
        align-items: flex-start;
    }
    .tags-wrap {
        margin-bottom: 15px;
    }
    .author-box {
        flex-direction: column;
        text-align: center;
    }
    .author-img {
        margin: 0 auto 15px auto;
    }
    /* Mobilde kart paddingini azalt */
    .blog-article-card {
        padding: 30px !important;
    }
}





/* =========================================
   REFERANSLAR SAYFASI ÖZEL STİLLERİ
========================================= */

/* --- Partner Kartları (Büyük Logolar) --- */
.partner-card {
    background: #fff;
    border: 1px solid #f0f0f0;
    border-radius: 16px;
    height: 140px; /* Sabit yükseklik */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.02);
}

.partner-card img {
    max-width: 80%;
    max-height: 80%;
    transition: all 0.3s ease;
}

/* Hover Efekti */
.partner-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
    border-color: rgba(230, 57, 70, 0.2);
}

.partner-card:hover img {
    filter: grayscale(0%) opacity(1); /* Renkli ve net */
    transform: scale(1.05);
}

/* --- Müşteri Referans Kutuları (Daha Küçük Logolar) --- */
.reference-box {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    height: 100px; /* Daha kısa */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    transition: all 0.3s ease;
}

.reference-box img {
    max-width: 90%;
    max-height: 90%;
    transition: all 0.3s ease;
}

.reference-box:hover {
    border-color: var(--accent-color);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transform: translateY(-3px);
}

.reference-box:hover img {
    filter: grayscale(0%) opacity(1);
}

/* MOBİL AYARLAR */
@media (max-width: 991px) {
    .partner-card {
        height: 120px;
    }
    .reference-box {
        height: 80px;
    }
}




/* =========================================
   TEKLİF AL SAYFASI ÖZEL STİLLERİ
========================================= */

/* --- Sol Taraf: Timeline (Süreç) --- */
.process-item .step-icon {
    width: 45px;
    height: 45px;
    background-color: var(--primary-dark); /* Koyu Lacivert */
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    position: relative;
    z-index: 2;
    flex-shrink: 0;
    box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.5); /* Beyaz halka efekti */
}

/* Adımlar arasındaki çizgi */
.step-line {
    position: absolute;
    top: 45px;
    left: 22px; /* İkonun tam ortasına denk gelir */
    width: 2px;
    height: calc(100% - 45px);
    background: #e5e7eb; /* Açık gri çizgi */
    z-index: 1;
}

/* Hover durumunda ikonun kırmızı olması */
.process-item:hover .step-icon {
    background-color: var(--accent-color);
    transition: 0.3s;
}

/* --- Sağ Taraf: Form --- */
.quote-form-card {
    border-top: 5px solid var(--accent-color) !important; /* Üstte kırmızı çizgi */
}

/* Dosya Yükleme Alanı */
.file-upload-wrapper {
    position: relative;
    width: 100%;
}

.file-upload-input {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
    z-index: 2;
}

.file-upload-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px;
    border: 2px dashed #ddd; /* Kesik çizgili kenarlık */
    border-radius: 12px;
    background-color: #fcfcfc;
    transition: 0.3s;
    text-align: center;
}

/* Dosya üzerine gelince efekt */
.file-upload-wrapper:hover .file-upload-label,
.file-upload-input:focus + .file-upload-label {
    border-color: var(--accent-color);
    background-color: #FFF1F2; /* Çok açık kırmızı zemin */
}

/* Checkbox Rengi */
.form-check-input:checked {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
}

/* MOBİL AYARLAR */
@media (max-width: 991px) {
    .process-wrapper {
        margin-bottom: 40px;
    }
    .process-item {
        padding-bottom: 30px !important;
    }
    .quote-form-card {
        padding: 30px !important;
    }
}






/* =========================================
   ÜRÜNLER (KATEGORİ) SAYFASI ÖZEL STİLLERİ
========================================= */

/* --- Sidebar Kartları (Widget) --- */
.sidebar-card {
    background: #fff;
    padding: 25px;
    border-radius: 16px;
    border: 1px solid #eee;
    box-shadow: 0 5px 15px rgba(0,0,0,0.02);
    margin-bottom: 25px; /* Kartlar arası boşluk */
}

.widget-title {
    font-size: 18px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f9f9f9;
}

/* --- Kategori Akordiyon --- */
.category-accordion .accordion-item {
    border: none;
    background: transparent;
    margin-bottom: 5px;
}

.category-accordion .accordion-button {
    background-color: transparent;
    color: var(--text-dark);
    font-weight: 700;
    font-size: 15px;
    padding: 12px 0;
    box-shadow: none; /* Mavi varsayılan gölgeyi kaldır */
}

.category-accordion .accordion-button:not(.collapsed) {
    color: var(--accent-color);
    background-color: transparent;
}

.category-accordion .accordion-button:focus {
    box-shadow: none;
}

.category-accordion .accordion-body {
    padding: 5px 0 10px 0;
}

/* --- Alt Kategori Listesi (Çizgili & Hover Efektli) --- */
.sub-cat-list {
    list-style: none;
    padding: 0;
    margin: 0;
    border-left: 2px solid #f0f0f0; /* Soldaki dikey gri çizgi */
}

.sub-cat-list li {
    margin-bottom: 0;
    border-bottom: 1px solid #f9f9f9; /* Altlarına ince çizgi */
}

.sub-cat-list li:last-child {
    border-bottom: none; /* Son elemanda çizgi olmasın */
}

.sub-cat-list a {
    color: var(--text-muted);
    font-size: 14px;
    display: block;
    padding: 12px 15px; /* Tıklama alanı */
    position: relative;
    transition: all 0.3s ease;
    font-weight: 500;
    border-radius: 0 8px 8px 0;
}

/* Hover ve Aktif Durumu */
.sub-cat-list a:hover,
.sub-cat-list a.active {
    background-color: #FFF1F2; /* Hafif kırmızı zemin */
    color: var(--accent-color);
    padding-left: 20px; /* Sağa kayma efekti */
}

/* Sol taraftaki minik işaretçi */
.sub-cat-list a:hover::before,
.sub-cat-list a.active::before {
    content: ''; 
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background-color: var(--accent-color);
}

/* --- Marka Filtresi (Checkbox) --- */
.brand-filter .form-check {
    margin-bottom: 10px;
}

.brand-filter .form-check-label {
    font-size: 15px;
    color: var(--text-muted);
    cursor: pointer;
    font-weight: 500;
}

.brand-filter .form-check-input:checked {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
}

/* --- Ürün Kartları (Listing Card) --- */
.listing-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #eee;
    transition: 0.3s;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.listing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
    border-color: rgba(230, 57, 70, 0.2);
}

.listing-img-wrap {
    height: 220px;
    position: relative;
    overflow: hidden;
    background: #fff;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid #f9f9f9;
}

.listing-img-wrap img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain; /* Görseli kesmeden sığdır */
    transition: 0.5s;
}

.listing-card:hover .listing-img-wrap img {
    transform: scale(1.05);
}

/* Kart Bilgileri */
.listing-info {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.listing-cat {
    font-size: 11px;
    color: #999;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 5px;
}

.listing-title {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 8px;
}

.listing-title a {
    color: var(--text-dark);
    text-decoration: none;
    transition: 0.2s;
}

.listing-title a:hover {
    color: var(--accent-color);
}

.listing-desc {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 15px;
    flex-grow: 1;
    display: -webkit-box;
    -webkit-line-clamp: 2; /* 2 satırla sınırla */
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Sayfalama (Pagination) */
.custom-pagination {
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 10px;
}

.custom-pagination li a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
    font-weight: 600;
    border: 1px solid #eee;
    transition: 0.3s;
    text-decoration: none;
}

.custom-pagination li a:hover,
.custom-pagination li a.active {
    background: var(--accent-color);
    color: #fff;
    border-color: var(--accent-color);
}

/* MOBİL AYARLAR */
@media (max-width: 991px) {
    .product-top-bar {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .sidebar-card {
        margin-bottom: 20px;
    }
}







/* =========================================
   ÜRÜN DETAY SAYFASI ÖZEL STİLLERİ
========================================= */


/* --- Sticky (Yapışkan) Sol Alan --- */
@media (min-width: 992px) {
    .sticky-content {
        position: -webkit-sticky;
        position: sticky;
        top: 130px; /* Header'dan uzaklık */
        z-index: 10;
        align-self: flex-start;
    }
}

/* --- Sol Taraf (Bilgiler) --- */
.product-description {
    font-size: 16px;
    line-height: 1.8;
}

/* --- Sağ Taraf Görseller (DÜZELTİLDİ) --- */
.image-card {
    position: relative;
    cursor: pointer;
    overflow: hidden;
    border-radius: 16px;
    border: 1px solid #eee;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
    transition: 0.3s;
    background: #fff;
    
    /* İLK RESMİN TIKLANABİLMESİ İÇİN KRİTİK */
    z-index: 50; 
}

.image-card:hover {
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
    transform: translateY(-3px);
    border-color: rgba(230, 57, 70, 0.2);
}

.image-card img {
    transition: transform 0.5s ease;
    width: 100%;
    display: block;
}

.image-card:hover img {
    transform: scale(1.03);
}

/* Büyüt Rozeti */
.zoom-badge {
    position: absolute; bottom: 20px; right: 20px; 
    background: rgba(0,0,0,0.6); 
    color: #fff; padding: 10px 20px; border-radius: 50px; 
    font-size: 13px; font-weight: 700;
    transition: 0.3s; pointer-events: none; 
    display: flex; align-items: center; gap: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Hover'da kırmızı oluyor */
.image-card:hover .zoom-badge { 
    background: var(--accent-color); 
}

/* --- Lightbox Modal --- */
.lightbox-overlay { 
    display: none; position: fixed; z-index: 10000; padding-top: 0; left: 0; top: 0; width: 100%; height: 100%; 
    overflow: hidden; 
    /* İstenilen gölgeli şeffaf arka plan */
    background-color: rgba(0, 0, 0, 0.75); 
    backdrop-filter: blur(5px); align-items: center; justify-content: center; 
}

.lightbox-content { 
    margin: auto; 
    display: block; 
    max-width: 90%; 
    max-height: 85vh; 
    border-radius: 4px; 
    box-shadow: 0 0 50px rgba(255,255,255,0.1); 
    animation: zoomIn 0.3s; 
    object-fit: contain;
    
    /* YENİ EKLENDİ: Tıklanabilir el işareti */
    cursor: pointer; 
}
.lightbox-close { position: absolute; top: 25px; right: 40px; color: #fff; font-size: 50px; font-weight: 300; transition: 0.3s; cursor: pointer; line-height: 1; z-index: 10001; }
.lightbox-close:hover { color: var(--accent-color); transform: rotate(90deg); }
.lightbox-nav { cursor: pointer; position: absolute; top: 50%; width: auto; padding: 20px; margin-top: -50px; color: rgba(255,255,255,0.8); font-weight: bold; font-size: 40px; transition: 0.3s; border-radius: 0 3px 3px 0; user-select: none; z-index: 10000; }
.lightbox-nav.next { right: 20px; }
.lightbox-nav.prev { left: 20px; }
.lightbox-nav:hover { color: #fff; transform: scale(1.2); }
@keyframes zoomIn { from {transform:scale(0.95); opacity: 0;} to {transform:scale(1); opacity: 1;} }

/* --- Teknik Tablo (Açık Tema) --- */
.custom-spec-table td {
    padding: 18px 20px;
    font-size: 15px;
    border-bottom: 1px solid #eee;
}
.custom-spec-table tbody tr:nth-of-type(odd) {
    background-color: #fff;
}
.custom-spec-table tbody tr:nth-of-type(even) {
    background-color: #f9fafb;
}
.custom-spec-table tbody tr:hover {
    background-color: #f1f5f9;
}


/* =========================================
   İLGİNİZİ ÇEKEBİLİR KARTLARI (YENİ)
========================================= */

.similar-card {
    border: 1px solid #f0f0f0;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03); /* Hafif gölge */
}

.similar-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08); /* Hover'da daha belirgin gölge */
    border-color: rgba(230, 57, 70, 0.2);
}

/* Görsel Alanı */
.card-img-top {
    height: 240px; /* Daha yüksek görsel alanı */
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid #f9f9f9;
}

.card-img-top img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Görsel kutuyu tamamen kaplar */
    transition: transform 0.5s ease;
}

.similar-card:hover .card-img-top img {
    transform: scale(1.08); /* Görsel zoom efekti */
}

/* Başlık */
.card-title a {
    transition: 0.3s;
}
.similar-card:hover .card-title a {
    color: var(--accent-color) !important;
}

/* Buton */
.similar-card .btn-outline-danger {
    border-width: 2px;
    transition: 0.3s;
}

.similar-card:hover .btn-outline-danger {
    background-color: var(--accent-color);
    color: #fff;
    border-color: var(--accent-color);
    box-shadow: 0 5px 15px rgba(230, 57, 70, 0.3);
}

/* =========================================
   SCROLLBAR GÖRÜNÜRLÜK AYARLARI (Mobile & Mac Fix)
========================================= */

/* Tablo Alanı İçin Özel Scrollbar */
.table-responsive::-webkit-scrollbar {
    height: 8px; /* Yatay çubuk kalınlığı */
    width: 8px;
    -webkit-appearance: none;
    display: block !important; /* Zorla göster */
}

/* Scroll Yolu (Arka Plan) */
.table-responsive::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

/* Kaydırma Çubuğu (Tutacak) */
.table-responsive::-webkit-scrollbar-thumb {
    background-color: #b0b0b0; /* Belirgin Gri */
    border-radius: 4px;
    border: 2px solid #f1f1f1; /* Kenar boşluğu hissi */
}

/* Üzerine gelince veya dokununca renk değişsin */
.table-responsive::-webkit-scrollbar-thumb:hover,
.table-responsive::-webkit-scrollbar-thumb:active {
    background-color: var(--brand-red); /* Marka rengi */
}

/* Firefox Desteği */
.table-responsive {
    scrollbar-width: thin;
    scrollbar-color: #b0b0b0 #f1f1f1;
}

/* =========================================
   MOBİL VE TABLET ÖZEL AYARLARI (RESPONSIVE)
========================================= */

@media (max-width: 991px) {

    .navbar-toggler {
        color: #FFF;
    }



    /* 1. Büyüt Rozetini Gizle (İsteğiniz Üzerine) */
    .zoom-badge {
        display: none !important;
    }

    /* 2. Sticky Özelliğini İptal Et */
    /* Mobilde ekran kısa olduğu için yapışkan alan kapatılır, akış normal devam eder */
    .sticky-content {
        position: static !important;
        top: auto !important;
        padding-right: 0 !important;
        margin-bottom: 40px;
    }

    /* 3. Başlık Boyutlarını Küçült */
    .display-4 {
        font-size: 2.2rem !important; /* Ana Başlık */
    }
    .display-6 {
        font-size: 1.75rem !important; /* Ürün Başlığı */
    }

    /* 4. Boşlukları (Padding) Daralt */
    .section-padding {
        padding-top: 40px !important;
        padding-bottom: 40px !important;
    }
    
    .product-description {
        font-size: 15px; /* Yazı fontunu mobilde bir tık küçült */
    }

    /* 5. Tabloyu Kaydırılabilir Yap */
    /* Tablo taşarsa yatay scroll çıkar */
    .table-responsive {
        border: 1px solid #eee;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    /* Tablo hücrelerini biraz sıkılaştır */
    .custom-spec-table td {
        padding: 12px 15px;
        font-size: 14px;
        white-space: nowrap; /* Satırların kırılmasını engeller, yana kaydırır */
    }

    /* 6. Görsellerin Kenar Boşluklarını Al */
    .vertical-images {
        padding-left: 0 !important;
    }

    /* 7. Lightbox Kapatma Butonunu Ayarla */
    .lightbox-close {
        top: 15px;
        right: 15px;
        font-size: 35px;
        background: rgba(0,0,0,0.5); /* Mobilde daha rahat görünsün diye */
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
    }
    
    .lightbox-nav {
        padding: 10px;
        font-size: 30px;
        background: rgba(0,0,0,0.3); /* Okların arkasına hafif zemin */
        border-radius: 5px;
    }
}
@-ms-viewport{width:device-width}.visible-lg,.visible-md,.visible-sm,.visible-xs{display:none!important}.visible-lg-block,.visible-lg-inline,.visible-lg-inline-block,.visible-md-block,.visible-md-inline,.visible-md-inline-block,.visible-sm-block,.visible-sm-inline,.visible-sm-inline-block,.visible-xs-block,.visible-xs-inline,.visible-xs-inline-block{display:none!important}@media (max-width:767px){.visible-xs{display:block!important}table.visible-xs{display:table!important}tr.visible-xs{display:table-row!important}td.visible-xs,th.visible-xs{display:table-cell!important}}@media (max-width:767px){.visible-xs-block{display:block!important}}@media (max-width:767px){.visible-xs-inline{display:inline!important}}@media (max-width:767px){.visible-xs-inline-block{display:inline-block!important}}@media (min-width:768px) and (max-width:991px){.visible-sm{display:block!important}table.visible-sm{display:table!important}tr.visible-sm{display:table-row!important}td.visible-sm,th.visible-sm{display:table-cell!important}}@media (min-width:768px) and (max-width:991px){.visible-sm-block{display:block!important}}@media (min-width:768px) and (max-width:991px){.visible-sm-inline{display:inline!important}}@media (min-width:768px) and (max-width:991px){.visible-sm-inline-block{display:inline-block!important}}@media (min-width:992px) and (max-width:1199px){.visible-md{display:block!important}table.visible-md{display:table!important}tr.visible-md{display:table-row!important}td.visible-md,th.visible-md{display:table-cell!important}}@media (min-width:992px) and (max-width:1199px){.visible-md-block{display:block!important}}@media (min-width:992px) and (max-width:1199px){.visible-md-inline{display:inline!important}}@media (min-width:992px) and (max-width:1199px){.visible-md-inline-block{display:inline-block!important}}@media (min-width:1200px){.visible-lg{display:block!important}table.visible-lg{display:table!important}tr.visible-lg{display:table-row!important}td.visible-lg,th.visible-lg{display:table-cell!important}}@media (min-width:1200px){.visible-lg-block{display:block!important}}@media (min-width:1200px){.visible-lg-inline{display:inline!important}}@media (min-width:1200px){.visible-lg-inline-block{display:inline-block!important}}@media (max-width:767px){.hidden-xs{display:none!important}}@media (min-width:768px) and (max-width:991px){.hidden-sm{display:none!important}}@media (min-width:992px) and (max-width:1199px){.hidden-md{display:none!important}}@media (min-width:1200px){.hidden-lg{display:none!important}}.visible-print{display:none!important}@media print{.visible-print{display:block!important}table.visible-print{display:table!important}tr.visible-print{display:table-row!important}td.visible-print,th.visible-print{display:table-cell!important}}.visible-print-block{display:none!important}@media print{.visible-print-block{display:block!important}}.visible-print-inline{display:none!important}@media print{.visible-print-inline{display:inline!important}}.visible-print-inline-block{display:none!important}@media print{.visible-print-inline-block{display:inline-block!important}}@media print{.hidden-print{display:none!important}