/* Frontend Menu Dropdown Stilleri - Orijinal stilleri koruyarak sadece dropdown özellikleri eklendi */
/* Tüm cihazlar için genel header-button stili */
.header-button {

  display: none;
}

/* Yalnızca mobilde (768px ve altı) geçerli olacak stil */
@media (max-width: 768px) {
  .header-button {

	display: block;
  }
}
/* Dropdown için pozisyon ayarı */
.static-menu > li.dropdown {
    position: relative;
}

.static-menu > li.dropdown > a .fa-angle-down {
    margin-left: 5px;
    font-size: 10px;
}

/* Dropdown Menu - Level 1 (Alt menü) */
.static-menu .dropdown-menu {
    position: absolute;
    top: 46px;
    left: 0;
    z-index: 9999;
    display: none;
    min-width: 220px;
    padding: 12px 0;
    margin: 0 !important;
    margin-top: 0 !important;
    list-style: none;
    background-color: #fff;
    border: none;
    border-radius: 0;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
    visibility: hidden;
    opacity: 0;
    transition: all 0.35s ease-out 0s;
	border-top: 3px solid #ffd200;
}

/* Dropdown ve menü arasındaki boşluğu doldur (invisible bridge) */
.static-menu .dropdown-menu::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 0;
    right: 0;
    height: 10px;
    background: transparent;
}

.static-menu li.dropdown:hover > .dropdown-menu {
    display: block;
    visibility: visible;
    opacity: 1;
}

.static-menu .dropdown-menu > li {
    position: relative;
    display: block;
    padding: 0;
    margin: 0;
}

.static-menu .dropdown-menu > li > a {
    display: block;
    padding: 10px 20px;
    clear: both;
    font-weight: 400;
    line-height: 1.5;
    color: #333 !important;
    white-space: nowrap;
    text-decoration: none;
    font-size: 14px;
    text-transform: none;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    background-color: transparent;
}

.static-menu .dropdown-menu > li > a:hover {
    color: #fff !important;
    background-color: #0060aa !important;
}

.static-menu .dropdown-menu > li > a .fa {
    margin-right: 8px;
    width: 16px;
    text-align: center;
}

.static-menu .dropdown-menu > li > a .fa-angle-right {
    float: right;
    margin-left: 10px;
    margin-top: 3px;
}

/* Dropdown Submenu - Level 2 (Alt menünün alt menüsü) */
.static-menu .dropdown-submenu {
    position: relative;
}

.static-menu .dropdown-submenu > .dropdown-menu {
    position: absolute;
    top: 0;
    left: 100%;
    margin-top: -12px !important;
    margin-left: 0 !important;
}

/* Level 2 dropdown için de invisible bridge */
.static-menu .dropdown-submenu > .dropdown-menu::before {
    content: '';
    position: absolute;
    top: 0;
    left: -10px;
    width: 10px;
    height: 100%;
    background: transparent;
}

.static-menu .dropdown-submenu:hover > .dropdown-menu {
    display: block;
    visibility: visible;
    opacity: 1;
}

/* Mobil için - dropdown gizle */
@media (max-width: 767px) {
    .static-menu .dropdown-menu {
        display: none !important;
    }
}

