/* ===== TEMEL AYARLAR ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #f8f9fa;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

:root {
    --primary: #2c5f2d;
    --primary-dark: #1e3f1e;
    --accent: #e6b17e;
}

/* ===== HEADER ===== */
.site-header {
    background: var(--primary);
    position: sticky;
    top: 0;
    z-index: 1000;
}

/* Header Top */
.header-top {
    background: rgba(0,0,0,0.1);
    padding: 5px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.header-top-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.social-links {
    display: flex;
    gap: 10px;
}

.social-link {
    color: #fff;
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.1);
    text-decoration: none;
    font-size: 12px;
    border-radius: 50%;
}

.user-actions {
    color: #fff;
    font-size: 12px;
}

.user-link {
    color: #fff;
    text-decoration: none;
    margin: 0 5px;
}

/* Header Main */
.header-main {
    padding: 10px 0;
}

.header-main-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.logo h1 {
    color: #fff;
    font-size: 24px;
    margin: 0;
}

/* Search */
.search-box {
    flex: 1;
    max-width: 500px;
}

.search-box form {
    display: flex;
    background: #fff;
    border-radius: 5px;
    overflow: hidden;
}

.search-input {
    flex: 1;
    padding: 8px 12px;
    border: none;
    outline: none;
}

.search-button {
    background: var(--accent);
    color: #333;
    border: none;
    padding: 0 15px;
    cursor: pointer;
}

/* Cart */
.cart-link {
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5px;
    background: rgba(255,255,255,0.1);
    padding: 5px 10px;
    border-radius: 5px;
}

.cart-count {
    background: var(--accent);
    color: #333;
    padding: 2px 6px;
    border-radius: 50%;
    font-size: 10px;
}

/* ===== NAVBAR ===== */
.header-nav {
    background: rgba(0,0,0,0.2);
}

.main-nav ul {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

.main-nav li {
    position: relative;
}

.main-nav li a {
    color: #fff;
    text-decoration: none;
    padding: 10px 15px;
    display: block;
    font-size: 13px;
}

.main-nav li:hover > a {
    background: rgba(255,255,255,0.1);
}

/* Dropdown Menu */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    border-radius: 0 0 5px 5px;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    z-index: 1000;
}

.has-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
}

/* Mega Menu */
.mega-menu {
    width: 600px;
    padding: 15px;
}

.mega-menu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.mega-menu-column h4 {
    color: var(--primary);
    font-size: 13px;
    margin-bottom: 5px;
    border-bottom: 1px solid #eee;
    padding-bottom: 3px;
}

.mega-menu-column ul {
    list-style: none;
}

.mega-menu-column ul li {
    margin-bottom: 3px;
}

.mega-menu-column ul li a {
    color: #666;
    text-decoration: none;
    font-size: 11px;
    display: block;
    padding: 2px 0;
}

.mega-menu-column ul li a:hover {
    color: var(--primary);
}

/* ===== HERO BÖLÜMÜ ===== */
.hero {
    background: var(--primary);
    color: #fff;
    padding: 25px 0;
    text-align: center;
    border-radius: 5px;
    margin-bottom: 30px;
}

.hero h1 {
    font-size: 24px;
    margin-bottom: 5px;
    font-weight: 600;
}

.hero p {
    font-size: 13px;
    margin-bottom: 12px;
    opacity: 0.9;
}

.hero-butonlar {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.hero-butonlar a {
    padding: 6px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 12px;
    font-weight: 500;
    transition: all 0.3s;
}

.btn-alisveris {
    background: var(--accent);
    color: #333;
}

.btn-alisveris:hover {
    background: #fff;
    color: var(--primary);
}

.btn-projeler {
    background: transparent;
    color: #fff;
    border: 1px solid #fff;
}

.btn-projeler:hover {
    background: #fff;
    color: var(--primary);
}

/* ===== KATEGORİLER ===== */
.kategori-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-bottom: 30px;
}

.kategori-kart {
    background: #fff;
    padding: 15px;
    text-align: center;
    border: 1px solid #eee;
    border-radius: 5px;
    transition: all 0.3s;
}

.kategori-kart:hover {
    box-shadow: 0 5px 15px rgba(44, 95, 45, 0.1);
    border-color: var(--primary);
    transform: translateY(-2px);
}

.kategori-kart a {
    text-decoration: none;
    color: inherit;
}

.kategori-kart h3 {
    font-size: 14px;
    color: var(--primary);
    font-weight: 500;
}

/* ===== HİZMETLER ===== */
.hizmet-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-bottom: 30px;
}

.hizmet-kart {
    background: #fff;
    padding: 20px;
    text-align: center;
    border: 1px solid #eee;
    border-radius: 5px;
    transition: all 0.3s;
}

.hizmet-kart:hover {
    box-shadow: 0 5px 15px rgba(44, 95, 45, 0.1);
    border-color: var(--accent);
    transform: translateY(-2px);
}

