/* ===== GENEL STİLLER ===== */
:root {
    --primary-color: #e20074;
    --primary-dark: #c40064;
    --secondary-color: #333;
    --light-gray: #f5f5f5;
    --medium-gray: #e0e0e0;
    --dark-gray: #666;
    --white: #fff;
    --black: #000;
    --sale-color: #ff0000;
    --font-family: 'Arial', sans-serif;
    --border-radius: 4px;
    --box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    --transition: all 0.3s ease;
}

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

body {
    font-family: var(--font-family);
    line-height: 1.6;
    color: var(--secondary-color);
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

button {
    border: none;
    background: none;
    cursor: pointer;
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    border-radius: var(--border-radius);
    text-align: center;
    font-weight: bold;
    transition: var(--transition);
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
}

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

/* ===== TOP INFO BAR STİLLERİ ===== */
.top-info-bar {
    background-color: #f8f9fa;
    padding: 8px 0;
    font-size: 12px;
    border-bottom: 1px solid #e9ecef;
}

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

.top-info-left {
    display: flex;
    gap: 20px;
}

.top-info-left span {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #6c757d;
}

.top-info-right {
    display: flex;
    gap: 15px;
}

.top-info-right a {
    color: #6c757d;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5px;
}

.top-info-right a:hover {
    color: #e60000;
}

/* Responsive */
@media (max-width: 768px) {
    .top-info-bar {
        display: none; /* Mobilde gizle */
    }
    
    .top-info-content {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .top-info-left {
        flex-direction: column;
        gap: 5px;
    }
    
    .top-info-right {
        flex-direction: column;
        gap: 5px;
    }
}

/* ===== PC HEADER ===== */
.only-pc-header {
    display: block;
}

.pc-main-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
}

/* Logo */
.pc-logo {
    flex: 0 0 200px;
}

.pc-logo a {
    display: flex;
    align-items: center;
}

.logo-image {
    max-height: 50px;
    width: auto;
}

.logo-fallback {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    font-weight: bold;
    color: var(--primary-color);
}

.logo-fallback i {
    font-size: 24px;
}

/* Arama Çubuğu */
.pc-search-container {
    flex: 1;
    max-width: 500px;
    margin: 0 20px;
}

.search-form {
    display: flex;
    position: relative;
}

.search-form input {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid var(--medium-gray);
    border-radius: var(--border-radius);
    font-size: 14px;
}

.search-form button {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 50px;
    background-color: var(--primary-color);
    color: var(--white);
    border-top-right-radius: var(--border-radius);
    border-bottom-right-radius: var(--border-radius);
}

.search-form button:hover {
    background-color: var(--primary-dark);
}

/* Kullanıcı İşlemleri */
.pc-actions {
    display: flex;
    gap: 15px;
}

.pc-action-item {
    position: relative;
}

.pc-action-item a {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    padding: 5px 10px;
    font-size: 12px;
    color: var(--dark-gray);
}

.pc-action-item a:hover {
    color: var(--primary-color);
}

.pc-action-item i {
    font-size: 20px;
}

.action-count {
    position: absolute;
    top: -5px;
    right: 0;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    width: 18px;
    height: 18px;
    font-size: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Sepet Dropdown */
.cart-dropdown:hover .cart-dropdown-content {
    display: block;
}

.cart-dropdown-content {
    display: none;
    position: absolute;
    right: 0;
    top: 100%;
    width: 300px;
    background-color: var(--white);
    border: 1px solid var(--medium-gray);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    z-index: 1000;
}

.cart-dropdown-header {
    padding: 15px;
    border-bottom: 1px solid var(--medium-gray);
}

.cart-dropdown-header h4 {
    margin: 0;
    font-size: 16px;
}

.cart-dropdown-items {
    padding: 15px;
    max-height: 200px;
    overflow-y: auto;
}

.empty-cart {
    text-align: center;
    color: var(--dark-gray);
    padding: 20px 0;
}

.cart-dropdown-footer {
    padding: 15px;
    border-top: 1px solid var(--medium-gray);
}

/* Kategori Navigasyonu */
.pc-category-nav {
    background-color: var(--secondary-color);
    padding: 0px 0;
}

.pc-category-menu {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.pc-category-menu li a {
    color: var(--white);
    font-weight: bold;
    padding: 5px 0;
    position: relative;
}

.pc-category-menu li a:hover {
    color: var(--primary-color);
}

.pc-category-menu .sale-item a {
    color: var(--sale-color);
}

/* Dropdown Menüler */
.pc-dropdown {
    position: relative;
}

.pc-dropdown:hover .pc-dropdown-menu {
    display: block;
}

.pc-dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--white);
    min-width: 200px;
    box-shadow: var(--box-shadow);
    border-radius: var(--border-radius);
    z-index: 1000;
    padding: 10px 0;
}

.pc-dropdown-menu li a {
    display: block;
    padding: 10px 20px;
    color: var(--secondary-color);
    font-weight: normal;
}

.pc-dropdown-menu li a:hover {
    background-color: var(--light-gray);
    color: var(--primary-color);
}

/* ===== MOBİL HEADER ===== */
.only-mobile-header {
    display: none;
}

.mobile-top-bar {
    background-color: var(--white);
    border-bottom: 1px solid var(--medium-gray);
    padding: 10px 0;
}

.mobile-top-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}

