/* --- SAF&HA KAUÇUK - MASTER STYLE.CSS (FINAL FIXED COMPLETE V4) --- */

/* =========================================
   1. TEMEL AYARLAR & DEĞİŞKENLER
   ========================================= */
:root {
    --primary: #C30010;
    --primary-dark: #9a000d;
    --bg-dark: #050505;
    --bg-surface: #121212;
    --text-main: #ffffff;
    --text-muted: #a0a0a0;
    --border: rgba(255, 255, 255, 0.1);
}

* { margin: 0; padding: 0; box-sizing: border-box; outline: none; }

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

a { text-decoration: none; color: inherit; transition: 0.3s; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* =========================================
   2. HEADER (ÜST MENÜ)
   ========================================= */
header {
    background-color: rgba(5, 5, 5, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    height: 80px;
    position: sticky; top: 0; z-index: 1000;
    display: flex; align-items: center;
}

.header-container {
    width: 100%; max-width: 1400px; margin: 0 auto; padding: 0 20px;
    display: flex; align-items: center; justify-content: space-between;
}

.brand-logo { display: flex; align-items: center; gap: 10px; }
.brand-logo img { height: 40px; }
.brand-text { font-family: 'Rajdhani', sans-serif; font-size: 24px; font-weight: 700; font-style: italic; text-transform: uppercase; letter-spacing: 1px; }
.brand-text span { color: var(--primary); }
.brand-sub { font-size: 10px; color: #888; letter-spacing: 2px; display: block; }

.nav-center { display: flex; gap: 25px; }
.nav-link { color: #aaa; font-size: 13px; font-weight: 600; text-transform: uppercase; padding: 25px 0; position: relative; }
.nav-link:hover, .nav-link.active { color: white; }
.nav-link.active::after { content: ''; position: absolute; bottom: 20px; left: 0; width: 100%; height: 2px; background: var(--primary); }

.header-right { display: flex; align-items: center; gap: 15px; }

/* Arama Kutusu */
.h-search-box { position: relative; }
.h-search-icon { position: absolute; left: 12px; top: 50%; transform: translateY(-50%); color: #666; font-size: 12px; }
.h-search-input { background: #111; border: 1px solid var(--border); color: white; padding: 8px 15px 8px 35px; border-radius: 4px; font-size: 13px; width: 220px; transition: 0.3s; }
.h-search-input:focus { border-color: var(--primary); background: black; }

/* Sepet İkonu */
.header-cart-wrapper { position: relative; cursor: pointer; margin-right: 15px; display: flex; align-items: center; justify-content: center; width: 40px; height: 40px; }
.header-cart-wrapper i { font-size: 20px; color: #aaa; transition: 0.3s; }
.header-cart-wrapper:hover i { color: white; transform: scale(1.1); }
.header-cart-badge { position: absolute; top: 0; right: 0; background-color: var(--primary); color: white; font-size: 10px; font-weight: bold; min-width: 18px; height: 18px; border-radius: 50%; display: flex; align-items: center; justify-content: center; border: 2px solid var(--bg-dark); }

/* Dil Seçimi */
.lang-wrapper { display: flex; gap: 10px; border-left: 1px solid #333; padding-left: 15px; font-size: 12px; font-weight: bold; }
.lang-item { color: #666; }
.lang-item.active { color: white; }

/* Mobil Menü */
.mobile-toggle { display: none; font-size: 24px; color: white; cursor: pointer; background: none; border: none; }
.mobile-menu-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100vh; background: rgba(0,0,0,0.8); z-index: 2000; opacity: 0; visibility: hidden; transition: 0.3s; }
.mobile-menu-content { position: fixed; top: 0; right: -280px; width: 280px; height: 100%; background: #080808; border-left: 1px solid var(--primary); z-index: 2001; padding: 25px; display: flex; flex-direction: column; transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1); }
.mobile-menu-overlay.active { opacity: 1; visibility: visible; }
.mobile-menu-content.active { right: 0; }

.m-link { display: block; padding: 15px 0; border-bottom: 1px solid #222; font-size: 16px; font-weight: 500; }
.m-link i { color: var(--primary); width: 25px; }
.m-search { width: 100%; background: #1a1a1a; border: 1px solid #333; color: white; padding: 10px; margin-bottom: 20px; border-radius: 4px; }

@media (max-width: 992px) {
    .nav-center, .header-right { display: none !important; }
    .mobile-toggle { display: block !important; }
    .header-container { padding: 0 15px; }
}
@media (min-width: 993px) { 
    .mobile-menu-content, .mobile-menu-overlay { display: none !important; } 
}

/* =========================================
   3. SAYFA DÜZENİ (GRID LAYOUT)
   ========================================= */
@media (min-width: 992px) {
    .grid-layout {
        display: grid;
        grid-template-columns: 280px 1fr;
        gap: 40px;
        padding-top: 40px;
        min-height: 80vh;
        align-items: start;
    }
    .sidebar {
        display: block; position: sticky; top: 100px;
        background: #121212; padding: 30px; border-radius: 12px; border: 1px solid var(--border);
    }
    .mobile-filter-wrapper, .sidebar-close, .sidebar-overlay { display: none !important; }
}

@media (max-width: 991px) {
    .grid-layout { display: block; }
    .mobile-filter-wrapper { display: block; margin-bottom: 20px; }
    .sidebar {
        position: fixed; top: 0; left: -320px; width: 300px; height: 100vh;
        z-index: 2000; background: #080808; border-right: 1px solid var(--primary);
        transition: 0.3s ease; overflow-y: auto; padding: 20px;
    }
    .sidebar.active { left: 0; }
    .sidebar-overlay {
        display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%;
        background: rgba(0,0,0,0.8); z-index: 1999;
    }
    .sidebar-overlay.active { display: block; }
    .sidebar-close { display: block; position: absolute; top: 20px; right: 20px; color: #666; font-size: 20px; cursor: pointer; }
    
    .mobile-filter-btn {
        width: 100%; background: #121212; color: white;
        padding: 15px; border: 1px solid var(--primary); border-radius: 8px;
        display: flex; align-items: center; justify-content: center; gap: 10px; 
        cursor: pointer; font-weight: bold;
    }
}

.filter-section { margin-bottom: 30px; }
.filter-title {
    font-family: 'Rajdhani', sans-serif; color: white; font-size: 1.2rem;
    font-weight: 700; margin-bottom: 20px; padding-bottom: 10px;
    border-bottom: 1px solid var(--border); display: flex; align-items: center; gap: 10px;
}

.custom-radio { display: flex; align-items: center; margin-bottom: 12px; cursor: pointer; color: #a0a0a0; transition: 0.3s; font-size: 14px; }
.custom-radio:hover { color: white; }
.custom-radio input { display: none; }
.checkmark {
    width: 18px; height: 18px; border: 2px solid #333; border-radius: 4px;
    margin-right: 12px; display: flex; align-items: center; justify-content: center; transition: 0.3s;
    background: transparent;
}
.custom-radio input:checked + .checkmark { border-color: var(--primary); background: var(--primary); }
.checkmark::after {
    content: '\f00c'; font-family: 'Font Awesome 6 Free'; font-weight: 900;
    color: white; font-size: 10px; transform: scale(0); transition: 0.2s;
}
.custom-radio input:checked + .checkmark::after { transform: scale(1); }

/* =========================================
   4. ÜRÜN LİSTELEME & KARTLAR
   ========================================= */
.page-search-wrapper { position: relative; margin-bottom: 30px; display: flex; align-items: center; }
.page-search-input { width: 100%; padding: 15px 20px 15px 50px; background: #121212; border: 1px solid rgba(255,255,255,0.1); color: white; border-radius: 8px; font-size: 16px; height: 55px; padding-right: 60px; }
.page-search-input:focus { border-color: var(--primary); outline: none; }
.page-search-icon { position: absolute; left: 20px; color: #666; pointer-events: none; }
.search-action-btn { position: absolute; right: 5px; top: 5px; bottom: 5px; width: 45px; background: var(--primary); color: white; border: none; border-radius: 6px; cursor: pointer; display: flex; align-items: center; justify-content: center; font-size: 18px; transition: 0.3s; }
.search-action-btn:hover { background: white; color: var(--primary); }

.sort-box { display: flex; justify-content: space-between; align-items: center; margin-bottom: 30px; background: #121212; padding: 15px; border-radius: 8px; border: 1px solid var(--border); }
.sort-select { background: black; color: white; border: 1px solid var(--border); padding: 8px 15px; border-radius: 4px; cursor: pointer; }
.result-count { color: #a0a0a0; font-size: 14px; }
.result-count strong { color: var(--primary); }

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 25px;
    width: 100%;
}

a.product-card {
    text-decoration: none; color: inherit; display: flex; flex-direction: column; cursor: pointer; height: 100%;
    background: #121212; border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 12px; overflow: hidden; transition: 0.3s ease; position: relative; width: 100%;
}
a.product-card:hover { transform: translateY(-5px); border-color: var(--primary); box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5); }

.card-img-wrapper { width: 100%; height: 220px; overflow: hidden; position: relative; background: #1a1a1a; padding: 10px; display: flex; align-items: center; justify-content: center; }
.product-img { max-width: 100%; max-height: 100%; object-fit: contain; transition: transform 0.5s ease; }
a.product-card:hover .product-img { transform: scale(1.1); }
.stock-badge { position: absolute; top: 10px; left: 10px; background: var(--primary); color: white; padding: 5px 10px; font-size: 10px; font-weight: bold; border-radius: 4px; z-index: 2; box-shadow: 0 2px 5px rgba(0,0,0,0.5); }

.product-details { padding: 20px; flex-grow: 1; display: flex; flex-direction: column; }
.product-code { font-size: 11px; color: var(--primary); font-weight: 800; letter-spacing: 1px; display: block; margin-bottom: 5px; text-transform: uppercase; }
.product-title { 
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; text-overflow: ellipsis; 
    height: 2.8em; line-height: 1.4; font-size: 1.1rem; font-weight: 600; margin-bottom: 10px; color: white; 
}
/* Fiyatsız Footer */
.product-footer { display: flex; justify-content: flex-end; align-items: center; margin-top: auto; border-top: 1px solid rgba(255,255,255,0.1); padding-top: 15px; }
.btn-icon { width:35px; height:35px; background:rgba(255,255,255,0.1); border-radius:50%; display:flex; align-items:center; justify-content:center; color:white; transition: 0.3s; flex-shrink: 0; }
a.product-card:hover .btn-icon { background: var(--primary); transform: rotate(-45deg); }

.empty-state { grid-column: 1 / -1; text-align: center; padding: 60px; border: 1px dashed #333; color: #666; }
.btn-reset { margin-top: 15px; padding: 10px 20px; background: transparent; border: 1px solid #666; color: white; cursor: pointer; border-radius: 20px; }

/* Sayfalama */
.pagination-wrapper { margin-top: 60px; display: flex; justify-content: center; gap: 10px; }
.page-btn { width: 40px; height: 40px; border: 1px solid var(--border); background: #121212; color: white; display: flex; align-items: center; justify-content: center; border-radius: 8px; transition: 0.3s; font-weight: bold; font-size: 14px; }
.page-btn:hover, .page-btn.active { background: var(--primary); border-color: var(--primary); color: white; }
.page-btn.disabled { opacity: 0.5; cursor: not-allowed; border-color: transparent; }

/* =========================================
   5. ANASAYFA (HERO & SECTIONS)
   ========================================= */
.page-header { background: radial-gradient(circle at center, #1a0505 0%, #000 100%); padding: 100px 0 60px; text-align: center; border-bottom: 1px solid var(--border); }
.page-header h1 { font-family: 'Rajdhani', sans-serif; font-size: 3.5rem; font-weight: 700; color: white; margin-bottom: 20px; text-transform: uppercase; }
.page-header p { color: #a0a0a0; max-width: 600px; margin: 0 auto; font-size: 1.2rem; }

.hero { min-height: 90vh; display: flex; align-items: center; justify-content: center; text-align: center; padding: 0 20px; position: relative; background: url('https://images.unsplash.com/photo-1486262715619-67b85e0b08d3?q=80&w=1600&auto=format&fit=crop') no-repeat center center/cover !important; }
.hero::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.4); z-index: 1; }
.hero-content { position: relative; z-index: 2; }
.hero-title { font-size: 4rem; line-height: 1.1; margin-bottom: 25px; font-weight: 800; color: #fff; font-family: 'Rajdhani', sans-serif; text-transform: uppercase; }
/* Hero Açıklaması - Masaüstü Ortalaması */
.hero-desc { font-size: 1.25rem; color: #e0e0e0; max-width: 800px; margin: 0 auto 40px auto; line-height: 1.6; }
.hero-badge { background: rgba(195, 0, 16, 0.15); border: 1px solid #d32f2f; color: #ff4d4d; padding: 8px 20px; border-radius: 50px; font-size: 0.85rem; font-weight: 700; margin-bottom: 25px; display: inline-flex; align-items: center; gap: 8px; letter-spacing: 1px; text-transform: uppercase; }

.btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px; padding: 16px 35px; font-family: 'Rajdhani', sans-serif; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; border-radius: 4px; transition: 0.3s; font-size: 15px; border: 2px solid transparent; }
.btn-primary { background-color: #C30010; color: white; border-color: #C30010; box-shadow: 0 4px 15px rgba(195, 0, 16, 0.4); }
.btn-primary:hover { background: transparent; color: #C30010; }
.btn-secondary { background: transparent; color: white; border-color: rgba(255, 255, 255, 0.4); }
.btn-secondary:hover { background: white; color: black; border-color: white; }
.btn-group { display: flex; gap: 20px; flex-wrap: wrap; margin-top: 35px; justify-content: center; }

.products-section { padding: 80px 0; background-color: #0a0a0a; }
.product-grid-home { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.section-header h2 { font-size: 2.5rem; color: #fff; font-family: 'Rajdhani', sans-serif; font-weight: 700; }

@media (max-width: 1200px) { .product-grid-home { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 991px) { .product-grid-home { grid-template-columns: repeat(2, 1fr); } }

/* Why Us */
.why-us-section { padding: 100px 0; background: linear-gradient(180deg, #050505 0%, #000 100%); border-top: 1px solid rgba(255,255,255,0.05); }
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; margin-top: 40px; }
.feature-box { background: #141414; padding: 40px 30px; border-radius: 16px; border: 1px solid rgba(255,255,255,0.1); text-align: center; transition: transform 0.3s ease; }
.feature-box:hover { transform: translateY(-5px); background: #1a1a1a; border-color: var(--primary); }
.feature-icon { font-size: 40px; color: var(--primary); margin-bottom: 20px; display: inline-block; }
.feature-title { color: white; font-size: 1.5rem; margin-bottom: 15px; font-family: 'Rajdhani', sans-serif; font-weight: 600; }
.feature-desc { color: #888; font-size: 0.95rem; line-height: 1.6; }

/* =========================================
   6. KURUMSAL (ABOUT) SAYFASI - MASAÜSTÜ
   ========================================= */
.about-section { padding: 60px 0; }
.about-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; margin-top: 30px; }

.about-card {
    background: #0f0f0f;
    padding: 50px 30px; 
    min-height: 300px; /* İdeal Yükseklik */
    border: 1px solid #222; border-radius: 16px; text-align: center; transition: all 0.4s ease;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
}
.about-card:hover { transform: translateY(-10px); border-color: var(--primary); box-shadow: 0 10px 30px rgba(195, 0, 16, 0.15); }

.about-card .icon-box {
    width: 90px; height: 90px; background: rgba(255, 255, 255, 0.03); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 40px; color: var(--primary); margin-bottom: 25px; transition: 0.4s;
}
.about-card:hover .icon-box { background: var(--primary); color: white; transform: scale(1.1); }

/* BÜYÜK VE OKUNAKLI FONTLAR */
.about-card h2 { font-family: 'Rajdhani', sans-serif; font-size: 2.2rem; font-weight: 700; color: white; margin-bottom: 15px; letter-spacing: 1px; }
.about-card p { color: #b0b0b0; font-size: 1.15rem; line-height: 1.6; max-width: 90%; margin: 0; }

/* =========================================
   7. İLETİŞİM (CONTACT) SAYFASI
   ========================================= */
.contact-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; margin: 40px 0 60px; }
.contact-card { background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.05); padding: 40px 20px; border-radius: 12px; text-align: center; transition: 0.3s; }
.contact-card:hover { border-color: var(--primary); transform: translateY(-5px); }
.contact-icon { width: 70px; height: 70px; background: rgba(195, 0, 16, 0.1); color: var(--primary); font-size: 28px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; }
.btn-action { display: inline-block; padding: 10px 30px; border: 1px solid rgba(255,255,255,0.2); color: white; border-radius: 30px; font-weight: 600; text-decoration: none; transition: 0.3s; }
.btn-action:hover { background: white; color: black; }
.map-section { height: 450px; background: #111; border-radius: 12px; overflow: hidden; margin-top: 40px; }

/* =========================================
   8. ÜRÜN DETAY (PRODUCT DETAIL)
   ========================================= */
/* BU KISIM EKSİK KALMIŞTI - EKLENDİ */
.product-detail-container { max-width: 1200px; margin: 40px auto; padding: 0 20px; }
.product-wrapper { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: start; }

.product-image-box { 
    width: 100%; border-radius: 15px; border: 1px solid #333; 
    background: #1a1a1a; height: 500px; 
    display: flex; align-items: center; justify-content: center; overflow: hidden; 
}
.product-image-box img { max-width: 100%; max-height: 100%; object-fit: contain; }

.btn-add-cart { 
    width: 100%; background: var(--primary); color: white; 
    padding: 18px; border-radius: 8px; font-weight: bold; font-size: 1.1rem; 
    cursor: pointer; border: none; transition: 0.3s; 
    display: flex; align-items: center; justify-content: center; gap: 10px; 
}
.btn-add-cart:hover { background: #9a000d; }

/* =========================================
   9. SEPET MODALI (CART MODAL)
   ========================================= */
/* BU KISIM EKSİK KALMIŞTI - EKLENDİ */
.custom-modal-overlay { 
    position: fixed; top: 0; left: 0; width: 100%; height: 100%; 
    background: rgba(0, 0, 0, 0.85); backdrop-filter: blur(5px); 
    display: none; justify-content: center; align-items: center; z-index: 3000; 
}
/* JS bu class'ı ekleyince modal açılır */
.custom-modal-overlay.active { display: flex; }

.cart-modal-content { 
    background: #121212; border: 2px solid var(--primary); border-radius: 15px; 
    width: 90%; max-width: 450px; box-shadow: 0 0 30px rgba(195, 0, 16, 0.4); 
    overflow: hidden; animation: fadeIn 0.3s ease;
}
@keyframes fadeIn { from { opacity: 0; transform: scale(0.9); } to { opacity: 1; transform: scale(1); } }

.cart-header { 
    background: var(--primary); padding: 15px 20px; 
    display: flex; justify-content: space-between; align-items: center; 
    font-weight: 700; color: white; font-family: 'Rajdhani', sans-serif; font-size: 1.2rem;
}
.cart-close-btn { background: none; border: none; color: white; font-size: 24px; cursor: pointer; }

.cart-body { padding: 20px; max-height: 60vh; overflow-y: auto; }
.cart-footer { padding: 20px; border-top: 1px solid #333; background: #0a0a0a; }

/* =========================================
   10. FOOTER & YUKARI ÇIK
   ========================================= */
footer { background: #050505; border-top: 1px solid #222; padding: 60px 0 20px; margin-top: auto; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.social-link { width: 45px; height: 45px; border-radius: 50%; background: rgba(255, 255, 255, 0.05); display: flex; align-items: center; justify-content: center; color: white; font-size: 18px; transition: 0.3s; }
.social-link:hover { background: var(--primary); }
.footer-social { display: flex; flex-direction: row; gap: 15px; margin-top: 20px; }

#scrollTopBtn { position: fixed; bottom: 30px; right: 30px; z-index: 10001; border: none; background: var(--primary); color: white; padding: 15px; border-radius: 50%; font-size: 18px; opacity: 0; visibility: hidden; transition: 0.4s; transform: translateY(20px); cursor: pointer; }
#scrollTopBtn.show { opacity: 1; visibility: visible; transform: translateY(0); }
#scrollTopBtn:hover { background: white; color: var(--primary); }

/* =========================================
   11. MOBİL UYUMLULUK (TÜM CİHAZLAR İÇİN TEK YERDE)
   ========================================= */
@media (max-width: 576px) {
    /* 1. ÜRÜNLERİ YAN YANA (2 SÜTUN) YAPMA */
    .product-grid, .product-grid-home {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px !important;
        padding: 0 5px;
    }
    .card-img-wrapper { height: 140px !important; padding: 10px !important; }
    .product-details { padding: 10px !important; }
    .product-title { font-size: 13px !important; height: 38px !important; margin-bottom: 5px !important; line-height: 1.3 !important; -webkit-line-clamp: 2 !important; }
    .product-code { font-size: 10px !important; margin-bottom: 2px !important; }
    .stock-badge { font-size: 9px !important; padding: 2px 6px !important; top: 5px !important; left: 5px !important; }

    /* 2. ANASAYFA HERO MOBİL */
    .hero { padding: 80px 0; }
    .hero-title { font-size: 2.5rem !important; }
    .btn-group { flex-direction: row !important; gap: 10px !important; width: 100%; padding: 0 10px; }
    .btn { width: 50% !important; padding: 12px 5px !important; font-size: 12px !important; white-space: nowrap; }
    .hero .btn i { margin-left: 5px; }

    /* 3. İLETİŞİM SAYFASI MOBİL (YAN YANA 2 KUTU) */
    .contact-grid {
        display: grid;
        grid-template-columns: 1fr 1fr !important;
        gap: 10px !important;
        padding: 0 5px;
    }
    .contact-card {
        padding: 20px 10px !important; min-height: 160px;
        display: flex; flex-direction: column; justify-content: center; align-items: center;
    }
    .contact-icon { width: 40px !important; height: 40px !important; font-size: 18px !important; margin-bottom: 10px !important; }
    .contact-card h3 { font-size: 14px !important; margin-bottom: 5px !important; }
    .contact-card p { font-size: 11px !important; line-height: 1.3; word-break: break-word; }
    .btn-action { padding: 6px 15px !important; font-size: 11px !important; margin-top: auto; }

    /* 4. KURUMSAL (ABOUT) MOBİL (YAN YANA 2 KUTU) */
    .about-grid {
        grid-template-columns: 1fr 1fr !important;
        gap: 10px !important;
    }
    .about-card { padding: 20px 10px !important; min-height: auto !important; }
    .about-card .icon-box { width: 45px !important; height: 45px !important; font-size: 20px !important; margin-bottom: 10px !important; }
    .about-card h2 { font-size: 14px !important; margin-bottom: 5px !important; }
    .about-card p { font-size: 11px !important; line-height: 1.3 !important; -webkit-line-clamp: 4; -webkit-box-orient: vertical; overflow: hidden; display: -webkit-box; }

    /* 5. FOOTER & DETAY MOBİL */
    .footer-grid { grid-template-columns: 1fr; text-align: center; }
    .footer-social { justify-content: center !important; }
    .product-wrapper { display: block !important; padding: 0 !important; }
    .product-image-box { width: 100% !important; height: auto !important; max-height: 400px !important; padding: 10px !important; margin-bottom: 20px !important; }
}
/* =========================================
   12. YENİ ÖZELLİKLER (MODAL & CLICKABLE CARDS)
   ========================================= */

/* A. Kurumsal Modal Tasarımı */
.about-modal-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.9); /* Arkaplanı karart */
    backdrop-filter: blur(8px); /* Arkadaki siteyi bulanıklaştır */
    z-index: 10000;
    display: none; /* Varsayılan gizli */
    justify-content: center; align-items: center;
    opacity: 0; transition: opacity 0.3s ease;
}
.about-modal-overlay.active { display: flex; opacity: 1; }

.about-modal-content {
    background: #121212; border: 2px solid var(--primary);
    padding: 40px; border-radius: 20px;
    width: 90%; max-width: 600px;
    text-align: center; position: relative;
    transform: scale(0.8); transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 0 50px rgba(195, 0, 16, 0.3);
}
.about-modal-overlay.active .about-modal-content { transform: scale(1); }

.modal-close-btn {
    position: absolute; top: 15px; right: 20px;
    font-size: 30px; color: #666; cursor: pointer; transition: 0.3s;
}
.modal-close-btn:hover { color: var(--primary); transform: rotate(90deg); }

.modal-icon { font-size: 60px; color: var(--primary); margin-bottom: 20px; }
.modal-title { font-family: 'Rajdhani', sans-serif; font-size: 2rem; color: white; margin-bottom: 15px; }
.modal-text { color: #ccc; font-size: 1.1rem; line-height: 1.8; }

/* B. Tıklanabilir Kartlar (Cursor Ayarı) */
.clickable-card { cursor: pointer; position: relative; }
.clickable-card:active { transform: scale(0.98); } /* Tıklama hissi */
/* =========================================
   MOBİL ANASAYFA BUTONLARI (YAN YANA)
   ========================================= */
@media (max-width: 576px) {
    /* Butonları kapsayan kutu */
    .hero .btn-group {
        display: flex !important;
        flex-direction: row !important; /* Yan yana diz */
        align-items: center !important;
        justify-content: center !important;
        gap: 10px !important; /* Aralarına 10px boşluk */
        width: 100% !important;
        padding: 0 15px !important; /* Kenarlardan boşluk */
        margin-top: 20px !important;
    }

    /* Butonların kendisi */
    .hero .btn {
        flex: 1 !important; /* Bulundukları yeri eşit paylaşsınlar */
        width: auto !important; 
        padding: 14px 5px !important; /* İç boşluğu biraz azalt sığsın */
        font-size: 12px !important; /* Mobilde yazı puntosu */
        white-space: nowrap !important; /* Yazı asla alt satıra geçmesin */
        height: 48px !important; /* Eşit yükseklik */
    }
    
    /* İkon ile yazı arasındaki boşluk */
    .hero .btn i {
        margin-left: 4px !important; 
    }
}