:root {
    --primary-dark: #0B192E;
    --primary-blue: #0F2042;
    --accent-orange: #FFA500;
    --accent-yellow: #FFC72C;
    --accent-pink: #E91E63;
    --accent-green: #28a745;
    --text-dark: #1D1D1D;
    --text-light: #666;
    --bg-light: #F8F9FA;
    --border-color: #E5E7EB;
}

/* Kategori Filtre Butonları - Yatay Kaydırılabilir */
.category-filter-wrapper {
    margin-bottom: 30px;
    width: 100%;
    overflow: hidden;
}

.category-filter-scroll {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 10px;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    /* Scrollbar gizle ama kaydırma çalışsın */
    scrollbar-width: thin;
    scrollbar-color: var(--accent-orange) transparent;
}

.category-filter-scroll::-webkit-scrollbar {
    height: 6px;
}

.category-filter-scroll::-webkit-scrollbar-track {
    background: #f0f0f0;
    border-radius: 10px;
}

.category-filter-scroll::-webkit-scrollbar-thumb {
    background: var(--accent-orange);
    border-radius: 10px;
}

.category-filter-scroll::-webkit-scrollbar-thumb:hover {
    background: #e68900;
}

.category-filter-btn {
    padding: 10px 20px;
    background: #f0f0f0;
    color: #333;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    white-space: nowrap;
    flex-shrink: 0;
    transition: all 0.3s ease;
    display: inline-block;
    font-size: 14px;
}

.category-filter-btn:hover {
    background: #e0e0e0;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.category-filter-btn.active {
    background: var(--accent-orange);
    color: #fff;
    box-shadow: 0 4px 12px rgba(255, 165, 0, 0.3);
}

.category-filter-btn.active:hover {
    background: #e68900;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(255, 165, 0, 0.4);
}

* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Outfit', sans-serif; }
html { overflow-x: hidden; width: 100%; }
body { background-color: #fff; color: var(--text-dark); line-height: 1.6; overflow-x: hidden; display: flex; flex-direction: column; min-height: 100vh; width: 100%; max-width: 100vw; }
a { text-decoration: none; color: inherit; transition: 0.3s; }
ul { list-style: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 15px; position: relative; width: 100%; }
img { max-width: 100%; height: auto; display: block; }

/* --- TOP BAR --- */
.top-bar { background-color: var(--primary-dark); color: #fff; font-size: 12px; height: 45px; display: flex; align-items: center; border-bottom: 1px solid rgba(255,255,255,0.1); }
.top-flex { display: flex; justify-content: space-between; align-items: center; width: 100%; }
.top-right { display: flex; align-items: center; gap: 15px; margin-left: auto; }
.panel-btn { background-color: #112b55; padding: 5px 15px; border-radius: 6px; font-weight: 600; display: flex; align-items: center; gap: 8px; font-size: 12px; cursor: pointer; }
.panel-btn:hover { background: var(--accent-orange); color: #fff; }

/* --- MOBİL ÜST BAR (Dil ve Döviz) --- */
.mobile-top-bar {
    display: none;
    background: #fff;
    border-bottom: 1px solid #e0e0e0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    min-height: 32px;
}

/* Dil Dropdown Stili */
.mobile-language-wrapper {
    position: relative;
}

.mobile-language-btn {
    transition: all 0.3s ease;
}

.mobile-language-btn:hover {
    background: var(--accent-orange) !important;
    transform: scale(1.02);
}

.mobile-language-dropdown {
    animation: fadeInDown 0.2s ease;
}

.mobile-language-option {
    clear: both;
}

.mobile-language-option:hover {
    background: #f8f9fa !important;
    color: var(--accent-orange) !important;
}

.mobile-language-option.active {
    background: #fff3e0 !important;
}

/* Döviz Dropdown Stili */
.mobile-currency-wrapper {
    position: relative;
}

.mobile-currency-btn {
    transition: all 0.3s ease;
}

.mobile-currency-btn:hover {
    background: var(--accent-orange) !important;
    transform: scale(1.02);
}

.mobile-currency-dropdown {
    animation: fadeInDown 0.2s ease;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.mobile-currency-option {
    clear: both;
}

.mobile-currency-option:hover {
    background: #f8f9fa !important;
    color: var(--accent-orange) !important;
}

.mobile-currency-option.active {
    background: #fff3e0 !important;
}

/* --- USER DROPDOWN MENU --- */
.user-menu-wrapper { position: relative; }
.user-dropdown-menu {
    position: absolute;
    top: calc(100% + 5px);
    right: 0;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    border-radius: 8px;
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1001;
    border: 1px solid #e0e0e0;
    overflow: hidden;
}
.user-dropdown-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.user-menu-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    color: var(--text-dark);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s;
    border-bottom: 1px solid #f5f5f5;
}
.user-menu-item:last-child {
    border-bottom: none;
}
.user-menu-item:hover {
    background: #f8f9fa;
    color: var(--accent-orange);
    padding-left: 25px;
}
.user-menu-item i {
    width: 18px;
    text-align: center;
    color: var(--primary-blue);
}
.user-menu-item:hover i {
    color: var(--accent-orange);
}
.user-menu-divider {
    height: 1px;
    background: #e0e0e0;
    margin: 5px 0;
}

/* --- YENİ EKLENEN: HEADER SEPET & DİL --- */
.header-extras { display: flex; align-items: center; gap: 15px; margin-left: 20px; padding-left: 20px; border-left: 1px solid rgba(0,0,0,0.1); }
.lang-box { cursor: pointer; font-weight: 700; font-size: 13px; display: flex; align-items: center; gap: 3px; }
.cart-box { 
    position: relative; 
    cursor: pointer; 
    font-size: 18px; 
    color: var(--primary-blue);
    transition: all 0.3s ease;
}
.cart-box:hover {
    color: var(--accent-orange);
    transform: scale(1.1);
}
.cart-badge { 
    position: absolute; 
    top: -8px; 
    right: -8px; 
    background: var(--accent-orange); 
    color: #fff; 
    font-size: 10px; 
    min-width: 18px;
    height: 18px; 
    border-radius: 50%; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    font-weight: 700;
    padding: 0 4px;
}

/* Sepet Dropdown */
.cart-box-wrapper {
    position: relative;
}

.cart-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    border-radius: 8px;
    min-width: 320px;
    max-width: 400px;
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    border: 1px solid #e0e0e0;
    overflow: hidden;
}

.cart-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.cart-dropdown-header {
    padding: 15px 20px;
    background: var(--primary-dark);
    color: #fff;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-dropdown-body {
    max-height: 400px;
    overflow-y: auto;
    padding: 10px;
}

.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    border-bottom: 1px solid #f0f0f0;
    gap: 10px;
}

.cart-item:last-child {
    border-bottom: none;
}

.cart-item-info {
    flex: 1;
}

.cart-item-name {
    font-weight: 600;
    font-size: 14px;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.cart-item-price {
    font-size: 12px;
    color: var(--accent-orange);
    font-weight: 600;
}

.cart-item-remove {
    background: var(--accent-pink);
    color: #fff;
    border: none;
    padding: 5px 10px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 12px;
}

.cart-dropdown-footer {
    padding: 15px 20px;
    background: #f8f9fa;
    border-top: 1px solid #e0e0e0;
}

.cart-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    font-weight: 700;
    font-size: 16px;
}

.cart-actions {
    display: flex;
    gap: 10px;
}

.cart-btn {
    flex: 1;
    padding: 10px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.cart-btn-primary {
    background: var(--accent-orange);
    color: #fff;
}

.cart-btn-primary:hover {
    background: var(--primary-dark);
}

.cart-btn-secondary {
    background: #e0e0e0;
    color: var(--text-dark);
}

.cart-empty {
    padding: 40px 20px;
    text-align: center;
    color: #999;
}

.cart-empty i {
    font-size: 48px;
    margin-bottom: 15px;
    opacity: 0.5;
}

/* Toast Notification */
.toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.toast {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    padding: 16px 20px;
    min-width: 300px;
    max-width: 400px;
    display: flex;
    align-items: center;
    gap: 15px;
    transform: translateX(400px);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    border-left: 4px solid var(--accent-green);
}

.toast.show {
    transform: translateX(0);
    opacity: 1;
}

.toast.success {
    border-left-color: var(--accent-green);
}

.toast.error {
    border-left-color: var(--accent-pink);
}

.toast.warning {
    border-left-color: var(--accent-yellow);
}

.toast-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.toast.success .toast-icon {
    background: rgba(40, 167, 69, 0.1);
    color: var(--accent-green);
}

.toast.error .toast-icon {
    background: rgba(233, 30, 99, 0.1);
    color: var(--accent-pink);
}

.toast.warning .toast-icon {
    background: rgba(255, 199, 7, 0.1);
    color: var(--accent-yellow);
}

.toast-content {
    flex: 1;
}

.toast-title {
    font-weight: 700;
    font-size: 14px;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.toast-message {
    font-size: 13px;
    color: var(--text-light);
}

.toast-close {
    background: none;
    border: none;
    color: var(--text-light);
    font-size: 18px;
    cursor: pointer;
    padding: 0;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.toast-close:hover {
    color: var(--text-dark);
}

/* Sepet Sayfası Responsive */
@media (max-width: 768px) {
    .cart-layout {
        grid-template-columns: 1fr !important;
    }
    
    .cart-item-page {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 15px !important;
    }
    
    .cart-item-page > div:last-child {
        width: 100% !important;
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
    }
}

/* --- HEADER & NAV --- */
.mobile-top-bar { position: sticky; top: 0; z-index: 1001; }
header { border-bottom: 1px solid var(--border-color); background: #fff; position: sticky; top: 0; z-index: 1000; box-shadow: 0 2px 10px rgba(0,0,0,0.05); }
.nav-flex { display: flex; justify-content: space-between; align-items: center; min-height: 70px; padding: 10px 0; }
.logo { font-size: 26px; font-weight: 800; color: var(--primary-blue); display: flex; align-items: center; gap: 8px; z-index: 1002; }
.logo span { color: var(--accent-orange); }

/* Arama İkonu */
.search-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--primary-blue);
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 8px;
    border-radius: 50%;
    width: 40px;
    height: 40px;
}

.search-icon:hover {
    background: rgba(15, 32, 66, 0.1);
    transform: scale(1.1);
}

.search-icon i {
    transition: transform 0.3s ease;
}

.search-icon:hover i {
    transform: scale(1.1);
}

/* Masaüstü ve Mobil Görünürlük */
.desktop-only {
    display: flex;
}

.mobile-only {
    display: none;
}

/* Hamburger Menü İkonu (Mobilde Görünür) - Artık kullanılmıyor, footer'da var */
.mobile-toggle { 
    display: none !important; 
}

nav > ul { display: flex; gap: 25px; height: 100%; align-items: center; }
nav > ul > li { position: relative; padding: 35px 0; }
nav > ul > li > a { font-weight: 600; color: var(--text-dark); font-size: 16px; display: flex; align-items: center; gap: 5px; }
nav > ul > li > a:hover { color: var(--primary-blue); }

/* AI Badge */
.ai-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #E91E63;
    color: #fff;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.3px;
    margin-left: 8px;
    line-height: 1;
    vertical-align: middle;
    box-shadow: 0 2px 4px rgba(233, 30, 99, 0.3);
    transition: all 0.3s ease;
    min-width: 32px;
    height: 20px;
}

nav > ul > li > a:hover .ai-badge {
    background: #C2185B;
    box-shadow: 0 3px 6px rgba(233, 30, 99, 0.4);
    transform: translateY(-1px);
}

/* --- SUB-MENUS & MEGA MENU --- */
.sub-menu, .mega-menu {
    position: absolute; top: 100%; left: 0; background: #fff; 
    box-shadow: 0 15px 50px rgba(0,0,0,0.4) !important; border-radius: 0 0 8px 8px;
    opacity: 0; visibility: hidden; transform: translateY(10px); transition: 0.3s; z-index: 999;
}
nav > ul > li:hover .sub-menu, nav > ul > li:hover .mega-menu { opacity: 1; visibility: visible; transform: translateY(0); }

.sub-menu { width: 280px; border-top: 3px solid var(--accent-orange); box-shadow: 0 15px 50px rgba(0,0,0,0.4) !important; }
.sub-menu li { border-bottom: 1px solid #f5f5f5; }
.sub-menu li a { padding: 12px 20px; display: block; font-size: 14px; color: #555; font-weight: 500; }
.sub-menu li a:hover { background: #f9f9f9; color: var(--accent-orange); padding-left: 25px; }
.sub-menu li a small { display: block; margin-top: 4px; font-weight: 400; line-height: 1.4; }

.mega-menu { left: -50px; width: 280px; background: var(--primary-dark); padding: 20px 0; box-shadow: 0 15px 50px rgba(0,0,0,0.4) !important; }
.mm-list li { border-bottom: 1px solid rgba(255,255,255,0.05); }
.mm-list li a { padding: 12px 20px; display: block; color: #fff; font-size: 14px; font-weight: 500; }
.mm-list li a:hover { background: rgba(255,255,255,0.1); color: var(--accent-orange); padding-left: 25px; }
.mm-title { padding: 10px 20px; color: var(--accent-green); font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; }

/* --- HOSTING MEGA MENU --- */
.hosting-mega-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 700px;
    background: #fff;
    box-shadow: 0 15px 50px rgba(0,0,0,0.4) !important;
    border-radius: 0 0 8px 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: 0.3s;
    z-index: 999;
    padding: 30px;
    border-top: 3px solid var(--accent-orange);
}

nav > ul > li:hover .hosting-mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.hosting-menu-header {
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #eee;
}

.hosting-menu-header h3 {
    font-size: 18px;
    font-weight: 800;
    color: var(--primary-dark);
    margin: 0;
}

.hosting-menu-content {
    display: grid;
    grid-template-columns: 1fr 200px;
    gap: 40px;
}

.hosting-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.hosting-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 25px 15px;
    border: 1px solid #eee;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s;
    background: #fff;
}

.hosting-card:hover {
    border-color: var(--primary-blue);
    background: #f8f9ff;
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.hosting-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f0f4ff;
    border-radius: 50%;
    margin-bottom: 15px;
    font-size: 28px;
    color: var(--primary-blue);
}

.hosting-card h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 8px;
}

.hosting-card p {
    font-size: 13px;
    color: #666;
    margin: 0;
}

.hosting-quick-access {
    border-left: 1px solid #eee;
    padding-left: 30px;
}

.quick-access-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.quick-access-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.quick-access-list li {
    margin-bottom: 12px;
}

.quick-access-list li a {
    color: #555;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: 0.3s;
    display: block;
    padding: 5px 0;
}

.quick-access-list li a:hover {
    color: var(--accent-orange);
    padding-left: 10px;
}

/* --- HERO SLIDER --- */
.hero-section { background-color: #F8F9FA; padding: 15px 0 15px 0; width: 100%; overflow: hidden; }
.slider-container { 
    width: 100%; 
    max-width: 1200px; 
    height: 480px; 
    margin: 0 auto; 
    position: relative; 
    border-radius: 15px; 
    overflow: hidden; 
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    display: flex;
    align-items: center;
    gap: 0;
}
.slider-wrapper { display: flex; width: 100%; height: 100%; transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1); }
.slide { min-width: 100%; height: 100%; display: flex; justify-content: space-between; align-items: center; padding: 0 80px; color: white; position: relative; width: 100%; }
.slide-1 { background: linear-gradient(105deg, #0F2042 0%, #1a3b70 100%); }
.slide-2 { background: linear-gradient(105deg, #FF9800 0%, #FF5722 100%); }
.slide-3 { background: linear-gradient(105deg, #E91E63 0%, #880E4F 100%); }
.banner-content { flex: 1; z-index: 2; text-align: left; }
.banner-content h2 { font-size: 18px; margin-bottom: 15px; opacity: 0.9; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--accent-yellow); }
.banner-content h1 { font-size: 52px; font-weight: 800; margin-bottom: 20px; line-height: 1.1; }
.banner-content p { font-size: 18px; opacity: 0.9; margin-bottom: 30px; max-width: 600px; line-height: 1.6; }
.banner-btn { background: #fff; color: #333; padding: 15px 40px; border-radius: 50px; display: inline-block; font-weight: 700; transition: 0.3s; box-shadow: 0 5px 15px rgba(0,0,0,0.2); }
.banner-btn:hover { transform: translateY(-3px); box-shadow: 0 10px 20px rgba(0,0,0,0.3); }
.slide-decor { flex: 1; display: flex; justify-content: flex-end; align-items: center; font-size: 250px; opacity: 0.2; z-index: 1; transform: rotate(-10deg); }
.slider-btn { 
    position: absolute; 
    top: 50% !important; 
    transform: translateY(-50%) !important; 
    background: rgba(255,255,255,0.2); 
    color: white; 
    border: none; 
    padding: 15px; 
    cursor: pointer; 
    border-radius: 50%; 
    font-size: 20px; 
    z-index: 10; 
    transition: 0.3s; 
    backdrop-filter: blur(5px);
    margin: 0;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
} 
.slider-btn:hover { background: rgba(255,255,255,0.4); }
.prev-btn { left: 20px !important; right: auto !important; } 
.next-btn { right: 20px !important; left: auto !important; }

/* --- HERO RANKER (TEK SLIDE) --- */
.single-hero {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 32px;
    background: radial-gradient(circle at 20% 20%, rgba(255,255,255,0.08), transparent 35%), linear-gradient(120deg, #0F2042 0%, #132a57 45%, #0f1d3b 100%);
    border-radius: 18px;
    padding: 42px 38px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 45px rgba(0,0,0,0.22);
}
.single-hero::after {
    content: '';
    position: absolute;
    width: 320px;
    height: 320px;
    background: rgba(255,255,255,0.04);
    border-radius: 50%;
    right: -60px;
    top: -80px;
    filter: blur(2px);
}
.hero-intro { position: relative; z-index: 1; color: #fff; display: flex; flex-direction: column; gap: 18px; }
.hero-intro h1 { font-size: 42px; line-height: 1.15; font-weight: 800; margin: 0; }
.hero-intro p { font-size: 17px; color: rgba(255,255,255,0.85); line-height: 1.7; margin: 0; max-width: 640px; }
.hero-pill-row { display: flex; flex-wrap: wrap; gap: 10px; }
.hero-pill { display: inline-flex; align-items: center; gap: 8px; padding: 8px 14px; border: 1px solid rgba(255,255,255,0.2); color: #fff; border-radius: 999px; font-size: 13px; letter-spacing: 0.3px; background: rgba(255,255,255,0.08); backdrop-filter: blur(4px); }
.hero-pill.success { background: #1fc36c; border-color: #1fc36c; color: #0f1d3b; font-weight: 700; }
.hero-pill.ghost { background: transparent; }
.hero-highlights { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 12px; margin-top: 6px; }
.highlight-chip { display: inline-flex; align-items: center; gap: 10px; padding: 12px 14px; background: rgba(0,0,0,0.18); border-radius: 12px; color: rgba(255,255,255,0.9); border: 1px solid rgba(255,255,255,0.08); font-weight: 600; }
.highlight-chip i { color: var(--accent-orange); }

.rank-card {
    position: relative;
    z-index: 1;
    background: #fff;
    border-radius: 18px;
    padding: 26px 26px 24px 26px;
    box-shadow: 0 20px 45px rgba(0,0,0,0.14);
    display: flex;
    flex-direction: column;
    gap: 16px;
    color: var(--primary-dark);
}
.rank-card-head { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.pill { display: inline-flex; align-items: center; gap: 8px; padding: 8px 12px; border-radius: 10px; font-weight: 700; font-size: 13px; }
.pill.success { background: rgba(31,195,108,0.12); color: #11975a; border: 1px solid rgba(31,195,108,0.35); }
.pill.ghost { background: #f3f5fb; color: #415070; border: 1px solid #e3e7f2; }

.rank-tabs { display: inline-flex; gap: 8px; background: #f5f7fb; padding: 6px; border-radius: 12px; align-self: flex-start; }
.rank-tab { border: none; background: transparent; padding: 10px 14px; border-radius: 10px; font-weight: 700; color: #5a6583; cursor: pointer; transition: 0.25s; }
.rank-tab.active { background: #fff; color: var(--primary-blue); box-shadow: 0 8px 18px rgba(20,56,118,0.08); }

.rank-form { display: flex; flex-direction: column; gap: 12px; }
.rank-form label { font-weight: 700; color: #15233f; font-size: 14px; }
.input-with-icon { display: flex; align-items: center; gap: 10px; background: #f7f8fc; border: 1px solid #e7eaf2; border-radius: 12px; padding: 12px 14px; transition: 0.2s; }
.input-with-icon i { color: #7a86a5; }
.input-with-icon input { border: none; background: transparent; outline: none; width: 100%; font-size: 15px; color: #15233f; }
.input-with-icon:focus-within { border-color: var(--primary-blue); box-shadow: 0 0 0 4px rgba(44,100,255,0.08); }

.rank-helpers { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 4px; }
.helper-chip { display: inline-flex; align-items: center; gap: 8px; padding: 9px 12px; background: #f3f5fb; color: #52607f; border-radius: 10px; font-weight: 600; border: 1px solid #e6e9f2; font-size: 13px; }
.helper-chip i { color: var(--primary-blue); }

.rank-form-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 4px; }
.ghost-btn, .primary-btn { border: none; border-radius: 12px; padding: 12px 18px; font-weight: 800; font-size: 14px; cursor: pointer; transition: 0.25s; }
.ghost-btn { background: #f4f6fb; color: #2a3652; border: 1px solid #e3e8f1; }
.ghost-btn:hover { background: #e9edf7; }
.primary-btn { background: linear-gradient(135deg, var(--accent-orange), #ff7a18); color: #fff; box-shadow: 0 12px 25px rgba(255,122,24,0.3); }
.primary-btn:hover { filter: brightness(1.03); transform: translateY(-1px); }

.inline-results {
    margin-top: 24px;
    background: #fff;
    border: 1px solid #e8ecf5;
    border-radius: 16px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.06);
    overflow: hidden;
}
.inline-results .results-section { padding: 20px 22px; display: flex; flex-direction: column; gap: 14px; }
.results-header { display: flex; align-items: center; gap: 10px; color: var(--primary-dark); }
.results-header h3 { margin: 0; font-size: 16px; letter-spacing: 1px; }
.success-message { display: flex; align-items: flex-start; gap: 10px; background: #f3fbf7; border: 1px solid #ddf3e7; padding: 12px 14px; border-radius: 12px; color: #0f5132; }
.warning-message { display:flex; align-items:center; gap:8px; background:#fff8e6; border:1px solid #ffe2a8; padding:10px 12px; border-radius:10px; color:#8a5b00; font-weight:600; }
.position-details { display: grid; grid-template-columns: auto 1fr; gap: 14px; align-items: center; }
.position-card { background: linear-gradient(135deg, #1fc36c, #16a45a); color: #fff; padding: 14px 16px; border-radius: 12px; text-align: center; min-width: 90px; }
.position-number { font-size: 32px; font-weight: 800; line-height: 1; }
.position-label { font-size: 12px; letter-spacing: 0.6px; text-transform: uppercase; opacity: 0.9; }
.position-info h4 { margin: 0 0 6px 0; font-size: 16px; color: var(--primary-dark); }
.position-info p { margin: 0; color: #4b5568; font-size: 14px; line-height: 1.5; }

/* --- DÜZELTİLMİŞ GRID YAPILARI --- */
.services-section, .ref-section, .products-section, .blog-section, .faq-section { padding: 80px 0; }

/* ÖNEMLİ: Buradaki minmax(250px, 1fr) değeri kutuların yan yana sığmasını sağlar. */
.services-grid, .prod-grid, .blog-grid, .ref-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); 
    gap: 30px; 
    margin-top: 40px; 
}

.two-col-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.blog-layout { display: grid; grid-template-columns: 2fr 1fr; gap: 40px; }
.product-detail-grid { display: grid; grid-template-columns: 3fr 2fr; gap: 40px; }

/* SEO İçerik Bölümleri */
.seo-content-section { padding: 80px 0; }
.seo-content-section img { width: 100%; height: auto; object-fit: cover; }

/* --- KART STİLLERİ --- */
.service-card, .prod-card, .b-card, .ref-box { background: #fff; border: 1px solid #eee; transition: 0.3s; height: 100%; }
.service-card { padding: 40px 30px; border-radius: 15px; box-shadow: 0 5px 15px rgba(0,0,0,0.03); }
.service-card:hover { border-color: var(--accent-orange); transform: translateY(-10px); box-shadow: 0 15px 30px rgba(0,0,0,0.08); }
.ser-icon { font-size: 40px; color: var(--primary-blue); margin-bottom: 20px; }
.service-card h3 { font-size: 20px; font-weight: 700; margin-bottom: 15px; color: var(--primary-dark); }

.ref-box { width: 100%; height: 100px; display: flex; align-items: center; justify-content: center; border-radius: 8px; filter: grayscale(100%); opacity: 0.7; }
.ref-box:hover { filter: grayscale(0%); opacity: 1; border-color: var(--primary-blue); }

.prod-card, .b-card { border-radius: 12px; overflow: hidden; }
.prod-card:hover, .b-card:hover { box-shadow: 0 15px 30px rgba(0,0,0,0.08); transform: translateY(-5px); }
.prod-img, .b-img { height: 200px; background: #eee; position: relative; overflow: hidden; }
.prod-img img, .b-img img { width: 100%; height: 100%; object-fit: cover; transition: 0.5s; }
.prod-card:hover .prod-img img, .b-card:hover .b-img img { transform: scale(1.1); }
.prod-content, .b-content { padding: 20px; display: flex; flex-direction: column; }
.prod-cat { font-size: 12px; color: #999; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 8px; font-weight: 600; }
.prod-title, .b-title { font-size: 17px; font-weight: 700; margin: 0 0 15px 0; color: var(--primary-dark); line-height: 1.4; flex-grow: 1; }
.prod-footer { display: flex; justify-content: space-between; align-items: center; gap: 15px; margin-top: auto; padding-top: 15px; border-top: 1px solid #f0f0f0; }
.prod-price { font-size: 18px; font-weight: 800; color: var(--primary-dark); white-space: nowrap; }
.btn-examine { background: transparent; border: 1px solid var(--primary-blue); color: var(--primary-blue); padding: 8px 20px; border-radius: 4px; font-size: 13px; font-weight: 600; transition: 0.3s; cursor: pointer; white-space: nowrap; flex-shrink: 0; }
.btn-examine:hover { background: var(--primary-blue); color: #fff; }
.b-desc { font-size: 14px; color: #666; line-height: 1.6; margin-bottom: 20px; }
.btn-read-more { color: var(--accent-orange); font-weight: 600; font-size: 14px; display: flex; align-items: center; gap: 5px; transition: 0.3s; }

/* --- FAQ & FOOTER & MODAL --- */
.faq-item { border-bottom: 1px solid #eee; margin-bottom: 10px; }
.faq-head { padding: 20px 0; cursor: pointer; display: flex; justify-content: space-between; align-items: center; font-weight: 600; color: var(--primary-dark); font-size: 16px; }
.faq-head:hover { color: var(--primary-blue); }
.faq-head i { transition: transform 0.3s; color: var(--accent-orange); }
.faq-item.active .faq-head i { transform: rotate(45deg); }
.faq-body { max-height: 0; overflow: hidden; transition: max-height 0.3s ease-out; color: #666; font-size: 14px; line-height: 1.6; }
.faq-item.active .faq-body { padding-bottom: 20px; max-height: 2000px; }

footer { 
    background: var(--primary-dark); 
    color: #aeb4be; 
    padding: 60px 0 20px 0; 
    margin-top: auto;
    z-index: 1 !important;
    position: relative !important;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1.2fr; gap: 40px; margin-bottom: 40px; align-items: start; }
.footer-grid > div { display: flex; flex-direction: column; }
.footer-grid > div:first-child::before { content: ''; display: block; height: 26px; margin-bottom: 20px; }
.f-title { font-size: 18px; font-weight: 700; color: #fff; margin-bottom: 20px; margin-top: 0; line-height: 1.2; min-height: 26px; display: flex; align-items: center; }
.f-links { list-style: none; padding: 0; margin: 0; }
.f-links li { margin-bottom: 12px; }
.f-links li a { color: #aeb4be; text-decoration: none; transition: color 0.3s; font-size: 14px; }
.f-links li a:hover { color: var(--accent-orange); }
.f-links li i { margin-right: 8px; color: var(--accent-orange); }
.copyright { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 20px; text-align: center; font-size: 12px; }

.modal-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.6); z-index: 2000; display: none; justify-content: center; align-items: center; backdrop-filter: blur(3px); }
.modal-box { background: #fff; padding: 40px; border-radius: 12px; width: 400px; max-width: 90%; position: relative; text-align: center; animation: slideUp 0.3s; }
.modal-close { position: absolute; top: 15px; right: 15px; cursor: pointer; font-size: 20px; color: #999; }
.modal-input { width: 100%; padding: 12px; margin-bottom: 15px; border: 1px solid #eee; border-radius: 6px; background: #f9f9f9; }
.modal-btn { width: 100%; padding: 12px; background: var(--primary-blue); color: #fff; border: none; border-radius: 6px; cursor: pointer; font-weight: 600; }

.page-header { background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-blue) 100%); padding: 60px 0; text-align: center; color: #fff; margin-bottom: 50px; }
.page-header h1 { font-size: 36px; font-weight: 800; margin-bottom: 10px; }
.page-header .breadcrumb { font-size: 14px; opacity: 0.9; }
.page-header .breadcrumb a { color: rgba(255,255,255,0.9); }
.page-header .breadcrumb a:hover { color: var(--accent-orange); }

/* --- FORM STİLLERİ --- */
.form-group { margin-bottom: 20px; }
.form-control { width: 100%; padding: 12px 15px; border: 1px solid #ddd; border-radius: 8px; font-size: 15px; font-family: 'Outfit', sans-serif; transition: 0.3s; background: #fff; color: var(--text-dark); }
.form-control:focus { outline: none; border-color: var(--primary-blue); box-shadow: 0 0 0 3px rgba(15, 32, 66, 0.1); }
.form-control::placeholder { color: #999; }
textarea.form-control { resize: vertical; min-height: 120px; line-height: 1.6; }

/* --- İLETİŞİM SAYFASI STİLLERİ --- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.contact-info-box { background: var(--primary-dark); color: #fff; padding: 40px; border-radius: 12px; }
.contact-info-box h3 { color: #fff; font-size: 24px; font-weight: 700; }
.c-item { display: flex; gap: 20px; margin-bottom: 25px; align-items: flex-start; }
.c-item:last-child { margin-bottom: 0; }
.c-icon { width: 45px; height: 45px; background: rgba(255,255,255,0.1); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; }
.c-item strong { display: block; margin-bottom: 5px; color: var(--accent-yellow); font-weight: 600; }

/* --- YAZILIM DETAY SAYFASI STİLLERİ --- */
.pd-info h1 { font-size: 28px; font-weight: 800; color: var(--primary-dark); margin-bottom: 15px; }
.pd-meta { display: flex; gap: 20px; margin-bottom: 25px; font-size: 14px; color: #666; }
.pd-meta span { display: flex; align-items: center; gap: 5px; }
.pd-meta i { color: var(--primary-blue); }
.pd-features-list { list-style: none; margin-bottom: 30px; }
.pd-features-list li { padding: 12px 0; border-bottom: 1px solid #f5f5f5; display: flex; align-items: center; gap: 10px; color: #555; font-size: 15px; }
.pd-features-list li:last-child { border-bottom: none; }
.pd-features-list i { color: var(--accent-green); font-size: 16px; }
.pd-price-box { background: #f9f9f9; padding: 20px; border-radius: 8px; margin-bottom: 25px; }
.pd-price { font-size: 24px; font-weight: 800; color: var(--primary-dark); }
.pd-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 20px; }
.btn-pd { padding: 12px 20px; border: none; border-radius: 8px; font-weight: 600; font-size: 14px; cursor: pointer; transition: 0.3s; display: flex; align-items: center; justify-content: center; gap: 8px; }
.btn-demo { background: var(--primary-blue); color: #fff; }
.btn-demo:hover { background: var(--primary-dark); }
.btn-buy { background: var(--accent-orange); color: #fff; grid-column: 1 / -1; }
.btn-buy:hover { background: #ff8c00; }
.btn-fav { background: #fff; color: var(--primary-dark); border: 1px solid #ddd; }
.btn-fav:hover { background: #f5f5f5; border-color: var(--accent-orange); color: var(--accent-orange); }
.toc-title { font-size: 16px; font-weight: 700; color: var(--primary-dark); margin-bottom: 15px; }
.toc-list { list-style: none; }

/* --- MÜŞTERİ PANELİ STİLLERİ --- */
.panel-layout {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 30px;
    align-items: start;
}

.sidebar-menu {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 110px;
}

.sidebar-menu a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    color: #555;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s;
    border-left: 3px solid transparent;
}

.sidebar-menu a:hover {
    background: #f9f9f9;
    color: var(--primary-blue);
    border-left-color: var(--primary-blue);
    padding-left: 25px;
}

.sidebar-menu a.active {
    background: #f0f4ff;
    color: var(--primary-blue);
    border-left-color: var(--primary-blue);
    font-weight: 600;
}

.sidebar-menu a i {
    width: 20px;
    text-align: center;
    font-size: 16px;
}

.sidebar-menu a.logout-link {
    color: #F44336;
    margin-top: 10px;
    border-top: 1px solid #eee;
    padding-top: 15px;
}

.sidebar-menu a.logout-link:hover {
    background: #ffebee;
    color: #C62828;
    border-left-color: #F44336;
}

.menu-divider {
    height: 1px;
    background: #eee;
    margin: 15px 0;
}

.panel-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.panel-card h2,
.panel-card h3 {
    color: var(--primary-dark);
    font-weight: 700;
}

.panel-card table {
    width: 100%;
    border-collapse: collapse;
}

.panel-card table th {
    background: #f9f9f9;
    padding: 12px;
    text-align: left;
    font-weight: 600;
    color: var(--primary-dark);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 2px solid #eee;
}

.panel-card table td {
    padding: 12px;
    border-bottom: 1px solid #f5f5f5;
    color: #555;
    font-size: 14px;
}

.panel-card table tr:hover {
    background: #fafafa;
}

.panel-card table tr:last-child td {
    border-bottom: none;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 20px;
}

.stat-card {
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.stat-card h3 {
    font-size: 30px;
    margin-bottom: 5px;
    font-weight: 800;
}

.stat-card span {
    font-size: 14px;
    font-weight: 500;
}

.stat-blue {
    background: #E3F2FD;
    color: #1565C0;
}

.stat-green {
    background: #E8F5E9;
    color: #2E7D32;
}

.stat-orange {
    background: #FFF3E0;
    color: #EF6C00;
}

.status-badge {
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    display: inline-block;
}

.status-paid {
    background: #4CAF50;
    color: #fff;
}

.status-pending {
    background: #FF9800;
    color: #fff;
}

.status-unpaid {
    background: #F44336;
    color: #fff;
}

.status-processing {
    background: #2196F3;
    color: #fff;
}

.status-cancelled {
    background: #F44336;
    color: #fff;
}

/* Panel Sayfaları Özel Stiller */
.services-list, .domain-list, .hosting-list, .package-list, .ticket-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.service-item, .domain-item, .hosting-item, .package-item, .ticket-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 8px;
    border: 1px solid #eee;
    transition: all 0.3s;
}

.service-item:hover, .domain-item:hover, .hosting-item:hover, .package-item:hover, .ticket-item:hover {
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.service-info, .domain-info, .hosting-info, .package-info {
    flex: 1;
}

.service-info h3, .domain-info h3, .hosting-info h3, .package-info h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 5px;
}

.service-info p, .domain-info p, .hosting-info p, .package-info p {
    font-size: 14px;
    color: #666;
    margin-bottom: 5px;
}

.service-date, .hosting-specs, .package-features {
    font-size: 12px;
    color: #999;
}

.service-actions, .domain-actions, .hosting-actions, .package-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-action {
    padding: 8px 16px;
    background: var(--primary-blue);
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.btn-action:hover {
    background: var(--primary-dark);
}

.btn-primary {
    padding: 10px 20px;
    background: var(--accent-orange);
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.btn-primary:hover {
    background: #ff8c00;
}

.btn-link {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
    transition: 0.3s;
}

.btn-link:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

.ticket-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.ticket-header h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary-dark);
    margin: 0;
}

.ticket-desc {
    font-size: 14px;
    color: #666;
    margin-bottom: 10px;
    line-height: 1.6;
}

.ticket-meta {
    display: flex;
    gap: 20px;
    font-size: 12px;
    color: #999;
}

.ticket-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.account-form {
    max-width: 600px;
}

.account-form .form-group {
    margin-bottom: 20px;
}

.account-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--primary-dark);
    font-size: 14px;
}

/* --- SABİT İLETİŞİM BUTONLARI --- */
.fixed-contact-buttons {
    position: fixed;
    left: 20px;
    bottom: 30px;
    z-index: 1000;
    animation: slideInLeft 0.5s ease-out;
}

.contact-buttons-wrapper {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
}

@keyframes slideInLeft {
    from {
        transform: translateX(-100px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.contact-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 24px;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    }
    50% {
        box-shadow: 0 4px 20px rgba(0,0,0,0.3), 0 0 0 8px rgba(255,255,255,0.1);
    }
}

.contact-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.contact-btn:hover::before {
    width: 300px;
    height: 300px;
}

.contact-btn:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

.contact-btn:active {
    transform: translateY(-2px) scale(1.05);
}

.phone-btn {
    background: linear-gradient(135deg, #0F2042 0%, #1a3b70 100%);
}

.phone-btn:hover {
    background: linear-gradient(135deg, #1a3b70 0%, #0F2042 100%);
}

.whatsapp-btn {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
}

.whatsapp-btn:hover {
    background: linear-gradient(135deg, #128C7E 0%, #25D366 100%);
}

.facebook-btn {
    background: linear-gradient(135deg, #1877F2 0%, #0D47A1 100%);
}

.facebook-btn:hover {
    background: linear-gradient(135deg, #0D47A1 0%, #1877F2 100%);
}

.instagram-btn {
    background: linear-gradient(135deg, #E4405F 0%, #833AB4 50%, #FCAF45 100%);
    position: relative;
    overflow: hidden;
}

.instagram-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #833AB4 0%, #E4405F 50%, #FCAF45 100%);
    opacity: 0;
    transition: opacity 0.3s;
}

.instagram-btn:hover::after {
    opacity: 1;
}

.instagram-btn i {
    position: relative;
    z-index: 1;
}

.btn-tooltip {
    position: absolute;
    left: 70px;
    background: var(--primary-dark);
    color: #fff;
    padding: 8px 15px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-10px);
    transition: all 0.3s;
    pointer-events: none;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.btn-tooltip::before {
    content: '';
    position: absolute;
    right: 100%;
    top: 50%;
    transform: translateY(-50%);
    border: 6px solid transparent;
    border-right-color: var(--primary-dark);
}

.contact-btn:hover .btn-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

/* Yazılım Detay CSS */
.pd-gallery-main { height: 400px; background: #eee; border-radius: 12px; overflow: hidden; margin-bottom: 20px; }
.pd-gallery-thumbs { display: flex; gap: 15px; }
.pd-thumb { width: 100px; height: 70px; background: #eee; border-radius: 8px; overflow: hidden; cursor: pointer; border: 2px solid transparent; transition: 0.3s; }
.pd-thumb:hover { border-color: var(--accent-orange); }
.toc-box { background: #fcfcfc; border: 1px solid #eee; border-radius: 8px; padding: 25px; position: sticky; top: 110px; }

/* --- KRİTİK MOBİL UYUMLULUK KISMI --- */
@media (max-width: 992px) {
    html, body { overflow-x: hidden; width: 100%; max-width: 100vw; }
    
    .top-bar { display: none; }
    
    /* Mobil Üst Bar - Dil ve Döviz */
    .mobile-top-bar {
        display: block !important;
    }
    
    /* Header'ı mobil üst bar'ın altına kaydır */
    header {
        top: 32px !important;
    }
    .nav-flex { padding: 8px 0; width: 100%; position: relative; min-height: 60px !important; }
    
    /* Arama İkonu - Mobilde Görünür */
    .search-icon.mobile-only {
        display: flex !important;
        align-items: center;
        justify-content: center;
    }
    
    /* Masaüstünde gizle, mobilde göster */
    .desktop-only {
        display: none !important;
    }
    
    .mobile-only {
        display: flex !important;
    }
    
    
    /* Hamburger Button - Artık header'da yok, footer'da var */
    .mobile-toggle { 
        display: none !important; 
    }
    
    /* Desktop Navigation - Gizle */
    nav#mainNav { 
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        max-width: 100vw;
        height: 100vh;
        background: #fff;
        z-index: 9998;
        padding: 80px 0 20px 0;
        overflow-y: auto;
        overflow-x: hidden;
        transform: translateX(-100%);
        transition: transform 0.3s ease-in-out;
        box-shadow: 2px 0 10px rgba(0,0,0,0.1);
    }
    
    /* Menu Open State */
    nav#mainNav.active {
        transform: translateX(0);
    }
    
    /* Hamburger menü açıkken alt navigasyonu KESINLIKLE gizle */
    body.menu-open .mobile-bottom-nav,
    nav#mainNav.active ~ .mobile-bottom-nav {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        transform: translateY(100%) !important;
        height: 0 !important;
        overflow: hidden !important;
    }
    
    /* Overlay - Menu açıkken arka plan */
    body.menu-open::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.5);
        z-index: 9997;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
    }
    
    body.menu-open::before {
        opacity: 1;
        visibility: visible;
    }
    
    /* Menu List Styling */
    nav#mainNav > ul { 
        flex-direction: column; 
        height: auto; 
        align-items: flex-start; 
        padding: 0 20px; 
        gap: 0; 
        width: 100%; 
    }
    
    nav#mainNav > ul > li { 
        width: 100%; 
        padding: 0; 
        border-bottom: 1px solid #eee; 
    }
    
    nav#mainNav > ul > li > a {
        padding: 15px 0;
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        font-size: 16px;
        font-weight: 600;
    }
    
    /* Mobile Submenu Toggle Arrow */
    nav#mainNav > ul > li.has-submenu > a {
        position: relative;
    }
    
    nav#mainNav > ul > li.has-submenu > a i.fa-chevron-down {
        transition: transform 0.3s ease;
        margin-left: auto;
    }
    
    nav#mainNav > ul > li.has-submenu.active > a i.fa-chevron-down {
        transform: rotate(180deg);
    }
    
    /* Submenus - Hidden by default */
    .sub-menu, .mega-menu, .hosting-mega-menu { 
        position: static; 
        width: 100%; 
        max-width: 100%; 
        opacity: 0;
        max-height: 0;
        overflow: hidden;
        transform: none; 
        box-shadow: none; 
        border: none; 
        background: #f9f9f9; 
        padding: 0 15px;
        margin: 0;
        transition: max-height 0.3s ease, opacity 0.3s ease, padding 0.3s ease;
        display: block !important;
    }
    
    nav#mainNav > ul > li.active > .sub-menu,
    nav#mainNav > ul > li.active > .mega-menu,
    nav#mainNav > ul > li.active > .hosting-mega-menu {
        opacity: 1;
        max-height: 1000px;
        padding: 15px;
        margin-top: 10px;
    }
    
    .hosting-menu-content { 
        grid-template-columns: 1fr; 
        gap: 20px; 
    }
    
    .hosting-cards { 
        grid-template-columns: 1fr; 
        gap: 15px; 
    }
    
    .hosting-quick-access { 
        border-left: none; 
        border-top: 1px solid #eee; 
        padding-left: 0; 
        padding-top: 20px; 
    }
    
    .sub-menu li a,
    .mega-menu .mm-list li a {
        padding: 12px 15px;
        font-size: 14px;
    }
    
    /* Araçlar Bölümü Mobil */
    .products-section .tool-category {
        margin-bottom: 20px;
    }
    
    .products-section > .container > div[style*="grid-template-columns"] {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
    
    .header-extras { display: none; }

    /* Slider Mobilde Optimize Edildi */
    .hero-section { 
        padding: 0 !important; 
        margin-top: 0 !important;
        margin-bottom: 15px !important;
    }
    
    /* Header ile slider arasındaki boşluğu kaldır */
    header + .hero-section,
    .mobile-top-bar + header + .hero-section {
        margin-top: 0 !important;
        padding-top: 0 !important;
    }
    
    /* Container padding'ini azalt */
    .hero-section .container {
        padding-top: 0 !important;
        margin-top: 0 !important;
    }
    
    .slider-container { 
        width: 100%; 
        max-width: 100%; 
        height: auto; 
        min-height: 500px; 
        margin: 0 0 20px 0; 
        border-radius: 0; 
        box-shadow: none;
        display: flex;
        align-items: center;
        gap: 0;
    }
    .slide { flex-direction: column; text-align: center; padding: 50px 50px 40px 50px; justify-content: center; width: 100%; align-items: center; }
    .slide-decor { display: none; }
    .banner-content { width: 100%; max-width: 100%; text-align: center; padding: 0; }
    .banner-content h2 { font-size: 12px; margin-bottom: 12px; letter-spacing: 1.5px; }
    .banner-content h1 { font-size: 28px; margin-bottom: 15px; line-height: 1.2; }
    .banner-content p { font-size: 14px; margin-bottom: 25px; max-width: 100%; line-height: 1.5; padding: 0 10px; }
    .banner-btn { padding: 12px 30px; font-size: 14px; border-radius: 30px; }
    .slider-btn { 
        padding: 0 !important; 
        font-size: 18px; 
        width: 40px !important; 
        height: 40px !important; 
        display: flex !important; 
        align-items: center !important; 
        justify-content: center !important; 
        background: rgba(255,255,255,0.25); 
        backdrop-filter: blur(8px);
        position: absolute !important;
        top: 50% !important;
        transform: translateY(-50%) !important;
        margin: 0 !important;
    }
    .slider-btn:hover { background: rgba(255,255,255,0.4); }
    .prev-btn { left: 10px !important; right: auto !important; }
    .next-btn { right: 10px !important; left: auto !important; }
    .single-hero { grid-template-columns: 1fr; padding: 26px 18px; border-radius: 0; box-shadow: none; gap: 22px; }
    .hero-intro h1 { font-size: 26px; }
    .hero-intro p { font-size: 14px; }
    .hero-highlights { grid-template-columns: 1fr; }
    .rank-card { padding: 22px 18px; }
    .rank-form-actions { flex-direction: column; align-items: stretch; }
    .ghost-btn, .primary-btn { width: 100%; text-align: center; }

    /* Gridleri Tek Sütuna İndir */
    .services-section, .ref-section, .products-section, .blog-section, .faq-section { 
        padding: 40px 15px 40px 15px !important; 
        margin-top: 30px !important;
    }
    .services-grid, .prod-grid, .blog-grid, .ref-grid { grid-template-columns: 1fr; gap: 20px; margin-top: 30px; }
    
    /* Kategori Filtreleri Mobil */
    .category-filter-wrapper {
        margin-bottom: 20px;
    }
    
    .category-filter-scroll {
        gap: 8px;
        padding-bottom: 8px;
    }
    
    .category-filter-btn {
        padding: 8px 16px;
        font-size: 13px;
    }
    .two-col-grid, .blog-layout, .product-detail-grid, .footer-grid, .contact-grid { grid-template-columns: 1fr; gap: 30px; }
    .pd-gallery-main { height: 250px; }
    .pd-gallery-thumbs { flex-wrap: wrap; }
    .seo-content-section { padding: 40px 0; }
    .seo-content-section h2 { font-size: 24px !important; }
    
    /* Form Stilleri Mobilde */
    .form-group { margin-bottom: 18px; }
    .form-control { padding: 14px 15px; font-size: 16px; }
    textarea.form-control { min-height: 140px; }
    
    /* İletişim Sayfası Mobilde */
    .contact-info-box { padding: 30px 20px; }
    .contact-info-box h3 { font-size: 20px; }
    .c-item { gap: 15px; margin-bottom: 20px; }
    .c-icon { width: 40px; height: 40px; font-size: 16px; }
    
    /* Yazılım Detay Mobilde */
    .pd-info h1 { font-size: 24px; }
    .pd-meta { flex-direction: column; gap: 10px; font-size: 13px; }
    .pd-actions { grid-template-columns: 1fr; }
    .btn-pd { padding: 14px 20px; font-size: 15px; }
    .pd-price { font-size: 22px; }
    .toc-box { position: static; margin-top: 20px; }
    
    /* Page Header Mobilde */
    .page-header { padding: 40px 15px; margin-bottom: 30px; }
    .page-header h1 { font-size: 28px; }
    
    /* Container ve genel genişlik kontrolleri */
    .container { padding: 0 15px; width: 100%; max-width: 100%; }
    header { width: 100%; max-width: 100vw; }
    footer { width: 100%; max-width: 100vw; padding: 40px 15px 20px 15px; }
    .footer-grid { gap: 30px; }
    
    /* Kart stilleri mobilde */
    .service-card { padding: 30px 20px; }
    .prod-content, .b-content { padding: 15px; }
    .prod-footer { flex-wrap: wrap; gap: 10px; }
    .prod-price { font-size: 16px; }
    .btn-examine { padding: 8px 16px; font-size: 12px; }
    
    /* Modal mobilde */
    .modal-box { width: 95%; padding: 30px 20px; }
    
    /* Page header mobilde */
    .page-header { padding: 40px 15px; }
    
    /* Sabit İletişim Butonları Mobilde */
    .fixed-contact-buttons { left: 15px; bottom: 20px; }
    .contact-buttons-wrapper { gap: 12px; }
    .contact-btn { width: 55px; height: 55px; font-size: 22px; animation: none; }
    .btn-tooltip { display: none; }
    
    /* Müşteri Paneli Mobilde */
    .panel-layout { grid-template-columns: 1fr; gap: 20px; }
    .sidebar-menu { position: static; margin-bottom: 20px; }
    .sidebar-menu a { padding: 10px 15px; font-size: 13px; }
    .panel-card { padding: 20px 15px; }
    .panel-card table { font-size: 12px; }
    .panel-card table th,
    .panel-card table td { padding: 8px; }
    .stats-grid { grid-template-columns: 1fr; gap: 15px; }
    .stat-card h3 { font-size: 24px; }
    .service-item, .domain-item, .hosting-item, .package-item, .ticket-item { flex-direction: column; align-items: flex-start; gap: 15px; }
    .service-actions, .domain-actions, .hosting-actions, .package-actions { width: 100%; justify-content: space-between; }
    .btn-action, .btn-primary { width: 100%; }
}

/* Küçük Mobil Cihazlar (Telefonlar) */
@media (max-width: 576px) {
    /* Slider Küçük Ekranlar İçin */
    .hero-section { 
        padding: 0 !important; 
        margin-top: 0 !important;
        margin-bottom: 12px !important;
    }
    
    /* Header ile slider arasındaki boşluğu kaldır */
    header + .hero-section,
    .mobile-top-bar + header + .hero-section {
        margin-top: 0 !important;
        padding-top: 0 !important;
    }
    .slider-container {
        min-height: 450px;
        margin-top: -77px;
        margin-bottom: 25px !important;
    }
    .slide { padding: 40px 45px 35px 45px; }
    .banner-content h2 { font-size: 11px; margin-bottom: 10px; letter-spacing: 1px; }
    .banner-content h1 { font-size: 24px; margin-bottom: 12px; }
    .banner-content p { font-size: 13px; margin-bottom: 20px; padding: 0; }
    .banner-btn { padding: 10px 25px; font-size: 13px; }
    .slider-btn { padding: 0; font-size: 16px; width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; background: rgba(255,255,255,0.25); backdrop-filter: blur(8px); }
    .slider-btn:hover { background: rgba(255,255,255,0.4); }
    .prev-btn { left: 8px; }
    .next-btn { right: 8px; }
    
    /* Küçük ekranlarda section padding'leri */
    .services-section, .ref-section, .products-section, .blog-section, .faq-section { 
        padding: 40px 15px 40px 15px !important; 
        margin-top: 30px !important;
    }
    
    /* Form Stilleri Küçük Ekranlarda */
    .form-control { padding: 12px 15px; font-size: 16px; }
    textarea.form-control { min-height: 120px; }
    
    /* İletişim Sayfası Küçük Ekranlarda */
    .contact-info-box { padding: 25px 15px; }
    .contact-info-box h3 { font-size: 18px; }
    .c-item { flex-direction: column; gap: 10px; }
    .c-icon { width: 35px; height: 35px; font-size: 14px; }
    
    /* Yazılım Detay Küçük Ekranlarda */
    .pd-info h1 { font-size: 22px; }
    .pd-price { font-size: 20px; }
    .btn-pd { padding: 12px 18px; font-size: 14px; }
    
    /* Page Header Küçük Ekranlarda */
    .page-header { padding: 30px 15px; }
    .page-header h1 { font-size: 24px; }
    
    /* Ürün Kartları Küçük Ekranlarda */
    .prod-footer { flex-direction: column; align-items: stretch; gap: 10px; }
    .prod-price { text-align: center; }
    .btn-examine { width: 100%; justify-content: center; }
    
    /* SEO İçerik Bölümleri Küçük Ekranlarda */
    .seo-content-section { padding: 30px 0; }
    .seo-content-section h2 { font-size: 20px !important; }
    .seo-content-section p { font-size: 14px !important; }
    
    /* Sabit İletişim Butonları Küçük Ekranlarda */
    .fixed-contact-buttons { left: 10px; bottom: 15px; }
    .contact-buttons-wrapper { gap: 10px; }
    .contact-btn { width: 50px; height: 50px; font-size: 20px; animation: none; }
    .btn-tooltip { display: none; }
    
    /* Müşteri Paneli Küçük Ekranlarda */
    .panel-card table { font-size: 11px; }
    .panel-card table th,
    .panel-card table td { padding: 6px 4px; }
    .panel-card h2 { font-size: 18px !important; }
    .panel-card h3 { font-size: 14px !important; }
    .sidebar-menu a { padding: 8px 12px; font-size: 12px; }
    .service-item, .domain-item, .hosting-item, .package-item, .ticket-item { padding: 15px; }
    .ticket-header { flex-direction: column; align-items: flex-start; gap: 10px; }
}

/* ============================================
   MOBİL ALT NAVİGASYON - SADECE MOBİLDE GÖRÜNÜR
   ============================================ */

/* Varsayılan: Desktop'ta GİZLİ */
.mobile-bottom-nav {
    display: none !important;
}

/* Footer ve diğer elementlerin z-index'ini düşür - Mobil menü üstte olsun */
footer, .footer, .sticky-icons, .fixed-contact-buttons {
    z-index: 1 !important;
    position: relative !important;
}

/* Mobilde GÖSTER - 768px ve altı */
@media only screen and (max-width: 768px) {
    /* Mobil menü kapsayıcısı - HER ŞEYİN ÜSTÜNDE */
    .mobile-bottom-nav {
        position: fixed !important;
        bottom: 0 !important;
        left: 0 !important;
        width: 100% !important;
        background: #fff !important;
        z-index: 9999 !important;  /* HER ŞEYİN ÜSTÜNDE */
        display: flex !important;
        border-top: 1px solid #ddd !important;
        box-shadow: 0 -2px 10px rgba(0,0,0,0.1) !important;
        padding: 8px 0 !important;
        padding-bottom: calc(8px + env(safe-area-inset-bottom)) !important;
        justify-content: space-around !important;
        align-items: center !important;
        flex-direction: row !important;
        transform: translateY(0) !important;
        transition: transform 0.3s ease !important;
    }
    
    /* Menü gizli durumda (isteğe bağlı açılır/kapanır için) */
    .mobile-bottom-nav.hidden {
        transform: translateY(100%) !important;
    }
    
    /* Menü itemleri - DÜZGÜN HİZALAMA */
    .mobile-bottom-nav .nav-item {
        flex: 1 !important;
        text-align: center !important;
        padding: 10px 5px !important;
        font-size: 14px !important;
        color: #000 !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 4px !important;
        text-decoration: none !important;
        transition: all 0.3s !important;
        min-width: 0 !important;
        max-width: 100% !important;
    }
    
    .mobile-bottom-nav .nav-item i {
        font-size: 20px !important;
        margin: 0 auto 2px auto !important;
        display: inline-block !important;
        width: auto !important;
        height: auto !important;
        line-height: 1 !important;
    }
    
    .mobile-bottom-nav .nav-item span {
        font-size: 11px !important;
        font-weight: 500 !important;
        white-space: nowrap !important;
        display: block !important;
        text-align: center !important;
        width: 100% !important;
        line-height: 1.2 !important;
    }
    
    .mobile-bottom-nav .nav-item.active {
        color: var(--accent-orange) !important;
    }
    
    .mobile-bottom-nav .nav-item.active i {
        color: var(--accent-orange) !important;
        transform: scale(1.1) !important;
    }
    
    .mobile-bottom-nav .nav-item:active {
        transform: scale(0.95) !important;
    }
    
    .mobile-bottom-nav .mobile-menu-btn {
        background: none;
        border: none;
        cursor: pointer;
    }
    
    /* YENİ BASİT MOBİL MENÜ - MOBİLDE GÖSTER */
    .simple-mobile-menu {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        height: 100% !important;
        z-index: 99999 !important;
        display: none;
        visibility: visible;
        opacity: 1;
        pointer-events: auto;
    }
    
    .simple-mobile-menu.active {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    .simple-menu-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
    }
    
    .simple-menu-content {
        position: absolute;
        top: 0;
        right: 0;
        width: 85%;
        max-width: 400px;
        height: 100%;
        background: #fff;
        box-shadow: -2px 0 10px rgba(0,0,0,0.1);
        display: flex;
        flex-direction: column;
        transform: translateX(100%);
        transition: transform 0.3s ease;
    }
    
    .simple-mobile-menu.active .simple-menu-content {
        transform: translateX(0);
    }
    
    .simple-menu-header {
        padding: 20px;
        border-bottom: 2px solid #e9ecef;
        display: flex;
        justify-content: space-between;
        align-items: center;
        background: var(--accent-orange);
        color: #fff;
    }
    
    .simple-menu-header h3 {
        margin: 0;
        font-size: 20px;
        font-weight: 700;
    }
    
    .simple-menu-close {
        background: none;
        border: none;
        color: #fff;
        font-size: 24px;
        cursor: pointer;
        padding: 0;
        width: 32px;
        height: 32px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .simple-menu-body {
        flex: 1;
        overflow-y: auto;
        padding: 15px 0;
    }
    
    .simple-menu-group {
        border-bottom: 1px solid #e9ecef;
    }
    
    .simple-menu-group-btn {
        width: 100%;
        padding: 15px 20px;
        background: none;
        border: none;
        text-align: left;
        display: flex;
        align-items: center;
        gap: 12px;
        cursor: pointer;
        font-size: 16px;
        font-weight: 600;
        color: #2c3e50;
        transition: background 0.2s;
    }
    
    .simple-menu-group-btn:hover {
        background: #f8f9fa;
    }
    
    .simple-menu-group-btn i:first-child {
        color: var(--accent-orange);
        width: 24px;
    }
    
    .simple-menu-group-btn i:last-child {
        margin-left: auto;
        transition: transform 0.3s;
    }
    
    .simple-menu-group.open .simple-menu-group-btn i:last-child {
        transform: rotate(180deg);
    }
    
    .simple-menu-group-content {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        background: #f8f9fa;
    }
    
    .simple-menu-group.open .simple-menu-group-content {
        max-height: 500px;
    }
    
    .simple-menu-link {
        display: block;
        padding: 12px 20px 12px 56px;
        color: #495057;
        text-decoration: none;
        font-size: 14px;
        transition: background 0.2s;
    }
    
    .simple-menu-link:hover {
        background: #fff;
        color: var(--accent-orange);
    }
    
    .simple-menu-item {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 15px 20px;
        color: #2c3e50;
        text-decoration: none;
        font-size: 16px;
        font-weight: 600;
        border-bottom: 1px solid #e9ecef;
        transition: background 0.2s;
    }
    
    .simple-menu-item:hover {
        background: #f8f9fa;
        color: var(--accent-orange);
    }
    
    .simple-menu-item i {
        color: var(--accent-orange);
        width: 24px;
    }
    
    /* MASAÜSTÜNDE MOBİL MENÜYÜ TAMAMEN GİZLE - EN GÜÇLÜ KURAL */
    @media (min-width: 769px) {
        .simple-mobile-menu,
        .simple-mobile-menu.active,
        .simple-mobile-menu *,
        .simple-mobile-menu *::before,
        .simple-mobile-menu *::after,
        .simple-menu-overlay,
        .simple-menu-content,
        .simple-menu-header,
        .simple-menu-body,
        .simple-menu-group,
        .simple-menu-group-btn,
        .simple-menu-group-content,
        .simple-menu-link,
        .simple-menu-item,
        #simpleMobileMenu,
        #simpleMobileMenu * {
            display: none !important;
            visibility: hidden !important;
            opacity: 0 !important;
            pointer-events: none !important;
            position: fixed !important;
            top: -99999px !important;
            left: -99999px !important;
            width: 0 !important;
            height: 0 !important;
            max-width: 0 !important;
            max-height: 0 !important;
            overflow: hidden !important;
            margin: 0 !important;
            padding: 0 !important;
            border: none !important;
            z-index: -9999 !important;
            transform: scale(0) !important;
            clip: rect(0, 0, 0, 0) !important;
        }
    }
    
    /* Mobil Sepet Badge */
    .mobile-bottom-nav .nav-item .mobile-cart-badge {
        position: absolute;
        top: -8px;
        right: -8px;
        background: var(--accent-orange);
        color: #fff;
        font-size: 10px;
        min-width: 18px;
        height: 18px;
        border-radius: 50%;
        display: none;
        align-items: center;
        justify-content: center;
        font-weight: 700;
        padding: 0 4px;
        z-index: 10;
        border: 2px solid #fff;
        box-shadow: 0 2px 4px rgba(0,0,0,0.2);
        line-height: 1;
    }
    
    body {
        padding-bottom: 70px !important;
    }
    
    footer {
        margin-bottom: 70px !important;
        z-index: 1 !important;
        position: relative !important;
    }
    
    .fixed-contact-buttons {
        bottom: 70px !important;
        z-index: 1 !important;
    }
}

/* --- DOMAIN SEARCH --- */
/* Domain Search Wrapper - Mobil Boşluklar */
@media (max-width: 768px) {
    /* Domain search container spacing fix */
    .domain-search-container {
        padding: 10px 0 !important;
        margin: 0 !important;
    }
    
    /* Domain search input and button */
    .domain-search-container .search-wrapper {
        padding: 0 10px !important;
        margin-bottom: 10px !important;
    }
    
    /* Domain extensions list */
    .domain-extensions {
        margin-top: 5px !important;
        padding: 5px 10px !important;
    }
    
    /* Individual domain extension items */
    .domain-extension {
        margin: 3px 2px !important;
        padding: 5px 8px !important;
    }
    .domain-search-wrapper {
        margin-top: -140px !important; /* Mobilde slider'ın üstüne çıkar */
        margin-bottom: 8px !important;
        padding: 0 15px;
    }
    
    .price-tags {
        margin-top: 12px !important;
        margin-bottom: 20px !important;
        padding: 0 15px;
    }
    
    #domain-results-area {
        margin-top: 30px !important;
        margin-bottom: 40px !important;
        padding: 0 15px;
    }
}

/* --- DOMAIN SEARCH --- */
.domain-search-wrapper { 
    background: #fff; 
    padding: 20px; 
    border-radius: 8px; 
    box-shadow: 0 4px 15px rgba(0,0,0,0.1); 
    max-width: 900px; 
    margin: 30px auto 10px auto; 
    display: flex; 
    align-items: center; 
    gap: 10px; 
    flex-wrap: wrap; 
    position: relative;
    z-index: 10;
}

/* Masaüstü için domain-search-wrapper boşluğu ve z-index */
@media (min-width: 769px) {
    /* Masaüstünde domain-search-wrapper'ı slider'ın altına al */
    .domain-search-wrapper {
        margin-top: 20px !important; /* Mobildeki -140px'i override et */
        position: relative;
        z-index: 1 !important; /* Slider'ın altında kalması için düşük z-index */
        margin-bottom: 20px !important;
    }
    
    /* Masaüstünde slider-container'ın z-index'ini yükselt */
    .slider-container {
        position: relative;
        z-index: 10 !important; /* Domain search'ün üstünde olmalı */
    }
    
    /* Hero section'ın z-index'ini ayarla */
    .hero-section {
        position: relative;
        z-index: 1;
    }
    
    /* Hero section içindeki container'ın padding'ini kontrol et */
    .hero-section .container {
        padding-top: 0;
        padding-bottom: 0;
    }
    
    .hero-section .container {
        position: relative;
        z-index: 1;
    }
    
    .slider-container {
        position: relative;
        z-index: 1;
        margin-bottom: 0;
    }
}

.search-input { 
    flex: 1; 
    padding: 15px; 
    border: 1px solid #ddd; 
    border-radius: 4px; 
    font-size: 16px; 
    outline: none; 
}

.search-btn { 
    background-color: var(--primary-dark); 
    color: #fff; 
    padding: 15px 30px; 
    border: none; 
    border-radius: 4px; 
    font-weight: 600; 
    cursor: pointer; 
    transition: 0.3s;
}

.search-btn:hover {
    background-color: var(--primary-blue);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.price-tags { 
    display: flex; 
    gap: 10px; 
    margin-top: 10px; 
    width: 100%; 
    justify-content: center; 
    font-size: 13px; 
    flex-wrap: wrap;
}

.tag { 
    background: #fff; 
    border: 1px solid #eee; 
    padding: 5px 10px; 
    border-radius: 4px; 
}

.tag b {
    color: var(--primary-dark);
    font-weight: 700;
}

#domain-results-area { 
    max-width: 900px; 
    margin: 20px auto 0 auto; 
    display: none; 
    animation: slideDown 0.4s ease; 
}

.domain-result-header { 
    font-weight: 700; 
    font-size: 18px; 
    margin-bottom: 15px; 
    text-align: left; 
}

.domain-row { 
    background: #fff; 
    border: 1px solid #eee; 
    padding: 15px 20px; 
    margin-bottom: 10px; 
    border-radius: 8px; 
    display: flex; 
    align-items: center; 
    justify-content: space-between; 
    box-shadow: 0 2px 5px rgba(0,0,0,0.02); 
}

.d-left { 
    display: flex; 
    align-items: center; 
    gap: 15px; 
}

.badge-firsat { 
    background: #28a745; 
    color: #fff; 
    padding: 3px 8px; 
    border-radius: 4px; 
    font-size: 11px; 
    font-weight: 600; 
}

.d-name { 
    font-weight: 700; 
    font-size: 16px; 
    color: #000; 
}

.d-status { 
    color: #28a745; 
    font-size: 12px; 
    display: flex; 
    align-items: center; 
    gap: 5px; 
}

.d-right { 
    display: flex; 
    align-items: center; 
    gap: 20px; 
}

.badge-discount { 
    background: #28a745; 
    color: #fff; 
    padding: 5px 10px; 
    border-radius: 4px; 
    font-weight: 700; 
    font-size: 13px; 
}

.price-block { 
    text-align: right; 
}

.p-old { 
    text-decoration: line-through; 
    color: #999; 
    font-size: 12px; 
    display: block; 
}

.p-new { 
    font-size: 22px; 
    font-weight: 700; 
    color: #000; 
    display: block; 
    line-height: 1; 
}

.p-period { 
    font-size: 12px; 
    color: #666; 
    font-weight: 400; 
}

.btn-add-cart { 
    background: var(--accent-orange); 
    color: #fff; 
    border: none; 
    padding: 10px 20px; 
    border-radius: 5px; 
    font-weight: 600; 
    cursor: pointer; 
    transition: 0.3s;
}

.btn-add-cart:hover {
    background: #ff8c00;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(255,152,0,0.3);
}

@keyframes slideDown { 
    from { 
        opacity: 0; 
        transform: translateY(-10px); 
    } 
    to { 
        opacity: 1; 
        transform: translateY(0); 
    } 
}

/* Domain Sonuç Kartları Responsive - Mobil Görünüm Korunuyor */
@media (max-width: 768px) {
    .domain-row {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 15px !important;
    }
    
    .d-right {
        flex-direction: column !important;
        align-items: flex-end !important;
        gap: 5px !important;
        width: 100%;
    }
    
    .btn-add-cart {
        width: 100% !important;
        margin-top: 10px !important;
    }
}