.mobile-menu-btn, .mobile-close-btn {
    font-size: 20px;
    color: var(--secondary-color);
}

.mobile-logo {
    flex: 1;
    text-align: center;
}

.mobile-logo .logo-image {
    max-height: 40px;
}

.mobile-actions {
    display: flex;
    gap: 15px;
}

.mobile-action-item a {
    display: flex;
    align-items: center;
    color: var(--secondary-color);
    font-size: 18px;
    position: relative;
}

.mobile-cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    width: 18px;
    height: 18px;
    font-size: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-search-container {
    width: 100%;
}

/* Mobil Menü Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    z-index: 2000;
    display: none;
}

.mobile-category-nav {
    position: absolute;
    top: 0;
    left: 0;
    width: 80%;
    max-width: 300px;
    height: 100%;
    background-color: var(--white);
    overflow-y: auto;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.mobile-menu-overlay.active {
    display: block;
}

.mobile-menu-overlay.active .mobile-category-nav {
    transform: translateX(0);
}

.mobile-category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    border-bottom: 1px solid var(--medium-gray);
    background-color: var(--secondary-color);
    color: var(--white);
}

.mobile-category-header h3 {
    margin: 0;
    font-size: 18px;
}

.mobile-category-menu {
    padding: 15px 0;
}

.mobile-category-menu li a {
    display: block;
    padding: 12px 20px;
    color: var(--secondary-color);
    font-weight: bold;
    border-bottom: 1px solid var(--light-gray);
}

.mobile-category-menu li a:hover {
    background-color: var(--light-gray);
    color: var(--primary-color);
}

.mobile-dropdown-toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile-dropdown-menu {
    display: none;
    background-color: var(--light-gray);
}

.mobile-dropdown-menu li a {
    padding-left: 40px;
    font-weight: normal;
    border-bottom: none;
}

.mobile-dropdown.active .mobile-dropdown-menu {
    display: block;
}

.mobile-dropdown.active .mobile-dropdown-toggle i {
    transform: rotate(180deg);
}

.mobile-menu-footer {
    padding: 15px;
    border-top: 1px solid var(--medium-gray);
}

.mobile-menu-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mobile-info-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--dark-gray);
}

/* ===== RESPONSIVE TASARIM ===== */
@media (max-width: 991px) {
    .only-pc-header {
        display: none;
    }
    
    .only-mobile-header {
        display: block;
    }
    
    .top-info-bar {
        display: none;
    }
}

@media (max-width: 768px) {
    .mobile-logo .logo-fallback span {
        display: none;
    }
    
    .mobile-logo .logo-fallback i {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .mobile-top-row {
        margin-bottom: 8px;
    }
    
    .mobile-actions {
        gap: 10px;
    }
}

/* ===== KATEGORİ NAVİGASYONU ===== */
.pc-category-nav {
    background: #f8f9fa;
    border-bottom: 1px solid #dee2e6;
    position: relative;
    z-index: 1000;
}

.pc-category-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
}

.pc-category-menu > li {
    position: relative;
}

.pc-category-menu > li > a {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    color: #333;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.pc-category-menu > li > a:hover {
    background: #007bff;
    color: white;
}