.hizmet-kart h3 {
    font-size: 16px;
    margin-bottom: 8px;
    color: var(--primary);
    font-weight: 600;
}

.hizmet-kart p {
    color: #666;
    font-size: 13px;
    line-height: 1.5;
}

/* ===== ÜRÜN KARTLARI ===== */
.urun-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 15px;
    margin-bottom: 30px;
}

.urun-kart {
    background: #fff;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    text-align: center;
    transition: all 0.3s ease;
}

.urun-kart:hover {
    border-color: var(--primary);
    box-shadow: 0 5px 15px rgba(44, 95, 45, 0.2);
    transform: translateY(-3px);
}

.urun-gorsel {
    height: 100px;
    padding: 10px;
    background: #f9f9f9;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid #eee;
}

.urun-gorsel img {
    max-width: 80px;
    max-height: 80px;
    object-fit: contain;
    transition: transform 0.3s;
}

.urun-kart:hover .urun-gorsel img {
    transform: scale(1.1);
}

.urun-bilgi {
    padding: 10px;
    position: relative;
}

.urun-bilgi h3 {
    font-size: 12px;
    margin-bottom: 5px;
    height: 30px;
    overflow: hidden;
    font-weight: 500;
}

.urun-bilgi h3 a {
    color: #333;
    text-decoration: none;
}

.urun-marka {
    font-size: 10px;
    color: #666;
    background: #f5f5f5;
    padding: 2px 6px;
    border-radius: 3px;
    display: inline-block;
    margin-bottom: 5px;
}

.urun-fiyat {
    font-size: 14px;
    font-weight: bold;
    color: var(--primary);
    display: block;
    margin-bottom: 5px;
}

/* Sepete Ekle Butonu */
.hizli-ekle {
    width: 90%;
    margin: 5px auto;
    padding: 6px 0;
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    opacity: 0;
    transition: opacity 0.3s;
}

.urun-kart:hover .hizli-ekle {
    opacity: 1;
}

.hizli-ekle:hover {
    background: var(--accent);
    color: var(--primary-dark);
}

.hizli-ekle i {
    font-size: 10px;
}

/* Ürün Rozeti */
.urun-badge {
    position: absolute;
    top: 5px;
    right: 5px;
    padding: 3px 8px;
    border-radius: 12px;
    font-size: 9px;
    font-weight: bold;
    color: #fff;
    z-index: 2;
}

.urun-badge.yeni {
    background: #28a745;
}

.urun-badge.ikinci-el {
    background: #ff9800;
}

/* Yıldız Değerlendirme */
.urun-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2px;
    margin-bottom: 5px;
}

.star {
    color: #ddd;
    font-size: 10px;
}

.star.filled {
    color: #ffc107;
}

/* Kargo Bilgisi */
.kargo-bilgi {
    font-size: 9px;
    color: #28a745;
    margin-top: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3px;
}

/* ===== FOOTER ===== */
.site-footer {
    background: var(--primary-dark);
    color: #fff;
    padding: 30px 0 15px;
    margin-top: 30px;
}

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

.footer-section h3 {
    color: var(--accent);
    font-size: 16px;
    margin-bottom: 10px;
}

.footer-section h4 {
    color: #fff;
    font-size: 14px;
    margin-bottom: 8px;
}

.footer-section p {
    color: #ccc;
    font-size: 12px;
    line-height: 1.5;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 4px;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    font-size: 12px;
    transition: all 0.3s;
}

.footer-section ul li a:hover {
    color: var(--accent);
    padding-left: 3px;
}

/* ===== RESPONSIVE - MOBİL ===== */
@media (max-width: 992px) {
    .urun-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .kategori-grid,
    .hizmet-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    /* Header Mobil */
    .header-main-content {
        flex-direction: column;
        gap: 10px;
    }
    
    .search-box {
        width: 100%;
        max-width: 100%;
    }
    
    /* Navbar Mobil */
    .main-nav ul {
        flex-direction: column;
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        display: none;
        width: 100%;
        box-shadow: none;
        background: rgba(255,255,255,0.1);
    }
    
    .has-dropdown:hover .dropdown-menu {
        display: block;
    }
    
    .mega-menu {
        width: 100%;
        padding: 10px;
    }
    
    .mega-menu-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .mega-menu-column h4 a {
        color: var(--accent);
    }
    
    .mega-menu-column ul li a {
        color: #fff;
        padding-left: 10px;
    }
    
    /* Ürünler Mobil */
    .urun-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .urun-kart:hover {
        transform: translateY(-2px);
    }
    
    .hizli-ekle {
        opacity: 1;
        padding: 5px 0;
        font-size: 10px;
    }
    
    /* Footer Mobil */
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-section ul li a:hover {
        padding-left: 0;
    }
    
    /* Hero Mobil */
    .hero {
        padding: 20px 0;
    }
    
    .hero h1 {
        font-size: 20px;
    }
    
    .hero-butonlar {
        flex-direction: column;
        align-items: center;
        gap: 5px;
    }
    
    .hero-butonlar a {
        width: 80%;
    }
}

