.navbar {
    position: fixed !important;
    top: 0;
    left: 0;
    width: 100%;
    background: transparent;
    box-shadow: 0px 10px 20px 0px rgba(58, 58, 58, 0.0588235294);
    z-index: 999;
    height: 113px;
    transition: all 0.3s ease;
}
@media (max-width: 992px) {
    .navbar {
        height: 103px;
    }
}
.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    height: 85px;
    box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.1019607843);
}
@media (max-width: 992px) {
    .navbar.scrolled {
        height: 75px;
    }
}
.navbar.scrolled .navbar-logo img {
    width: clamp(150px, 14vw, 180px);
}
@media (max-width: 380px) {
    .navbar.scrolled .navbar-logo img {
        width: clamp(100px, 15vw, 110px);
    }
}
.navbar.navbar-hidden {
    transform: translateY(-100%);
}
.navbar-container {
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.2rem;
}
@media (max-width: 1440px) {
    .navbar-container {
        max-width: 1220px;
    }
}
@media (max-width: 1200px) {
    .navbar-container {
        max-width: 960px;
    }
}
@media (max-width: 992px) {
    .navbar-container {
        max-width: 720px;
        padding: 0 20px;
    }
}
@media (max-width: 768px) {
    .navbar-container {
        max-width: 540px;
        padding: 0 15px;
    }
}
@media (max-width: 576px) {
    .navbar-container {
        max-width: 100%;
        padding: 0 20px;
    }
}
@media (max-width: 380px) {
    .navbar-container {
        padding: 0 15px;
        gap: 0.8rem;
    }
}
.navbar-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}
.navbar-logo img {
    height: auto;
    width: clamp(150px, 14vw, 234px);
    transition: 0.5s ease;
}
@media (max-width: 380px) {
    .navbar-logo img {
        width: clamp(120px, 15vw, 150px);
    }
}
.navbar-menu {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 1.8rem;
}
@media (max-width: 1200px) {
    .navbar-menu {
        gap: 1.5rem;
    }
}
@media (max-width: 1100px) {
    .navbar-menu {
        gap: 1.2rem;
    }
}
@media (max-width: 991px) {
    .navbar-menu {
        display: none;
    }
}
.navbar-link {
    color: #333333;
    text-decoration: none;
    font-size: clamp(14px, 1vw, 17px);
    font-weight: 600;
    transition: color 0.3s ease;
    white-space: nowrap;
    position: relative;
    padding-bottom: 5px;
}
.navbar-link:after {
    content: "";
    position: absolute;
    width: 0;
    height: 3px;
    bottom: 0;
    left: 0;
    background-color: #e63946;
    transition: width 0.3s ease;
}
html[dir="rtl"] .navbar-link:after {
    left: auto;
    right: 0;
}
.navbar-link:hover {
    color: #e63946;
}
.navbar-link:hover:after {
    width: 100%;
}
.navbar-link.active {
    color: #e63946;
}
.navbar-link.active:after {
    width: 100%;
}
.navbar-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}
@media (max-width: 1200px) {
    .navbar-actions {
        gap: 0.8rem;
    }
}
@media (max-width: 1100px) {
    .navbar-actions {
        gap: 0.6rem;
    }
}
@media (max-width: 991px) {
    .navbar-actions {
        display: none;
    }
}
.navbar-user-menu {
    display: flex;
    align-items: center;
    gap: 13.38px;
    position: relative;
    height: 50px;
}
@media (max-width: 1200px) {
    .navbar-user-menu {
        gap: 12px;
    }
}
@media (max-width: 1100px) {
    .navbar-user-menu {
        gap: 10px;
    }
}
.navbar-user-menu-icon {
    position: relative;
    width: 45px;
    height: 45px;
    border-radius: 61px;
    background: rgba(0, 0, 0, 0.15);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    transition: all 0.3s ease;
    overflow: visible;
}
@media (max-width: 1200px) {
    .navbar-user-menu-icon {
        width: 40px;
        height: 40px;
    }
}
@media (max-width: 1100px) {
    .navbar-user-menu-icon {
        width: 40px;
        height: 40px;
    }
}
.navbar-user-menu-icon:hover {
    background: rgba(0, 0, 0, 0.2);
    transform: scale(1.05);
}
.navbar-user-menu-icon-img {
    width: 17px;
    height: 17px;
    object-fit: contain;
}
@media (max-width: 1200px) {
    .navbar-user-menu-icon-img {
        width: 13px;
        height: 13px;
    }
}
@media (max-width: 1100px) {
    .navbar-user-menu-icon-img {
        width: 13px;
        height: 13px;
    }
}
.navbar-user-menu-badge {
    position: absolute;
    top: -2px;
    right: 0;
    width: 20px;
    height: 20px;
    border-radius: 20px;
    background: #f05271;
    color: white;
    font-family: "Gotham Rounded", "Baloo 2", sans-serif;
    font-weight: 700;
    font-size: 11px;
    line-height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    white-space: nowrap;
    padding: 0;
    box-shadow: 0 2px 4px rgba(240, 82, 113, 0.3);
}
@media (max-width: 1200px) {
    .navbar-user-menu-badge {
        width: 20px;
        height: 20px;
        font-size: 11px;
        line-height: 22px;
        top: 3px;
    }
}
@media (max-width: 1100px) {
    .navbar-user-menu-badge {
        width: 18px;
        height: 18px;
        font-size: 10px;
        line-height: 20px;
        top: 2px;
    }
}
.navbar-user-menu-profile-wrapper {
    position: relative;
}
.navbar-user-menu-profile {
    position: relative;
    width: 50px;
    height: 50px;
    border-radius: 61px;
    border: none;
    cursor: pointer;
    padding: 0;
    overflow: visible;
    background: transparent;
    transition: all 0.3s ease;
    display: block;
    text-decoration: none;
}
@media (max-width: 1200px) {
    .navbar-user-menu-profile {
        width: 45px;
        height: 45px;
    }
}
@media (max-width: 1100px) {
    .navbar-user-menu-profile {
        width: 40px;
        height: 40px;
    }
}
.navbar-user-menu-profile:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
.navbar-user-menu-profile-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 61px;
}
.navbar-user-menu-profile-dropdown {
    position: absolute;
    top: calc(100% + 2px);
    right: 0;
    min-width: 180px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0px 8px 24px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    overflow: hidden;
}
.navbar-user-menu-profile-dropdown.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
@media (max-width: 992px) {
    .navbar-user-menu-profile-dropdown {
        right: auto;
        left: 0;
    }
}
[dir="rtl"] .navbar-user-menu-profile-dropdown {
    right: auto;
    left: 0;
}
.navbar-user-menu-profile-dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    color: #000;
    text-decoration: none;
    font-family: "Baloo 2", sans-serif;
    font-weight: 500;
    font-size: 16px;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(128, 128, 128, 0.1);
}
.navbar-user-menu-profile-dropdown-item:last-child {
    border-bottom: none;
}
.cast.navbar-user-menu-profile-dropdown-item:hover {
    background-color: rgba(240, 82, 113, 0.1) !important;
    color: #f05271 !important;
}
.producer-dashboard.navbar-user-menu-profile-dropdown-item:hover {
    background-color: #f2f1f9 !important;
    color: #8379b8 !important;
}
.navbar-user-menu-profile-dropdown-item svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}
.navbar-user-menu-profile-dropdown-item span {
    white-space: nowrap;
}
.navbar-auth-buttons {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}
@media (max-width: 1200px) {
    .navbar-auth-buttons {
        gap: 0.6rem;
    }
}
@media (max-width: 1100px) {
    .navbar-auth-buttons {
        gap: 0.5rem;
    }
}
.navbar-language {
    position: relative;
}
.navbar-language-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.2rem;
    background: rgba(131, 121, 184, 0.1019607843);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-size: clamp(14px, 1vw, 16px);
    color: #8379b8;
    transition: all 0.3s ease;
}
@media (max-width: 576px) {
    .navbar-language-btn {
        width: auto;
        margin: 0 auto;
        padding: 0.4rem 1rem;
        font-size: 14px;
    }
}
@media (max-width: 380px) {
    .navbar-language-btn {
        padding: 0.3rem 0.8rem;
        gap: 0.3rem;
    }
}
.navbar-language-btn i {
    font-size: clamp(14px, 1vw, 16px);
    color: #8379b8;
}
.navbar-language-btn .dropdown-icon {
    transition: transform 0.3s ease;
}
.navbar-language-btn:hover {
    background: rgba(88, 79, 129, 0.1019607843);
}
.navbar-language-btn.active .dropdown-icon {
    transform: rotate(180deg);
}
.navbar-language-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 0.1rem;
    background: rgba(131, 121, 184, 0.1019607843);
    border-radius: 12px;
    padding: 0.2rem;
    min-width: 130px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 100;
}
.navbar-language-dropdown.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.navbar-language-dropdown-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.2rem;
    padding: 0.3rem 1rem;
    color: #8379b8 !important;
    font-weight: 600;
    font-size: clamp(14px, 1vw, 16px);
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
}
.navbar-language-dropdown-item:hover {
    background: rgba(88, 79, 129, 0.1019607843);
}
.navbar-language-dropdown-item.active {
    background: rgba(88, 79, 129, 0.1019607843);
}
.navbar-btn {
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-size: clamp(14px, 1vw, 17px);
    font-weight: 700;
    text-decoration: none;
    transition: all 0.5s ease-in-out;
    white-space: nowrap;
    border: 2px solid transparent;
}
@media (max-width: 576px) {
    .navbar-btn {
        width: fit-content !important;
        margin: 0 auto;
        padding: 0.4rem 1.2rem;
    }
}
@media (max-width: 380px) {
    .navbar-btn {
        width: fit-content !important;
        margin: 0 auto;
        padding: 0.3rem 1rem;
        font-size: 13px;
    }
}
.navbar-btn--login {
    background: transparent;
    color: #333;
    border-color: transparent;
}
.navbar-btn--login:hover {
    color: #f05271;
}
.navbar-btn--join {
    color: #f05271 !important;
    border-color: #f05271;
}
.navbar-btn--join:hover {
    background: #ff6b6b;
    color: #fff !important;
}
.navbar-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}
@media (max-width: 991px) {
    .navbar-toggle {
        display: block;
    }
}
@media (max-width: 576px) {
    .navbar-toggle {
        padding: 0.4rem;
    }
}
.navbar-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: #333;
    margin: 5px 0;
    transition: all 0.3s ease;
    border-radius: 3px;
}
@media (max-width: 576px) {
    .navbar-toggle span {
        width: 22px;
        height: 2px;
        margin: 4px 0;
    }
}
.navbar-toggle.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-8px, 0px);
}
.navbar-toggle.active span:nth-child(2) {
    opacity: 0;
}
.navbar-toggle.active span:nth-child(3) {
    transform: rotate(45deg) translate(-8px, 0px);
}
.navbar-sidebar {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: #fff;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease;
    z-index: 999;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

@media (max-width: 576px) {
    .navbar-sidebar {
        width: 100%;
    }
}
@media (min-width: 992px) {
    .navbar-sidebar {
        display: none;
    }
}
.navbar-sidebar.active {
    right: 0;
}
.navbar-sidebar .navbar-menu {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}
@media (max-width: 576px) {
    .navbar-sidebar .navbar-menu {
        gap: 1.2rem;
        margin-bottom: 1.5rem;
    }
}
.navbar-sidebar .navbar-menu .navbar-link {
    font-size: 18px;
}
.navbar-sidebar .navbar-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid #eee;
    width: 100%;
}
@media (max-width: 576px) {
    .navbar-sidebar .navbar-actions {
        gap: 0.8rem;
        padding-top: 1.2rem;
    }
}
.navbar-sidebar .navbar-actions .navbar-btn {
    text-align: center;
    display: block;
}
@media (max-width: 576px) {
    .navbar-sidebar .navbar-actions .navbar-btn {
        font-size: 16px;
        padding: 0.5rem 1.2rem;
    }
}
.navbar-sidebar .navbar-actions .navbar-language {
    margin-bottom: 0.5rem;
}
@media (max-width: 576px) {
    .navbar-sidebar .navbar-actions .navbar-language {
        margin-bottom: 0.3rem;
    }
}
.navbar-sidebar .navbar-actions .navbar-user-menu {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    width: 100%;
    padding: 0.5rem 0;
    position: relative;
}
@media (max-width: 576px) {
    .navbar-sidebar .navbar-actions .navbar-user-menu {
        gap: 10px;
    }
}
.navbar-sidebar
    .navbar-actions
    .navbar-user-menu
    .navbar-user-menu-profile-wrapper {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0.5rem;
}
.navbar-sidebar
    .navbar-actions
    .navbar-user-menu
    .navbar-user-menu-profile-wrapper
    .navbar-user-menu-profile {
    margin: 0 auto;
}
.navbar-sidebar
    .navbar-actions
    .navbar-user-menu
    .navbar-user-menu-profile-wrapper
    .navbar-user-menu-profile-dropdown {
    position: absolute;
    top: calc(100% + 15px);
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    min-width: 200px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0px 8px 24px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1001;
}
.navbar-sidebar
    .navbar-actions
    .navbar-user-menu
    .navbar-user-menu-profile-wrapper
    .navbar-user-menu-profile-dropdown.show {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}
