/* MEGA MENÜ GENEL AYARLARI */
.mega-menu {
    /* İstenen sabit genişlik */
    width: 660px;
    max-width: calc(100vw - 40px); /* Ekran taşmasını engelle */
    border: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 0;
    min-height: 280px; /* Görselin yüksekliğini sabitlemek için */
    filter: drop-shadow(2px 2px 10px #00000045);
}
.mega-menu-image-container{min-height: 500px !important;}
/* Sütunların üst üste binmesini engellemek için flex zorlaması */
.mega-menu .row {
    display: flex;
    flex-wrap: nowrap;
}



/* Bootstrap'in varsayılan davranışını değiştirmek için:
   Sadece header-2 içindeki mega menüye uygula ki diğer dropdown'lar bozulmasın. */
.header-2 .header-nav-area-2 .nav-item.dropdown .dropdown-menu.mega-menu {
    position: absolute;
    top: 100%;                      /* Ürünler linkinin hemen altı */
    left: 50%;                      /* Li öğesinin ortası */
    transform: translateX(-50%);    /* Menüyü ortala */
    right: auto;
    margin-top: 10px !important;               /* Nav ile menü arasında 10px boşluk */
}

/* -------------------- Sol Sütun: Ana Kategoriler -------------------- */
.mega-menu-main-cat {
    background-color: #f7f7f7;
    padding: 10px 0 !important;
    border-right: 1px solid #eee; 
}

/* Ana Kategori Liste Elemanları */
.mega-menu-cat-item {
    padding: 8px 10px;
    cursor: pointer;
    transition: background-color 0.2s, color 0.2s;
    font-size: 0.9rem;
    color: #333;
    border-left: 3px solid transparent; 
}

/* Ana Kategori Hover ve Aktif Stil */
.mega-menu-cat-item:hover,
.mega-menu-cat-item.active {
    background-color: #e4be9d;
    color: #212529;
    font-weight: bold !important;
    border-left: 3px solid #353c42;
}

/* -------------------- Orta Sütun: Alt Ürünler -------------------- */
.mega-menu-sub-cat {
    background-color: #ffffff;
    padding: 10px 5px !important;
    border-right: 1px solid #eee;
}

/* Alt Ürün Listeleri (Başlangıçta hepsi gizli) */
.mega-menu-sub-list {
    display: none;
    margin-bottom: 0;
}

/* Aktif Alt Ürün Listesi */
.mega-menu-sub-list.active {
    display: block;
}

/* Alt Ürün Bağlantıları */
.mega-menu-sub-item {
    display: block;
    padding: 5px 8px;
    font-size: 0.85rem;
    color: #555;
    text-decoration: none;
    transition: background-color 0.2s;
}

.mega-menu-sub-item:hover {
    background-color: #f0f0f0;
    color: #000;
}

/* -------------------- Sağ Sütun: Görsel Alanı -------------------- */
.mega-menu-image-container {
    background-color: #ffffff;
    overflow: hidden; 
    position: relative;
    height: 100%; 
    min-height: 280px; 
    display: flex; 
    align-items: center;
    justify-content: center;
}

/* Görsel Stili */
.mega-menu-image {
    width: 100%;
    height: 100%;
    object-fit: contain; 
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease-in-out;
}

/* Aktif Görsel Stili */
.mega-menu-image.active {
    opacity: 1;
    visibility: visible;
}

/* Header ana dropdown CSS'inin mega menü içindeki listeleri etkilemesini engelle */
.header-nav-area-2 .nav-item.dropdown .dropdown-menu.mega-menu ul {
    position: static;          /* Bootstrap dropdown'un absolute kuralını sıfırla */
    top: auto;
    left: auto;
    min-width: auto;
    padding: 0;
    border: none;
    background: none;
    visibility: visible;
    opacity: 1;
}