@media (max-width: 480px) {
    .urun-grid {
        grid-template-columns: 1fr;
    }
    
    .kategori-grid,
    .hizmet-grid {
        grid-template-columns: 1fr;
    }
    
    .urun-gorsel {
        height: 120px;
    }
    
    .urun-gorsel img {
        max-width: 100px;
        max-height: 100px;
    }
}
/* ===== MEGA MENÜ DÜZELTME ===== */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    border-radius: 0 0 5px 5px;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    z-index: 1000;
}

.has-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
}

.mega-menu {
    width: 700px;
    padding: 20px;
    background: #fff;
}

.mega-menu-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.mega-menu-column h4 {
    color: var(--primary);
    font-size: 14px;
    margin-bottom: 10px;
    border-bottom: 2px solid var(--accent);
    padding-bottom: 5px;
    font-weight: 600;
}

.mega-menu-column h4 a {
    color: var(--primary);
    text-decoration: none;
}

.mega-menu-column h4 a:hover {
    color: var(--accent);
}

.mega-menu-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mega-menu-column ul li {
    margin-bottom: 6px;
}

.mega-menu-column ul li a {
    color: #555;
    text-decoration: none;
    font-size: 12px;
    display: block;
    padding: 3px 0;
    transition: all 0.2s;
}

.mega-menu-column ul li a:hover {
    color: var(--primary);
    padding-left: 5px;
    background: #f5f5f5;
    border-radius: 3px;
}

/* Responsive */
@media (max-width: 768px) {
    .mega-menu {
        width: 100%;
        padding: 15px;
    }
    
    .mega-menu-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .mega-menu-column h4 a {
        color: var(--accent);
    }
    
    .mega-menu-column ul li a {
        color: #fff;
        padding-left: 10px;
    }
    
    .mega-menu-column ul li a:hover {
        background: rgba(255,255,255,0.2);
        color: #fff;
    }
}
/* ===== MEGA MENÜ KÜÇÜK ===== */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
    border-radius: 0 0 5px 5px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    z-index: 1000;
}

.has-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
}

.mega-menu {
    width: 400px;  /* 700px'den 400px'e düşürüldü */
    padding: 12px;  /* 20px'den 12px'e düşürüldü */
    background: #fff;
}

.mega-menu-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);  /* 4'ten 2'ye düşürüldü */
    gap: 12px;  /* 20px'den 12px'e düşürüldü */
}

.mega-menu-column h4 {
    color: var(--primary);
    font-size: 12px;  /* 14px'den 12px'e düşürüldü */
    margin-bottom: 5px;  /* 10px'den 5px'e düşürüldü */
    border-bottom: 1px solid var(--accent);
    padding-bottom: 3px;  /* 5px'den 3px'e düşürüldü */
    font-weight: 600;
}

.mega-menu-column h4 a {
    color: var(--primary);
    text-decoration: none;
}

.mega-menu-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mega-menu-column ul li {
    margin-bottom: 3px;  /* 6px'den 3px'e düşürüldü */
}

.mega-menu-column ul li a {
    color: #555;
    text-decoration: none;
    font-size: 11px;  /* 12px'den 11px'e düşürüldü */
    display: block;
    padding: 2px 0;  /* 3px'den 2px'e düşürüldü */
    transition: all 0.2s;
}

.mega-menu-column ul li a:hover {
    color: var(--primary);
    padding-left: 3px;  /* 5px'den 3px'e düşürüldü */
    background: #f5f5f5;
    border-radius: 3px;
}

/* Responsive */
@media (max-width: 768px) {
    .mega-menu {
        width: 100%;
        padding: 10px;
    }
    
    .mega-menu-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
}
/* ===== MEGA MENÜ - YARI YARIYA KÜÇÜK ===== */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    border-radius: 0 0 4px 4px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s;
    z-index: 1000;
}

.has-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
}

.mega-menu {
    width: 300px;  /* 400px'den 300px'e */
    padding: 8px;  /* 12px'den 8px'e */
    background: #fff;
}

.mega-menu-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;  /* 12px'den 8px'e */
}

.mega-menu-column h4 {
    color: var(--primary);
    font-size: 11px;  /* 12px'den 11px'e */
    margin-bottom: 3px;  /* 5px'den 3px'e */
    border-bottom: 1px solid var(--accent);
    padding-bottom: 2px;  /* 3px'den 2px'e */
    font-weight: 600;
}

.mega-menu-column h4 a {
    color: var(--primary);
    text-decoration: none;
}

.mega-menu-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mega-menu-column ul li {
    margin-bottom: 2px;  /* 3px'den 2px'e */
}