[dir="rtl"]
    .navbar-sidebar
    .navbar-actions
    .navbar-user-menu
    .navbar-user-menu-profile-wrapper
    .navbar-user-menu-profile-dropdown {
    left: auto;
    right: 50%;
    transform: translateX(50%) translateY(-10px);
}
[dir="rtl"]
    .navbar-sidebar
    .navbar-actions
    .navbar-user-menu
    .navbar-user-menu-profile-wrapper
    .navbar-user-menu-profile-dropdown.show {
    transform: translateX(50%) translateY(0);
}
@media (max-width: 576px) {
    .navbar-sidebar
        .navbar-actions
        .navbar-user-menu
        .navbar-user-menu-profile-wrapper
        .navbar-user-menu-profile-dropdown {
        min-width: 180px;
    }
}
.navbar-sidebar .navbar-actions .navbar-auth-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    width: 100%;
}
@media (max-width: 576px) {
    .navbar-sidebar .navbar-actions .navbar-auth-buttons {
        gap: 0.6rem;
    }
}
.navbar-sidebar .navbar-language {
    width: 100%;
    margin-bottom: 0.5rem;
}
.navbar-sidebar .navbar-language-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.5rem 1.2rem;
    background: rgba(131, 121, 184, 0.1019607843);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-size: 16px;
    color: #8379b8;
    transition: all 0.3s ease;
}
@media (max-width: 576px) {
    .navbar-sidebar .navbar-language-btn {
        width: fit-content !important;
        margin: 0 auto;
        padding: 0.4rem 1rem;
        font-size: 16px;
    }
}
@media (max-width: 380px) {
    .navbar-sidebar .navbar-language-btn {
        padding: 0.3rem 0.8rem;
        gap: 0.3rem;
    }
}
.navbar-sidebar .navbar-language-btn i {
    font-size: clamp(14px, 2vw, 17px);
    color: #8379b8;
}
.navbar-sidebar .navbar-language-btn:hover {
    background: rgba(88, 79, 129, 0.1019607843);
}
.navbar-sidebar .navbar-language-dropdown {
    width: 100%;
    margin-top: 0.5rem;
    background: #ececec;
    border-radius: 12px;
    padding: 0.2rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}
