.top-bar {
    background: #0F172A;
    color: white;
    padding: 12px 0;
    font-size: 0.875rem;
}

.top-bar-left,
.top-bar-right {
    gap: 24px;
}

.top-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.2s;
}

.top-link i {
    font-size: 16px;
}

.top-link:hover {
    color: white;
}


/* Main Header */
.main-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background-color: rgba(240, 241, 249, 1);
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0;
}

.logo img {
    height: 36px;
    width: auto;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-item {
    color: var(--text-color);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.2s;
}

.nav-item i {
    font-size: 18px;
}

.nav-item:hover {
    color: var(--primary-color);
}

/* Dropdown */
.has-dropdown {
    position: relative;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    padding: 1.3rem 0.5rem;
    color: #1F2937;
    font-size: 0.813rem;
    font-weight: 500;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.dropdown-arrow {
    font-size: 1.25rem;
    transition: transform 0.2s ease;
}

.has-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.menu-tabs {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    text-wrap: nowrap;
}

.mega-menu {
    position: absolute;
    top: calc(100%);
    left: 0;
    margin-left: calc(-50vw + 50%);
    width: 100vw;
    background: rgba(237, 238, 246, 1);
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    padding: 1.5rem;
    min-width: 800px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease;
}

.mega-menu h2 {
    font-size: 25px;
    margin-bottom: 15px;
}

.has-dropdown:hover .mega-menu {
    opacity: 1;
    visibility: visible;
}

.menu-tabs {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.25rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid #F1F5F9;
}

.menu-tab {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(0, 0, 0, 0.1);
    border: none;
    border-radius: 8px;
    color: #64748B;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.menu-tab i {
    font-size: 1.25rem;
}

.menu-tab.active {
    background: #6366F1;
    color: white;
}

.menu-tab:hover:not(.active) {
    color: #1F2937;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.menu-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: .6rem;
    background: rgba(245, 246, 251, 1);
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.2s ease;
    border: 1px solid transparent;
}

.menu-card:hover {
    transform: translateY(-2px);
}

.card-icon i {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.8rem;
    box-shadow: 0 2px 8px rgba(99, 102, 241, 0.1);
}

.card-info {
    flex: 1;
}

.card-info .name {
    font-size: 15px;
    color: #0F172A
}

.card-info .browse,
.menu-card .service-count {
    font-size: 13px;
    color: rgba(87, 92, 129, 1);
}



.tag {
    padding: 0.25rem 0.5rem;
    background: rgba(99, 102, 241, 0.1);
    color: #6366F1;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 500;
}

.discount {
    font-size: 0.75rem;
    padding: 10px 20px;
    border-radius: 25px;
    background-color: rgba(196, 67, 170, .1);
    ;
    color: rgba(196, 67, 170, 1);
    font-weight: 500;
}

/* Nav Actions */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.icon-btn {
    width: 40px;
    height: 40px;
    border: none;
    background: transparent;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.2s;
}

.icon-btn i {
    font-size: 20px;
    color: var(--text-color);
}

.icon-btn:hover {
    background: var(--light-bg);
}

.btn-primary {
    padding: 10px 24px;
    background: var(--primary-color);
    color: white;
    border-radius: 8px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: background-color 0.2s;
}

.btn-primary i {
    font-size: 18px;
}

.btn-primary:hover {
    background: #4F46E5;
    color: white;
}


.icon-btn i {
    border-radius: 50%;
    background-color: #fff;
    padding: 5px 10px;
}

.badge-small {
    position: absolute;
    font-size: 10px;
    padding: 2px 4px;
    line-height: 1;
    background-color: red;
    color: #fff;
    border-radius: 50%;
    top: -1px;
    right: -1px;
}

.menu-tab.active.instagram {
    background: linear-gradient(135deg, rgba(147, 51, 234, 1), rgba(219, 39, 119, 1));
}

.menu-tab.active.tiktok {
    background: linear-gradient(135deg, rgba(20, 22, 25, 1), rgba(24, 50, 69, 1));
}


.sidebar {
    position: fixed;
    top: 0;
    left: -85%;
    width: 85%;
    height: 100%;
    background: #161A33;
    color: #fff;
    transition: left 0.3s ease;
    z-index: 1000;
}

.sidebar.open {
    left: 0;
}

.sidebar a {
    display: block;
    color: #fff;
    text-decoration: none;
}


/* Karanlık arka plan */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    display: none;
    z-index: 900;
}

.overlay.show {
    display: block;
}

.close-sidebar {
    width: 40px;
    height: 40px;
    background-color: #1F2340;
    color: #fff;
    border: none;
    border-radius: 50%;

}

.sidebar-items-wrapper {
    height: 91%;
    overflow-y: auto;
}

.sidebar-items {
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

.bottom-social-area {
    margin-top: auto;
    padding: 5px 0;
    text-align: center;
}


.dropdown {
    margin-bottom: 10px;
    border-radius: 15px;
    background-color: #1F2340;
}

.dropdown-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.dropdown.open .dropdown-content {
    max-height: 260px;
    overflow-y: auto;
}

.dropdown-content a {
    font-size: 14px;
    margin: 5px 0;
}

/* mobile*/
@media (max-width: 992px) {

    .hero {
        padding-left: 0;
        padding-right: 0;
    }

    .container {
        max-width: 100%;
    }

    /* Nav Actions */
    .navbar {
        padding: 10px;
    }

    .nav-actions {
        gap: 5px;
    }

}