.mega-menu-column ul li a {
    color: #555;
    text-decoration: none;
    font-size: 10px;  /* 11px'den 10px'e */
    display: block;
    padding: 1px 0;  /* 2px'den 1px'e */
    transition: all 0.2s;
    line-height: 1.3;
}

.mega-menu-column ul li a:hover {
    color: var(--primary);
    padding-left: 2px;  /* 3px'den 2px'e */
    background: #f5f5f5;
    border-radius: 2px;
}

/* Responsive */
@media (max-width: 768px) {
    .mega-menu {
        width: 100%;
        padding: 8px;
    }
    
    .mega-menu-grid {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    
    .mega-menu-column h4 a {
        color: var(--accent);
        font-size: 12px;
    }
    
    .mega-menu-column ul li a {
        color: #fff;
        font-size: 11px;
        padding-left: 8px;
    }
}
/* ===== MEGA MENÜ - SÜPER KOMPAKT ===== */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    border-radius: 0 0 3px 3px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s;
    z-index: 1000;
}

.has-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
}

.mega-menu {
    width: 280px;  /* 300px'den 280px'e */
    padding: 6px;  /* 8px'den 6px'e */
    background: #fff;
}

.mega-menu-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 6px;  /* 8px'den 6px'e */
}

.mega-menu-column h4 {
    color: var(--primary);
    font-size: 10px;  /* 11px'den 10px'e */
    margin-bottom: 2px;  /* 3px'den 2px'e */
    border-bottom: 1px solid var(--accent);
    padding-bottom: 1px;  /* 2px'den 1px'e */
    font-weight: 600;
    letter-spacing: -0.2px;
}

.mega-menu-column h4 a {
    color: var(--primary);
    text-decoration: none;
}

.mega-menu-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mega-menu-column ul li {
    margin-bottom: 1px;  /* 2px'den 1px'e */
    line-height: 1.2;
}

.mega-menu-column ul li a {
    color: #555;
    text-decoration: none;
    font-size: 9px;  /* 10px'den 9px'e */
    display: block;
    padding: 1px 0;  /* 1px sabit */
    transition: all 0.2s;
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 120px;
}

.mega-menu-column ul li a:hover {
    color: var(--primary);
    padding-left: 2px;
    background: #f5f5f5;
    border-radius: 2px;
}

/* Tüm menü yüksekliğini sınırla */
.mega-menu-column ul {
    max-height: 80px;  /* Maksimum yükseklik */
    overflow-y: auto;  /* Taşarsa kaydırma çubuğu */
    scrollbar-width: thin;
    scrollbar-color: var(--accent) #f0f0f0;
}

/* Kaydırma çubuğu stilleri */
.mega-menu-column ul::-webkit-scrollbar {
    width: 3px;
}

.mega-menu-column ul::-webkit-scrollbar-track {
    background: #f0f0f0;
}

.mega-menu-column ul::-webkit-scrollbar-thumb {
    background: var(--accent);
    border-radius: 3px;
}

/* Responsive */
@media (max-width: 768px) {
    .mega-menu {
        width: 100%;
        padding: 5px;
    }
    
    .mega-menu-grid {
        grid-template-columns: 1fr;
        gap: 5px;
    }
    
    .mega-menu-column h4 a {
        color: var(--accent);
        font-size: 11px;
    }
    
    .mega-menu-column ul li a {
        color: #fff;
        font-size: 10px;
        padding-left: 5px;
        max-width: 100%;
    }
    
    .mega-menu-column ul {
        max-height: 60px;
    }
}
/* ===== MEGA MENÜ - YARI YÜKSEKLİK ===== */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    border-radius: 0 0 2px 2px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.15s;
    z-index: 1000;
}

.has-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
}

.mega-menu {
    width: 260px;  /* 280px'den 260px'e */
    padding: 4px;  /* 6px'den 4px'e */
    background: #fff;
}

.mega-menu-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4px;  /* 6px'den 4px'e */
}

.mega-menu-column h4 {
    color: var(--primary);
    font-size: 9px;  /* 10px'den 9px'e */
    margin-bottom: 1px;  /* 2px'den 1px'e */
    border-bottom: 1px solid var(--accent);
    padding-bottom: 1px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: -0.3px;
}

.mega-menu-column h4 a {
    color: var(--primary);
    text-decoration: none;
}

.mega-menu-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mega-menu-column ul li {
    margin-bottom: 0;  /* 1px'den 0'a */
    line-height: 1.1;
}

.mega-menu-column ul li a {
    color: #555;
    text-decoration: none;
    font-size: 8px;  /* 9px'den 8px'e */
    display: block;
    padding: 1px 0;
    transition: all 0.15s;
    line-height: 1.1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 110px;  /* 120px'den 110px'e */
}

.mega-menu-column ul li a:hover {
    color: var(--primary);
    padding-left: 1px;
    background: #f5f5f5;
    border-radius: 1px;
}