.navbar-sidebar .navbar-language-dropdown.show {
    opacity: 1;
    visibility: visible;
}
@media (max-width: 576px) {
    .navbar-sidebar .navbar-language-dropdown {
        width: fit-content !important;
        margin: 0 auto;
    }
    .navbar-sidebar .navbar-language-dropdown.show {
        right: 47%;
        transform: translateX(50px);
        top: 120%;
    }
}
.navbar-sidebar .navbar-language-dropdown-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 0.2rem;
    padding: 0.3rem 1rem;
    color: #8379b8 !important;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
}
.navbar-sidebar .navbar-language-dropdown-item:hover {
    background: rgba(88, 79, 129, 0.1019607843);
}
.navbar-sidebar .navbar-language-dropdown-item.active {
    background: rgba(88, 79, 129, 0.1019607843);
}
.navbar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 998;
}
.navbar-overlay.active {
    opacity: 1;
    visibility: visible;
}

.search-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 999999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
}
.search-modal.active {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}
.search-modal.active .search-modal-overlay {
    opacity: 1;
}
.search-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    opacity: 0;
    transition: opacity 0.3s ease;
}
.search-modal-container {
    position: relative;
    width: 100%;
    max-width: 800px;
    background: #ffffff;
    border-radius: 24px;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.4);
    max-height: 85vh;
    display: flex;
    flex-direction: column;
    opacity: 0;
    transform: scale(0.95) translateY(-20px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
@media (max-width: 768px) {
    .search-modal-container {
        max-width: 95%;
        border-radius: 20px;
        max-height: 90vh;
    }
}
@media (max-width: 480px) {
    .search-modal-container {
        max-width: 100%;
        border-radius: 0;
        max-height: 100vh;
        transform: scale(1) translateY(0);
    }
}
.search-modal.active .search-modal-container {
    opacity: 1;
    transform: scale(1) translateY(0);
}
@media (max-width: 480px) {
    .search-modal.active .search-modal-container {
        transform: scale(1) translateY(0);
    }
}
.search-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 28px 32px 24px;
    border-bottom: 1px solid #f0f0f0;
}
@media (max-width: 768px) {
    .search-modal-header {
        padding: 24px 24px 20px;
    }
}
.search-modal-title {
    font-size: 24px;
    font-weight: 700;
    color: #333;
    margin: 0;
    font-family: "Baloo 2", sans-serif;
}
@media (max-width: 768px) {
    .search-modal-title {
        font-size: 20px;
    }
}
.search-modal-close {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: #f5f5f5;
    color: #666;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    padding: 0;
}
.search-modal-close:hover {
    background: #e0e0e0;
    color: #333;
    transform: rotate(90deg);
}
@media (max-width: 768px) {
    .search-modal-close {
        width: 36px;
        height: 36px;
    }
}
.search-modal-body {
    padding: 32px;
    overflow-y: auto;
    flex: 1;
    -webkit-overflow-scrolling: touch;
}
@media (max-width: 768px) {
    .search-modal-body {
        padding: 24px 20px;
    }
}