.pc-category-menu > li > a .fa-chevron-down {
    font-size: 12px;
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.pc-dropdown:hover > a .fa-chevron-down {
    transform: rotate(180deg);
}

/* Dropdown menü */
.pc-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 220px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    list-style: none;
    padding: 8px 0;
    margin: 0;
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.pc-dropdown:hover .pc-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.pc-dropdown-menu li {
    position: relative;
}

.pc-dropdown-menu li a {
    display: block;
    padding: 10px 20px;
    color: #333;
    text-decoration: none;
    transition: all 0.2s ease;
    border-bottom: 1px solid #f8f9fa;
    font-size: 13px;
}

.pc-dropdown-menu li:last-child a {
    border-bottom: none;
}

.pc-dropdown-menu li a:hover {
    background: #f8f9fa;
    color: #007bff;
    padding-left: 25px;
}

/* SALE kategorisi için özel stil */
.pc-category-menu > li:last-child > a {
    color: #dc3545;
    font-weight: 600;
}

.pc-category-menu > li:last-child > a:hover {
    background: #dc3545;
    color: white;
}

/* ===== MOBİL KATEGORİ MENÜSÜ ===== */
.mobile-category-nav {
    position: fixed;
    top: 0;
    left: -100%;
    width: 300px;
    height: 100vh;
    background: white;
    box-shadow: 2px 0 10px rgba(0,0,0,0.1);
    transition: left 0.3s ease;
    z-index: 1002;
    overflow-y: auto;
}

.mobile-category-nav.active {
    left: 0;
}

.mobile-category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #e0e0e0;
    background: #f8f9fa;
}

.mobile-category-header h3 {
    margin: 0;
    font-size: 18px;
    color: #333;
}

.mobile-close-btn {
    background: none;
    border: none;
    font-size: 20px;
    color: #666;
    cursor: pointer;
    padding: 5px;
}

.mobile-category-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-dropdown-toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    color: #333;
    text-decoration: none;
    border-bottom: 1px solid #f0f0f0;
    font-weight: 500;
}

.mobile-dropdown-toggle .fa-chevron-down {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.mobile-dropdown.active .mobile-dropdown-toggle .fa-chevron-down {
    transform: rotate(180deg);
}

.mobile-dropdown-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    background: #f8f9fa;
    display: none;
}

.mobile-dropdown.active .mobile-dropdown-menu {
    display: block;
}

.mobile-dropdown-menu li a {
    display: block;
    padding: 12px 20px 12px 40px;
    color: #666;
    text-decoration: none;
    border-bottom: 1px solid #e8e8e8;
    transition: all 0.2s ease;
}