/* Maksimum yükseklik iyice azaltıldı */
.mega-menu-column ul {
    max-height: 50px;  /* 80px'den 50px'e */
    overflow-y: auto;
    scrollbar-width: thin;
}

/* Responsive */
@media (max-width: 768px) {
    .mega-menu {
        width: 100%;
        padding: 3px;
    }
    
    .mega-menu-grid {
        grid-template-columns: 1fr;
        gap: 3px;
    }
    
    .mega-menu-column h4 a {
        font-size: 10px;
    }
    
    .mega-menu-column ul li a {
        font-size: 9px;
    }
    
    .mega-menu-column ul {
        max-height: 40px;
    }
}
/* ===== KATEGORİ GÖRSELLERİ ===== */
.kategori-gorsel {
    width: 100px;
    height: 100px;
    margin: 0 auto 10px;
    overflow: hidden;
    border-radius: 50%;
    border: 2px solid var(--accent);
    transition: all 0.3s;
}

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

.kategori-kart:hover .kategori-gorsel {
    border-color: var(--primary);
    transform: scale(1.05);
}

.kategori-kart:hover .kategori-gorsel img {
    transform: scale(1.1);
}

/* ===== HİZMET İKONLARI ===== */
.hizmet-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 15px;
    padding: 15px;
    background: #f5f5f5;
    border-radius: 50%;
    border: 2px solid var(--accent);
    transition: all 0.3s;
}

.hizmet-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0) invert(0.3);
    transition: all 0.3s;
}

.hizmet-kart:hover .hizmet-icon {
    background: var(--accent);
    border-color: var(--primary);
    transform: rotate(360deg);
}

.hizmet-kart:hover .hizmet-icon img {
    filter: brightness(0) invert(1);
}

/* ===== ÖNE ÇIKAN PROJELER ===== */
.proje-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.proje-kart {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    aspect-ratio: 16/9;
}

.proje-kart img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.proje-kart:hover img {
    transform: scale(1.1);
}

.proje-kart h3 {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 15px;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: #fff;
    margin: 0;
    font-size: 16px;
}

/* ===== İSTATİSTİKLER ===== */
.istatistikler {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: #fff;
    padding: 40px 0;
    border-radius: 10px;
    margin: 40px 0;
}

.istatistik-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    text-align: center;
}

.istatistik-kart .sayi {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--accent);
}

.istatistik-kart .label {
    font-size: 14px;
    opacity: 0.9;
}

/* Responsive */
@media (max-width: 768px) {
    .proje-grid {
        grid-template-columns: 1fr;
    }
    
    .istatistik-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
/* ===== FOOTER DÜZENLEME ===== */
.site-footer {
    background: var(--primary-dark);
    color: #fff;
    padding: 30px 0 15px;
    margin-top: 30px;
    position: relative;
    overflow: hidden;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    position: relative;
    z-index: 2;
}

/* Neden Biz Görseli */
.footer-gorsel {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 300px;
    height: auto;
    opacity: 0.3;
    z-index: 1;
    pointer-events: none;
}

.footer-gorsel img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.footer-gorsel:hover {
    opacity: 0.5;
    transition: opacity 0.3s;
}

/* Footer içeriği görselin üstünde kalsın */
.footer-section {
    position: relative;
    z-index: 3;
}

/* Responsive */
@media (max-width: 768px) {
    .footer-gorsel {
        width: 200px;
        opacity: 0.2;
    }
}

@media (max-width: 480px) {
    .footer-gorsel {
        width: 150px;
        opacity: 0.15;
    }
}
/* ===== FOOTER DÜZENLEME (PNG) ===== */
.site-footer {
    background: var(--primary-dark);
    color: #fff;
    padding: 30px 0 15px;
    margin-top: 30px;
    position: relative;
    overflow: hidden;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    position: relative;
    z-index: 2;
}

/* Neden Biz Görseli - PNG */
.footer-gorsel {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 300px;
    height: auto;
    opacity: 0.9;  /* Daha belirgin */
    z-index: 1;
    pointer-events: none;
}

.footer-gorsel img {
    width: 100%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 10px rgba(0,0,0,0.3)); /* Hafif gölge */
}

.footer-gorsel:hover {
    opacity: 1;
    transition: opacity 0.3s;
}

/* Footer içeriği görselin üstünde kalsın */
.footer-section {
    position: relative;
    z-index: 3;
}

/* Responsive */
@media (max-width: 768px) {
    .footer-gorsel {
        width: 200px;
        opacity: 0.7;
    }
}

@media (max-width: 480px) {
    .footer-gorsel {
        width: 150px;
        opacity: 0.6;
    }
}
/* ===== FOOTER DÜZELTME - ARKA PLAN RENGİ GÖRÜNSÜN ===== */
.site-footer {
    background: var(--primary-dark) !important;  /* Arka plan rengi zorla */
    color: #fff;
    padding: 30px 0 15px;
    margin-top: 30px;
    position: relative;
    overflow: hidden;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    position: relative;
    z-index: 2;
}