.search-input-wrapper {
    position: relative;
    margin-bottom: 32px;
}
@media (max-width: 768px) {
    .search-input-wrapper {
        margin-bottom: 24px;
    }
}

.search-input {
    width: 100%;
    padding: 18px 50px 18px 50px;
    font-size: 16px;
    border: 2px solid #f05271;
    border-radius: 12px;
    outline: none;
    transition: all 0.3s ease;
    font-family: "Baloo 2", sans-serif;
    background: #fff;
}
.search-input:focus {
    border-color: #f05271;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(240, 82, 113, 0.15);
}
.search-input::placeholder {
    color: #999;
}
@media (max-width: 768px) {
    .search-input {
        padding: 16px 45px 16px 45px;
        font-size: 15px;
    }
}

.search-input-icon {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: #f05271;
    pointer-events: none;
}
@media (max-width: 768px) {
    .search-input-icon {
        left: 16px;
        width: 20px;
        height: 20px;
    }
}

.search-input-clear {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: none;
    background: #f0f0f0;
    color: #666;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    padding: 0;
}
.search-input-clear:hover {
    background: #e0e0e0;
    color: #333;
}
@media (max-width: 768px) {
    .search-input-clear {
        width: 28px;
        height: 28px;
        right: 10px;
    }
}

.search-suggestions-section {
    margin-bottom: 32px;
}
.search-suggestions-section:last-child {
    margin-bottom: 0;
}
@media (max-width: 768px) {
    .search-suggestions-section {
        margin-bottom: 24px;
    }
}
.search-suggestions-title {
    font-size: 12px;
    font-weight: 700;
    color: #999;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: "Baloo 2", sans-serif;
}
.search-suggestions-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.search-suggestion-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    border: 1px solid #f0f0f0;
    background: #fff;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: left;
    width: 100%;
    font-family: "Baloo 2", sans-serif;
    font-size: 15px;
    color: #333;
    font-weight: 500;
}
.search-suggestion-item svg {
    color: #999;
    flex-shrink: 0;
    transition: color 0.2s ease;
}
.search-suggestion-item span {
    flex: 1;
}
.search-suggestion-item:hover {
    background: #f9f9f9;
    border-color: #f05271;
    transform: translateX(4px);
    box-shadow: 0 2px 8px rgba(240, 82, 113, 0.1);
}
.search-suggestion-item:hover svg {
    color: #f05271;
}
@media (max-width: 768px) {
    .search-suggestion-item {
        padding: 12px 16px;
        font-size: 14px;
    }
}