.mobile-dropdown-menu li a:hover {
    background: #e9ecef;
    color: #007bff;
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* ===== RESPONSIVE TASARIM ===== */
@media (max-width: 768px) {
    .only-pc-header {
        display: none !important;
    }
    
    .only-mobile-header {
        display: block !important;
    }
    
    .pc-category-nav {
        display: none;
    }
}

@media (min-width: 769px) {
    .only-mobile-header {
        display: none !important;
    }
    
    .only-pc-header {
        display: block !important;
    }
}

/* Debug için */
.debug-info {
    background: #ff6b6b;
    color: white;
    padding: 10px;
    text-align: center;
}

/* Mega Menu Styles */
.mega-menu-nav {
    position: relative;
    background: #2c3e50;
}

.mega-menu-item {
    position: static;
}

.mega-menu-content {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: white;
    border: 1px solid #e0e0e0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    z-index: 1000;
    padding: 2rem 0;
    display: none;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.mega-menu-item:hover .mega-menu-content {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.mega-menu-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.mega-menu-section {
    padding: 0 1rem;
}

.mega-menu-section h4 {
    color: #2c3e50;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    border-bottom: 2px solid #3498db;
    padding-bottom: 0.5rem;
}

.mega-menu-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.mega-menu-link {
    display: flex;
    align-items: center;
    padding: 0.75rem;
    color: #555;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.mega-menu-link:hover {
    background: #f8f9fa;
    color: #3498db;
    border-left-color: #3498db;
    transform: translateX(5px);
}

.mega-menu-image {
    width: 30px;
    height: 30px;
    object-fit: cover;
    border-radius: 4px;
    margin-right: 0.75rem;
}

.mega-menu-text {
    font-weight: 500;
}

.mega-menu-featured {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.featured-product {
    display: flex;
    align-items: center;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.featured-product:hover {
    background: #e9ecef;
    transform: translateY(-2px);
}

.featured-product .product-image {
    width: 50px;
    height: 50px;
    background: #3498db;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    color: white;
    font-size: 1.5rem;
}

.featured-product .product-info h5 {
    margin: 0 0 0.25rem 0;
    font-size: 0.9rem;
    color: #2c3e50;
}

.featured-product .price {
    margin: 0;
    font-weight: 600;
    color: #e74c3c;
    font-size: 0.9rem;
}

.mega-menu-banner {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.mega-menu-banner h4 {
    color: white;
    border-bottom: none;
    margin-bottom: 0.5rem;
}

.mega-menu-banner p {
    margin-bottom: 1rem;
    opacity: 0.9;
}

.banner-btn {
    background: white;
    color: #667eea;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.banner-btn:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
}

/* Existing Header Styles */
.top-info-bar {
    background: #34495e;
    color: white;
    padding: 0.5rem 0;
    font-size: 0.85rem;
}

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

.top-info-left span {
    margin-right: 1.5rem;
}

.top-info-right a {
    color: white;
    text-decoration: none;
    margin-left: 1.5rem;
}

.only-pc-header {
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.pc-main-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

.pc-logo img {
    max-width: 200px;
    height: auto;
}

.logo-fallback {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
}

.pc-search-container {
    flex: 1;
    max-width: 500px;
    margin: 0 2rem;
}

.search-form {
    display: flex;
    position: relative;
}

.search-form input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 25px;
    font-size: 0.9rem;
}

.search-form button {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    background: #3498db;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    color: white;
    cursor: pointer;
}

.pc-actions {
    display: flex;
    gap: 1.5rem;
}

.pc-action-item a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #2c3e50;
    text-decoration: none;
    font-weight: 500;
}

.action-count {
    background: #e74c3c;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
}

.pc-category-nav {
    background: #2c3e50;
}

.pc-category-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.pc-category-menu > li {
    position: relative;
}

.pc-category-menu > li > a {
    display: block;
    padding: 1rem 1.5rem;
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: background 0.3s ease;
}

.pc-category-menu > li > a:hover {
    background: #34495e;
}

/* Mobile Styles */
.only-mobile-header {
    display: none;
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.mobile-top-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

.mobile-menu-btn {
    background: none;
    border: none;
    font-size: 1.25rem;
    color: #2c3e50;
    cursor: pointer;
}

.mobile-logo img {
    max-width: 150px;
    height: auto;
}

.mobile-actions {
    display: flex;
    gap: 1rem;
}

.mobile-action-item a {
    color: #2c3e50;
    font-size: 1.25rem;
    position: relative;
}

.mobile-cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #e74c3c;
    color: white;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
}

.mobile-search-container {
    padding-bottom: 1rem;
}

/* Responsive Design */
@media (max-width: 991px) {
    .only-pc-header {
        display: none;
    }
    
    .only-mobile-header {
        display: block;
    }
    
    .mega-menu-content {
        position: static;
        box-shadow: none;
        border: none;
        padding: 1rem;
    }
    
    .mega-menu-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .top-info-content {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
    
    .top-info-left span {
        display: block;
        margin: 0.25rem 0;
    }
    
    .top-info-right a {
        display: block;
        margin: 0.25rem 0;
    }
}

/* Animation for mega menu */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.mega-menu-content {
    animation: fadeInUp 0.3s ease;
}

/* MEGA MENU DÜZELTMELERİ - EN SONA EKLENDİ - TAMAMEN DÜZENLENMİŞ */
.mega-menu-nav {
    position: relative;
    z-index: 1000;
    background: #2c3e50 !important;
}

.mega-menu-item {
    position: static !important;
}

.mega-menu-content {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: white;
    border: 1px solid #e0e0e0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    z-index: 1001;
    padding: 2rem 0;
    display: none;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    visibility: hidden;
}

.mega-menu-item:hover .mega-menu-content {
    display: block;
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
}

/* Mega menu grid düzenlemesi - DÜZENLENMİŞ */
.mega-menu-grid {
    display: grid;
    grid-template-columns: 1fr; /* Sadece 1 kolon */
    gap: 0;
    max-width: 1200px;
    margin: 0 auto;
}

.mega-menu-section.full-width {
    grid-column: 1 / -1;
    padding: 0 1rem;
}

.mega-menu-section h4 {
    color: #2c3e50;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    border-bottom: 2px solid #3498db;
    padding-bottom: 0.5rem;
}

/* Alt kategori linkleri düzenlemesi - DÜZENLENMİŞ */
.mega-menu-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 0.5rem;
}

.mega-menu-link {
    display: flex;
    align-items: center;
    padding: 0.75rem;
    color: #333 !important; /* Yazı rengi siyah - DÜZENLENMİŞ */
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.mega-menu-link:hover {
    background: #f8f9fa;
    color: #000 !important; /* Hover rengi siyah - DÜZENLENMİŞ */
    border-left-color: #3498db;
    transform: translateX(5px);
}

.mega-menu-image {
    width: 30px;
    height: 30px;
    object-fit: cover;
    border-radius: 4px;
    margin-right: 0.75rem;
}

.mega-menu-text {
    font-weight: 500;
    color: #333; /* Yazı rengi siyah - DÜZENLENMİŞ */
}

.mega-menu-link:hover .mega-menu-text {
    color: #000 !important; /* Hover rengi siyah - DÜZENLENMİŞ */
}

/* PC Kategori Menüsü Düzeltmeleri - DÜZENLENMİŞ */
.pc-category-menu > li > a {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    color: white !important; /* Ana kategori yazı rengi beyaz */
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.pc-category-menu > li > a:hover {
    background: #34495e;
    color: white !important; /* Hover rengi beyaz */
}

.pc-category-menu > li > a .fa-chevron-down {
    font-size: 12px;
    margin-left: 8px;
    transition: transform 0.3s ease;
    color: white !important; /* Ok rengi beyaz */
}

.mega-menu-item:hover > a .fa-chevron-down {
    transform: rotate(180deg);
    color: white !important; /* Hover ok rengi beyaz */
}

/* Kategori navigasyon arkaplan rengi */
.pc-category-nav {
    background: #2c3e50 !important;
}

/* MOUSE SORUNU ÇÖZÜMÜ - DÜZENLENMİŞ */
.mega-menu-content {
    pointer-events: auto !important;
}

.mega-menu-item:hover .mega-menu-content,
.mega-menu-content:hover {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
}

/* Alt kategori yüksekliği ayarı - DÜZENLENMİŞ */
.mega-menu-content {
    min-height: 200px; /* Minimum yükseklik */
    max-height: 500px; /* Maksimum yükseklik */
    overflow-y: auto; /* Taşma durumunda scroll */
}

.mega-menu-links {
    max-height: 400px;
    overflow-y: auto;
}

/* Responsive düzenlemeler */
@media (max-width: 991px) {
    .mega-menu-content {
        position: static;
        box-shadow: none;
        border: none;
        padding: 1rem;
        max-height: none;
        overflow-y: visible;
    }
    
    .mega-menu-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .mega-menu-links {
        grid-template-columns: 1fr;
        max-height: none;
        overflow-y: visible;
    }
}

/* Ana kategori yazı renkleri için özel stiller */
.pc-category-menu .mega-menu-item > a {
    color: white !important;
}

.pc-category-menu .mega-menu-item > a:hover {
    color: white !important;
    background: #34495e;
}

/* TÜM ICON STILLERİ - TAMAMEN DÜZENLENMİŞ */
.mega-menu-icon {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 0.75rem;
    color: #3498db; /* Varsayılan icon rengi */
    font-size: 1.1rem;
}

.mega-menu-link:hover .mega-menu-icon {
    color: #2980b9; /* Hover icon rengi */
}

/* START DESIGNING Icon Renkleri */
.mega-menu-link .fa-tshirt { color: #e74c3c; }
.mega-menu-link .fa-hoodie { color: #34495e; }
.mega-menu-link .fa-leaf { color: #27ae60; }
.mega-menu-link .fa-running { color: #e67e22; }
.mega-menu-link .fa-user-secret { color: #7f8c8d; }
.mega-menu-link .fa-cloud { color: #3498db; }
.mega-menu-link .fa-baby { color: #f1c40f; }
.mega-menu-link .fa-mug-hot { color: #8e44ad; }
.mega-menu-link .fa-ring { color: #f39c12; }
.mega-menu-link .fa-home { color: #e67e22; }
.mega-menu-link .fa-paw { color: #9b59b6; }
.mega-menu-link .fa-tag { color: #3498db; }
.mega-menu-link .fa-vest { color: #7f8c8d; }

/* APPAREL Icon Renkleri */
.mega-menu-link .fa-female { color: #9b59b6; }
.mega-menu-link .fa-male { color: #3498db; }
.mega-menu-link .fa-child { color: #f1c40f; }
.mega-menu-link .fa-baby-carriage { color: #e67e22; }

/* MUGS Icon Renkleri */
.mega-menu-link .fa-expand-alt { color: #16a085; }
.mega-menu-link .fa-circle { color: #2c3e50; }
.mega-menu-link .fa-sparkles { color: #f1c40f; }
.mega-menu-link .fa-palette { color: #9b59b6; }
.mega-menu-link .fa-magic { color: #8e44ad; }
.mega-menu-link .fa-heart { color: #e74c3c; }
.mega-menu-link .fa-suitcase-rolling { color: #d35400; }

/* DESIGNS Icon Renkleri */
.mega-menu-link .fa-crown { color: #f39c12; }
.mega-menu-link .fa-star { color: #f1c40f; }
.mega-menu-link .fa-car { color: #7f8c8d; }
.mega-menu-link .fa-football-ball { color: #e67e22; }
.mega-menu-link .fa-briefcase { color: #95a5a6; }
.mega-menu-link .fa-glass-cheers { color: #e67e22; }
.mega-menu-link .fa-landmark { color: #34495e; }
.mega-menu-link .fa-user { color: #3498db; }
.mega-menu-link .fa-utensils { color: #e74c3c; }
.mega-menu-link .fa-calendar-alt { color: #16a085; }
.mega-menu-link .fa-laugh { color: #f1c40f; }
.mega-menu-link .fa-graduation-cap { color: #9b59b6; }
.mega-menu-link .fa-star-and-crescent { color: #f39c12; }
.mega-menu-link .fa-user-astronaut { color: #3498db; }

/* MERCHANDISE Icon Renkleri */
.mega-menu-link .fa-hat-wizard { color: #9b59b6; }
.mega-menu-link .fa-mask { color: #e74c3c; }
.mega-menu-link .fa-jedi { color: #3498db; }
.mega-menu-link .fa-lightbulb { color: #f1c40f; }
.mega-menu-link .fa-tv { color: #8e44ad; }

/* GIFT IDEAS Icon Renkleri */
.mega-menu-link .fa-birthday-cake { color: #9b59b6; }
.mega-menu-link .fa-users { color: #27ae60; }

/* CHRISTMAS Icon Renkleri */
.mega-menu-link .fa-tree { color: #27ae60; }

/* PHOTO GIFTS Icon Renkleri (varsayılan) */
.mega-menu-link .fa-camera { color: #34495e; }
.mega-menu-link .fa-images { color: #9b59b6; }
.mega-menu-link .fa-portrait { color: #e67e22; }

/* SALE Icon Renkleri */
.mega-menu-link .fa-percentage { color: #e74c3c; }
.mega-menu-link .fa-tags { color: #e74c3c; }


/* Header üst boşluk düzeltme - SADECE bu header için */
body {
    padding-top: 0 !important;
}

/* Veya daha spesifik - sadece frontend sayfaları için */
body:not(.admin-page):not(.backend) {
    padding-top: 0 !important;
}

/* Header fixed ise içerik için padding */
.fixed-header ~ main,
.fixed-header ~ .content {
    padding-top: 60px; /* Header yüksekliği kadar */
}

/* ===== HEADER ÜST BOŞLUK DÜZELTME ===== */
body {
    padding-top: 0 !important;
    margin-top: 0 !important;
}

/* Header container */
.main-header {
    margin-top: 0;
    padding-top: 0;
}

/* Eski padding'i sıfırla */
body.padding-fix {
    padding-top: 0 !important;
}