/* Neden Biz Görseli */
.footer-gorsel {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 300px;
    height: auto;
    z-index: 1;
    pointer-events: none;
}

.footer-gorsel img {
    width: 100%;
    height: auto;
    object-fit: contain;
    opacity: 0.5;  /* Yarı saydam */
}

/* Footer içeriği görselin üstünde */
.footer-section {
    position: relative;
    z-index: 3;
    background: transparent;  /* Saydam */
}

/* Footer yazıları */
.footer-section h3,
.footer-section h4,
.footer-section p,
.footer-section ul li a {
    position: relative;
    z-index: 4;
}

/* Responsive */
@media (max-width: 768px) {
    .footer-gorsel {
        width: 200px;
    }
    
    .footer-gorsel img {
        opacity: 0.3;
    }
}
/* ===== FOOTER - BEYAZ ARKA PLAN SORUNU ÇÖZÜMÜ ===== */
.site-footer {
    background: var(--primary-dark);
    color: #fff;
    padding: 30px 0 15px;
    margin-top: 30px;
    position: relative;
    overflow: hidden;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    position: relative;
    z-index: 2;
}

/* Neden Biz Görseli - Beyaz arka planı karıştır */
.footer-gorsel {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 300px;
    height: auto;
    z-index: 1;
    pointer-events: none;
    mix-blend-mode: multiply;  /* Beyazı transparan yap */
}

.footer-gorsel img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

/* Footer içeriği */
.footer-section {
    position: relative;
    z-index: 3;
}

/* Responsive */
@media (max-width: 768px) {
    .footer-gorsel {
        width: 200px;
    }
}
/* Alternatif çözüm - Beyazı yok et */
.footer-gorsel {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 300px;
    height: auto;
    z-index: 1;
    pointer-events: none;
}

.footer-gorsel img {
    width: 100%;
    height: auto;
    object-fit: contain;
    filter: brightness(0.9) contrast(1.2);  /* Beyazı hafiflet */
    opacity: 0.7;
}
/* ===== FOOTER - TEMİZLENMİŞ GÖRSEL ===== */
.site-footer {
    background: var(--primary-dark);
    color: #fff;
    padding: 30px 0 15px;
    margin-top: 30px;
    position: relative;
    overflow: hidden;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    position: relative;
    z-index: 2;
}

/* Neden Biz Görseli - Temiz versiyon */
.footer-gorsel {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 280px;  /* Biraz küçült */
    height: auto;
    z-index: 1;
    pointer-events: none;
}

.footer-gorsel img {
    width: 100%;
    height: auto;
    object-fit: contain;
    /* Filigran ve maskeleri temizle */
    filter: 
        brightness(1.1)      /* Parlaklık artır */
        contrast(1.2)        /* Kontrast artır */
        saturate(1.3)        /* Renkleri canlandır */
        drop-shadow(0 0 5px rgba(255,255,255,0.3)); /* Hafif ışık */
    opacity: 0.85;           /* Biraz saydam */
    mix-blend-mode: screen;  /* Beyazları yumuşat */
}

/* Footer içeriği */
.footer-section {
    position: relative;
    z-index: 3;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5); /* Yazılara hafif gölge */
}

/* Responsive */
@media (max-width: 768px) {
    .footer-gorsel {
        width: 200px;
    }
    
    .footer-gorsel img {
        opacity: 0.7;
        filter: brightness(1.2) contrast(1.1);
    }
}

@media (max-width: 480px) {
    .footer-gorsel {
        width: 150px;
        opacity: 0.6;
    }
}
/* ===== FOOTER - GÖRSEL OLMADAN ===== */
.site-footer {
    background: var(--primary-dark);
    color: #fff;
    padding: 30px 0 15px;
    margin-top: 30px;
}

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

.footer-section h3 {
    color: var(--accent);
    font-size: 18px;
    margin-bottom: 15px;
}

.footer-section h4 {
    color: #fff;
    font-size: 16px;
    margin-bottom: 12px;
}

.footer-section p {
    color: #ccc;
    font-size: 13px;
    line-height: 1.5;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    font-size: 13px;
    transition: all 0.3s;
}

.footer-section ul li a:hover {
    color: var(--accent);
    padding-left: 5px;
}

/* Responsive */
@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
}
/* ===== FOOTER - BİZ KİM GÖRSELİ ===== */
.site-footer {
    background: var(--primary-dark);
    color: #fff;
    padding: 30px 0 15px;
    margin-top: 30px;
    position: relative;
    overflow: hidden;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    position: relative;
    z-index: 2;
}

/* Biz Kim Görseli */
.footer-gorsel {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 250px;
    height: auto;
    z-index: 1;
    pointer-events: none;
}

.footer-gorsel img {
    width: 100%;
    height: auto;
    object-fit: contain;
    opacity: 0.9;
}

/* Footer içeriği */
.footer-section {
    position: relative;
    z-index: 3;
}