.search-results-header {
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid #f0f0f0;
}
.search-results-count {
    font-size: 14px;
    color: #666;
    margin: 0;
    font-family: "Baloo 2", sans-serif;
}
.search-results-count span {
    font-weight: 700;
    color: #f05271;
}
.search-results-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.search-result-item {
    padding: 16px;
    background: #f9f9f9;
    border-radius: 12px;
    transition: all 0.2s ease;
    cursor: pointer;
}
.search-result-item:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.search-result-content .search-result-title {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 6px;
    font-family: "Baloo 2", sans-serif;
}
.search-result-content .search-result-description {
    font-size: 14px;
    color: #666;
    margin: 0;
    font-family: "Baloo 2", sans-serif;
}

html[dir="rtl"] .search-input-wrapper .search-input-icon {
    left: auto;
    right: 18px;
}
@media (max-width: 768px) {
    html[dir="rtl"] .search-input-wrapper .search-input-icon {
        right: 16px;
    }
}
html[dir="rtl"] .search-input-wrapper .search-input-clear {
    right: auto;
    left: 12px;
}
@media (max-width: 768px) {
    html[dir="rtl"] .search-input-wrapper .search-input-clear {
        left: 10px;
    }
}
html[dir="rtl"] .search-input {
    padding: 18px 50px 18px 50px;
    text-align: right;
}
@media (max-width: 768px) {
    html[dir="rtl"] .search-input {
        padding: 16px 45px 16px 45px;
    }
}
html[dir="rtl"] .search-suggestion-item {
    text-align: right;
}
html[dir="rtl"] .search-suggestion-item:hover {
    transform: translateX(-4px);
}
html[dir="rtl"] .search-suggestion-item svg {
    order: 2;
}
html[dir="rtl"] .search-suggestion-item span {
    order: 1;
}

/*# sourceMappingURL=navbar.css.map */
