/* === PREMIUM SEARCH POPUP === */
.goha-search-overlay {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background: linear-gradient(135deg, rgba(var(--color-primary-rgb), 0.97), rgba(var(--color-secondary-rgb), 0.97)) !important;
    z-index: 9999999 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
    transition: all 0.4s ease !important;
    font-family: 'Cairo', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
}

.goha-search-overlay.active {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: all !important;
}

.goha-search-container {
    width: 90% !important;
    max-width: 800px !important;
    position: relative !important;
    transform: translateY(30px) !important;
    transition: transform 0.4s ease !important;
}

.goha-search-overlay.active .goha-search-container {
    transform: translateY(0) !important;
}

.goha-search-close {
    position: absolute !important;
    top: -60px !important;
    right: 0 !important;
    width: 50px !important;
    height: 50px !important;
    background: rgba(255, 255, 255, 0.2) !important;
    border: 2px solid rgba(255, 255, 255, 0.3) !important;
    border-radius: 50% !important;
    color: var(--color-white) !important;
    font-size: 24px !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.goha-search-close:hover {
    background: rgba(255, 255, 255, 0.3) !important;
    transform: rotate(90deg) !important;
}

.goha-search-content {
    text-align: center !important;
}

.goha-search-icon {
    width: 80px !important;
    height: 80px !important;
    margin: 0 auto 30px !important;
    background: rgba(255, 255, 255, 0.2) !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 36px !important;
    color: #fff !important;
    animation: pulse 2s infinite !important;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.05);
        opacity: 0.8;
    }
}

.goha-search-title {
    color: var(--color-white) !important;
    font-size: 32px !important;
    font-weight: 700 !important;
    margin-bottom: 40px !important;
    font-family: 'Cairo', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
}

.goha-search-form {
    position: relative !important;
    margin-bottom: 30px !important;
}

.goha-search-input {
    width: 100% !important;
    height: 70px !important;
    padding: 0 180px 0 30px !important;
    font-size: 18px !important;
    border: none !important;
    border-radius: 50px !important;
    background: var(--fakhama-glass, rgba(255, 255, 255, 0.95)) !important;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2) !important;
    transition: all 0.3s ease !important;
    text-align: right !important;
    font-family: 'Cairo', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
}

.goha-search-input:focus {
    outline: none !important;
    background: var(--color-white) !important;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3) !important;
}

.goha-search-input::placeholder {
    color: #94a3b8 !important;
}

.goha-search-submit {
    position: absolute !important;
    right: 5px !important;
    top: 5px !important;
    height: 60px !important;
    padding: 0 30px !important;
    background: var(--n-primary) !important;
    color: var(--color-white) !important;
    border: none !important;
    border-radius: 50px !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    font-family: 'Cairo', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
}

.goha-search-submit:hover {
    background: var(--n-secondary) !important;
}

.goha-search-submit i {
    font-size: 20px !important;
}

.goha-search-hint {
    color: rgba(var(--color-white-rgb, 255, 255, 255), 0.8) !important;
    font-size: 14px !important;
    margin: 0 !important;
    font-family: 'Cairo', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
}