.footer-section h3 {
    color: var(--accent);
    font-size: 18px;
    margin-bottom: 15px;
}

.footer-section h4 {
    color: #fff;
    font-size: 16px;
    margin-bottom: 12px;
}

.footer-section p {
    color: #ccc;
    font-size: 13px;
    line-height: 1.5;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    font-size: 13px;
    transition: all 0.3s;
}

.footer-section ul li a:hover {
    color: var(--accent);
    padding-left: 5px;
}

/* Responsive */
@media (max-width: 768px) {
    .footer-gorsel {
        width: 180px;
        right: 10px;
        opacity: 0.6;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .footer-gorsel {
        width: 120px;
        opacity: 0.4;
    }
}
/* ===== BİZ KİM GÖRSELİ - DÜZGÜN ===== */
.footer-gorsel {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 250px;
    height: auto;
    z-index: 1;
    pointer-events: none;
}

.footer-gorsel img {
    width: 100%;
    height: auto;
    object-fit: contain;
    /* Beyazları koru, diğer renkleri karıştırma */
    background: transparent;
    mix-blend-mode: normal;  /* Normal karıştırma */
    opacity: 1;
    filter: none;  /* Hiçbir filtre uygulama */
    isolation: isolate;  /* İzole et */
}

/* Footer arka planı sabit */
.site-footer {
    background: var(--primary-dark);
    position: relative;
    z-index: 0;
}

.footer-gorsel {
    z-index: 1;
}

.footer-grid {
    position: relative;
    z-index: 2;
    background: transparent;
}
/* ===== BİZ KİM GÖRSELİ - BEYAZLAR BEYAZ KALSIN ===== */
.footer-gorsel {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 250px;
    height: auto;
    z-index: 1;
    pointer-events: none;
}

.footer-gorsel img {
    width: 100%;
    height: auto;
    object-fit: contain;
    /* Beyazları koru - hiçbir filtre yok */
    filter: none;
    mix-blend-mode: normal;
    opacity: 1;
    background: transparent;
}

/* Footer sabit */
.site-footer {
    background: var(--primary-dark);
    position: relative;
    z-index: 0;
}

.footer-grid {
    position: relative;
    z-index: 2;
}

/* ===== NAVBAR SAĞA YASLA ===== */
.header-nav .container {
    display: flex;
    justify-content: flex-end;
}

/* ===== KATEGORİ MENÜSÜ SOLA YASLA ===== */
.kategori-menu {
    margin-right: 20px;
}

.header-nav .container > div {
    justify-content: flex-start !important;
    gap: 30px;
}

/* ===== MOBİL OPTİMİZASYON ===== */
@media (max-width: 768px) {
    /* Header mobil — arama + sepet yan yana */
    .header-main-content {
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        gap: 8px !important;
        align-items: center !important;
    }
    
    .logo h1 {
        font-size: 20px;
        text-align: center;
    }
    
    .search-box {
        flex: 1 !important;
        width: auto !important;
        max-width: calc(100% - 75px) !important;
        min-width: 0 !important;
        display: block !important;
    }
    
    .search-input {
        font-size: 16px !important;
        padding: 9px 12px !important;
    }
    
    .header-cart {
        width: auto !important;
        flex-shrink: 0 !important;
    }
    
    .cart-link {
        justify-content: center;
        width: auto !important;
        padding: 8px 10px !important;
    }
    
    /* Navbar mobil */
    .header-nav .container > div {
        flex-direction: column;
        gap: 10px;
    }
    
    .kategori-menu {
        width: 100%;
    }
    
    .kategori-menu-btn {
        width: 100%;
        justify-content: center;
    }
    
    .main-nav ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 5px;
    }
    
    .main-nav li a {
        padding: 8px 12px;
        font-size: 13px;
    }
    
    /* Hero mobil */
    .hero {
        padding: 15px 0;
    }
    
    .hero [style*="display: flex"] {
        flex-direction: column;
        gap: 10px !important;
    }
    
    .hero-gallery {
        width: 45px;
        height: 45px;
    }
    
    /* Kategori butonları mobil */
    .kategori-buton {
        padding: 6px 14px;
        font-size: 12px;
    }
    
    /* Ürün grid mobil */
    .urun-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .urun-kart {
        border-width: 1px;
    }
    
    .urun-gorsel {
        height: 120px;
    }
    
    .urun-gorsel img {
        max-width: 70px;
        max-height: 70px;
    }
    
    .urun-bilgi h3 {
        font-size: 12px;
        height: 34px;
    }
    
    .urun-fiyat {
        font-size: 14px;
    }
    
    .urun-badge {
        padding: 3px 6px;
        font-size: 9px;
    }
    
    /* İletişim sayfası mobil */
    .iletisim-grid {
        grid-template-columns: 1fr !important;
        gap: 20px;
    }
    
    .iletisim-kart {
        padding: 20px !important;
    }
    
    .kart-baslik {
        font-size: 20px !important;
    }
    
    .urun-galeri {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px;
    }
    
    /* Genel mobil iyileştirmeler */
    .container {
        padding: 0 15px;
    }
    
    h1 {
        font-size: 24px;
    }
    
    h2 {
        font-size: 20px;
    }
    
    /* Dokunmatik için büyük butonlar */
    button, 
    .btn,
    .kategori-buton,
    .gonder-btn,
    .cart-link,
    .kategori-menu-btn {
        min-height: 44px;
        min-width: 44px;
    }
    
    /* Form elemanları mobil */
    input, select, textarea {
        font-size: 16px !important; /* iOS zoom'u engeller */
        padding: 12px !important;
    }
}

/* Çok küçük ekranlar */
@media (max-width: 480px) {
    .urun-grid {
        grid-template-columns: 1fr;
    }
    
    .urun-gorsel {
        height: 150px;
    }
    
    .urun-gorsel img {
        max-width: 100px;
        max-height: 100px;
    }
    
    .hero-gallery {
        width: 35px;
        height: 35px;
    }
    
    .main-nav ul {
        flex-direction: column;
        align-items: center;
    }
    
    .main-nav li {
        width: 100%;
    }
    
    .main-nav li a {
        text-align: center;
        width: 100%;
    }
    
    .urun-galeri {
        grid-template-columns: 1fr !important;
    }
}

/* Tablet için ara çözüm */
@media (min-width: 769px) and (max-width: 992px) {
    .urun-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .iletisim-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    
    .iletisim-kart:last-child {
        grid-column: span 2;
    }
}

/* Performans iyileştirmeleri */
img {
    loading: lazy;
}

* {
    -webkit-tap-highlight-color: transparent;
}

/* Dokunmatik için hover düzeltmesi */
@media (hover: none) and (pointer: coarse) {
    .urun-kart:hover {
        transform: none;
    }
    
    .kategori-buton:hover {
        transform: none;
    }
    
    .galeri-item:hover img {
        transform: none;
    }
}

/* ===== MOBİL MENÜ ===== */
.mobile-menu-btn {
    display: none;
    background: #2c5f2d;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 18px;
    cursor: pointer;
    margin: 5px 0;
    width: 100%;
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }
    
    .main-nav ul {
        display: none;
        flex-direction: column;
        width: 100%;
        background: rgba(0,0,0,0.9);
        position: absolute;
        top: 100%;
        left: 0;
        padding: 10px 0;
        z-index: 1002;
    }
    
    .main-nav ul.active {
        display: flex;
    }
    
    .main-nav li {
        width: 100%;
    }
    
    .main-nav li a {
        padding: 12px 20px;
        text-align: center;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    
    .main-nav li:last-child a {
        border-bottom: none;
    }
}
/* ===== FİKİRBUL BUTONU ===== */
.fikirbuton {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 215, 0, 0.15);
    border: 2px solid #ffd700;
    border-radius: 40px;
    padding: 5px 15px 5px 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-right: 15px;
    backdrop-filter: blur(2px);
}

.fikirbuton:hover {
    background: #ffd700;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

.fikirbuton-icon {
    width: 32px;
    height: 32px;
    background: #ffd700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1e3f1e;
    font-size: 18px;
    transition: all 0.3s ease;
}

.fikirbuton:hover .fikirbuton-icon {
    background: #1e3f1e;
    color: #ffd700;
    transform: rotate(15deg);
}

.fikirbuton-text {
    display: flex;
    flex-direction: column;
}

.fikirbuton-title {
    font-weight: 700;
    font-size: 15px;
    color: #ffd700;
    line-height: 1.2;
    letter-spacing: -0.3px;
}

.fikirbuton:hover .fikirbuton-title {
    color: #1e3f1e;
}

.fikirbuton-slogan {
    font-size: 9px;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 400;
    white-space: nowrap;
}

.fikirbuton:hover .fikirbuton-slogan {
    color: #1e3f1e;
    font-weight: 500;
}

/* Mobil düzenleme */
@media (max-width: 768px) {
    .fikirbuton {
        padding: 4px 10px 4px 8px;
        gap: 6px;
        margin-right: 8px;
    }
    
    .fikirbuton-icon {
        width: 28px;
        height: 28px;
        font-size: 14px;
    }
    
    .fikirbuton-title {
        font-size: 13px;
    }
    
    .fikirbuton-slogan {
        font-size: 7px;
    }
}

@media (max-width: 480px) {
    .fikirbuton {
        padding: 3px 8px 3px 6px;
    }
    
    .fikirbuton-icon {
        width: 24px;
        height: 24px;
        font-size: 12px;
    }
    
    .fikirbuton-title {
        font-size: 12px;
    }
    
    .fikirbuton-slogan {
        display: none; /* Çok küçük ekranlarda slogan gizlenir */
    }
}